]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/sigaction.2
libc: Fix most issues reported by mandoc
[FreeBSD/FreeBSD.git] / lib / libc / sys / sigaction.2
1 .\" Copyright (c) 1980, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     From: @(#)sigaction.2   8.2 (Berkeley) 4/3/94
29 .\" $FreeBSD$
30 .\"
31 .Dd June 29, 2020
32 .Dt SIGACTION 2
33 .Os
34 .Sh NAME
35 .Nm sigaction
36 .Nd software signal facilities
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In signal.h
41 .Bd -literal
42 struct  sigaction {
43         void    (*sa_handler)(int);
44         void    (*sa_sigaction)(int, siginfo_t *, void *);
45         int     sa_flags;               /* see signal options below */
46         sigset_t sa_mask;               /* signal mask to apply */
47 };
48 .Ed
49 .Pp
50 .Ft int
51 .Fo sigaction
52 .Fa "int sig"
53 .Fa "const struct sigaction * restrict act"
54 .Fa "struct sigaction * restrict oact"
55 .Fc
56 .Sh DESCRIPTION
57 The system defines a set of signals that may be delivered to a process.
58 Signal delivery resembles the occurrence of a hardware interrupt:
59 the signal is normally blocked from further occurrence, the current thread
60 context is saved, and a new one is built.
61 A process may specify a
62 .Em handler
63 to which a signal is delivered, or specify that a signal is to be
64 .Em ignored .
65 A process may also specify that a default action is to be taken
66 by the system when a signal occurs.
67 A signal may also be
68 .Em blocked
69 for a thread,
70 in which case it will not be delivered to that thread until it is
71 .Em unblocked .
72 The action to be taken on delivery is determined at the time
73 of delivery.
74 Normally, signal handlers execute on the current stack
75 of the thread.
76 This may be changed, on a per-handler basis,
77 so that signals are taken on a special
78 .Em "signal stack" .
79 .Pp
80 Signal routines normally execute with the signal that caused their
81 invocation
82 .Em blocked ,
83 but other signals may yet occur.
84 A global
85 .Em "signal mask"
86 defines the set of signals currently blocked from delivery
87 to a thread.
88 The signal mask for a thread is initialized
89 from that of its parent (normally empty).
90 It may be changed with a
91 .Xr sigprocmask 2
92 or
93 .Xr pthread_sigmask 3
94 call, or when a signal is delivered to the thread.
95 .Pp
96 When a signal
97 condition arises for a process or thread, the signal is added to a set of
98 signals pending for the process or thread.
99 Whether the signal is directed at the process in general or at a specific
100 thread depends on how it is generated.
101 For signals directed at a specific thread,
102 if the signal is not currently
103 .Em blocked
104 by the thread then it is delivered to the thread.
105 For signals directed at the process,
106 if the signal is not currently
107 .Em blocked
108 by all threads then it is delivered to one thread that does not have it blocked
109 (the selection of which is unspecified).
110 Signals may be delivered any time a thread enters the operating system
111 (e.g., during a system call, page fault or trap, or clock interrupt).
112 If multiple signals are ready to be delivered at the same time,
113 any signals that could be caused by traps are delivered first.
114 Additional signals may be processed at the same time, with each
115 appearing to interrupt the handlers for the previous signals
116 before their first instructions.
117 The set of pending signals is returned by the
118 .Xr sigpending 2
119 system call.
120 When a caught signal
121 is delivered, the current state of the thread is saved,
122 a new signal mask is calculated (as described below),
123 and the signal handler is invoked.
124 The call to the handler
125 is arranged so that if the signal handling routine returns
126 normally the thread will resume execution in the context
127 from before the signal's delivery.
128 If the thread wishes to resume in a different context, then it
129 must arrange to restore the previous context itself.
130 .Pp
131 When a signal is delivered to a thread a new signal mask is
132 installed for the duration of the process' signal handler
133 (or until a
134 .Xr sigprocmask 2
135 system call is made).
136 This mask is formed by taking the union of the current signal mask set,
137 the signal to be delivered, and
138 the signal mask associated with the handler to be invoked.
139 .Pp
140 The
141 .Fn sigaction
142 system call
143 assigns an action for a signal specified by
144 .Fa sig .
145 If
146 .Fa act
147 is non-NULL, it specifies an action
148 .Dv ( SIG_DFL ,
149 .Dv SIG_IGN ,
150 or a handler routine) and mask to be used when delivering the specified signal.
151 If
152 .Fa oact
153 is non-NULL, the previous handling information for the signal
154 is returned to the user.
155 .Pp
156 The above declaration of
157 .Vt "struct sigaction"
158 is not literal.
159 It is provided only to list the accessible members.
160 See
161 .In sys/signal.h
162 for the actual definition.
163 In particular, the storage occupied by
164 .Va sa_handler
165 and
166 .Va sa_sigaction
167 overlaps, and it is nonsensical for an application to attempt to use both
168 simultaneously.
169 .Pp
170 Once a signal handler is installed, it normally remains installed
171 until another
172 .Fn sigaction
173 system call is made, or an
174 .Xr execve 2
175 is performed.
176 A signal-specific default action may be reset by
177 setting
178 .Va sa_handler
179 to
180 .Dv SIG_DFL .
181 The defaults are process termination, possibly with core dump;
182 no action; stopping the process; or continuing the process.
183 See the signal list below for each signal's default action.
184 If
185 .Va sa_handler
186 is
187 .Dv SIG_DFL ,
188 the default action for the signal is to discard the signal,
189 and if a signal is pending,
190 the pending signal is discarded even if the signal is masked.
191 If
192 .Va sa_handler
193 is set to
194 .Dv SIG_IGN
195 current and pending instances
196 of the signal are ignored and discarded.
197 .Pp
198 Options may be specified by setting
199 .Va sa_flags .
200 The meaning of the various bits is as follows:
201 .Bl -tag -offset indent -width SA_RESETHANDXX
202 .It Dv SA_NOCLDSTOP
203 If this bit is set when installing a catching function
204 for the
205 .Dv SIGCHLD
206 signal,
207 the
208 .Dv SIGCHLD
209 signal will be generated only when a child process exits,
210 not when a child process stops.
211 .It Dv SA_NOCLDWAIT
212 If this bit is set when calling
213 .Fn sigaction
214 for the
215 .Dv SIGCHLD
216 signal, the system will not create zombie processes when children of
217 the calling process exit.
218 If the calling process subsequently issues a
219 .Xr wait 2
220 (or equivalent), it blocks until all of the calling process's child
221 processes terminate, and then returns a value of \-1 with
222 .Va errno
223 set to
224 .Er ECHILD .
225 The same effect of avoiding zombie creation can also be achieved by setting
226 .Va sa_handler
227 for
228 .Dv SIGCHLD
229 to
230 .Dv SIG_IGN .
231 .It Dv SA_ONSTACK
232 If this bit is set, the system will deliver the signal to the process
233 on a
234 .Em "signal stack" ,
235 specified by each thread with
236 .Xr sigaltstack 2 .
237 .It Dv SA_NODEFER
238 If this bit is set, further occurrences of the delivered signal are
239 not masked during the execution of the handler.
240 .It Dv SA_RESETHAND
241 If this bit is set, the handler is reset back to
242 .Dv SIG_DFL
243 at the moment the signal is delivered.
244 .It Dv SA_RESTART
245 See paragraph below.
246 .It Dv SA_SIGINFO
247 If this bit is set, the handler function is assumed to be pointed to by the
248 .Va sa_sigaction
249 member of
250 .Vt "struct sigaction"
251 and should match the prototype shown above or as below in
252 .Sx EXAMPLES .
253 This bit should not be set when assigning
254 .Dv SIG_DFL
255 or
256 .Dv SIG_IGN .
257 .El
258 .Pp
259 If a signal is caught during the system calls listed below,
260 the call may be forced to terminate
261 with the error
262 .Er EINTR ,
263 the call may return with a data transfer shorter than requested,
264 or the call may be restarted.
265 Restart of pending calls is requested
266 by setting the
267 .Dv SA_RESTART
268 bit in
269 .Va sa_flags .
270 The affected system calls include
271 .Xr open 2 ,
272 .Xr read 2 ,
273 .Xr write 2 ,
274 .Xr sendto 2 ,
275 .Xr recvfrom 2 ,
276 .Xr sendmsg 2
277 and
278 .Xr recvmsg 2
279 on a communications channel or a slow device (such as a terminal,
280 but not a regular file)
281 and during a
282 .Xr wait 2
283 or
284 .Xr ioctl 2 .
285 However, calls that have already committed are not restarted,
286 but instead return a partial success (for example, a short read count).
287 .Pp
288 After a
289 .Xr pthread_create 3
290 the signal mask is inherited by the new thread and
291 the set of pending signals and the signal stack for the new thread are empty.
292 .Pp
293 After a
294 .Xr fork 2
295 or
296 .Xr vfork 2
297 all signals, the signal mask, the signal stack,
298 and the restart/interrupt flags are inherited by the child.
299 .Pp
300 The
301 .Xr execve 2
302 system call reinstates the default
303 action for all signals which were caught and
304 resets all signals to be caught on the user stack.
305 Ignored signals remain ignored;
306 the signal mask remains the same;
307 signals that restart pending system calls continue to do so.
308 .Pp
309 The following is a list of all signals
310 with names as in the include file
311 .In signal.h :
312 .Bl -column SIGVTALARMXX "create core imagexxx"
313 .It Sy NAME Ta Sy Default Action Ta Sy Description
314 .It Dv SIGHUP Ta terminate process Ta terminal line hangup
315 .It Dv SIGINT Ta terminate process Ta interrupt program
316 .It Dv SIGQUIT Ta create core image Ta quit program
317 .It Dv SIGILL Ta create core image Ta illegal instruction
318 .It Dv SIGTRAP Ta create core image Ta trace trap
319 .It Dv SIGABRT Ta create core image Ta Xr abort 3 call (formerly Dv SIGIOT )
320 .It Dv SIGEMT Ta create core image Ta emulate instruction executed
321 .It Dv SIGFPE Ta create core image Ta floating-point exception
322 .It Dv SIGKILL Ta terminate process Ta kill program
323 .It Dv SIGBUS Ta create core image Ta bus error
324 .It Dv SIGSEGV Ta create core image Ta segmentation violation
325 .It Dv SIGSYS Ta create core image Ta non-existent system call invoked
326 .It Dv SIGPIPE Ta terminate process Ta write on a pipe with no reader
327 .It Dv SIGALRM Ta terminate process Ta real-time timer expired
328 .It Dv SIGTERM Ta terminate process Ta software termination signal
329 .It Dv SIGURG Ta discard signal Ta urgent condition present on socket
330 .It Dv SIGSTOP Ta stop process Ta stop (cannot be caught or ignored)
331 .It Dv SIGTSTP Ta stop process Ta stop signal generated from keyboard
332 .It Dv SIGCONT Ta discard signal Ta continue after stop
333 .It Dv SIGCHLD Ta discard signal Ta child status has changed
334 .It Dv SIGTTIN Ta stop process Ta background read attempted from control terminal
335 .It Dv SIGTTOU Ta stop process Ta background write attempted to control terminal
336 .It Dv SIGIO Ta discard signal Ta I/O is possible on a descriptor (see Xr fcntl 2 )
337 .It Dv SIGXCPU Ta terminate process Ta cpu time limit exceeded (see Xr setrlimit 2 )
338 .It Dv SIGXFSZ Ta terminate process Ta file size limit exceeded (see Xr setrlimit 2 )
339 .It Dv SIGVTALRM Ta terminate process Ta virtual time alarm (see Xr setitimer 2 )
340 .It Dv SIGPROF Ta terminate process Ta profiling timer alarm (see Xr setitimer 2 )
341 .It Dv SIGWINCH Ta discard signal Ta window size change
342 .It Dv SIGINFO Ta discard signal Ta status request from keyboard
343 .It Dv SIGUSR1 Ta terminate process Ta user defined signal 1
344 .It Dv SIGUSR2 Ta terminate process Ta user defined signal 2
345 .El
346 .Sh NOTE
347 The
348 .Va sa_mask
349 field specified in
350 .Fa act
351 is not allowed to block
352 .Dv SIGKILL
353 or
354 .Dv SIGSTOP .
355 Any attempt to do so will be silently ignored.
356 .Pp
357 The following functions are either reentrant or not interruptible
358 by signals and are async-signal safe.
359 Therefore applications may
360 invoke them, without restriction, from signal-catching functions
361 or from a child process after calling
362 .Xr fork 2
363 in a multi-threaded process:
364 .Pp
365 Base Interfaces:
366 .Pp
367 .Fn _Exit ,
368 .Fn _exit ,
369 .Fn accept ,
370 .Fn access ,
371 .Fn alarm ,
372 .Fn bind ,
373 .Fn cfgetispeed ,
374 .Fn cfgetospeed ,
375 .Fn cfsetispeed ,
376 .Fn cfsetospeed ,
377 .Fn chdir ,
378 .Fn chmod ,
379 .Fn chown ,
380 .Fn close ,
381 .Fn connect ,
382 .Fn creat ,
383 .Fn dup ,
384 .Fn dup2 ,
385 .Fn execl ,
386 .Fn execle ,
387 .Fn execv ,
388 .Fn execve ,
389 .Fn faccessat ,
390 .Fn fchdir ,
391 .Fn fchmod ,
392 .Fn fchmodat ,
393 .Fn fchown ,
394 .Fn fchownat ,
395 .Fn fcntl ,
396 .Fn fork ,
397 .Fn fstat ,
398 .Fn fstatat ,
399 .Fn fsync ,
400 .Fn ftruncate ,
401 .Fn getegid ,
402 .Fn geteuid ,
403 .Fn getgid ,
404 .Fn getgroups ,
405 .Fn getpeername ,
406 .Fn getpgrp ,
407 .Fn getpid ,
408 .Fn getppid ,
409 .Fn getsockname ,
410 .Fn getsockopt ,
411 .Fn getuid ,
412 .Fn kill ,
413 .Fn link ,
414 .Fn linkat ,
415 .Fn listen ,
416 .Fn lseek ,
417 .Fn lstat ,
418 .Fn mkdir ,
419 .Fn mkdirat ,
420 .Fn mkfifo ,
421 .Fn mkfifoat ,
422 .Fn mknod ,
423 .Fn mknodat ,
424 .Fn open ,
425 .Fn openat ,
426 .Fn pause ,
427 .Fn pipe ,
428 .Fn poll ,
429 .Fn pselect ,
430 .Fn pthread_sigmask ,
431 .Fn raise ,
432 .Fn read ,
433 .Fn readlink ,
434 .Fn readlinkat ,
435 .Fn recv ,
436 .Fn recvfrom ,
437 .Fn recvmsg ,
438 .Fn rename ,
439 .Fn renameat ,
440 .Fn rmdir ,
441 .Fn select ,
442 .Fn send ,
443 .Fn sendmsg ,
444 .Fn sendto ,
445 .Fn setgid ,
446 .Fn setpgid ,
447 .Fn setsid ,
448 .Fn setsockopt ,
449 .Fn setuid ,
450 .Fn shutdown ,
451 .Fn sigaction ,
452 .Fn sigaddset ,
453 .Fn sigdelset ,
454 .Fn sigemptyset ,
455 .Fn sigfillset ,
456 .Fn sigismember ,
457 .Fn signal ,
458 .Fn sigpending ,
459 .Fn sigprocmask ,
460 .Fn sigsuspend ,
461 .Fn sleep ,
462 .Fn sockatmark ,
463 .Fn socket ,
464 .Fn socketpair ,
465 .Fn stat ,
466 .Fn symlink ,
467 .Fn symlinkat ,
468 .Fn tcdrain ,
469 .Fn tcflow ,
470 .Fn tcflush ,
471 .Fn tcgetattr ,
472 .Fn tcgetpgrp ,
473 .Fn tcsendbreak ,
474 .Fn tcsetattr ,
475 .Fn tcsetpgrp ,
476 .Fn time ,
477 .Fn times ,
478 .Fn umask ,
479 .Fn uname ,
480 .Fn unlink ,
481 .Fn unlinkat ,
482 .Fn utime ,
483 .Fn wait ,
484 .Fn waitpid ,
485 .Fn write .
486 .Pp
487 X/Open Systems Interfaces:
488 .Pp
489 .Fn sigpause ,
490 .Fn sigset ,
491 .Fn utimes .
492 .Pp
493 Realtime Interfaces:
494 .Pp
495 .Fn aio_error ,
496 .Fn clock_gettime ,
497 .Fn timer_getoverrun ,
498 .Fn aio_return ,
499 .Fn fdatasync ,
500 .Fn sigqueue ,
501 .Fn timer_gettime ,
502 .Fn aio_suspend ,
503 .Fn sem_post ,
504 .Fn timer_settime .
505 .Pp
506 Base Interfaces not specified as async-signal safe by
507 .Tn POSIX :
508 .Pp
509 .Fn fpathconf ,
510 .Fn pathconf ,
511 .Fn sysconf .
512 .Pp
513 Base Interfaces not specified as async-signal safe by
514 .Tn POSIX ,
515 but planned to be:
516 .Pp
517 .Fn ffs ,
518 .Fn htonl ,
519 .Fn htons ,
520 .Fn memccpy ,
521 .Fn memchr ,
522 .Fn memcmp ,
523 .Fn memcpy ,
524 .Fn memmove ,
525 .Fn memset ,
526 .Fn ntohl ,
527 .Fn ntohs ,
528 .Fn stpcpy ,
529 .Fn stpncpy ,
530 .Fn strcat ,
531 .Fn strchr ,
532 .Fn strcmp ,
533 .Fn strcpy ,
534 .Fn strcspn ,
535 .Fn strlen ,
536 .Fn strncat ,
537 .Fn strncmp ,
538 .Fn strncpy ,
539 .Fn strnlen ,
540 .Fn strpbrk ,
541 .Fn strrchr ,
542 .Fn strspn ,
543 .Fn strstr ,
544 .Fn strtok_r ,
545 .Fn wcpcpy ,
546 .Fn wcpncpy ,
547 .Fn wcscat ,
548 .Fn wcschr ,
549 .Fn wcscmp ,
550 .Fn wcscpy ,
551 .Fn wcscspn ,
552 .Fn wcslen ,
553 .Fn wcsncat ,
554 .Fn wcsncmp ,
555 .Fn wcsncpy ,
556 .Fn wcsnlen ,
557 .Fn wcspbrk ,
558 .Fn wcsrchr ,
559 .Fn wcsspn ,
560 .Fn wcsstr ,
561 .Fn wcstok ,
562 .Fn wmemchr ,
563 .Fn wmemcmp ,
564 .Fn wmemcpy ,
565 .Fn wmemmove ,
566 .Fn wmemset .
567 .Pp
568 Extension Interfaces:
569 .Pp
570 .Fn accept4 ,
571 .Fn bindat ,
572 .Fn close_range ,
573 .Fn closefrom ,
574 .Fn connectat ,
575 .Fn eaccess ,
576 .Fn ffsl ,
577 .Fn ffsll ,
578 .Fn flock ,
579 .Fn fls ,
580 .Fn flsl ,
581 .Fn flsll ,
582 .Fn futimesat ,
583 .Fn pipe2 ,
584 .Fn strlcat .
585 .Fn strlcpy ,
586 .Fn strsep .
587 .Pp
588 In addition, reading or writing
589 .Va errno
590 is async-signal safe.
591 .Pp
592 All functions not in the above lists are considered to be unsafe
593 with respect to signals.
594 That is to say, the behaviour of such
595 functions is undefined when they are called from a signal handler
596 that interrupted an unsafe function.
597 In general though, signal handlers should do little more than set a
598 flag; most other actions are not safe.
599 .Pp
600 Also, it is good practice to make a copy of the global variable
601 .Va errno
602 and restore it before returning from the signal handler.
603 This protects against the side effect of
604 .Va errno
605 being set by functions called from inside the signal handler.
606 .Sh RETURN VALUES
607 .Rv -std sigaction
608 .Sh EXAMPLES
609 There are three possible prototypes the handler may match:
610 .Bl -tag -offset indent -width short
611 .It Tn ANSI C :
612 .Ft void
613 .Fn handler int ;
614 .It Traditional BSD style:
615 .Ft void
616 .Fn handler int "int code" "struct sigcontext *scp" ;
617 .It Tn POSIX Dv SA_SIGINFO :
618 .Ft void
619 .Fn handler int "siginfo_t *info" "ucontext_t *uap" ;
620 .El
621 .Pp
622 The handler function should match the
623 .Dv SA_SIGINFO
624 prototype if the
625 .Dv SA_SIGINFO
626 bit is set in
627 .Va sa_flags .
628 It then should be pointed to by the
629 .Va sa_sigaction
630 member of
631 .Vt "struct sigaction" .
632 Note that you should not assign
633 .Dv SIG_DFL
634 or
635 .Dv SIG_IGN
636 this way.
637 .Pp
638 If the
639 .Dv SA_SIGINFO
640 flag is not set, the handler function should match
641 either the
642 .Tn ANSI C
643 or traditional
644 .Bx
645 prototype and be pointed to by
646 the
647 .Va sa_handler
648 member of
649 .Vt "struct sigaction" .
650 In practice,
651 .Fx
652 always sends the three arguments of the latter and since the
653 .Tn ANSI C
654 prototype is a subset, both will work.
655 The
656 .Va sa_handler
657 member declaration in
658 .Fx
659 include files is that of
660 .Tn ANSI C
661 (as required by
662 .Tn POSIX ) ,
663 so a function pointer of a
664 .Bx Ns -style
665 function needs to be casted to
666 compile without warning.
667 The traditional
668 .Bx
669 style is not portable and since its capabilities
670 are a full subset of a
671 .Dv SA_SIGINFO
672 handler,
673 its use is deprecated.
674 .Pp
675 The
676 .Fa sig
677 argument is the signal number, one of the
678 .Dv SIG...
679 values from
680 .In signal.h .
681 .Pp
682 The
683 .Fa code
684 argument of the
685 .Bx Ns -style
686 handler and the
687 .Va si_code
688 member of the
689 .Fa info
690 argument to a
691 .Dv SA_SIGINFO
692 handler contain a numeric code explaining the
693 cause of the signal, usually one of the
694 .Dv SI_...
695 values from
696 .In sys/signal.h
697 or codes specific to a signal, i.e., one of the
698 .Dv FPE_...
699 values for
700 .Dv SIGFPE .
701 .Pp
702 The
703 .Fa scp
704 argument to a
705 .Bx Ns -style
706 handler points to an instance of
707 .Vt "struct sigcontext" .
708 .Pp
709 The
710 .Fa uap
711 argument to a
712 .Tn POSIX
713 .Dv SA_SIGINFO
714 handler points to an instance of
715 ucontext_t.
716 .Sh ERRORS
717 The
718 .Fn sigaction
719 system call
720 will fail and no new signal handler will be installed if one
721 of the following occurs:
722 .Bl -tag -width Er
723 .It Bq Er EINVAL
724 The
725 .Fa sig
726 argument
727 is not a valid signal number.
728 .It Bq Er EINVAL
729 An attempt is made to ignore or supply a handler for
730 .Dv SIGKILL
731 or
732 .Dv SIGSTOP .
733 .El
734 .Sh SEE ALSO
735 .Xr kill 1 ,
736 .Xr kill 2 ,
737 .Xr ptrace 2 ,
738 .Xr setitimer 2 ,
739 .Xr setrlimit 2 ,
740 .Xr sigaltstack 2 ,
741 .Xr sigpending 2 ,
742 .Xr sigprocmask 2 ,
743 .Xr sigsuspend 2 ,
744 .Xr wait 2 ,
745 .Xr fpsetmask 3 ,
746 .Xr setjmp 3 ,
747 .Xr siginfo 3 ,
748 .Xr siginterrupt 3 ,
749 .Xr sigsetops 3 ,
750 .Xr ucontext 3 ,
751 .Xr tty 4
752 .Sh STANDARDS
753 The
754 .Fn sigaction
755 system call is expected to conform to
756 .St -p1003.1-90 .
757 The
758 .Dv SA_ONSTACK
759 and
760 .Dv SA_RESTART
761 flags are Berkeley extensions,
762 as are the signals,
763 .Dv SIGTRAP ,
764 .Dv SIGEMT ,
765 .Dv SIGBUS ,
766 .Dv SIGSYS ,
767 .Dv SIGURG ,
768 .Dv SIGIO ,
769 .Dv SIGXCPU ,
770 .Dv SIGXFSZ ,
771 .Dv SIGVTALRM ,
772 .Dv SIGPROF ,
773 .Dv SIGWINCH ,
774 and
775 .Dv SIGINFO .
776 Those signals are available on most
777 .Bx Ns \-derived
778 systems.
779 The
780 .Dv SA_NODEFER
781 and
782 .Dv SA_RESETHAND
783 flags are intended for backwards compatibility with other operating
784 systems.
785 The
786 .Dv SA_NOCLDSTOP ,
787 and
788 .Dv SA_NOCLDWAIT
789 .\" and
790 .\" SA_SIGINFO
791 flags are featuring options commonly found in other operating systems.
792 The flags are approved by
793 .St -susv2 ,
794 along with the option to avoid zombie creation by ignoring
795 .Dv SIGCHLD .