diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2008-04-24 08:54:08 +0000 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2008-04-24 08:54:08 +0000 |
| commit | 148468921a39169195dd46979e05e755c1c92f40 (patch) | |
| tree | e2fe65ebe7adb5c98640efd7ecc270551a7b4461 | |
| parent | 40bc92e59dda97a7a17cff419d7b8733f91c83bd (diff) | |
| download | man-pages-148468921a39169195dd46979e05e755c1c92f40.tar.gz | |
Added some comments to code in NOTES.
| -rw-r--r-- | man2/sigqueue.2 | 8 |
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" |
