📄 signal.3
字号:
.\" Copyright (c) 1980, 1991, 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..\".\" @(#)signal.3 8.3 (Berkeley) 4/19/94.\".Dd April 19, 1994.Dt SIGNAL 3.Os BSD 4.Sh NAME.Nm signal.Nd simplified software signal facilities.Sh SYNOPSIS.Fd #include <signal.h>.Ft void.Fn *signal sig func\*(lp\*(rp.Ft void.\" can not do this with .Fn yet.br\*(lp\|\*(fN*func\*(rp\*(lp\|\*(rp\fR.Sh DESCRIPTIONThis.Fn signalfacilityis a simplified interface to the more general.Xr sigaction 2facility..PpSignals allow the manipulation of a process from outside itsdomain as well as allowing the process to manipulate itself orcopies of itself (children). There are two general types of signals:those that cause termination of a process and those that do not.Signals which cause termination of a program might result froman irrecoverable error or might be the result of a user at a terminaltyping the `interrupt' character.Signals are used when a process is stopped because it wishes to accessits control terminal while in the background (see.Xr tty 4 ) .Signals are optionally generatedwhen a process resumes after being stopped,when the status of child processes changes,or when input is ready at the control terminal.Most signals result in the termination of the process receiving themif no actionis taken; some signals instead cause the process receiving themto be stopped, or are simply discarded if the process has notrequested otherwise.Except for the.Dv SIGKILLand.Dv SIGSTOPsignals, the.Fn signalfunction allows for a signal to be caught, to be ignored, or to generatean interrupt.These signals are defined in the 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.PpThe.Fa funcprocedure allows a user to choose the action upon receipt of a signal.To set the default action of the signal to occur as listed above,.Fa funcshould be.Dv SIG_DFL .A.Dv SIG_DFLresets the default action.To ignore the signal.Fa funcshould be.Dv SIG_IGN .This will cause subsequent instances of the signal to be ignoredand pending instances to be discarded. If.Dv SIG_IGNis not used,further occurrences of the signal areautomatically blocked and.Fa funcis called..PpThe handled signal is unblocked with thefunction returns andthe process continues from where it left off when the signal occurred..Bf -symbolicUnlike previous signal facilities, the handlerfunc() remains installed after a signal has been delivered..Ef.PpFor some system calls, if a signal is caught while the call isexecuting and the call is prematurely terminated,the call is automatically restarted.(The handler is installed using the.Dv SA_RESTARTflag with.Xr sigaction 2 . )The affected system calls include.Xr read 2 ,.Xr write 2 ,.Xr sendto 2 ,.Xr recvfrom 2 ,.Xr sendmsg 2and.Xr recvmsg 2on a communications channel or a low speed deviceand during a.Xr ioctl 2or.Xr wait 2 .However, calls that have already committed are not restarted,but instead return a partial success (for example, a short read count)..PpWhen a process which has installed signal handlers forks,the child process inherits the signals.All caught signals may be reset to their default action by a callto the.Xr execve 2function;ignored signals remain ignored..Sh RETURN VALUESThe previous action is returned on a successful call.Otherwise, \-1 is returned and the global variable.Va errnois set to indicate the error..Sh ERRORS.Xr Signalwill fail and no action will take place if one of thefollowing occur:.Bl -tag -width [EINVAL].It Bq Er EINVAL.Em Sigis not a valid signal number..It Bq Er EINVALAn attempt is made to ignore or supply a handler for.Dv SIGKILLor.Ev SIGSTOP ..Sh SEE ALSO.Xr kill 1 ,.Xr ptrace 2 ,.Xr kill 2 ,.Xr sigaction 2 ,.Xr sigaltstack 2 ,.Xr sigprocmask 2 ,.Xr sigsuspend 2 ,.Xr setjmp 3 ,.Xr tty 4.Sh HISTORYThis.Nm signalfacility appeared in .Bx 4.0 .
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -