Remove dependencies on obsolete __ARCH_WANT_SYSCALL_NO_FLAGS syscalls.

(aarch64 kernels only have the newer system calls.)

Also expose the new functionality that's exposed by glibc in our header files.

Change-Id: I45d2d168a03f88723d1f7fbf634701006a4843c5
This commit is contained in:
Elliott Hughes
2013-10-23 09:48:29 -07:00
parent ec40edc918
commit cac7b9d6ec
29 changed files with 224 additions and 135 deletions

View File

@@ -29,14 +29,19 @@
#define _SYS_INOTIFY_H_
#include <sys/cdefs.h>
#include <sys/types.h>
#include <stdint.h>
#include <linux/inotify.h>
#include <asm/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK. */
__BEGIN_DECLS
#define IN_CLOEXEC O_CLOEXEC
#define IN_NONBLOCK O_NONBLOCK
extern int inotify_init(void);
extern int inotify_add_watch(int, const char *, __u32);
extern int inotify_rm_watch(int, __u32);
extern int inotify_init1(int);
extern int inotify_add_watch(int, const char*, uint32_t);
extern int inotify_rm_watch(int, uint32_t);
__END_DECLS