Explorar el Código

add missing signalfd flags

Rich Felker hace 13 años
padre
commit
6b1d3817cf
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      include/sys/signalfd.h

+ 3 - 0
include/sys/signalfd.h

@@ -11,6 +11,9 @@ extern "C" {
 
 #include <bits/alltypes.h>
 
+#define SFD_CLOEXEC 02000000
+#define SFD_NONBLOCK 04000
+
 int signalfd(int, const sigset_t *, int);
 
 struct signalfd_siginfo {