glibc/sysdeps/mach/hurd
Eric Rannaud 65f6f938cd linux: open and openat ignore 'mode' with O_TMPFILE in flags
Both open and openat load their last argument 'mode' lazily, using
va_arg() only if O_CREAT is found in oflag. This is wrong, mode is also
necessary if O_TMPFILE is in oflag.

By chance on x86_64, the problem wasn't evident when using O_TMPFILE
with open, as the 3rd argument of open, even when not loaded with
va_arg, is left untouched in RDX, where the syscall expects it.

However, openat was not so lucky, and O_TMPFILE couldn't be used: mode
is the 4th argument, in RCX, but the syscall expects its 4th argument in
a different register than the glibc wrapper, in R10.

Introduce a macro __OPEN_NEEDS_MODE (oflag) to test if either O_CREAT or
O_TMPFILE is set in oflag.

Tested on Linux x86_64.

	[BZ #17523]
	* io/fcntl.h (__OPEN_NEEDS_MODE): New macro.
	* io/bits/fcntl2.h (open): Use it.
	(openat): Likewise.
	* io/open.c (__libc_open): Likewise.
	* io/open64.c (__libc_open64): Likewise.
	* io/open64_2.c (__open64_2): Likewise.
	* io/open_2.c (__open_2): Likewise.
	* io/openat.c (__openat): Likewise.
	* io/openat64.c (__openat64): Likewise.
	* io/openat64_2.c (__openat64_2): Likewise.
	* io/openat_2.c (__openat_2): Likewise.
	* sysdeps/mach/hurd/open.c (__libc_open): Likewise.
	* sysdeps/mach/hurd/openat.c (__openat): Likewise.
	* sysdeps/posix/open64.c (__libc_open64): Likewise.
	* sysdeps/unix/sysv/linux/dl-openat64.c (openat64): Likewise.
	* sysdeps/unix/sysv/linux/generic/open.c (__libc_open): Likewise.
	(__open_nocancel): Likewise.
	* sysdeps/unix/sysv/linux/generic/open64.c (__libc_open64): Likewise.
	* sysdeps/unix/sysv/linux/open64.c (__libc_open64): Likewise.
	* sysdeps/unix/sysv/linux/openat.c (__OPENAT): Likewise.
2015-02-24 13:19:22 +05:30
..
bits hurd: add basic types for ioctls 2015-02-07 22:26:09 +01:00
i386 Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
net Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
_exit.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
accept4.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
accept.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
access.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
adjtime.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bind.c hurd: Ignore bytes beyond sockaddr length for AF_UNIX 2015-02-08 04:26:54 +01:00
brk.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
chdir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
check_fds.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
chflags.c hurd: fix f?chflags prototypes, declare them and their flags 2015-02-07 21:56:15 +01:00
chmod.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
chown.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
chroot.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
clock.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
close.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
closedir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
configure Remove bitrotten --enable-oldest-abi (bug 6652). 2014-09-16 17:45:03 +00:00
configure.ac Remove bitrotten --enable-oldest-abi (bug 6652). 2014-09-16 17:45:03 +00:00
connect.c hurd: Ignore bytes beyond sockaddr length for AF_UNIX 2015-02-08 04:26:54 +01:00
cthreads.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
device-nrs.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dirfd.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dirstream.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dl-execstack.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dl-sysdep.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dl-sysdep.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dup2.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
dup3.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
eloop-threshold.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
enbl-secure.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
err_hurd.sub
errlist.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
errno-loc.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
errno.c * sysdeps/mach/hurd/errno.c: New file. 2005-12-29 10:51:20 +00:00
errnos.awk Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
euidaccess.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
execve.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
faccessat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fchdir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fchflags.c hurd: fix f?chflags prototypes, declare them and their flags 2015-02-07 21:56:15 +01:00
fchmod.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fchmodat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fchown.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fchownat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fcntl.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fdatasync.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fdopendir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fexecve.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fgetxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
flistxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
flock.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fork.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fpathconf.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fremovexattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fsetxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fstatfs64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fstatfs.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fstatvfs64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fstatvfs.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fsync.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ftruncate.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
futimes.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fxstat64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fxstat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fxstatat64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fxstatat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getclktck.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getcwd.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getdents.c * sysdeps/alpha/fpu/s_cacosf.c: Don't use sysdeps/generic/. 2005-12-15 21:13:14 +00:00
getdomain.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getdtsz.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getegid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
geteuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getgroups.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
gethostid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
gethostname.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getitimer.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getlogin_r.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getlogin.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getpeername.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getpgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getpid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getppid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getpriority.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getresgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getresuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getrlimit.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getrusage.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getsid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getsockname.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getsockopt.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
group_member.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
if_index.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ifreq.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ifreq.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
Implies Flatten sysdeps/unix/bsd/bsd4.4 into sysdeps/unix/bsd. 2013-12-22 14:49:48 +00:00
init-posix.c * sysdeps/alpha/fpu/s_cacosf.c: Don't use sysdeps/generic/. 2005-12-15 21:13:14 +00:00
ioctl.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
isatty.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
jmp-unwind.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
kernel-features.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
kill.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lchmod.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lchown.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lgetxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
libc_p-ldscript
libc-ldscript
link.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
linkat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
listen.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
listxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
llistxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lremovexattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lseek64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lseek.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lsetxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lutimes.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lxstat64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
lxstat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
Makeconfig Clean up definition of _LIBC_REENTRANT and _IO_MTSAFE_IO. 2012-08-17 09:35:15 -07:00
Makefile Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
malloc-machine.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
mig-reply.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
mkdir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
mkdirat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
mlock.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
mmap.c hurd: support mmap with PROT_NONE 2015-02-07 22:22:40 +01:00
munlock.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
open64.c * sysdeps/mach/hurd/faccessat.c: New file. 2006-03-06 07:59:23 +00:00
open.c linux: open and openat ignore 'mode' with O_TMPFILE in flags 2015-02-24 13:19:22 +05:30
openat64.c * sysdeps/mach/hurd/faccessat.c: New file. 2006-03-06 07:59:23 +00:00
openat.c linux: open and openat ignore 'mode' with O_TMPFILE in flags 2015-02-24 13:19:22 +05:30
opendir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pathconf.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pipe.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
poll.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ppoll.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pread64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pread.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
prof-freq.c
profil.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pselect.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ptrace.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ptsname.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pwrite64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pwrite.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
read.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
readdir64_r.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
readdir64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
readdir_r.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
readdir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
readlink.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
readlinkat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
reboot.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
recv.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
recvfrom.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
recvmsg.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
removexattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
rename.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
renameat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
revoke.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
rewinddir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
rmdir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sbrk.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
seekdir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
select.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
send.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sendfile64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sendfile.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sendmsg.c hurd: Ignore bytes beyond sockaddr length for AF_UNIX 2015-02-08 04:26:54 +01:00
sendto.c hurd: Ignore bytes beyond sockaddr length for AF_UNIX 2015-02-08 04:26:54 +01:00
setdomain.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setegid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
seteuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setgroups.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sethostid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sethostname.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setitimer.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setlogin.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setpgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setpriority.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setregid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setresgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setresuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setreuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setrlimit.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setsid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setsockopt.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
settimeofday.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setxattr.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
shlib-versions Remove configuration name patterns from shlib-versions. 2014-09-12 12:28:47 +00:00
shutdown.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigaction.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigaltstack.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
siglist.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigpending.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigprocmask.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigstack.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigsuspend.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sigwait.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
socket.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
socketpair.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawni.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
statfs64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
statfs.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
statfsconv.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
statvfs64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
statvfs.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
Subdirs * sysdeps/mach/hurd/Subdirs: Use "first hurd". 2006-03-01 08:52:13 +00:00
symlink.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
symlinkat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sync.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
syncfs.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sysconf.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
telldir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
times.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tls.h hurd: fix tls.h build 2015-02-08 05:06:17 +01:00
tmpfile64.c
tmpfile.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
truncate.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ttyname_r.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ttyname.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
umask.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
uname.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
unlink.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
unlinkat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
utimes.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
Versions
wait4.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
write.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
xmknod.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
xmknodat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
xstat64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
xstat.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
xstatconv.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00