diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-08-28 20:33:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-08-28 20:33:49 +0000 |
commit | 3586b2b60b6d92ce3cc3d497e84ae1e5cfcf81e4 (patch) | |
tree | 4d2932e03d37e5410698f2415257c2065a0959de /debug/Makefile | |
parent | cba5c7c07388e2a8251c470c279797dc303d4277 (diff) | |
download | glibc-3586b2b60b6d92ce3cc3d497e84ae1e5cfcf81e4.zip glibc-3586b2b60b6d92ce3cc3d497e84ae1e5cfcf81e4.tar.gz glibc-3586b2b60b6d92ce3cc3d497e84ae1e5cfcf81e4.tar.bz2 |
* libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
prototypes.
(__fread_alias, __fread_unlocked_alias): New aliases.
(fread): New extern inline.
(fread_unlocked): Likewise. Undef macro before definition of
the inline function.
* debug/Makefile (routines): Add fread_chk and fread_u_chk.
(CFLAGS-fread_chk.c, CFLAGS-fread_u_chk.c): Add.
* debug/Versions (libc): Export __fread_chk@@GLIBC_2.7
and __fread_unlocked_chk@@GLIBC_2.7.
* debug/fread_chk.c: New file.
* debug/fread_u_chk.c: New file.
* debug/tst-chk1.c (do_test): Add fread and fread_unlocked tests.
Diffstat (limited to 'debug/Makefile')
-rw-r--r-- | debug/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debug/Makefile b/debug/Makefile index c6cc588..18905c3 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -32,7 +32,7 @@ routines = backtrace backtracesyms backtracesymsfd noophooks \ gets_chk chk_fail readonly-area fgets_chk fgets_u_chk \ read_chk pread_chk pread64_chk recv_chk recvfrom_chk \ readlink_chk readlinkat_chk getwd_chk getcwd_chk \ - realpath_chk ptsname_r_chk \ + realpath_chk ptsname_r_chk fread_chk fread_u_chk \ wctomb_chk wcscpy_chk wmemcpy_chk wmemmove_chk wmempcpy_chk \ wcpcpy_chk wcsncpy_chk wcscat_chk wcsncat_chk wmemset_chk \ wcpncpy_chk \ @@ -58,6 +58,8 @@ CFLAGS-vfprintf_chk.c = -D_IO_MTSAFE_IO $(exceptions) CFLAGS-gets_chk.c = -D_IO_MTSAFE_IO $(exceptions) CFLAGS-fgets_chk.c = -D_IO_MTSAFE_IO $(exceptions) CFLAGS-fgets_u_chk.c = -D_IO_MTSAFE_IO $(exceptions) +CFLAGS-fread_chk.c = -D_IO_MTSAFE_IO $(exceptions) +CFLAGS-fread_u_chk.c = -D_IO_MTSAFE_IO $(exceptions) CFLAGS-swprintf_chk.c = -D_IO_MTSAFE_IO CFLAGS-vswprintf_chk.c = -D_IO_MTSAFE_IO CFLAGS-wprintf_chk.c = -D_IO_MTSAFE_IO $(exceptions) |