glibc/sysdeps/unix/sysv/linux/generic
Joseph Myers c5f65462a2 Break lines before not after operators, batch 4.
This patch fixes further coding style issues where code should have
broken lines before operators in accordance with the GNU Coding
Standards but instead was breaking lines after them.

Tested for x86_64, and with build-many-glibcs.py.

	* stdio-common/vfscanf-internal.c (ARG): Break lines before rather
	than after operators.
	* sysdeps/mach/hurd/setitimer.c (timer_thread): Likewise.
	(setitimer_locked): Likewise.
	* sysdeps/mach/hurd/sigaction.c (__sigaction): Likewise.
	* sysdeps/mach/hurd/sigaltstack.c (__sigaltstack): Likewise.
	* sysdeps/mach/pagecopy.h (PAGE_COPY_FWD): Likewise.
	* sysdeps/mach/thread_state.h (machine_get_basic_state): Likewise.
	* sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c
	(PPC_CPU_SUPPORTED): Likewise.
	* sysdeps/unix/sysv/linux/alpha/a.out.h (N_TXTOFF): Likewise.
	* sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h
	(stat_overflow): Likewise.
	(statfs_overflow): Likewise.
	* sysdeps/unix/sysv/linux/tst-personality.c (do_test): Likewise.
	* sysdeps/unix/sysv/linux/tst-ttyname.c (eq_ttyname): Likewise.
	(eq_ttyname_r): Likewise.
	(run_chroot_tests): Likewise.
2019-03-07 20:20:25 +00:00
..
bits Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
wordsize-32 Break lines before not after operators, batch 4. 2019-03-07 20:20:25 +00:00
____longjmp_chk.c Break further lines before not after operators. 2019-02-26 15:01:50 +00:00
brk.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
chmod.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
chown.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
dl-origin.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
dup2.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
epoll_create.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
futimesat.c Break further lines before not after operators. 2019-02-26 15:01:50 +00:00
inotify_init.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
kernel_stat.h Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
lchown.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
link.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
lxstat.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
Makefile Consolidate Linux epoll_wait syscall 2017-05-03 10:36:43 -03:00
mkdir.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
pipe.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
readlink.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
README linux-generic: add a README 2015-03-19 13:33:01 -04:00
rmdir.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
symlink.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
syscalls.list Consolidate Linux sendto implementation 2017-03-09 15:22:06 +01:00
sysctl.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
sysdep.h Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
unlink.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
utimes.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
xmknod.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00
xstat.c Update copyright dates with scripts/update-copyrights. 2019-01-01 00:11:28 +00:00

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.