Added some comments to code in NOTES.

This commit is contained in:
Michael Kerrisk 2008-04-24 08:54:08 +00:00
parent 40bc92e59d
commit 148468921a
1 changed files with 4 additions and 4 deletions

View File

@ -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"