Method
GLibCondsignal
Declaration [src]
void
g_cond_signal (
GCond* cond
)
Description [src]
If threads are waiting for cond
, at least one of them is unblocked.
If no threads are waiting for cond
, this function has no effect.
It is good practice to hold the same lock as the waiting thread
while calling this function, though not required.