| Parameter | Type | Description |
|---|---|---|
cv |
pthread_cond_t * |
The condition variable to destroy |
| Type | Description |
|---|---|
int |
Integer value with a success or error code of the function call |
The platform independent function httplib_pthread_cond_destroy() destroys a condition variable previously allocated with a call to httplib_pthread_cond_init(). The function returns 0 when successful and an error code otherwise. On systems which support it, the functionality is implemented as a direct call to pthread_cond_destroy(). On other platforms equivalent functionality is implemented with own code.