]> git.ipfire.org Git - thirdparty/man-pages.git/blame_incremental - man3/sigvec.3
Removed trailing white space at end of lines
[thirdparty/man-pages.git] / man3 / sigvec.3
... / ...
CommitLineData
1'\" t
2.\" Copyright (c) 2005 by Michael Kerrisk <mtk.manpages@gmail.com>
3.\"
4.\" %%%LICENSE_START(VERBATIM)
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
13.\"
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
21.\"
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
24.\" %%%LICENSE_END
25.\"
26.TH SIGVEC 3 2017-09-15 "Linux" "Linux Programmer's Manual"
27.SH NAME
28sigvec, sigblock, sigsetmask, siggetmask, sigmask \- BSD signal API
29.SH SYNOPSIS
30.B #include <signal.h>
31.PP
32.BI "int sigvec(int " sig ", const struct sigvec *" vec ", struct sigvec *" ovec );
33.PP
34.BI "int sigmask(int " signum );
35.PP
36.BI "int sigblock(int " mask );
37.PP
38.BI "int sigsetmask(int " mask );
39.PP
40.B int siggetmask(void);
41.PP
42.in -4n
43Feature Test Macro Requirements for glibc (see
44.BR feature_test_macros (7)):
45.in
46.PP
47All functions shown above:
48 Since glibc 2.19:
49 _DEFAULT_SOURCE
50 Glibc 2.19 and earlier:
51 _BSD_SOURCE
52.SH DESCRIPTION
53These functions are provided in glibc as a compatibility interface
54for programs that make use of the historical BSD signal API.
55This API is obsolete: new applications should use the POSIX signal API
56.RB ( sigaction (2),
57.BR sigprocmask (2),
58etc.).
59.PP
60The
61.BR sigvec ()
62function sets and/or gets the disposition of the signal
63.I sig
64(like the POSIX
65.BR sigaction (2)).
66If
67.I vec
68is not NULL, it points to a
69.I sigvec
70structure that defines the new disposition for
71.IR sig .
72If
73.I ovec
74is not NULL, it points to a
75.I sigvec
76structure that is used to return the previous disposition of
77.IR sig .
78To obtain the current disposition of
79.I sig
80without changing it, specify NULL for
81.IR vec ,
82and a non-null pointer for
83.IR ovec .
84.PP
85The dispositions for
86.B SIGKILL
87and
88.B SIGSTOP
89cannot be changed.
90.PP
91The
92.I sigvec
93structure has the following form:
94.PP
95.in +4n
96.EX
97struct sigvec {
98 void (*sv_handler)(int); /* Signal disposition */
99 int sv_mask; /* Signals to be blocked in handler */
100 int sv_flags; /* Flags */
101};
102.EE
103.in
104.PP
105The
106.I sv_handler
107field specifies the disposition of the signal, and is either:
108the address of a signal handler function;
109.BR SIG_DFL ,
110meaning the default disposition applies for the signal; or
111.BR SIG_IGN ,
112meaning that the signal is ignored.
113.PP
114If
115.I sv_handler
116specifies the address of a signal handler, then
117.I sv_mask
118specifies a mask of signals that are to be blocked while
119the handler is executing.
120In addition, the signal for which the handler is invoked is
121also blocked.
122Attempts to block
123.B SIGKILL
124or
125.B SIGSTOP
126are silently ignored.
127.PP
128If
129.I sv_handler
130specifies the address of a signal handler, then the
131.I sv_flags
132field specifies flags controlling what happens when the handler is called.
133This field may contain zero or more of the following flags:
134.TP
135.B SV_INTERRUPT
136If the signal handler interrupts a blocking system call,
137then upon return from the handler the system call s not be restarted:
138instead it fails with the error
139.BR EINTR .
140If this flag is not specified, then system calls are restarted
141by default.
142.TP
143.B SV_RESETHAND
144Reset the disposition of the signal to the default
145before calling the signal handler.
146If this flag is not specified, then the handler remains established
147until explicitly removed by a later call to
148.BR sigvec ()
149or until the process performs an
150.BR execve (2).
151.TP
152.B SV_ONSTACK
153Handle the signal on the alternate signal stack
154(historically established under BSD using the obsolete
155.BR sigstack ()
156function; the POSIX replacement is
157.BR sigaltstack (2)).
158.PP
159The
160.BR sigmask ()
161macro constructs and returns a "signal mask" for
162.IR signum .
163For example, we can initialize the
164.I vec.sv_mask
165field given to
166.BR sigvec ()
167using code such as the following:
168.PP
169.in +4n
170.EX
171vec.sv_mask = sigmask(SIGQUIT) | sigmask(SIGABRT);
172 /* Block SIGQUIT and SIGABRT during
173 handler execution */
174.EE
175.in
176.PP
177The
178.BR sigblock ()
179function adds the signals in
180.I mask
181to the process's signal mask
182(like POSIX
183.IR sigprocmask(SIG_BLOCK) ),
184and returns the process's previous signal mask.
185Attempts to block
186.B SIGKILL
187or
188.B SIGSTOP
189are silently ignored.
190.PP
191The
192.BR sigsetmask ()
193function sets the process's signal mask to the value given in
194.I mask
195(like POSIX
196.IR sigprocmask(SIG_SETMASK) ),
197and returns the process's previous signal mask.
198.PP
199The
200.BR siggetmask ()
201function returns the process's current signal mask.
202This call is equivalent to
203.IR sigblock(0) .
204.SH RETURN VALUE
205The
206.BR sigvec ()
207function returns 0 on success; on error, it returns \-1 and sets
208.I errno
209to indicate the error.
210.PP
211The
212.BR sigblock ()
213and
214.BR sigsetmask ()
215functions return the previous signal mask.
216.PP
217The
218.BR sigmask ()
219macro returns the signal mask for
220.IR signum .
221.SH ERRORS
222See the ERRORS under
223.BR sigaction (2)
224and
225.BR sigprocmask (2).
226.SH VERSIONS
227Starting with version 2.21, the GNU C library no longer exports the
228.BR sigvec ()
229function as part of the ABI.
230(To ensure backward compatibility,
231the glibc symbol versioning scheme continues to export the interface
232to binaries linked against older versions of the library.)
233.SH ATTRIBUTES
234For an explanation of the terms used in this section, see
235.BR attributes (7).
236.TS
237allbox;
238lbw32 lb lb
239l l l.
240Interface Attribute Value
241T{
242.BR sigvec (),
243.BR sigmask (),
244.BR sigblock (),
245.BR sigsetmask (),
246.BR siggetmask ()
247T} Thread safety MT-Safe
248.TE
249.SH CONFORMING TO
250All of these functions were in
2514.3BSD, except
252.BR siggetmask (),
253whose origin is unclear.
254These functions are obsolete: do not use them in new programs.
255.SH NOTES
256On 4.3BSD, the
257.BR signal ()
258function provided reliable semantics (as when calling
259.BR sigvec ()
260with
261.I vec.sv_mask
262equal to 0).
263On System V,
264.BR signal ()
265provides unreliable semantics.
266POSIX.1 leaves these aspects of
267.BR signal ()
268unspecified.
269See
270.BR signal (2)
271for further details.
272.PP
273In order to wait for a signal,
274BSD and System V both provided a function named
275.BR sigpause (3),
276but this function has a different argument on the two systems.
277See
278.BR sigpause (3)
279for details.
280.SH SEE ALSO
281.BR kill (2),
282.BR pause (2),
283.BR sigaction (2),
284.BR signal (2),
285.BR sigprocmask (2),
286.BR raise (3),
287.BR sigpause (3),
288.BR sigset (3),
289.BR signal (7)