_sleepon_init()
Initialize a sleepon
Synopsis:
#include <pthread.h>
int _sleepon_init( sleepon_t ** pl,
unsigned flags);
Arguments:
- pl
- The address of a location where the function can store a pointer to the sleepon_t object that it creates.
- flags
- There are currently no flags defined; pass zero for this argument.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The _sleepon_init() function allocates a sleepon_t object (which is an opaque data structure) and stores a pointer to it in the location that pl points to.
Returns:
- 0
- Success.
- ≠0
- Failure.
Classification:
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | No |
| Thread | Yes |
Page updated:
