• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..06-Mar-2022-

bits/06-Mar-2022-

wordsize-32/06-Mar-2022-

Makefile A D06-Mar-202273 43

README A D06-Mar-2022619 1210

____longjmp_chk.c A D06-Mar-20221.9 KiB5627

chmod.c A D06-Mar-20221 KiB3110

chown.c A D06-Mar-20221.1 KiB3010

dl-origin.c A D06-Mar-20222.3 KiB8050

dup2.c A D06-Mar-20221.3 KiB3612

epoll_create.c A D06-Mar-20221 KiB3514

inotify_init.c A D06-Mar-2022977 299

lchown.c A D06-Mar-20221.1 KiB3010

link.c A D06-Mar-20221 KiB309

mkdir.c A D06-Mar-20221.1 KiB3513

readlink.c A D06-Mar-20221.2 KiB319

rmdir.c A D06-Mar-20221,017 299

symlink.c A D06-Mar-20221 KiB299

syscalls.list A D06-Mar-2022405 119

sysdep.h A D06-Mar-20221 KiB277

unlink.c A D06-Mar-20221,010 299

xstatver.h A D06-Mar-2022334 115

README

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