glibc/sysdeps/unix/sysv/linux/generic
Adhemerval Zanella d150181d73 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.
2021-11-25 09:56:57 -03:00
..
bits Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
wordsize-32 linux: Add fanotify_mark C implementation 2021-11-25 09:56:57 -03:00
Makefile
README
____longjmp_chk.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
chmod.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
chown.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
dl-origin.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
dup2.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
epoll_create.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
inotify_init.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
lchown.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
link.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
mkdir.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
pipe.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
readlink.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
rmdir.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
symlink.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
syscalls.list linux: Consolidate Linux setsockopt implementation 2021-07-06 11:45:35 -03:00
sysdep.h Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
unlink.c Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
xstatver.h

README

This hierarchy supports Linux systems using the new
asm-generic/unistd.h, which removes many familiar old syscalls.  For
example, to implement open(), newer Linux architectures require glibc
to invoke the __NR_openat syscall with AT_FDCWD.  This hierarchy
provides all those implementations.

It also provides support for 32-bit platforms using the 64-bit kernel
syscall APIs, as the 32-bit ones are no longer provided.  Note that
newer ILP32 environments (x32 or AArch64:ILP32, for example) are
converting to use more 64-bit types in kernel syscalls, so that aspect
of this support is in more flux as of this writing.