]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/sigqueue.3
des_crypt.3: Minor wording fix in VERSIONS
[thirdparty/man-pages.git] / man3 / sigqueue.3
index 567dd18b30828150212649e0400a1f8c799acc48..a375e4e0c2cc42c62685a5b735930d7031fe05f0 100644 (file)
@@ -25,7 +25,7 @@
 .\" added note on self-signaling, aeb, 2002-06-07
 .\" added note on CAP_KILL, mtk, 2004-06-16
 .\"
-.TH SIGQUEUE 3 2015-07-23 "Linux" "Linux Programmer's Manual"
+.TH SIGQUEUE 3 2017-09-15 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sigqueue \- queue a signal and data to a process
 .SH SYNOPSIS
@@ -153,15 +153,15 @@ Inside the glibc
 wrapper, this argument,
 .IR uinfo ,
 is initialized as follows:
+.PP
 .in +4n
-.nf
-
+.EX
 uinfo.si_signo = sig;      /* Argument supplied to sigqueue() */
 uinfo.si_code = SI_QUEUE;
 uinfo.si_pid = getpid();   /* Process ID of sender */
 uinfo.si_uid = getuid();   /* Real UID of sender */
 uinfo.si_value = val;      /* Argument supplied to sigqueue() */
-.fi
+.EE
 .in
 .SH SEE ALSO
 .BR kill (2),