]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Correct hppa EFD_NONBLOCK, IN_NONBLOCK, SFD_NONBLOCK and TFD_NONBLOCK defines.
authorJohn David Anglin <danglin@gcc.gnu.org>
Fri, 19 Feb 2021 17:08:47 +0000 (17:08 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 19 Feb 2021 17:08:47 +0000 (17:08 +0000)
sysdeps/unix/sysv/linux/hppa/bits/eventfd.h
sysdeps/unix/sysv/linux/hppa/bits/inotify.h
sysdeps/unix/sysv/linux/hppa/bits/signalfd.h
sysdeps/unix/sysv/linux/hppa/bits/timerfd.h

index e692b44c56127884398f7cbe7223d6e17237da5f..c1a46a16b067b92e7699be78d1ac4455fe18031d 100644 (file)
@@ -26,6 +26,6 @@ enum
 #define EFD_SEMAPHORE EFD_SEMAPHORE
     EFD_CLOEXEC = 010000000,
 #define EFD_CLOEXEC EFD_CLOEXEC
-    EFD_NONBLOCK = 00200004 /* HPUX has separate NDELAY & NONBLOCK */
+    EFD_NONBLOCK = 00200000
 #define EFD_NONBLOCK EFD_NONBLOCK
   };
index f6cf97e8a7874a771f4d774e5ebe630319728d15..a69a4a88d9efa5195745a89e13c3614307ae162a 100644 (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
   };
index dd4ba77cc830bc4142c174f25e00aa15b4b48ad4..18568a9f1dab9ded8921a06c5bed7e738439366f 100644 (file)
@@ -24,6 +24,6 @@ enum
   {
     SFD_CLOEXEC = 010000000,
 #define SFD_CLOEXEC SFD_CLOEXEC
-    SFD_NONBLOCK = 00200004 /* HPUX has separate NDELAY & NONBLOCK */
+    SFD_NONBLOCK = 00200000
 #define SFD_NONBLOCK SFD_NONBLOCK
   };
index f64502477aedd819cf47d82978a4a87a8725c1c9..9d7f2289953df8d71ac1dbeb94e5a213d1b332f4 100644 (file)
@@ -24,6 +24,6 @@ enum
   {
     TFD_CLOEXEC = 010000000,
 #define TFD_CLOEXEC TFD_CLOEXEC
-    TFD_NONBLOCK = 000200004 /* HPUX has separate NDELAY & NONBLOCK */
+    TFD_NONBLOCK = 000200000
 #define TFD_NONBLOCK TFD_NONBLOCK
   };