Module Name: src Committed By: wiz Date: Tue Jul 12 12:39:04 UTC 2016
Modified Files: src/share/man/man7: signal.7 Log Message: Whitespace fixes, xref fixes, a bit more markup. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/share/man/man7/signal.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/man/man7/signal.7 diff -u src/share/man/man7/signal.7:1.19 src/share/man/man7/signal.7:1.20 --- src/share/man/man7/signal.7:1.19 Sat Jul 9 23:13:47 2016 +++ src/share/man/man7/signal.7 Tue Jul 12 12:39:04 2016 @@ -1,4 +1,4 @@ -.\" $NetBSD: signal.7,v 1.19 2016/07/09 23:13:47 dholland Exp $ +.\" $NetBSD: signal.7,v 1.20 2016/07/12 12:39:04 wiz Exp $ .\" .\" Copyright (c) 1999, 2016 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -62,7 +62,7 @@ If the process has elected to the signal temporarily, delivery is postponed until the process later unblocks that signal. Otherwise, the signal is -.Em delivered, +.Em delivered , meaning that whatever the process is doing is interrupted in order to react to the signal. (Note that processes that are waiting in the kernel must unwind what @@ -344,7 +344,7 @@ This signal is generated when an ``urgen socket. In practice this means when .Xr tcp 4 -out-of-band data has arrived. +out-of-band data has arrived. The default action is to do nothing. The number for .Dv SIGURG @@ -392,7 +392,7 @@ is 19. .It Dv SIGCHLD Ta (Child exited) This signal is generated by the kernel when one of a process's immediate children exits and can be waited for using one of the -.Xr wait 3 +.Xr wait 2 family of functions. The default action is to do nothing. As a special case hack, if @@ -432,7 +432,7 @@ when a process that is not in the foregr terminal attempts to write to this terminal, if the terminal is configured accordingly, which is not the default. (See -.Xr termios 4 .) +.Xr termios 4 . ) The default action is to stop the process. The number for .Dv SIGTTOU @@ -457,9 +457,9 @@ exceeds the configured limit. See .Xr setrlimit 2 and the -ulimit +.Ic ulimit and -rlimit +.Ic rlimit builtins of .Xr sh 1 and @@ -476,9 +476,9 @@ file to exceed the configured limit. See .Xr setrlimit 2 and the -ulimit +.Ic ulimit and -rlimit +.Ic rlimit builtins of .Xr sh 1 and @@ -574,9 +574,9 @@ This utility is built into many shells t jobs. .Ss Program Interface In C code signals may be sent using -.Xr raise 3, -.Xr kill 2, -.Xr pthread_kill 2, +.Xr raise 3 , +.Xr kill 2 , +.Xr pthread_kill 3 , and some other related functions. .Pp Signals may be caught or ignored using @@ -584,7 +584,7 @@ Signals may be caught or ignored using or the simpler .Xr signal 3 , and blocked using -.Xr sigprocmask . +.Xr sigprocmask 2 . .Sh STANDARDS The .Dv SIGTRAP ,