summaryrefslogtreecommitdiff
path: root/static/freebsd/man3/pthread_sigmask.3 3.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/freebsd/man3/pthread_sigmask.3 3.html')
-rw-r--r--static/freebsd/man3/pthread_sigmask.3 3.html88
1 files changed, 0 insertions, 88 deletions
diff --git a/static/freebsd/man3/pthread_sigmask.3 3.html b/static/freebsd/man3/pthread_sigmask.3 3.html
deleted file mode 100644
index 02bfa4ad..00000000
--- a/static/freebsd/man3/pthread_sigmask.3 3.html
+++ /dev/null
@@ -1,88 +0,0 @@
-<table class="head">
- <tr>
- <td class="head-ltitle">PTHREAD_SIGMASK(3)</td>
- <td class="head-vol">Library Functions Manual</td>
- <td class="head-rtitle">PTHREAD_SIGMASK(3)</td>
- </tr>
-</table>
-<div class="manual-text">
-<section class="Sh">
-<h1 class="Sh" id="NAME"><a class="permalink" href="#NAME">NAME</a></h1>
-<p class="Pp"><code class="Nm">pthread_sigmask</code> &#x2014;
- <span class="Nd">examine and/or change a thread's signal mask</span></p>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="LIBRARY"><a class="permalink" href="#LIBRARY">LIBRARY</a></h1>
-<p class="Pp"><span class="Lb">POSIX Threads Library (libpthread,
- -lpthread)</span></p>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="SYNOPSIS"><a class="permalink" href="#SYNOPSIS">SYNOPSIS</a></h1>
-<p class="Pp"><code class="In">#include
- &lt;<a class="In">pthread.h</a>&gt;</code>
- <br/>
- <code class="In">#include &lt;<a class="In">signal.h</a>&gt;</code></p>
-<p class="Pp"><var class="Ft">int</var>
- <br/>
- <code class="Fn">pthread_sigmask</code>(<var class="Fa" style="white-space: nowrap;">int
- how</var>, <var class="Fa" style="white-space: nowrap;">const sigset_t *
- restrict set</var>, <var class="Fa" style="white-space: nowrap;">sigset_t *
- restrict oset</var>);</p>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="DESCRIPTION"><a class="permalink" href="#DESCRIPTION">DESCRIPTION</a></h1>
-<p class="Pp">The
- <a class="permalink" href="#pthread_sigmask"><code class="Fn" id="pthread_sigmask">pthread_sigmask</code></a>()
- function examines and/or changes the calling thread's signal mask.</p>
-<p class="Pp">If <var class="Fa">set</var> is not <code class="Dv">NULL</code>,
- it specifies a set of signals to be modified, and <var class="Fa">how</var>
- specifies what to set the signal mask to:</p>
-<dl class="Bl-tag">
- <dt id="SIG_BLOCK"><a class="permalink" href="#SIG_BLOCK"><code class="Dv">SIG_BLOCK</code></a></dt>
- <dd>Union of the current mask and <var class="Fa">set</var>.</dd>
- <dt id="SIG_UNBLOCK"><a class="permalink" href="#SIG_UNBLOCK"><code class="Dv">SIG_UNBLOCK</code></a></dt>
- <dd>Intersection of the current mask and the complement of
- <var class="Fa">set</var>.</dd>
- <dt id="SIG_SETMASK"><a class="permalink" href="#SIG_SETMASK"><code class="Dv">SIG_SETMASK</code></a></dt>
- <dd><var class="Fa">set</var>.</dd>
-</dl>
-<p class="Pp">If <var class="Fa">oset</var> is not NULL, the previous signal
- mask is stored in the location pointed to by <var class="Fa">oset</var>.</p>
-<p class="Pp"><code class="Dv">SIGKILL</code> and
- <code class="Dv">SIGSTOP</code> cannot be blocked, and will be silently
- ignored if included in the signal mask.</p>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="RETURN_VALUES"><a class="permalink" href="#RETURN_VALUES">RETURN
- VALUES</a></h1>
-<p class="Pp">If successful, <code class="Fn">pthread_sigmask</code>() returns
- 0. Otherwise, an error is returned.</p>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="ERRORS"><a class="permalink" href="#ERRORS">ERRORS</a></h1>
-<p class="Pp">The <code class="Fn">pthread_sigmask</code>() function will fail
- if:</p>
-<dl class="Bl-tag">
- <dt id="EINVAL">[<a class="permalink" href="#EINVAL"><code class="Er">EINVAL</code></a>]</dt>
- <dd><var class="Fa">how</var> is not one of the defined values.</dd>
-</dl>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
- ALSO</a></h1>
-<p class="Pp"><a class="Xr">sigaction(2)</a>, <a class="Xr">sigpending(2)</a>,
- <a class="Xr">sigprocmask(2)</a>, <a class="Xr">sigsuspend(2)</a>,
- <a class="Xr">sigsetops(3)</a></p>
-</section>
-<section class="Sh">
-<h1 class="Sh" id="STANDARDS"><a class="permalink" href="#STANDARDS">STANDARDS</a></h1>
-<p class="Pp">The <code class="Fn">pthread_sigmask</code>() function conforms to
- <span class="St">ISO/IEC 9945-1:1996 (&#x201C;POSIX.1&#x201D;)</span></p>
-</section>
-</div>
-<table class="foot">
- <tr>
- <td class="foot-date">February 19, 2011</td>
- <td class="foot-os">FreeBSD 15.0</td>
- </tr>
-</table>