diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-09-10 07:04:24 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-09-10 07:04:24 +0000 |
commit | c0fba15324a4446f15b7ec8413d4e413f26ff45e (patch) | |
tree | 32b125b598ceb715e5683b02f2fb1231734b4854 /lib/libc | |
parent | 6035d6e0c03ddd2212fd90cfc067d40cb3809341 (diff) |
sockatmark(3) has been implemented; add it to the async-signal-safe lists
Diffstat (limited to 'lib/libc')
-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 . |