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

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