Deletes a condition variable attributes object.
pthread_condattr_delete( attr );
Argument Data Type Accessattr opaque pthread_ read condattr_t
int pthread_condattr_delete ( pthread_condattr_t *attr);
This routine gives permission to reclaim storage for the condition variable attributes object. Condition variables that are created using this attributes object are not affected by the deletion of the condition variable attributes object.
The results of calling this routine are unpredictable if the handle specified by the attr argument refers to an attributes object that does not exist.
Return Error Description0 Successful completion. -1 [EINVAL] The attributes object specified by attr is invalid.