glibc/sysdeps/unix/sysv/linux
Ulrich Drepper b5cc329c4f 2004-10-15 Jakub Jelinek <jakub@redhat.com>
* elf/dl-minimal.c (__chk_fail): New.  Add rtld_hidden_def.
	* sysdeps/unix/sysv/linux/readonly-area.c: New file.
	* sysdeps/i386/i686/memmove.S (__memmove_chk): Add checking
	routine.
	* sysdeps/i386/i686/memcpy.S (__memcpy_chk): Likewise.
	* sysdeps/i386/i686/mempcpy.S (__mempcpy_chk): Likewise.
	* sysdeps/i386/i686/memset.S (__memset_chk): Likewise.
	* sysdeps/i386/i686/memmove-chk.S: New file.
	* sysdeps/i386/i686/memcpy-chk.S: Likewise.
	* sysdeps/i386/i686/mempcpy-chk.S: Likewise.
	* sysdeps/i386/i686/memset-chk.S: Likewise.
	* sysdeps/generic/strcat-chk.c (__strcat_chk): Don't __chk_fail
	if exactly fitting into buffer.
	* sysdeps/generic/strncat-chk.c (__strncat_chk): Likewise.
	* sysdeps/generic/readonly-area.c: New file.
	* sysdeps/generic/strncpy-chk.c (__strncpy_chk): Only test
	destlen once.
	* sysdeps/x86_64/memset.S (__memset_chk): Add checking routine.
	* sysdeps/x86_64/memcpy.S (__memcpy_chk): Likewise.
	* sysdeps/x86_64/mempcpy.S (__memcpy_chk): Define to __mempcpy_chk.
	* sysdeps/x86_64/memcpy-chk.S: New file.
	* sysdeps/x86_64/mempcpy-chk.S: Likewise.
	* sysdeps/x86_64/memset-chk.S: Likewise.
	* sysdeps/x86_64/strcpy-chk.S: Likewise.
	* sysdeps/x86_64/stpcpy-chk.S: Likewise.
	* argp/argp-xinl.c (__OPTIMIZE__): Define to 1 instead of nothing.
	* argp/argp-fs-xinl.c (__OPTIMIZE__): Likewise.
	* debug/tst-chk1.c: New test.
	* debug/tst-chk2.c: Likewise.
	* debug/tst-chk3.c: Likewise.
	* debug/test-strcpy_chk.c: Likewise.
	* debug/test-stpcpy_chk.c: Likewise.
	* debug/vsprintf_chk.c (__vsprintf_chk): If flags > 0, request
	_IO_FLAGS2_CHECK_PERCENT_N.  Add libc_hidden_def.
	* debug/Makefile (routines): Add printf_chk, fprintf_chk, vprintf_chk,
	vfprintf_chk, gets_chk and readonly-area.
	(CFLAGS-*_chk.c): Set.
	(tests): Add tst-chk1, tst-chk2, tst-chk3, test-strcpy_chk and
	test-stpcpy_chk.
	* debug/vprintf_chk.c: New file.
	* debug/printf_chk.c: Likewise.
	* debug/vfprintf_chk.c: Likewise.
	* debug/fprintf_chk.c: Likewise.
	* debug/gets_chk.c: Likewise.
	* debug/chk_fail.c (__chk_fail): Add libc_hidden_def.
	* debug/snprintf_chk.c (__snprintf_chk): Fix order of arguments
	passed to __vsnprintf_chk.
	* debug/Versions (libc): Export __printf_chk, __fprintf_chk,
	__vprintf_chk, __vfprintf_chk and __gets_chk @GLIBC_2.3.4.
	* debug/vsnprintf_chk.c (__vsnprintf_chk): Don't call
	__vsnprintf, instead create a temporary file with
	_IO_strn_jumps jumptable.  If flags > 0, request
	_IO_FLAGS2_CHECK_PERCENT_N.  Add libc_hidden_def.
	* libio/Makefile (headers): Add bits/stdio2.h.
	* libio/stdio.h: Include <bits/stdio2.h> if __USE_FORTIFY_LEVEL.
	(sprintf, snprintf, vsprintf, vsnprintf): Remove defines.
	* libio/strfile.h (_IO_strnfile): New type.
	(_IO_strn_jumps): New extern.
	* libio/vsnprintf.c (_IO_strnfile): Remove.
	(_IO_strn_jumps): Remove static.
	* libio/bits/stdio2.h: New file.
	* libio/vswprintf.c (_IO_strnfile): Rename type to...
	(_IO_wstrnfile): ...this.  Adjust all uses.
	* libio/libio.h (_IO_FLAGS2_CHECK_PERCENT_N): Define.
	* stdio-common/vfprintf.c (STR_LEN): Define.
	(vfprintf): Add readonly_format variable.
	Handle _IO_FLAGS2_CHECK_PERCENT_N.
	(buffered_vfprintf): Copy _flags2.
	* include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
	__vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
	__vfprintf_chk): New prototypes.
	(__vsprintf_chk, __vsnprintf_chk): Add libc_hidden_proto.
	* include/string.h (__memcpy_chk, __memmove_chk, __mempcpy_chk,
	__memset_chk, __strcpy_chk, __stpcpy_chk, __strncpy_chk, __strcat_chk,
	__strncat_chk): New prototypes.
	* include/bits/string3.h: New file.
	* include/sys/cdefs.h (__chk_fail): Add libc_hidden_proto
	and rtld_hidden_proto.
	* string/Makefile (headers): Add bits/string3.h.
	* string/bits/string3.h (bcopy, bzero): New defines.
	(memset, memcpy, memmove, strcpy, strncpy, strcat, strncat): Change
	macros so that inlines are used only if unknown destination size
	or side-effects in destination argument.
	(mempcpy, stpcpy): Likewise.  Protect with #ifdef __USE_GNU.

2004-09-16  Ulrich Drepper  <drepper@redhat.com>

	* debug/Makefile (routines): Add *_chk.
	* debug/Versions (libc): Export __chk_fail, __memcpy_chk,
	__memmove_chk, __mempcpy_chk, __memset_chk, __stpcpy_chk,
	__strcat_chk, __strcpy_chk, __strncat_chk, __strncpy_chk,
	__sprintf_chk, __vsprintf_chk, __snprintf_chk, __vsnprintf_chk
	@GLIBC_2.3.4.
	* debug/chk_fail.c: New file.
	* debug/snprintf_chk.c: Likewise.
	* debug/sprintf_chk.c: Likewise.
	* debug/vsnprintf_chk.c: Likewise.
	* debug/vsprintf_chk.c: Likewise.
	* include/features.h (_FORTIFY_SOURCE): Document, handle.
	(__USE_FORTIFY_LEVEL): Define.
	(__GNUC_PREREQ): Move to earlier location.
	* include/sys/cdefs.h (__chk_fail): New prototype.
	* libio/bits/stdio.h (sprintf, vsprintf, snprintf, vsnprintf):
	Define if __USE_FORTIFY_LEVEL.
	* misc/sys/cdefs.h (__bos, __bos0): Define.
	* string/string.h: Include <bits/string3.h> if __USE_FORTIFY_LEVEL.
	* bits/string/string3.h: New header.
	* sysdeps/generic/memcpy_chk.c: New file.
	* sysdeps/generic/memmove_chk.c: Likewise.
	* sysdeps/generic/mempcpy_chk.c: Likewise.
	* sysdeps/generic/memset_chk.c: Likewise.
	* sysdeps/generic/stpcpy_chk.c: Likewise.
	* sysdeps/generic/strcat_chk.c: Likewise.
	* sysdeps/generic/strcpy_chk.c: Likewise.
	* sysdeps/generic/strncat_chk.c: Likewise.
	* sysdeps/generic/strncpy_chk.c: Likewise.
2004-10-15  Jakub Jelinek  <jakub@redhat.com>

	* elf/dl-minimal.c (__chk_fail): New.  Add rtld_hidden_def.
	* sysdeps/unix/sysv/linux/readonly-area.c: New file.
	* sysdeps/i386/i686/memmove.S (__memmove_chk): Add checking
	routine.
	* sysdeps/i386/i686/memcpy.S (__memcpy_chk): Likewise.
	* sysdeps/i386/i686/mempcpy.S (__mempcpy_chk): Likewise.
	* sysdeps/i386/i686/memset.S (__memset_chk): Likewise.
	* sysdeps/i386/i686/memmove-chk.S: New file.
	* sysdeps/i386/i686/memcpy-chk.S: Likewise.
	* sysdeps/i386/i686/mempcpy-chk.S: Likewise.
	* sysdeps/i386/i686/memset-chk.S: Likewise.
	* sysdeps/generic/strcat-chk.c (__strcat_chk): Don't __chk_fail
	if exactly fitting into buffer.
	* sysdeps/generic/strncat-chk.c (__strncat_chk): Likewise.
	* sysdeps/generic/readonly-area.c: New file.
	* sysdeps/generic/strncpy-chk.c (__strncpy_chk): Only test
	destlen once.
	* sysdeps/x86_64/memset.S (__memset_chk): Add checking routine.
	* sysdeps/x86_64/memcpy.S (__memcpy_chk): Likewise.
	* sysdeps/x86_64/mempcpy.S (__memcpy_chk): Define to __mempcpy_chk.
	* sysdeps/x86_64/memcpy-chk.S: New file.
	* sysdeps/x86_64/mempcpy-chk.S: Likewise.
	* sysdeps/x86_64/memset-chk.S: Likewise.
	* sysdeps/x86_64/strcpy-chk.S: Likewise.
	* sysdeps/x86_64/stpcpy-chk.S: Likewise.
	* argp/argp-xinl.c (__OPTIMIZE__): Define to 1 instead of nothing.
	* argp/argp-fs-xinl.c (__OPTIMIZE__): Likewise.
	* debug/tst-chk1.c: New test.
	* debug/tst-chk2.c: Likewise.
	* debug/tst-chk3.c: Likewise.
	* debug/test-strcpy_chk.c: Likewise.
	* debug/test-stpcpy_chk.c: Likewise.
	* debug/vsprintf_chk.c (__vsprintf_chk): If flags > 0, request
	_IO_FLAGS2_CHECK_PERCENT_N.  Add libc_hidden_def.
	* debug/Makefile (routines): Add printf_chk, fprintf_chk, vprintf_chk,
	vfprintf_chk, gets_chk and readonly-area.
	(CFLAGS-*_chk.c): Set.
	(tests): Add tst-chk1, tst-chk2, tst-chk3, test-strcpy_chk and
	test-stpcpy_chk.
	* debug/vprintf_chk.c: New file.
	* debug/printf_chk.c: Likewise.
	* debug/vfprintf_chk.c: Likewise.
	* debug/fprintf_chk.c: Likewise.
	* debug/gets_chk.c: Likewise.
	* debug/chk_fail.c (__chk_fail): Add libc_hidden_def.
	* debug/snprintf_chk.c (__snprintf_chk): Fix order of arguments
	passed to __vsnprintf_chk.
	* debug/Versions (libc): Export __printf_chk, __fprintf_chk,
	__vprintf_chk, __vfprintf_chk and __gets_chk @GLIBC_2.3.4.
	* debug/vsnprintf_chk.c (__vsnprintf_chk): Don't call
	__vsnprintf, instead create a temporary file with
	_IO_strn_jumps jumptable.  If flags > 0, request
	_IO_FLAGS2_CHECK_PERCENT_N.  Add libc_hidden_def.
	* libio/Makefile (headers): Add bits/stdio2.h.
	* libio/stdio.h: Include <bits/stdio2.h> if __USE_FORTIFY_LEVEL.
	(sprintf, snprintf, vsprintf, vsnprintf): Remove defines.
	* libio/strfile.h (_IO_strnfile): New type.
	(_IO_strn_jumps): New extern.
	* libio/vsnprintf.c (_IO_strnfile): Remove.
	(_IO_strn_jumps): Remove static.
	* libio/bits/stdio2.h: New file.
	* libio/vswprintf.c (_IO_strnfile): Rename type to...
	(_IO_wstrnfile): ...this.  Adjust all uses.
	* libio/libio.h (_IO_FLAGS2_CHECK_PERCENT_N): Define.
	* stdio-common/vfprintf.c (STR_LEN): Define.
	(vfprintf): Add readonly_format variable.
	Handle _IO_FLAGS2_CHECK_PERCENT_N.
	(buffered_vfprintf): Copy _flags2.
	* include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
	__vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
	__vfprintf_chk): New prototypes.
	(__vsprintf_chk, __vsnprintf_chk): Add libc_hidden_proto.
	* include/string.h (__memcpy_chk, __memmove_chk, __mempcpy_chk,
	__memset_chk, __strcpy_chk, __stpcpy_chk, __strncpy_chk, __strcat_chk,
	__strncat_chk): New prototypes.
	* include/bits/string3.h: New file.
	* include/sys/cdefs.h (__chk_fail): Add libc_hidden_proto
	and rtld_hidden_proto.
	* string/Makefile (headers): Add bits/string3.h.
	* string/bits/string3.h (bcopy, bzero): New defines.
	(memset, memcpy, memmove, strcpy, strncpy, strcat, strncat): Change
	macros so that inlines are used only if unknown destination size
	or side-effects in destination argument.
	(mempcpy, stpcpy): Likewise.  Protect with #ifdef __USE_GNU.

2004-09-16  Ulrich Drepper  <drepper@redhat.com>

	* debug/Makefile (routines): Add *_chk.
	* debug/Versions (libc): Export __chk_fail, __memcpy_chk,
	__memmove_chk, __mempcpy_chk, __memset_chk, __stpcpy_chk,
	__strcat_chk, __strcpy_chk, __strncat_chk, __strncpy_chk,
	__sprintf_chk, __vsprintf_chk, __snprintf_chk, __vsnprintf_chk
	@GLIBC_2.3.4.
	* debug/chk_fail.c: New file.
	* debug/snprintf_chk.c: Likewise.
	* debug/sprintf_chk.c: Likewise.
	* debug/vsnprintf_chk.c: Likewise.
	* debug/vsprintf_chk.c: Likewise.
	* include/features.h (_FORTIFY_SOURCE): Document, handle.
	(__USE_FORTIFY_LEVEL): Define.
	(__GNUC_PREREQ): Move to earlier location.
	* include/sys/cdefs.h (__chk_fail): New prototype.
	* libio/bits/stdio.h (sprintf, vsprintf, snprintf, vsnprintf):
	Define if __USE_FORTIFY_LEVEL.
	* misc/sys/cdefs.h (__bos, __bos0): Define.
	* string/string.h: Include <bits/string3.h> if __USE_FORTIFY_LEVEL.
	* bits/string/string3.h: New header.
	* sysdeps/generic/memcpy_chk.c: New file.
	* sysdeps/generic/memmove_chk.c: Likewise.
	* sysdeps/generic/mempcpy_chk.c: Likewise.
	* sysdeps/generic/memset_chk.c: Likewise.
	* sysdeps/generic/stpcpy_chk.c: Likewise.
	* sysdeps/generic/strcat_chk.c: Likewise.
	* sysdeps/generic/strcpy_chk.c: Likewise.
	* sysdeps/generic/strncat_chk.c: Likewise.
	* sysdeps/generic/strncpy_chk.c: Likewise.
2004-10-18 04:17:19 +00:00
..
alpha * sysdeps/unix/sysv/linux/alpha/register-dump.h: New file. * sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h (SIGCONTEXT): Add _code argument, pass sigcontext by pointer. (SIGCONTEXT_EXTRA_ARGS): Likewise. (GET_PC, GET_FRAME, GET_STACK): Expect ctx as pointer. 2004-10-15 09:34:45 +00:00
arm [BZ #341] (O_NOATIME): Define. 2004-08-23 07:28:46 +00:00
bits Update. 2004-09-09 02:04:45 +00:00
cris [BZ #341] (O_NOATIME): Define. 2004-08-23 07:28:46 +00:00
hppa [BZ #341] (O_NOATIME): Define. 2004-08-23 07:28:46 +00:00
i386 Update. 2004-10-15 21:31:29 +00:00
ia64 Update. 2004-10-14 02:24:44 +00:00
m68k 2004-10-04 Roland McGrath <roland@redhat.com> 2004-10-04 20:59:38 +00:00
mips Update. 2004-08-26 17:00:16 +00:00
net Sync with kernel header, fix typo. 2003-06-28 08:19:47 +00:00
netash Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
netatalk Update. 2004-08-06 18:32:16 +00:00
netax25 Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
neteconet Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
netinet Update. 2003-05-10 08:39:58 +00:00
netipx Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
netpacket Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
netrom Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
netrose Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
nfs Sat Oct 14 02:52:36 1995 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de> 1995-10-16 01:37:51 +00:00
powerpc Update. 2004-09-20 00:16:11 +00:00
s390 Update. 2004-10-05 16:11:51 +00:00
scsi Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
sh 2004-10-04 Roland McGrath <roland@redhat.com> 2004-10-04 20:59:38 +00:00
sparc 2004-10-04 Roland McGrath <roland@redhat.com> 2004-10-04 20:59:38 +00:00
sys Update. 2004-09-23 14:07:48 +00:00
wordsize-64 Update. 2004-04-17 23:14:52 +00:00
x86_64 Update. 2004-10-05 09:26:23 +00:00
Dist Update. 2004-06-30 07:59:08 +00:00
Implies Wed May 22 01:48:54 1996 Ulrich Drepper <drepper@cygnus.com> 1996-05-22 02:11:55 +00:00
Makefile Update. 2004-10-04 23:30:29 +00:00
Versions Update. 2004-05-03 21:40:12 +00:00
_exit.c Update. 2003-09-03 03:22:23 +00:00
a.out.h Update. 2003-07-25 09:06:04 +00:00
accept.S Update. 2002-12-31 20:46:11 +00:00
adjtime.c * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Use prototype style definition. * sysdeps/unix/sysv/linux/alpha/adjtime.c (ADJTIME): If __ASSUME_TIMEVAL64, define __adjtime directly rather than via strong_alias. 2004-10-15 07:06:56 +00:00
aio_sigqueue.c Update. 2003-09-03 03:22:23 +00:00
bind.S Update. 2002-05-15 00:22:23 +00:00
check_pf.c Update. 2003-11-13 23:39:31 +00:00
clock.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
clock_getres.c Update. 2003-03-03 04:57:09 +00:00
clock_gettime.c Update. 2003-03-03 04:57:09 +00:00
clock_nanosleep.c Update. 2003-06-15 21:22:26 +00:00
clock_settime.c Update. 2004-02-26 21:36:37 +00:00
cmsg_nxthdr.c Update. 2001-07-31 20:32:01 +00:00
configure Update. 2004-07-06 04:26:42 +00:00
configure.in Update. 2004-07-06 04:26:42 +00:00
connect.S Update. 2002-12-15 10:26:23 +00:00
device-nrs.h * sysdeps/generic/device-nrs.h (DEV_TTY_P): Change argument type 2001-07-21 05:13:40 +00:00
dl-brk.c Update. 2002-06-09 20:15:14 +00:00
dl-execstack.c Update. 2004-09-21 02:30:50 +00:00
dl-librecon.h Update. 2004-03-05 10:29:47 +00:00
dl-origin.c Update. 2004-07-06 04:26:42 +00:00
dl-osinfo.h Update. 2004-03-05 10:29:47 +00:00
dl-sbrk.c Update. 2002-06-09 20:15:14 +00:00
dl-sysdep.c [BZ #227] 2004-08-15 23:33:02 +00:00
errqueue.h Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
execve.c Update. 2003-09-03 03:22:23 +00:00
exit-thread.S Update. 2002-09-15 02:37:32 +00:00
fatal-prepare.h Update. 2003-04-19 16:57:17 +00:00
fcntl.c Update. 2004-07-16 18:11:48 +00:00
fd_to_filename.h Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
fexecve.c Update. 2002-12-06 23:38:01 +00:00
fpathconf.c Update. 2003-08-08 07:43:03 +00:00
fstatfs64.c Update. 2003-06-24 18:59:03 +00:00
fstatvfs.c Update. 2003-09-17 00:49:19 +00:00
fstatvfs64.c Update. 2004-04-03 07:50:20 +00:00
ftime.c Update. 1999-05-11 13:00:20 +00:00
ftruncate64.c Update. 2003-09-03 03:22:23 +00:00
futimes.c Update. 2003-07-31 19:26:38 +00:00
fxstat.c Update. 2003-06-28 08:11:28 +00:00
fxstat64.c Update. 2003-09-03 03:22:23 +00:00
gai_sigqueue.c Update. 2003-09-03 03:22:23 +00:00
getclktck.c Update. 2004-03-05 10:29:47 +00:00
getcwd.c Update. 2003-09-20 01:06:31 +00:00
getdents.c Update. 2004-03-01 21:34:36 +00:00
getdents64.c Update. 2000-08-17 19:36:13 +00:00
getdirentries.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
getdirentries64.c Update. 2000-08-12 05:14:52 +00:00
getdtsz.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
gethostid.c Update. 2003-09-04 14:08:24 +00:00
getipv4sourcefilter.c Update. 2004-08-06 09:25:59 +00:00
getloadavg.c [BZ #263] 2004-07-13 00:23:34 +00:00
getpagesize.c Update. 2004-03-05 10:29:47 +00:00
getpeername.S update from main archive 970225 1997-02-25 05:18:05 +00:00
getpriority.c Update. 2003-09-03 03:22:23 +00:00
getpt.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
getsockname.S Update. 2002-05-15 00:22:23 +00:00
getsockopt.S update from main archive 970225 1997-02-25 05:18:05 +00:00
getsourcefilter.c Update. 2004-08-07 18:22:26 +00:00
getsysstats.c Update. 2003-09-04 08:27:37 +00:00
grantpt.c Update. 2002-07-20 01:14:41 +00:00
if_index.c Update. 2004-06-30 07:43:11 +00:00
ifaddrs.c Update. 2004-06-30 07:43:11 +00:00
ifreq.c Update. 2004-07-26 15:22:56 +00:00
ifreq.h Update. 2003-06-13 21:05:42 +00:00
init-first.c Update. 2004-03-05 10:29:47 +00:00
internal_statvfs.c Restructure to avoid duplication in 64-bit version. 2004-04-03 17:32:18 +00:00
internal_statvfs64.c Update. 2004-04-03 07:50:20 +00:00
ipc_priv.h Update. 2003-09-03 03:22:23 +00:00
kernel-features.h [BZ #377] 2004-09-10 21:16:28 +00:00
kernel_sigaction.h Update. 1999-10-19 03:14:36 +00:00
kernel_stat.h (_HAVE_STAT_NSEC,_HAVE_STAT_NSEC64): New. 2003-01-01 19:56:23 +00:00
kernel_termios.h Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
ldd-rewrite.sed Update. 1998-08-24 16:46:16 +00:00
lddlibc4.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
ldsodefs.h 2003-06-26 Roland McGrath <roland@redhat.com> 2003-06-26 19:54:29 +00:00
libc_fatal.c Update. 2003-07-22 23:56:53 +00:00
linux_fsinfo.h Update. 2003-09-17 00:49:19 +00:00
listen.S Update. 2002-05-15 00:22:23 +00:00
llseek.c Update. 2003-09-03 03:22:23 +00:00
lseek64.c Update. 1997-10-12 04:05:44 +00:00
lxstat.c Update. 2003-06-28 08:11:28 +00:00
lxstat64.c Update. 2003-09-03 03:22:23 +00:00
makedev.c Update. 2003-09-24 21:13:55 +00:00
mmap64.c Update. 2003-09-03 03:22:23 +00:00
mq_close.c Update. 2004-04-13 02:15:43 +00:00
mq_getattr.c [BZ #130, BZ #131] 2004-04-29 21:55:45 +00:00
mq_notify.c [BZ #130, BZ #131] 2004-04-29 21:55:45 +00:00
mq_open.c [BZ #130, BZ #131] 2004-04-29 21:55:45 +00:00
mq_receive.c [BZ #130, BZ #131] 2004-04-29 21:55:45 +00:00
mq_send.c [BZ #130, BZ #131] 2004-04-29 21:55:45 +00:00
mq_unlink.c Update. 2004-04-20 04:31:12 +00:00
msgctl.c Update. 2004-03-10 19:28:58 +00:00
msgget.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
msgrcv.c Update. 2002-12-15 10:26:23 +00:00
msgsnd.c Update. 2002-12-15 10:26:23 +00:00
netlinkaccess.h Update. 2004-06-30 07:43:11 +00:00
nice.c Update. 2002-03-02 00:48:30 +00:00
not-cancel.h Update. 2003-09-04 14:08:24 +00:00
nscd_setup_thread.c [BZ #390] 2004-09-17 23:47:50 +00:00
ntp_gettime.c Update. 2002-07-25 08:19:59 +00:00
open64.c Update. 2002-12-15 10:26:23 +00:00
opendir.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
opensock.c * catgets/open_catalog.c (__open_catalog): Don't use a value type 2002-09-24 04:24:25 +00:00
pathconf.c Update. 2003-09-04 14:42:25 +00:00
pathconf.h Update. 2003-06-11 23:22:36 +00:00
paths.h Update. 2000-11-15 23:56:34 +00:00
poll.c Update. 2003-09-03 03:22:23 +00:00
posix_fadvise.c Update. 2003-08-17 00:37:19 +00:00
posix_fadvise64.c Update. 2004-03-10 19:28:58 +00:00
pread.c Update. 2004-07-06 04:26:42 +00:00
pread64.c Update. 2003-09-03 03:22:23 +00:00
prof-freq.c Update. 2004-03-05 10:29:47 +00:00
profil.c Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-13 17:30:42 +00:00
ptrace.c Update. 2003-09-03 03:22:23 +00:00
ptsname.c Update. 2003-01-16 18:14:10 +00:00
pwrite.c Update. 2004-07-06 04:26:42 +00:00
pwrite64.c Update. 2003-09-03 03:22:23 +00:00
readahead.c Update. 2004-01-20 23:25:27 +00:00
readdir64.c Update. 2000-08-19 16:58:09 +00:00
readdir64_r.c Update. 2000-08-19 16:58:09 +00:00
readonly-area.c 2004-10-15 Jakub Jelinek <jakub@redhat.com> 2004-10-18 04:17:19 +00:00
readv.c Update. 2003-09-03 03:22:23 +00:00
reboot.c Update. 2003-09-03 03:22:23 +00:00
recv.S Update. 2002-12-15 10:26:23 +00:00
recvfrom.S Update. 2002-12-15 10:26:23 +00:00
recvmsg.S Update. 2002-12-15 10:26:23 +00:00
sa_len.c Update. 2002-04-14 20:15:40 +00:00
sched_getaffinity.c Update. 2004-03-29 22:04:09 +00:00
sched_setaffinity.c Update. 2004-06-18 04:29:42 +00:00
segfault.c Update. 2002-11-03 08:52:36 +00:00
semctl.c Update. 2004-03-10 19:28:58 +00:00
semget.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
semop.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
semtimedop.c Update. 2003-05-01 21:41:01 +00:00
send.S Update. 2002-12-15 10:26:23 +00:00
sendmsg.S Update. 2002-12-15 10:26:23 +00:00
sendto.S Update. 2002-12-15 10:26:23 +00:00
setegid.c Update. 2004-09-20 00:16:11 +00:00
seteuid.c Update. 2004-09-20 00:16:11 +00:00
setgid.c Update. 2004-09-20 00:16:11 +00:00
sethostid.c Document new files for Linux i386/ELF port. 1995-09-08 17:02:25 +00:00
setipv4sourcefilter.c Update. 2004-08-07 18:22:26 +00:00
setregid.c Update. 2004-09-20 00:16:11 +00:00
setresgid.c Update. 2004-09-20 00:16:11 +00:00
setresuid.c Update. 2004-09-20 00:16:11 +00:00
setreuid.c Update. 2004-09-20 00:16:11 +00:00
setsockopt.S Update. 2002-05-15 00:22:23 +00:00
setsourcefilter.c Update. 2004-08-07 18:22:26 +00:00
setuid.c Update. 2004-09-20 00:16:11 +00:00
shm_open.c Update. 2004-04-20 18:58:56 +00:00
shm_unlink.c Update. 2000-04-12 04:59:33 +00:00
shmat.c * sysdeps/powerpc/elf/libc-start.c [! SHARED]: Call 2002-09-03 02:45:12 +00:00
shmctl.c Update. 2004-03-10 19:28:58 +00:00
shmdt.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
shmget.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
shutdown.S update from main archive 970225 1997-02-25 05:18:05 +00:00
sigaction.c Update. 2003-09-03 03:22:23 +00:00
siglist.h Update. 2003-04-01 06:20:33 +00:00
signal.c update from main archive 961229 1996-12-30 01:47:46 +00:00
sigpending.c Update. 2003-09-03 03:22:23 +00:00
sigprocmask.c Update. 2004-09-28 22:44:12 +00:00
sigqueue.c Update. 2003-09-03 03:22:23 +00:00
sigreturn.c Update. 1997-12-14 22:24:57 +00:00
sigset-cvt-mask.h 2002-09-04 Bruno Haible <bruno@clisp.org> 2002-09-05 18:52:18 +00:00
sigstack.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
sigsuspend.c Update. 2003-09-03 03:22:23 +00:00
sigtimedwait.c Update. 2004-09-28 22:44:12 +00:00
sigwait.c Update. 2004-09-28 22:44:12 +00:00
sigwaitinfo.c Update. 2004-09-28 22:44:12 +00:00
sizes.h Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
sleep.c Update. 2003-07-11 22:50:16 +00:00
socketcall.h Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
socketpair.S update from main archive 970225 1997-02-25 05:18:05 +00:00
speed.c 2003-09-08 Roland McGrath <roland@frob.com> 2003-09-09 06:44:48 +00:00
statfs64.c Update. 2004-04-03 07:50:20 +00:00
statvfs.c Update. 2003-09-17 00:49:19 +00:00
statvfs64.c Update. 2004-04-03 07:50:20 +00:00
syscalls.list Update. 2004-04-13 02:15:43 +00:00
sysconf.c Update. 2004-06-01 18:53:04 +00:00
sysctl.c Update. 2003-09-03 03:22:23 +00:00
system.c Update. 2003-04-17 16:34:08 +00:00
tcdrain.c Update. 2002-12-15 10:26:23 +00:00
tcflow.c Document new files for Linux i386/ELF port. 1995-09-08 17:02:25 +00:00
tcflush.c Document new files for Linux i386/ELF port. 1995-09-08 17:02:25 +00:00
tcgetattr.c 2003-09-10 Roland McGrath <roland@redhat.com> 2003-09-10 19:16:07 +00:00
tcgetpgrp.c Mon Mar 18 13:20:46 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> 1996-03-18 18:32:47 +00:00
tcsetattr.c 2003-09-10 Roland McGrath <roland@redhat.com> 2003-09-10 19:16:07 +00:00
tcsetpgrp.c Mon Mar 18 13:20:46 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> 1996-03-18 18:32:47 +00:00
termio.h * sysdeps/unix/sysv/linux/Makefile [$(subdir)=termios] (headers): 1996-05-27 20:16:19 +00:00
testrtsig.h Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
truncate64.c Update. 2004-06-30 07:43:11 +00:00
ttyname.c * include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn): 2002-11-01 20:44:15 +00:00
ttyname_r.c Update. 2003-02-25 02:46:33 +00:00
ualarm.c Document new files for Linux i386/ELF port. 1995-09-08 17:02:25 +00:00
ulimit.c Update. 2001-09-25 03:04:41 +00:00
umount.S Update. 1998-08-20 19:16:48 +00:00
umount2.S Update. 1998-08-20 19:16:48 +00:00
unlockpt.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
updwtmp.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
usleep.c Update. 2003-06-15 21:22:26 +00:00
ustat.c Update. 2003-09-27 17:02:41 +00:00
utimes.c Update. 2003-09-17 09:18:37 +00:00
utmp_file.c Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
vfork.c Update. 1999-01-20 11:36:34 +00:00
wait.c Update. 2003-06-16 19:39:00 +00:00
wait3.c Mon Mar 18 22:54:32 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 1996-03-21 00:37:31 +00:00
waitid.c 2004-09-27 Roland McGrath <roland@redhat.com> 2004-09-28 00:42:52 +00:00
waitpid.c Update. 2003-05-13 23:57:02 +00:00
writev.c Update. 2003-09-03 03:22:23 +00:00
xmknod.c Update. 2003-09-27 17:02:41 +00:00
xstat.c Update. 2003-06-28 08:11:28 +00:00
xstat64.c Update. 2003-09-03 03:22:23 +00:00
xstatconv.c Update. 2003-06-16 17:18:06 +00:00
xstatconv.h Update. 2003-06-28 08:11:28 +00:00