aboutsummaryrefslogtreecommitdiffstats
path: root/man2/tkill.2
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2004-12-10 09:03:08 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2004-12-10 09:03:08 +0000
commit527d993350663e975dab0d0cb0ceed1947bf9fe2 (patch)
tree3237c0164ebe78ed1bbf8fc481ab0640530cb7c2 /man2/tkill.2
parent25743dd7044d67ff8f2a29e0ed62f20c9d705e87 (diff)
downloadman-pages-527d993350663e975dab0d0cb0ceed1947bf9fe2.tar.gz
After a note from Vasya Pupkin, I added <errno.h> to the SYNOPSIS
of several Section 2 pages using the _syscallN() macros. In addition: -- erroneous semicolons at the end of _syscallN() were removed on various pages. -- types such as "uint" in syscalN() declarations were changed to "unsigined int", etc. -- various other minor breakages in the synopses were fixed.
Diffstat (limited to 'man2/tkill.2')
-rw-r--r--man2/tkill.24
1 files changed, 3 insertions, 1 deletions
diff --git a/man2/tkill.2 b/man2/tkill.2
index 774c0bb661..45520264d0 100644
--- a/man2/tkill.2
+++ b/man2/tkill.2
@@ -31,12 +31,14 @@ tkill, tgkill \- send a signal to a single process
.B #include <sys/types.h>
.br
.B #include <linux/unistd.h>
+.br
+.B #include <errno.h>
.sp
.B "_syscall2(int, tkill, int, tid, int, sig)"
.sp
.B int tkill(int tid, int sig);
.sp
-.B "_syscall3(int, tkill, int, tgid, int, tid, int, sig)"
+.B "_syscall3(int, tgkill, int, tgid, int, tid, int, sig)"
.sp
.B int tgkill(int tgid, int tid, int sig);
.fi