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