2012-02-18 14:15:42 -07:00
|
|
|
// run
|
2009-05-02 13:47:33 -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.
|
|
|
|
|
|
|
|
package main
|
2010-03-24 17:46:53 -06:00
|
|
|
|
2009-05-02 13:47:33 -06:00
|
|
|
import "time"
|
2010-03-24 17:46:53 -06:00
|
|
|
|
2009-05-02 13:47:33 -06:00
|
|
|
func main() {
|
2010-03-24 17:46:53 -06:00
|
|
|
var count int
|
|
|
|
c := make(chan byte)
|
2009-05-02 13:47:33 -06:00
|
|
|
go func(c chan byte) {
|
2010-03-24 17:46:53 -06:00
|
|
|
<-c
|
|
|
|
count++
|
|
|
|
time.Sleep(1000000)
|
|
|
|
count++
|
|
|
|
<-c
|
|
|
|
}(c)
|
|
|
|
c <- 1
|
|
|
|
c <- 2
|
|
|
|
if count != 2 {
|
|
|
|
panic("synchronous send did not wait")
|
|
|
|
}
|
2009-05-02 13:47:33 -06:00
|
|
|
}
|