CondCh returns the internal channel of a Cond for testing.
(c *Cond)
| 2 | |
| 3 | // CondCh returns the internal channel of a Cond for testing. |
| 4 | func CondCh(c *Cond) chan struct{} { |
| 5 | return c.ch |
| 6 | } |
| 7 | |
| 8 | // LatchDone returns the internal done channel of a Latch for testing. |
| 9 | func LatchDone(l *Latch) chan struct{} { |
no outgoing calls
no test coverage detected