OSDN Git Service

(split) LDP: Update original to LDP v3.40.
[linuxjm/LDP_man-pages.git] / original / man2 / sigaction.2
1 '\" t
2 .\" Copyright (c) 1994,1995 Mike Battersby <mib@deakin.edu.au>
3 .\" and Copyright 2004, 2005 Michael Kerrisk <mtk.manpages@gmail.com>
4 .\" based on work by faith@cs.unc.edu
5 .\"
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\"
26 .\" Modified, aeb, 960424
27 .\" Modified Fri Jan 31 17:31:20 1997 by Eric S. Raymond <esr@thyrsus.com>
28 .\" Modified Thu Nov 26 02:12:45 1998 by aeb - add SIGCHLD stuff.
29 .\" Modified Sat May  8 17:40:19 1999 by Matthew Wilcox
30 .\"     add POSIX.1b signals
31 .\" Modified Sat Dec 29 01:44:52 2001 by Evan Jones <ejones@uwaterloo.ca>
32 .\"     SA_ONSTACK
33 .\" Modified 2004-11-11 by Michael Kerrisk <mtk.manpages@gmail.com>
34 .\"     Added mention of SIGCONT under SA_NOCLDSTOP
35 .\"     Added SA_NOCLDWAIT
36 .\" Modified 2004-11-17 by Michael Kerrisk <mtk.manpages@gmail.com>
37 .\"     Updated discussion for POSIX.1-2001 and SIGCHLD and sa_flags.
38 .\"     Formatting fixes
39 .\" 2004-12-09, mtk, added SI_TKILL + other minor changes
40 .\" 2005-09-15, mtk, split sigpending(), sigprocmask(), sigsuspend()
41 .\"     out of this page into separate pages.
42 .\" 2010-06-11 Andi Kleen, add hwpoison signal extensions
43 .\" 2010-06-11 mtk, improvements to discussion of various siginfo_t fields.
44 .\"
45 .TH SIGACTION 2 2012-04-26 "Linux" "Linux Programmer's Manual"
46 .SH NAME
47 sigaction \- examine and change a signal action
48 .SH SYNOPSIS
49 .nf
50 .B #include <signal.h>
51 .sp
52 .BI "int sigaction(int " signum ", const struct sigaction *" act ,
53 .BI "              struct sigaction *" oldact );
54 .fi
55 .sp
56 .in -4n
57 Feature Test Macro Requirements for glibc (see
58 .BR feature_test_macros (7)):
59 .in
60 .sp
61 .ad l
62 .BR sigaction ():
63 _POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _POSIX_SOURCE
64 .ad b
65 .SH DESCRIPTION
66 The
67 .BR sigaction ()
68 system call is used to change the action taken by a process on
69 receipt of a specific signal.
70 (See
71 .BR signal (7)
72 for an overview of signals.)
73 .PP
74 .I signum
75 specifies the signal and can be any valid signal except
76 .B SIGKILL
77 and
78 .BR SIGSTOP .
79 .PP
80 If
81 .I act
82 is non-NULL, the new action for signal
83 .I signum
84 is installed from
85 .IR act .
86 If
87 .I oldact
88 is non-NULL, the previous action is saved in
89 .IR oldact .
90 .PP
91 The
92 .I sigaction
93 structure is defined as something like:
94 .sp
95 .in +4n
96 .nf
97 struct sigaction {
98     void     (*sa_handler)(int);
99     void     (*sa_sigaction)(int, siginfo_t *, void *);
100     sigset_t   sa_mask;
101     int        sa_flags;
102     void     (*sa_restorer)(void);
103 };
104 .fi
105 .in
106 .PP
107 On some architectures a union is involved: do not assign to both
108 .I sa_handler
109 and
110 .IR sa_sigaction .
111 .PP
112 The
113 .I sa_restorer
114 element is obsolete and should not be used.
115 POSIX does not specify a
116 .I sa_restorer
117 element.
118 .PP
119 .I sa_handler
120 specifies the action to be associated with
121 .I signum
122 and may be
123 .B SIG_DFL
124 for the default action,
125 .B SIG_IGN
126 to ignore this signal, or a pointer to a signal handling function.
127 This function receives the signal number as its only argument.
128 .PP
129 If
130 .B SA_SIGINFO
131 is specified in
132 .IR sa_flags ,
133 then
134 .I sa_sigaction
135 (instead of
136 .IR sa_handler )
137 specifies the signal-handling function for
138 .IR signum .
139 This function receives the signal number as its first argument, a
140 pointer to a
141 .I siginfo_t
142 as its second argument and a pointer to a
143 .I ucontext_t
144 (cast to \fIvoid\ *\fP) as its third argument.
145 (Commonly, the handler function doesn't make any use of the third argument.
146 See
147 .BR getcontext (2)
148 for further information about
149 .IR ucontext_t .)
150 .PP
151 .I sa_mask
152 specifies a mask of signals which should be blocked
153 (i.e., added to the signal mask of the thread in which
154 the signal handler is invoked)
155 during execution of the signal handler.
156 In addition, the signal which triggered the handler
157 will be blocked, unless the
158 .B SA_NODEFER
159 flag is used.
160 .PP
161 .I sa_flags
162 specifies a set of flags which modify the behavior of the signal.
163 It is formed by the bitwise OR of zero or more of the following:
164 .RS 4
165 .TP
166 .B SA_NOCLDSTOP
167 If
168 .I signum
169 is
170 .BR SIGCHLD ,
171 do not receive notification when child processes stop (i.e., when they
172 receive one of
173 .BR SIGSTOP ", " SIGTSTP ", " SIGTTIN
174 or
175 .BR SIGTTOU )
176 or resume (i.e., they receive
177 .BR SIGCONT )
178 (see
179 .BR wait (2)).
180 This flag is only meaningful when establishing a handler for
181 .BR SIGCHLD .
182 .TP
183 .BR SA_NOCLDWAIT " (since Linux 2.6)"
184 .\" To be precise: Linux 2.5.60 -- MTK
185 If
186 .I signum
187 is
188 .BR SIGCHLD ,
189 do not transform children into zombies when they terminate.
190 See also
191 .BR waitpid (2).
192 This flag is only meaningful when establishing a handler for
193 .BR SIGCHLD ,
194 or when setting that signal's disposition to
195 .BR SIG_DFL .
196
197 If the
198 .B SA_NOCLDWAIT
199 flag is set when establishing a handler for
200 .BR SIGCHLD ,
201 POSIX.1 leaves it unspecified whether a
202 .B SIGCHLD
203 signal is generated when a child process terminates.
204 On Linux, a
205 .B SIGCHLD
206 signal is generated in this case;
207 on some other implementations, it is not.
208 .TP
209 .B SA_NODEFER
210 Do not prevent the signal from being received from within its own signal
211 handler.
212 This flag is only meaningful when establishing a signal handler.
213 .B SA_NOMASK
214 is an obsolete, nonstandard synonym for this flag.
215 .TP
216 .B SA_ONSTACK
217 Call the signal handler on an alternate signal stack provided by
218 .BR sigaltstack (2).
219 If an alternate stack is not available, the default stack will be used.
220 This flag is only meaningful when establishing a signal handler.
221 .TP
222 .BR SA_RESETHAND
223 Restore the signal action to the default state once the signal handler
224 has been called.
225 This flag is only meaningful when establishing a signal handler.
226 .B SA_ONESHOT
227 is an obsolete, nonstandard synonym for this flag.
228 .TP
229 .B SA_RESTART
230 Provide behavior compatible with BSD signal semantics by making certain
231 system calls restartable across signals.
232 This flag is only meaningful when establishing a signal handler.
233 See
234 .BR signal (7)
235 for a discussion of system call restarting.
236 .TP
237 .BR SA_SIGINFO " (since Linux 2.2)"
238 The signal handler takes 3 arguments, not one.
239 In this case,
240 .I sa_sigaction
241 should be set instead of
242 .IR sa_handler .
243 This flag is only meaningful when establishing a signal handler.
244 .\" (The
245 .\" .I sa_sigaction
246 .\" field was added in Linux 2.1.86.)
247 .RE
248 .PP
249 The
250 .I siginfo_t
251 argument to
252 .I sa_sigaction
253 is a struct with the following elements:
254 .sp
255 .in +4n
256 .nf
257 siginfo_t {
258     int      si_signo;    /* Signal number */
259     int      si_errno;    /* An errno value */
260     int      si_code;     /* Signal code */
261     int      si_trapno;   /* Trap number that caused
262                              hardware-generated signal
263                              (unused on most architectures) */
264 .\" FIXME
265 .\" si_trapno seems to be only used on SPARC and Alpha;
266 .\" this page could use a little more detail on its purpose there.
267     pid_t    si_pid;      /* Sending process ID */
268     uid_t    si_uid;      /* Real user ID of sending process */
269     int      si_status;   /* Exit value or signal */
270     clock_t  si_utime;    /* User time consumed */
271     clock_t  si_stime;    /* System time consumed */
272     sigval_t si_value;    /* Signal value */
273     int      si_int;      /* POSIX.1b signal */
274     void    *si_ptr;      /* POSIX.1b signal */
275     int      si_overrun;  /* Timer overrun count; POSIX.1b timers */
276     int      si_timerid;  /* Timer ID; POSIX.1b timers */
277 .\" In the kernel: si_tid
278     void    *si_addr;     /* Memory location which caused fault */
279     long     si_band;     /* Band event (was \fIint\fP in
280                              glibc 2.3.2 and earlier) */
281     int      si_fd;       /* File descriptor */
282     short    si_addr_lsb; /* Least significant bit of address
283                              (since kernel 2.6.32) */
284 }
285 .fi
286 .in
287
288 .IR si_signo ", " si_errno " and " si_code
289 are defined for all signals.
290 .RI ( si_errno
291 is generally unused on Linux.)
292 The rest of the struct may be a union, so that one should only
293 read the fields that are meaningful for the given signal:
294 .IP * 2
295 Signals sent with
296 .BR kill (2)
297 and
298 .BR sigqueue (3)
299 fill in
300 .IR si_pid " and " si_uid .
301 In addition, signals sent with
302 .BR sigqueue (3)
303 fill in
304 .IR si_int " and " si_ptr
305 with the values specified by the sender of the signal;
306 see
307 .BR sigqueue (3)
308 for more details.
309 .IP *
310 Signals sent by POSIX.1b timers (since Linux 2.6) fill in
311 .I si_overrun
312 and
313 .IR si_timerid .
314 The
315 .I si_timerid
316 field is an internal ID used by the kernel to identify
317 the timer; it is not the same as the timer ID returned by
318 .BR timer_create (2).
319 The
320 .I si_overrun
321 field is the timer overrun count;
322 this is the same information as is obtained by a call to
323 .BR timer_getoverrun (2).
324 These fields are nonstandard Linux extensions.
325 .IP *
326 Signals sent for message queue notification (see the description of
327 .B SIGEV_SIGNAL
328 in
329 .BR mq_notify (3))
330 fill in
331 .IR si_int / si_ptr ,
332 with the
333 .I sigev_value
334 supplied to
335 .BR mq_notify (3);
336 .IR si_pid ,
337 with the process ID of the message sender; and
338 .IR si_uid ,
339 with the real user ID of the message sender.
340 .IP *
341 .B SIGCHLD
342 fills in
343 .IR si_pid ", " si_uid ", " si_status ", " si_utime " and " si_stime ,
344 providing information about the child.
345 The
346 .I si_pid
347 field is the process ID of the child;
348 .I si_uid
349 is the child's real user ID.
350 The
351 .I si_status
352 field contains the exit status of the child (if
353 .I si_code
354 is
355 .BR CLD_EXITED ),
356 or the signal number that caused the process to change state.
357 The
358 .I si_utime
359 and
360 .I si_stime
361 contain the user and system CPU time used by the child process;
362 these fields do not include the times used by waited-for children (unlike
363 .BR getrusage (2)
364 and
365 .BR time (2)).
366 In kernels up to 2.6, and since 2.6.27, these fields report
367 CPU time in units of
368 .IR sysconf(_SC_CLK_TCK) .
369 In 2.6 kernels before 2.6.27,
370 a bug meant that these fields reported time in units
371 of the (configurable) system jiffy (see
372 .BR time (7)).
373 .\" FIXME .
374 .\" When si_utime and si_stime where originally implemented, the
375 .\" measurement unit was HZ, which was the same as clock ticks
376 .\" (sysconf(_SC_CLK_TCK)).  In 2.6, HZ became configurable, and
377 .\" was *still* used as the unit to return the info these fields,
378 .\" with the result that the field values depended on the the
379 .\" configured HZ.  Of course, the should have been measured in
380 .\" USER_HZ instead, so that sysconf(_SC_CLK_TCK) could be used to
381 .\" convert to seconds.  I have a queued patch to fix this:
382 .\" http://thread.gmane.org/gmane.linux.kernel/698061/ .
383 .\" This patch made it into 2.6.27.
384 .\" But note that these fields still don't return the times of
385 .\" waited-for children (as is done by getrusage() and times()
386 .\" and wait4()).  Solaris 8 does include child times.
387 .IP *
388 .BR SIGILL ,
389 .BR SIGFPE ,
390 .BR SIGSEGV ,
391 .BR SIGBUS ,
392 and
393 .BR SIGTRAP
394 fill in
395 .I si_addr
396 with the address of the fault.
397 .\" FIXME SIGTRAP also sets the following for ptrace_notify() ?
398 .\"     info.si_code = exit_code;
399 .\"     info.si_pid = task_pid_vnr(current);
400 .\"     info.si_uid = current_uid();  /* Real UID */
401 On some architectures,
402 these signals also fill in the
403 .I si_trapno
404 filed.
405 Some suberrors of
406 .BR SIGBUS ,
407 in particular
408 .B BUS_MCEERR_AO
409 and
410 .BR BUS_MCEERR_AR ,
411 also fill in
412 .IR si_addr_lsb .
413 This field indicates the least significant bit of the reported address
414 and therefore the extent of the corruption.
415 For example, if a full page was corrupted,
416 .I si_addr_lsb
417 contains
418 .IR log2(sysconf(_SC_PAGESIZE)) .
419 .B BUS_MCERR_*
420 and
421 .I si_addr_lsb
422 are Linux-specific extensions.
423 .IP *
424 .BR SIGIO / SIGPOLL
425 (the two names are synonyms on Linux)
426 fills in
427 .IR si_band " and " si_fd .
428 The
429 .I si_band
430 event is a bit mask containing the same values as are filled in the
431 .I revents
432 field by
433 .BR poll (2).
434 The
435 .I si_fd
436 field indicates the file descriptor for which the I/O event occurred.
437 .PP
438 .I si_code
439 is a value (not a bit mask)
440 indicating why this signal was sent.
441 The following list shows the values which can be placed in
442 .I si_code
443 for any signal, along with reason that the signal was generated.
444 .RS 4
445 .TP 15
446 .B SI_USER
447 .BR kill (2)
448 .TP
449 .B SI_KERNEL
450 Sent by the kernel.
451 .TP
452 .B SI_QUEUE
453 .BR sigqueue (3)
454 .TP
455 .B SI_TIMER
456 POSIX timer expired
457 .TP
458 .B SI_MESGQ
459 POSIX message queue state changed (since Linux 2.6.6); see
460 .BR mq_notify (3)
461 .TP
462 .B SI_ASYNCIO
463 AIO completed
464 .TP
465 .B SI_SIGIO
466 Queued
467 .B SIGIO
468 (only in kernels up to Linux 2.2; from Linux 2.4 onward
469 .BR SIGIO / SIGPOLL
470 fills in
471 .I si_code
472 as described below).
473 .TP
474 .B SI_TKILL
475 .BR tkill (2)
476 or
477 .BR tgkill (2)
478 (since Linux 2.4.19)
479 .\" SI_DETHREAD is defined in 2.6.9 sources, but isn't implemented
480 .\" It appears to have been an idea that was tried during 2.5.6
481 .\" through to 2.5.24 and then was backed out.
482 .RE
483 .PP
484 The following values can be placed in
485 .I si_code
486 for a
487 .B SIGILL
488 signal:
489 .RS 4
490 .TP 15
491 .B ILL_ILLOPC
492 illegal opcode
493 .TP
494 .B ILL_ILLOPN
495 illegal operand
496 .TP
497 .B ILL_ILLADR
498 illegal addressing mode
499 .TP
500 .B ILL_ILLTRP
501 illegal trap
502 .TP
503 .B ILL_PRVOPC
504 privileged opcode
505 .TP
506 .B ILL_PRVREG
507 privileged register
508 .TP
509 .B ILL_COPROC
510 coprocessor error
511 .TP
512 .B ILL_BADSTK
513 internal stack error
514 .RE
515 .PP
516 The following values can be placed in
517 .I si_code
518 for a
519 .B SIGFPE
520 signal:
521 .RS 4
522 .TP 15
523 .B FPE_INTDIV
524 integer divide by zero
525 .TP
526 .B FPE_INTOVF
527 integer overflow
528 .TP
529 .B FPE_FLTDIV
530 floating-point divide by zero
531 .TP
532 .B FPE_FLTOVF
533 floating-point overflow
534 .TP
535 .B FPE_FLTUND
536 floating-point underflow
537 .TP
538 .B FPE_FLTRES
539 floating-point inexact result
540 .TP
541 .B FPE_FLTINV
542 floating-point invalid operation
543 .TP
544 .B FPE_FLTSUB
545 subscript out of range
546 .RE
547 .PP
548 The following values can be placed in
549 .I si_code
550 for a
551 .B SIGSEGV
552 signal:
553 .RS 4
554 .TP 15
555 .B SEGV_MAPERR
556 address not mapped to object
557 .TP
558 .B SEGV_ACCERR
559 invalid permissions for mapped object
560 .RE
561 .PP
562 The following values can be placed in
563 .I si_code
564 for a
565 .B SIGBUS
566 signal:
567 .RS 4
568 .TP 15
569 .B BUS_ADRALN
570 invalid address alignment
571 .TP
572 .B BUS_ADRERR
573 nonexistent physical address
574 .TP
575 .B BUS_OBJERR
576 object-specific hardware error
577 .TP
578 .BR BUS_MCEERR_AR " (since Linux 2.6.32)"
579 Hardware memory error consumed on a machine check; action required.
580 .TP
581 .BR BUS_MCEERR_AO " (since Linux 2.6.32)"
582 Hardware memory error detected in process but not consumed; action optional.
583 .RE
584 .PP
585 The following values can be placed in
586 .I si_code
587 for a
588 .B SIGTRAP
589 signal:
590 .RS 4
591 .TP 15
592 .B TRAP_BRKPT
593 process breakpoint
594 .TP
595 .B TRAP_TRACE
596 process trace trap
597 .TP
598 .BR TRAP_BRANCH " (since Linux 2.4)"
599 process taken branch trap
600 .TP
601 .BR TRAP_HWBKPT " (since Linux 2.4)"
602 hardware breakpoint/watchpoint
603 .RE
604 .PP
605 The following values can be placed in
606 .I si_code
607 for a
608 .B SIGCHLD
609 signal:
610 .RS 4
611 .TP 15
612 .B CLD_EXITED
613 child has exited
614 .TP
615 .B CLD_KILLED
616 child was killed
617 .TP
618 .B CLD_DUMPED
619 child terminated abnormally
620 .TP
621 .B CLD_TRAPPED
622 traced child has trapped
623 .TP
624 .B CLD_STOPPED
625 child has stopped
626 .TP
627 .B CLD_CONTINUED
628 stopped child has continued (since Linux 2.6.9)
629 .RE
630 .PP
631 The following values can be placed in
632 .I si_code
633 for a
634 .BR SIGIO / SIGPOLL
635 signal:
636 .RS 4
637 .TP 15
638 .B POLL_IN
639 data input available
640 .TP
641 .B POLL_OUT
642 output buffers available
643 .TP
644 .B POLL_MSG
645 input message available
646 .TP
647 .B POLL_ERR
648 I/O error
649 .TP
650 .B POLL_PRI
651 high priority input available
652 .TP
653 .B POLL_HUP
654 device disconnected
655 .RE
656 .SH "RETURN VALUE"
657 .BR sigaction ()
658 returns 0 on success and \-1 on error.
659 .SH ERRORS
660 .TP
661 .B EFAULT
662 .IR act " or " oldact
663 points to memory which is not a valid part of the process address space.
664 .TP
665 .B EINVAL
666 An invalid signal was specified.
667 This will also be generated if an attempt
668 is made to change the action for
669 .BR SIGKILL " or " SIGSTOP ", "
670 which cannot be caught or ignored.
671 .SH "CONFORMING TO"
672 POSIX.1-2001, SVr4.
673 .\" SVr4 does not document the EINTR condition.
674 .SH NOTES
675 A child created via
676 .BR fork (2)
677 inherits a copy of its parent's signal dispositions.
678 During an
679 .BR execve (2),
680 the dispositions of handled signals are reset to the default;
681 the dispositions of ignored signals are left unchanged.
682
683 According to POSIX, the behavior of a process is undefined after it
684 ignores a
685 .BR SIGFPE ,
686 .BR SIGILL ,
687 or
688 .B SIGSEGV
689 signal that was not generated by
690 .BR kill (2)
691 or
692 .BR raise (3).
693 Integer division by zero has undefined result.
694 On some architectures it will generate a
695 .B SIGFPE
696 signal.
697 (Also dividing the most negative integer by \-1 may generate
698 .BR SIGFPE .)
699 Ignoring this signal might lead to an endless loop.
700 .PP
701 POSIX.1-1990 disallowed setting the action for
702 .B SIGCHLD
703 to
704 .BR SIG_IGN .
705 POSIX.1-2001 allows this possibility, so that ignoring
706 .B SIGCHLD
707 can be used to prevent the creation of zombies (see
708 .BR wait (2)).
709 Nevertheless, the historical BSD and System V behaviors for ignoring
710 .B SIGCHLD
711 differ, so that the only completely portable method of ensuring that
712 terminated children do not become zombies is to catch the
713 .B SIGCHLD
714 signal and perform a
715 .BR wait (2)
716 or similar.
717 .PP
718 POSIX.1-1990 only specified
719 .BR SA_NOCLDSTOP .
720 POSIX.1-2001 added
721 .BR SA_NOCLDWAIT ,
722 .BR SA_RESETHAND ,
723 .BR SA_NODEFER ,
724 and
725 .BR SA_SIGINFO .
726 Use of these latter values in
727 .I sa_flags
728 may be less portable in applications intended for older
729 UNIX implementations.
730 .PP
731 The
732 .B SA_RESETHAND
733 flag is compatible with the SVr4 flag of the same name.
734 .PP
735 The
736 .B SA_NODEFER
737 flag is compatible with the SVr4 flag of the same name under kernels
738 1.3.9 and newer.
739 On older kernels the Linux implementation
740 allowed the receipt of any signal, not just the one we are installing
741 (effectively overriding any
742 .I sa_mask
743 settings).
744 .PP
745 .BR sigaction ()
746 can be called with a NULL second argument to query the current signal
747 handler.
748 It can also be used to check whether a given signal is valid for
749 the current machine by calling it with NULL second and third arguments.
750 .PP
751 It is not possible to block
752 .BR SIGKILL " or " SIGSTOP
753 (by specifying them in
754 .IR sa_mask ).
755 Attempts to do so are silently ignored.
756 .PP
757 See
758 .BR sigsetops (3)
759 for details on manipulating signal sets.
760 .PP
761 See
762 .BR signal (7)
763 for a list of the async-signal-safe functions that can be
764 safely called inside from inside a signal handler.
765 .SS Undocumented
766 Before the introduction of
767 .B SA_SIGINFO
768 it was also possible to get some additional information,
769 namely by using a
770 .I sa_handler
771 with second argument of type
772 .IR "struct sigcontext".
773 See the relevant kernel sources for details.
774 This use is obsolete now.
775 .SH BUGS
776 In kernels up to and including 2.6.13, specifying
777 .B SA_NODEFER
778 in
779 .I sa_flags
780 prevents not only the delivered signal from being masked during
781 execution of the handler, but also the signals specified in
782 .IR sa_mask .
783 This bug was fixed in kernel 2.6.14.
784 .SH EXAMPLE
785 See
786 .BR mprotect (2).
787 .SH "SEE ALSO"
788 .BR kill (1),
789 .BR kill (2),
790 .BR killpg (2),
791 .BR pause (2),
792 .BR sigaltstack (2),
793 .BR signal (2),
794 .BR signalfd (2),
795 .BR sigpending (2),
796 .BR sigprocmask (2),
797 .BR sigsuspend (2),
798 .BR wait (2),
799 .BR raise (3),
800 .BR siginterrupt (3),
801 .BR sigqueue (3),
802 .BR sigsetops (3),
803 .BR sigvec (3),
804 .BR core (5),
805 .BR signal (7)