glibc/sysdeps/mach/hurd
Siddhesh Poyarekar 67e58f3941 Add framework for tunables
The tunables framework allows us to uniformly manage and expose global
variables inside glibc as switches to users.  tunables/README has
instructions for glibc developers to add new tunables.

Tunables support can be enabled by passing the --enable-tunables
configure flag to the configure script.  This patch only adds a
framework and does not pose any limitations on how tunable values are
read from the user.  It also adds environment variables used in malloc
behaviour tweaking to the tunables framework as a PoC of the
compatibility interface.

	* manual/install.texi: Add --enable-tunables option.
	* INSTALL: Regenerate.
	* README.tunables: New file.
	* Makeconfig (CPPFLAGS): Define TOP_NAMESPACE.
	(before-compile): Generate dl-tunable-list.h early.
	* config.h.in: Add HAVE_TUNABLES.
	* config.make.in: Add have-tunables.
	* configure.ac: Add --enable-tunables option.
	* configure: Regenerate.
	* csu/init-first.c (__libc_init_first): Move
	__libc_init_secure earlier...
	* csu/init-first.c (LIBC_START_MAIN):... to here.
	Include dl-tunables.h, libc-internal.h.
	(LIBC_START_MAIN) [!SHARED]: Initialize tunables for static
	binaries.
	* elf/Makefile (dl-routines): Add dl-tunables.
	* elf/Versions (ld): Add __tunable_set_val to GLIBC_PRIVATE
	namespace.
	* elf/dl-support (_dl_nondynamic_init): Unset MALLOC_CHECK_
	only when !HAVE_TUNABLES.
	* elf/rtld.c (process_envvars): Likewise.
	* elf/dl-sysdep.c [HAVE_TUNABLES]: Include dl-tunables.h
	(_dl_sysdep_start): Call __tunables_init.
	* elf/dl-tunable-types.h: New file.
	* elf/dl-tunables.c: New file.
	* elf/dl-tunables.h: New file.
	* elf/dl-tunables.list: New file.
	* malloc/tst-malloc-usable-static.c: New test case.
	* malloc/Makefile (tests-static): Add it.
	* malloc/arena.c [HAVE_TUNABLES]: Include dl-tunables.h.
	Define TUNABLE_NAMESPACE.
	(DL_TUNABLE_CALLBACK (set_mallopt_check)): New function.
	(DL_TUNABLE_CALLBACK_FNDECL): New macro.  Use it to define
	callback functions.
	(ptmalloc_init): Set tunable values.
	* scripts/gen-tunables.awk: New file.
	* sysdeps/mach/hurd/dl-sysdep.c: Include dl-tunables.h.
	(_dl_sysdep_start): Call __tunables_init.
2016-12-31 23:49:24 +05:30
..
bits Installed-header hygiene (BZ#20366): Simple self-contained fixes. 2016-09-23 08:43:55 -04:00
i386 Installed-header hygiene (BZ#20366): stack_t. 2016-09-23 08:43:56 -04:00
net Installed-header hygiene (BZ#20366): conditionally defined structures. 2016-09-23 08:43:56 -04:00
Implies Flatten sysdeps/unix/bsd/bsd4.4 into sysdeps/unix/bsd. 2013-12-22 14:49:48 +00:00
Makeconfig Clean up definition of _LIBC_REENTRANT and _IO_MTSAFE_IO. 2012-08-17 09:35:15 -07:00
Makefile hurd: Break errnos.d / libc-modules.h dependency loop 2016-03-20 16:44:44 +01:00
Subdirs * sysdeps/mach/hurd/Subdirs: Use "first hurd". 2006-03-01 08:52:13 +00:00
Versions Update. 2004-06-01 18:53:04 +00:00
_exit.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
accept.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
accept4.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
access.c Fix hurd __access_noerrno implementation. 2016-11-18 16:49:08 -02:00
adjtime.c hurd: Fix adjtime call with OLDDELTA == NULL 2016-08-30 23:07:30 +02:00
bind.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
brk.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
chdir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
check_fds.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
chflags.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
chmod.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
chown.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
chroot.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
clock.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
close.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
closedir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
configure hurd: disable ifunc for now 2016-05-30 22:13:47 +02:00
configure.ac hurd: disable ifunc for now 2016-05-30 22:13:47 +02:00
connect.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
cthreads.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
device-nrs.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dirfd.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dirstream.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dl-execstack.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dl-fcntl.h hurd: Do not hide rtld symbols which need to be preempted 2016-03-20 19:51:42 +01:00
dl-mman.h Update copyright dates committed in 2016 2016-01-06 14:03:10 -08:00
dl-sysdep.c Add framework for tunables 2016-12-31 23:49:24 +05:30
dl-sysdep.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dl-unistd.h Update copyright dates committed in 2016 2016-01-06 14:03:10 -08:00
dup2.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
dup3.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
eloop-threshold.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
enbl-secure.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
err_hurd.sub
errlist.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
errno-loc.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +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. 2016-01-04 16:05:18 +00:00
euidaccess.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
execve.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
faccessat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fchdir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fchflags.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fchmod.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fchmodat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fchown.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fchownat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fcntl.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fdatasync.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fdopendir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fexecve.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fgetxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
flistxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
flock.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fork.c hurdmalloc: Run fork handler as late as possible [BZ #19431] 2016-09-22 01:45:48 +02:00
fpathconf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fremovexattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fsetxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fstatfs.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fstatfs64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fstatvfs.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fstatvfs64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fsync.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ftruncate.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
futimes.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fxstat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fxstat64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fxstatat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
fxstatat64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getclktck.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getcwd.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +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. 2016-01-04 16:05:18 +00:00
getdtsz.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getegid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
geteuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getgroups.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gethostid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gethostname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getitimer.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getlogin.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getlogin_r.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpeername.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getppid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpriority.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getresgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getresuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getrlimit.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getrusage.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getsid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getsockname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getsockopt.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
group_member.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
if_index.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ifreq.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ifreq.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +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. 2016-01-04 16:05:18 +00:00
isatty.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
jmp-unwind.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
kernel-features.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
kill.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lchmod.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lchown.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lgetxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
libc-ldscript
libc-lock.h hurd: Allow inlining IO locks 2016-03-20 22:12:06 +01:00
libc-tsd.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
libc_p-ldscript
link.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
linkat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
listen.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
listxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
llistxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lremovexattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lseek.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lseek64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lsetxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lutimes.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lxstat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
lxstat64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
malloc-machine.h malloc: Manual part of conversion to __libc_lock 2016-09-21 16:28:08 +02:00
mig-reply.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
mkdir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
mkdirat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
mlock.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
mmap.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
mmap64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
munlock.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
open.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
open64.c * sysdeps/mach/hurd/faccessat.c: New file. 2006-03-06 07:59:23 +00:00
openat.c Fix hurd build 2016-03-16 13:57:57 +01:00
openat64.c * sysdeps/mach/hurd/faccessat.c: New file. 2006-03-06 07:59:23 +00:00
opendir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pathconf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pipe.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
poll.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ppoll.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pread.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pread64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
prof-freq.c
profil.c Fix gprof timing 2016-04-19 23:27:27 +02:00
pselect.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ptrace.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ptsname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pwrite.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
pwrite64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
read.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
readdir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
readdir64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
readdir64_r.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
readdir_r.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
readlink.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
readlinkat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
reboot.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recvfrom.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recvmsg.c Fix recvmsg returning SIGLOST on PF_LOCAL sockets 2016-08-09 01:42:50 +02:00
removexattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
rename.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
renameat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
revoke.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
rewinddir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
rmdir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sbrk.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
seekdir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
select.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
send.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendfile.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendfile64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendmsg.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendto.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setdomain.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setegid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
seteuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setgroups.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sethostid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sethostname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setitimer.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setlogin.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setpgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setpriority.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setregid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setresgid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setresuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setreuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setrlimit.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setsid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setsockopt.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
settimeofday.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setuid.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setxattr.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +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. 2016-01-04 16:05:18 +00:00
sigaction.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sigaltstack.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
siglist.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sigpending.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sigprocmask.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sigstack.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sigsuspend.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sigwait.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
socket.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
socketpair.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
spawni.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
statfs.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
statfs64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
statfsconv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
statvfs.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
statvfs64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
symlink.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
symlinkat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sync.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
syncfs.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sysconf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
telldir.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
times.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tls.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tmpfile.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tmpfile64.c * sysdeps/mach/hurd/xstat64.c: Conditionalize entire contents of the 2002-06-11 23:04:51 +00:00
truncate.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ttyname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
ttyname_r.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
umask.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
uname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
unlink.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
unlinkat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
utimes.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
wait4.c Remove union wait [BZ #19613] 2016-04-14 08:54:57 +02:00
write.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
xmknod.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
xmknodat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
xstat.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
xstat64.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
xstatconv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00