diff options
author | 2014-09-10 07:04:23 +0000 | |
---|---|---|
committer | 2014-09-10 07:04:23 +0000 | |
commit | 53ea1444382f3b5009a398f0aadf40864814000d (patch) | |
tree | 05ea1635f8c2a4b16fb50fdbecf4d799cfc67469 | |
parent | Add cpuid.h from clang r197399 with additional feature bits, (diff) | |
download | wireguard-openbsd-53ea1444382f3b5009a398f0aadf40864814000d.tar.xz wireguard-openbsd-53ea1444382f3b5009a398f0aadf40864814000d.zip |
sockatmark(3) has been implemented; add it to the async-signal-safe lists
-rw-r--r-- | lib/libc/gen/signal.3 | 8 | ||||
-rw-r--r-- | lib/libc/sys/sigaction.2 | 6 |
2 files changed, 5 insertions, 9 deletions
diff --git a/lib/libc/gen/signal.3 b/lib/libc/gen/signal.3 index ec3b7baabdf..3d7d68bd060 100644 --- a/lib/libc/gen/signal.3 +++ b/lib/libc/gen/signal.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: signal.3,v 1.49 2014/08/31 01:42:36 guenther Exp $ +.\" $OpenBSD: signal.3,v 1.50 2014/09/10 07:04:23 guenther Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: August 31 2014 $ +.Dd $Mdocdate: September 10 2014 $ .Dt SIGNAL 3 .Os .Sh NAME @@ -342,6 +342,7 @@ Base Interfaces: .Fn sigprocmask , .Fn sigsuspend , .Fn sleep , +.Fn sockatmark , .Fn socket , .Fn socketpair , .Fn stat , @@ -370,9 +371,6 @@ Base Interfaces: .Fn write . .Pp .\" unimplemented functions that should be async-sig-safe, if we had them -.\" POSIX Issue 6 additions -.\" .Fn sockatmark . -.\" .\" POSIX Issue 7 additions .\" .Pp .\" .Fn fexecve . diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 99c63f80587..e3e3655ad4a 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sigaction.2,v 1.63 2014/09/10 02:55:46 schwarze Exp $ +.\" $OpenBSD: sigaction.2,v 1.64 2014/09/10 07:04:23 guenther Exp $ .\" $NetBSD: sigaction.2,v 1.7 1995/10/12 15:41:16 jtc Exp $ .\" .\" Copyright (c) 1980, 1990, 1993 @@ -557,6 +557,7 @@ Base Interfaces: .Fn sigprocmask , .Fn sigsuspend , .Fn sleep , +.Fn sockatmark , .Fn socket , .Fn socketpair , .Fn stat , @@ -585,9 +586,6 @@ Base Interfaces: .Fn write . .Pp .\" unimplemented functions that should be async-sig-safe, if we had them -.\" POSIX Issue 6 additions -.\" .Fn sockatmark . -.\" .\" POSIX Issue 7 additions .\" .Pp .\" .Fn fexecve . |