OSDN Git Service

Revert the following change to correct the mail address of the committer
[linuxjm/jm.git] / manual / LDP_man-pages / original / man2 / kill.2
index abd7807..b843366 100644 (file)
@@ -41,7 +41,7 @@
 .\" Modified 2004-06-24 by aeb
 .\" Modified, 2004-11-30, after idea from emmanuel.colbus@ensimag.imag.fr
 .\"
-.TH KILL 2 2013-09-17 "Linux" "Linux Programmer's Manual"
+.TH KILL 2 2013-02-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 kill \- send signal to a process
 .SH SYNOPSIS
@@ -96,7 +96,6 @@ In the case of
 .B SIGCONT
 it suffices when the sending and receiving
 processes belong to the same session.
-(Historically, the rules were different; see NOTES.)
 .SH RETURN VALUE
 On success (at least one signal was sent), zero is returned.
 On error, \-1 is returned, and
@@ -151,11 +150,11 @@ to send a signal to another process.
 .\" In the 0.* kernels things chopped and changed quite
 .\" a bit - MTK, 24 Jul 02
 In kernels 1.0 to 1.2.2, a signal could be sent if the
-effective user ID of the sender matched effective user ID of the target,
-or the real user ID of the sender matched the real user ID of the target.
+effective user ID of the sender matched that of the receiver,
+or the real user ID of the sender matched that of the receiver.
 From kernel 1.2.3 until 1.3.77, a signal could be sent if the
 effective user ID of the sender matched either the real or effective
-user ID of the target.
+user ID of the receiver.
 The current rules, which conform to POSIX.1-2001, were adopted
 in kernel 1.3.78.
 .SH BUGS