inotify.c 598 B

123456789101112131415161718192021222324
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * inotify interface for uClibc
  4. *
  5. * Copyright (C) 2006 Austin Morgan <admorgan@morgancomputers.net>
  6. * Copyright (C) 2006 by Erik Andersen <andersen@codepoet.org>
  7. *
  8. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  9. */
  10. #include <sys/syscall.h>
  11. #include <sys/inotify.h>
  12. #ifdef __NR_inotify_init
  13. _syscall0(int, inotify_init)
  14. #endif
  15. #ifdef __NR_inotify_add_watch
  16. _syscall3(int, inotify_add_watch, int, fd, const char *, path, uint32_t, mask)
  17. #endif
  18. #ifdef __NR_inotify_rm_watch
  19. _syscall2(int, inotify_rm_watch, int, fd, uint32_t, wd)
  20. #endif