diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2016-06-01 21:58:13 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2016-06-01 21:58:13 +0000 |
commit | 9de9fa32c9545d044d1bc4e9337d8d22049d9bf7 (patch) | |
tree | a366562c494a22bd76b1f55c58571c6859e89f94 /lib/libc/sys/thr_kill.2 | |
parent | cd9f4c599d8548997d609939fac2346c2393e3d5 (diff) |
thr_*(2): Add xrefs to what libthr implements using each syscall.
Add text to thr_exit(2) and thr_new(2) discouraging their use in
applications since calling these in a process with libthr loaded will
confuse libthr and is likely to cause hangs or crashes.
The thr_kill2(2) call is not used by libthr and may be useful in special
applications.
The other calls can be used in applications but it should not be necessary.
Notes
Notes:
svn path=/head/; revision=301171
Diffstat (limited to 'lib/libc/sys/thr_kill.2')
-rw-r--r-- | lib/libc/sys/thr_kill.2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/thr_kill.2 b/lib/libc/sys/thr_kill.2 index 5f88dd3cba61..04293aa59ee7 100644 --- a/lib/libc/sys/thr_kill.2 +++ b/lib/libc/sys/thr_kill.2 @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 5, 2016 +.Dd June 1, 2016 .Dt THR_kill 2 .Os .Sh NAME @@ -112,11 +112,13 @@ The current process does not have sufficient privilege to check existence or send a signal to the specified process. .El .Sh SEE ALSO +.Xr kill 2 , .Xr thr_exit 2 , .Xr thr_new 2 , .Xr thr_self 2 , .Xr thr_set_name 2 , .Xr _umtx_op 2 , +.Xr pthread_kill 3 , .Xr signal 3 .Sh STANDARDS The |