1RT_SIGQUEUEINFO(2)         Linux Programmer's Manual        RT_SIGQUEUEINFO(2)
2
3
4

NAME

6       rt_sigqueueinfo, rt_tgsigqueueinfo - queue a signal and data
7

SYNOPSIS

9       int rt_sigqueueinfo(pid_t tgid, int sig, siginfo_t *uinfo);
10
11       int rt_tgsigqueueinfo(pid_t tgid, pid_t tid, int sig,
12                             siginfo_t *uinfo);
13
14       Note: There are no glibc wrappers for these system calls; see NOTES.
15

DESCRIPTION

17       The rt_sigqueueinfo() and rt_tgsigqueueinfo() system calls are the low-
18       level interfaces used to send a  signal  plus  data  to  a  process  or
19       thread.  The receiver of the signal can obtain the accompanying data by
20       establishing a signal handler with the sigaction(2) SA_SIGINFO flag.
21
22       These system calls are not intended for direct  application  use;  they
23       are   provided   to   allow   the  implementation  of  sigqueue(3)  and
24       pthread_sigqueue(3).
25
26       The rt_sigqueueinfo() system call sends the signal sig  to  the  thread
27       group  with  the  ID tgid.  (The term "thread group" is synonymous with
28       "process", and tid corresponds to the  traditional  UNIX  process  ID.)
29       The signal will be delivered to an arbitrary member of the thread group
30       (i.e., one of the threads that is not currently blocking the signal).
31
32       The uinfo argument specifies the data to accompany  the  signal.   This
33       argument  is  a  pointer to a structure of type siginfo_t, described in
34       sigaction(2) (and defined  by  including  <sigaction.h>).   The  caller
35       should set the following fields in this structure:
36
37       si_code
38              This  must  be  one of the SI_* codes in the Linux kernel source
39              file include/asm-generic/siginfo.h, with  the  restriction  that
40              the  code  must  be  negative (i.e., cannot be SI_USER, which is
41              used by the kernel to indicate a signal  sent  by  kill(2))  and
42              cannot  (since  Linux  2.6.39) be SI_TKILL (which is used by the
43              kernel to indicate a signal sent using tgkill(2)).
44
45       si_pid This should be set to a process ID, typically the process ID  of
46              the sender.
47
48       si_uid This  should  be set to a user ID, typically the real user ID of
49              the sender.
50
51       si_value
52              This field contains the user data to accompany the signal.   For
53              more information, see the description of the last (union sigval)
54              argument of sigqueue(3).
55
56       Internally, the kernel sets the si_signo field to the  value  specified
57       in  sig,  so that the receiver of the signal can also obtain the signal
58       number via that field.
59
60       The rt_tgsigqueueinfo() system  call  is  like  rt_sigqueueinfo(),  but
61       sends  the signal and data to the single thread specified by the combi‐
62       nation of tgid, a thread group ID, and tid, a  thread  in  that  thread
63       group.
64

RETURN VALUE

66       On  success, these system calls return 0.  On error, they return -1 and
67       errno is set to indicate the error.
68

ERRORS

70       EAGAIN The limit of signals which may be queued has been reached.  (See
71              signal(7) for further information.)
72
73       EINVAL sig, tgid, or tid was invalid.
74
75       EPERM  The  caller  does  not have permission to send the signal to the
76              target.   For  the  required  permissions,  see  kill(2).    Or:
77              uinfo->si_code is invalid.
78
79       ESRCH  rt_sigqueueinfo(): No thread group matching tgid was found.
80              rt_tgsigqueinfo(): No thread matching tgid and tid was found.
81

VERSIONS

83       The  rt_sigqueueinfo()  system  call was added to Linux in version 2.2.
84       The rt_tgsigqueueinfo() system call  was  added  to  Linux  in  version
85       2.6.31.
86

CONFORMING TO

88       These system calls are Linux-specific.
89

NOTES

91       Since  these  system  calls are not intended for application use, there
92       are no glibc wrapper functions; use syscall(2)  in  the  unlikely  case
93       that you want to call them directly.
94
95       As with kill(2), the null signal (0) can be used to check if the speci‐
96       fied process or thread exists.
97

SEE ALSO

99       kill(2), sigaction(2), sigprocmask(2), tgkill(2),  pthread_sigqueue(3),
100       sigqueue(3), signal(7)
101

COLOPHON

103       This  page  is  part of release 3.53 of the Linux man-pages project.  A
104       description of the project, and information about reporting  bugs,  can
105       be found at http://www.kernel.org/doc/man-pages/.
106
107
108
109Linux                             2012-07-13                RT_SIGQUEUEINFO(2)
Impressum