1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Correct hppa EFD_NONBLOCK, IN_NONBLOCK, SFD_NONBLOCK and TFD_NONBLOCK defines.

This commit is contained in:
John David Anglin
2021-02-19 17:08:47 +00:00
parent 044e603b69
commit 96b8038f12
4 changed files with 4 additions and 4 deletions

View File

@ -26,6 +26,6 @@ enum
#define EFD_SEMAPHORE EFD_SEMAPHORE #define EFD_SEMAPHORE EFD_SEMAPHORE
EFD_CLOEXEC = 010000000, EFD_CLOEXEC = 010000000,
#define EFD_CLOEXEC EFD_CLOEXEC #define EFD_CLOEXEC EFD_CLOEXEC
EFD_NONBLOCK = 00200004 /* HPUX has separate NDELAY & NONBLOCK */ EFD_NONBLOCK = 00200000
#define EFD_NONBLOCK EFD_NONBLOCK #define EFD_NONBLOCK EFD_NONBLOCK
}; };

View File

@ -24,6 +24,6 @@ enum
{ {
IN_CLOEXEC = 010000000, IN_CLOEXEC = 010000000,
#define IN_CLOEXEC IN_CLOEXEC #define IN_CLOEXEC IN_CLOEXEC
IN_NONBLOCK = 000200004 /* HPUX has separate NDELAY & NONBLOCK */ IN_NONBLOCK = 000200000
#define IN_NONBLOCK IN_NONBLOCK #define IN_NONBLOCK IN_NONBLOCK
}; };

View File

@ -24,6 +24,6 @@ enum
{ {
SFD_CLOEXEC = 010000000, SFD_CLOEXEC = 010000000,
#define SFD_CLOEXEC SFD_CLOEXEC #define SFD_CLOEXEC SFD_CLOEXEC
SFD_NONBLOCK = 00200004 /* HPUX has separate NDELAY & NONBLOCK */ SFD_NONBLOCK = 00200000
#define SFD_NONBLOCK SFD_NONBLOCK #define SFD_NONBLOCK SFD_NONBLOCK
}; };

View File

@ -24,6 +24,6 @@ enum
{ {
TFD_CLOEXEC = 010000000, TFD_CLOEXEC = 010000000,
#define TFD_CLOEXEC TFD_CLOEXEC #define TFD_CLOEXEC TFD_CLOEXEC
TFD_NONBLOCK = 000200004 /* HPUX has separate NDELAY & NONBLOCK */ TFD_NONBLOCK = 000200000
#define TFD_NONBLOCK TFD_NONBLOCK #define TFD_NONBLOCK TFD_NONBLOCK
}; };