2006-04-12 Lars Munch <lars@segv.dk>

PR 949/networking
	* libnetworking/sys/socket.h: Make MSG_DONTWAIT public as in GNU/Linux.
This commit is contained in:
Joel Sherrill
2006-04-12 20:59:21 +00:00
parent cd0142d550
commit 0637bb3b01
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2006-04-12 Lars Munch <lars@segv.dk>
PR 949/networking
* libnetworking/sys/socket.h: Make MSG_DONTWAIT public as in GNU/Linux.
2006-04-06 Joel Sherrill <joel@OARcorp.com>
* posix/inline/rtems/posix/mutex.inl,

View File

@@ -317,8 +317,8 @@ struct msghdr {
#define MSG_TRUNC 0x10 /* data discarded before delivery */
#define MSG_CTRUNC 0x20 /* control data lost before delivery */
#define MSG_WAITALL 0x40 /* wait for full request or error */
#if __BSD_VISIBLE
#define MSG_DONTWAIT 0x80 /* this message should be nonblocking */
#if __BSD_VISIBLE
#define MSG_EOF 0x100 /* data completes connection */
#define MSG_COMPAT 0x8000 /* used in sendit() */
#endif