about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start_cleanup): Mark as ↵Mark Kettenis2000-12-062-0/+6
| | | | | | | | | internal_function. 2000-12-06 Mark Kettenis <kettenis@gnu.org> * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start_cleanup): Mark as internal_function.
* Update.Ulrich Drepper2000-12-063-2/+14
| | | | | | 2000-12-05 Ulrich Drepper <drepper@redhat.com> * sysdeps/alpha/elf/start.S (__data_start): Define.
* Update.Ulrich Drepper2000-12-062-1/+5
| | | | | | 2000-12-05 H.J. Lu <hjl@gnu.org> * nss/getXXent_r.c (setup): Change the return type to int.
* Update.Ulrich Drepper2000-12-066-5/+148
| | | | | | | | | | | | | | | | | | | | | 2000-12-05 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/aix/Makefile [$(subdir)==misc] (sysdep_routines): Add restf and savef. * sysdeps/unix/sysv/aix/restf.c: New file. * sysdeps/unix/sysv/aix/savef.c: New file. Patches by Michael Keezer <mkeezer@redhat.com>. * sysdeps/unix/opendir.c (__opendir): Don't use o_directory_works if O_DIRECTORY is not defined. Patch by Michael Keezer <mkeezer@redhat.com>. * include/libc-symbols.h (C_SYMBOL_DOT_NAME): Define. Patch by Michael Keezer <mkeezer@redhat.com>. * locale/programs/linereader.c (get_toplvl_escape): Recognize more than 4 bytes in escape sequence. Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
* (get_toplvl_escape): Recognize more than 4 bytes in escape sequence.Ulrich Drepper2000-12-061-1/+2
|
* Update.Andreas Jaeger2000-12-051-1/+1
| | | | Patches by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
* Patches by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.Andreas Jaeger2000-12-053-7/+4
|
* Update.Andreas Jaeger2000-12-053-4/+12
| | | | | * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Don't set mips2.
* Update.Andreas Jaeger2000-12-054-1228/+45
| | | | | | | | | * sysdeps/unix/sysv/linux/mips/sysdep.h: New file. * sysdeps/unix/sysv/linux/mips/sys/syscall.h: Removed. * sysdeps/unix/mips/sysdep.h: Use SYS_ify. Patches by "Maciej W. Rozycki" <macro@ds2.pg.gda.pl>.
* Update.Andreas Jaeger2000-12-0518-39/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-12-05 Andreas Jaeger <aj@suse.de> * elf/dl-misc.c (_dl_sysdep_read_whole_file): Mark as internal_function. * sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Likewise. * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start_cleanup): Likewise. * sysdeps/generic/dl-cache.c: Remove declaration of _dl_sysdep_read_whole_file. * elf/dl-load.c (_dl_map_object): Remove declaration of _dl_load_cache_lookup. * sysdeps/generic/ldsodefs.h: Add declarations of _dl_load_cache_lookup, _dl_unload_cache, _dl_sysdep_read_whole_file, _dl_sysdep_start and _dl_sysdep_start_cleanup. * elf/rtld.c: Remove prototypes that are defined in ldsodefs.h now. * elf/dl-misc.c: Include <ldsodefs.h> to get prototypes. * sysdeps/generic/dl-environ.c: Likewise. * stdio-common/printf_fp.c: Include <gmp.h> instead of <stdlib/gmp.h>. * math/atest-exp.c: Likewise. * math/atest-exp2.c: Likewise. * math/atest-sincos.c: Likewise. * stdio-common/_itoa.c: Likewise. * stdio-common/_itowa.c: Likewise. * include/gmp.h: New file with internal prototypes. * sysdeps/generic/longjmp.c: Move _longjmp_unwind declaration from here to... * include/setjmp.h: ...here. * locale/Makefile (routines): Remove codeset_name since it's not needed anywhere. * locale/codeset_name.c: Removed.
* Removed, it's not needed anymore.Andreas Jaeger2000-12-051-31/+0
|
* Update.Ulrich Drepper2000-12-051-1/+5
| | | | | | | | 2000-12-05 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/aix/sys/param.h: Define MAXHOSTNAMELEN here. * sysdeps/unix/sysv/linux/s390/mmap64.S: Use mmap if mmap2 isn't
* Define MAXHOSTNAMELEN.Ulrich Drepper2000-12-051-0/+27
|
* Update.Andreas Jaeger2000-12-052-3/+4
| | | | | | 2000-12-05 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/sys/param.h: Revert last patch.
* Update.Andreas Jaeger2000-12-052-48/+53
| | | | | | | 2000-12-05 Martin Schwidefsky <schwidefsky@de.ibm.com> * sysdeps/unix/sysv/linux/s390/mmap64.S: Use mmap if mmap2 isn't available.
* Update.Andreas Jaeger2000-12-057-16/+37
| | | | | | | | | | | | | | | | | | | | | | 2000-12-05 Andreas Jaeger <aj@suse.de> * nss/test-netdb.c: Mark local functions as static to avoid warnings. (main): Use return to silence warning. * stdlib/test-canon.c (check_path): Mark as static to avoid warning. * stdio-common/test-popen.c: Mark local functions as static to avoid warnings. (main): Use return to silence warning. * stdlib/testsort.c (compare): Mark as static to avoid warning. * assert/test-assert.c: Mark local functions as static to avoid warnings. * assert/test-assert-perr.c: Likewise. * math/libm-test.inc (main): Use return to silence warnings.
* Mark local functions as static to avoid warnings. (main): Use return to ↵Andreas Jaeger2000-12-051-16/+14
| | | | silence warning.
* Add HAVE_ASM_GLOBAL_DOT_NAME.Ulrich Drepper2000-12-051-0/+3
|
* Update.Ulrich Drepper2000-12-052-2/+4
| | | | * math/fenv.h: Fix typo in comment.
* Update.Ulrich Drepper2000-12-052-0/+46
| | | | | * math/test-misc.c (main): Add a few more over and underflow tests for scalb.
* Update.Ulrich Drepper2000-12-058-8/+76
| | | | | | | | | | | | | * sysdeps/i386/fpu/e_scalb.S: Handle NaN as first parameter correctly. * sysdeps/i386/fpu/e_scalbf.S: Likewise. * sysdeps/i386/fpu/e_scalbl.S: Likewise. * math/w_scalb.c: Don't use matherr except in SVID mode. * math/w_scalbf.c: Likewise. * math/w_scalbl.c: Likewise. * math/test-misc.c: Add test for NaN and scalbl. Reported by Fred J. Tydeman <tydeman@tybor.com>. 2000-12-04 Ulrich Drepper <drepper@redhat.com>
* Update.Ulrich Drepper2000-12-0518-87/+213
| | | | | | | | | | | | | | | | | | | | | | | | 2000-12-04 Ulrich Drepper <drepper@redhat.com> * configure.in: Define HAVE_ASM_GLOBAL_DOT_NAME for AIX. * config.h.in: Add HAVE_ASM_GLOBAL_DOT_NAME. * include/libc-symbols.h (strong_alias): Define special version for HAVE_ASM_GLOBAL_DOT_NAME. (weak_alias): Likewise. * sysdeps/powerpc/bsd-setjmp.S: Use strong_alias not .set. * sysdeps/unix/sysv/aix/Makefile [$(subdir)==login] (sysdep_routines): Add setutxent, getutxent, endutxent, getutxid, getutxline, pututxline, and utmpxname. * sysdeps/unix/sysv/aix/fchdir.c: Define __fchdir. * sysdeps/unix/sysv/aix/lseek.c: Define __libc_lseek alias. * sysdeps/unix/sysv/aix/open.c: Define __libc_open alias. * sysdeps/unix/sysv/aix/pread.c: Define pread alias. * sysdeps/unix/sysv/aix/pread64.c: Define pread64 alias. * sysdeps/unix/sysv/aix/sysdep.h (JUMPTARGET): Use C_TEXT. * sysdeps/unix/sysv/aix/bits/types.h: Define __clockid_t and __timer_t. * sysdeps/unix/sysv/aix/bits/utmp.h: Cleanup. Add comments. * sysdeps/unix/sysv/linux/sys/param.h (MAXHOSTNAMELEN): Define. Patches by Michael Keezer <mkeezer@redhat.com>.
* Update.Ulrich Drepper2000-12-054-36/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-12-04 H.J. Lu <hjl@gnu.org> * configure.in: Change --with-oldest-abi=ABI to --enable-oldest-abi=ABI. 2000-12-02 Bruno Haible <haible@clisp.cons.org> * stdio-common/perror.c (perror): If stderr is wide-oriented, use fwprintf instead of fprintf. 2000-12-01 H.J. Lu <hjl@gnu.org> * nss/getXXbyYY_r.c: Fix verioned symbol handling. * nss/getXXent_r.c: Likewise. * sysdeps/unix/sysv/linux/i386/chown.c: Likewise. 2000-11-30 H.J. Lu <hjl@gnu.org> * scripts/abi-versions.awk (oldest_abi): New variable. Handle the oldest ABI supported. * Makerules ($(common-objpfx)abi-versions.h): Set oldest_abi for scripts/abi-versions.awk. * configure.in: Add --with-oldest-abi=ABI. * configure: Rebuild. * config.make.in (oldest-abi): New. * config.h.in (GLIBC_OLDEST_ABI): New. * csu/version.c (banner): Support GLIBC_OLDEST_ABI.
* Update.Ulrich Drepper2000-12-0415-88/+32
| | | | | | | | | | | | | | | | | | | | | 2000-12-04 Ulrich Drepper <drepper@redhat.com> * sysdeps/alpha/fpu/bits/mathdef.h: Remove FLT_EVAL_METHOD and DECIMAL_DIG definitions. * sysdeps/arm/fpu/bits/mathdef.h: Likewise * sysdeps/generic/bits/mathdef.h: Likewise * sysdeps/i386/fpu/bits/mathdef.h: Likewise * sysdeps/ia64/fpu/bits/mathdef.h: Likewise * sysdeps/m68k/fpu/bits/mathdef.h: Likewise * sysdeps/powerpc/fpu/bits/mathdef.h: Likewise * sysdeps/sparc/fpu/bits/mathdef.h: Likewise * sysdeps/sh/sh4/fpu/bits/mathdef.h: Likewise * math/test-fenv.c (main): Use return instead of exit to avoid warning. * math/atest-exp.c: Mark local functions as static to avoid warnings. * math/atest-exp2.c: Likewise. * math/atest-sincos.c: Likewise.
* Update.Ulrich Drepper2000-12-042-1/+4
| | | | | * sysdeps/i386/fpu/bits/mathdef.h (DECIMAL_DIG): Correct value. Reported by Fred J. Tydeman <tydeman@tybor.com>.
* Update.Ulrich Drepper2000-12-042-6/+28
| | | | | | | | | * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Hopefully fix the handling of denormalized numbers. * math/test-misc.c (main): Test for fpclassify and pseudo denormal numbers on x86. * sysdeps/i386/fpu/fpclassifyl.c: New file.
* Update.Ulrich Drepper2000-12-042-0/+20
| | | | * math/test-misc.c (main): Test for pseudo denormal numbers on x86.
* Update.Ulrich Drepper2000-12-042-0/+44
| | | | * sysdeps/i386/fpu/fpclassify.c: New file.
* Update.Ulrich Drepper2000-12-042-3/+19
| | | | | | | * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Handle the pseudo denormal representation of LDBL_MIN. * configure.in: Correct test for pserver CVS access.
* Update.Ulrich Drepper2000-12-049-12/+20
| | | | | | | | | | * iconvdata/SJIS.irreversible: Remove unnecessary entries. * iconvdata/EUC-JP.irreversible: Remove unnecessary entries. * iconvdata/sjis.c: Enable round-trip mapping of backslash and tilde. * iconvdata/jis0208.c: Likewise. * iconvdata/jis0212.c: Likewise. Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
* Update.Ulrich Drepper2000-12-032-7/+63
| | | | | * math/test-misc.c (main): More tests for frexp and some for fpclassify and isnormal.
* Update.Ulrich Drepper2000-12-032-2/+6
| | | | | | * sysdeps/ieee754/flt-32/s_fpclassifyf.c (__fpclassifyf): Correct test for subnormal. Reported by Fred J. Tydeman <tydeman@tybor.com>.
* Update.Ulrich Drepper2000-12-033-0/+63
| | | | | | | | 2000-12-03 Ulrich Drepper <drepper@redhat.com> * math/test-misc.c (main): Add tests for frexp. Reported by Fred J. Tydeman <tydeman@tybor.com>. * sysdeps/i386/fpu/s_frexpl.S: Don't overflow during the computation.
* Update.Ulrich Drepper2000-12-022-2/+7
| | | | | | | 2000-12-02 H.J. Lu <hjl@gnu.org> * locale/lc-time.c (_nl_init_era_entries): Pass L'\0' instead of '\0' to wcschr.
* Update.Ulrich Drepper2000-12-024-0/+7
| | | | | | * sysdeps/i386/fpu/s_frexp.S: Add missing fwait. * sysdeps/i386/fpu/s_frexpf.S: Likewise. * sysdeps/i386/fpu/s_frexpl.S: Likewise.
* Update.Ulrich Drepper2000-12-022-8/+13
| | | | | | | 2000-12-02 Ulrich Drepper <drepper@redhat.com> * sysdeps/generic/glob.c: Adjust types of several variables to avoid warnings.
* Update.Ulrich Drepper2000-12-021-1/+5
| | | | | | | | 2000-12-01 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/shm_open.c: Remove incorrect comment. * configure.in: Correct test for pserver CVS access.cc
* Remove incorrect comment.Ulrich Drepper2000-12-021-5/+1
|
* * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS_1): New macro.Roland McGrath2000-12-011-0/+6
| | | | | (_HURD_HANDLE_IOCTLS, _HURD_HANDLE_IOCTL): Redefine using it, so as to allow multiple instances using the same function name in one file.
* 2000-11-30 Roland McGrath <roland@frob.com>Roland McGrath2000-12-011-5/+8
| | | | | | * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS_1): New macro. (_HURD_HANDLE_IOCTLS, _HURD_HANDLE_IOCTL): Redefine using it, so as to allow multiple instances using the same function name in one file.
* Regenerated: autoconf configure.inUlrich Drepper2000-12-0110-130/+164
|
* Update.Ulrich Drepper2000-12-014-117/+126
| | | | | | 2000-12-01 Ulrich Drepper <drepper@redhat.com> * configure.in: Correct test for pserver CVS access.
* Update.Ulrich Drepper2000-12-012-4/+4
| | | | | | 2000-11-28 H.J. Lu <hjl@gnu.org> * libio/libio.h: Remove extra "#if ... #endif".
* Update.Ulrich Drepper2000-12-015-7/+48
| | | | | | | | | | | | | | | 2000-11-29 H.J. Lu <hjl@gnu.org> * stdio-common/vfscanf.c (ORIENT): Swap the COMPILE_WSCANF case. 2000-11-30 Jakub Jelinek <jakub@redhat.com> * locale/setlocale.c (setname): Free for all categories, not just LC_ALL. (setlocale): Store a copy of string passed by user, not the string itself. * sysdeps/unix/sysv/linux/hppa/brk.c (__brk): Remove unused variable.
* Test case for handling string passed to setlocale.Ulrich Drepper2000-12-011-0/+25
|
* * sysdeps/mach/hurd/defs.c (init_stdio): Put this on __libc_subinitRoland McGrath2000-11-301-0/+6
| | | | | rather than _hurd_fd_subinit, so it happens after it's safe to use libc facilities like malloc.
* 2000-11-30 Roland McGrath <roland@frob.com>Roland McGrath2000-11-301-2/+5
| | | | | | * sysdeps/mach/hurd/defs.c (init_stdio): Put this on __libc_subinit rather than _hurd_fd_subinit, so it happens after it's safe to use libc facilities like malloc.
* Revert accidential checkin.Andreas Jaeger2000-11-301-1/+1
|
* Update.Andreas Jaeger2000-11-304-3/+10
| | | | | | | | 2000-11-28 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/getdents.c: Add _syscall_getdents64 declaration, adjust declaration of __syscall_getdents to match kernel.
* Update.Andreas Jaeger2000-11-302-1/+6
| | | | | | 2000-11-29 H.J. Lu <hjl@gnu.org> * sysdeps/generic/readelflib.c (check_ptr): Undefine it first.