cnd_destroy
From cppreference.com
                    
                                        
                    
                    
                                                            
                    | Defined in header  <threads.h> | ||
| void cnd_destroy( cnd_t* cond ); | (since C11) | |
Destroys the condition variable pointed to by cond.
If there are threads waiting on cond, the behavior is undefined.
| Contents | 
[edit] Parameters
| cond | - | pointer to the condition variable to destroy | 
[edit] Return value
(none)
[edit] References
- C11 standard (ISO/IEC 9899:2011):
- 7.26.3.2 The cnd_destroy function (p: 378-379)
 
[edit] See also
| C++ documentation for ~condition_variable_any | 


