blob: 91a9bfb179d88346003e5a0ed55af1627f491784 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 |     <h1 id="firstHeading" class="firstHeading">cnd_destroy</h1>            <table class="t-dcl-begin"> <tr class="t-dsc-header"> <th> Defined in header <code><threads.h></code> </th> <th> </th> <th> </th> </tr> <tr class="t-dcl t-since-c11"> <td> <pre data-language="c">void cnd_destroy( cnd_t* cond );</pre>
</td> <td class="t-dcl-nopad"> </td> <td> <span class="t-mark-rev t-since-c11">(since C11)</span> </td> </tr>  </table> <p>Destroys the condition variable pointed to by <code>cond</code>.</p>
<p>If there are threads waiting on <code>cond</code>, the behavior is undefined.</p>
<h3 id="Parameters"> Parameters</h3> <table class="t-par-begin"> <tr class="t-par"> <td> cond </td> <td> - </td> <td> pointer to the condition variable to destroy </td>
</tr>
</table> <h3 id="Return_value"> Return value</h3> <p>(none)</p>
<h3 id="References"> References</h3>  <ul>
<li> C17 standard (ISO/IEC 9899:2018): </li>
<ul><li> 7.26.3.2 The cnd_destroy function (p: 276) </li></ul>
<li> C11 standard (ISO/IEC 9899:2011): </li>
<ul><li> 7.26.3.2 The cnd_destroy function (p: 378-379) </li></ul>
</ul>       <h3 id="See_also"> See also</h3> <table class="t-dsc-begin"> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/condition_variable/%7Econdition_variable" title="cpp/thread/condition variable/~condition variable">C++ documentation</a></span> for <code>~condition_variable</code> </td>
</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/condition_variable_any/%7Econdition_variable_any" title="cpp/thread/condition variable any/~condition variable any">C++ documentation</a></span> for <code>~condition_variable_any</code> </td>
</tr> </table>           <div class="_attribution">
  <p class="_attribution-p">
    © cppreference.com<br>Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.<br>
    <a href="https://en.cppreference.com/w/c/thread/cnd_destroy" class="_attribution-link">https://en.cppreference.com/w/c/thread/cnd_destroy</a>
  </p>
</div>
 |