diff options
author | 2014-08-31 20:23:10 +0000 | |
---|---|---|
committer | 2014-08-31 20:23:10 +0000 | |
commit | 2e8e336f88435afdd2495f89dba64e9c563d0614 (patch) | |
tree | 349759aa29765406cfd1c2f1627ade176ced9c7b /lib/libpthread/man | |
parent | Sync enc/dec routines with libc. (diff) | |
download | wireguard-openbsd-2e8e336f88435afdd2495f89dba64e9c563d0614.tar.xz wireguard-openbsd-2e8e336f88435afdd2495f89dba64e9c563d0614.zip |
accept4() should be a cancellation point.
Update the list in the pthread_testcancel(3) manpage: several were missing.
noted by miod@
Diffstat (limited to 'lib/libpthread/man')
-rw-r--r-- | lib/libpthread/man/pthread_testcancel.3 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libpthread/man/pthread_testcancel.3 b/lib/libpthread/man/pthread_testcancel.3 index edcc90a5168..baab5af2057 100644 --- a/lib/libpthread/man/pthread_testcancel.3 +++ b/lib/libpthread/man/pthread_testcancel.3 @@ -1,9 +1,9 @@ -.\" $OpenBSD: pthread_testcancel.3,v 1.15 2013/06/05 03:44:50 tedu Exp $ +.\" $OpenBSD: pthread_testcancel.3,v 1.16 2014/08/31 20:23:10 guenther Exp $ .\" .\" .\" David Leonard, 1999. Public Domain. .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: August 31 2014 $ .Dt PTHREAD_TESTCANCEL 3 .Os .Sh NAME @@ -105,6 +105,7 @@ base interfaces: .Fn connect , .Fn creat , .Fn fcntl "F_SETLKW" , +.Fn fdatasync , .Fn fsync , .Fn lockf , .Fn msgrcv , @@ -120,6 +121,7 @@ base interfaces: .Fn pthread_cond_wait , .Fn pthread_join , .Fn pthread_testcancel , +.Fn pwrite , .Fn read , .Fn readv , .Fn recv , @@ -144,9 +146,12 @@ base interfaces: In addition, cancellation points will occur when a thread is executing the following extension interfaces: +.Fn accept4 , .Fn closefrom , +.Fn ppoll , .Fn preadv , .Fn pwritev , +.Fn wait3 , .Fn wait4 . .Sh RETURN VALUES If successful, the |