diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-03-29 22:31:44 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-29 22:31:44 -0700 |
commit | 6d28d423b2e47ad3534fb8807f4b0f31c2c0fa9a (patch) | |
tree | 83000549bc918a9ad89f6b04fb9db798dad96f43 /sysdeps/unix/sysv/linux | |
parent | ab61c641c21abaf58eda5198019db83657beb699 (diff) | |
download | glibc-6d28d423b2e47ad3534fb8807f4b0f31c2c0fa9a.tar.gz glibc-6d28d423b2e47ad3534fb8807f4b0f31c2c0fa9a.tar.xz glibc-6d28d423b2e47ad3534fb8807f4b0f31c2c0fa9a.zip |
Define MSG_WAITFORONE.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index aa78087a72..dba3a3914b 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -1,5 +1,5 @@ /* System-specific socket constants and types. Linux version. - Copyright (C) 1991, 1992, 1994-2001, 2004, 2006, 2007, 2008, 2009 + Copyright (C) 1991, 1992, 1994-2001, 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -232,6 +232,8 @@ enum #define MSG_NOSIGNAL MSG_NOSIGNAL MSG_MORE = 0x8000, /* Sender will send more. */ #define MSG_MORE MSG_MORE + MSG_WAITFORONE = 0x10000, /* Wait for at least one packet to return.*/ +#define MSG_WAITFORONE MSG_WAITFORONE MSG_CMSG_CLOEXEC = 0x40000000 /* Set close_on_exit for file descriptor received through |