]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - share/man/man9/psignal.9
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / share / man / man9 / psignal.9
1 .\" Copyright (c) 1996 The NetBSD Foundation, Inc.
2 .\" All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to The NetBSD Foundation
5 .\" by Paul Kranenburg.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
20 .\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 .\" POSSIBILITY OF SUCH DAMAGE.
27 .\"
28 .\"     $NetBSD: psignal.9,v 1.1 1996/06/22 22:57:35 pk Exp $
29 .\" $FreeBSD$
30 .\"
31 .Dd June 22, 1996
32 .Dt PSIGNAL 9
33 .Os
34 .Sh NAME
35 .Nm psignal ,
36 .Nm pgsignal ,
37 .Nm gsignal
38 .Nd post signal to a process or process group
39 .Sh SYNOPSIS
40 .In sys/types.h
41 .In sys/signalvar.h
42 .Ft void
43 .Fn psignal "struct proc *p" "int signum"
44 .Ft void
45 .Fn pgsignal "struct pgrp *pgrp" "int signum" "int checkctty"
46 .Ft void
47 .Fn gsignal "int pgid" "int signum"
48 .Sh DESCRIPTION
49 These functions post a signal to one or more processes.
50 The argument
51 .Fa signum
52 common to all three functions should be in the range
53 .Bq 1- Ns Dv NSIG .
54 .Pp
55 The
56 .Fn psignal
57 function posts signal number
58 .Fa signum
59 to the process represented by the process structure
60 .Fa p .
61 With a few exceptions noted below, the target process signal disposition is
62 updated and is marked as runnable, so further handling of the signal is done
63 in the context of the target process after a context switch.
64 Note that
65 .Fn psignal
66 does not by itself cause a context switch to happen.
67 .Pp
68 The target process is not marked as runnable in the following cases:
69 .Bl -bullet -offset indent
70 .It
71 The target process is sleeping uninterruptibly.
72 The signal will be
73 noticed when the process returns from the system call or trap.
74 .It
75 The target process is currently ignoring the signal.
76 .It
77 If a stop signal is sent to a sleeping process that takes the
78 default action
79 (see
80 .Xr sigaction 2 ) ,
81 the process is stopped without awakening it.
82 .It
83 .Dv SIGCONT
84 restarts a stopped process
85 (or puts them back to sleep)
86 regardless of the signal action
87 (e.g., blocked or ignored).
88 .El
89 .Pp
90 If the target process is being traced
91 .Fn psignal
92 behaves as if the target process were taking the default action for
93 .Fa signum .
94 This allows the tracing process to be notified of the signal.
95 .Pp
96 The
97 .Fn pgsignal
98 function posts signal number
99 .Fa signum
100 to each member of the process group described by
101 .Fa pgrp .
102 If
103 .Fa checkctty
104 is non-zero, the signal will be posted only to processes that have
105 a controlling terminal.
106 .Fn pgsignal
107 is implemented by walking along the process list headed by the field
108 .Li pg_members
109 of the process group structure
110 pointed at by
111 .Fa pgrp
112 and calling
113 .Fn psignal
114 as appropriate.
115 If
116 .Fa pgrp
117 is
118 .Dv NULL
119 no action is taken.
120 .Pp
121 The
122 .Fn gsignal
123 function posts signal number
124 .Fa signum
125 to each member of the process group identified by the group id
126 .Fa pgid .
127 .Fn gsignal
128 first finds the group structure associated with
129 .Fa pgid ,
130 then invokes
131 .Fn pgsignal
132 with the argument
133 .Fa checkctty
134 set to zero.
135 If
136 .Fa pgid
137 is zero no action is taken.
138 .Sh SEE ALSO
139 .Xr sigaction 2 ,
140 .Xr signal 9 ,
141 .Xr tsleep 9