diff options
author | Andreas Jaeger <aj@suse.de> | 2000-07-27 15:43:37 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-07-27 15:43:37 +0000 |
commit | 64c81855b8e4bd9e810bc6c86e09aa47f08c7eca (patch) | |
tree | faadf10fc3be051199c551ad7af2e9e73243e8ad | |
parent | aef116ea7aefb48ba981ecdc0964c68c521a03bc (diff) | |
download | glibc-64c81855b8e4bd9e810bc6c86e09aa47f08c7eca.tar glibc-64c81855b8e4bd9e810bc6c86e09aa47f08c7eca.tar.gz glibc-64c81855b8e4bd9e810bc6c86e09aa47f08c7eca.tar.bz2 glibc-64c81855b8e4bd9e810bc6c86e09aa47f08c7eca.zip |
Update.
* sysdeps/unix/sysv/linux/bits/socket.h: Rename MSG_URG TO
MSG_CONFIRM following kernel 2.4.0 (MSG_URG was never used).
* sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise.
Reported by Andi Kleen <ak@suse.de>.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/socket.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/bits/socket.h | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,5 +1,10 @@ 2000-07-27 Andreas Jaeger <aj@suse.de> + * sysdeps/unix/sysv/linux/bits/socket.h: Rename MSG_URG TO + MSG_CONFIRM following kernel 2.4.0 (MSG_URG was never used). + * sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise. + Reported by Andi Kleen <ak@suse.de>. + * rt/tst-aio64.c: Add tests for aio_fsync64 and aio_cancel64. (do_wait): Test requests with aio_return64. (do_test): Change callers of do_wait. diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 1c8b30b7c8..cf764b15d5 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -193,8 +193,8 @@ enum #define MSG_FIN MSG_FIN MSG_SYN = 0x400, #define MSG_SYN MSG_SYN - MSG_URG = 0x800, -#define MSG_URG MSG_URG + MSG_CONFIRM = 0x800, /* Confirm path validity. */ +#define MSG_CONFIRM MSG_CONFIRM MSG_RST = 0x1000, #define MSG_RST MSG_RST MSG_ERRQUEUE = 0x2000, /* Fetch message from error queue. */ diff --git a/sysdeps/unix/sysv/linux/mips/bits/socket.h b/sysdeps/unix/sysv/linux/mips/bits/socket.h index 299215aee7..d8626c2749 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/socket.h +++ b/sysdeps/unix/sysv/linux/mips/bits/socket.h @@ -193,8 +193,8 @@ enum #define MSG_FIN MSG_FIN MSG_SYN = 0x400, #define MSG_SYN MSG_SYN - MSG_URG = 0x800, -#define MSG_URG MSG_URG + MSG_CONFIRM = 0x800, /* Confirm path validity. */ +#define MSG_CONFIRM MSG_CONFIRM MSG_RST = 0x1000, #define MSG_RST MSG_RST MSG_ERRQUEUE = 0x2000, /* Fetch message from error queue. */ |