summaryrefslogtreecommitdiff
path: root/devdocs/c/thread%2Fcnd_signal.html
diff options
context:
space:
mode:
Diffstat (limited to 'devdocs/c/thread%2Fcnd_signal.html')
-rw-r--r--devdocs/c/thread%2Fcnd_signal.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/devdocs/c/thread%2Fcnd_signal.html b/devdocs/c/thread%2Fcnd_signal.html
new file mode 100644
index 00000000..37a894ce
--- /dev/null
+++ b/devdocs/c/thread%2Fcnd_signal.html
@@ -0,0 +1,20 @@
+ <h1 id="firstHeading" class="firstHeading">cnd_signal</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 cnd_signal( 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>Unblocks one thread that currently waits on condition variable pointed to by <code>cond</code>. If no threads are blocked, does nothing and returns <code>thrd_success</code>.</p>
+<h3 id="Parameters"> Parameters</h3> <table class="t-par-begin"> <tr class="t-par"> <td> cond </td> <td> - </td> <td> pointer to a condition variable </td>
+</tr>
+</table> <h3 id="Return_value"> Return value</h3> <p><code><a href="thrd_errors" title="c/thread/thrd errors">thrd_success</a></code> if successful, <code><a href="thrd_errors" title="c/thread/thrd errors">thrd_error</a></code> otherwise.</p>
+<h3 id="References"> References</h3> <ul>
+<li> C17 standard (ISO/IEC 9899:2018): </li>
+<ul><li> 7.26.3.4 The cnd_signal function (p: 276) </li></ul>
+<li> C11 standard (ISO/IEC 9899:2011): </li>
+<ul><li> 7.26.3.4 The cnd_signal function (p: 379) </li></ul>
+</ul> <h3 id="See_also"> See also</h3> <table class="t-dsc-begin"> <tr class="t-dsc"> <td> <div><a href="cnd_broadcast" title="c/thread/cnd broadcast"> <span class="t-lines"><span>cnd_broadcast</span></span></a></div>
+<div><span class="t-lines"><span><span class="t-mark-rev t-since-c11">(C11)</span></span></span></div> </td> <td> unblocks all threads blocked on a condition variable <br> <span class="t-mark">(function)</span> </td>
+</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/condition_variable/notify_one" title="cpp/thread/condition variable/notify one">C++ documentation</a></span> for <code>condition_variable::notify_one</code> </td>
+</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/thread/condition_variable_any/notify_one" title="cpp/thread/condition variable any/notify one">C++ documentation</a></span> for <code>condition_variable_any::notify_one</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/cnd_signal" class="_attribution-link">https://en.cppreference.com/w/c/thread/cnd_signal</a>
+ </p>
+</div>