aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2008-04-24 08:54:08 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2008-04-24 08:54:08 +0000
commit148468921a39169195dd46979e05e755c1c92f40 (patch)
treee2fe65ebe7adb5c98640efd7ecc270551a7b4461
parent40bc92e59dda97a7a17cff419d7b8733f91c83bd (diff)
downloadman-pages-148468921a39169195dd46979e05e755c1c92f40.tar.gz
Added some comments to code in NOTES.
-rw-r--r--man2/sigqueue.28
1 files changed, 4 insertions, 4 deletions
diff --git a/man2/sigqueue.2 b/man2/sigqueue.2
index 12d1e97c8c..3590cf5d9d 100644
--- a/man2/sigqueue.2
+++ b/man2/sigqueue.2
@@ -136,11 +136,11 @@ is initialized as follows:
.in +4n
.nf
-info.si_signo = sig; // argument supplied to sigqueue()
+info.si_signo = sig; /* argument supplied to sigqueue() */
info.si_code = SI_QUEUE;
-info.si_pid = getpid();
-info.si_uid = getuid();
-info.si_value = val; // argument supplied to sigqueue()
+info.si_pid = getpid(); /* Process ID of sender */
+info.si_uid = getuid(); /* Real UID of sender */
+info.si_value = val; /* argument supplied to sigqueue() */
.fi
.in
.SH "SEE ALSO"