summaryrefslogtreecommitdiff
path: root/devdocs/c/thread%2Fmtx_destroy.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
committerCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
commit754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch)
treef1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/c/thread%2Fmtx_destroy.html
new repository
Diffstat (limited to 'devdocs/c/thread%2Fmtx_destroy.html')
-rw-r--r--devdocs/c/thread%2Fmtx_destroy.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/devdocs/c/thread%2Fmtx_destroy.html b/devdocs/c/thread%2Fmtx_destroy.html
new file mode 100644
index 00000000..eb5bc679
--- /dev/null
+++ b/devdocs/c/thread%2Fmtx_destroy.html
@@ -0,0 +1,21 @@
+ <h1 id="firstHeading" class="firstHeading">mtx_destroy</h1> <table class="t-dcl-begin"> <tr class="t-dsc-header"> <th> Defined in header <code>&lt;threads.h&gt;</code> </th> <th> </th> <th> </th> </tr> <tr class="t-dcl t-since-c11"> <td> <pre data-language="c">void mtx_destroy( mtx_t *mutex );</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 mutex pointed to by <code>mutex</code>.</p>
+<p>If there are threads waiting on <code>mutex</code>, the behavior is undefined.</p>
+<h3 id="Parameters"> Parameters</h3> <table class="t-par-begin"> <tr class="t-par"> <td> mutex </td> <td> - </td> <td> pointer to the mutex 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.4.1 The mtx_destroy function (p: 277) </li></ul>
+<li> C11 standard (ISO/IEC 9899:2011): </li>
+<ul><li> 7.26.4.1 The mtx_destroy function (p: 380) </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/mutex/%7Emutex" title="cpp/thread/mutex/~mutex">C++ documentation</a></span> for <code>~mutex</code> </td>
+</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/timed_mutex/%7Etimed_mutex" title="cpp/thread/timed mutex/~timed mutex">C++ documentation</a></span> for <code>~timed_mutex</code> </td>
+</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/recursive_mutex/%7Erecursive_mutex" title="cpp/thread/recursive mutex/~recursive mutex">C++ documentation</a></span> for <code>~recursive_mutex</code> </td>
+</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/%7Erecursive_timed_mutex" title="cpp/thread/recursive timed mutex/~recursive timed mutex">C++ documentation</a></span> for <code>~recursive_timed_mutex</code> </td>
+</tr> </table> <div class="_attribution">
+ <p class="_attribution-p">
+ &copy; cppreference.com<br>Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.<br>
+ <a href="https://en.cppreference.com/w/c/thread/mtx_destroy" class="_attribution-link">https://en.cppreference.com/w/c/thread/mtx_destroy</a>
+ </p>
+</div>