diff options
Diffstat (limited to 'man2/tkill.2')
-rw-r--r-- | man2/tkill.2 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/man2/tkill.2 b/man2/tkill.2 index 8780e8a..78a1ce5 100644 --- a/man2/tkill.2 +++ b/man2/tkill.2 @@ -6,7 +6,7 @@ .\" 2004-05-31, added tgkill, ahu, aeb .\" 2008-01-15 mtk -- rewrote DESCRIPTION .\" -.TH tkill 2 2023-03-30 "Linux man-pages 6.05.01" +.TH tkill 2 2023-10-31 "Linux man-pages 6.7" .SH NAME tkill, tgkill \- send a signal to a thread .SH LIBRARY @@ -17,14 +17,14 @@ Standard C library .BR "#include <signal.h>" " /* Definition of " SIG* " constants */" .BR "#include <sys/syscall.h>" " /* Definition of " SYS_* " constants */" .B #include <unistd.h> -.PP +.P .BI "[[deprecated]] int syscall(SYS_tkill, pid_t " tid ", int " sig ); -.PP +.P .B #include <signal.h> -.PP +.P .BI "int tgkill(pid_t " tgid ", pid_t " tid ", int " sig ); .fi -.PP +.P .IR Note : glibc provides no wrapper for .BR tkill (), @@ -43,7 +43,7 @@ in the thread group can be used to send a signal only to a process (i.e., thread group) as a whole, and the signal will be delivered to an arbitrary thread within that process.) -.PP +.P .BR tkill () is an obsolete predecessor to .BR tgkill (). @@ -76,7 +76,7 @@ Avoid using this system call. .\" measurable, one could exhaust all but 1-2 available pid values, .\" possibly by lowering the max pid parameter in /proc, forcing .\" the same tid to be reused rapidly. -.PP +.P These are the raw system call interfaces, meant for internal thread library use. .SH RETURN VALUE |