type sync.Cond
9 uses
sync (current package)
cond.go#L37: type Cond struct {
cond.go#L48: func NewCond(l Locker) *Cond {
cond.go#L49: return &Cond{L: l}
cond.go#L67: func (c *Cond) Wait() {
cond.go#L82: func (c *Cond) Signal() {
cond.go#L91: func (c *Cond) Broadcast() {
net/http
h2_bundle.go#L3716: c sync.Cond // c.L lazily initialized to &p.mu
h2_bundle.go#L7490: cond *sync.Cond // hold mu; broadcast on flow/closed changes
server.go#L660: cond *sync.Cond
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |