type sync.Cond

9 uses

	sync (current package)
		cond.go#L36: type Cond struct {
		cond.go#L47: func NewCond(l Locker) *Cond {
		cond.go#L48: 	return &Cond{L: l}
		cond.go#L66: func (c *Cond) Wait() {
		cond.go#L81: func (c *Cond) Signal() {
		cond.go#L90: func (c *Cond) Broadcast() {

	net/http
		h2_bundle.go#L3707: 	c        sync.Cond       // c.L lazily initialized to &p.mu
		h2_bundle.go#L7392: 	cond            *sync.Cond   // hold mu; broadcast on flow/closed changes
		server.go#L653: 	cond    *sync.Cond