2008-09-30 13:31:47 -06:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// make a lot of goroutines, threaded together.
|
|
|
|
// tear them down cleanly.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2008-11-18 18:12:07 -07:00
|
|
|
"os";
|
2008-11-17 13:34:03 -07:00
|
|
|
"strconv";
|
2008-09-30 13:31:47 -06:00
|
|
|
)
|
|
|
|
|
2008-12-19 04:05:37 -07:00
|
|
|
func f(left, right chan int) {
|
2008-09-30 13:31:47 -06:00
|
|
|
left <- <-right;
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var n = 10000;
|
2009-05-08 16:21:41 -06:00
|
|
|
if len(os.Args) > 1 {
|
2009-04-17 01:08:24 -06:00
|
|
|
var err os.Error;
|
2009-05-08 16:21:41 -06:00
|
|
|
n, err = strconv.Atoi(os.Args[1]);
|
2008-11-18 18:12:07 -07:00
|
|
|
if err != nil {
|
2008-09-30 13:31:47 -06:00
|
|
|
print("bad arg\n");
|
2009-05-08 16:21:41 -06:00
|
|
|
os.Exit(1);
|
2008-09-30 13:31:47 -06:00
|
|
|
}
|
|
|
|
}
|
2009-01-06 16:19:02 -07:00
|
|
|
leftmost := make(chan int);
|
2008-09-30 13:31:47 -06:00
|
|
|
right := leftmost;
|
|
|
|
left := leftmost;
|
|
|
|
for i := 0; i < n; i++ {
|
2009-01-06 16:19:02 -07:00
|
|
|
right = make(chan int);
|
2008-09-30 13:31:47 -06:00
|
|
|
go f(left, right);
|
|
|
|
left = right;
|
|
|
|
}
|
2008-12-19 04:05:37 -07:00
|
|
|
go func(c chan int) { c <- 1 }(right);
|
2008-09-30 13:31:47 -06:00
|
|
|
<-leftmost;
|
|
|
|
}
|