diff options
author | Roland McGrath <roland@gnu.org> | 2008-07-02 09:53:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2008-07-02 09:53:29 +0000 |
commit | e66ecb226ed6991d0c39a0daf7730e65fe555c6c (patch) | |
tree | ca2f000a788dc0c929ffd79917fbd39fa56406f3 /sysdeps/unix | |
parent | cc9f65ce82d4995e776464a1656587c39f6b14bb (diff) | |
download | glibc-e66ecb226ed6991d0c39a0daf7730e65fe555c6c.tar.gz glibc-e66ecb226ed6991d0c39a0daf7730e65fe555c6c.tar.xz glibc-e66ecb226ed6991d0c39a0daf7730e65fe555c6c.zip |
2008-07-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
* sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL. * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function. * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of __hurd_dfail. * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise * sysdeps/mach/hurd/send.c (__send): Likewise * sysdeps/mach/hurd/sendfrom.c (__sendfrom): Likewise * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/bsd/bsd4.4/bits/socket.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/bsd/bsd4.4/bits/socket.h b/sysdeps/unix/bsd/bsd4.4/bits/socket.h index 67db4d8469..2ccd01d011 100644 --- a/sysdeps/unix/bsd/bsd4.4/bits/socket.h +++ b/sysdeps/unix/bsd/bsd4.4/bits/socket.h @@ -171,8 +171,10 @@ enum #define MSG_CTRUNC MSG_CTRUNC MSG_WAITALL = 0x40, /* Wait for full request or error. */ #define MSG_WAITALL MSG_WAITALL - MSG_DONTWAIT = 0x80 /* This message should be nonblocking. */ + MSG_DONTWAIT = 0x80, /* This message should be nonblocking. */ #define MSG_DONTWAIT MSG_DONTWAIT + MSG_NOSIGNAL = 0x0400 /* Do not generate SIGPIPE on EPIPE. */ +#define MSG_NOSIGNAL MSG_NOSIGNAL }; |