[Previous] [Contents] [Next]

_sleepon_destroy()

Destroy a sleepon

Synopsis:

#include <@@@unistd.h>

int _sleepon_destroy( sleepon_t * l );

Library:

libc

Description:

The _sleepon_destroy() function destroys a sleepon_t structure, l, that has 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 will all be signaled to wake-up and the last one to wake-up will free the memory allocated to the sleepon.

Returns:

0
Success.
=/=0
Failure

Classification:

@@@NONE

Safety:
Cancellation point No
Interrupt handler No
Signal handler No
Thread No

See also:


[Previous] [Contents] [Next]