📄 sigaction.2
字号:
.\" Copyright (c) 1980, 1990, 1993.\" The Regents of the University of California. All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)sigaction.2 8.2 (Berkeley) 4/3/94.\".Dd April 3, 1994.Dt SIGACTION 2.Os.Sh NAME.Nm sigaction.Nd software signal facilities.Sh SYNOPSIS.Fd #include <signal.h>.Bd -literalstruct sigaction { void (*sa_handler)(); sigset_t sa_mask; int sa_flags;};.Ed.Fn sigaction "int sig" "struct sigaction *act" "struct sigaction *oact".Sh DESCRIPTIONThe system defines a set of signals that may be delivered to a process.Signal delivery resembles the occurrence of a hardware interrupt:the signal is blocked from further occurrence, the current process context is saved, and a new one is built. A process may specify a.Em handlerto which a signal is delivered, or specify that a signal is to be .Em ignored .A process may also specify that a default action is to be takenby the system when a signal occurs.A signal may also be.Em blocked ,in which case its delivery is postponed until it is.Em unblocked .The action to be taken on delivery is determined at the timeof delivery.Normally, signal handlers execute on the current stackof the process. This may be changed, on a per-handler basis,so that signals are taken on a special.Em "signal stack" ..PpSignal routines execute with the signal that caused theirinvocation.Em blocked ,but other signals may yet occur.A global .Em "signal mask"defines the set of signals currently blocked from deliveryto a process. The signal mask for a process is initializedfrom that of its parent (normally empty). Itmay be changed with a.Xr sigprocmask 2call, or when a signal is delivered to the process..PpWhen a signalcondition arises for a process, the signal is added to a set ofsignals pending for the process.If the signal is not currently.Em blockedby the process then it is delivered to the process.Signals may be delivered any time a process enters the operating system(e.g., during a system call, page fault or trap, or clock interrupt).If multiple signals are ready to be delivered at the same time,any signals that could be caused by traps are delivered first.Additional signals may be processed at the same time, with eachappearing to interrupt the handlers for the previous signalsbefore their first instructions.The set of pending signals is returned by the.Xr sigpending 2function.When a caught signalis delivered, the current state of the process is saved,a new signal mask is calculated (as described below), and the signal handler is invoked. The call to the handleris arranged so that if the signal handling routine returnsnormally the process will resume execution in the contextfrom before the signal's delivery.If the process wishes to resume in a different context, then itmust arrange to restore the previous context itself..PpWhen a signal is delivered to a process a new signal mask isinstalled for the duration of the process' signal handler(or until a.Xr sigprocmaskcall is made).This mask is formed by taking the union of the current signal mask set,the signal to be delivered, and the signal mask associated with the handler to be invoked..Pp.Fn Sigactionassigns an action for a specific signal.If.Fa actis non-zero, itspecifies an action.Pf ( Dv SIG_DFL ,.Dv SIG_IGN ,or a handler routine) and maskto be used when delivering the specified signal.If .Fa oactis non-zero, the previous handling information for the signalis returned to the user..PpOnce a signal handler is installed, it remains installeduntil another.Fn sigactioncall is made, or an .Xr execve 2is performed.A signal-specific default action may be reset bysetting.Fa sa_handlerto.Dv SIG_DFL .The defaults are process termination, possibly with core dump;no action; stopping the process; or continuing the process.See the signal list below for each signal's default action.If.Fa sa_handleris.Dv SIG_DFL ,the default action for the signal is to discard the signal,and if a signal is pending,the pending signal is discarded even if the signal is masked.If.Fa sa_handleris set to.Dv SIG_IGNcurrent and pending instancesof the signal are ignored and discarded..PpOptions may be specified by setting.Em sa_flags .If the.Dv SA_NOCLDSTOPbit is set when installing a catching functionfor the.Dv SIGCHLDsignal,the.Dv SIGCHLDsignal will be generated only when a child process exits,not when a child process stops.Further, if the.Dv SA_ONSTACKbit is set in.Em sa_flags ,the system will deliver the signal to the process on a.Em "signal stack" ,specified with.Xr sigstack 2 ..PpIf a signal is caught during the system calls listed below,the call may be forced to terminatewith the error.Dv EINTR ,the call may return with a data transfer shorter than requested,or the call may be restarted.Restart of pending calls is requestedby setting the.Dv SA_RESTARTbit in.Ar sa_flags .The affected system calls include.Xr open 2 ,.Xr read 2 ,.Xr write 2 ,.Xr sendto 2 ,.Xr recvfrom 2 ,.Xr sendmsg 2and.Xr recvmsg 2on a communications channel or a slow device (such as a terminal,but not a regular file)and during a.Xr wait 2or.Xr ioctl 2 .However, calls that have already committed are not restarted,but instead return a partial success (for example, a short read count)..PpAfter a.Xr fork 2or.Xr vfork 2all signals, the signal mask, the signal stack,and the restart/interrupt flags are inherited by the child..Pp.Xr Execve 2reinstates the defaultaction for all signals which were caught andresets all signals to be caught on the user stack.Ignored signals remain ignored;the signal mask remains the same;signals that restart pending system calls continue to do so..PpThe following is a list of all signalswith names as in the include file.Aq Pa signal.h :.Bl -column SIGVTALARMXX "create core imagexxx".It Sy " NAME " " Default Action " " Description".It Dv SIGHUP No " terminate process" " terminal line hangup".It Dv SIGINT No " terminate process" " interrupt program".It Dv SIGQUIT No " create core image" " quit program".It Dv SIGILL No " create core image" " illegal instruction".It Dv SIGTRAP No " create core image" " trace trap".It Dv SIGABRT No " create core image" Xr abort 2call (formerly.Dv SIGIOT ).It Dv SIGEMT No " create core image" " emulate instruction executed".It Dv SIGFPE No " create core image" " floating-point exception".It Dv SIGKILL No " terminate process" " kill program".It Dv SIGBUS No " create core image" " bus error".It Dv SIGSEGV No " create core image" " segmentation violation".It Dv SIGSYS No " create core image" " system call given invalid argument".It Dv SIGPIPE No " terminate process" " write on a pipe with no reader".It Dv SIGALRM No " terminate process" " real-time timer expired".It Dv SIGTERM No " terminate process" " software termination signal".It Dv SIGURG No " discard signal" " urgent condition present on socket".It Dv SIGSTOP No " stop process" " stop (cannot be caught or ignored)".It Dv SIGTSTP No " stop process" " stop signal generated from keyboard".It Dv SIGCONT No " discard signal" " continue after stop".It Dv SIGCHLD No " discard signal" " child status has changed".It Dv SIGTTIN No " stop process" " background read attempted from control terminal".It Dv SIGTTOU No " stop process" " background write attempted to control terminal".It Dv SIGIO No " discard signal" Tn " I/O"is possible on a descriptor (see.Xr fcntl 2 ).It Dv SIGXCPU No " terminate process" " cpu time limit exceeded (see".Xr setrlimit 2 ).It Dv SIGXFSZ No " terminate process" " file size limit exceeded (see".Xr setrlimit 2 ).It Dv SIGVTALRM No " terminate process" " virtual time alarm (see".Xr setitimer 2 ).It Dv SIGPROF No " terminate process" " profiling timer alarm (see".Xr setitimer 2 ).It Dv SIGWINCH No " discard signal" " Window size change".It Dv SIGINFO No " discard signal" " status request from keyboard".It Dv SIGUSR1 No " terminate process" " User defined signal 1".It Dv SIGUSR2 No " terminate process" " User defined signal 2".El.Sh NOTEThe mask specified in .Fa actis not allowed to block.Dv SIGKILLor.Dv SIGSTOP .This is done silently by the system..Sh RETURN VALUESA 0 value indicated that the call succeeded. A \-1 return valueindicates an error occurred and.Va errnois set to indicated the reason..Sh EXAMPLEThe handler routine can be declared:.Bd -literal -offset indentvoid handler(sig, code, scp)int sig, code;struct sigcontext *scp;.Ed.PpHere.Fa sigis the signal number, into which the hardware faults and traps aremapped..Fa Codeis a parameter that is either a constantor the code provided bythe hardware..Fa Scpis a pointer to the.Fa sigcontextstructure (defined in.Aq Pa signal.h ) ,used to restore the context from before the signal..Sh ERRORS.Fn Sigactionwill fail and no new signal handler will be installed if oneof the following occurs:.Bl -tag -width Er.It Bq Er EFAULTEither.Fa actor .Fa oactpoints to memory that is not a valid part of the processaddress space..It Bq Er EINVAL.Fa Sigis not a valid signal number..It Bq Er EINVALAn attempt is made to ignore or supply a handler for.Dv SIGKILLor.Dv SIGSTOP ..El.Sh STANDARDSThe.Nm sigactionfunction is defined by.St -p1003.1-88 .The.Dv SA_ONSTACKand.Dv SA_RESTARTflags are Berkeley extensions,as are the signals,.Dv SIGTRAP ,.Dv SIGEMT ,.Dv SIGBUS ,.Dv SIGSYS ,.Dv SIGURG ,.Dv SIGIO ,.Dv SIGXCPU ,.Dv SIGXFSZ ,.Dv SIGVTALRM ,.Dv SIGPROF ,.Dv SIGWINCH ,and.Dv SIGINFO .Those signals are available on most.Tn BSD Ns \-derivedsystems..Sh SEE ALSO.Xr kill 1 ,.Xr ptrace 2 ,.Xr kill 2 ,.Xr sigaction 2 ,.Xr sigprocmask 2 ,.Xr sigsuspend 2 ,.Xr sigblock 2 ,.Xr sigsetmask 2 ,.Xr sigpause 2 ,.Xr sigstack 2 ,.Xr sigvec 2 ,.Xr setjmp 3 ,.Xr siginterrupt 3 ,.Xr sigsetops 3 ,.Xr tty 4
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -