1234567891011121314151617181920212223242526272829 |
- #ifndef _SYS_SIGNALFD_H
- # error "Never use <bits/signalfd.h> directly; include <sys/signalfd.h> instead."
- #endif
- enum
- {
- SFD_CLOEXEC = 02000000,
- #define SFD_CLOEXEC SFD_CLOEXEC
- SFD_NONBLOCK = 00000200
- #define SFD_NONBLOCK SFD_NONBLOCK
- };
|