glibc/sysdeps/unix/sysv/linux
Joseph Myers dd481ccffd Fix __ASSUME_ACCEPT4 issues (bug 16609).
In <https://sourceware.org/ml/libc-alpha/2013-12/msg00008.html>,
Aurelien noted issues with the definition of __ASSUME_ACCEPT4, which I
discussed in more detail in
<https://sourceware.org/ml/libc-alpha/2013-12/msg00014.html>; these
are now bug 16609.

As previously noted, __ASSUME_ACCEPT4 is used in two ways:

* In OS-independent code, to mean "accept4 can be assumed to work
  rather than fail with ENOSYS".  It doesn't matter whether it's
  implemented with socketcall or a separate syscall.

* In Linux-specific code, to mean "the socketcall multiplex syscall
  can be assumed to handle the accept4 operation.  When used in
  Linux-specific code, it *never* refers to anything relating to the
  accept4 syscall, only to the socketcall multiplexer.

This patch splits the macro into separate __ASSUME_ACCEPT4_SOCKETCALL,
__ASSUME_ACCEPT4_SYSCALL and __ASSUME_ACCEPT4 to clarify the different
cases involved.  A macro __ASSUME_SOCKETCALL is added for convenience
in writing logic relating to all socketcall architectures.  In
addition, to address the issue of architectures where socketcall
support for accept4 was added before a separate syscall was added (and
so the separate syscall should not be used unless known to be present
or fallback to socketcall is available), a fourth macro
__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL is added to indicate that the
syscall became available at the same time as socketcall support.  This
is then used in the relevant places in a conditional determining
whether to undefine __NR_accept4 (the simple approach to avoiding the
syscall's presence causing problems; I didn't try to implement runtime
fallback from the syscall to socketcall).

Architecture-specific note: alpha defined __ASSUME_ACCEPT4 for 2.6.33
and later, but actually the syscall was added for alpha in 3.2, so
this patch uses the correct condition for __ASSUME_ACCEPT4_SYSCALL
there.

Tested x86_64, including that disassembly of the installed shared
libraries is unchanged by this patch.

	[BZ #16609]
	* sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
	__powerpc__ || __s390__ || __sh__ || __sparc__]
	(__ASSUME_SOCKETCALL): Define.
	[__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
	(__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
	[(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
	|| (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
	__sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
	[__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
	[__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
	(__ASSUME_ACCEPT4): Define instead of using previous
	[__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
	__powerpc__ || __sparc__ || __s390__)] condition.
	* sysdeps/unix/sysv/linux/aarch64/kernel-features.h
	(__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
	* sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
	!__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
	!__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
	[!__ASSUME_ACCEPT4]: Change condition to
	[!__ASSUME_ACCEPT4_SOCKETCALL].
	* sysdeps/unix/sysv/linux/alpha/kernel-features.h
	(__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.  Correct
	condition to [__LINUX_KERNEL_VERSION >= 0x030200].
	* sysdeps/unix/sysv/linux/arm/kernel-features.h
	[__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
	__ASSUME_ACCEPT4_SYSCALL.
	* sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
	Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
	* sysdeps/unix/sysv/linux/ia64/kernel-features.h
	[__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
	__ASSUME_ACCEPT4_SYSCALL.
	* sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
	&& !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
	!__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
	[__ASSUME_ACCEPT4]: Change condition to
	[__ASSUME_ACCEPT4_SOCKETCALL].
	* sysdeps/unix/sysv/linux/m68k/kernel-features.h
	(__ASSUME_SOCKETCALL): Define.
	[__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
	* sysdeps/unix/sysv/linux/microblaze/kernel-features.h
	(__ASSUME_SOCKETCALL): Define.
	(__ASSUME_ACCEPT4): Remove.
	[__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
	Define.
	* sysdeps/unix/sysv/linux/mips/kernel-features.h
	[__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
	Likewise.
	* sysdeps/unix/sysv/linux/tile/kernel-features.h
	(__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.

	* sysdeps/unix/sysv/linux/hppa/kernel-features.h
	[__LINUX_KERNEL_VERSION >= 0x020622] (__ASSUME_ACCEPT4_SYSCALL):
	Define.
2014-02-20 17:50:31 +00:00
..
aarch64 Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
alpha Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
arm Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
bits Combine __USE_BSD and __USE_SVID into __USE_MISC. 2014-02-12 23:41:01 +00:00
generic Move tilegx, tilepro, and linux-generic from ports to libc. 2014-02-10 11:04:39 -05:00
i386 Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
ia64 Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
m68k Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
microblaze Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
mips Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +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 Combine __USE_BSD and __USE_SVID into __USE_MISC. 2014-02-12 23:41:01 +00:00
s390 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
scsi Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sh Restore ucontext ABI for soft-float sh4. 2014-01-24 12:56:12 +09:00
sparc Combine __USE_BSD and __USE_SVID into __USE_MISC. 2014-02-12 23:41:01 +00:00
sys ptrace.h: add __ prefix to ptrace_peeksiginfo_args 2014-01-06 08:07:33 -05:00
tile Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
wordsize-64 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
x86 Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
x86_64 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
_exit.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
_G_config.h
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
bind.S
check_native.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
check_pf.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +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 tst-fanotify: switch to AC_DEFINE 2014-01-04 08:34:01 -05:00
configure.ac tst-fanotify: switch to AC_DEFINE 2014-01-04 08:34:01 -05:00
connect.S
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
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.S Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
faccessat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
fchownat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
fstatvfs.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
fxstatat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
ifreq.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
Implies
internal_accept4.S Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +00:00
internal_recvmmsg.S
internal_sendmmsg.S
internal_statvfs64.c
internal_statvfs.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
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 Fix __ASSUME_ACCEPT4 issues (bug 16609). 2014-02-20 17:50:31 +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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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
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 tst-fanotify: new simple test 2013-09-02 23:22:23 -04:00
malloc-sysdep.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
mkdirat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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
not-cancel.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10: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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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
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
ptrace.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
ptsname.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10: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
readdir64.c
readlinkat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
recvmsg.S
remove.c
renameat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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 Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10: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 Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
statvfs.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
symlinkat.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
sync_file_range.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
syscalls.list
sysconf.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sysctl.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
sysctl.mk
syslog.c
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
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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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
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 Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01: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