signalfd.h 440 B

12345678910111213141516171819
  1. /*
  2. * Copyright (C) 2026 Ramin Moussavi <ramin.moussavi@yacoub.de>
  3. *
  4. * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB
  5. * in this tarball.
  6. */
  7. #ifndef _SYS_SIGNALFD_H
  8. # error "Never use <bits/signalfd.h> directly; include <sys/signalfd.h> instead."
  9. #endif
  10. /* Flags for signalfd. */
  11. enum
  12. {
  13. SFD_CLOEXEC = 010000000,
  14. #define SFD_CLOEXEC SFD_CLOEXEC
  15. SFD_NONBLOCK = 00200004
  16. #define SFD_NONBLOCK SFD_NONBLOCK
  17. };