cond_signal
cond_signal var
- Takes the locked variable var and unblocks one thread that's
cond_wait
ing on that variable. If multiple threads are so blocked, the one that will be unblocked can't be determined.
cond_signal var
cond_wait
ing on that variable. If multiple threads are so blocked, the one that will be unblocked can't be determined.