2012-08-06 19:38:35 -06:00
|
|
|
// cmpout
|
|
|
|
|
2009-10-03 11:37:12 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-03-06 21:27:30 -07:00
|
|
|
// +build ignore
|
|
|
|
|
2009-10-03 11:37:12 -06:00
|
|
|
// Compute Fibonacci numbers with two goroutines
|
|
|
|
// that pass integers back and forth. No actual
|
|
|
|
// concurrency, just threads and synchronization
|
|
|
|
// and foreign code on multiple pthreads.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2012-03-06 21:27:30 -07:00
|
|
|
"../stdio"
|
2009-12-15 16:33:31 -07:00
|
|
|
"runtime"
|
|
|
|
"strconv"
|
2009-10-03 11:37:12 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func fibber(c, out chan int64, i int64) {
|
|
|
|
// Keep the fibbers in dedicated operating system
|
|
|
|
// threads, so that this program tests coordination
|
|
|
|
// between pthreads and not just goroutines.
|
2009-12-15 16:33:31 -07:00
|
|
|
runtime.LockOSThread()
|
2009-10-03 11:37:12 -06:00
|
|
|
|
|
|
|
if i == 0 {
|
2009-11-09 13:07:39 -07:00
|
|
|
c <- i
|
2009-10-03 11:37:12 -06:00
|
|
|
}
|
|
|
|
for {
|
2009-12-15 16:33:31 -07:00
|
|
|
j := <-c
|
2011-12-05 13:48:46 -07:00
|
|
|
stdio.Stdout.WriteString(strconv.FormatInt(j, 10) + "\n")
|
2009-12-15 16:33:31 -07:00
|
|
|
out <- j
|
|
|
|
<-out
|
|
|
|
i += j
|
|
|
|
c <- i
|
2009-10-03 11:37:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2009-12-15 16:33:31 -07:00
|
|
|
c := make(chan int64)
|
|
|
|
out := make(chan int64)
|
|
|
|
go fibber(c, out, 0)
|
|
|
|
go fibber(c, out, 1)
|
|
|
|
<-out
|
2009-10-03 11:37:12 -06:00
|
|
|
for i := 0; i < 90; i++ {
|
2009-12-15 16:33:31 -07:00
|
|
|
out <- 1
|
|
|
|
<-out
|
2009-10-03 11:37:12 -06:00
|
|
|
}
|
|
|
|
}
|