Blame sysdeps/unix/sysv/linux/generic/README

Packit 6c4009
This hierarchy supports Linux systems using the new
Packit 6c4009
asm-generic/unistd.h, which removes many familiar old syscalls.  For
Packit 6c4009
example, to implement open(), newer Linux architectures require glibc
Packit 6c4009
to invoke the __NR_openat syscall with AT_FDCWD.  This hierarchy
Packit 6c4009
provides all those implementations.
Packit 6c4009
Packit 6c4009
It also provides support for 32-bit platforms using the 64-bit kernel
Packit 6c4009
syscall APIs, as the 32-bit ones are no longer provided.  Note that
Packit 6c4009
newer ILP32 environments (x32 or AArch64:ILP32, for example) are
Packit 6c4009
converting to use more 64-bit types in kernel syscalls, so that aspect
Packit 6c4009
of this support is in more flux as of this writing.