diff options
author | 2002-03-14 16:21:26 +0000 | |
---|---|---|
committer | 2002-03-14 16:21:26 +0000 | |
commit | 49f3e4646b4b04ca16c668b15affb4ad1c1a419b (patch) | |
tree | 6c7916e4cc715cbd41b726fbafb7b158fe4e734d /lib/libc/sys | |
parent | call siginterrupt() (from theo) (diff) | |
download | wireguard-openbsd-49f3e4646b4b04ca16c668b15affb4ad1c1a419b.tar.xz wireguard-openbsd-49f3e4646b4b04ca16c668b15affb4ad1c1a419b.zip |
Fix error; open(2) is not supposed to restart when SA_RESTART is set,
that is why it is documented as returning EINTR.
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/sigaction.2 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 45e60a6928d..5f9cd7f0283 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sigaction.2,v 1.31 2002/02/16 21:27:24 millert Exp $ +.\" $OpenBSD: sigaction.2,v 1.32 2002/03/14 16:21:26 millert Exp $ .\" $NetBSD: sigaction.2,v 1.7 1995/10/12 15:41:16 jtc Exp $ .\" .\" Copyright (c) 1980, 1990, 1993 @@ -263,7 +263,6 @@ by setting the bit in .Ar sa_flags . The affected system calls include -.Xr open 2 , .Xr read 2 , .Xr write 2 , .Xr sendto 2 , |