glibc/sysdeps/unix/sysv/linux
Joseph Myers 809fdf0d23 Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/.
This patch cleans up for __ASSUME_ATFCTS now always being true for the
supported Linux kernel versions by removing conditional code in
sysdeps/unix/sysv/linux.  Several fchownat.c files that were only
present because of differences in the fallback syscalls used
(depending on the architecture-specific names of chown-related
syscalls for 32-bit uids) are removed.  Files that looks like they
could be replaced by syscalls.list entries have the standard "Consider
moving to syscalls.list." comment (see bug 14138) added.  Conditionals
on the relevant __NR_* syscall numbers being defined are also removed,
since my analysis indicated that the relevant syscalls are always
defined for all relevant kernel versions using any affected file.
Much of the removed fallback code had unbounded stack allocations, so
this reduces the number of cases to consider for anyone reviewing uses
of alloca and VLAs in glibc.

There remain tests of __ASSUME_ATFCTS in io/openat.c (to determine
whether to define __have_atfcts) and sysdeps/posix/getcwd.c (which
also uses __have_atfcts); thus, the definition of __ASSUME_ATFCTS
remains in kernel-features.h.  The logical condition relevant there is
whether openat64_not_cancel_3 is known to work.  Hurd doesn't use this
version of getcwd at all, so the conditionals in getcwd.c are always
true in glibc.  However, this code is also used in gnulib.  So the
best way to deal with the conditionals there may be for gnulib people
to deal with merging all relevant changes in both directions between
the glibc and gnulib versions of this file, at the end of which the
openat conditionals should be in whatever form is best for gnulib, and
hardcoded in the _LIBC case to having openat supported.

Tested by comparing before-and-after disassembly of installed
(stripped) shared libraries, on x86_64 and x86.  On x86 the patch made
no change to the disassembly; on x86_64, the only changes were in
readlinkat, where formerly the return value from the readlinkat
syscall was stored in an int variable before being converted to
ssize_t for the return, and now the return value is returned directly
without truncation to int.  I think it's clearly correct not to
truncate the return value (although I also think the truncation would
not have been a user-visible bug because the kernel would never have
returned a value it could have affected).

	* include/fcntl.h (__atfct_seterrno): Remove prototype.
	(__atfct_seterrno_2): Likewise.
	* sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
	<kernel-features.h>.
	(__ASSUME_ATFCTS): Do not undefine and redefine.
	* sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
	(__have_atfcts): Remove conditional definition.
	(__fxstatat([__NR_fstatat64]: Make code unconditional.
	(__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
	unreachable if [__ASSUME_ATFCTS].
	* sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
	not undefine and redefine.
	* sysdeps/unix/sysv/linux/faccessat.c: Do not include
	<kernel-features.h>.
	(faccessat) [__NR_faccessat]: Make code unconditional.
	(faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/fchmodat.c: Do not include
	<kernel-features.h>.
	(fchmodat) [__NR_fchmodat]: Make code unconditional.
	(fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/fchownat.c: Do not include
	<kernel-features.h>.
	(fchownat) [__NR_fchownat]: Make code unconditional.
	(fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/futimesat.c: Do not include
	<kernel-features.h>.
	(futimesat) [__NR_futimesat]: Make code unconditional.
	(futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/fxstatat.c: Do not include
	<kernel-features.h>.
	(__fxstatat) [__NR_newfstatat]: Make code unconditional.
	(__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
	<kernel-features.h>.
	(__fxstatat64) [__NR_fstatat64]: Make code unconditional.
	(__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
	* sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
	<kernel-features.h>.
	(__fxstatat) [__NR_fstatat64]: Make code unconditional.
	(__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/linkat.c: Do not include
	<kernel-features.h>.
	(linkat) [__NR_linkat]: Make code unconditional.
	(linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
	* sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
	<kernel-features.h>.
	(__fxstatat64) [__NR_newfstatat]: Make code unconditional.
	(__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/mkdirat.c: Do not include
	<kernel-features.h>.
	(mkdirat) [__NR_mkdirat]: Make code unconditional.
	(mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/openat.c: Do not include
	<kernel-features.h>.
	[!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
	[!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
	(OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
	(OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
	* sysdeps/unix/sysv/linux/readlinkat.c: Do not include
	<kernel-features.h>.
	(readlinkat) [__NR_readlinkat]: Make code unconditional.
	(readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.  Return
	result of INLINE_SYSCALL directly, not via int variable.
	* sysdeps/unix/sysv/linux/renameat.c: Do not include
	<kernel-features.h>.
	[!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
	(renameat) [__NR_renameat]: Make code unconditional.
	(renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
	* sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
	* sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
	* sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
	(__ASSUME_ATFCTS): Do not undefine and redefine.
	* sysdeps/unix/sysv/linux/symlinkat.c: Do not include
	<kernel-features.h>.
	(symlinkat) [__NR_symlinkat]: Make code unconditional.
	(symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/unlinkat.c: Do not include
	<kernel-features.h>.
	(unlinkat) [__NR_unlinkat]: Make code unconditional.
	(unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
	(__ASSUME_ATFCTS): Do not undefine and redefine.
	* sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
	<kernel-features.h>.
	(__fxstatat) [__NR_newfstatat]: Make code unconditional.
	(__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
	* sysdeps/unix/sysv/linux/xmknodat.c: Do not include
	<kernel-features.h>.
	(__xmknodat) [__NR_mknodat]: Make code unconditional.
	(__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
2014-06-20 15:41:35 +00:00
..
aarch64 Add adaptive elision to rwlocks 2014-06-13 13:15:28 -07:00
alpha Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
arm ARM: Define TLS_DEFINE_INIT_TP 2014-06-09 12:53:16 -07:00
bits Move bits/mman-linux.h out of sysdeps/unix/sysv/linux/. 2014-03-18 14:48:09 -07:00
generic Consolidate not-cancel.h files. 2014-05-14 11:06:36 -07:00
hppa Add adaptive elision to rwlocks 2014-06-13 13:15:28 -07:00
i386 Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
ia64 Add adaptive elision to rwlocks 2014-06-13 13:15:28 -07:00
m68k Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
microblaze Add adaptive elision to rwlocks 2014-06-13 13:15:28 -07:00
mips Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
net Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netash Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netatalk Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netax25 Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
neteconet Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netinet Combine __USE_BSD and __USE_SVID into __USE_MISC. 2014-02-12 23:41:01 +00:00
netipx Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netiucv Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netpacket Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netrom Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netrose Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
nfs
powerpc Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
s390 Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
scsi Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sh Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
sparc Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
sys ptrace.h: add __ prefix to ptrace_peeksiginfo_args 2014-01-06 08:07:33 -05:00
tile tile: Consolidate NPTL/non versions of vfork 2014-06-11 15:52:53 -04:00
wordsize-64 Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
x86 Add adaptive elision to rwlocks 2014-06-13 13:15:28 -07:00
x86_64 Remove x86 assembler rwlock code 2014-06-13 13:16:06 -07:00
_exit.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
_G_config.h Remove _G_OPEN64, _G_LSEEK64, _G_MMAP64, _G_FSTAT64 from _G_config.h. 2012-10-18 18:50:43 +00:00
a.out.h Remove trailing whitespace. 2013-06-05 20:44:03 +00:00
accept4.c Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
accept.S
adjtime.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
aio_sigqueue.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
arch-fork.h Add stub arch-fork.h header. 2014-05-16 11:47:13 -07:00
bind.S
check_native.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
check_pf.c Fix use of uninitialized variable 2014-03-25 15:17:08 +01:00
clock_getcpuclockid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
clock_getres.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
clock_gettime.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
clock_nanosleep.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
clock_settime.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
clock.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
cmsg_nxthdr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
configure Some configure-related decrufting. 2014-05-08 11:27:14 -07:00
configure.ac Some configure-related decrufting. 2014-05-08 11:27:14 -07:00
connect.S Remove use of INTDEF/INTUSE in socket 2012-05-31 00:34:41 +02:00
device-nrs.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-brk.c
dl-execstack.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-fxstatat64.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
dl-getcwd.c
dl-librecon.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-openat64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-opendir.c
dl-origin.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-osinfo.h Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
dl-sbrk.c
dl-sysdep.c Revert "Patch [1/4] async-signal safe TLS." 2014-02-06 08:46:20 +10:00
dl-sysdep.h Revert "Patch [1/4] async-signal safe TLS." 2014-02-06 08:46:20 +10:00
dl-vdso.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-vdso.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
dl-writev.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
epoll_pwait.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
errqueue.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
eventfd_read.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
eventfd_write.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
eventfd.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
execve.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
exit-thread.h Clean up __exit_thread. 2014-05-13 09:49:20 -07:00
faccessat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
fallocate64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fallocate.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fatal-prepare.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fchmodat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
fchownat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
fcntl.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fd_to_filename.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fexecve.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fips-private.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fpathconf.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fstatfs64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fstatvfs64.c Avoid stat/fstat in statvfs/fstatvfs (BZ #15132) 2014-05-29 09:41:29 +05:30
fstatvfs.c Avoid stat/fstat in statvfs/fstatvfs (BZ #15132) 2014-05-29 09:41:29 +05:30
ftime.c
ftruncate64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
futimens.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
futimes.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
futimesat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
fxstat64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fxstat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fxstatat64.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
fxstatat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
gai_sigqueue.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getclktck.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getcwd.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getdents64.c
getdents.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getdirentries64.c
getdirentries.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getdtsz.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
gethostid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getipv4sourcefilter.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getloadavg.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getlogin_r.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getlogin.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getpagesize.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getpeername.S
getpriority.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getpt.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getrlimit64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getsockname.S
getsockopt.S
getsourcefilter.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
getsysstats.c get_nprocs: Only return explictly set cache values (BZ #16996) 2014-06-13 14:02:04 +05:30
grantpt.c CVE-2013-2207, BZ #15755: Disable pt_chown. 2013-07-21 15:39:55 -04:00
if_index.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ifaddrs.c Fix memory overrun in getifaddrs_internal. Fixes bug 15698. 2014-06-05 19:25:23 +02:00
ifreq.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
Implies Get rid of nptl/sysdeps/pthread/ subdirectory 2014-06-12 13:48:47 -07:00
internal_accept4.S Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
internal_recvmmsg.S Fix __ASSUME_RECVMMSG issues (bug 16610). 2014-02-20 17:53:08 +00:00
internal_sendmmsg.S Fix __ASSUME_SENDMMSG issues (bug 16611). 2014-02-20 17:55:35 +00:00
internal_statvfs64.c
internal_statvfs.c Avoid stat/fstat in statvfs/fstatvfs (BZ #15132) 2014-05-29 09:41:29 +05:30
ipc_priv.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
kernel_sigaction.h
kernel_stat.h Use __glibc_reserved instead __unused. 2013-11-26 12:32:28 +01:00
kernel_termios.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
kernel-features.h Reduce kernel-features.h duplication. 2014-05-14 00:45:19 +00:00
kernel-posix-cpu-timers.h
ldd-rewrite.sed
lddlibc4.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ldsodefs.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
libc_fatal.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
linkat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
linux_fsinfo.h linux_fsinfo.h: sync with current linux/magic.h 2014-02-08 06:39:10 -05:00
listen.S
llseek.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
local-setxid.h Remove pre-2.4 Linux kernel support. 2012-05-25 19:19:30 +00:00
lseek64.c
lutimes.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
lxstat64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
lxstat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
makedev.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
Makefile Clean up __exit_thread. 2014-05-13 09:49:20 -07:00
malloc-sysdep.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mkdirat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
mmap64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_close.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_getattr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_notify.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_open.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_receive.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_send.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mq_unlink.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
msgctl.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
msgget.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
msgrcv.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
msgsnd.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
netlinkaccess.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
nice.c update linux nice.c include path too after recent file shuffle 2012-08-17 22:42:49 -04:00
not-cancel.h Fix __waitpid_nocancel link error. 2014-05-16 15:45:58 -07:00
nscd_setup_thread.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ntp_gettime.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ntp_gettimex.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
open64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
openat64.c Consolidate definitions of _FORTIFY_SOURCE wrappers for open{,64}{,at}. 2013-05-03 16:33:26 -07:00
openat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
opendir.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
opensock.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pathconf.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pathconf.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
paths.h Fix small indendation issues in paths.h files 2012-11-04 10:10:58 +01:00
posix_fadvise64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
posix_fadvise.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
posix_fallocate64.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
posix_fallocate.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
posix_madvise.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ppoll.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pread64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pread.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
preadv64.c
preadv.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
prlimit.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
prof-freq.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
profil.c
pselect.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pthread_sigmask.c Get rid of nptl/sysdeps/pthread/ subdirectory 2014-06-12 13:48:47 -07:00
ptrace.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ptsname.c ptsname_r: don't leak uninitialized memory (BZ #16917) 2014-05-16 00:07:29 +02:00
pwrite64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pwrite.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
pwritev64.c
pwritev.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
readahead.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
readdir64_r.c Missing #include updates for dirstream code move from unix to posix. 2012-08-08 09:18:37 -07:00
readdir64.c Move common dirent implementation from sysdeps/unix to sysdeps/posix. 2012-08-07 14:47:34 -07:00
readlinkat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
readonly-area.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
readv.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
reboot.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
recv.S
recvfrom.S
recvmmsg.c Fix __ASSUME_RECVMMSG issues (bug 16610). 2014-02-20 17:53:08 +00:00
recvmsg.S
remove.c
renameat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
sa_len.c Clean up __libc_sa_len helper. 2013-08-27 10:34:16 -07:00
sched_getaffinity.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sched_getcpu.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sched_setaffinity.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
segfault.c
semctl.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
semget.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
semop.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
semtimedop.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
send.S
sendmmsg.c Fix __ASSUME_SENDMMSG issues (bug 16611). 2014-02-20 17:55:35 +00:00
sendmsg.S
sendto.S
setegid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
seteuid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setgid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setgroups.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sethostid.c
setipv4sourcefilter.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setregid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setresgid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setresuid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setreuid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setrlimit64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setsockopt.S
setsourcefilter.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
setuid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
shm_open.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
shm_unlink.c
shmat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
shmctl.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
shmdt.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
shmget.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
shutdown.S
sigaction.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
siglist.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
signal.c
signalfd.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigpending.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigprocmask.c Consolidate NPTL sigprocmask. 2014-06-12 10:32:18 -07:00
sigqueue.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigreturn.c
sigset-cvt-mask.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigstack.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigsuspend.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigtimedwait.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigwait.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sigwaitinfo.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sizes.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sleep.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
socketcall.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
socketpair.S
speed.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
statfs64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
statvfs64.c Avoid stat/fstat in statvfs/fstatvfs (BZ #15132) 2014-05-29 09:41:29 +05:30
statvfs.c Avoid stat/fstat in statvfs/fstatvfs (BZ #15132) 2014-05-29 09:41:29 +05:30
symlinkat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
sync_file_range.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
syscalls.list Name space hygeine for madvise. 2012-10-04 16:31:43 -07:00
sysconf.c Clean up kernel version conditionals for pre-2.6.32 kernels. 2014-05-12 22:48:25 +00:00
sysctl.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sysctl.mk Remove $(sysctl) from sysdep_routines 2012-05-22 13:58:43 -07:00
syslog.c Remove pre-2.2 Linux kernel support. 2012-05-14 14:11:02 +00:00
system.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tcdrain.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tcflow.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tcflush.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tcgetattr.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
tcgetpgrp.c
tcsendbrk.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tcsetattr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tcsetpgrp.c
termio.h
testrtsig.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
time.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
times.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
timespec_get.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
truncate64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tst-clone.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tst-fanotify.c tst-fanotify: switch to AC_DEFINE 2014-01-04 08:34:01 -05:00
tst-getcpu.c tst-getcpu: decode errno when sched_getcpu fails 2012-06-04 22:22:02 -04:00
ttyname_r.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
ttyname.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
ualarm.c
umount2.S
umount.S
unlinkat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
unlockpt.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
updwtmp.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
usleep.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ustat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
utimensat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
utimes.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
utmp_file.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
Versions Merge sysdeps/unix/sysv/Versions into sysdeps/unix/sysv/linux/Versions. 2012-04-21 13:18:11 +00:00
vfork.c
wait3.c Flatten sysdeps/unix/bsd/bsd4.4 into sysdeps/unix/bsd. 2013-12-22 14:49:48 +00:00
wait.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
waitid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
waitpid.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
writev.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
xmknod.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
xmknodat.c Remove __ASSUME_ATFCTS conditionals in sysdeps/unix/sysv/linux/. 2014-06-20 15:41:35 +00:00
xstat64.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
xstat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
xstatconv.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
xstatconv.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00