Destroy a sleepon
#include <pthread.h> int _sleepon_destroy( sleepon_t * l );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The _sleepon_destroy() function destroys a sleepon_t structure, l, that's been previously initialized by _sleepon_init().
If l hasn't been locked by _sleepon_lock(), _sleepon_destroy() locks it before destroying it.
The sleepon structure is reference-counted such that, if other threads are blocked waiting for a condition, they're be signaled to wake up, and the last one to wake up frees the memory allocated to the sleepon.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |