mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Define MSG_WAITFORONE.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2010-03-29 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_WAITFORONE.
|
||||||
|
|
||||||
2010-03-28 Thomas Schwinge <thomas@schwinge.name>
|
2010-03-28 Thomas Schwinge <thomas@schwinge.name>
|
||||||
|
|
||||||
* sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Adapt to auxv
|
* sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Adapt to auxv
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* System-specific socket constants and types. Linux version.
|
/* 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.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
@ -232,6 +232,8 @@ enum
|
|||||||
#define MSG_NOSIGNAL MSG_NOSIGNAL
|
#define MSG_NOSIGNAL MSG_NOSIGNAL
|
||||||
MSG_MORE = 0x8000, /* Sender will send more. */
|
MSG_MORE = 0x8000, /* Sender will send more. */
|
||||||
#define MSG_MORE MSG_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
|
MSG_CMSG_CLOEXEC = 0x40000000 /* Set close_on_exit for file
|
||||||
descriptor received through
|
descriptor received through
|
||||||
|
Reference in New Issue
Block a user