inotify.h 453 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_INOTIFY_H
  8. # error "Never use <bits/inotify.h> directly; include <sys/inotify.h> instead."
  9. #endif
  10. /* Flags for the parameter of inotify_init1. */
  11. enum
  12. {
  13. IN_CLOEXEC = 010000000,
  14. #define IN_CLOEXEC IN_CLOEXEC
  15. IN_NONBLOCK = 00200004
  16. #define IN_NONBLOCK IN_NONBLOCK
  17. };