rt_sigqueueinfo.2: Rename 'uinfo' argument to 'info'

This is more consistent with the naming in other pages
that refer to a 'siginfo_t' structure.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2019-09-19 21:27:44 +02:00
parent 8637b7a635
commit a24fc082d0
1 changed files with 4 additions and 4 deletions

View File

@ -27,10 +27,10 @@
rt_sigqueueinfo, rt_tgsigqueueinfo \- queue a signal and data
.SH SYNOPSIS
.nf
.BI "int rt_sigqueueinfo(pid_t " tgid ", int " sig ", siginfo_t *" uinfo );
.BI "int rt_sigqueueinfo(pid_t " tgid ", int " sig ", siginfo_t *" info );
.PP
.BI "int rt_tgsigqueueinfo(pid_t " tgid ", pid_t " tid ", int " sig ,
.BI " siginfo_t *" uinfo );
.BI " siginfo_t *" info );
.fi
.PP
.IR Note :
@ -67,7 +67,7 @@ The signal will be delivered to an arbitrary member of the thread group
(i.e., one of the threads that is not currently blocking the signal).
.PP
The
.I uinfo
.I info
argument specifies the data to accompany the signal.
This argument is a pointer to a structure of type
.IR siginfo_t ,
@ -163,7 +163,7 @@ For the required permissions, see
.B EPERM
.I tgid
specifies a process other than the caller and
.I uinfo->si_code
.I info->si_code
is invalid.
.TP
.B ESRCH