diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-06-11 16:49:40 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-11-25 09:56:57 -0300 |
commit | d150181d73d93084136a7ec3f69d8666da8519e4 (patch) | |
tree | ee09bea6547852f68ef079dd09bf2238605b7989 /sysdeps/unix/sysv/linux/Makefile | |
parent | c3b023a7822185c9176cfb96eeca4ada3d662c4b (diff) | |
download | glibc-d150181d73d93084136a7ec3f69d8666da8519e4.tar.gz glibc-d150181d73d93084136a7ec3f69d8666da8519e4.tar.xz glibc-d150181d73d93084136a7ec3f69d8666da8519e4.zip |
linux: Add fanotify_mark C implementation
Passing 64-bit arguments on syscalls.list is tricky: it requires to reimplement the expected kernel abi in each architecture. This is way to better to represent in C code where we already have macros for this (SYSCALL_LL64). Checked on x86_64-linux-gnu.
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 76042a6019..695535716a 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -66,7 +66,8 @@ sysdep_routines += adjtimex clone umount umount2 readahead sysctl \ fxstatat fxstatat64 \ xmknod xmknodat convert_scm_timestamps \ closefrom_fallback \ - clone3 clone-internal + clone3 clone-internal \ + fanotify_mark \ CFLAGS-gethostid.c = -fexceptions CFLAGS-tee.c = -fexceptions -fasynchronous-unwind-tables |