summaryrefslogtreecommitdiff
path: root/devdocs/c/thread%2Fthrd_equal.html
diff options
context:
space:
mode:
Diffstat (limited to 'devdocs/c/thread%2Fthrd_equal.html')
-rw-r--r--devdocs/c/thread%2Fthrd_equal.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/devdocs/c/thread%2Fthrd_equal.html b/devdocs/c/thread%2Fthrd_equal.html
new file mode 100644
index 00000000..e0d3c1f6
--- /dev/null
+++ b/devdocs/c/thread%2Fthrd_equal.html
@@ -0,0 +1,17 @@
+ <h1 id="firstHeading" class="firstHeading">thrd_equal</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">int thrd_equal( thrd_t lhs, thrd_t rhs );</pre>
+</td> <td class="t-dcl-nopad"> </td> <td> <span class="t-mark-rev t-since-c11">(since C11)</span> </td> </tr> </table> <p>Checks whether <code>lhs</code> and <code>rhs</code> refer to the same thread.</p>
+<h3 id="Parameters"> Parameters</h3> <table class="t-par-begin"> <tr class="t-par"> <td> lhs, rhs </td> <td> - </td> <td> threads to compare </td>
+</tr>
+</table> <h3 id="Return_value"> Return value</h3> <p>Non-zero value if <code>lhs</code> and <code>rhs</code> refer to the same value, <code>​0​</code> otherwise.</p>
+<h3 id="References"> References</h3> <ul>
+<li> C17 standard (ISO/IEC 9899:2018): </li>
+<ul><li> 7.26.5.4 The thrd_equal function (p: 280) </li></ul>
+<li> C11 standard (ISO/IEC 9899:2011): </li>
+<ul><li> 7.26.5.4 The thrd_equal function (p: 384) </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/thread/id/operator_cmp" title="cpp/thread/thread/id/operator cmp">C++ documentation</a></span> for <code>operator_cmp</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/thrd_equal" class="_attribution-link">https://en.cppreference.com/w/c/thread/thrd_equal</a>
+ </p>
+</div>