2002-08-31 Roland McGrath <roland@redhat.com>
[glibc.git] / ChangeLog
blob59306d7972ba991ef2704b70f3c1181bf6d9ac34
1 2002-08-31  Roland McGrath  <roland@redhat.com>
3         * locale/duplocale.c (__duplocale): Free names from the right array.
5         * locale/uselocale.c (__uselocale): Return previous locale when
6         setting a new one.
8         * locale/newlocale.c: Commit changes from 2002-08-30
9         batch where I failed to commit this file:
10         (__newlocale): Fill in __names array.
12 2002-08-31  Ulrich Drepper  <drepper@redhat.com>
14         * sysdeps/gnu/Makefile: Only depend on Versions.v.i for
15         errlist-compat.c if build-shared==yes.
17 2002-08-31  Andreas Jaeger  <aj@suse.de>
19         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup): Declare
20         external functions with hidden attribute.
21         (elf_machine_rela): Optimize.
23         * sysdeps/x86_64/memset.S: New file.
24         * sysdeps/x86_64/bzero.S: New file.
25         * sysdeps/x86_64/stpcpy.S: New file.
26         * sysdeps/x86_64/strcat.S: New file.
27         * sysdeps/x86_64/strchr.S: New file.
28         * sysdeps/x86_64/strcpy.S: New file.
29         * sysdeps/x86_64/strcspn.S: New file.
30         * sysdeps/x86_64/strlen.S: New file.
31         * sysdeps/x86_64/strpbrk.S: New file.
32         * sysdeps/x86_64/strspn.S: New file.
33         * sysdeps/x86_64/strcmp.S: New file.
34         * sysdeps/x86_64/strtok_r.S: New file.
35         * sysdeps/x86_64/strtok.S: New file.
36         * sysdeps/x86_64/memcpy.S: New file.
37         * sysdeps/x86_64/mempcpy.S: New file.
39         * sysdeps/x86_64/fpu/s_copysign.S: Fix algorithm.
41         * sysdeps/x86_64/fpu/libm-test-ulps: Add ulps for double tests.
43 2002-08-31  Ulrich Drepper  <drepper@redhat.com>
45         * stdio-common/Makefile (generated): Add errlist-compat.c.
47         * locale/Makefile (extra-objs): Add $(localedef-aux:=.o).
49         * locale/localeinfo.h: Pretty printing.
51         * stdio-common/vfprintf.c (vfprintf): Remove duplicate ifs in
52         form_number handling.
54 2002-08-31  Andreas Jaeger  <aj@suse.de>
56         * sysdeps/x86_64/fpu/libm-test-ulps: Add ulps for float and long
57         double tests.
59         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_routines): Add
60         __start_context.
62         * sysdeps/unix/sysv/linux/x86_64/__start_context.S: New file.
64         * sysdeps/unix/sysv/linux/x86_64/makecontext.c: New file.
66         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Add defines for
67         registers used for passing args.
69         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Save and restore
70         all needed registers.
72         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Restore all
73         registers.
75         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Save all needed
76         registers.
78 2002-08-30  Ulrich Drepper  <drepper@redhat.com>
80         * elf/dynamic-link.h (elf_get_dynamic_info): Mark with
81         always_inline attribute.
83 2002-08-30  Roland McGrath  <roland@redhat.com>
85         * stdlib/tst-setcontext.c (main): If makecontext does nothing,
86         presume it's the stub and bail without error.
88         * nss/getnssent_r.c (__nss_getent_r): Return ENOENT if status is
89         neither SUCCESS nor TRYAGAIN (see 2002-08-25 change [PR libc/4259]).
91         * nss/getnssent_r.c (__nss_getent_r): Set *H_ERRNOP, not global one.
93         * sysdeps/x86_64/hp-timing.h (HP_TIMING_NOW, HP_TIMING_ACCUM): New
94         macros replace the i686 versions for 64-bit mode.
96         * locale/duplocale.c: Include <string.h>.
98         * intl/dcigettext.c (DCIGETTEXT) [_LIBC]: Check for bogus CATEGORY.
99         [_LIBC] (category_to_name): Don't define the function.  Instead
100         define a macro using _nl_category_names.
102         * locale/xlocale.h (struct __locale_struct): New member `__names'.
103         * locale/xlocale.c (_nl_C_locobj): Update initializer.
104         * locale/global-locale.c (_nl_global_locale): Likewise.
105         * locale/duplocale.c (__duplocale): strdup __names elements.
106         * locale/freelocale.c (__freelocale): Free __names elements.
107         * locale/localename.c (_nl_current_names): Variable removed.
108         (__current_locale_name): Use _NL_CURRENT_LOCALE->__names instead.
109         * locale/localeinfo.h (_nl_current_names): Removed decl.
110         * locale/setlocale.c: Use _nl_global_locale->__names in place of
111         _nl_current_names throughout.
113         * locale/setlocale.c (setlocale): strdup -> __strdup (not ISO C).
115         * sysdeps/gnu/errlist-compat.awk: Emit link_warnings for sys_errlist
116         and sys_nerr in the output file.
118         * sunrpc/Makefile (rpcgen-cmd): Pass CPP in rpcgen's environment.
119         * scripts/cpp: Just use the environment variable.
121         * libio/tst-mmap-setvbuf.c (main): Use 'm' fopen flag.
122         * libio/tst-mmap-offend.c (do_test): Likewise.
123         * libio/tst-mmap-fflushsync.c (do_test): Likewise.
124         * libio/tst-mmap-eofsync.c (do_test): Likewise.
125         * libio/tst-mmap2-eofsync.c (do_test): Likewise.
127         * locale/localename.c: If the current locale is the global locale, use
128         _nl_current_names; otherwise use the locale object.
130 2002-08-29  Ulrich Drepper  <drepper@redhat.com>
132         * libio/fileops.c (_IO_new_file_fopen): Recognize new mode specifier
133         'm' to enable mmap I/O.
134         * libio/libio.h (_IO_FILE): Rename _blksize field to _flags2.  The
135         former wasn't used (anymore?).
136         (_IO_FLAGS2_MMAP): New define.
137         * libio/genops.c (_IO_no_init): Initialize _flags2 field.
138         * libio/iofopen.c (__fopen_maybe_mmap): Use mmap callbacks only if
139         _IO_FLAGS2_MMAP bit is set.
140         * libio/iofdopen.c (_IO_new_fdopen): Recognize 'm' mode specifier.
141         Enable mmap-using mode only if 'm' was set.
143 2002-08-29  Roland McGrath  <roland@frob.com>
145         * sysdeps/mach/hurd/bits/local_lim.h (NAME_MAX): New macro.
147         * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup: doinit):
148         Change argument type from int to intptr_t.
150         * locale/global-locale.c (__libc_tsd_LOCALE_data): Conditionalize the
151         initializer on [! _HURD_THREADVAR_H] (bad kludge).
152         * sysdeps/mach/hurd/i386/init-first.c (init): Initialize
153         _HURD_THREADVAR_LOCALE slot to &_nl_global_locale.
154         * hurd/hurdsig.c (_hurdsig_init): Likewise.  Zero other slots.
156         * sysdeps/mach/_strerror.c (__strerror_r): Add libc_hidden_def.
158         * sysdeps/mach/hurd/pwrite64.c: No libc_hidden_def (__libc_pwrite64).
160         * sysdeps/mach/hurd/dl-sysdep.c (__GI_abort): Define alias for abort.
162         * include/assert.h (__assert_perror_fail): Declare it, do hidden_proto.
163         * assert/assert-perr.c: Add libc_hidden_def.
164         * elf/dl-minimal.c [! NDEBUG] (__assert_perror_fail): New function.
166         * sysdeps/gnu/errlist-compat.awk: Don't fail if there are no versions
167         found at all.
168         * sysdeps/gnu/Versions: File removed.  Moved all #errlist-compat
169         sys_errlist stuff to ...
170         * sysdeps/unix/sysv/linux/Versions: ... here.
172         * mach/mach.h: Include <features.h>.
174 2002-08-29  Roland McGrath  <roland@redhat.com>
176         * elf/dl-runtime.c (IN_DL_RUNTIME): Define this macro first thing.
177         * sysdeps/i386/dl-machine.h: Only declare fixup, profile_fixup and
178         define ELF_MACHINE_RUNTIME_TRAMPOLINE under #ifdef IN_DL_RUNTIME.
180         * sysdeps/generic/readelflib.c (process_elf_file): Fix typo.
182         * iconv/gconv_int.h: Include <stdlib.h> for alloca decl.
183         (norm_add_slashes): alloca -> __alloca
185 2002-08-29  Jakub Jelinek  <jakub@redhat.com>
187         * stdio-common/vfprintf.c (vfprintf): Add builtin_expect for
188         string_malloced, it is unlikely to be set.
189         Only call free with non-NULL workspace.
190         * sysdeps/sparc/sparc32/sparcv9/Makefile (sysdep-CFLAGS): Use
191         -mcpu=ultrasparc, not only tune for it.
192         (ASFLAGS*): Set unconditionally.
194         * sysdeps/generic/readelflib.c (process_elf_file): Make LOADADDR
195         ElfW(Addr).  Don't mask upper 32-bits and lower 12 bits off from
196         p_vaddr/p_offset when computing LOADADDR.
198 2002-08-29  Ulrich Drepper  <drepper@redhat.com>
200         * version.h (VERSION): Bump to 2.2.92.
202         * time/Makefile (tst-ftime_l-ENV): New variable.
204         * iconvdata/ibm870.c: All bytes are now used, no holes anymore.
206         * localedata/charmaps/IBM870: Add correct mapping for <U017E>,
207         <U017A>, <U017D> and <U0179>. Add missing mappings.
208         Patch by Antonin Kopecky <akopecky@tajmac-zps.cz>.
210         * gmon/sys/gmon.h (ARCDENSITY): Bump to 3.
211         Define ARCINDEX.  Bump MAXARCS to 1 << 20.
212         (struct tostruct): Use ACRINDEX as type for link field.
213         (statuc gmonparam): Likewise for froms.
214         * gmon/gmon.c (__monstartup): Use currect cast for assignments to
215         kcount and froms.
216         (write_call_graph): Use correct type for from_index and to_index.
217         * gmon/mcount.c: Use correct types for frompcindex and toindex
218         variables.
219         Patches by Dan Kegel <dank@kegel.com>.
221         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix code to determine
222         canonical name.
224         * time/strptime.c (ISSPACE): New #define.  Use isspace or
225         __isspace_l.  Replace calls to isspace.
226         (match_string): Define variant for USE_IN_EXTENDED_LOCALE_MODEL.
228 2002-08-29  Roland McGrath  <roland@redhat.com>
230         * string/tst-strxfrm.c: Remove __ from function names.
232 2002-08-28  Ulrich Drepper  <drepper@redhat.com>
234         * include/wchar.h: Declare __mbsrtowcs_l.
235         * wcsmbs/Makefile (routines): Add mbsrtowcs_l.
236         * wcsmbs/mbsrtowcs.c: Add support for compilation with
237         USE_IN_EXTENDED_LOCALE_MODEL.
238         * wcsmbs/mbsrtowcs_l: New file.
239         * wcsmbs/wcsmbsload.c (__wcsmbs_to_wc): Renamed from to_wc.  Don't
240         define as static.  Change all uses.
241         (__wcsmbs_getfct): Renamed from getfct.  Don't define as static.
242         Change all callers.
243         * wcsmbs/wcsmbsload.h: Declare __wcsmbs_to_wc and __wcsmbs_getfct.
244         * time/strftime.c: When translating for the extended locale model
245         use the _l functions.
246         * time/Makefile (tests): Add tst-ftime_l.
247         * time/tst-ftime_l.c: New file.
249 2002-08-28  Roland McGrath  <roland@redhat.com>
251         * locale/findlocale.c [NL_CURRENT_INDIRECT] (_nl_C): New variable.
252         * locale/setlocale.c (setlocale) [NL_CURRENT_INDIRECT]: Null return
253         from _nl_find_locale ok if for _nl_C_name.
255         * locale/nl_langinfo.c [NL_CURRENT_INDIRECT]: Use a categories.def
256         iterator to refer to each category's _nl_current_LC_FOO symbol, so
257         we know they are all linked in.
259         * NEWS: Added 2.2.6 text from 2.2 branch version.
261         * time/strptime.c (strptime_internal): Remove spurious const.
263         * locale/lc-time.c (_nl_init_era_entries, _nl_get_era_entry,
264         _nl_select_era_entry): Moved to ...
265         * time/era.c: ... here, new file.
266         (_nl_init_era_entries, _nl_get_era_entry, _nl_select_era_entry):
267         Add internal_function to definitions.  Take an additional argument
268         giving the `struct locale_data *' to use.
269         * locale/lc-time.c (_get_alt_digit, _nl_get_walt_digit,
270         _nl_parse_alt_digit): Moved to ...
271         * time/alt_digit.c: ... here, new file.
272         * time/lc-time-cleanup.c: New file.
273         * locale/lc-time.c (_nl_postload_time, free_mem): Functions removed.
274         * locale/localeinfo.h (_nl_postload_time): Remove decl.
275         (_nl_cleanup_time): Declare it.
276         (_nl_get_era_entry, _nl_select_era_entry): Update decls.
277         (_get_alt_digit, _nl_get_walt_digit, _nl_parse_alt_digit): Likewise.
278         * time/Makefile (aux): New variable: era, alt_digit, lc-time-cleanup.
279         * time/strftime.c: Pass locale data to helper functions.
280         * time/strptime.c: Likewise.
282         * locale/localeinfo.h (struct locale_data): New member `private'
283         * locale/loadlocale.c (_nl_intern_locale_data): Initialize it.
284         (_nl_unload_locale): Call LOCALE->private.cleanup if it is set.
285         * locale/C-collate.c: Update initializer.
286         * locale/C-identification.c: Likewise.
287         * locale/C-measurement.c: Likewise.
288         * locale/C-telephone.c: Likewise.
289         * locale/C-address.c: Likewise.
290         * locale/C-name.c: Likewise.
291         * locale/C-paper.c: Likewise.
292         * locale/C-time.c: Likewise.
293         * locale/C-numeric.c: Likewise.
294         * locale/C-monetary.c: Likewise.
295         * locale/C-messages.c : Likewise.
296         * locale/C-ctype.c: Likewise.
298         * time/strptime.c [USE_IN_EXTENDED_LOCALE_MODEL] (_NL_CURRENT_WORD):
299         Redefine this too.
301 2002-08-28  Jakub Jelinek  <jakub@redhat.com>
303         * sysdeps/generic/ldsodefs.h (__rtld_global_attribute__): Define.
304         (_rtld_global): Use it.
306         * sysdeps/gnu/Dist: Remove errlist-compat.c.
307         * sysdeps/gnu/Makefile (errlist-compat.c): Build this file in the
308         object directory.  Pass all Versions files to the awk script.
309         * sysdeps/gnu/errlist-compat.c: Removed.
310         * sysdeps/gnu/errlist.awk: Use #errlist-compat comments from the
311         first Versions file in the search path which has them.
312         Allow multiple errlist symbol versions to have the same count of
313         errors.
314         * sysdeps/gnu/errlist-compat.awk: Include <errlist-compat.c> instead
315         of "errlist-compat.c".
316         * sysdeps/gnu/errlist.c: Regenerated.
317         * sysdeps/unix/sysv/linux/mips/Versions (libc): Add #errlist-compat
318         comments at GLIBC_2.0, GLIBC_2.1 and GLIBC_2.3.
319         * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
320         (librt): Add aio_cancel and aio_cancel64 as GLIBC_2.3.
321         * sysdeps/unix/sysv/linux/hppa/Versions: Likewise.
322         * sysdeps/unix/sysv/linux/sparc/Versions: New file.
323         * sysdeps/unix/sysv/linux/alpha/bits/errno.h: New file.
324         * sysdeps/unix/sysv/linux/hppa/bits/errno.h (ECANCELED): Define to
325         ECANCELLED if not defined by kernel headers.
326         * sysdeps/unix/sysv/linux/bits/errno.h: Don't redefine ECANCELED if
327         already defined by kernel headers.
328         * sysdeps/unix/sysv/linux/sparc/bits/errno.h: New file.
329         * sysdeps/pthread/aio_cancel.c: Don't include aio.h and its
330         aio_cancel64 renaming hack nor provide weak_alias if aio_cancel
331         is a macro.
332         * Versions.def (GLIBC_2.3) [librt]: Add.
334         * sysdeps/unix/sysv/linux/alpha/pipe.S: New file.
336 2002-08-28  Ulrich Drepper  <drepper@redhat.com>
338         * include/libc-symbols.h [!__ASSEMBLER__] (declare_symbol_1): Add
339         missing comma to .type directive.
341 2002-08-28  Jakub Jelinek  <jakub@redhat.com>
343         * sysdeps/ia64/elf/configure.in (PI_STATIC_AND_HIDDEN): Define
344         unconditionally.
345         * sysdeps/alpha/elf/configure.in (libc_cv_alpha_hidden_gprel): New
346         check.
347         (PI_STATIC_AND_HIDDEN): Define if check succeeded.
349 2002-08-28  Jakub Jelinek  <jakub@redhat.com>
351         * locale/loadarchive.c (_nl_load_locale_from_archive): Add fd >= 0
352         check to close_and_out close.  Replace return NULL statements where
353         fd might be >= 0 with goto close_and_out.  Close the file descriptor
354         when it is no longer needed.
356 2002-08-28  Ulrich Drepper  <drepper@redhat.com>
358         * sysdeps/s390/s390-64/dl-machine.h: Avoid unescaped newlines in
359         string constants.
360         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
361         * sysdeps/arm/dl-machine.h: Likewise.
362         * sysdeps/cris/dl-machine.h: Likewise.
363         * sysdeps/unix/sysv/linux/m68k/register-dump.h: Likewise.
364         * sysdeps/unix/sysv/aix/gettimeofday.c: Likewise.
366 2002-08-28  Roland McGrath  <roland@redhat.com>
368         * Makeconfig (default_cflags): Revert unintended change.
370 2002-08-28  Ulrich Drepper  <drepper@redhat.com>
372         * version.h (VERSION): Bump to 2.2.91.
374         * configure.in: Disable TLS support by default for now.
376         * sysdeps/i386/fpu/libm-test-ulps: Adjust ulp for yn for float.
378         * sysdeps/generic/strtol.c (strtol): Add some more casts to avoid
379         warnings.
381         * stdlib/strtod.c (STRTOF): Correct type in cast of last patch.
383         * stdlib/fmtmsg.c (fmtmsg): Use correct test for failure of
384         fprintf/fwprintf calls.
386 2002-08-28  Roland McGrath  <roland@redhat.com>
388         * Makeconfig (run-program-prefix): Fix bogus use of $(findstring ...)
389         to use $(filter ...) instead.  Same bug fixed in aix conditionals.
391         * locale/setlocale.c: Declare postload functions weak.
393         * elf/tst-tls1-static.c: New file.
394         * elf/tst-tls2-static.c: New file.
395         * elf/Makefile ($(tests-static):%=$(objfpx)%.o): Remove rule.
397         Make uselocale support static linking.
398         * locale/xlocale.c: Revert changes putting _nl_global_locale here.
399         This file again just defines _nl_C_locobj.
400         (_nl_C_locobj): Use a categories.def iterator in the initializer.
401         * locale/global-locale.c: New file.  Define _nl_global_locale here,
402         using all weak references in the initializer.
403         * locale/Makefile (aux): Add global-locale.
404         * locale/localeinfo.h (_nl_global_locale, _NL_CURRENT_LOCALE): Make
405         these unconditional, along with the tsd decl.
406         [!SHARED && HAVE___THREAD && HAVE_WEAK_SYMBOLS] (NL_CURRENT_INDIRECT):
407         Define it under these conditions.
408         [NL_CURRENT_INDIRECT]: Test this instead of [! SHARED].
409         Don't declare _nl_current.  Declare _nl_current_LC_FOO as
410         `extern __thread struct locale_data *const *'.
411         [NL_CURRENT_INDIRECT]
412         (_NL_CURRENT_DATA, _NL_CURRENT, _NL_CURRENT_WSTR): Add indirection.
413         [NL_CURRENT_INDIRECT] (_NL_CURRENT_DEFINE): Rewritten.  Define
414         the thread variable _nl_current_LC_FOO and also a special absolute
415         symbol _nl_current_LC_FOO_used.
416         * locale/uselocale.c (__uselocale) [NL_CURRENT_INDIRECT]:
417         Set each _nl_current_LC_FOO symbol to point into the new locale,
418         using weak references to test if _nl_current_LC_FOO_used was linked in.
419         * locale/setlocale.c [! SHARED]: Replace this conditional ...
420         [NL_CURRENT_INDIRECT]: ... with this one.
421         (_nl_current, _nl_C): Variables removed.
422         [NL_CURRENT_INDIRECT] (_nl_current_used): New variable, table of
423         weak references to _nl_current_LC_FOO_used.
424         [NL_CURRENT_INDIRECT] (CATEGORY_USED): Define using that table.
425         (free_category): New function, broken out of ...
426         (free_mem): ... here.  Call that.
427         (free_mem) [NL_CURRENT_INDIRECT]: Use a categories.def iterator
428         instead of a loop.
430         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Don't check for
431         PT_LOAD program headers and don't try to relocate PT_TLS's p_vaddr;
432         it is already absolute.
434         * elf/Makefile (tests): List tst-tls1 and tst-tls2 unconditionally.
435         [$(build-static) = yes] (tests): Add tst-tls1-static, tst-tls2-static.
436         [$(build-static) = yes] (tests-static): New variable.
437         ($(tests-static):%=$(objfpx)%.o)): New static pattern rule.
439 2002-08-26  Christoph Hellwig  <hch@lst.de>
441         * sysdeps/unix/sysv/linux/sys/personality.h: Remark origin, fix
442         formating braindamage, add missing PER_HPUX and PER_OSF1 values.
444 2002-08-28  Ulrich Drepper  <drepper@redhat.com>
446         * sysdeps/x86_64/Dist: Add _mcount.S and bits/link.h.
448         * sysdeps/s390/Dist: Add bits/link.h.
450         * sysdeps/sh/Dist: New file.
452         * sysdeps/ia64/Dist: Add ia64libgcc.S.
454         * sysdeps/wordsize-32/Dist: New file.
456         * sysdeps/unix/sysv/linux/alpha/Dist: Add dl-brk.S.
457         * sysdeps/unix/sysv/linux/powerpc/Dist: Likewise.
458         * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: Likewise.
460         * sysdeps/unix/sysv/linux/Dist: Add dl-brk.c, dl-sbrk.c, and
461         sys/personality.h.
463         * sysdeps/unix/Dist: Add i386/dl-brk.S, mips/dl-brk.S, and
464         sparc/dl-brk.S.
466         * sysdeps/unix/bsd/Dist: Add vax/dl-brk.S.
468         * sysdeps/unix/bsd/sun/Dist: New file.
470         * sysdeps/unix/bsd/osf/Dist: New file.
472         * sysdeps/unix/bsd/hp/Dist: New file.
474         * sysdeps/unix/arm/Dist: New file.
476         * sysdeps/powerpc/Dist: Add divdi3.c and libgcc-compat.S.
478         * sysdeps/mach/hurd/Dist: Add set-init.c.
480         * sysdeps/i386/Dist: Add bits/link.h.
482         * sysdeps/gnu/Dist: Add errlist-compat.c errlist-compat.awk.
484         * sysdeps/generic/Dist: Add dl-brk.c and dl-sbrk.c.
486         * locale/Makefile (distribute): Add hashval.h.
488         * iconvdata/Makefile (distribute): Add tcvn5712-1.c and armscii-8.c.
490         * sysdeps/unix/sysv/linux/Dist: Remove errlist.h.
492         * misc/sys/cdefs.h: Define __BEGIN_NAMESPACE_STD, __END_NAMESPACE_STD,
493         __USING_NAMESPACE_STD, __BEGIN_NAMESPACE_C99, __END_NAMESPACE_C99, and
494         __USING_NAMESPACE_C99 depending on _GLIBCPP_USE_NAMESPACES.
495         * ctype/ctype.h: Prepare headers for use in ISO C++ compliant
496         implementations.
497         * libio/stdio.h: Likewise.
498         * locale/locale.h: Likewise.
499         * math/math.h: Likewise.
500         * math/bits/mathcalls.h: Likewise.
501         * setjmp/setjmp.h: Likewise.
502         * signal/signal.h: Likewise.
503         * stdlib/stdlib.h: Likewise.
504         * string/string.h: Likewise.
505         * time/time.h: Likewise.
506         * wcsmbs/wchar.h: Likewise.
507         * wctype/wctype.h: Likewise.
509 2002-08-28  Roland McGrath  <roland@redhat.com>
511         * locale/tst-C-locale.c (run_test): Remove __ from function names.
513 2002-08-28  Jakub Jelinek  <jakub@redhat.com>
514             Roland McGrath <roland@redhat.com>
516         * locale/hashval.h (compute_hashval): Use prototype defn.
517         (hashval_t): New macro, defined to unsigned long int
518         if not already defined.
519         (compute_hashval): Return hashval_t instead of unsigned long int.
520         * locale/loadarchive.c (hashval_t): New macro.
521         * locale/programs/locarchive.c: Include hashval.h directly instead
522         of simple-hash.h.
523         (compute_hashval, hashval_t): Define these macros first.
524         (insert_name): Use archive_hashval instead of compute_hashval.
525         (add_locale, delete_locales_from_archive): Likewise.
527 2002-08-28  Jakub Jelinek  <jakub@redhat.com>
529         * locale/programs/locarchive.c (insert_name): Suppress warnings about
530         hash collisions if be_quiet.
532 2002-08-27  Roland McGrath  <roland@redhat.com>
534         * locale/locale.h (__newlocale, __duplocale, __freelocale,
535         __uselocale): Don't declare these any more.
536         * include/locale.h (__uselocale): Declare here instead, using __typeof.
538         * sysdeps/unix/readdir.c: If getdents fails with ENOENT, restore errno
539         and treat it as an EOF return.
540         * sysdeps/unix/readdir_r.c: Likewise.
542         * sysdeps/gnu/errlist-compat.awk: Include <bits/wordsize.h> in output.
543         From Alexandre Oliva <aoliva@redhat.com>.
544         * sysdeps/gnu/errlist-compat.c: Regenerated.
546 2002-08-27  Brian Youmans  <3diff@gnu.org>
548         * sysdeps/ieee754/flt-32/e_asinf.c: Modified copying permission
549         wording at request of copyright holder Stephen Moshier.
550         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
551         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
552         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
553         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
554         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
555         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
556         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
557         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
558         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
559         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
560         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
561         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
562         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
563         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
565 2002-08-28  Jakub Jelinek  <jakub@redhat.com>
567         * ctype/ctype.h (isascii_l, toascii_l): Define to __*_l counterparts.
568         * ctype/ctype-extn.c (isblank_l): Add weak alias.
569         * sysdeps/generic/strtol_l.c (strtol_l): Likewise.
570         * sysdeps/generic/strtoll_l.c (strtoll_l): Likewise.
571         * sysdeps/generic/strtoul_l.c (strtoul_l): Likewise.
572         * sysdeps/generic/strtoull_l.c (strtoull_l): Likewise.
573         * wctype/iswctype_l.c (iswctype_l): Likewise.
575 2002-08-27  Roland McGrath  <roland@redhat.com>
577         * time/strftime.c [USE_IN_EXTENDED_LOCALE_MODEL]: No libc_hidden_def.
579         * ctype/ctype.h (__exctype_l): Don't declare __ name.
580         * stdlib/stdlib.h: Don't declare __*_l names.
581         * include/stdlib.h: Declare them here instead.
582         * include/string.h: Don't declare __*_l names.
583         * string/string.h: Declare them here instead.
584         * time/time.h: Don't declare __*_l names.
585         * include/time.h: Declare them here instead.
586         * wcsmbs/wchar.h: Don't declare __*_l names.
587         * include/wchar.h: Declare them here instead.
588         * wctype/wctype.h: Declare iswalnum_l, not __iswalnum_l.
589         Don't declare __*_l names.
590         * include/wctype.h: Declare them here instead.
591         * stdlib/monetary.h: Declare strfmon_l, not __strfmon_l.
592         * stdlib/strfmon_l.c (strfmon_l): Define as weak alias.
593         * locale/langinfo.h: Don't declare __nl_langinfo_l.
594         * include/langinfo.h: Declare it here with __typeof.
596         * time/strptime.c [USE_IN_EXTENDED_LOCALE_MODEL]: Define __strptime_l
597         instead, taking an extra __locale_t argument.
598         * time/Makefile (routines): Add strptime_l.
599         * time/time.h (__strptime_l, strptime_l): Declare them.
600         * time/strptime_l.c: New file.
602         * time/time.h (__strftime_l, strftime_l): Declare them.
603         * wcsmbs/wchar.h (__wcsftime_l, wcsftime_l): Declare them.
604         * time/strftime_l.c: New file.
605         * time/wcsftime_l.c: New file.
606         * time/Makefile (routines): Add strftime_l, wcsftime_l.
607         * time/Versions (libc: GLIBC_2.3): Add __strftime_l, __wcsftime_l,
608         strftime_l, wcsftime_l.
609         * time/strftime.c [USE_IN_EXTENDED_LOCALE_MODEL]: Define __strftime_l
610         or __wcsftime_l instead, taking an extra __locale_t argument.
612         * locale/Versions (libc: GLIBC_PRIVATE): Move __uselocale to ...
613         (libc: GLIBC_2.3): ... here.
615 2002-08-27  Ulrich Drepper  <drepper@redhat.com>
617         * stdio-common/Makefile: Fix typo in stdio_lim.h installation rule.
619         * Makefile (distribute): Add LICENSES.
621         * sysdeps/unix/sysv/linux/x86_64/Dist: Add ucontext_i.h and
622         sys/debugreg.h.
624         * sysdeps/unix/sysv/linux/s390/Dist: Add new/route.h.
626         * sysdeps/unix/sysv/linux/ia64/Dist: Add dl-brk.S and sys/user.h.
628         * sysdeps/unix/sysv/linux/mips/Dist: Add sys/user.h.
630         * sysdeps/unix/sysv/linux/Dist: Add readahead.c.
632         * sysdeps/mach/hurd/alpha/Dist: New file.
634         * sysdeps/arm/Dist: Add bits/link.h.
636         * sunrpc/Makefile: Distribute thrsvc.
638         * stdio-common/Makefile: Remove more left-overs from old stdio.
640         * include/linewrap.h: Removed.
642         * libio/bug-mmap-fflush.c: Rewrite to not touch source directory.
644         * intl/Makefile (distribute): Add plural-eval.c.
646 2002-08-27  Roland McGrath  <roland@redhat.com>
648         * manual/sysinfo.texi (Mount Information): Correct file name to macro
649         assocations for _PATH_MNTTAB, MNTTAB, _PATH_MOUNTED, MOUNTED.
650         Say mtab is in either /var/run or /etc.
652 2002-08-26  Roland McGrath  <roland@redhat.com>
654         * manual/errno.texi (Error Codes): Added ECANCELED (118 for Hurd).
655         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
657         * sysdeps/gnu/Versions: New file.
658         * sysdeps/unix/sysv/linux/Versions (libc: GLIBC_2.1): Remove
659         _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; from here.
660         * sysdeps/gnu/Makefile ($(..)sysdeps/gnu/errlist-compat.c): New target.
661         ($(objpfx)errlist.d): Depend on $(..)sysdeps/gnu/errlist-compat.c.
662         * sysdeps/gnu/errlist.awk: Make output define _sys_errlist_internal
663         and _sys_nerr_internal instead of anything else.  Make it include
664         "errlist-compat.c" if [!NOT_IN_libc && !ERRLIST_NO_COMPAT].
665         Make it emit some asm magic if [EMIT_ERR_MAX].
666         * sysdeps/gnu/errlist.c: Regenerated.
667         * sysdeps/gnu/errlist-compat.awk: New file.
668         * sysdeps/gnu/errlist-compat.c: New file (generated).
669         * sysdeps/mach/hurd/errlist.c (ERRLIST_NO_COMPAT): New macro.
670         (_sys_errlist_internal): Define this as a macro for _hurd_errlist.
671         (_sys_nerr_internal): Define this is a macro for _hurd_nerr.
672         (SYS_ERRLIST, SYS_NERR): Macros removed.
673         (sys_nerr, _sys_nerr): Remove these weak aliases.
674         * sysdeps/unix/sysv/linux/errlist.c: File removed.
675         * sysdeps/unix/sysv/linux/errlist.h: File removed.
676         * sysdeps/unix/sysv/linux/arm/errlist.c: File removed.
678         * include/libc-symbols.h (declare_symbol): New macro.
679         * config.h.in (ASM_TYPE_DIRECTIVE_PREFIX): New #undef.
680         * configure.in: New check to define it.
681         * configure: Regenerated.
683 2002-08-27  Ulrich Drepper  <drepper@redhat.com>
685         * stdio-common/Makefile (headers): Remove bits/stdio_lim.h.  This
686         file isn't distributed.  Add special rules to install bits/stdio_lim.h.
688         * Make-dist: Remove traces of old stdio.
689         * Makeconfig: Likewise.
691         * locale/Makefile (localedef-aux): New variable.  Only md5
692         assigned to it.  These files are not ddistributed in this directory.
694         * sysdeps/unix/sysv/linux/s390/Dist: Add sys/procfs.h.
695         * sysdeps/unix/sysv/linux/s390/s390-64/Dist: Remove sys/procfs.h.
696         * sysdeps/unix/sysv/linux/s390/s390-32/Dist: Likewise.
698         * sysdeps/unix/sysv/linux/Dist: Remove sys/sendfile.h.
700         * nss/getXXbyYY_r.c (REENTRANT_NAME): If no service is available
701         set h_errno to NO_RECOVERY [PR libc/4360].
703 2002-08-26  Ulrich Drepper  <drepper@redhat.com>
705         * libio/Makefile (tests): Add bug-fopena+.
706         * libio/bug-fopena+.c: New file.
707         * libio/fileops.c (_IO_file_open): Only set file pointer to end of the
708         file for _IO_IS_APPENDING if file isn't opened for reading, too.
710         * stdio-common/tst-swprintf.c (main): Add casts to avoid warnings.
712         * locale/xlocale.c: Fix the last change.  The variable still has
713         to end in _data.
714         * sysdeps/generic/bits/libc-tsd.h [!(USE_TLS && HAVE___THREAD)]
715         (__libc_tsd_set): Add _data prefix to variable name.
717 2002-08-26  Roland McGrath  <roland@redhat.com>
719         * sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask): Replace
720         macro with inline function.
721         (sigset_get_old_mask): Likewise.
722         * sysdeps/posix/sigblock.c (__sigblock): Update callers.
723         * sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
724         * sysdeps/posix/sigpause.c (__sigpause): Likewise.
725         * sysdeps/posix/sigvec.c (__sigvec, sigvec_wrapper_handler): Likewise.
726         * sysdeps/unix/sysv/aix/sigset-cvt-mask.h
727         (sigset_set_old_mask, sigset_get_old_mask): Make these macros return
728         values.
729         * sysdeps/unix/sysv/linux/sigset-cvt-mask.h: Likewise.
730         * sysdeps/unix/sysv/sysv4/sigset-cvt-mask.h: Likewise.
732 2002-07-06  Bruno Haible  <bruno@clisp.org>
734         * sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask,
735         sigset_get_old_mask): Make it work with larger sigset_t.
736         * sysdeps/posix/sigblock.c (__sigblock): Use those macros.
737         * sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
738         * sysdeps/posix/sigpause.c (__sigpause): Likewise.
740 2002-08-26  Roland McGrath  <roland@redhat.com>
742         * time/sys/time.h [__USE_BSD] (lutimes, futimes): Declare them.
743         * manual/filesys.texi (File Times): Document lutimes and futimes.
744         * misc/Makefile (routines): Add them.
745         * misc/Versions (libc: GLIBC_2.3): Likewise.
746         * sysdeps/generic/lutimes.c: New file.
747         * sysdeps/generic/futimes.c: New file.
748         * sysdeps/mach/hurd/lutimes.c: New file.
749         * sysdeps/mach/hurd/futimes.c: New file.
751         * manual/filesys.texi (File Times): Add explicit note about null
752         pointer argument to utimes.
754 2002-08-26  Roland McGrath  <roland@frob.com>
756         * sysdeps/mach/hurd/ifreq.h (__if_freereq): Add missing semicolon.
757         (__ifreq): Add a cast.  Remove an unused variable.
759         * hurd/hurd/threadvar.h (enum __hurd_threadvar_index): Add
760         _HURD_THREADVAR_LOCALE.
762 2002-08-26  Jakub Jelinek  <jakub@redhat.com>
764         * posix/regexec.c (re_search_stub): Return correct match length
765         if start != 0.
766         * posix/bug-regex10.c: New test.
767         * posix/Makefile (tests): Add bug-regex10.
769 2002-08-26  Brian Youmans  <3diff@gnu.org>
771         * COPYING.LIB: Replaced with fresh copy from
772         ftp://ftp.gnu.org/gnu/Licenses/COPYING.LIB-2.1;
773         suggested copying permission notice now says version 2.1 instead
774         of version 2.
776         * crypt/crypt.c: Changed copying permission notice to Lesser GPL
777         from Library GPL.
778         * crypt/crypt_util.c: Likewise.
779         * crypt/ufc.c: Likewise.
780         * elf/dl-conflict.c: Likewise.
781         * elf/dl-iteratephdr.c: Likewise.
782         * iconv/iconvconfig.h: Likewise.
783         * malloc/arena.c: Likewise.
784         * malloc/hooks.c: Likewise.
785         * malloc/malloc.c: Likewise.
786         * posix/glob/Makefile.ami: Likewise.
787         * posix/glob/Makefile.in: Likewise.
788         * stdlib/gmp-impl.h: Likewise.
789         * stdlib/gmp.h: Likewise.
790         * sysdeps/generic/dl-iteratephdr-static.c: Likewise.
791         * sysdeps/generic/strnlen.c: Likewise.
792         * sysdeps/mach/hurd/powerpc/bits/sigcontext.h: Likewise.
793         * sysdeps/mach/hurd/recvmsg.c: Likewise.
794         * sysdeps/mach/hurd/sendmsg.c: Likewise.
795         * sysdeps/mach/hurd/spawni.c: Likewise.
796         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
797         * sysdeps/mach/powerpc/sysdep.h: Likewise.
798         * sysdeps/mach/powerpc/thread_state.h: Likewise.
799         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
800         * sysdeps/unix/sysv/linux/ia64/dl-iteratephdr-static.c: Likewise.
801         * sysdeps/x86_64/gmp-mparam.h: Likewise.
803         * sysdeps/ieee754/dbl-64/MathLib.h: Corrected version number in
804         Lesser GPL copying permission notice from 2 to 2.1.
805         * sysdeps/ieee754/dbl-64/asincos.tbl: Likewise.
806         * sysdeps/ieee754/dbl-64/atnat.h: Likewise.
807         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
808         * sysdeps/ieee754/dbl-64/branred.c: Likewise.
809         * sysdeps/ieee754/dbl-64/branred.h: Likewise.
810         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
811         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
812         * sysdeps/ieee754/dbl-64/doasin.h: Likewise.
813         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
814         * sysdeps/ieee754/dbl-64/dosincos.h: Likewise.
815         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
816         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
817         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
818         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
819         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
820         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
821         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
822         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
823         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
824         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
825         * sysdeps/ieee754/dbl-64/mpa2.h: Likewise.
826         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
827         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
828         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
829         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
830         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
831         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
832         * sysdeps/ieee754/dbl-64/mplog.h: Likewise.
833         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
834         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
835         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
836         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
837         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
838         * sysdeps/ieee754/dbl-64/root.tbl: Likewise.
839         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
840         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
841         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
842         * sysdeps/ieee754/dbl-64/sincos.tbl: Likewise.
843         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
844         * sysdeps/ieee754/dbl-64/sincos32.h: Likewise.
845         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
846         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
847         * sysdeps/ieee754/dbl-64/uasncs.h: Likewise.
848         * sysdeps/ieee754/dbl-64/uatan.tbl: Likewise.
849         * sysdeps/ieee754/dbl-64/uexp.h: Likewise.
850         * sysdeps/ieee754/dbl-64/uexp.tbl: Likewise.
851         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
852         * sysdeps/ieee754/dbl-64/ulog.tbl: Likewise.
853         * sysdeps/ieee754/dbl-64/upow.h: Likewise.
854         * sysdeps/ieee754/dbl-64/upow.tbl: Likewise.
855         * sysdeps/ieee754/dbl-64/urem.h: Likewise.
856         * sysdeps/ieee754/dbl-64/uroot.h: Likewise.
857         * sysdeps/ieee754/dbl-64/usncs.h: Likewise.
858         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
859         * sysdeps/ieee754/dbl-64/utan.tbl: Likewise.
861         * sysdeps/ieee754/flt-32/e_asinf.c: Added copyright notice for Stephen
862         Moshier and Lesser GPL copying permission notice, per license from
863         Moshier.
864         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
865         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
866         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
867         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
868         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
869         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
870         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
871         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
872         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
873         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
874         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
875         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
876         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
877         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
879         * sysdeps/ieee754/ldbl-128/e_j0l.c: Added Lesser GPL copying permission
880         notice, per license from copyright holder Stephen Moshier.
881         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
882         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
883         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
884         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
885         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
886         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
887         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
888         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
889         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
891 2002-08-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
893         * sysdeps/sh/Makefile (sysdeps_routines): Add divdi3 in csu dir.
894         (shared-only-routines): Likewise.
896 2002-08-26  Roland McGrath  <roland@redhat.com>
898         * locale/programs/ld-ctype.c (ctype_read): When given a repertoire
899         name of "", store a null pointer instead.
901         * configure.in (elf): Set to yes for freebsd*, netbsd*.
902         * configure: Regenerated.
904         * locale/xlocale.c [! (USE_TLS && HAVE___THREAD)] (__libc_tsd_LOCALE):
905         Initialize this instead of __libc_tsd_LOCALE_data.
907         * sysdeps/unix/grantpt.c (pts_name): Convert ENOTTY return from
908         ptsname_r to EINVAL.
910         * sysdeps/generic/ptsname.c (__ptsname_r): Return ENOSYS instead of 0.
912         * rt/Makefile: Revert last change, it was inappropriate to presume aio
913         implementations depend on pthreads.
914         * rt/tst-aio.c (do_test): Exit happy if first failure is ENOSYS.
915         * rt/tst-aio64.c (do_test): Likewise.
916         * rt/tst-aio2.c (do_test): Likewise.
917         * rt/tst-aio3.c (do_test): Likewise.
918         * rt/tst-aio4.c (do_test): Likewise.
919         * rt/tst-aio5.c (do_test): Likewise.
920         * rt/tst-aio6.c (do_test): Likewise.
921         * rt/tst-aio7.c (do_test): Likewise.
923         * sysdeps/generic/bits/libc-lock.h (__libc_setspecific): Use a cast to
924         void so as to avoid compiler warnings.
926         * libio/oldstdfiles.c [! _IO_MTSAFE_IO] (DEF_STDFILE): Don't define
927         _IO_wide_data_FD, which is never used here.
929         * libio/iofread.c
930         [! _IO_MTSAFE_IO] (fread_unlocked): Add libc_hidden_ver defn.
931         * libio/iofputs.c [! _IO_MTSAFE_IO] (fputs_unlocked): Likewise.
932         * libio/iofgets.c [! _IO_MTSAFE_IO] (fgets_unlocked): Likewise.
934         * include/resolv.h [! _LIBC_REENTRANT] (_res): #undef it before decl.
935         * include/netdb.h [! _LIBC_REENTRANT] (h_errno): Declare normal extern.
937         * misc/syslog.c (openlog): Conditionalize locking on [_LIBC_REENTRANT].
938         (closelog): Likewise.
940 2002-07-06  Bruno Haible  <bruno@clisp.org>
942         * sysdeps/alpha/fpu/fpu_control.h: Comment fix.
944         * sysdeps/unix/sysv/linux/alpha/pipe.S: Moved to ...
945         * sysdeps/unix/alpha/pipe.S: ... here.
946         * sysdeps/unix/bsd/osf/alpha/pipe.S: File removed.
948         * sysdeps/unix/i386/brk.S: Rename local label to '.Lhere' in ELF.
950         * sysdeps/unix/i386/brk.S: Add PSEUDO_END invocation.
951         * sysdeps/unix/i386/fork.S: Likewise.
952         * sysdeps/unix/i386/pipe.S: Likewise.
953         * sysdeps/unix/i386/wait.S: Likewise.
955         * sysdeps/unix/fork.S: Fix PSEUDO_END argument.
956         * sysdeps/unix/arm/fork.S: Likewise.
958         * sysdeps/unix/sysv/linux/arm/sysdep.h (PSEUDO): Swap DO_CALL
959         arguments.
960         (DO_CALL): Swap argument order.
961         * sysdeps/unix/sysv/linux/hppa/sysdep.h (PSEUDO): Swap DO_CALL
962         arguments.
963         (DO_CALL): Swap argument order.
964         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Swap DO_CALL
965         arguments.
966         (DO_CALL): Swap argument order.
967         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (PSEUDO): Swap DO_CALL
968         arguments.
969         (DO_CALL): Swap argument order.
970         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (PSEUDO): Swap DO_CALL
971         arguments.
972         (DO_CALL): Swap argument order.
973         * sysdeps/unix/sysv/linux/sh/sysdep.h (PSEUDO): Swap DO_CALL
974         arguments.
975         (DO_CALL): Swap argument order.
976         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Swap DO_CALL
977         arguments.
978         (DO_CALL): Swap argument order.
980         * sysdeps/i386/sysdep.h (PSEUDO): Fix syntax error.
981         (L): Define right for ELF.
982         * sysdeps/unix/sysv/linux/i386/sysdep.h (L): Remove definition.
983         Now defined in sysdeps/i386/sysdep.h.
985         * sysdeps/posix/readv.c: Ansify function definition.
986         * sysdeps/posix/writev.c: Likewise.
988         * stdio-common/tst-fseek.c (main): Don't assume that off_t and size_t
989         have the same size. Avoid direct cast from size_t to off_t.
991         * login/tst-utmp.c (simulate_login): Don't leave garbage after the
992         nul byte in entry[n].ut_user.
993         (simulate_logout): Likewise.
995         * login/programs/utmpdump.c (print_entry): Test _HAVE_UT_TYPE,
996         _HAVE_UT_PID, _HAVE_UT_ID, _HAVE_UT_HOST, instead of assuming the
997         existence of corresponding members of 'struct utmp'.
998         * login/tst-utmp.c: Trivialize the test if testing 'struct utmp' and
999         !_HAVE_UT_TYPE.
1001         * sysdeps/unix/opendir.c (__opendir): If st_blksize is 0 or too small,
1002         allocate a buffer of at least BUFSIZ bytes, not just of
1003         sizeof (struct dirent).
1005         * sysdeps/generic/glob.c: Include <limits.h>.
1006         (NAME_MAX): Define a fallback.
1007         (glob_in_dir): Allocate enough room for a 'struct dirent64' on the
1008         stack.
1009         * posix/tst-dir.c: Include <stddef.h>, for offsetof.
1010         (main): Allocate enough room for a 'struct dirent64' on the stack.
1011         * posix/tst-gnuglob.c (my_DIR): Allocate enough room for a
1012         'struct dirent'.
1014         * sysdeps/unix/sysv/linux/init-first.c: Don't include
1015         kernel-features.h.
1017         * inet/htontest.c: Include <sys/types.h>.
1019         * sysdeps/generic/sys/sysinfo.h: Surround with __{BEGIN,END}_DECLS.
1021         * include/sys/sysctl.h: Comment fix.
1023         * elf/rtld.c (_rtld_global) [! _LIBC_REENTRANT]: Don't initialize
1024         _dl_load_lock.
1025         * libio/fileno.c (fileno_unlocked): Define regardless of _IO_MTSAFE_IO.
1027         * sysdeps/unix/bsd/bsd4.4/syscalls.list (__sigaltstack): New alias.
1029         * sysdeps/unix/inet/syscalls.list (__connect_internal): New alias.
1030         (__getpeername): New alias.
1031         (__getsockname): New alias.
1032         (__socket): New alias.
1034         * sysdeps/unix/common/syscalls.list (getpgid): Remove.
1036         * sysdeps/unix/syscalls.list (__chown_internal): New alias.
1037         (__fcntl_internal): New alias.
1038         (__profil): New alias.
1040 2002-08-26  Ulrich Drepper  <drepper@redhat.com>
1042         * nscd/hstcache.c (cache_addhst): Add new parameter saying whether
1043         entry was for getaddr* lookup or not.  Add only matching cache
1044         entry.  Change all callers [PR libc/4317].
1046         * libio/wfileops.c (_IO_wfile_seekoff): Set fp->_offset after
1047         finding the read position [PR libc/4265].
1048         * libio/Makefile (tests): Add bug-rewind2.
1049         * libio/bug-rewind2.c: New file.
1051         * libio/bug-rewind.c: Fix creation of temp file.
1053 2002-08-25  Ulrich Drepper  <drepper@redhat.com>
1055         * nss/getXXbyYY_r.c (REENTRANT_NAME): Return ENOENT if status is
1056         neither SUCCESS nor TRYAGAIN [PR libc/4259].
1057         * nss/nss_files/files-XXX.c (internal_getent): Don't set *errnop
1058         to ENOENT if no entry is found.
1059         * nis/nss_compat/compat-grp.c: Don't set errno in case of lookup
1060         failure.
1061         * nis/nss_compat/compat-initgroups.c: Likewise.
1062         * nis/nss_compat/compat-pwd.c: Likewise.
1063         * nis/nss_compat/compat-spwd.c: Likewise.
1064         * nis/nss_nis/nis-alias.c: Likewise.
1065         * nis/nss_nis/nis-ethers.c: Likewise.
1066         * nis/nss_nis/nis-grp.c: Likewise.
1067         * nis/nss_nis/nis-hosts.c: Likewise.
1068         * nis/nss_nis/nis-initgroups.c: Likewise.
1069         * nis/nss_nis/nis-netgrp.c: Likewise.
1070         * nis/nss_nis/nis-network.c: Likewise.
1071         * nis/nss_nis/nis-proto.c: Likewise.
1072         * nis/nss_nis/nis-publickey.c: Likewise.
1073         * nis/nss_nis/nis-pwd.c: Likewise.
1074         * nis/nss_nis/nis-rpc.c: Likewise.
1075         * nis/nss_nis/nis-service.c: Likewise.
1076         * nis/nss_nis/nis-spwd.c: Likewise.
1077         * resolv/nss_dns/dns-host.c: Likewise.
1078         * resolv/nss_dns/dns-network.c: Likewise.
1079         * nis/nss_nisplus/nisplus-alias.c: Save errno around NIS calls.
1080         * nis/nss_nisplus/nisplus-ethers.c: Likewise.
1081         * nis/nss_nisplus/nisplus-grp.c: Likewise.
1082         * nis/nss_nisplus/nisplus-hosts.c: Likewise.
1083         * nis/nss_nisplus/nisplus-network.c: Likewise.
1084         * nis/nss_nisplus/nisplus-proto.c: Likewise.
1085         * nis/nss_nisplus/nisplus-pwd.c: Likewise.
1086         * nis/nss_nisplus/nisplus-rpc.c: Likewise.
1087         * nis/nss_nisplus/nisplus-service.c: Likewise.
1088         * nis/nss_nisplus/nisplus-spwd.c: Likewise.
1089         * hesiod/nss_hesiod/hesiod-pwd.c (lookup): Preserve errno value.
1090         * hesiod/nss_hesiod/hesiod-proto.c (lookup): Likewise.
1091         * hesiod/nss_hesiod/hesiod-grp.c (lookup): Likewise.
1092         * hesiod/nss_hesiod/hesiod-service.c (lookup): Likewise.
1094         * sysdeps/unix/sysv/linux/i386/sigaction.c: Avoid warnings by
1095         declaring __restore and __restore_rt as hidden (if possible).
1097 2002-08-25  Roland McGrath  <roland@redhat.com>
1099         * manual/llio.texi (Access Modes): Fix typos in O_READ/O_WRITE defns.
1101         * sysdeps/generic/utmp_file.c (LOCK_FILE): Check for error from fcntl.
1102         (getutent_r_file, internal_getut_r): Updated all callers.
1103         (getutline_r_file, pututline_file, updwtmp_file): Likewise.
1105 2002-08-25  Ulrich Drepper  <drepper@redhat.com>
1107         * locale/programs/locale.c: Don't print aliases for non-existing
1108         locales for 'locale -a'.
1109         Patch by Noah Levitt <nlevitt@columbia.edu> [PR libc/4166].
1111 2002-07-19  H.J. Lu  <hjl@gnu.org>
1113         * sysdeps/unix/sysv/linux/mips/bits/msq.h: New file.
1115 2002-07-16  H.J. Lu  <hjl@gnu.org>
1117         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1118         sys/personality.h.
1119         * sysdeps/unix/sysv/linux/sys/personality.h: New file.
1121 2002-08-25  Ulrich Drepper  <drepper@redhat.com>
1123         * elf/tst-tlsmod1.c (in_dso): Make sure the TLS variable access is
1124         not moved ahead of the fputs call.
1125         * elf/tst-tlsmod2.c (in_dso): Likewise.
1126         * elf/tst-tlsmod3.c (in_dso2): Likewise.
1127         * elf/tst-tlsmod4.c (in_dso): Likewise.
1129 2002-08-25  Andreas Schwab  <schwab@suse.de>
1131         * elf/dl-reloc.c (_dl_reloc_bad_type): Nul-terminate message.
1133 2002-08-25  Roland McGrath  <roland@redhat.com>
1135         * sysdeps/generic/utmp_file.c (UNLOCK_FILE): Clear alarm before
1136         resetting handler, to avoid the possibility of a spurious SIGALRM
1137         delivered to the user's handler.
1138         Reported by Amit D. Chaudhary <amitc@brocade.com>,
1140         * misc/Makefile (CFLAGS-init-misc.c): Variable removed.  It served to
1141         set -fkeep-inline-functions, which is not needed for the current file.
1143         * sysdeps/generic/ldsodefs.h: Add attribute_hidden to *_internal decls.
1144         (_dl_setup_hash): Add attribute_hidden.
1145         (_dl_sysdep_start, _dl_sysdep_start_cleanup): Likewise.
1146         (_dl_sysdep_read_whole_file, _dl_dprintf): Likewise.
1147         (_dl_new_object, _dl_map_object_deps): Likewise.
1148         (_dl_map_object_deps_internal): Remove decl.
1149         * elf/rtld.c (__mempcpy, _exit): Redeclare locally as hidden.
1151         * sysdeps/i386/dl-machine.h [PI_STATIC_AND_HIDDEN
1152         && HAVE_VISIBILITY_ATTRIBUTE && HAVE_HIDDEN
1153         && !HAVE_BROKEN_VISIBILITY_ATTRIBUTE]
1154         (elf_machine_dynamic, elf_machine_load_address): Rewritten without asm,
1155         instead relying on the compiler to produce only GOTOFF variable refs.
1157 2002-08-25  Ulrich Drepper  <drepper@redhat.com>
1159         * elf/dl-load.c: Fix typo in comment.  Add a few more __builtin_expect.
1161         * sysdeps/generic/dl-cache.h (_dl_cache_libcmp): Define as static
1162         inline to avoid defining it in every file which includes this header.
1164         * elf/rtld.c: Also test for HAVE_VISIBILITY_ATTRIBUTE before
1165         defining DONT_USE_BOOTSTRAP_MAP.
1167         * libio/tst-freopen.c (main): Use correct formats for __LINE__.
1168         * libio/tst-mmap-setvbuf.c (main): Likewise.
1169         * libio/tst-widetext.c (main): Likewise.
1171         * libio/tst-mmap-eofsync.c (do_test): Use correct format in error
1172         message.
1173         * libio/tst-mmap-fflushsync.c (do_test): Likewise.
1174         * libio/tst-mmap2-eofsync.c (do_test): Likewise.
1176         * sysdeps/i386/elf/configure.in: Unconditionally define
1177         PI_STATIC_AND_HIDDEN.
1178         * elf/rtld.c (DONT_USE_BOOTSTRAP_MAP): Define only if
1179         PI_STATIC_AND_HIDDEN is defined as well.
1180         * config.h.in: Add PI_STATIC_AND_HIDDEN entry.
1182 2002-08-24  Ulrich Drepper  <drepper@redhat.com>
1184         * sysdeps/ia64/bzero.S: Define __bzero as well.
1186         * locale/programs/charmap.c (charmap_new_char): Don't use
1187         ULONG_MAX as maximum UCS4 value.
1189         * sysdeps/unix/sysv/linux/ia64/sys/user.h: New file.
1191         * sysdeps/generic/strtol.c: We don't need the isascii test in glibc.
1193         * malloc/hooks.c (public_sET_STATe): use size_t as type for i.
1194         * malloc/malloc.c (mALLINFo): Likewise.
1196         * libio/wstrops.c (_IO_wstr_pbackfail): Use WEOF in comparison.
1198         * libio/wfileops.c (_IO_wfile_overflow): Use EOF not WEOF when
1199         examining result of _IO_do_flush call.
1201         * stdio-common/vfprintf.c (vfprintf): Use correct type in va_arg.
1202         Use prec not spec when sizing buffers.
1204         * catgets/open_catalog.c (__open_catalog): Add casts to avoid warnings.
1205         * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
1206         * locale/loadlocale.c (_nl_intern_locale_data): Likewise.
1207         * stdio-common/vfscanf.c (inchar): Likewise.
1208         * misc/efgcvt_r.c (fcvt_r): Likewise.
1209         * elf/dl-misc.c (_dl_debug_vdprintf): Likewise.
1210         * elf/readlib.c (process_file): Likewise.
1211         * elf/sprof.c (load_profdata): Likewise.
1212         * sysdeps/ia64/hp-timing.h (HP_TIMING_PRINT): Likewise.
1213         * locale/programs/linereader.c (get_toplvl_escape): Likewise.
1214         * locale/programs/charmap.c (charmap_read): Likewise.
1215         * libio/fileops.c: Likewise.
1216         * libio/fmemopen.c: Likewise.
1217         * stdlib/strtod.c: Likewise.
1218         * elf/dl-load.c: Likewise.
1219         * iconv/iconvconfig.c: Likewise.
1220         * iconv/iconv_prog.c (process_block): Likewise.
1221         * elf/rtld.c (dl_main): Likewise.
1223         * sysdeps/unix/sysv/linux/ia64/Makefile: Define _ASM_IA64_CURRENT_H
1224         macro to calm down the compiler.
1226         * iconv/gconv_cache.c (__gconv_load_cache): Add cast to avoid warning.
1228         * sysdeps/ia64/elf/initfini.c: Don't use newlines embedded in string.
1230         * sysdeps/unix/sysv/linux/i386/sysdep.S: Update comment regarding
1231         placement of errno definition.
1232         * sysdeps/unix/sysv/linux/m68k/sysdep.S: Likewise.
1233         * sysdeps/unix/sysv/linux/mips/sysdep.S: Likewise.
1234         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Likewise.
1235         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
1236         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
1238         * resolv/nss_dns/dns-host.c (MAXPACKET): Increase minimum value
1239         from 1024 to 65536, to avoid buffer overrun.
1241 2002-08-16  Paul Eggert  <eggert@twinsun.com>
1243         * resolv/gethnamaddr.c (MAXPACKET): Increase minimum value
1244         from 1024 to 65536, to avoid buffer overrun.
1245         * resolv/res_query.c (MAXPACKET): Likewise.
1247 2002-08-24  Andreas Jaeger  <aj@suse.de>
1249         * sysdeps/unix/sysv/linux/i386/Versions: Remove *xattr syscalls.
1251 2002-08-23  Ulrich Drepper  <drepper@redhat.com>
1253         * sysdeps/ieee754/dbl-64/e_pow.c (log1): Define and initialize
1254         two52 locally.
1255         (log2): Likewise.
1256         * sysdeps/ieee754/dbl-64/upow.h: Remove definition of two52.
1257         Patch by Simon Gee <simong@agile.tv>.
1259         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf):
1260         Prefer reading /proc/stat since it is more uniform across
1261         architectures.
1263         * manual/texinfo.tex: Update to latest official version.
1265         * sysvipc/sys/shm.h: Remove SHMLBA definition.
1266         * sysdeps/generic/bits/shm.h: Define SHMLBA here.
1267         * sysdeps/gnu/bits/shm.h: Likewise.
1268         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
1269         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
1270         * sysdeps/unix/sysv/linux/mips/bits/shm.h: Likewise.
1271         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
1272         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
1273         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
1274         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
1275         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Define SHMLBA to 2^20
1276         since this is what the kernel says.
1278         * misc/sys/xattr.h: Include <sys/types.h> instead of <stddef.h>
1279         since ssize_t is needed as well.  Replace const with __const.
1281 2002-08-23  Roland McGrath  <roland@redhat.com>
1283         * malloc/hooks.c (__malloc_initialize_hook, __free_hook,
1284         __malloc_hook, __realloc_hook, __memalign_hook,
1285         __after_morecore_hook): Variable definitions moved to ...
1286         * malloc/malloc.c: ... here, so as to be before all references.
1288         * sysdeps/i386/dl-machine.h (elf_machine_load_address): Add a dummy
1289         global variable reference in an unused asm parameter, to ensure the
1290         compiler has set up the GOT register before we use it.
1292         * malloc/hooks.c: Move variable definitions ahead of uses.
1293         * libio/fileops.c: Move versioned_symbol defns ahead of _IO_jump_t
1294         initializers that make reference to variables they define.
1296 2002-08-23  Andreas Jaeger  <aj@suse.de>
1298         * locale/loadarchive.c: Include <stdlib.h> for prototypes of
1299         alloca, free, qsort.
1301         * dlfcn/bug-dlsym1-lib1.c (foo): Add prototype to avoid warning.
1303         * sysdeps/ieee754/flt-32/e_jnf.c: Remove unused variable.
1304         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
1306         * misc/sys/xattr.h: New file, contributed by Christoph Hellwig
1307         <hch@lst.de>.
1308         * sysdeps/generic/fgetxattr.c: New file.
1309         * sysdeps/generic/flistxattr.c: New file.
1310         * sysdeps/generic/fremovexattr.c: New file.
1311         * sysdeps/generic/fsetxattr.c: New file.
1312         * sysdeps/generic/getxattr.c: New file.
1313         * sysdeps/generic/listxattr.c: New file.
1314         * sysdeps/generic/lgetxattr.c: New file.
1315         * sysdeps/generic/llistxattr.c: New file.
1316         * sysdeps/generic/lremovexattr.c: New file.
1317         * sysdeps/generic/lsetxattr.c: New file.
1318         * sysdeps/generic/removexattr.c: New file.
1319         * sysdeps/generic/setxattr.c: New file.
1320         * misc/Makefile (headers): Add sys/xattr.h.
1321         (routines): Add *xattr calls.
1322         * misc/Versions: Add *xattr calls with version 2.3.
1323         * sysdeps/unix/sysv/linux/m68k/Versions: Remove *xattr syscalls.
1324         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
1325         * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
1326         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
1327         * sysdeps/unix/sysv/linux/x86_64/Versions: Likewise.
1328         * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
1329         * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
1330         * sysdeps/unix/sysv/linux/arm/Versions: Likewise.
1332 2002-08-22  Steven Munroe  <sjmunroe@us.ibm.com>
1334         * sysdeps/powerpc/elf/libc-start.c
1335         (__cache_line_size): Declare.
1336         (__aux_init_cache): New function.
1337         (__libc_start_main): Change type of `auxvec' parameter to
1338         `ElfW(auxv_t) *'.  Correct walking of aux vector.  Call
1339         __aux_init_cache.
1340         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
1341         (__cache_line_size): Declare.
1342         (__aux_init_cache): New function.
1343         (DL_PLATFORM_INIT): Define.
1344         * sysdeps/powerpc/memset.S: Define __cache_line_size and use its
1345         value to select the correct stride for dcbz.
1347 2002-08-22  Andreas Jaeger  <aj@suse.de>
1349         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Fix arguments of
1350         shmat.
1352 2002-08-22  Roland McGrath  <roland@redhat.com>
1354         * locale/loadarchive.c (_nl_load_locale_from_archive): Check max file
1355         position indicated by locrectab against file bounds before rounding to
1356         page size.  In mapping loop, always set TO before breaking out of
1357         contiguous range coalescing loop.
1359         * locale/loadarchive.c (_nl_load_locale_from_archive): Use MAP_PRIVATE
1360         (or MAP_COPY if available) instead of MAP_SHARED.
1362         * scripts/firstversions.awk: When encountering a version newer than
1363         the specified earliest version, be sure to emit the specified earliest
1364         version first if any renaming of an older version to that has been.
1366 2002-08-21  Roland McGrath  <roland@redhat.com>
1368         * configure.in: Make GCC version check require 3.[2-9]* and no others.
1369         * manual/install.texi (Tools for Compilation): Say 3.2 is required.
1370         (Configuring and compiling): Don't mention older GCC versions any more.
1371         * INSTALL: Regenerated.
1373         * manual/install.texi (Configuring and compiling, Installation,
1374         Running make install, Linux): Linux -> GNU/Linux where appropriate.
1376         * elf/rtld.c (_dl_start_final): Move defn before _dl_start so it can
1377         be inlined.  Declare it with always_inline if [DONT_USE_BOOTSTRAP_MAP]
1378         and with noinline otherwise.  Remove hack alloca use to prevent
1379         inlining, we can ask for it explicitly nowadays.
1381         * dlfcn/bug-dlsym1.c: New file.
1382         * dlfcn/bug-dlsym1-lib1.c, dlfcn/bug-dlsym1-lib2.c: New files.
1383         * dlfcn/Makefile (distribute): Add them.
1384         (tests): Add bug-dlsym1 here.
1385         (modules-names): Add bug-dlsym1-lib1 and bug-dlsym1-lib2 here.
1386         ($(objpfx)bug-dlsym1, $(objpfx)bug-dlsym1.out): New targets.
1387         ($(objpfx)bug-dlsym1-lib1.so, $(objpfx)bug-dlsym1-lib2.so): Likewise.
1389 2002-08-21  Ulrich Drepper  <drepper@redhat.com>
1391         * elf/rtld.c (start_time): New global variable.  Moved from _dl_start.
1392         (DONT_USE_BOOTSTRAP_MAP): Define if we can use non-exported symbols
1393         before relocation.
1394         (_dl_start): Don't use local bootstrap_map variable if
1395         DONT_USE_BOOTSTRAP_MAP is defined.  Use GL(dl_rtld_map).  Don't
1396         pass bootstrap_map to _dl_start_final in this case either.  Don't
1397         pass start_time to _dl_start_final ever.
1398         (_dl_start_final): Don't copy bootstrap_map if DONT_USE_BOOTSTRAP_MAP.
1400         * elf/dl-deps.c (_dl_map_object_deps): Revert patch from 2002-05-28.
1401         This cripples the scope lists necessary to search for symbols in
1402         dependencies which are not in the global scope.
1404         * include/setjmp.h (__libc_longjmp): Add declaration.
1406 2002-08-21  Andreas Jaeger  <aj@suse.de>
1408         * sysdeps/x86_64/_mcount.S: Fix assembler.
1410         * sysdeps/unix/sysv/linux/x86_64/Makefile: Generate bits/syscall.h
1411         with biarch support.
1413 2002-08-21  Andreas Jaeger  <aj@suse.de>
1415         * sysdeps/x86_64/sysdep.h (CALL_MCOUNT): Fix it.
1417         * sysdeps/x86_64/Makefile (sysdep_routines): Add _mcount.
1419         * sysdeps/x86_64/machine-gmon.h: New file.
1420         * sysdeps/x86_64/_mcount.S: New file.
1422 2002-08-20  Ulrich Drepper  <drepper@redhat.com>
1424         * elf/rtld.c (_dl_start): Pass zero to TLS_INIT_TP.  Set
1425         bootstrap_map.l_tls_tp_initialized to 1 if TLS_INIT_TP was called.
1426         (_dl_start_final): Copy l_tls_tp_initialized to GL(dl_rtld_map).
1427         (dl_main): If HAVE___THREAD is not defined pass l_tls_tp_initialized
1428         to TL_INIT_TP.  Otherwise pass 1.
1429         * include/link.h (struct link_map): Add l_tls_tp_initialized.
1430         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Pass 0 to TL_INIT_TP.
1432 2002-08-15  Jakub Jelinek  <jakub@redhat.com>
1434         * locale/programs/localedef.c (add_to_readlist): Error about
1435         circular dependencies only if the locale in question hasn't
1436         been finished.
1437         * locale/programs/linereader.c (get_string): Pass LC_CTYPE not
1438         CTYPE_LOCALE to load_locale.
1439         * locale/programs/locfile.c (locfile_read): Don't include
1440         unneeded but available locales in locale_mask.
1442         * locale/programs/locarchive.c (enlarge_archive): If quiet, don't
1443         print any messages about enlarging archive.
1445 2002-08-20  Brian Youmans  <3diff@gnu.org>
1447         * manual/contrib.texi: Removed licenses, added acknowledgements
1448         for contributions by Intel, IBM, Craig Metz.
1449         * LICENSES: New file, contains the text of all non-FSF licenses in the
1450         distribution that require putting the notice in the accompanying
1451         documentation.
1452         * README.template, README: Mention LICENSES.
1454         * sysdeps/mach/hurd/net/if_ppp.h: Replaced CMU license with a
1455         new one modelled on the modern BSD license, per recent letter
1456         of permission from CMU.
1457         * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
1459         * sysdeps/ieee754/dbl-64/MathLib.h: Changed the copyright holder
1460         from IBM to FSF, per the recent Software Letter.  Changed the
1461         distribution terms from GPL to LGPL.
1463         * sysdeps/ieee754/dbl-64/asincos.tbl: Added FSF copyright and
1464         copying permission notice (Lesser GPL), per recent IBM Software Letter.
1465         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
1466         * sysdeps/ieee754/dbl-64/root.tbl: Likewise.
1467         * sysdeps/ieee754/dbl-64/sincos.tbl: Likewise.
1468         * sysdeps/ieee754/dbl-64/uatan.tbl: Likewise.
1469         * sysdeps/ieee754/dbl-64/uexp.tbl: Likewise.
1470         * sysdeps/ieee754/dbl-64/ulog.tbl: Likewise.
1471         * sysdeps/ieee754/dbl-64/upow.tbl: Likewise.
1472         * sysdeps/ieee754/dbl-64/utan.tbl: Likewise.
1474         * sysdeps/ieee754/dbl-64/atnat.h: Changed the copyright holder
1475         from IBM to FSF, per the recent Software Letter.  Corrected the
1476         text of the copying permission notice to say Lesser GPL instead
1477         of GPL in warranty disclaimer paragraph.
1478         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
1479         * sysdeps/ieee754/dbl-64/branred.h: Likewise.
1480         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
1481         * sysdeps/ieee754/dbl-64/doasin.h: Likewise.
1482         * sysdeps/ieee754/dbl-64/dosincos.h: Likewise.
1483         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
1484         * sysdeps/ieee754/dbl-64/mpa2.h: Likewise.
1485         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
1486         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
1487         * sysdeps/ieee754/dbl-64/mplog.h: Likewise.
1488         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
1489         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
1490         * sysdeps/ieee754/dbl-64/sincos32.h: Likewise.
1491         * sysdeps/ieee754/dbl-64/uasncs.h: Likewise.
1492         * sysdeps/ieee754/dbl-64/uexp.h: Likewise.
1493         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
1494         * sysdeps/ieee754/dbl-64/upow.h: Likewise.
1495         * sysdeps/ieee754/dbl-64/urem.h: Likewise.
1496         * sysdeps/ieee754/dbl-64/uroot.h: Likewise.
1497         * sysdeps/ieee754/dbl-64/usncs.h: Likewise.
1498         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
1500         * sysdeps/ieee754/dbl-64/branred.c: Corrected the text of the copying
1501         permission notice to say Lesser GPL instead of GPL in warranty
1502         disclaimer paragraph.
1503         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
1504         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
1505         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
1506         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
1507         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
1508         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
1509         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
1510         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
1511         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
1512         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
1513         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
1514         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
1515         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
1516         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
1517         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
1518         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
1519         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
1520         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
1521         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
1522         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
1523         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
1524         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
1525         * sysdeps/ieee754/dbl-64/slowpow.c:  Likewise.
1527 2002-08-20  Roland McGrath  <roland@redhat.com>
1529         Fix ABI compatibility with libc compiled with old tools on powerpc.
1530         Changes contributed by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
1531         and Jack Howarth <howarth@bromo.med.uc.edu>.
1532         * sysdeps/powerpc/Makefile [$(have-protected) = yes]
1533         (CPPFLAGS-divdi3.c, CPPFLAGS-libgcc-compat.S): New variables,
1534         pass -DHAVE_DOT_HIDDEN for these files.
1535         * sysdeps/powerpc/Versions (libc: GLIBC_2.0): Added __floatdidf,
1536         __floatdisf.
1537         * sysdeps/powerpc/divdi3.c: New file.
1538         * sysdeps/powerpc/libgcc-compat.S: New file, replacement for ...
1539         * sysdeps/powerpc/libgcc-compat.c: ... this, file removed.
1541 2002-08-20  Jakub Jelinek  <jakub@redhat.com>
1543         * locale/loadarchive.c (_nl_load_locale_from_archive): Handle
1544         partially overlapping mappings.  Remove unneeded (char *) casts.
1545         Never allow duplication of ranges in mapped areas.
1547 2002-08-20  Roland McGrath  <roland@redhat.com>
1549         * elf/Makefile ($(objpfx)ld.so): Separate commands in rule so errors
1550         can be detected by make.  Reported by H.J. Lu <hjl@gnu.org>.
1552 2002-08-20  Ulrich Drepper  <drepper@redhat.com>
1554         * include/unistd.h: Don't hide _exit.
1556         * elf/rtld.c (_dl_start): Pass extra argument 1 to TLS_INIT_TP.
1557         (dl_main): Pass extra argument 0 to TLS_INIT_TP.
1558         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Pass extra
1559         argument 1 to TLS_INIT_TP.
1560         * sysdeps/generic/tls.h (TLS_INIT_TP): Describe new parameter.
1562         * sysdeps/generic/dl-tls.c (allocate_dtv): Optimize a bit.
1564         * elf/Versions [ld] (GLIBC_PRIVATE): Add _dl_get_tls_static_info.
1565         * sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage): Move dtv
1566         memory allocation to...
1567         (allocate_dtv): ...here.  New function.
1568         (_dl_allocate_tls): Change to take parameter.  If parameter is non-NULL
1569         call allocate_dtv instead of _dl_allocate_tls_storage.
1570         (_dl_deallocate_tls): New parameter.  Deallocate TCB only if true.
1571         (_dl_get_tls_static_info): New function.
1572         * sysdeps/generic/ldsodefs.h: Adjust prototypes of _dl_allocate_tls
1573         and _dl_deallocate_tls.  Add prototype for _dl_get_tls_static_info.
1575 2002-08-19  Ulrich Drepper  <drepper@redhat.com>
1577         * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Return
1578         immediately if result == NULL.
1580 2002-08-16  Jakub Jelinek  <jakub@redhat.com>
1582         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
1584 2002-08-18  Roland McGrath  <roland@frob.com>
1586         * sysdeps/mach/hurd/mkdir.c (__mkdir): Use __directory_name_split
1587         instead of __file_name_split.
1588         * sysdeps/mach/hurd/unlink.c (__unlink): Likewise.
1590         * sysdeps/mach/hurd/dl-sysdep.c
1591         [HP_TIMING_AVAIL] (_dl_cpuclock_offset): New variable.
1592         [HP_TIMING_AVAIL] (_dl_sysdep_start): Set it with HP_TIMING_NOW.
1594 2002-08-16  Jakub Jelinek  <jakub@redhat.com>
1596         * locale/loadarchive.c (_nl_load_locale_from_archive): Braino fix
1597         in change before last: MAX -> MIN.
1599 2002-08-15  Roland McGrath  <roland@redhat.com>
1601         * libio/fileops.c (_IO_file_seekoff_mmap): Leave read pointers at EOF
1602         if seek would go past it.
1603         (mmap_remap_check): If file position is at or past EOF after check,
1604         leave read pointers at EOF and don't seek.
1606         * libio/tst-mmap-offend.c: New file.
1607         * libio/Makefile (tests): Add it.
1609         * locale/loadarchive.c (_nl_load_locale_from_archive): Store strdup of
1610         the name as passed, rather than the name in the archive dictionary.
1612 2002-08-15  Ulrich Drepper  <drepper@redhat.com>
1614         * csu/Makefile: Define elide-routines.os not static-only-routines.
1616         * include/sched.h (__clone): Add varargs at the end.
1618         * elf/rtld.c (_dl_start): Allow TLS_INIT_TP to fail, and stop in that
1619         case.
1620         (TLS_INIT_HELPER): If defined, use it.
1621         * sysdeps/generic/libc-tls.c (TLS_INIT_HELPER): Likewise.
1623 2002-08-15  Roland McGrath  <roland@redhat.com>
1625         * elf/dl-load.c (lose): Remove [!SHARED] conditional from null check
1626         on L->l_prev; it can happen under rtld --verify too.
1628         * locale/loadarchive.c (_nl_load_locale_from_archive): Don't read the
1629         header separately, just map an initial window of 2MB from the file
1630         and remap if that is not large enough to cover the whole header.
1632 2002-08-15  Andreas Jaeger  <aj@suse.de>
1634         * sysdeps/unix/sysv/linux/m68k/Versions: Add *xattr syscalls with
1635         version 2.3.
1636         * sysdeps/unix/sysv/linux/arm/Versions: Likewise.
1637         * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
1638         * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
1639         * sysdeps/unix/sysv/linux/x86_64/Versions: Likewise.
1640         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
1641         * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
1642         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
1643         * sysdeps/unix/sysv/linux/powerpc/Versions: Likewise.
1644         * sysdeps/unix/sysv/linux/mips/Versions: Likewise.
1645         Patch by Andreas Gruenbacher <agruen@suse.de>.
1647         * sysdeps/unix/sysv/linux/syscalls.list: Add *xattr syscalls.
1649 2002-08-14  Roland McGrath  <roland@redhat.com>
1651         * locale/locarchive.h (struct locale_category_data): Give this name to
1652         the type of locale_data_t's elements.
1653         * locale/programs/locarchive.c (cmpcategorysize): New static function.
1654         (add_locale): Use that to sort the categories by size and put all
1655         those that fit into two pages into the LC_ALL block, instead of
1656         hard-coding it to do everything but LC_CTYPE and LC_COLLATE.
1657         (show_archive_content): Detect categories inside LC_ALL block
1658         directly, instead of hard-coding.
1659         (oldlocrecentcmp): Compare just on file locations used.
1661 2002-08-14  Jakub Jelinek  <jakub@redhat.com>
1663         * locale/programs/locarchive.c (struct oldlocrecent): New type.
1664         (oldlocrecentcmp): New function.
1665         (enlarge_archive): Re-add locales in the order they were added
1666         to the archive.
1667         (add_locale): Put all the small locale files together, if the small
1668         locale file block would occupy less pages if page size aligned, align
1669         it.
1670         (show_archive_content): Adjust for locale archives optimized for speed.
1672 2002-08-14  Roland McGrath  <roland@frob.com>
1674         * configure.in: Use "MISSING" as not-found value for MIG.
1675         * sysdeps/mach/configure.in: Fatal if mig not found.
1676         * configure, sysdeps/mach/configure: Regenerated.
1678 2002-08-13  Jakub Jelinek  <jakub@redhat.com>
1680         * locale/loadarchive.c (archfname): Add missing slash.
1682         * sysdeps/generic/strtold.c (__strtold_internal): Add libc_hidden_def.
1683         * wcsmbs/wcstold.c (__wcstold_internal): Add libc_hidden_def.
1685 2002-08-12  Roland McGrath  <roland@redhat.com>
1687         * include/sys/wait.h (__waitpid): Add libc_hidden_proto.
1688         * sysdeps/unix/sysv/sco3.2.4/waitpid.S: Add libc_hidden_def.
1689         * sysdeps/unix/sysv/sysv4/waitpid.c: Add libc_hidden_weak.
1690         * sysdeps/unix/sysv/linux/waitpid.c: Likewise.
1691         * sysdeps/unix/sysv/aix/waitpid.c: Likewise.
1692         * sysdeps/unix/bsd/bsd4.4/waitpid.c: Likewise.
1693         * sysdeps/generic/waitpid.c: Likewise.
1695         * include/net/if.h: New file.  Use libc_hidden_proto
1696         for if_nametoindex and if_indextoname.
1697         * sysdeps/generic/if_index.c: Add libc_hidden_def.
1698         * sysdeps/mach/hurd/if_index.c: Likewise.
1699         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
1701         * include/grp.h (setgroups): Add libc_hidden_proto.
1702         * sysdeps/generic/setgroups.c: Add libc_hidden_def.
1703         * sysdeps/mach/hurd/setgroups.c: Likewise.
1704         * sysdeps/unix/sysv/irix4/setgroups.c: Likewise.
1705         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
1707 2002-08-13  Jakub Jelinek  <jakub@redhat.com>
1709         * include/unistd.h (seteuid, setegid): Add libc_hidden_proto.
1710         * sysdeps/generic/seteuid.c (seteuid): Add libc_hidden_def.
1711         * sysdeps/generic/setegid.c (setegid): Likewise.
1712         * sysdeps/mach/hurd/seteuid.c (seteuid): Likewise.
1713         * sysdeps/mach/hurd/setegid.c (setegid): Likewise.
1714         * sysdeps/unix/bsd/seteuid.c (seteuid): Likewise.
1715         * sysdeps/unix/bsd/setegid.c (setegid): Likewise.
1716         * sysdeps/unix/sysv/aix/seteuid.c (seteuid): Likewise.
1717         * sysdeps/unix/sysv/aix/setegid.c (setegid): Likewise.
1718         * sysdeps/unix/sysv/linux/i386/setegid.c (setegid): Likewise.
1719         * sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c (seteuid): Likewise.
1720         * sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c (setegid): Likewise.
1721         * sysdeps/unix/sysv/linux/seteuid.c (seteuid): Likewise.
1722         * sysdeps/unix/sysv/linux/setegid.c (setegid): Likewise.
1723         * sysdeps/unix/sysv/linux/i386/seteuid.c (seteuid): Likewise.
1724         Remove fallback if __ASSUME_SETRESUID_SYSCALL.
1726         * include/sys/stat.h (__fxstat_internal, __fxstat64_internal,
1727         __lxstat_internal, __lxstat64_internal): Remove.
1728         (__fxstat, __fxstat64, __lxstat, __lxstat64, __xstat, __xstat64):
1729         Add hidden_proto.
1730         * sysdeps/generic/fxstat.c (__fxstat): Add hidden_def.
1731         Remove INTDEF where present, remove #undef at the beginning.
1732         * sysdeps/generic/fxstat64.c (__fxstat64): Likewise.
1733         * sysdeps/generic/lxstat.c (__lxstat): Likewise.
1734         * sysdeps/generic/lxstat64.c (__lxstat64): Likewise.
1735         * sysdeps/generic/xstat.c (__xstat): Likewise.
1736         * sysdeps/generic/xstat64.c (__xstat64): Likewise.
1737         * sysdeps/mach/hurd/dl-sysdep.c (__xstat64, __fxstat64): Likewise.
1738         * sysdeps/mach/hurd/fxstat.c (__fxstat): Likewise.
1739         * sysdeps/mach/hurd/fxstat64.c (__fxstat64): Likewise.
1740         * sysdeps/mach/hurd/lxstat.c (__lxstat): Likewise.
1741         * sysdeps/mach/hurd/lxstat64.c (__lxstat64): Likewise.
1742         * sysdeps/mach/hurd/xstat.c (__xstat): Likewise.
1743         * sysdeps/mach/hurd/xstat64.c (__xstat64): Likewise.
1744         * sysdeps/unix/fxstat.c (__fxstat): Likewise.
1745         * sysdeps/unix/common/lxstat.c (__lxstat): Likewise.
1746         * sysdeps/unix/sysv/aix/fxstat.c (__fxstat): Likewise.
1747         * sysdeps/unix/sysv/aix/fxstat64.c (__fxstat64): Likewise.
1748         * sysdeps/unix/sysv/aix/lxstat.c (__lxstat): Likewise.
1749         * sysdeps/unix/sysv/aix/lxstat64.c (__lxstat64): Likewise.
1750         * sysdeps/unix/sysv/aix/xstat.c (__xstat): Likewise.
1751         * sysdeps/unix/sysv/aix/xstat64.c (__xstat64): Likewise.
1752         * sysdeps/unix/sysv/linux/ia64/fxstat.c (__fxstat): Likewise.
1753         * sysdeps/unix/sysv/linux/ia64/lxstat.c (__lxstat): Likewise.
1754         * sysdeps/unix/sysv/linux/ia64/xstat.c (__xstat): Likewise.
1755         * sysdeps/unix/sysv/linux/s390/s390-64/fxstat.c (__fxstat): Likewise.
1756         * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c (__lxstat): Likewise.
1757         * sysdeps/unix/sysv/linux/s390/s390-64/xstat.c (__xstat): Likewise.
1758         * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
1759         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
1760         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
1761         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
1762         * sysdeps/unix/sysv/linux/xstat64.c (__xstat64): Likewise.
1763         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
1764         * sysdeps/unix/sysv/linux/fxstat64.c (__fxstat64): Likewise.
1765         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
1766         * sysdeps/unix/sysv/linux/lxstat64.c (__lxstat64): Likewise.
1767         * sysdeps/unix/xstat.c (__xstat): Likewise.
1769         * include/sys/statvfs.h (statvfs, fstatvfs): Add libc_hidden_proto.
1770         * sysdeps/generic/statvfs.c (statvfs): Add libc_hidden_def.
1771         * sysdeps/generic/fstatvfs.c (fstatvfs): Likewise.
1772         * sysdeps/mach/hurd/statvfs.c (statvfs): Likewise.
1773         * sysdeps/mach/hurd/fstatvfs.c (fstatvfs): Likewise.
1774         * sysdeps/unix/sysv/linux/statvfs.c (statvfs): Likewise.
1775         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs): Likewise.
1777         * include/unistd.h (tcgetpgrp): Add libc_hidden_proto.
1778         * include/termios.h (tcsetattr, cfsetispeed, cfsetospeed): Likewise.
1779         * sysdeps/generic/tcgetpgrp.c (tcgetpgrp): Add libc_hidden_def.
1780         * sysdeps/generic/tcsetattr.c (tcsetattr): Likewise.
1781         * sysdeps/generic/speed.c (cfsetispeed, cfsetospeed): Likewise.
1782         * sysdeps/unix/bsd/bsd4.4/tcsetattr.c (tcgetpgrp): Likewise.
1783         * sysdeps/unix/bsd/sun/sunos4/tcsetattr.c (tcsetattr): Likewise.
1784         * sysdeps/unix/bsd/sun/sunos4/speed.c (cfsetispeed, cfsetospeed):
1785         Likewise.
1786         * sysdeps/unix/bsd/tcgetpgrp.c (tcgetpgrp): Likewise.
1787         * sysdeps/unix/bsd/tcsetattr.c (tcsetattr): Likewise.
1788         * sysdeps/unix/sysv/aix/tcsetattr.c (tcsetattr): Likewise.
1789         * sysdeps/unix/sysv/aix/speed.c (cfsetispeed, cfsetospeed): Likewise.
1790         * sysdeps/unix/sysv/linux/tcsetattr.c (tcsetattr): Likewise.
1791         * sysdeps/unix/sysv/linux/speed.c (cfsetispeed, cfsetospeed): Likewise.
1792         * sysdeps/unix/sysv/tcgetpgrp.c (tcgetpgrp): Likewise.
1793         * sysdeps/unix/sysv/tcsetattr.c (tcsetattr): Likewise.
1795         * include/string.h (strcoll): Add libc_hidden_proto.
1796         * string/strcoll.c (strcoll): Add libc_hidden_def.
1798         * misc/err.c (vwarn): Fix pasto in libc_hidden_def.
1800 2002-08-11  Philip Blundell  <philb@gnu.org>
1802         * sysdeps/arm/Makefile: New file.
1804 2002-08-08  Jakub Jelinek  <jakub@redhat.com>
1806         * posix/regcomp.c (parse_reg_exp): If '|' is immediately followed
1807         by another '|', end of regex or enclosing ')', clear branch.
1808         * posix/bug-regex9.c: New test.
1809         * posix/Makefile (tests): Add bug-regex9.
1811 2002-08-12  Roland McGrath  <roland@redhat.com>
1813         * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Fix inner loop
1814         start count condition, use TOTAL instead of variable that was never
1815         set.  Fix outer loop termination condition to TOTAL >= after update.
1817         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Initialize
1818         dl_tls_static_align and dl_tls_static_nelem.
1820 2002-08-11  Roland McGrath  <roland@redhat.com>
1822         * elf/tst-tlsmod4.c (in_dso): Insert a random library call before use
1823         of the TLS macros, otherwise the compiler might not have initialized
1824         the PIC register yet when we use the PLT via asm.
1825         * elf/tst-tlsmod3.c (in_dso2): Likewise.
1826         * elf/tst-tlsmod2.c (in_dso): Likewise.
1828         * sunrpc/svc_authux.c (_svcauth_unix): Remove spurious printf (ugh!).
1830         * sysdeps/i386/bits/byteswap.h (__bswap_16, __bswap_32, __bswap_64):
1831         Evaluate argument exactly once.  Remove __volatile__ from asm's.
1833         * include/unistd.h: Use libc_hidden_proto for getdomainname
1834         and getlogin_r.
1835         * sysdeps/generic/getdomain.c: Add libc_hidden_def.
1836         * sysdeps/mach/hurd/getdomain.c: Likewise.
1837         * sysdeps/unix/getlogin_r.c: Likewise.
1838         * sysdeps/mach/hurd/getlogin_r.c: Likewise.
1839         * sysdeps/generic/getlogin_r.c: Likewise.
1841         * include/rpc/auth_des.h: Use libc_hidden_proto for rtime.
1842         * sunrpc/rtime.c: Add libc_hidden_def.
1844         * include/string.h: Use libc_hidden_proto for basename.
1845         * string/basename.c [_LIBC]: Add libc_hidden_def.
1847         * sysdeps/unix/sysv/linux/opensock.c (__opensock): socket -> __socket.
1849         * locale/loadarchive.c: munmap -> __munmap throughout.
1851         * include/netdb.h: Use libc_hidden_proto for gai_strerror.
1852         * sysdeps/posix/gai_strerror.c: Add libc_hidden_def.
1853         * sysdeps/generic/gai_strerror.c: Likewise.
1855         * include/sys/errno.h: New file.
1857         * include/signal.h: No libc_hidden_proto for raise,
1858         __libc_current_sigrtmin, __libc_current_sigrtmax.
1859         These need to be overridden by linuxthreads.
1860         * sysdeps/posix/raise.c: Reverted.
1861         * sysdeps/generic/raise.c: Reverted.
1862         * signal/allocrtsig.c: Reverted.
1864         * locale/loadarchive.c (LOCALEDIR): Remove debugging defn.  Oops.
1866 2002-08-10  Roland McGrath  <roland@redhat.com>
1868         * locale/loadarchive.c (_nl_archive_subfreeres): New function.
1869         * locale/localeinfo.h: Declare it.
1870         * locale/setlocale.c (free_mem): Don't call _nl_unload_locale on the
1871         current locale if it's not in the file list.
1872         Call _nl_archive_subfreeres.
1874 2002-08-10  Andreas Jaeger  <aj@suse.de>
1876         * sysdeps/i386/strchr.S: Add comment.
1878 2002-08-10  Roland McGrath  <roland@redhat.com>
1880         * include/wchar.h (putwc): Use libc_hidden_proto.
1881         * include/stdio.h (dprintf, fprintf, vfprintf, sprintf,
1882         sscanf, fwrite, perror, remove, rewind, open_memstream): Likewise.
1883         * stdio-common/dprintf.c: Add libc_hidden_def.
1884         * stdio-common/fprintf.c: Likewise.
1885         * stdio-common/sprintf.c: Likewise.
1886         * stdio-common/sscanf.c: Likewise.
1887         * libio/iofwrite.c: Likewise.
1888         * libio/memstream.c: Likewise.
1889         * libio/putwc.c: Likewise.
1890         * stdio-common/perror.c: Likewise.
1891         * sysdeps/posix/remove.c: Likewise.
1892         * sysdeps/generic/remove.c: Likewise.
1893         * libio/rewind.c: Likewise.  Use <stdio.h> instead of "stdio.h".
1894         * stdio-common/vfprintf.c: Add libc_hidden_def.  Include <stdio.h>.
1896 2002-08-09  Jakub Jelinek  <jakub@redhat.com>
1898         * include/wctype.h (iswalpha, iswdigit, iswlower, iswspace, iswxdigit,
1899         towlower, towupper): Add prototypes here too.  Add libc_hidden_proto.
1900         * wctype/wcfuncs.c (iswalpha, iswdigit, iswlower, iswspace, iswxdigit,
1901         towlower, towupper): Add libc_hidden_weak.
1903         * include/bits/dlfcn.h: New file.
1904         * elf/dl-profstub.c (_dl_mcount_wrapper_check): Add libc_hidden_def.
1906         * include/grp.h (_nss_files_parse_grent): Add libc_hidden_proto.
1907         * include/netinet/ether.h (_nss_files_parse_etherent): Likewise.
1908         * include/rpc/netdb.h (_nss_files_parse_rpcent): Likewise.
1909         * include/pwd.h (_nss_files_parse_pwent): Likewise.
1910         * include/shadow.h (_nss_files_parse_spent): Likewise.
1911         * include/netdb.h (_nss_files_parse_protoent,
1912         _nss_files_parse_servent, _nss_files_parse_netent): Likewise.
1913         * nss/nss_files/files-parse.c (nss_files_parse_hidden_def): Define.
1914         (LINE_PARSER): Use it.
1915         * nss/nsswitch.h (__nss_hostname_digits_dots): Add libc_hidden_proto.
1916         * nss/digits_dots.c (__nss_hostname_digits_dots): Add libc_hidden_def.
1918         * libio/oldiopopen.c: Move #if SHLIB_COMPAT after _IO_HAVE_SYS_WAIT
1919         #endif.
1921         * manual/debug.texi (%MENU%): Remove trailing dot.
1922         Reported by <hayastan132@hotmail.com>.
1924         * sysdeps/unix/sysv/linux/ia64/syscalls.list (llseek): Add lseek
1925         aliases.
1926         (lseek): Dummy.
1927         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (llseek, lseek):
1928         Likewise.
1930 2002-08-09  Roland McGrath  <roland@redhat.com>
1932         * locale/loadarchive.c (_nl_load_locale_from_archive): Parse locale
1933         name to find codeset name (if any) and normalize it.  If the
1934         normalized name differs, look up only that in the archive.
1935         * locale/programs/locarchive.c (add_locale_to_archive): If the name
1936         contains a codeset, normalize the codeset store only the normalized
1937         name in the archive.  If not, add an alias containing the locale's
1938         normalized codeset name.  Apply codeset name normalization when
1939         matching entries in the alias file.
1941         * locale/programs/locarchive.c (delete_locales_from_archive): Don't
1942         decrement HEAD->namehash_used here.
1943         (add_locale): Only need to insert name string when name_offset != 0.
1945         * locale/programs/localedef.c (options): Add -A/--alias-file.
1946         (alias_file): New variable.
1947         (parse_opt): Grok -A, set that.
1948         * locale/programs/localedef.h: Declare it.
1950         * locale/locarchive.h (struct locrecent): Add `refs' member.
1951         * locale/programs/locarchive.c (insert_name): New function, broken out
1952         of ...
1953         (add_locale_to_archive): ... here.  Call that.
1954         (add_alias): New function.
1955         (add_locale): New static function, add_locale_to_archive renamed.
1956         (add_locale_to_archive): Call that and use add_alias to add an alias
1957         for the name with codeset if the given name lacks it.
1958         (enlarge_archive): Call add_locale instead of add_locale_to_archive.
1960         * locale/Makefile (routines): Add loadarchive.
1961         * locale/loadarchive.c: New file, started from code by Ulrich Drepper.
1962         (_nl_load_locale_from_archive): New function.
1963         * locale/localeinfo.h: Declare it.
1964         * locale/findlocale.c (_nl_find_locale): If using default locale path,
1965         try _nl_load_locale_from_archive first.
1967         * locale/loadlocale.c (_nl_intern_locale_data): New function,
1968         broken out of _nl_load_locale.
1969         (_nl_load_locale): Call that.
1970         * locale/localeinfo.h: Declare it.
1971         (struct locale_data): Replace member `mmaped' with `alloc', an enum.
1972         (struct locale_data): Remove unused member `options'.
1973         * locale/findlocale.c (_nl_remove_locale): Update uses.
1974         * locale/loadlocale.c (_nl_load_locale, _nl_unload_locale): Likewise.
1975         * locale/C-collate.c: Update initializer.
1976         * locale/C-identification.c: Likewise.
1977         * locale/C-measurement.c: Likewise.
1978         * locale/C-telephone.c: Likewise.
1979         * locale/C-address.c: Likewise.
1980         * locale/C-name.c: Likewise.
1981         * locale/C-paper.c: Likewise.
1982         * locale/C-time.c: Likewise.
1983         * locale/C-numeric.c: Likewise.
1984         * locale/C-monetary.c: Likewise.
1985         * locale/C-messages.c : Likewise.
1986         * locale/C-ctype.c: Likewise.
1988         * locale/hashval.h [! LONGBITS]: Include <limits.h> here and
1989         use CHAR_BIT instead of BITSPERBYTE.
1991         * locale/localeinfo.h (_nl_find_locale, _nl_load_locale,
1992         _nl_unload_locale): Add `internal_function attribute_hidden' to decls.
1993         * locale/findlocale.c (_nl_find_locale): Add internal_function to defn.
1994         (_nl_remove_locale): Likewise.
1995         * locale/loadlocale.c (_nl_load_locale, _nl_unload_locale): Likewise.
1997         * locale/findlocale.c (_nl_default_locale_path): New variable.
1998         (_nl_find_locale): If LOCALE_PATH is null, default to that.
1999         * locale/localeinfo.h: Declare it.
2000         * locale/setlocale.c (setlocale): Use _nl_default_locale_path
2001         in place of LOCALEDIR.  If no LOCPATH, pass null to _nl_find_locale.
2002         * locale/newlocale.c (__newlocale): Likewise.
2004         * misc/err.c (vwarnx, vwarn): Fix typos in libc_hidden_def uses.
2005         * inet/rexec.c (rexec_af): Add libc_hidden_def.
2006         * sysdeps/generic/morecore.c: Likewise.
2007         * signal/allocrtsig.c (__libc_current_sigrtmin): Likewise.
2008         (__libc_current_sigrtmax): Likewise.
2010 2002-08-08  Roland McGrath  <roland@redhat.com>
2012         * locale/loadlocale.c (_nl_load_locale): Don't use MAP_INHERIT.
2013         * catgets/open_catalog.c (__open_catalog): Likewise.
2015         * locale/programs/locarchive.c (INITIAL_NUM_NAMES): Renamed
2016         from typo INITIAL_NUM_NANES.
2017         (create_archive): Update use.
2019 2002-08-08  Ulrich Drepper  <drepper@redhat.com>
2021         * sysdeps/unix/sysv/linux/sigwait.c: New file.
2023 2002-08-08  Roland McGrath  <roland@frob.com>
2025         * resolv/netdb.h: Don't declare h_errno as a plain global any more.
2027 2002-08-08  Jakub Jelinek  <jakub@redhat.com>
2029         * sysdeps/wordsize-64/wcstol_l.c (wcstoll_l): Define to something
2030         else and undefine after including wcstol_l.c.
2031         * sysdeps/wordsize-64/wcstoul_l.c (wcstoull_l): Similarly.
2033 2002-08-08  Ulrich Drepper  <drepper@redhat.com>
2035         * gmon/gmon.c (write_gmon): Use O_NOFOLLOW in open calls if available.
2037 2002-08-08  Alexandre Oliva  <aoliva@redhat.com>
2039         * configure.in: Make the test for broken_alias_attribute stricter.
2041 2002-05-24  Robert Love  <rml@tech9.net>
2043         * posix/Makefile (routines): Add sched_getaffinity and
2044         sched_setaffinity.
2045         * posix/sched.h: Add declarations for sched_getaffinity and
2046         sched_setaffinity.
2047         * sysdeps/generic/sched_getaffinity.c: New file.
2048         * sysdeps/generic/sched_setaffinity.c: New file.
2049         * sysdeps/unix/sysv/linux/syscalls.list: Add sched_getaffinity and
2050         sched_setaffinity.
2052 2002-08-06  Andreas Schwab  <schwab@suse.de>
2054         * sysdeps/unix/utime.c: If TIMES is NULL pass it through to utimes.
2056 2002-08-07  Ulrich Drepper  <drepper@redhat.com>
2058         * elf/dl-load.c (_dl_map_object_from_fd): Add missing \n in error
2059         message.
2061         * stdlib/isomac.c (get_null_defines): Treat NOT_IN_libc special.
2062         It is known to be defined.
2064         * include/string.h: Define index and rindex only if _ISOMAC is not
2065         defined.
2067         * elf/rtld.c: Include <errno.h>.
2068         * sysdeps/generic/libc-tls.c: Likewise.
2070 2002-08-07  Roland McGrath  <roland@redhat.com>
2072         * resolv/res_debug.c (latlon2ul): Add const to argument type, and use
2073         it internally.
2074         (precsize_aton): Likewise.
2076         * inet/getnetgrent_r.c (endnetgrent, __getnetgrent_r): Actually call
2077         the static symbols added in the last change (doofus is me).
2079         * locale/newlocale.c (__newlocale): Use a bit mask instead of a second
2080         loop to notice missing categories in a composite name.
2082         * locale/locale.h (LC_CTYPE_MASK, LC_NUMERIC_MASK, LC_TIME_MASK,
2083         LC_COLLATE_MASK, LC_MONETARY_MASK, LC_MESSAGES_MASK, LC_ALL_MASK,
2084         LC_PAPER_MASK, LC_NAME_MASK, LC_ADDRESS_MASK, LC_TELEPHONE_MASK,
2085         LC_MEASUREMENT_MASK, LC_IDENTIFICATION_MASK, LC_ALL_MASK): New macros.
2087 2002-08-07  Ulrich Drepper  <drepper@redhat.com>
2089         * malloc/tst-calloc.c: Add tests for one or both parameters being zero.
2091 2002-08-07  Roland McGrath  <roland@redhat.com>
2093         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add to, don't clobber,
2094         unrelocated initial value for DTPOFF32 and TPOFF32 relocs.
2095         Reported by Jakub Jelinek  <jakub@redhat.com>.
2097 2002-08-07  Jakub Jelinek  <jakub@redhat.com>
2099         * malloc/malloc.c (public_cALLOc): Check ELEM_SIZE != 0 before
2100         division.
2102 2002-08-06  Roland McGrath  <roland@redhat.com>
2104         * include/getopt.h: Put private decls inside [_GETOPT_H].
2105         Use libc_hidden_proto for getopt_long, getopt_long_only.
2106         * posix/getopt1.c [_LIBC]: Include <getopt.h> instead of "getopt.h".
2107         Add libc_hidden_def.
2109         * sysdeps/generic/unwind-dw2-fde-glibc.c [_LIBC] (dl_iterate_phdr):
2110         Define as a macro for __dl_iterate_phdr.
2112         * inet/getnetgrent_r.c (internal_setnetgrent): Renamed from __ name,
2113         made static.  Add __ name as a strong alias.
2114         (internal_endnetgrent): Likewise.
2115         (internal_getnetgrent_r): Likewise.
2117         * locale/Versions (libc: GLIBC_2.3): Add all the *_l functions
2118         with no __ prefix.
2119         * locale/langinfo.h [__USE_GNU]: Declare nl_langinfo_l.
2120         * ctype/ctype.h [__USE_GNU]: Add declarations and macros for
2121         all *_l functions with no __ prefix.
2122         * wctype/wcfuncs_l.c: Define weak aliases without __ for all fns.
2123         * ctype/ctype_l.c: Likewise.
2124         * locale/nl_langinfo.c: Likewise.
2125         * string/string.h [__USE_GNU]: Add decls for all *_l fns with no __.
2126         * stdlib/stdlib.h [__USE_GNU]: Likewise.
2127         * wcsmbs/wchar.h [__USE_GNU]: Likewise.
2128         * wctype/wctype.h [__USE_GNU]: Likewise.
2129         * string/strcoll_l.c (strcoll_l): Define as weak alias.
2130         * string/strxfrm_l.c (strxfrm_l): Define as weak alias.
2131         * sysdeps/generic/strcasecmp_l.c (strcasecmp_l): Define as weak alias.
2132         * sysdeps/generic/strncase_l.c (strncasecmp_l): Define as weak alias.
2133         * stdlib/strtod_l.c (strtod_l): Define as weak alias.
2134         * stdlib/strtof_l.c (strtof_l): Define as weak alias.
2135         * stdlib/strtold_l.c (strtold_l): Define as weak alias.
2136         * wcsmbs/wcscasecmp_l.c (wcscasecmp_l): Define as weak alias.
2137         (__wcscasecmp_l): Add libc_hidden_def.
2138         * wcsmbs/wcsncase_l.c (wcsncasecmp_l): Define as weak alias.
2139         (__wcsncasecmp_l): Add libc_hidden_def.
2140         * wcsmbs/wcstof_l.c (wcstof_l): Define as weak alias.
2141         * wcsmbs/wcstod_l.c (wcstod_l): Define as weak alias.
2142         * wcsmbs/wcstold_l.c (wcstold_l): Define as weak alias.
2143         * wcsmbs/wcscoll_l.c (wcscoll_l): Define as weak alias.
2144         * wcsmbs/wcsxfrm_l.c (wcsxfrm_l): Define as weak alias.
2145         * sysdeps/generic/wcstol_l.c (wcstol_l): Define as weak alias.
2146         * sysdeps/generic/wcstoll_l.c (wcstoll_l): Define as weak alias.
2147         * sysdeps/generic/wcstoul_l.c (wcstoul_l): Define as weak alias.
2148         * sysdeps/generic/wcstoull_l.c (wcstoull_l): Define as weak alias.
2149         * sysdeps/wordsize-64/wcstol_l.c (wcstoll_l): Define as weak alias.
2150         * sysdeps/wordsize-64/wcstoul_l.c (wcstoull_l): Define as weak alias.
2151         * wctype/wctrans_l.c (wctrans_l) Define as weak alias.
2152         * wctype/towctrans_l.c (towctrans_l) Define as weak alias.
2153         * wctype/wctype_l.c (wctype_l) Define as weak alias.
2155 2002-08-05  Roland McGrath  <roland@redhat.com>
2157         * include/rpc/auth.h: Use libc_hidden_proto for getnetname,
2158         netname2user, host2netname, user2netname, key_gendes.
2159         * sunrpc/netname.c: Add libc_hidden_def.
2160         * sunrpc/key_call.c: Likewise.
2162         * include/netdb.h: Use libc_hidden_proto for getaddrinfo, getnameinfo,
2163         freeaddrinfo.
2164         * inet/getnameinfo.c: Add libc_hidden_def.
2165         * sysdeps/generic/getaddrinfo.c: Likewise.
2166         * sysdeps/posix/getaddrinfo.c: Likewise.
2168         * include/wchar.h: Use libc_hidden_proto for wmemchr, wmemset.
2169         * wcsmbs/wmemchr.c: Add libc_hidden_def.
2170         * wcsmbs/wmemset.c: Add libc_hidden_def.
2172         * include/string.h: Move libc_hidden_proto's inside #ifndef _STRING_H.
2173         (index, rindex): Define as macros for strchr, strrchr.
2175         * string/envz.c (envz_strip): index -> strchr
2177         * include/rpc/rpc_msg.h: Use libc_hidden_proto for _seterr_reply.
2178         * sunrpc/rpc_prot.c: Add libc_hidden_def.
2180         * include/wchar.h: Use libc_hidden_proto for mbrtowc.
2181         * wcsmbs/mbrtowc.c: Add libc_hidden_weak.
2183         * include/stdlib.h: Use libc_hidden_proto for wctomb.
2184         * stdlib/wctomb.c: Add libc_hidden_def.
2186         * include/netdb.h: Use libc_hidden_proto for innetgr, rcmd_af,
2187         rexec_af, rresvport_af, ruserok_af, iruserok_af, ruserpass, hstrerror.
2188         * resolv/herror.c: Likewise.
2189         * inet/rcmd.c: Add libc_hidden_def.
2190         * inet/ruserpass.c: Likewise.
2191         * inet/getnetgrent_r.c: Likewise.
2193         * include/rpc/svc.h: Use libc_hidden_proto for svc_register,
2194         svc_unregister, remove *_internal decls.  Use libc_hidden_proto
2195         for svcerr_auth, svcerr_noprog, svcerr_progvers.
2196         * sunrpc/svc.c (svc_register, svc_unregister): Change INTDEF to
2197         libc_hidden_def.
2198         (svcerr_auth, svcerr_noprog, svcerr_progvers): Add libc_hidden_def.
2199         * sunrpc/svc_simple.c (registerrpc): Nix INTUSE for svc_register.
2201         * sysdeps/posix/system.c (do_system): New function, guts broken out of
2202         __libc_system.
2203         (__libc_system): Call it, putting just the line == NULL test here.
2205         * include/libc-symbols.h (__hidden_proto): Add extern keywords so
2206         variables work right.
2208         * elf/dl-open.c (dl_open_worker): Use _ macro instead of gettext.
2209         * elf/dl-close.c (_dl_close): Likewise.
2211         * include/netinet/in.h: Use libc_hidden_proto for bindresvport,
2212         in6addr_any, in6addr_loopback.  Remove decls for
2213         bindresvport_internal, in6addr_any_internal, in6addr_loopback_internal.
2214         * sunrpc/svc_udp.c (svcudp_bufcreate): Nix INTUSE for bindresvport.
2215         * sunrpc/svc_tcp.c (svctcp_create): Likewise.
2216         * sunrpc/clnt_udp.c (clntudp_bufcreate): Likewise.
2217         * sunrpc/bindrsvprt.c: Change INTDEF to libc_hidden_def.
2218         * inet/in6_addr.c: Change INTVARDEF to libc_hidden_def.
2219         * sysdeps/posix/getaddrinfo.c (gaih_inet): Nix INTUSE for
2220         in6addr_loopback.
2221         * inet/gethstbyad_r.c (PREPROCESS): Nix INTUSE for in6addr_any.
2223         * include/netinet/ether.h: Use libc_hidden_proto for ether_ntoa_r,
2224         ether_aton_r.
2225         * inet/ether_aton_r.c: Add libc_hidden_def.
2226         * inet/ether_ntoa_r.c: Likewise.
2228         * include/rpc/svc.h: Use libc_hidden_proto for xprt_register,
2229         xprt_unregister.
2230         * sunrpc/svc.c: Add libc_hidden_def.
2231         * include/rpc/pmap_clnt.h: Use libc_hidden_proto for pmap_getport,
2232         pmap_set, pmap_unset.
2233         * sunrpc/pmap_clnt.c: Add libc_hidden_def.
2234         * sunrpc/pm_getport.c: Likewise.
2235         * include/rpc/auth_des.h: Use libc_hidden_proto for getpublickey.
2236         * sunrpc/publickey.c: Add libc_hidden_def.
2238 2002-08-05  Ulrich Drepper  <drepper@redhat.com>
2240         * elf/rtld.c (_dl_start): Don't use memset.  Use same tricks as for
2241         the other memset call in this function.
2243         * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Store dtv pointer
2244         at correct index.  Clear BSS region now that memalign is used.
2246 2002-08-05  Roland McGrath  <roland@redhat.com>
2248         * include/sys/utsname.h: Use libc_hidden_proto for uname, __uname.
2249         * sysdeps/generic/uname.c: Add libc_hidden_def.
2250         * sysdeps/mach/hurd/uname.c: Likewise.
2252 2002-08-05  Jakub Jelinek  <jakub@redhat.com>
2254         * include/wchar.h (wcrtomb, wcscmp, wcsftime, wcsspn, wcschr, wcscoll,
2255         wcspbrk): Add libc_hidden_proto.
2256         * time/strftime.c (my_strftime): Add libc_hidden_def.
2257         (strftime): Remove libc_hidden_def.
2258         * wcsmbs/wcschr.c (wcschr): Add libc_hidden_def.
2259         * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
2260         * wcsmbs/wcsspn.c (wcsspn): Likewise.
2261         * wcsmbs/wcscmp.c (wcscmp): Likewise.
2262         * wcsmbs/wcrtomb.c (wcrtomb): Add libc_hidden_weak.
2263         * wcsmbs/wcscoll.c (wcscoll): Likewise.
2265         * include/rpc/rpc.h (__rpc_thread_svc_max_pollfd,
2266         __rpc_thread_svc_pollfd, __rpc_thread_svc_fdset,
2267         __rpc_thread_createerr): Add libc_hidden_proto.
2268         * sunrpc/rpc_thread.c (__rpc_thread_svc_max_pollfd,
2269         __rpc_thread_svc_pollfd, __rpc_thread_svc_fdset,
2270         __rpc_thread_createerr): Add libc_hidden_def.
2272         * include/rpc/clnt.h (clnt_sperrno, clnt_spcreateerror,
2273         clnt_perror, clnt_sperror, _rpc_dtablesize): Add libc_hidden_proto.
2274         * sunrpc/clnt_perr.c (clnt_sperrno, clnt_spcreateerror,
2275         clnt_perror, clnt_sperror): Add libc_hidden_def.
2276         * sunrpc/rpc_dtable.c (_rpc_dtablesize): Likewise.
2278         * include/rpc/des_crypt.h (des_setparity, ecb_crypt, cbc_crypt): Add
2279         libc_hidden_proto.
2280         * sunrpc/des_crypt.c (ecb_crypt, cbc_crypt): Add libc_hidden_proto.
2281         * sunrpc/des_soft.c (des_setparity): Likewise.
2283         * include/rpc/auth.h (key_encryptsession_pk, key_decryptsession_pk):
2284         Add libc_hidden_proto.
2285         * sunrpc/key_call.c (key_encryptsession_pk, key_decryptsession_pk):
2286         Add libc_hidden_def.
2288 2002-08-05  Roland McGrath  <roland@redhat.com>
2290         * sysdeps/generic/ldsodefs.h (struct rtld_global): Replace member
2291         `bool _dl_initial_dtv_malloced' with `void *_dl_initial_dtv'.
2292         * elf/rtld.c (dl_main): Set it to the new dtv for the main thread.
2293         * sysdeps/generic/dl-tls.c (__tls_get_addr): When reallocating the
2294         dtv, check if it matches _dl_initial_dtv; if so, malloc and copy the
2295         old data, abandoning the original memory allocated by rtld at startup,
2296         instead of calling realloc normally.
2298 2002-08-05  Ulrich Drepper  <drepper@redhat.com>
2300         * po/fr.po: Update from translation team.
2302 2002-08-04  Roland McGrath  <roland@redhat.com>
2304         * sysdeps/unix/make-syscalls.sh: If the syscall name field is -
2305         then generate a dummy module under the given name, obeying the
2306         normal rules for the "caller" field.
2308         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Make the phdr loop
2309         actually iterate over the elements.  Fix typo p_type -> p_vaddr.
2311         * include/pthread.h: Don't declare __pthread_initialize_minimal as
2312         weak here; we declare it weak or strong in the one place we use it.
2313         * sysdeps/generic/libc-start.c: ... which is here.
2314         Don't make the decl weak if [USE_TLS], since static programs need TLS
2315         setup even when single-threaded.
2317         * stdlib/isomac.c (fmt): Add -DNOT_IN_libc to the compiler command.
2319         * elf/Makefile (test-srcs): Add $(modules-names) to it.
2320         (CFLAGS-vismod2.c, CFLAGS-failobj.c, CFLAGS-constload2.c,
2321         CFLAGS-reldepmod3.c, CFLAGS-reldepmod4.c, CFLAGS-ltglobmod2.c): Remove
2322         all these variables.
2324 2002-08-04  Ulrich Drepper  <drepper@redhat.com>
2326         * include/stdio.h: Don't define macro magic to redirect function
2327         calls if _ISOMAC is defined.
2329         * sysdeps/i386/fpu/libm-test-ulps: Add epsilons for inlined
2330         ldouble asin tests.
2332 2002-08-04  Roland McGrath  <roland@redhat.com>
2334         * stdlib/lrand48_r.c: Add libc_hidden_def.
2336         * sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage): Allocate the
2337         TCB with __libc_memalign instead of mmap.
2338         (_dl_deallocate_tls): Free it with free instead of munmap.
2340         * Makerules (cpp-srcs-left): When setting this to run
2341         cppflags-iterator.mk, must append .c to $(tests) and $(xtests)
2342         words.  Combine the two loops into one on the concatenated list,
2343         including those as well as $(test-srcs).
2345         * elf/dl-minimal.c (__libc_memalign): Guts of malloc moved here,
2346         since we align here with optimally minimal waste anyway.
2347         (malloc): Just call that.
2349         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Set l_tls_offset to
2350         the right variable.
2352         * elf/dl-load.c (_dl_map_object_from_fd): Use p_vaddr, not p_offset,
2353         to compute memory location for l_tls_initimage.
2354         * elf/rtld.c (_dl_start): Likewise.
2355         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Likewise.
2357         * libio/oldiopopen.c: Move #include's before #if SHLIB_COMPAT,
2358         because the .d file is generated in the non-shared case and
2359         so fails to catch them otherwise.
2361         * sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage): New function,
2362         split out of _dl_allocate_tls.
2363         (_dl_allocate_tls_init): Likewise.
2364         (_dl_allocate_tls): Call those.
2365         * sysdeps/generic/ldsodefs.h: Declare them with attribute_hidden.
2366         * elf/rtld.c (dl_main): Call them separately instead of calling
2367         _dl_allocate_tls.  Delay _dl_allocate_tls_init until after relocation
2368         is finished, so that the initializer data has been relocated before we
2369         copy it into the main thread's TLS block.
2371         * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Fix off-by-one error in
2372         loop conditions, prevented the last used module from being initialized.
2374 2002-08-04  Jakub Jelinek  <jakub@redhat.com>
2376         * sysdeps/generic/glob.c (glob, globfree): Only use libc_hidden_def
2377         if glob resp. globfree are not macros.
2378         * sysdeps/gnu/glob64.c (globfree64): Add libc_hidden_def.
2379         * sysdeps/unix/sysv/linux/alpha/glob.c (glob, globfree, globfree64):
2380         Add libc_hidden_ver.
2381         * sysdeps/unix/sysv/linux/i386/glob64.c (globfree64): Add
2382         libc_hidden_def.
2383         * sysdeps/wordsize-64/glob.c (globfree64): Use libc_hidden_ver
2384         instead of libc_hidden_weak.
2385         * sysdeps/wordsize-64/strtol.c (__strtoll_internal): Use
2386         libc_hidden_ver instead of libc_hidden_def.
2387         * sysdeps/wordsize-64/wcstol.c (__wcstoll_internal): Use
2388         libc_hidden_ver instead of libc_hidden_def.
2389         (wcstoll, wcstoq): Remove libc_hidden_weak.
2390         * sysdeps/wordsize-64/strtol_l.c (____strtoll_l_internal): Add
2391         libc_hidden_ver.
2392         * sysdeps/wordsize-64/strtoul.c (__strtoull_internal): Add
2393         libc_hidden_ver.
2394         * sysdeps/wordsize-64/strtoul_l.c (____strtoull_l_internal): Add
2395         libc_hidden_ver.
2396         * sysdeps/wordsize-64/wcstoul.c (__wcstoull_internal): Add
2397         libc_hidden_ver.
2399 2002-08-04  Ulrich Drepper  <drepper@redhat.com>
2401         * stdio-common/psignal.c: Declare _sys_siglist_internal.  Use USEINT
2402         to access _sys_siglist.
2403         * string/strsignal.c: Likewise.
2404         * sysdeps/generic/siglist.c: Add _sys_siglist_internal alias.
2405         * sysdeps/gnu/siglist.c: Likewise.
2406         * sysdeps/unix/siglist.c: Likewise.
2407         * sysdeps/unix/sysv/linux/arm/siglist.c: Likewise.
2409         * libio/fileops.c: Add missing INTUSEs for _IO_file_jumps.
2411         * libio/wfileops.c: Add missing INTUSE for _IO_file_close.
2413         * intl/dcigettext.c: Define _nl_default_dirname_internal as hidden
2414         alias and use it.
2415         * intl/bindtextdom.c: Use _nl_default_dirname_internal.
2417         * include/netinet/in.h: Add declaration of in6addr_loopback_internal.
2418         * inet/in6_addr.c: Add INTVARDEF for in6addr_loopback.
2419         * sysdeps/posix/getaddrinfo.c: Use INTUSE for in6addr_loopback access.
2421         * include/time.h: Add libc_hidden_proto for __gmtime_r.
2422         * time/gmtime.c (__gmtime_r): Add libc_hidden_def.
2424         * iconv/Versions: Replace __gconv_alias_db, __gconv_modules_db,
2425         and __gconv_cache with __gconv_get_alias_db, __gconv_get_modules_db,
2426         and __gconv_get_cache respectively.
2427         * iconv/gconv_cache.c (gconv_cache): Renamed for __gconv_cache and
2428         defined static.  Change all users.
2429         (__gconv_get_cache): New function.
2430         * iconv/gconv_db.c (__gconv_get_modules_db): New function.
2431         (__gconv_get_alias_db): New function.
2432         * iconv/gconv_int.h (__gconv_alias_db): Declare as hidden.
2433         (__conv_modules_db): Likewise.
2434         Add prototypes for __gconv_get_cache, __gconv_get_modules_db,
2435         and __gconv_get_alias_db.
2436         * iconv/iconv_prog.c: Use the new functions instead of accessing the
2437         variables.
2439         * include/stdlib.h: Add prototype and libc_hidden_proto for
2440         __default_morecore.
2441         * sysdeps/generic/morecore.c: Include <stdlib.h>.
2443         * malloc/obstack.c: Remove fputs macro.
2445         * malloc/mtrace.c: Remove fopen macro.
2447 2002-08-04  Jakub Jelinek  <jakub@redhat.com>
2449         * manual/debug.texi: Fix spelling to programmatically.
2450         Reported by <hayastan132@hotmail.com>.
2452 2002-08-04  Ulrich Drepper  <drepper@redhat.com>
2454         * include/libio.h: Add libc_hidden_proto for __uflow.
2455         * include/stdio.h: Map fopen, fdopen, fclose, fputs, fsetpos, and
2456         fgetpos to _IO_* names.
2457         Add libc_hidden_proto for fileno, fwrite, fseek, fflush_unlocked,
2458         fread_unlocked, fwrite_unlocked, fgets_unlocked, fputs_unlocked.
2459         * include/wchar.h: Add libc_hidden_proto for fputws_unlocked,
2460         putwc_unlocked, vswscanf.
2461         * libio/iolibio.h: Add libc_hidden_proto for _IO_fputs.
2462         * libio/fileno.c: Use <stdio.h> and libc_hidden_def.
2463         * libio/fseek.c: Likewise.
2464         * libio/fmemopen.c: Include "libioP.h".  Call _IO_fopencookie and
2465         not fopencookie.
2466         * libio/genops.c (__uflow): Add libc_hidden_def.
2467         * libio/iofflush_u.c (fflush_unlocked): Likewise.
2468         * libio/iofgets_u.c (fgets_unlocked): Likewise.
2469         * libio/iofputs_u.c (fputs_unlocked): Likewise.
2470         * libio/iofputws_u.c (fputws_unlocked): Likewise.
2471         * libio/iofread_u.c (fread_unlocked): Likewise.
2472         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
2473         * libio/iovswscanf.c (vswscanf): Likewise.
2474         * libio/putwc_u.c (putwc_unlocked): Likewise.
2475         * libio/iofputs.c: Use libc_hidden_def instead of INTDEF.
2476         * malloc/malloc.c: Redirect fwrite calls to _IO_fwrite.
2477         * malloc/mtrace.c: Likewise.
2479         * sunrpc/clnt_perr.c: Remove fputs macro.
2480         * sunrpc/svc_simple.c: Likewise.
2481         * sunrpc/svc_tcp.c: Likewise.
2482         * sunrpc/svc_udp.c: Likewise.
2483         * sunrpc/xdr_rec.c: Likewise.
2484         * sunrpc/xdr_ref.c: Likewise.
2486         * iconv/Makefile: Add CPPFLAGS definitions with -DNOT_in_libc for
2487         iconv_prog, linereader, and charmap-dir.
2488         * locale/Makefile: Likewise for locale and charmap-dir.
2489         * malloc/Makefile: Likewise for memusagestat.
2490         * nscd/Makefile: Likewise for nscd, nscd_conf, and dbg_log.
2491         * sunrpc/Makefile: Likewise for rpc_main.
2492         * sysdeps/unix/sysv/linux/Makefile: Likewise for lddlibc4.
2493         * timezone/Makefile: Likewise for zic.
2495         * stdio-common/perror.c: Avoid multiple calls to fileno_unlocked.
2497         * elf/dl-addr.c (_dl_addr): Add libc_hidden_def.
2498         * elf/dl-close.c (_dl_close): Add libc_hidden_def.
2499         * elf/dl-open.c (_dl_open): Add libc_hidden_def.
2500         * include/dlfcn.h: Add libc_hidden_proto for _dl_addr, _dl_open,
2501         _dl_close.
2503         * include/libio.h: Add libc_hidden_proto for __underflow, __wuflow,
2504         __wunderflow.
2505         * libio/genops.c (__underflow): Add libc_hidden_def.
2506         * libio/wgenops.c (__wuflow): Likewise.
2507         (__wunderflow): Likewise.
2509         * include/obstack.h: Add libc_hidden_proto for _obstack_newchunk.
2510         * malloc/obstack.c (_obstack_newchunk): Add libc_hidden_def.
2512         * include/stdio.h: Add libc_hidden_proto for __vfscanf.
2513         * stdio-common/vfscanf.c (__vfscanf): Add libc_hidden_def.
2515         * include/string.h: Add libc_hidden_proto for __strverscmp.
2516         * string/strverscmp.c (__strverscmp): Add libc_hidden_def.
2518         * include/unistd.h: Add libc_hidden_proto for __sysconf.
2519         * sysdeps/generic/sysconf.c (__sysconf): Add libc_hidden_def.
2520         * sysdeps/posix/sysconf.c: Likewise.
2521         * sysdeps/unix/sysv/irix4/sysconf.c: Likewise.
2522         * sysdeps/unix/sysv/sysv4/sysconf.c: Likewise.
2524         * include/wctype.h: Use libc_hidden_proto for __iswctype, __iswalnum_l,
2525         __iswalpha_l, __iswblank_l, __iswcntrl_l, __iswdigit_l, __iswlower_l,
2526         __iswgraph_l, __iswprint_l, __iswpunct_l, __iswspace_l, __iswupper_l,
2527         __iswxdigit_l, __towlower_l, __towupper_l.
2528         * wcsmbs/wcstype.c (__iswctype): Use libc_hidden_def.
2529         * wcsmbs/wcfuncs_l.c: Use libc_hidden_def for all functions.
2531         * include/sys/wait.h: Add libc_hidden_proto for __xmknod.
2532         * sysdeps/generic/xmknod.c (__xmknod): Add libc_hidden_def.
2533         * sysdeps/mach/hurd/xmknod.c: Likewise.
2534         * sysdeps/unix/xmknod.c: Likewise.
2535         * sysdeps/unix/sysv/linux/xmknod.c: Likewise.
2536         * sysdeps/unix/sysv/linux/alpha/xmknod.c: Likewise.
2537         * sysdeps/unix/sysv/linux/mips/xmknod.c: Likewise.
2539         * sunrpc/svc.c: Add missing INTUSE for _authenticate.
2541 2002-08-03  Roland McGrath  <roland@redhat.com>
2543         * include/sys/resource.h: Use libc_hidden_proto for getpriority,
2544         setpriority.
2545         * sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
2546         * sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
2547         * sysdeps/unix/sysv/irix4/setpriority.c: Likewise.
2548         * sysdeps/mach/hurd/setpriority.c: Likewise.
2549         * sysdeps/mach/hurd/getpriority.c: Likewise.
2550         * sysdeps/generic/setpriority.c: Likewise.
2551         * sysdeps/generic/getpriority.c: Likewise.
2553         * include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
2554         * malloc/mcheck.c: Add libc_hidden_def.
2556         * include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
2557         * misc/hsearch_r.c: Add libc_hidden_def.
2559         * include/fnmatch.h: Use libc_hidden_proto for fnmatch.
2560         * posix/fnmatch.c: Add libc_hidden_weak.
2562         * include/unistd.h: Use libc_hidden_proto for _exit, alarm, confstr,
2563         execl, execle, execlp, execvp, getpid, getsid.
2564         * sysdeps/generic/alarm.c: Add libc_hidden_def.
2565         * sysdeps/unix/alarm.c: Likewise.
2566         * posix/confstr.c: Likewise.
2567         * posix/execvp.c: Likewise.
2568         * posix/execlp.c: Likewise.
2569         * posix/execle.c: Likewise.
2570         * posix/execl.c: Likewise.
2571         * sysdeps/generic/getsid.c: Likewise.
2572         * sysdeps/mach/hurd/getsid.c: Likewise.
2573         * sysdeps/generic/getpid.c: Add libc_hidden_weak.
2574         * sysdeps/mach/hurd/getpid.c: Likewise.
2576         * include/stdlib.h: Use libc_hidden_proto for ecvt_r, fcvt_r,
2577         qecvt_r, qfcvt_r, lrand48_r.
2578         * misc/efgcvt_r.c: Add libc_hidden_def.
2580         * include/wordexp.h: Use libc_hidden_proto for wordfree.
2581         * sysdeps/generic/wordexp.c: Add libc_hidden_def.
2583         * include/langinfo.h: Use libc_hidden_proto for nl_langinfo.
2584         * locale/nl_langinfo.c: Add libc_hidden_def.
2586         * include/glob.h: Use libc_hidden_proto for glob, globfree, globfree64.
2587         * sysdeps/generic/glob.c: Add libc_hidden_def.
2588         * sysdeps/generic/glob64.c: Likewise.
2589         * sysdeps/wordsize-64/glob.c (globfree64): Add libc_hidden_weak.
2591         * locale/nl_langinfo.c: Use _NL_CURRENT_DATA.
2593         * elf/Makefile (CFLAGS-vismod2.c): New variable.
2595         * locale/setlocale.c (_nl_current_names): Variable moved ...
2596         * locale/localename.c (_nl_current_names): ... here, new file.
2597         Make it global, with attribute_hidden.
2598         * locale/localeinfo.h: Declare it.
2599         * locale/Makefile (aux): Add localename.
2600         * locale/localename.c (__current_locale_name): New function.
2601         * include/locale.h (__current_locale_name): Declare it.
2602         * intl/dcigettext.c (guess_category_value): Use that instead of
2603         calling setlocale.
2605         * locale/locale.h [__USE_GNU] (locale_t): New type alias of __locale_t.
2606         [__USE_GNU] (newlocale, duplocale, freelocale, uselocale): New decls.
2607         [__USE_GNU] (LC_GLOBAL_LOCALE): New macro.
2608         * locale/newlocale.c: Add alias to __ name.
2609         * locale/duplocale.c: Likewise.
2610         * locale/freelocale.c: Likewise.
2611         * locale/uselocale.c: New file.
2612         * locale/Makefile (routines): Add it.
2613         * locale/Versions (libc: GLIBC_2.3): New set.
2614         Add newlocale, duplocale, freelocale, uselocale.
2615         (libc: GLIBC_PRIVATE): Add __uselocale.
2617         * locale/localeinfo.h [SHARED]
2618         (_NL_CURRENT_LOCALE): New macro, defined to fetch a tsd value.
2619         (_NL_CURRENT_DATA): Define using that.
2620         (_NL_CURRENT, _NL_CURRENT_WSTR, _NL_CURRENT_WORD): Define using that.
2621         (_NL_CURRENT_DEFINE): Define to empty.
2622         [! SHARED]: Decls of _nl_current_CATEGORY and _nl_current
2623         conditionalized on this.
2624         * locale/xlocale.c (NL_C_INTIIALIZER): New macro,
2625         taking initializer of _nl_C_locobj.
2626         [SHARED] (_nl_global_locale): New variable, using that initializer.
2627         (_nl_C_locobj): Use new macro for initialzier.
2628         * locale/setlocale.c [! SHARED] (_nl_current): Conditionalize on this.
2629         [! SHARED] (CATEGORY_USED): New macro.
2630         [SHARED] (CATEGORY_USED, _nl_C): New macros.
2631         (setdata, setlocale): Use that macro instead of examining _nl_current.
2632         (setdata): Set the slot in _nl_global_locale.
2633         Conditionalize setting of _nl_current on [! SHARED].
2634         * locale/findlocale.c [SHARED] (_nl_C): Define as a macro instead of
2635         declaration as an extern.
2636         * locale/newlocale.c (__newlocale): Use _nl_C_locobj instead of _nl_C.
2638         * include/locale.h: Use libc_hidden_proto for setlocale.
2639         * locale/setlocale.c: Add libc_hidden_def.
2641         * locale/setlocale.c (free_mem): Use _NL_CURRENT_DATA.
2643         * include/search.h: Use libc_hidden_proto for hsearch_r, lfind.
2644         * misc/hsearch_r.c: Add libc_hidden_def.
2645         * misc/lsearch.c: Likewise.
2647         * include/ttyent.h: Use libc_hidden_proto for getttyent, setttyent,
2648         endttyent.
2649         * misc/getttyent.c: Add libc_hidden_def.
2651         * include/mcheck.h: Use libc_hidden_proto for mcheck.
2652         * malloc/mcheck.c: Add libc_hidden_def.
2654         * include/envz.h: Use libc_hidden_proto for envz_entry, enz_remove.
2655         * include/argz.h: Use libc_hidden_proto for argz_delete.
2656         * string/argz-delete.c: Add libc_hidden_def.
2657         * string/envz.c: Likewise.  Use <envz.h>, not "envz.h".
2659         * sysdeps/unix/sysv/linux/x86_64/clone.S (thread_start): Use
2660         HIDDEN_JUMPTARGET for _exit.
2661         * sysdeps/unix/sysv/linux/m68k/clone.S (thread_start): Likewise.
2662         * sysdeps/unix/sysv/linux/i386/clone.S (thread_start): Likewise.
2663         * sysdeps/unix/sysv/linux/powerpc/clone.S: Likewise.
2664         * sysdeps/unix/_exit.S (_exit): Add libc_hidden_def.
2666         * include/libc-symbols.h: Fix [__ASSEMBLY__] -> [__ASSEMBLER__].
2667         [__ASSEMBLER__] (hidden_weak): Define using hidden_def, or to empty.
2668         [__ASSEMBLER__] (HIDDEN_JUMPTARGET): New macro.
2669         * sysdeps/unix/sysv/linux/i386/makecontext.S: Use it for exit.
2671         * include/stdlib.h: Use libc_hidden_proto for abort,
2672         __strtof_internal, __strtod_internal, __strtold_internal,
2673         __strtol_internal, __strtoll_internal, __strtoul_internal,
2674         __strtoull_internal. __strtof_l_internal, __strtod_l_internal,
2675         __strtold_l_internal, __strtol_l_internal, __strtoll_l_internal,
2676         __strtoul_l_internal, __strtoull_l_internal.
2677         * include/wchar.h: Use libc_hidden_proto for __wcstof_internal,
2678         __wcstod_internal, __wcstold_internal, __wcstol_internal,
2679         __wcstoll_internal, __wcstoul_internal, ____wcstof_l_internal,
2680         ____wcstod_l_internal, ____wcstold_l_internal, ____wcstol_l_internal,
2681         ____wcstoll_l_internal, ____wcstoul_l_internal, __wcscasecmp_l,
2682         __wcsncasecmp_l.
2683         * sysdeps/generic/abort.c: Add libc_hidden_def.
2684         * stdlib/strtod.c: Likewise.
2685         * sysdeps/generic/strtol.c: Likewise.
2686         * sysdeps/wordsize-64/strtol.c: Likewise.
2687         * sysdeps/wordsize-64/wcstol.c: Likewise.
2688         * sysdeps/wordsize-64/wcstol_l.c: Likewise.
2690         * include/stdlib.h: Use libc_hidden_proto for qsort.
2691         * stdlib/msort.c: Add libc_hidden_def.
2693         * include/utime.h: Use libc_hidden_proto for utime.
2694         * sysdeps/generic/utime.c: Add libc_hidden_def.
2695         * sysdeps/unix/utime.c: Likewise.
2697         * sysdeps/generic/utmp_file.c (LOCK_FILE): sigemptyset -> __sigemptyset
2698         * sysdeps/posix/profil.c (__profil): sigfillset -> __sigfillset
2699         * sysdeps/posix/sprofil.c (__sprofil): Likewise.
2700         * shadow/lckpwdf.c (__lckpwdf): Likewise (both).
2701         * sysdeps/posix/spawni.c (__spawni): sigismember -> __sigismember
2703         * include/signal.h: Use libc_hidden_proto for raise, sigemptyset,
2704         sigfillset, sigismember, __sigpause, __libc_current_sigrtmin,
2705         and __libc_current_sigrtmax.
2706         * signal/sigismem.c: Add libc_hidden_def.
2707         * signal/sigfillset.c: Likewise.
2708         * signal/sigempty.c: Likewise.
2709         * sysdeps/generic/sigpause.c (__sigpause): Likewise.
2710         * sysdeps/posix/sigpause.c (__sigpause): Likewise.
2711         * sysdeps/unix/bsd/osf/alpha/sigpause.S: Likewise.
2712         * sysdeps/posix/raise.c: Likewise.
2713         * sysdeps/generic/raise.c: Likewise.
2715 2002-08-03  Ulrich Drepper  <drepper@redhat.com>
2717         * include/string.h: Use libc_hidden_proto for __stpcpy.
2718         * sysdeps/alpha/stpcpy.S (__stpcpy): Add libc_hidden_def.
2719         * sysdeps/alpha/alphaev67/stpcpy.S: Likewise.
2720         * sysdeps/generic/stpcpy.c: Likewise.
2721         * sysdeps/i386/stpcpy.S: Likewise.
2722         * sysdeps/i386/i586/stpcpy.S: Likewise.
2723         * sysdeps/powerpc/stpcpy.S: Likewise.
2724         * sysdeps/sparc/sparc32/stpcpy.S: Likewise.
2725         * sysdeps/sparc/sparc64/stpcpy.S: Likewise.
2727         * include/string.h: Use libc_hidden_proto for __strcasecmp_l,
2728         __strncasecmp_l, __strdup, __strndup, __strerror_r.
2729         * sysdeps/generic/strcasecmp_l.c (__strcasecmp_l): Add
2730         libc_hidden_def.
2731         * string/strdup.c (__strdup): Likewise.
2732         * string/strndup.c (__strndup): Likewise.
2733         * sysdeps/generic/_strerror.c (__strerror_r): Likewise.
2734         * sysdeps/generic/strncase_l.c (__strncasecmp_l): Likewise.
2736 2002-08-03  Jakub Jelinek  <jakub@redhat.com>
2738         * include/libio.h: New file.
2739         * libio/libioP.h (__overflow, __woverflow): Remove libc_hidden_proto.
2740         * libio/iolibio.h: #include <libio.h>, not "libio.h".
2741         * sysdeps/generic/morecore.c (__sbrk): Add libc_hidden_proto.
2742         * sysdeps/unix/bsd/syscalls.list: Remove all __GI_* aliases.
2743         * sysdeps/unix/common/syscalls.list: Likewise.
2744         * sysdeps/unix/inet/syscalls.list: Likewise.
2745         * sysdeps/unix/sysv/irix4/syscalls.list: Likewise.
2746         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Likewise.
2747         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
2748         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
2749         * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
2750         * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
2751         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
2752         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
2753         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
2754         * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list: Likewise.
2755         * sysdeps/unix/syscalls.list: Likewise.
2757 2002-08-03  Jakub Jelinek  <jakub@redhat.com>
2758             Ulrich Drepper  <drepper@redhat.com>
2760         * malloc/malloc.c (public_cALLOc): Only divide if at least one of
2761         the arguments is big enough to cause an overflow.
2763 2002-08-03  Ulrich Drepper  <drepper@redhat.com>
2765         * assert/assert.c: Use hidden_def not INTDEF.
2767 2002-08-03  Jakub Jelinek  <jakub@redhat.com>
2769         * include/libc-symbols.h: Optimize if HAVE_BROKEN_ALIAS_ATTRIBUTE is
2770         not defined.
2772 2002-08-03  Roland McGrath  <roland@redhat.com>
2774         * include/sys/syslog.h: Use libc_hidden_proto for syslog, vsyslog.
2775         * include/err.h: Use libc_hidden_proto for warn, warnx, vwarn, vwarn,
2776         verr, verrx.
2777         * include/stdlib.h: Use libc_hidden_proto for exit, getenv, bsearch.
2778         * misc/syslog.c: Add libc_hidden_def.
2779         * misc/err.c: Likewise.
2780         * stdlib/exit.c: Likewise.
2781         * stdlib/bsearch.c: Likewise.
2782         * sysdeps/generic/getenv.c: Likewise.
2784         * include/libc-symbols.h (hidden_weak): Define it for [__ASSEMBLER__].
2786         * sysdeps/unix/make-syscalls.sh: Generate libc_hidden_def or
2787         libc_hidden_weak for every system call symbol defined.
2789         * include/time.h: Use libc_hidden_proto for time, asctime, mktime,
2790         timelocal, localtime, strftime.
2791         * time/asctime.c: Add libc_hidden_def.
2792         * time/mktime.c: Likewise.
2793         * time/localtime.c: Likewise.
2794         * time/strftime.c: Likewise.
2795         * time/strptime.c: Likewise.
2796         * sysdeps/generic/time.c: Likewise.
2797         * sysdeps/unix/time.c: Likewise.
2798         * sysdeps/unix/sysv/i386/time.S: Likewise.
2799         * sysdeps/unix/sysv/linux/x86_64/time.S: Likewise.
2801         * include/arpa/inet.h: Use libc_hidden_proto for inet_ntop, inet_pton.
2802         inet_makeaddr, inet_netof, inet_addr, __inet_addr.
2803         * resolv/inet_ntop.c: Likewise.
2804         * resolv/inet_pton.c: Likewise.
2805         * inet/inet_mkadr.c: Add libc_hidden_def.
2806         * inet/inet_netof.c: Likewise.
2807         * resolv/inet_addr.c: Likewise.
2809         * include/libc-symbols.h: Remove `defined HAVE_BROKEN_ALIAS_ATTRIBUTE'
2810         clauses from conditionals for now.  Will have to be fixed later
2811         for older compilers.
2813         * sysdeps/generic/mempcpy.c (__mempcpy): #undef it before defn.
2815 2002-08-02  Ulrich Drepper  <drepper@redhat.com>
2817         * configure.in (HAVE_BROKEN_ALIAS_ATTRIBUTE): Add check for
2818         broken alias attribute handling.
2819         * config.h.in (HAVE_BROKEN_ALIAS_ATTRIBUTE): Add.
2821 2002-08-02  Roland McGrath  <roland@frob.com>
2823         * elf/Makefile ($(objpfx)interp.os): Depend on config.make,
2824         since it sets the variables we use in a -D switch.
2826 2002-08-02  Roland McGrath  <roland@redhat.com>
2828         * posix/bits/posix1_lim.h (SSIZE_MAX): Define to LONG_MAX, not INT_MAX.
2829         On 32-bit platforms they are the same; on 64-bit platforms ssize_t
2830         matches long int, not int.
2832         * locale/localeinfo.h (_NL_CURRENT_DATA): New macro.
2833         * wcsmbs/wcsmbsload.h (update_conversion_ptrs): Use it.
2834         * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
2835         * wctype/wctrans.c (wctrans): Likewise.
2836         * wctype/wctype.c (__wctype): Likewise.
2837         * intl/loadmsgcat.c (_nl_init_domain_conv): Use _NL_CURRENT.
2839 2002-08-02  Ulrich Drepper  <drepper@redhat.com>
2841         * assert/assert.c (__assert_fail): Fix typo in comment.
2843         * include/rpc/rpc.h: Declare RPC_VARS tsd as extern.
2844         * sunrpc/rpc_thread.c: Define it without static.
2845         * sunrpc/Versions [libc] (GLIBC_PRIVATE): Export __libc_tsd_RPC_VARS.
2847 2002-08-02  Jakub Jelinek  <jakub@redhat.com>
2849         * assert/assert.c (__assert_fail): Remove undef.
2850         Replace INTDEF with libc_hidden_def.
2851         * assert/__assert.c (__assert): Remove INTUSE.
2852         * elf/dl-minimal.c (__assert_fail): Replace INTDEF with
2853         libc_hidden_weak.
2854         * include/libc-symbols.h (hidden_proto, hidden_def, hidden_weak,
2855         hidden_ver, libc_hidden_proto, libc_hidden_def, libc_hidden_weak,
2856         libc_hidden_ver, rtld_hidden_proto, rtld_hidden_def, rtld_hidden_weak,
2857         rltd_hidden_ver, libm_hidden_proto, libm_hidden_def, libm_hidden_weak,
2858         libm_hiden_ver): Define.
2859         * include/assert.h (__assert_fail_internal): Remove.
2860         (__assert_fail): Add prototype.  Add hidden_proto.
2861         * include/libc-internal.h (__libc_freeres, __profile_frequency): Add
2862         libc_hidden_proto.
2863         * include/wchar.h (__mbrtowc_internal, __mbrlen_internal): Remove.
2864         (__mbrtowc, __mbrlen): Use libc_hidden_proto.  Remove macros.
2865         * include/string.h (__mempcpy, __stpncpy, __rawmemchr, __strcasecmp):
2866         Add libc_hidden_proto.
2867         * include/fcntl.h (__open64, __libc_open, __libc_fcntl, __open,
2868         __fcntl): Add libc_hidden_proto.  Remove macros.
2869         (__open_internal, __fcntl_internal): Remove.
2870         * libio/iofdopen.c (_IO_fcntl): Remove INTUSE from __fcntl.
2871         * malloc/set-freeres.c (__libc_freeres): Add libc_hidden_def.
2872         * nss/nsswitch.h (__nss_database_lookup, __nss_next): Add
2873         libc_hiden_proto.
2874         * nss/nsswitch.c (__nss_database_lookup, __nss_next): Add
2875         libc_hidden_def.
2876         * sysdeps/generic/mempcpy.c (__mempcpy): Remove undef.
2877         Add libc_hidden_def.
2878         * sysdeps/generic/open64.c (__open64): Add libc_hidden_def.
2879         * sysdeps/generic/open.c (__open): Remove undef.
2880         Add libc_hidden_def.  Remove INTDEF.
2881         * sysdeps/generic/fcntl.c (__fcntl): Remove undef.
2882         Add libc_hidden_def.
2883         * sysdeps/mach/hurd/fcntl.c (__fcntl): Likewise.
2884         * sysdeps/i386/i586/mempcpy.S (__mempcpy): Add libc_hidden_def.
2885         * sysdeps/i386/i686/mempcpy.S (__mempcpy): Likewise.
2886         * sysdeps/mach/hurd/fcntl.c (__libc_fcntl, __fcntl): Remove undef.
2887         (__fcntl): Remove INTDEF2.  Add libc_hidden_weak.
2888         (__libc_fcntl): Add libc_hidden_def.
2889         * sysdeps/mach/hurd/open.c (__libc_open, __open): Remove undef.
2890         (__open): Remove INTDEF2.  Add libc_hidden_weak.
2891         (__libc_open): Add libc_hidden_def.
2892         * sysdeps/posix/open64.c (__open64): Add libc_hidden_weak.
2893         * sysdeps/standalone/open.c (__open): Add libc_hidden_def.
2894         * sysdeps/unix/sysv/aix/fcntl.c (__libc_fcntl, __fcntl): Remove undef.
2895         Add libc_hidden_def.
2896         * sysdeps/unix/sysv/aix/open.c (__libc_open, __open): Remove undef.
2897         Add libc_hidden_def.
2898         * sysdeps/unix/sysv/linux/i386/fcntl.c (__libc_fcntl, __fcntl): Remove
2899         undef.
2900         (__fcntl): Remove INTDEF2.  Add libc_hidden_weak.
2901         (__libc_fcntl): Add libc_hidden_def.
2902         * sysdeps/unix/sysv/linux/syscalls.list (__fcntl_internal,
2903         __getpgid_internal, __chown_internal): Remove.
2904         (__GI___fcntl, __GI___libc_fcntl, __GI___getpgid, __GI___pipe,
2905         __GI___sched_setscheduler, __GI___select, __GI___setpgid,
2906         __GI___chown): Add.
2907         * sysdeps/unix/syscalls.list (__close_internal, __dup2_internal,
2908         __getpid_internal, __open_internal, __write_internal): Remove.
2909         (__GI___fcntl, __GI___libc_fcntl, __GI___open, __GI___libc_open,
2910         __GI___chown, __GI___close, __GI___dup2, __GI___getpid,
2911         __GI___libc_open, __GI___open, __GI___read, __GI___libc_read,
2912         __GI___select, __GI___statfs, __GI___write, __GI___libc_write): Add.
2913         * wcsmbs/mbrlen.c (__mbrlen): Remove undef.
2914         Replace INTDEF with libc_hidden_def.
2915         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
2916         * catgets/catgetsinfo.h (__open_catalog): Add libc_hidden_proto.
2917         * catgets/open_catalog.c (__open_catalog): Add libc_hidden_def.
2918         * elf/dl-profile.c (__profile_frequency): Add libc_hidden_proto.
2919         * include/rpc/rpc.h (__rpc_thread_svc_fdset, __rpc_thread_createerr):
2920         Add libc_hidden_proto.
2921         * include/sys/poll.h (__poll): Add libc_hidden_proto.
2922         * include/sys/select.h (__select): Likewise.
2923         * include/sys/socket.h (__send): Likewise.
2924         * include/sys/statfs.h (__statfs): Likewise.
2925         * include/unistd.h (__pwrite64, __libc_read, __pipe, __chown, __dup2,
2926         __getpid, __getpgid, __setpgid, __close, __read, __write,
2927         __getpagesize, __sbrk): Likewise.
2928         (__chown_internal, __dup2_internal, __getpid_internal,
2929         __getpgid_internal, __close_internal, __write_internal,
2930         __getpagesize_internal): Remove.
2931         (__close, __dup2, __getpagesize, __getpgid, __getpid, __libc_write):
2932         Remove macros.
2933         * include/printf.h (__printf_fp): Add libc_hidden_proto.
2934         * include/sched.h (__sched_setscheduler): Likewise.
2935         * include/resolv.h (__res_ninit, __res_randomid): Likewise.
2936         * include/stdlib.h (__secure_getenv): Likewise.
2937         * include/signal.h (__sigaction, __sigsuspend): Likewise.
2938         * inet/getaliasent_r.c (NSS_attribute_hidden): Remove.
2939         * inet/getaliasname_r.c (NSS_attribute_hidden): Remove.
2940         * inet/getnetbyad_r.c (NSS_attribute_hidden): Remove.
2941         * inet/getnetbynm_r.c (NSS_attribute_hidden): Remove.
2942         * inet/getnetent_r.c (NSS_attribute_hidden): Remove.
2943         * inet/getproto_r.c (NSS_attribute_hidden): Remove.
2944         * inet/getprtent_r.c (NSS_attribute_hidden): Remove.
2945         * inet/getprtname_r.c (NSS_attribute_hidden): Remove.
2946         * inet/getrpcbyname_r.c (NSS_attribute_hidden): Remove.
2947         * inet/getrpcbynumber_r.c (NSS_attribute_hidden): Remove.
2948         * inet/getrpcent_r.c (NSS_attribute_hidden): Remove.
2949         * inet/getservent_r.c (NSS_attribute_hidden): Remove.
2950         * inet/getsrvbynm_r.c (NSS_attribute_hidden): Remove.
2951         * inet/getsrvbypt_r.c (NSS_attribute_hidden): Remove.
2952         * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Remove INTUSE.
2953         * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
2954         * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
2955         * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
2956         * libio/genops.c (__overflow): Add libc_hidden_def.
2957         * libio/iovdprintf.c: Remove libio.h include.
2958         * libio/libioP.h (libc_hidden_proto, libc_hidden_def,
2959         libc_hidden_weak): Define to nothing if not defined.
2960         (__overflow, __woverflow): Add libc_hidden_proto.
2961         * libio/wgenops.c (__woverflow): Add libc_hidden_def.
2962         * nss/getXXent_r.c (NSS_attribute_hidden): Remove.
2963         (DB_LOOKUP_FCT): Add libc_hidden_proto.
2964         * nss/getXXbyYY_r.c (NSS_attribute_hidden): Remove.
2965         (DB_LOOKUP_FCT): Add libc_hidden_proto.
2966         * nss/XXX-lookup.c (DB_LOOKUP_FCT): Add libc_hidden_proto
2967         and libc_hidden_def.
2968         * nss/hosts-lookup.c (__nss_hosts_lookup): Remove INTDEF.
2969         * posix/bsd-getpgrp.c (__getpgid_internal): Remove.
2970         (__getpgid): Add libc_hidden_proto.
2971         (__bsd_getpgrp): Remove INTUSE.
2972         * resolv/res_init.c (__res_ninit, __res_randomid): Add
2973         libc_hidden_def.
2974         * shadow/getspent_r.c (NSS_attribute_hidden): Remove.
2975         * shadow/getspnam_r.c (NSS_attribute_hidden): Remove.
2976         * stdio-common/printf_fp.c (__printf_fp): Add libc_hidden_def.
2977         * stdlib/strfmon.c (__printf_fp): Add libc_hidden_proto.
2978         * stdlib/secure-getenv.c (__secure_getenv): Add libc_hidden_def.
2979         * sunrpc/rpc_thread.c (__rpc_thread_svc_fdset,
2980         __rpc_thread_createerr): Add libc_hidden_def.
2981         * sysdeps/alpha/alphaev67/rawmemchr.S (__rawmemchr): Add
2982         libc_hidden_def.
2983         * sysdeps/alpha/alphaev67/stpncpy.S (__stpncpy): Likewise.
2984         * sysdeps/alpha/rawmemchr.S (__rawmemchr): Likewise.
2985         * sysdeps/alpha/stpncpy.S (__stpncpy): Likewise.
2986         * sysdeps/generic/chown.c (__chown): Likewise.
2987         * sysdeps/generic/close.c (__close): Likewise.
2988         * sysdeps/generic/dup2.c (__dup2): Likewise.
2989         * sysdeps/generic/pipe.c (__pipe): Likewise.
2990         * sysdeps/generic/prof-freq.c (__profile_frequency): Likewise.
2991         * sysdeps/generic/pwrite64.c (__pwrite64): Likewise.
2992         * sysdeps/generic/rawmemchr.c (__rawmemchr): Likewise.
2993         * sysdeps/generic/read.c (__libc_read): Likewise.
2994         (__read): Add libc_hidden_weak.
2995         * sysdeps/generic/sbrk.c (__sbrk): Add libc_hidden_def.
2996         * sysdeps/generic/sched_sets.c (__sched_setscheduler): Likewise.
2997         * sysdeps/generic/select.c (__select): Likewise.
2998         * sysdeps/generic/send.c (__send): Likewise.
2999         * sysdeps/generic/setpgid.c (__setpgid): Likewise.
3000         * sysdeps/generic/sigaction.c (__sigaction): Likewise.
3001         * sysdeps/generic/sigsuspend.c (__sigsuspend): Likewise.
3002         * sysdeps/generic/statfs.c (__statfs): Likewise.
3003         * sysdeps/generic/stpncpy.c (__stpncpy): Likewise.
3004         * sysdeps/generic/strcasecmp.c (__strcasecmp): Likewise.
3005         * sysdeps/generic/getpagesize.c (__getpagesize): Likewise.
3006         Remove undef and INTDEF.
3007         * sysdeps/generic/getpgid.c (__getpgid): Likewise.
3008         * sysdeps/generic/getpid.c (__getpid): Likewise.
3009         * sysdeps/generic/write.c (__libc_write): Likewise.
3010         (__write): Add libc_hidden_weak.  Remove undef and INTDEF.
3011         * sysdeps/i386/rawmemchr.S (__rawmemchr): Add libc_hidden_def.
3012         * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
3013         * sysdeps/m68k/rawmemchr.S (__rawmemchr): Likewise.
3014         * sysdeps/mach/hurd/chown.c (__chown): Likewise.  Remove INTDEF.
3015         * sysdeps/mach/hurd/close.c (__close): Add libc_hidden_def.
3016         Remove undef and INTDEF.
3017         * sysdeps/mach/hurd/dup2.c (__dup2): Likewise.
3018         * sysdeps/mach/hurd/getpgid.c (__getpgid): Likewise.
3019         * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
3020         * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
3021         * sysdeps/mach/hurd/write.c (__libc_write): Likewise.
3022         (__write): Add libc_hidden_weak.  Remove undef and INTDEF.
3023         * sysdeps/mach/hurd/pipe.c: Include unistd.h.
3024         (__pipe): Add libc_hidden_def.
3025         * sysdeps/mach/hurd/dl-sysdep.c (__libc_read, __libc_write): Add
3026         libc_hidden_weak.
3027         * sysdeps/mach/hurd/poll.c (__poll): Add libc_hidden_def.
3028         * sysdeps/mach/hurd/profil.c (__profile_frequency): Likewise.
3029         * sysdeps/mach/hurd/read.c (__libc_read): Likewise.
3030         (__read): Add libc_hidden_weak.
3031         * sysdeps/mach/hurd/pwrite64.c (__pwrite64): Likewise.
3032         (__libc_pwrite64): Add libc_hidden_def.
3033         * sysdeps/mach/hurd/sbrk.c (__sbrk): Likewise.
3034         * sysdeps/mach/hurd/select.c (__select): Likewise.
3035         * sysdeps/mach/hurd/send.c (__send): Likewise.
3036         * sysdeps/mach/hurd/setpgid.c (__setpgid): Likewise.
3037         * sysdeps/mach/hurd/sigaction.c (__sigaction): Likewise.
3038         * sysdeps/mach/hurd/sigsuspend.c (__sigsuspend): Likewise.
3039         * sysdeps/mach/hurd/statfs.c (__statfs): Likewise.
3040         * sysdeps/posix/dup2.c: Likewise.
3041         Remove undef and INTDEF.
3042         * sysdeps/posix/getpagesize.c (__getpagesize): Likewise.
3043         * sysdeps/posix/pwrite64.c (__libc_pwrite64): Add libc_hidden_def.
3044         (__pwrite64): Add libc_hidden_weak.
3045         * sysdeps/posix/sigsuspend.c (__sigsuspend): Add libc_hidden_def.
3046         * sysdeps/sparc/sparc64/rawmemchr.S (__rawmemchr): Likewise.
3047         * sysdeps/sparc/sparc64/stpncpy.S (__stpncpy): Likewise.
3048         * sysdeps/standalone/close.c (__close): Likewise.
3049         * sysdeps/standalone/write.c (__libc_write): Likewise.
3050         (__write): Add libc_hidden_weak.
3051         * sysdeps/standalone/read.c (__read): Likewise.
3052         (__libc_read): Add libc_hidden_def.
3053         * sysdeps/unix/grantpt.c (grantpt): Remove INTUSE.
3054         * sysdeps/unix/bsd/m68k/pipe.S (__pipe): Add libc_hidden_def.
3055         * sysdeps/unix/bsd/osf/alpha/pipe.S (__pipe): Likewise.
3056         * sysdeps/unix/bsd/vax/pipe.S (__pipe): Likewise.
3057         * sysdeps/unix/bsd/syscalls.list (__GI___getpagesize): Likewise.
3058         * sysdeps/unix/bsd/poll.c (__poll): Likewise.
3059         * sysdeps/unix/bsd/sigaction.c (__sigaction): Likewise.
3060         * sysdeps/unix/bsd/sigsuspend.c (__sigsuspend): Likewise.
3061         * sysdeps/unix/common/syscalls.list (__GI___getpgid, __GI___setpgid,
3062         __GI___sigaction): Add.
3063         * sysdeps/unix/i386/pipe.S (__pipe): Add libc_hidden_def.
3064         * sysdeps/unix/inet/syscalls.list (__GI___send): Add.
3065         * sysdeps/unix/mips/pipe.S (__pipe): Add libc_hidden_def.
3066         * sysdeps/unix/sparc/pipe.S (__pipe): Likewise.
3067         * sysdeps/unix/sysv/irix4/syscalls.list (__GI___getpgid,
3068         __GI___setpgid): Add.
3069         * sysdeps/unix/sysv/aix/chown.c (__chown): Add libc_hidden_def.
3070         Remove undef and INTDEF.
3071         * sysdeps/unix/sysv/aix/getpgid.c (__getpgid): Likewise.
3072         * sysdeps/unix/sysv/aix/write.c (__write, __libc_write): Likewise.
3073         * sysdeps/unix/sysv/aix/close.c (__close): Add libc_hidden_def.
3074         * sysdeps/unix/sysv/aix/getpid.c (__getpid): Likewise.
3075         * sysdeps/unix/sysv/aix/pipe.c (__pipe): Likewise.
3076         * sysdeps/unix/sysv/aix/read.c (__read, __libc_read): Likewise.
3077         * sysdeps/unix/sysv/aix/poll.c (__poll): Likewise.
3078         * sysdeps/unix/sysv/aix/sbrk.c (__sbrk): Likewise.
3079         * sysdeps/unix/sysv/aix/sigaction.c (__sigaction): Likewise.
3080         * sysdeps/unix/sysv/aix/sigsuspend.c (__sigsuspend): Likewise.
3081         * sysdeps/unix/sysv/aix/statfs.c (__statfs): Likewise.
3082         * sysdeps/unix/sysv/aix/select.c (__select): Likewise.
3083         * sysdeps/unix/sysv/aix/setpgid.c (__setpgid): Likewise.
3084         * sysdeps/unix/sysv/linux/alpha/pipe.S (__pipe): Likewise.
3085         * sysdeps/unix/sysv/linux/alpha/syscalls.list (__GI___pwrite64,
3086         __GI___statfs, __GI___send): Add.
3087         * sysdeps/unix/sysv/linux/alpha/select.S (__select): Add
3088         libc_hidden_ver resp. libc_hidden_def.
3089         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend): Add
3090         libc_hidden_def.
3091         * sysdeps/unix/sysv/linux/ia64/getpagesize.c (__getpagesize):
3092         Likewise.  Remove undef and INTDEF.
3093         * sysdeps/unix/sysv/linux/ia64/pipe.S (__pipe): Add libc_hidden_def.
3094         * sysdeps/unix/sysv/linux/ia64/syscalls.list (__GI___pwrite64,
3095         __GI___statfs, __GI___send): Add.
3096         * sysdeps/unix/sysv/linux/ia64/sigaction.c (__sigaction): Add
3097         libc_hidden_def.
3098         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c (__sigsuspend):
3099         Likewise.
3100         * sysdeps/unix/sysv/linux/sh/pipe.S (__pipe): Likewise.
3101         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c (__chown): Add
3102         libc_hidden_ver resp. libc_hidden_def.
3103         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (__GI___pwrite64,
3104         __GI___send): Add.
3105         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c (__sigaction):
3106         Add libc_hidden_weak.
3107         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c (__sigsuspend):
3108         Add libc_hidden_def.
3109         * sysdeps/unix/sysv/linux/hppa/syscalls.list (__GI___send): Add.
3110         * sysdeps/unix/sysv/linux/arm/sigaction.c (__sigaction): Add
3111         libc_hidden_weak.
3112         * sysdeps/unix/sysv/linux/i386/chown.c (__chown): Add libc_hidden_ver
3113         resp. libc_hidden_def.
3114         * sysdeps/unix/sysv/linux/i386/sigaction.c (__sigaction): Add
3115         libc_hidden_weak.
3116         * sysdeps/unix/sysv/linux/m68k/chown.c (__chown): Likewise.  Remove
3117         INTDEF.
3118         * sysdeps/unix/sysv/linux/m68k/getpagesize.c (__getpagesize):
3119         Likewise.  Remove undef.
3120         * sysdeps/unix/sysv/linux/mips/pwrite64.c (__pwrite64): Add
3121         libc_hidden_weak.
3122         * sysdeps/unix/sysv/linux/mips/syscalls.list (__GI___send): Add.
3123         * sysdeps/unix/sysv/linux/mips/sigaction.c (__sigaction): Add
3124         libc_hidden_weak.
3125         * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown): Add
3126         libc_hidden_def.
3127         * sysdeps/unix/sysv/linux/powerpc/pwrite64.c (__pwrite64): Likewise.
3128         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c (__getpagesize):
3129         Likewise.  Remove undef and INTDEF.
3130         * sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S (__pipe): Add
3131         libc_hidden_def.
3132         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (__sigaction): Add
3133         libc_hidden_weak.
3134         * sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S (__pipe): Add
3135         libc_hidden_def.
3136         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list
3137         (__GI___pwrite64, __GI___statfs, __GI___select, __GI___send): Add.
3138         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (__sigaction): Add
3139         libc_hidden_weak.
3140         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c (__sigsuspend):
3141         Add libc_hidden_def.
3142         * sysdeps/unix/sysv/linux/x86_64/syscalls.list (__GI___pwrite64,
3143         __GI___statfs): Add.
3144         * sysdeps/unix/sysv/linux/x86_64/send.c (__send): Add
3145         libc_hidden_weak.
3146         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__sigaction): Likewise.
3147         * sysdeps/unix/sysv/linux/getpagesize.c: Add libc_hidden_def.
3148         Remove undef and INTDEF.
3149         * sysdeps/unix/sysv/linux/poll.c (__poll): Add libc_hidden_def.
3150         * sysdeps/unix/sysv/linux/pwrite64.c (__pwrite64): Add
3151         libc_hidden_def.
3152         * sysdeps/unix/sysv/linux/send.S (__send): Likewise.
3153         * sysdeps/unix/sysv/linux/sigaction.c (__sigaction): Add
3154         libc_hidden_weak.
3155         * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Add
3156         libc_hidden_def.
3157         * sysdeps/unix/sysv/sco3.2.4/__setpgid.c (__setpgid): Likewise.
3158         * sysdeps/unix/sysv/sco3.2.4/sigaction.S (__sigaction): Likewise.
3159         * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list (__GI___sigaction):
3160         Add.
3161         * sysdeps/unix/sysv/sysv4/__getpgid.c (__getpgid): Add
3162         libc_hidden_def.  Remove undef and INTDEF.
3163         * sysdeps/unix/sysv/sysv4/getpgid.c (__getpgid): Likewise.
3164         * sysdeps/unix/sysv/sysv4/__setpgid.c (__setpgid): Add
3165         libc_hidden_def.
3166         * sysdeps/unix/sysv/sysv4/setpgid.c (__setpgid): Likewise.
3167         * sysdeps/unix/sysv/sysv4/sigaction.c (__sigaction): Likewise.
3168         * sysdeps/unix/sysv/sigaction.c (__sigaction): Likewise.
3169         * sysdeps/unix/getpagesize.c (__getpagesize): Add libc_hidden_def.
3170         Remove undef and INTDEF.
3171         * configure.in (HAVE_BROKEN_VISIBILITY_ATTRIBUTE): Add check for
3172         broken visibility attribute handling.
3173         * config.h.in (HAVE_BROKEN_VISIBILITY_ATTRIBUTE): Add.
3175 2002-08-02  Ulrich Drepper  <drepper@redhat.com>
3177         * locale/iso-639.def: Add entries for Venda and Nothern Sotho.
3178         Reported by Dwayne Bailey <dwayne@obsidian.co.za>.
3180         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Adapt
3181         previous patch.
3183 2002-06-29  Todd Fries  <todd@openbsd.org>
3185         * resolv/gethnamaddr.c (gethostbyaddr): Try ip6.int if ip6.arpa fails.
3187 2002-08-02  Jakub Jelinek  <jakub@redhat.com>
3189         * include/errno.h: Don't include tls.h if _ISOMAC is defined.
3191 2002-07-30  Roland McGrath  <roland@redhat.com>
3193         * resolv/resolv.h (_res): Define macro unconditionally.
3194         [! _LIBC_REENTRANT] (_res): Move this conditional decl to ...
3195         * include/resolv.h: ... here.
3196         [USE_TLS && HAVE___THREAD] (_res): #undef it and declare
3197         as a __thread variable.
3198         * resolv/res_libc.c [USE_TLS && HAVE___THREAD] (_res): Define it as
3199         a __thread variable instead of a global.
3200         * resolv/res_data.c [_LIBC]: Don't #undef _res.
3202         * include/errno.h: Include <tls.h> to make sure USE_TLS defined by the
3203         time we test it.
3205         * intl/loadmsgcat.c [__GNUC__]: #undef alloca before defining it.
3207         * malloc/malloc.c [_LIBC]: Include <string.h> instead of using local
3208         decls of memset and memcpy.
3210         * sysdeps/generic/sysdep.h (END): Conditionalize on [__ASSEMBLER__].
3211         * sysdeps/unix/sysv/linux/i386/sysdep.h (L): Likewise.
3213         * elf/dl-load.c (_dl_map_object_from_fd): Comment fix.
3215         * sysdeps/generic/bits/libc-tsd.h [USE_TLS && HAVE___THREAD]
3216         (__libc_tsd_define): Define using __thread.
3218         * sunrpc/rpc_thread.c: Use __libc_tsd_define.
3219         (__rpc_thread_variables): Use __libc_tsd_get.
3220         (__rpc_thread_destroy): Use __libc_tsd_get instead of calling
3221         __rpc_thread_variables, which might allocate what we're about to free.
3223         * inet/herrno.c [USE_TLS && HAVE___THREAD] (h_errno): Define as a
3224         thread-local variable.
3225         * resolv/netdb.h (h_errno): Define macro unconditionally.
3226         [_LIBC] (__set_h_errno): Macro moved to ...
3227         * include/netdb.h: ... here.
3228         [USE_TLS && HAVE___THREAD] (h_errno): Declare __thread variable.
3229         [USE_TLS && HAVE___THREAD] (__set_h_errno): Define using that.
3230         [! _LIBC_REENTRANT]: #undef h_errno here.
3232         * include/errno.h: Protect from multiple inclusion.
3234         * misc/sys/select.h (__NFDBITS, __FDELT, __FDMASK): #undef these
3235         before defining them, since Linux's <linux/posix_types.h> might have
3236         defined them.
3238 2002-08-02  Jakub Jelinek  <jakub@redhat.com>
3240         * malloc/malloc.c (public_cALLOc): Check for overflow on
3241         multiplication.
3242         * sunrpc/xdr_array.c (xdr_array): Likewise.
3243         * sunrpc/rpc/types.h (mem_free): Add comment.
3244         Patch by Solar Designer <solar@openwall.com>.
3246 2002-08-02  Jakub Jelinek  <jakub@redhat.com>
3248         * sysdeps/unix/sysv/linux/kernel-features.h
3249         (__ASSUME_SET_THREAD_AREA_SYSCALL): Define.
3251 2002-08-01  Roland McGrath  <roland@redhat.com>
3253         * libio/fileops.c (_IO_file_sync_mmap): New function.
3254         (_IO_file_jumps_mmap): Use it.
3255         (_IO_file_underflow_mmap): Rewritten.  If after EOF or fflush,
3256         repeat the stat check and resize the mapped buffer as necessary.
3258 2002-07-31  Roland McGrath  <roland@redhat.com>
3260         * libio/fileops.c (decide_maybe_mmap): New static function.
3261         Code taken from libio/iofopen.c:__fopen_maybe_mmap to try to
3262         mmap the file contents.  Then switch the jump tables to the mmap
3263         tables if it worked, or the vanilla file tables if not.
3264         (_IO_file_underflow_maybe_mmap): New function.
3265         (_IO_file_seekoff_maybe_mmap): New function.
3266         (_IO_file_xsgetn_maybe_mmap): New function.
3267         (_IO_file_jumps_maybe_mmap): New variable, jump table using those.
3268         * libio/libioP.h: Declare those.
3269         * libio/wfileops.c (_IO_wfile_underflow_maybe_mmap): New function.
3270         (_IO_wfile_jumps_maybe_mmap): New variable, jump table using that.
3271         * libio/iofopen.c (__fopen_maybe_mmap): Don't try to mmap here.
3272         If the stream is read-only, set its jump tables to those new ones.
3273         * libio/iofdopen.c (_IO_new_fdopen) [_G_HAVE_MMAP]: Set the initial
3274         jump tables to the maybe_mmap ones, and don't call __fopen_maybe_mmap.
3275         We need the tables set before _IO_file_attach.
3277         * libio/tst-mmap-eofsync.c: New file.
3278         * libio/tst-mmap-fflushsync.c: New file.
3279         * libio/bug-mmap-fflush.c: New file.
3280         * libio/tst-mmap2-eofsync.c: New file.
3281         * libio/Makefile (tests): Add them.
3283         * libio/wfileops.c (_IO_wfile_underflow_mmap): Don't set EOF bit when
3284         _IO_file_underflow_mmap fails, it already set the appropriate bit.
3286 2002-07-31  Jeff Bailey  <jbailey@gnu.org>
3288         * libio/stdio.h (sys_errlist, sys_nerr, _sys_errlist, _sys_nerr):
3289         Declarations moved to <bits/sys_errlist.h>.  Include that file.
3290         * libio/Makefile (headers): Add bits/sys_errlist.h to the list.
3291         * sysdeps/generic/bits/sys_errlist.h: New file.  This does *not*
3292         declare sys_errlist and sys_nerr.
3293         * sysdeps/unix/sysv/linux/bits/sys_errlist.h: New file.  Does
3294         provide declarations.
3296 2002-07-31  Roland McGrath  <roland@redhat.com>
3298         * elf/rtld.c (dl_main): Fix typo in error message.
3300 2002-07-31  Roland McGrath  <roland@frob.com>
3302         * sysdeps/mach/hurd/Versions (ld: GLIBC_2.0): __fxstat -> __fxstat64,
3303         __xstat -> __xstat64, __lseek -> __libc_lseek64.  Completes 2002-06-09
3304         sysdeps/mach/hurd/dl-sysdep.c change.
3306 2002-07-28  Ulrich Drepper  <drepper@redhat.com>
3308         * sysdeps/unix/sysv/linux/configure.in: Check /lib/modules/`uname
3309         -r`/build/include for kernel headers.
3311         * po/fi.po: New file.
3313 2002-07-15  Alexandre Oliva  <aoliva@redhat.com>
3315         * configure.in (static_nss): Set to `yes' if --disable-shared.
3317 2002-07-23  Bruno Haible  <bruno@clisp.org>
3319         * intl/loadmsgcat.c (PRI*): Redefine the macros if PRI_MACROS_BROKEN
3320         is set.
3322 2002-07-25  Jakub Jelinek  <jakub@redhat.com>
3324         * sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h: New file.
3325         * sysdeps/unix/sysv/linux/ia64/profil-counter.h: Fix profil_counter
3326         arguments.
3328 2002-07-25  Jakub Jelinek  <jakub@redhat.com>
3330         * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal): Add
3331         alias.
3333 2002-07-21  Bruno Haible  <bruno@clisp.org>
3335         * intl/libintl.h (__GNU_GETTEXT_SUPPORTED_REVISION): New macro.
3336         * intl/gettext.h (struct mo_file_header): New fields n_sysdep_segments,
3337         sysdep_segments_offset, n_sysdep_strings, orig_sysdep_tab_offset,
3338         trans_sysdep_tab_offset.
3339         (struct sysdep_segment): New type.
3340         (struct sysdep_string): New type.
3341         (SEGMENTS_END): New macro.
3342         * intl/gettextP.h (struct sysdep_string_desc): New type.
3343         (struct loaded_domain): New fields malloced, n_sysdep_strings,
3344         orig_sysdep_tab, trans_sysdep_tab, must_swap_hash_tab. Make fields
3345         orig_tab, trans_tab, hash_tab to const pointers because they point
3346         into read-only memory.
3347         * intl/loadmsgcat.c: Include stdint.h, inttypes.h, hash-string.h.
3348         (PRI*): Define fallback values.
3349         (get_sysdep_segment_value): New function.
3350         (_nl_load_domain): Distinguish major and minor revision parts. Add
3351         support for minor revision 1 with system dependent strings.
3352         (_nl_unload_domain): Also free the 'malloced' field.
3353         * intl/dcigettext.c (_nl_find_msg): Remove test for domain->hash_size,
3354         now done in loadmsgcat.c. Add support for system dependent strings.
3356 2002-07-16  Stepan Kasal  <kasal@math.cas.cz>
3358         * posix/bug-regex7.c: New file.
3359         * posix/bug-regex8.c: New file.
3360         * posix/Makefile (tests): Add bug-regex7 and bug-regex8.
3362 2002-07-16  Stepan Kasal  <kasal@math.cas.cz>
3364         * posix/bug-regex4.c (main): Fix typos.
3365         * posix/bug-regex6.c (main): Likewise.
3367 2002-07-27  Ulrich Drepper  <drepper@redhat.com>
3369         * posix/bug-regex6.c (main): Fix warnings.
3371         * iconvdata/Makefile (CPPFLAGS): Add NOT_IN_libc.
3373         * iconv/iconv_prog.c (main): Improve error message for the cases
3374         where -t and/or -f parameter are missing.
3376 2002-07-10  Stepan Kasal  <kasal@math.cas.cz>
3378         * posix/regexec.c (re_match): Reorganize to remove duplicate code.
3379         (re_search): Likewise.
3380         (re_match_2): Likewise.
3381         (re_search_2): Likewise.
3382         (re_search_stub): New function.
3383         (re_search_2_stub): New function.
3384         * regcomp.c (re_compile_pattern): Typo in a comment fixed.
3386 2002-07-10  Isamu Hasegawa  <isamu@yamato.ibm.com>
3388         * posix/regex_internal.h: Add new member STOP to struct re_string_t.
3389         (re_string_eoi): Use STOP instead of LEN.
3390         * posix/regex_internal.c (re_string_allocate): Initialize pstr->len.
3391         (re_string_construct): Likewise.
3392         (re_string_reconstruct): Adjust pstr->stop like pstr->len.
3393         * posix/regexec.c (re_search_internal): Add a new argument STOP
3394         so that it can handle the argument STOP of re_search_2 and re_match_2
3395         correctly.
3396         (regexec): Adapt to new I/F of re_search_internal.
3397         (re_search_stub): Likewise.
3399 2002-07-25  Ulrich Drepper  <drepper@redhat.com>
3401         * sunrpc/clnt_gen.c: Don't include <sys/errno.h>.
3403         * elf/dl-minimal.c: Remove definition of __assert_perror_fail.
3405         * sysdeps/wordsize-32/divdi3.c: Define __divdi3_internal.
3406         * sysdeps/wordsize-32/lldiv.c: Make gcc use __divdi3_internal instead
3407         of __divdi3.
3409         * sysdeps/unix/sysv/linux/adjtime.c: Use __adjtimex_internal.
3410         * sysdeps/unix/sysv/linux/ntp_gettime.c: Likewise.
3411         * sysdeps/unix/sysv/linux/syscalls.list: Add __adjtimex_internal
3412         alias for adjtimex syscall.
3414         * elf/dl-minimal.c: Define __assert_fail_internal.
3415         * assert/assert.c: Likewise.
3416         * include/assert.h: Define __assert_file macro if !SHARED and not
3417         NOT_IN_libc.
3419         * iconv/Makefile: Define NOT_IN_libc for objects in standalone
3420         programs.
3421         * locale/Makefile: Likewise.
3422         * nscd/Makefile: Likewise.
3423         * catgets/Makefile: Likewise.
3425 2002-07-24  Ulrich Drepper  <drepper@redhat.com>
3427         * libio/fileops.c (_IO_file_seekoff_mmap): Do use fp->_offset to
3428         compute current position.
3430         * stdio-common/tst-fseek.c (main): Improve error messages.
3432         * libio/tst-freopen.c (main): Remove unused variable.
3434         * libio/fileops.c (_IO_file_seekoff_mmap): Set fp->_offset after
3435         succesful seek call.  Simplify error checking.
3437 2002-07-25  Jakub Jelinek  <jakub@redhat.com>
3439         * config.h.in: Use __ASSEMBLER__ test macro not ASSEMBLER.
3440         * sysdeps/ia64/fpu/libm_support.h: Likewise.
3442 2002-07-19  Roland McGrath  <roland@frob.com>
3444         * hurd/hurdsig.c (_hurdsig_getenv): Always return null if
3445         __libc_enable_secure is set.
3447 2002-07-24  Roland McGrath  <roland@frob.com>
3449         Added <ifaddrs.h> interface with functions `getifaddrs', `freeifaddrs'.
3450         This implementation supports only IPv4.
3451         * inet/ifaddrs.h: New file.
3452         * sysdeps/generic/ifaddrs.c: New file.
3453         * sysdeps/gnu/ifaddrs.c: New file.
3454         * inet/test-ifaddrs.c: New file.
3455         * inet/Makefile (routines): Add ifaddrs.
3456         (headers): Add ifaddrs.h here.
3457         (tests): Add test-ifaddrs.
3458         * inet/Versions (GLIBC_2.3): New set, add getifaddrs and freeifaddrs.
3460         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Use an explicit
3461         socket call to get an AF_INET socket, instead of using __opensock.
3462         The SIOCGIFNETMASK ioctl will work only with a PF_INET socket.
3464         * sysdeps/generic/ifreq.h (__ifreq): Take third argument SOCKFD,
3465         if not -1 use it instead of calling __opensock.
3466         * sysdeps/unix/sysv/linux/ifreq.h (__ifreq): Likewise.
3467         * sysdeps/mach/hurd/ifreq.h (__ifreq): Take new argument and ignore it.
3468         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Pass new argument.
3470         * sysdeps/mach/hurd/ifreq.h: New file.
3471         * sysdeps/generic/ifreq.h (__if_freereq): Take second argument NUM_IFS.
3472         * sysdeps/unix/sysv/linux/ifreq.h (__if_freereq): Likewise.
3473         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Update caller.
3475         * libio/fileops.c (_IO_file_seekoff_mmap): Don't rely on FP->_offset,
3476         which gets moved around.  Calculate size of mmap'd buffer instead.
3478 2002-07-24  Philip Blundell  <philb@gnu.org>
3480         * sysdeps/unix/arm/brk.S: Improve schedule.
3481         * sysdeps/unix/sysv/linux/arm/socket.S (PUSHARGS_1): Use more
3482         efficient instruction.
3483         (__socket): Optimize return sequence.
3485 2002-07-24  Ulrich Drepper  <drepper@redhat.com>
3487         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Prefer inet
3488         sockets on old kernels.
3490 2002-07-22  Philip Blundell  <philb@gnu.org>
3492         * sysdeps/unix/sysv/linux/arm/errlist.c: Remove extra weak alias
3493         definiton of _old_sys_nerr.  Define _old_sys_errlist as strong
3494         alias.
3496 2002-07-24  Ulrich Drepper  <drepper@redhat.com>
3498         * locale/hashval.h: Make more self-contained by defining LONG_BITS.
3499         * locale/programs/simple-hash.c: Remove LONG_BITS definition.
3501         * locale/programs/locarchive.c (add_locale_to_archive): Correct
3502         test to detect duplicate locales.
3504         * libio/fileops.c (_IO_new_file_seekoff): Fail if relative
3505         position would be before beginning of file.
3506         (_IO_file_seekoff_mmap): Likewise.
3507         * libio/Makefile (tests): Add bug-fseek.
3508         * libio/bug-fseek.c: New file.
3510         * intl/explodename.c: Remove support for CEN-style locale variables.
3511         It was never used and shouldn't be since it's not portable.
3512         * intl/finddomain.c: Likewise.
3513         * intl/l10nflist.c: Likewise.
3514         * intl/loadinfo.h: Likewise.
3515         * locale/findlocale.c: Likewise.
3517 2002-07-24  Roland McGrath  <roland@frob.com>
3519         * libio/fileops.c (_IO_file_seekoff_mmap): When just examining the
3520         position, calculate it to take into account an active pushback buffer.
3522         * libio/Makefile (tests): Add bug-ungetc.
3523         * libio/bug-ungetc.c: New file.
3525 2002-07-23  Ulrich Drepper  <drepper@redhat.com>
3527         * sysdeps/generic/libc-tls.c: New file.
3528         * csu/Makefile (routines): Add libc-tls.
3529         (static-only-routines): Add libc-tls.
3530         * elf/dl-support.c (_dl_phdr): New variable.
3531         (_dl_phnum): New variable.
3532         (_dl_aux_init): Initialize _dl_phdr and _dl_phnum from aux vector.
3533         * sysdeps/generic/libc-start.c (__libc_start_main): Reorganize code
3534         for !SHARED.  First look through auxiliary vector.  If TLS always
3535         call __pthread_initialize_minimal.
3537         * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Make sure size argument
3538         in mmap call is never zero.
3540 2002-07-23  Andreas Jaeger  <aj@suse.de>
3542         * sysdeps/x86_64/fpu/s_copysign.S: Use optimized version.
3543         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
3545 2002-07-22  Ulrich Drepper  <drepper@redhat.com>
3547         * libio/tst-eof.c: Rewrite to let test-skeleton.c deal with
3548         creation and removal of the temp file.
3550         * libio/bug-rewind.c: Use test skeleton.  Use create_temp_file for
3551         file creation.
3552         * test-skeleton.c (create_temp_file): New function.
3554 2002-07-22  Andreas Jaeger  <aj@suse.de>
3556         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Use
3557         local label.
3559 2002-07-21  Roland McGrath  <roland@frob.com>
3561         * wcsmbs/Makefile (strtox-CFLAGS): New variable,
3562         put -I../include before -I../stdlib so we get the right errno.h et al.
3563         (CFLAGS-wcstod.c): Use that variable instead of -I../stdlib.
3564         (CFLAGS-wcstof.c): Likewise.
3565         (CFLAGS-wcstold.c): Likewise.
3566         (CFLAGS-wcstod_l.c): Likewise.
3567         (CFLAGS-wcstof_l.c): Likewise.
3568         (CFLAGS-wcstold_l.c): Likewise.
3570 2002-07-19  Roland McGrath  <roland@frob.com>
3572         * sysdeps/mach/hurd/errnos.awk: Remove __set_errno defn from output.
3574 2002-07-20  Ulrich Drepper  <drepper@redhat.com>
3576         * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define if
3577         __ASSUME_AT_XID is defined.
3578         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_XID): Define
3579         for 2.4.1 and up.
3580         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Optimize handling
3581         of AT_UID, AT_EUID, AT_GID, and AT_EGID.
3583         * wcsmbs/Makefile (CFLAGS-wcstod.c): Add -I../stdlib.
3584         (CFLAGS-wcstof.c): Likewise.
3585         (CFLAGS-wcstold.c): Likewise.
3586         (CFLAGS-wcstod_l.c): Likewise.
3587         (CFLAGS-wcstof_l.c): Likewise.
3588         (CFLAGS-wcstold_l.c): Likewise.
3590 2002-07-18  Jakub Jelinek  <jakub@redhat.com>
3592         * resource/sys/resource.h (__rlimit_resource_t, __rusage_who_t,
3593         __priority_which_t): Always typedef to int for C++.
3595 2002-07-19  Ulrich Drepper  <drepper@redhat.com>
3597         * configure.in: Add test for __thread support in compiler.
3598         * config.h.in: Add HAVE___THREAD.
3599         * Makefile (headers): Remove errno.h, sys/errno.h, and bits/errno.h.
3600         * include/sys/errno.h: Moved to...
3601         * stdlib/sys/errno.h: ...here.  New file.
3602         * stdlib/errno.h: New file.  Moved from...
3603         * include/errno.h: ...here.  Changed into an internal header defining
3604         libc-local things like __set_errno.
3605         * stdlib/Makefile (headers): Add errno.h, sys/errno.h, and
3606         bits/errno.h.
3607         * elf/dl-minimal.c: Include <tls.h>.  Define errno as thread-local
3608         variable if USE_TLS && HAVE___THREAD.  Don't define __errno_location
3609         either.
3610         * elf/rtld.c (_dl_start): Add code to initialize TLS for ld.so
3611         from...
3612         (_dl_start_final): ...here.  Add code to initialize tls elements from
3613         bootstrap_map.
3614         * sysdeps/generic/errno-loc.c: Define errno as thread-local variable
3615         if USE_TLS && HAVE___THREAD.
3616         * sysdeps/generic/bits/errno.h: Remove __set_errno definition.
3617         * sysdeps/mach/hurd/bits/errno.h: Likewise.
3618         * sysdeps/standalone/arm/bits/errno.h: Likewise.
3619         * sysdeps/standalone/bits/errno.h: Likewise.
3620         * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Likewise.
3621         * sysdeps/unix/sysv/aix/bits/errno.h: Likewise.
3622         * sysdeps/unix/sysv/hpux/bits/errno.h: Likewise.
3623         * sysdeps/unix/sysv/linux/bits/errno.h: Likewise.
3624         * sysdeps/unix/sysv/linux/hppa/bits/errno.h: Likewise.
3625         * sysdeps/unix/sysv/linux/mips/bits/errno.h: Likewise.
3626         * sysdeps/unix/sysv/sysv4/solaris2/bits/errno.h: Likewise.
3627         * sysdeps/i386/dl-machine.c (elf_machine_rel) [RTLD_BOOTSTRAP]: Don't
3628         use GL(dl_rtld_map), use map parameter.
3629         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
3630         * sysdeps/unix/sysv/linux/i386/sysdep.S: Define errno in .tbss if
3631         USE_TLS && HAVE___THREAD.
3632         * sysdeps/unix/sysv/linux/i386/sysdep.h: Unify SETUP_PIC_REG
3633         definitions.  If USE_TLS && HAVE___THREAD store errooor value using
3634         TLS code sequence.
3635         * sysdeps/unix/sysv/linux/i386/i686/sysdep.h: Likewise.
3637         * sysdeps/unix/sysv/linux/getcwd.c: No real need to restore errno.
3638         * sysdeps/unix/sysv/linux/grantpt.c: Likewise.
3639         * sysdeps/unix/sysv/linux/internal_statvfs.c: Likewise.
3640         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
3641         * sysdeps/unix/sysv/linux/readv.c: Likewise.
3642         * sysdeps/unix/sysv/linux/writev.c: Likewise.
3644 2002-07-17  Ulrich Drepper  <drepper@redhat.com>
3646         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Fix MS_SYNC and
3647         MS_INVALIDATE values.
3649 2002-07-17  Andreas Schwab  <schwab@suse.de>
3650             Ulrich Drepper  <drepper@redhat.com>
3652         * sysdeps/unix/sysv/linux/pread.c: Sign extend offset.
3653         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
3654         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
3655         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
3657 2002-07-01  H.J. Lu  <hjl@gnu.org>
3659         * elf/circleload1.c (load_dso): Call "circlemod1" and check
3660         return value.
3662         * elf/circlemod1.c (circlemod1): Return int.
3663         * elf/circlemod2.c (circlemod2): Likewise.
3664         * elf/circlemod2a.c (circlemod2): Likewise.
3665         * elf/circlemod3.c (circlemod3): Likewise.
3666         (circlemod3a): A new function.
3668 2002-07-16  Ulrich Drepper  <drepper@redhat.com>
3670         * catgets/tst-catgets.c (main): Don't expect results for
3671         untranslated messages.
3673         * glibcbug.in: Fix little typo.  Remove STDIO.
3675         * config.h.in: Fail if __FAST_MATH__ is defined.
3676         * math/Makefile (CPPFLAGS-test-ifloat.c): Also define TEST_FAST_MATH.
3677         (CPPFLAGS-test-idouble.c): Likewise.
3678         (CPPFLAGS-test-ildouble.c): Likewise.
3680 2002-07-15  Ulrich Drepper  <drepper@redhat.com>
3682         * intl/tst-gettext.sh: Pass -f option to msgfmt.
3683         * intl/tst-gettext.c: Correctly handle untranslated messages in
3684         positive tests.
3686         * po/de.po: Update from translation team.
3688 2002-07-02  H.J. Lu  <hjl@gnu.org>
3690         * sysdeps/mips/atomicity.h: Don't include <sgidefs.h>.  Always
3691         use ll/sc.
3692         * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
3694         * sysdeps/unix/sysv/linux/configure.in: Set arch_minimum_kernel
3695         to 2.4.0 for mips.
3697 2002-07-15  Ulrich Drepper  <drepper@redhat.com>
3699         * elf/dl-load.c (_dl_map_object_from_fd): If loaded object uses
3700         TLS fail if USE_TLS is not defined.
3702         * libio/wfileops.c (_IO_wfile_seekoff): Reposition wide pointers
3703         and adjust state for seek position.  [PR libc/4070]
3704         * libio/Makefile (tests): Add bug-rewind.
3705         * libio/bug-rewind.c: New file.
3707 2002-07-12  Philip Blundell  <philb@gnu.org>
3709         * sysdeps/generic/backtrace.c (FIRST_FRAME_POINTER): New macro.
3710         (__backtrace): Use it.
3711         * sysdeps/arm/frame.h (FIRST_FRAME_POINTER): Define.  [PR libc/2632]
3713 2002-07-12  Philip Blundell  <philb@gnu.org>
3715         * sysdeps/arm/dl-machine.h (elf_machine_rel): Don't handle
3716         R_ARM_RELATIVE if RTLD_BOOTSTRAP and HAVE_Z_COMBRELOC.  Only check
3717         for rtld map if neither RTLD_BOOTSTRAP nor HAVE_Z_COMBRELOC is defined.
3718         (elf_machine_rela): Remove unused variable.
3720         * sysdeps/unix/sysv/linux/arm/Makefile [subdir=elf]
3721         (sysdep-rtld-routines, sysdep_routines, sysdep-dl-routines): Don't
3722         define.
3724 2002-07-12  Ulrich Drepper  <drepper@redhat.com>
3726         * iconvdata/gconv-modules: Add aliases for ISO-8859-11.
3728 2002-07-14  Andreas Jaeger  <aj@suse.de>
3730         * sysdeps/x86_64/bits/link.h: Add biarch support.
3732 2002-07-13  Andreas Jaeger  <aj@suse.de>
3734         * sysdeps/unix/sysv/linux/mips/register-dump.h (register_dump):
3735         Use correct indices.
3736         Patch by Eliot Dresselhaus <eliot@ayrnetworks.com>.
3738 2002-07-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3740         * sysdeps/s390/bits/byteswap.h: Unified 31/64 bit byteswap.h.
3741         * sysdeps/s390/s390-32/bits/byteswap.h: Remove.
3742         * sysdeps/s390/s390-64/bits/byteswap.h: Remove.
3743         * sysdeps/s390/bits/link.h: Unified 31/64 bit link.h.
3744         * sysdeps/s390/s390-32/bits/link.h: Remove.
3745         * sysdeps/s390/s390-64/bits/link.h: Remove.
3746         * sysdeps/s390/bits/setjmp.h: Unified 31/64 bit setjmp.h.
3747         * sysdeps/s390/s390-32/bits/setjmp.h: Remove.
3748         * sysdeps/s390/s390-64/bits/setjmp.h: Remove.
3749         * sysdeps/s390/bits/wordsize.h: New file.
3750         * sysdeps/unix/sysv/linux/s390/bits/elfclass.h: Unified 31/64 bit
3751         elfclass.h.
3752         * sysdeps/unix/sysv/linux/s390/s390-64/bits/elfclass.h: Remove.
3753         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Unified 31/64 bit fcntl.h.
3754         * sysdeps/unix/sysv/linux/s390/s390-32/bits/fcntl.h: Remove.
3755         * sysdeps/unix/sysv/linux/s390/s390-64/bits/fcntl.h: Remove.
3756         * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Unified 31/64 bit ipc.h.
3757         * sysdeps/unix/sysv/linux/s390/s390-64/bits/ipc.h: Remove.
3758         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Unified 31/64 bit mman.h.
3759         * sysdeps/unix/sysv/linux/s390/s390-32/bits/mman.h: Remove.
3760         * sysdeps/unix/sysv/linux/s390/s390-64/bits/mman.h: Remove.
3761         * sysdeps/unix/sysv/linux/s390/bits/msq.h: Unified 31/64 bit msq.h.
3762         * ysdeps/unix/sysv/linux/s390/s390-64/bits/msq.h: Remove.
3763         * sysdeps/unix/sysv/linux/s390/bits/resource.h: Unified 31/64 bit
3764         resource.h.
3765         * sysdeps/unix/sysv/linux/s390/s390-32/bits/resource.h: Remove.
3766         * sysdeps/unix/sysv/linux/s390/s390-64/bits/resource.h: Remove.
3767         * sysdeps/unix/sysv/linux/s390/bits/sem.h: Unified 31/64 bit sem.h.
3768         * sysdeps/unix/sysv/linux/s390/s390-64/bits/sem.h: Remove.
3769         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Unified 31/64 bit shm.h.
3770         * sysdeps/unix/sysv/linux/s390/s390-64/bits/shm.h: Remove.
3771         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h: Unified 31/64 bit
3772         sigaction.h.
3773         * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigaction.h: Remove.
3774         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Unified 31/64 bit
3775         siginfo.h.
3776         * sysdeps/unix/sysv/linux/s390/s390-64/bits/siginfo.h: Remove.
3777         * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigstack.h: Remove.
3778         * sysdeps/unix/sysv/linux/s390/bits/socket.h: Unified 31/64 bit
3779         socket.h.
3780         * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h: Remove.
3781         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Unified 31/64 bit stat.h.
3782         * sysdeps/unix/sysv/linux/s390/s390-32/bits/stat.h: Remove.
3783         * sysdeps/unix/sysv/linux/s390/s390-64/bits/stat.h: Remove.
3784         * sysdeps/unix/sysv/linux/s390/bits/types.h: Unified 31/64 bit types.h.
3785         * sysdeps/unix/sysv/linux/s390/s390-64/bits/types.h: Remove.
3786         * sysdeps/unix/sysv/linux/s390/net/route.h: New file.
3787         * sysdeps/unix/sysv/linux/s390/sys/procfs.h: Unified 31/64 bit
3788         procfs.h.
3789         * sysdeps/unix/sysv/linux/s390/s390-32/sys/procfs.h: Remove.
3790         * sysdeps/unix/sysv/linux/s390/s390-64/sys/procfs.h: Remove.
3791         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Unified 31/64 bit
3792         ucontext.h.
3793         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Remove.
3794         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Remove.
3796 2002-07-11  Ulrich Drepper  <drepper@redhat.com>
3798         * Versions.def (libc): Add GLIBC_2.3.
3799         * stdlib/Versions [libc] (GLIBC_2.3): Add realpath.
3800         * stdlib/canonicalize.c: Add compatibility version for realpath
3801         and make new code available in GLIBC_2.3.
3803 2002-07-06  Bruno Haible  <bruno@clisp.org>
3805         * malloc/hooks.c (public_gET_STATe): Access max_total_mem in mp_.
3807 2002-07-11  Ulrich Drepper  <drepper@redhat.com>
3809         * resolv/res_hconf.c (_res_hconf_init): Move code into new
3810         function do_init.  Use __libc_once.
3811         (do_init): New function.
3813         * iconvdata/iso8859-11.h: Removed.
3814         * iconvdata/Makefile (gen-8bit-gap-modules): Add iso8859-11.
3815         (distribute): Remove iso8859-11.h.
3816         * iconvdata/tst-tables.sh: Add ISO-8859-11.
3818         * stdio-common/vfscanf.c (inchar): Restore errno from previous
3819         underflow operation if c == (W)EOF.
3821 2002-07-03  Jakub Jelinek  <jakub@redhat.com>
3823         * stdio-common/printf_fp.c (__printf_fp): If _FPIO_CONST_SHIFT is
3824         non-zero, adjust exponent.
3825         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl, erfl, __erfcl, erfcl):
3826         Remove NO_LONG_DOUBLE aliases.
3827         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l, expm1l): Likewise.
3828         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl, log1pl): Likewise.
3829         (__log1pl): Raise divide by zero and invalid exceptions when needed.
3830         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Special case
3831         1**y and -1**+-Inf.
3832         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c (__mpn_extract_long_double):
3833         Fix BITS_PER_MP_LIMB 32 extraction.
3834         * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Don't raise
3835         exceptions for qNaNs.
3836         * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Likewise.
3837         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgamma_r):
3838         Raise exceptions when needed.  Don't recurse unnecessarily.
3839         Special case 1.0L and 2.0L arguments to avoid -0.0L as result.
3840         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_y0l): Don't raise
3841         exceptions for qNaNs.
3842         * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Make qs 64-bit
3843         to fix *quo return value sign.
3844         * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gamma_r): Special
3845         case -Inf argument.
3846         * soft-fp/op-4.h (_FP_FRAC_CLZ_4): Fix a pasto.
3848 2002-07-01  Jakub Jelinek  <jakub@redhat.com>
3850         * libio/tst-eof.c (do_test): Remove unused ch and tm variables.
3851         * iconvdata/iso-2022-jp-3.c (EMIT_SHIFT_TO_INIT): Kill warnings if
3852         -DNDEBUG.
3854 2002-07-10  Ulrich Drepper  <drepper@redhat.com>
3856         * malloc/hooks.c (realloc_check): If mremap succeeds actually use
3857         the result.
3859         * sysdeps/i386/i486/bits/string.h: Add early clobber for "a"
3860         output parameter.  Reported by Denis Zaitsev <zzz@cd-club.ru>.
3862         * Versions.def (libthread_db): Add GLIBC_2.3.
3864 2002-07-09  Jakub Jelinek  <jakub@redhat.com>
3866         * libio/freopen.c (freopen): Reset jump tables, use mmap stdio for the
3867         new stream if possible.
3868         * libio/freopen64.c (freopen64): Likewise.
3869         * libio/Makefile (tests): Add tst-freopen.
3870         * libio/tst-freopen.c: New file.
3872 2002-07-03  Jakub Jelinek  <jakub@redhat.com>
3874         * libio/stdio.h (obstack_printf): Add format attribute.
3875         (obstack_vprintf): Likewise.
3877 2002-07-04  Jakub Jelinek  <jakub@redhat.com>
3879         * posix/regex_internal.h (re_token_t): Shrink the structure to 8
3880         resp. 16 bytes on 32-bit resp. 64-bit platforms.
3881         (re_charset_t, re_string_t): Reorder structure members for 64-bit
3882         architectures.
3884 2002-07-04  Jakub Jelinek  <jakub@redhat.com>
3886         * posix/regcomp.c (re_compile_internal): Move clearing of dfa...
3887         (init_dfa): ...here.
3889 2002-07-05  Isamu Hasegawa  <isamu@yamato.ibm.com>
3891         * posix/regcomp.c (parse_sub_exp): Add nodes OP_OPEN_SUBEXP and
3892         OP_CLOSE_SUBEXP at both ends of sub expressions instead of SUBEXP
3893         nodes in parse trees.
3894         (calc_first): Fix the Definition of `firsts' of OP_OPEN_SUBEXP
3895         and OP_CLOSE_SUBEXP, and remove the definition of SUBEXP.
3896         (calc_epsdest): Treat OP_OPEN_SUBEXP and OP_CLOSE_SUBEXP as the
3897         nodes which can epsilon transit.
3898         * posix/regex_internal.h: Add OP_OPEN_SUBEXP and OP_CLOSE_SUBEXP
3899         to IS_EPSILON_NODE macro.
3900         * posix/regexec.c (update_regs): New function to update registers
3901         by refering OP_OPEN_SUBEXP and OP_CLOSE_SUBEXP nodes.
3902         (proceed_next_node): Use the entities of the nodes to determine
3903         whether the node can transit to.
3904         (set_regs): Use update_regs function to update registers.
3906 2002-07-03  Jakub Jelinek  <jakub@redhat.com>
3908         * posix/bug-regex4.c (main): Remove duplicate setlocale.
3909         * posix/bug-regex6.c: New file.
3910         * posix/Makefile (tests): Add bug-regex6.
3911         (bug-regex6-ENV): Set LOCPATH.
3913 2002-07-10  Ulrich Drepper  <drepper@redhat.com>
3915         * Versions.def [libpthread]: Add GLIBC_2.2.6.
3916         * posix/Versions [libc] (GLIBC_2.2.6): Add __nanosleep.
3918 2002-07-06  Bruno Haible  <bruno@clisp.org>
3920         * sysdeps/unix/sysv/sysv4/bits/sigset.h (__NSSBITS): Correct value.
3922 2002-07-06  Bruno Haible  <bruno@clisp.org>
3924         * include/sys/socket.h (__libc_sendto, __libc_recvfrom): New
3925         declarations.
3927         * sysdeps/i386/fpu/libm-test-ulps: Add some ulps for AMD K7.
3929         * rt/Makefile (tests): Don't add tst-aio* in a single-threaded build.
3931         * sysdeps/unix/bsd/sun/sunos4/bits/utsname.h: Test for _SYS_UTSNAME_H,
3932         not _UTSNAME_H.
3933         * sysdeps/unix/bsd/ultrix4/bits/utsname.h: Likewise.
3935         * sysdeps/generic/bits/stropts.h: Protect against direct inclusion.
3936         * sysdeps/generic/bits/ustat.h: Likewise.
3938         * sysdeps/unix/sysv/linux/bits/statvfs.h (ST_NODIRATIME): Set to 2048.
3940 2002-07-08  Andreas Jaeger  <aj@suse.de>
3942         * sysdeps/x86_64/elf/initfini.c (__asm__): Call call_gmon_start.
3944 2002-07-08  Andreas Jaeger  <aj@suse.de>
3946         * sysdeps/x86_64/fpu/s_fdiml.S: Fix wrong register name.
3948 2002-07-06  Andreas Jaeger  <aj@suse.de>
3950         * sysdeps/x86_64/fpu/bits/mathinline.h: New file.
3951         * sysdeps/x86_64/fpu/s_copysign.S: New file.
3952         * sysdeps/x86_64/fpu/s_copysignf.S: New file.
3953         * sysdeps/x86_64/fpu/s_copysignl.S: New file.
3954         * sysdeps/x86_64/fpu/s_finitel.S: New file.
3955         * sysdeps/x86_64/fpu/s_fmax.S: New file.
3956         * sysdeps/x86_64/fpu/s_fmaxf.S: New file.
3957         * sysdeps/x86_64/fpu/s_fmaxl.S: New file.
3958         * sysdeps/x86_64/fpu/s_fmin.S: New file.
3959         * sysdeps/x86_64/fpu/s_fminf.S: New file.
3960         * sysdeps/x86_64/fpu/s_fminl.S: New file.
3962 2002-06-05  Brian Youmans <3diff@gnu.org>
3964         * sysdeps/ia64/fpu/e_acos.S: Added text of Intel license.
3965         * sysdeps/ia64/fpu/e_acosf.S: Likewise.
3966         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
3967         * sysdeps/ia64/fpu/e_asin.S: Likewise.
3968         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
3969         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
3970         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
3971         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
3972         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
3973         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
3974         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
3975         * sysdeps/ia64/fpu/e_exp.S: Likewise.
3976         * sysdeps/ia64/fpu/e_expf.S: Likewise.
3977         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
3978         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
3979         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
3980         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
3981         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
3982         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
3983         * sysdeps/ia64/fpu/e_log.S: Likewise.
3984         * sysdeps/ia64/fpu/e_logf.S: Likewise.
3985         * sysdeps/ia64/fpu/e_pow.S: Likewise.
3986         * sysdeps/ia64/fpu/e_powf.S: Likewise.
3987         * sysdeps/ia64/fpu/e_powl.S: Likewise.
3988         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
3989         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
3990         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
3991         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
3992         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
3993         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
3994         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
3995         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
3996         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
3997         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
3998         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
3999         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
4000         * sysdeps/ia64/fpu/libm_atan2_req.S: Likewise.
4001         * sysdeps/ia64/fpu/libm_error.c: Likewise.
4002         * sysdeps/ia64/fpu/libm_frexp4.S: Likewise.
4003         * sysdeps/ia64/fpu/libm_frexp4f.S: Likewise.
4004         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
4005         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
4006         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
4007         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
4008         * sysdeps/ia64/fpu/s_ldexp.S: Likewise.
4009         * sysdeps/ia64/fpu/s_ldexpf.S: Likewise.
4010         * sysdeps/ia64/fpu/s_ldexpl.S: Likewise.
4011         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
4012         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
4013         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
4014         * sysdeps/ia64/fpu/s_logb.S: Likewise.
4015         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
4016         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
4017         * sysdeps/ia64/fpu/s_modf.S: Likewise.
4018         * sysdeps/ia64/fpu/s_modff.S: Likewise.
4019         * sysdeps/ia64/fpu/s_modfl.S: Likewise.
4020         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
4021         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
4022         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
4023         * sysdeps/ia64/fpu/s_rint.S: Likewise.
4024         * sysdeps/ia64/fpu/s_rintf.S: Likewise.
4025         * sysdeps/ia64/fpu/s_rintl.S: Likewise.
4026         * sysdeps/ia64/fpu/s_round.S: Likewise.
4027         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
4028         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
4029         * sysdeps/ia64/fpu/s_scalbn.S: Likewise.
4030         * sysdeps/ia64/fpu/s_scalbnf.S: Likewise.
4031         * sysdeps/ia64/fpu/s_scalbnl.S: Likewise.
4032         * sysdeps/ia64/fpu/s_significand.S: Likewise.
4033         * sysdeps/ia64/fpu/s_significandf.S: Likewise.
4034         * sysdeps/ia64/fpu/s_significandl.S: Likewise.
4035         * sysdeps/ia64/fpu/s_tan.S: Likewise.
4036         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
4037         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
4038         * sysdeps/ia64/fpu/s_trunc.S: Likewise.
4039         * sysdeps/ia64/fpu/s_truncf.S: Likewise.
4040         * sysdeps/ia64/fpu/s_truncl.S: Likewise.
4041         * sysdeps/ieee754/dbl-64/doasin.c: Changed copyright notice to
4042         reflect IBM donation of math library to FSF
4043         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
4044         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
4045         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
4046         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
4047         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
4048         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
4049         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
4050         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
4051         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
4052         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
4053         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
4054         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
4055         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
4056         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
4057         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
4058         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
4059         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
4060         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
4061         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
4062         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
4063         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
4064         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
4065         * sysdeps/gnu/netinet/udp.h: Added BSD copying permission notice
4066         * sysdeps/vax/__longjmp.c: Likewise.
4067         * sysdeps/vax/setjmp.c: Likewise.
4068         * libio/filedoalloc.c: Fixed BSD copying permission notice to
4069         remove advertising clause
4070         * sysdeps/vax/htonl.s: Likewise.
4071         * sysdeps/vax/htons.s: Likewise.
4072         * libio/wfiledoalloc.c: Likewise.
4073         * stdlib/random.c: Likewise.
4074         * stdlib/random_r.c: Likewise.
4075         * sysdeps/mach/sys/reboot.h: Likewise.
4076         * inet/getnameinfo.c: Deleted advertising clause from Inner Net License
4077         * sysdeps/posix/getaddrinfo.c: Likewise.
4078         * sunrpc/des_impl.c: Updated license permission notice to Lesser
4079         GPL and corrected pointer to point to the correct license.
4081 2002-07-04  Andreas Jaeger  <aj@suse.de>
4083         * scripts/config.guess: New upstream version.
4084         * scripts/config.sub: Likewise.
4086 2002-07-02  Andreas Schwab  <schwab@suse.de>
4088         * resolv/nss_dns/dns-network.c (getanswer_r): Reduce linebuflen
4089         in parallel to bumping up the buffer pointer.
4091 2002-07-01  Jakub Jelinek  <jakub@redhat.com>
4093         * math/libm-test.inc (acos_test): Add missing L suffix for
4094         expected result.
4095         (cpow_test): Likewise.
4096         * sysdeps/i386/fpu/libm-test-ulps: Adjust errors for cpow, remove
4097         error for acos (0.0625).
4099 2002-06-30  Ulrich Drepper  <drepper@redhat.com>
4101         * locale/iso-639.def: Add entry for Ganda.
4102         * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE3): New
4103         definition.
4104         (address_finish): Handle entries with two letter ISO 639 code.
4106         * iconvdata/Makefile: Recreate gconv-modules.cache file in target
4107         directory if it existed before.
4108         * iconv/iconvconfig.c: Implement --prefix option.
4110         * math/libm-test.inc (cexp_test): Add missing L suffix for
4111         expected result.  Reported by Stephen L Moshier <steve@moshier.net>.
4112         * sysdeps/i386/fpu/libm-test-ulps: Adjust error for cexp (0.75 +
4113         1.25 i).
4115 2002-05-29  H.J. Lu  <hjl@gnu.org>
4117         * elf/dl-error.c (_dl_signal_cerror): Report error if ld.so debug
4118         is turned on.
4120 2002-05-28  H.J. Lu  <hjl@gnu.org>
4122         * elf/dl-deps.c (_dl_map_object_deps): Don't add objects which
4123         are not dlopened on the dependency list of a dlopened object.
4125 2002-06-30  Ulrich Drepper  <drepper@redhat.com>
4127         * elf/dl-lookup.c (add_dependency): It is not necessary to add
4128         dependencies if they are created between objects which are created
4129         while processing RTLD_NOW for objects loaded as part of the same
4130         dlopen call.
4132 2002-06-14  H.J. Lu  <hjl@gnu.org>
4134         * elf/Makefile (tests): Add circleload1.
4135         (modules-names): Add circlemod1, circlemod2, circlemod3,
4136         circlemod1a, circlemod2a and circlemod3a.
4137         ($(objpfx)circleload1): New target.
4138         ($(objpfx)circleload1.out): Likewise.
4139         ($(objpfx)circlemod1.so): Likewise.
4140         ($(objpfx)circlemod2.so): Likewise.
4141         ($(objpfx)circlemod1a.so): Likewise.
4142         ($(objpfx)circlemod2a.so): Likewise.
4143         * elf/circleload1.c: New file.
4144         * elf/circlemod1.c: New file.
4145         * elf/circlemod1a.c: New file.
4146         * elf/circlemod2.c: New file.
4147         * elf/circlemod2a.c: New file.
4148         * elf/circlemod3.c: New file.
4149         * elf/circlemod3a.c: New file.
4151 2002-06-18  Amos Waterland  <apw@us.ibm.com>
4153         * sysdeps/pthread/aio_cancel.c (aio_cancel): Add check for invalid
4154         file descriptor.
4155         * sysdeps/pthread/aio_fsync.c (aio_fsync): Add check for invalid fd;
4156         add check for fd not open for writing.
4158         * sysdeps/pthread/aio_suspend.c (aio_suspend): Add check for
4159         completed element(s) and do not suspend thread if so.  Patch
4160         heavily modified by drepper.
4162         * rt/tst-aio7.c: New file.  Regression test for problems which the
4163         above three changes fix.
4164         * rt/Makefile (tests): Add tst-aio7.
4166 2002-06-29  Ulrich Drepper  <drepper@redhat.com>
4168         * rt/tst-aio6.c: Fix comment.
4170         * catgets/gencat.c (read_input_file): Handle more than one slash
4171         at end of line correctly [PR libc/3926].
4172         Based on a patch by Steven Kim <steven.kim@peregrine.com>.
4174         * catgets/sample.SJIS: Add test case for above bug.
4175         * catgets/test-gencat.c: Adjust test code.
4176         * catgets/test-gencat.sh: Adjust expected results.
4178         * elf/do-rel.h (elf_dynamic_do_rel): Avoid overflow in computation
4179         to skip relative relocations.
4180         Patch by Geoff Keating <geoffk@redhat.com>.
4182 2002-05-26  Bruno Haible  <bruno@clisp.org>
4184         * iconv/loop.c (STANDARD_FROM_LOOP_ERR_HANDLER): New macro.
4185         (STANDARD_TO_LOOP_ERR_HANDLER): Renamed from STANDARD_ERR_HANDLER.
4186         All callers changed.
4187         * iconv/gconv_simple.c (ascii_internal_loop): For error handling use
4188         STANDARD_FROM_LOOP_ERR_HANDLER.
4189         (utf8_internal_loop): Likewise.
4190         (ucs2_internal_loop): Likewise.
4191         (internal_ucs2_loop): Perform error handling like in
4192         STANDARD_FROM_LOOP_ERR_HANDLER.
4193         * iconvdata/unicode.c (BODY for TO_LOOP): Perform error handling like
4194         in STANDARD_FROM_LOOP_ERR_HANDLER.
4195         (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4196         handling.
4197         * iconvdata/utf-16.c (BODY for TO_LOOP): Perform error handling like
4198         in STANDARD_FROM_LOOP_ERR_HANDLER.
4199         (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4200         handling.
4201         * iconvdata/utf-32.c (BODY for TO_LOOP): Perform error handling like
4202         in STANDARD_FROM_LOOP_ERR_HANDLER.
4203         (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4204         handling.
4205         * iconvdata/big5.c (BODY for FROM_LOOP): For error handling use
4206         STANDARD_FROM_LOOP_ERR_HANDLER.
4207         * iconvdata/iso-2022-jp.c (BODY for FROM_LOOP): Likewise.
4208         * iconvdata/8bit-gap.c (BODY for FROM_LOOP): Likewise.
4209         * iconvdata/8bit-generic.c (BODY for FROM_LOOP): Likewise.
4210         * iconvdata/ansi_x3.110.c (BODY for FROM_LOOP): Likewise.
4211         * iconvdata/armscii-8.c (BODY for FROM_LOOP): Likewise.
4212         * iconvdata/cp1255.c (BODY for FROM_LOOP): Likewise.
4213         * iconvdata/cp1258.c (BODY for FROM_LOOP): Likewise.
4214         * iconvdata/euc-cn.c (BODY for FROM_LOOP): Likewise.
4215         * iconvdata/euc-jisx0213.c (BODY for FROM_LOOP): Likewise.
4216         * iconvdata/euc-jp.c (BODY for FROM_LOOP): Likewise.
4217         * iconvdata/euc-kr.c (BODY for FROM_LOOP): Likewise.
4218         * iconvdata/euc-tw.c (BODY for FROM_LOOP): Likewise.
4219         * iconvdata/big5hkscs.c (BODY for FROM_LOOP): Likewise.
4220         * iconvdata/gb18030.c (BODY for FROM_LOOP): Likewise.
4221         * iconvdata/gbk.c (BODY for FROM_LOOP): Likewise.
4222         * iconvdata/iso-2022-cn-ext.c (BODY for FROM_LOOP): Likewise.
4223         * iconvdata/iso-2022-cn.c (BODY for FROM_LOOP): Likewise.
4224         * iconvdata/iso-2022-jp-3.c (BODY for FROM_LOOP): Likewise.
4225         * iconvdata/iso-2022-kr.c (BODY for FROM_LOOP): Likewise.
4226         * iconvdata/iso646.c (BODY for FROM_LOOP): Likewise.
4227         * iconvdata/iso_6937-2.c (BODY for FROM_LOOP): Likewise.
4228         * iconvdata/iso_6937.c (BODY for FROM_LOOP): Likewise.
4229         * iconvdata/johab.c (BODY for FROM_LOOP): Likewise.
4230         * iconvdata/shift_jisx0213.c (BODY for FROM_LOOP): Likewise.
4231         * iconvdata/sjis.c (BODY for FROM_LOOP): Likewise.
4232         * iconvdata/t.61.c (BODY for FROM_LOOP): Likewise.
4233         * iconvdata/uhc.c (BODY for FROM_LOOP): Likewise.
4234         * iconvdata/utf-7.c (BODY for FROM_LOOP): Likewise.
4235         * iconvdata/gbbig5.c (BODY for FROM_LOOP): Likewise.  When ignoring
4236         an error, still set result = __GCONV_ILLEGAL_INPUT.
4237         (BODY for TO_LOOP): Likewise.
4238         * iconvdata/ibm930.c (BODY for FROM_LOOP): For error handling use
4239         STANDARD_FROM_LOOP_ERR_HANDLER.
4240         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4241         * iconvdata/ibm932.c: Include <dlfcn.h> and <stdint.h>.
4242         (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4243         handling.
4244         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4245         * iconvdata/ibm933.c (BODY for FROM_LOOP): For error handling use
4246         STANDARD_FROM_LOOP_ERR_HANDLER.
4247         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4248         * iconvdata/ibm935.c (BODY for FROM_LOOP): For error handling use
4249         STANDARD_FROM_LOOP_ERR_HANDLER.
4250         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4251         * iconvdata/ibm937.c (BODY for FROM_LOOP): For error handling use
4252         STANDARD_FROM_LOOP_ERR_HANDLER.
4253         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4254         * iconvdata/ibm939.c (BODY for FROM_LOOP): For error handling use
4255         STANDARD_FROM_LOOP_ERR_HANDLER.
4256         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4257         * iconvdata/ibm943.c: Include <dlfcn.h> and <stdint.h>.
4258         (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4259         handling.
4260         (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4261         * iconvdata/gbgbk.c (BODY for FROM_LOOP): Update.
4262         * iconvdata/iso8859-1.c (BODY for TO_LOOP): Update.
4263         * iconvdata/tcvn5712-1.c (BODY for TO_LOOP): Update.
4265 2002-06-28  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4267         * sysdeps/sh/dl-machine.h (elf_machine_load_address): Use local
4268         labels in assembler instructions.
4270 2002-06-25  Ulrich Drepper  <drepper@redhat.com>
4272         * libio/fileops.c (_IO_file_xsgetn_mmap): Always set EOF flag if
4273         not enough content is available.
4274         * libio/tst-eof.c: New file.
4275         * libio/Makefile (tests): Add tst-eof.
4277         * libio/fileops.c (_IO_file_underflow_mmap): Read a single byte to
4278         update atime.
4279         * libio/tst-atime.c: New file.
4280         * libio/Makefile (tests): Add tst-atime.
4282         * argp/argp-fmtstream.c (__argp_fmtstream_update): Avoid crash in
4283         handling of overly long words.
4285 2002-06-25  Andreas Jaeger  <aj@suse.de>
4287         * sysdeps/x86-64/dl-machine.h (elf_machine_load_address): Rewrite
4288         to not use 32-bit pc relative relocations.
4289         (elf_machine_dynamic): Likewise.
4291 2002-06-21  Ulrich Drepper  <drepper@redhat.com>
4293         * sysdeps/unix/sysv/linux/getdents.c [__ASSUME_GETDENTS64_SYSCALL]
4294         (__GETDENTS): Check for failed getdents64 syscall.
4295         * dirent/Makefile (tests): Add bug-readdir1.
4296         * dirent/bug-readdir1.c: New file.
4298 2002-06-17  Jakub Jelinek  <jakub@redhat.com>
4300         * elf/dl-lookup.c (_dl_debug_bindings): Use type_class 4 for TLS
4301         lookups.
4302         * elf/rtld.c (dl_main): Move TLS setup code before LD_TRACE_PRELINKING
4303         code.  Print TLS modid and offset for modules containing PT_TLS
4304         segments.
4306 2002-06-09  Jakub Jelinek  <jakub@redhat.com>
4308         * sysdeps/unix/sysv/linux/i386/dl-brk.c: Move...
4309         * sysdeps/unix/sysv/linux/dl-brk.c: ...here.
4310         * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: Move...
4311         * sysdeps/unix/sysv/linux/dl-sbrk.c: ...here.
4313 2002-06-07  Jakub Jelinek  <jakub@redhat.com>
4315         * nss/getXXbyYY_r.c (NEW, NEW1): Define.
4316         (NEW (REENTRANT_NAME)): Strong alias to INTERNAL (REENTRANT_NAME).
4317         (REENTRANT_NAME@@GLIBC_2.1.2): Use NEW (REENTRANT_NAME).
4318         * nss/getXXent_r.c (NEW, NEW1): Define.
4319         (NEW (REENTRANT_GETNAME)): Strong alias to
4320         INTERNAL (REENTRANT_GETNAME).
4321         (REENTRANT_GETNAME@@GLIBC_2.1.2): Use NEW (REENTRANT_GETNAME).
4323 2002-06-21  Ulrich Drepper  <drepper@redhat.com>
4325         * libio/fileops.c (_IO_file_setbuf_mmap): New function.
4326         (_IO_file_jumps_mmap): Use it.
4327         * libio/iosetvbuf.c: Don't call _IO_WSETBUF.
4328         * libio/libioP.h: Remove _IO_wdefault_setbuf and
4329         _IO_wdefault_setbuf_internal prorotypes.  Add _IO_file_setbuf_mmap
4330         prototype.
4331         * libio/wfileops.c (_IO_wfile_setbuf): Removed.
4332         (_IO_wfile_jumps_mmap): Don't use it anymore.
4333         * libio/wgenops.c (_IO_wdefault_setbuf): Removed.
4334         * libio/memstream.c (_IO_wmem_jumps): Use _IO_default_setbuf not
4335         _IO_wdefault_setbuf.
4336         * libio/vswprintf.c (_IO_wstrn_jumps): Likewise.
4337         * libio/wstrops.c (_IO_wstr_jumps): Likewise.
4338         * stdio-common/vfprintf.c (_IO_helper_jumps): Likewise.
4340 2002-06-05  Jakub Jelinek  <jakub@redhat.com>
4342         * libio/Makefile (tests): Add tst-mmap-setvbuf.
4343         * libio/tst-mmap-setvbuf.c: New test.
4345 2002-06-21  Andreas Jaeger  <aj@suse.de>
4347         * sysdeps/i386/fpu/libm-test-ulps: Add some ulps from my P3.
4349 2002-06-18  Jakub Jelinek  <jakub@redhat.com>
4351         * include/unistd.h (__fork_internal): Remove.
4352         (__fork): Don't define to __fork_internal.
4353         * sysdeps/mach/hurd/fork.c (__fork): Remove INTDEF.
4354         * sysdeps/unix/sysv/aix/fork.c (__fork): Likewise.
4355         * sysdeps/unix/sysv/linux/ia64/fork.S (__fork_internal): Remove alias.
4356         * sysdeps/unix/sysv/linux/sparc/fork.S (__fork_internal): Likewise.
4357         * sysdeps/unix/sysv/linux/syscalls.list (__fork_internal): Likewise.
4359 2002-06-20  Ulrich Drepper  <drepper@redhat.com>
4361         * po/hr.po: New file.
4363 2002-06-11  Wolfram Gloger  <wg@malloc.de>
4365         * malloc/malloc.c: Fix error path when new_heap() returns NULL.
4366         Reported by Michael Meissner <meissner@redhat.com>.
4368 2002-06-20  Ulrich Drepper  <drepper@redhat.com>
4370         * sysdeps/unix/sysv/linux/ia64/getcontext.S: Fix typo.
4371         Patch by Hans Boehm <hans_boehm@hp.com>.
4373 2002-06-20  Andreas Jaeger  <aj@suse.de>
4375         * math/libm-test.inc: Use exact values as input parameters,
4376         compute output parameters with 36 digits for 128-bit long doubles.
4377         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
4378         * sysdeps/x86-64/fpu/libm-test-ulps: Regenerated.
4379         * sysdeps/ia64/fpu/libm-test-ulps: Regenerated.
4381 2002-06-13  Stephen L Moshier  <steve@moshier.net>
4383         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Fix cases in which
4384         argument or result is subnormal.
4386 2002-06-19  Ulrich Drepper  <drepper@redhat.com>
4388         * sysdeps/i386/fpu/s_remquo.S: Fix three mistakes in computing the
4389         quotient.
4390         * sysdeps/i386/fpu/s_remquof.S: Likewise.
4391         * sysdeps/i386/fpu/s_remquol.S: Likewise.
4393         * sysdeps/hppa/dl-machine.h: Don't use multi-line string literals.
4395 2002-06-17  David Mosberger  <davidm@hpl.hp.com>
4397         * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h (uc_sigmask): Fix
4398         typo: corresponding sigcontext field is called sc_mask, not sc_sigmask.
4399         Reported by Peter A. Buhr.
4401 2002-06-15  Roland McGrath  <roland@frob.com>
4403         * sysdeps/mach/hurd/mmap.c (__mmap): Add a dead case that quiets a
4404         warning.
4406         * sysdeps/mach/hurd/getcwd.c
4407         (_hurd_canonicalize_directory_name_internal): unsigned int -> size_t
4409         * sysdeps/unix/sysv/linux/bits/ustat.h: Moved to ...
4410         * sysdeps/generic/bits/ustat.h: ... here (was almost identical).
4412         * sysdeps/alpha/divrem.h: Use local label instead of global one for
4413         jump to local subroutine.
4415 2002-06-14  Roland McGrath  <roland@frob.com>
4417         * sysdeps/mach/hurd/i386/Makeconfig: File moved to ...
4418         * sysdeps/mach/hurd/Makeconfig: ... here.
4420 2002-06-13  Andreas Schwab  <schwab@suse.de>
4422         * sysdeps/m68k/fpu/s_finite.c: Remove INTDEF.
4423         * sysdeps/m68k/fpu/s_finitef.c: Likewise.
4424         * sysdeps/m68k/fpu/s_finitel.c: Likewise.
4426 2002-06-13  Roland McGrath  <roland@frob.com>
4428         * hurd/hurdstartup.h (_hurd_startup): int -> intptr_t in MAIN arg type.
4429         * hurd/hurdstartup.c (_hurd_startup): Likewise.
4430         Use intptr_t instead of int for argc in stack layout.
4431         * sysdeps/mach/hurd/alpha/init-first.c (init): Fix argument type.
4432         (_dl_init_first): Likewise.
4433         (_hurd_stack_setup): Likewise.
4434         (init1): Add a cast.
4435         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start: go): Fix arg type.
4437         * sysdeps/mach/hurd/if_index.c (if_nameindex): Use size_t for AMOUNT
4438         argument to pfinet_siocgifconf RPC.
4440 2002-06-13  Andreas Schwab  <schwab@suse.de>
4442         * sysdeps/m68k/fpu/s_isinf.c (INTDEFX): Define to get correct
4443         expansion order.
4445 2002-06-12  Roland McGrath  <roland@frob.com>
4447         * sysdeps/generic/tmpfile.c [USE_IN_LIBIO] (tmpfile): Don't #define
4448         if already defined.
4449         [USE_IN_LIBIO]: Conditionalize versioned_symbol use on
4450         [GEN_THIS == __GT_FILE] so that tmpfile64.c's inclusion doesn't get it.
4452 2002-06-11  Roland McGrath  <roland@frob.com>
4454         * sysdeps/mach/hurd/xstat64.c: Conditionalize entire contents of the
4455         file on [!RTLD_STAT64].
4456         * sysdeps/mach/hurd/fxstat64.c: Likewise.
4458         * sysdeps/mach/hurd/tmpfile.c (tmpfile64): Define as alias of tmpfile.
4459         (__fdopen): Use INTUSE.
4460         * sysdeps/mach/hurd/tmpfile64.c: New file, empty placeholder.
4462         * stdio-common/tmpfile64.c: File removed.
4463         * sysdeps/generic/tmpfile64.c: New file.
4464         * sysdeps/generic/tmpfile.c (GEN_THIS): New macro, define to __GT_FILE
4465         if not already defined.
4466         (tmpfile): Use it in place of __GT_FILE.
4468         * include/unistd.h: Declare __chown_internal.
4470         * sysdeps/mach/hurd/sendfile64.c (sendfile64): Do real work here.
4471         * sysdeps/mach/hurd/sendfile.c (sendfile): Call that.
4473 2002-06-09  Roland McGrath  <roland@frob.com>
4475         Update to new Hurd RPC interfaces supporting 64-bit file sizes.
4476         * sysdeps/mach/hurd/configure.in: Check for <hurd/version.h> with
4477         value of HURD_INTERFACE_VERSION >= 20020609.
4478         * sysdeps/mach/hurd/configure: Regenerated.
4479         * shlib-versions (.*-.*-gnu-gnu.*): Set libhurduser=0.3.
4480         * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Rewritten to
4481         convert a struct stat64 into a struct stat and return 0 or -1
4482         with errno set to EOVERFLOW.
4483         * sysdeps/mach/hurd/statfsconv.c (statfs64_conv): Likewise
4484         for struct statfs64 to struct statfs.
4485         * sysdeps/mach/hurd/xstat.c (__xstat): Use converter and call ...
4486         * sysdeps/mach/hurd/xstat64.c (__xstat64): ... this, real work here.
4487         * sysdeps/mach/hurd/fxstat.c (__fxstat): Likewise.
4488         * sysdeps/mach/hurd/fxstat64.c (__fxstat64): Likewise.
4489         * sysdeps/mach/hurd/lxstat.c (__lxstat): Likewise.
4490         * sysdeps/mach/hurd/lxstat64.c (__lxstat64): Likewise.
4491         * sysdeps/mach/hurd/statfs.c (__statfs): Likewise.
4492         * sysdeps/mach/hurd/statfs64.c (__statfs64): Likewise.
4493         * sysdeps/mach/hurd/fstatfs.c (__fstatfs): Likewise.
4494         * sysdeps/mach/hurd/fstatfs64.c (__fstatfs64): Likewise.
4495         * sysdeps/mach/hurd/pwrite64.c (__libc_pwrite64): Do real work here.
4496         * sysdeps/mach/hurd/pwrite.c (__libc_pwrite): Call that.
4497         * sysdeps/mach/hurd/pread64.c (__libc_pread64): Do real work here.
4498         * sysdeps/mach/hurd/pread.c (__libc_pread): Call that.
4499         * sysdeps/mach/hurd/lseek64.c (__libc_lseek64): Do real work here.
4500         * sysdeps/mach/hurd/lseek.c (__libc_lseek): Call that.
4501         * sysdeps/mach/hurd/readdir64.c (__readdir64): Do real work here.
4502         * sysdeps/mach/hurd/readdir.c (__readdir): Call that.
4503         * sysdeps/mach/hurd/readdir64_r.c (__readdir64_r): Do real work here.
4504         * sysdeps/mach/hurd/readdir_r.c (__readdir64_r): Call that.
4505         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry):
4506         Use struct stat64 for io_stat argument.
4507         * sysdeps/mach/hurd/readlink.c (__readlink): Likewise.
4508         * hurd/fopenport.c (seekio): Remove EOVERFLOW check, pass POS directly
4509         to io_seek.
4510         * hurd/fd-read.c (_hurd_fd_read): Use loff_t for OFFSET argument.
4511         * hurd/fd-write.c (_hurd_fd_write): Likewise.
4512         * hurd/hurd/fd.h: Update decls.
4513         * sysdeps/mach/hurd/getcwd.c
4514         (_hurd_canonicalize_directory_name_internal): Use ino64_t
4515         and struct dirent64.
4516         * sysdeps/mach/hurd/dl-sysdep.c (open_file): Use struct stat64.
4517         (__xstat): Renamed to __xstat64, use struct stat64 for argument.
4518         (__fxstat): Renamed to __fxstat64, use struct stat64 for argument.
4519         (__lseek): Renamed to __libc_lseek64, use off64_t for argument.
4521 2002-06-08  Roland McGrath  <roland@frob.com>
4523         * sysdeps/mach/hurd/dirstream.h (struct __dirstream): Use size_t
4524         instead of unsigned long int for __allocation and __size members.
4526 2002-06-09  Jakub Jelinek  <jakub@redhat.com>
4528         * sysdeps/unix/sysv/linux/i386/dl-brk.c: Move...
4529         * sysdeps/unix/sysv/linux/dl-brk.c: ...here.
4530         * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: Move...
4531         * sysdeps/unix/sysv/linux/dl-sbrk.c: ...here.
4533 2002-06-07  Roland McGrath  <roland@frob.com>
4535         * sysdeps/mach/hurd/bits/environments.h: File removed.
4537 2002-06-07  Jakub Jelinek  <jakub@redhat.com>
4539         * sysdeps/unix/sysv/linux/alpha/sendfile64.c: New file.
4540         * sysdeps/unix/sysv/linux/ia64/sendfile64.c: New file.
4541         * sysdeps/unix/sysv/linux/sparc/sparc64/sendfile64.c: New file.
4542         * sysdeps/unix/sysv/linux/x86_64/sendfile64.c: New file.
4543         * sysdeps/unix/sysv/linux/syscalls.list (sendfile): Remove EXTRA.
4544         (sendfile64): Likewise.
4545         * sysdeps/unix/sysv/linux/alpha/syscalls.list (sendfile): Likewise.
4546         * sysdeps/unix/sysv/linux/ia64/syscalls.list (sendfile): Likewise.
4547         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (sendfile):
4548         Likewise.
4549         * sysdeps/unix/sysv/linux/x86_64/syscalls.list (sendfile): Likewise.
4551         * include/sys/stat.h (__fxstat64, __lxstat64): Only define if not
4552         already defined.
4554 2002-06-04  Bruno Haible  <bruno@clisp.org>
4556         * sysdeps/cris/stackinfo.h: New file.
4558         * sysdeps/hppa/dl-machine.h (elf_machine_rela): Cast reloc_addr
4559         to an integer type before performing bit operations on it.
4561 2002-06-05  Roland McGrath  <roland@frob.com>
4563         * sysdeps/generic/sendfile.c: Include <errno.h>.
4564         * sysdeps/generic/sendfile64.c: Likewise.
4566         * io/Makefile (routines): Add sendfile and sendfile64.
4567         (headers): Add sys/sendfile.h to the list.
4568         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add it here.
4569         * sysdeps/unix/sysv/linux/sys/sendfile.h: Moved to ...
4570         * io/sys/sendfile.h: ... here.
4571         * sysdeps/generic/sendfile.c: New file.
4572         * sysdeps/generic/sendfile64.c: New file.
4574         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.1, GLIBC_2.3):
4575         Move sendfile, sendfile64 to ...
4576         * io/Versions (GLIBC_2.1, GLIBC_2.3): ... here.
4577         * sysdeps/mach/hurd/sendfile.c: New file.
4578         * sysdeps/mach/hurd/sendfile64.c: New file.
4580         * sysdeps/mach/nanosleep.c: New file.
4582 2002-06-04  Roland McGrath  <roland@frob.com>
4584         * sysdeps/alpha/elf/configure.in: New file.  Check for TLS support.
4585         * sysdeps/alpha/elf/configure: New file (generated).
4587 2002-06-02  Roland McGrath  <roland@frob.com>
4589         * include/link.h: Include <tls.h> to make sure USE_TLS is defined.
4591 2002-06-01  Roland McGrath  <roland@frob.com>
4593         * sysdeps/mach/hurd/alpha/init-first.c: New file, modified from
4594         i386/init-first.c by Andrew M. Miklic <miklic@attglobal.net>.
4596 2002-05-19  Ulrich Drepper  <drepper@redhat.com>
4598         * resolv/resolv.h (struct __res_state): Remove unused nstimes.
4599         Add nsmap.
4600         * resolv/res_init.c (__res_vinit): Initialize nsmap array.
4601         Remove nstimes setting.
4602         (res_nclose): Check all MAXNS nameservers with non-NULL nsaddrs.
4603         * resolv/res_send.c (res_nsend): Don't close unconditionally if
4604         there is mix of IPv6 and IPv4 nameservers.
4605         Use nsmap array to find free slots and preserve nameserver ordering.
4606         Fix RES_ROTATE.
4608 2002-05-30  Ulrich Drepper  <drepper@redhat.com>
4610         * sysdeps/unix/sysv/linux/sys/sendfile.h: It is now possible to
4611         use this header with LFS.
4613         * po/sk.po: Update from translation team.
4615 2002-05-28  Andreas Schwab  <schwab@suse.de>
4617         * sysdeps/generic/readelflib.c (process_elf_file): Give correct
4618         message when finding object of wrong class.
4620 2002-05-28  Jakub Jelinek  <jakub@redhat.com>
4622         * sysdeps/wordsize-32/divdi3.c (__moddi3): Fix pasto.
4623         Patch by <radu@netsoft.ro>.
4625 2002-05-30  Ulrich Drepper  <drepper@redhat.com>
4627         * sysdeps/unix/sysv/linux/Makefile [$(subdir)==misc] (sysdep_routines):
4628         Add readahead.
4629         * sysdeps/unix/sysv/linux/readahead.c: New file.
4630         * sysdeps/unix/sysv/linux/syscalls.list: Add sendfile64 syscall.
4631         * sysdeps/unix/sysv/linux/Versions: Export readahead and sendfile64.
4632         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add readahead syscall.
4633         Add sendfile64 alias to sendfile syscall.
4634         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
4635         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
4636         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
4637         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add s_readahead
4638         syscall.
4640         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use __i686.get_pc_thunk.XX
4641         special section for PIC register loading.
4642         * sysdeps/unix/sysv/linux/i386/i686/sysdep.h: Likewise.
4644         * config.h.in: Define HAVE_HIDDEN.
4645         * configure.in: Also define HAVE_HIDDEN if HAVE_PROTECTED is defined.
4647         * elf/elf.h: Correct Alpha TLS relocations according to last spec.
4649 2002-05-28  Roland McGrath  <roland@frob.com>
4651         * sysdeps/mach/alpha/setfpucw.c: New file.
4653 2002-05-26  Roland McGrath  <roland@frob.com>
4655         * sysdeps/mach/hurd/ioctl.c (__ioctl): Don't use sizeof in _IOTS.
4656         Use integer_t instead of int for IOC_VOID case.
4658 2002-05-27  Alexandre Oliva  <aoliva@redhat.com>
4660         * configure.in (DO_STATIC_NSS): Define if --disable-shared.
4662 2002-05-26  Bruno Haible  <bruno@clisp.org>
4664         * iconvdata/iso-2022-jp.c (BODY for TO_LOOP): Avoid running off the
4665         end of the ISO-8859-7 from idx table.
4667 2002-05-27  Ulrich Drepper  <drepper@redhat.com>
4669         * manual/lang.texi: Fix FLT_EPSILON description [PR libc/3649].
4671 2002-05-24  David S. Miller  <davem@redhat.com>
4673         * string/bits/string2.h (memset): Do not try to optimize when
4674         not _STRING_ARCH_unaligned if GCC will do the right thing.
4676 2002-05-21  Isamu Hasegawa  <isamu@yamato.ibm.com>
4678         * posix/regex.c: Define `inline' as a macro into nothing for the
4679         compilers which lack the keyword.
4680         * posix/regex.h: (RE_SYNTAX_GNU_AWK): Remove RE_CONTEXT_INVALID_OPS
4681         for the compatibility of gawk.
4682         * posix/regcomp.c: Add fake implementation of isblank() for the
4683         environments which lack the function.
4684         Don't use free_charset() in case of non-i18n envs.
4685         (build_range_exp): Don't use i18n related code in case of non-i18n
4686         envs.
4687         (build_collating_symbol): Likewise.
4688         (build_equiv_class): Likewise.
4689         (build_charclass): Likewise.
4690         (re_compile_fastmap_iter): Likewise.
4691         (parse_bracket_exp): Likewise.
4692         (build_word_op): Likewise.
4693         (regfree): Don't use free_charset() in case of non-i18n envs.
4694         * posix/regex_internal.h: Remove COMPLEX_BRACKET from
4695         re_token_type_t in case of non-i18n envs.
4696         Don't define re_charset_t in case of non-i18n envs.
4697         Change the type of wcs of re_string_t from wchar_t to wint_t,
4698         since we store also WEOF.
4699         * posix/regex_internal.c: (re_string_realloc_buffers): Change
4700         the type of wcs of re_string_t from wchar_t to wint_t.
4701         (re_string_reconstruct): Likewise.
4702         (create_ci_newstate): Don't use i18n related code in case of
4703         non-i18n envs.
4704         (create_cd_newstate): Likewise.
4706 2002-05-24  Ulrich Drepper  <drepper@redhat.com>
4708         * iconv/loop.c: Fix typo.
4710 2002-05-23  Jakub Jelinek  <jakub@redhat.com>
4712         * inet/ether_line.c (ether_line): Fix a typo causing only
4713         lower 4 bits of each ethernet address byte being assigned.
4714         Don't modify what line points to.
4715         * inet/tst-ether_aton.c (main): Add ether_line tests.
4717 2002-05-23  Marcus Brinkmann  <marcus@gnu.org>
4719         * manual/filesys.texi: Don't make readlink example leak memory
4720         when readlink fails.
4722 2002-05-20  Ulrich Drepper  <drepper@redhat.com>
4724         * iconv/loop.c: Fix condition for defining unaligned loop.  Add
4725         some more security checks.
4727 2002-05-17  David S. Miller  <davem@redhat.com>
4729         * sysdeps/unix/sysv/linux/sparc/fork.S: Define _internal aliases.
4731 2002-05-16  David S. Miller  <davem@redhat.com>
4733         * sysdeps/sparc/sparc32/dl-machine.h (LOAD_PIC_REG): Define.
4734         (elf_machine_dynamic): Use it to force PIC register to be loaded.
4735         (elf_machine_load_address): Likewise.
4736         * sysdeps/sparc/sparc64/dl-machine.h: Mirror sparc32 changes.
4738         * sysdeps/sparc/sparc64/strncmp.S: When second argument pointer
4739         is unaligned, do not forget to fully initialize %g1 magic value.
4741         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Fix 64-bit elf
4742         register definitions and provide 32-bit variants of structures
4743         during 64-bit builds.
4745         * soft-fp/op-1.h (_FP_FRAC_CLEAR_OVERP_1): Define.
4746         * soft-fp/op-2.h (_FP_FRAC_CLEAR_OVERP_2): Define.
4747         * soft-fp/op-4.h (_FP_FRAC_CLEAR_OVERP_4): Define.
4748         * soft-fp/op-common.h (_FP_PACK_CANONICAL): After rounding, if
4749         _FP_FRAC_OVERP_X is set, use _FP_FRAC_CLEAR_OVERP_X to clear it.
4750         (_FP_FROM_INT): Perform right shifts on unsigned integer type.
4751         Do not clear implicit one bit here, it must be done post-rounding.
4752         Only pad to the left using left shift if value uses less than the
4753         available fractional bits.
4755 2002-05-20  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4757         * sysdeps/powerpc/Makefile (sysdeps_routines): Use libgcc-compat
4758         instead of cmpdi2, shdi3, fixdfdi, fixsfdi in csu dir.
4759         (shared-only-routines): Likewise.
4760         * sysdeps/powerpc/libgcc-compat.c: New file.
4761         * sysdeps/wordsize-32/cmpdi2.c: Removed.
4762         * sysdeps/wordsize-32/fixdfdi.c: Removed.
4763         * sysdeps/wordsize-32/fixsfdi.c: Removed.
4764         * sysdeps/wordsize-32/shdi3.c: Removed.
4766 2002-05-16  Bruno Haible  <bruno@clisp.org>
4768         * MakeTAGS (libc.pot): Don't sort the output.
4769         * po/header.pot: Update to match xgettext 0.11 output.
4771 2002-05-16  Bruno Haible  <bruno@clisp.org>
4773         * MakeTAGS (subdirs): Remove duplicates.
4775 2002-05-19  Ulrich Drepper  <drepper@redhat.com>
4777         * sysdeps/unix/sysv/linux/errlist.c: Remove extra weak alias
4778         definiton of _old_sys_nerr.  Define _old_sys_errlist as strong
4779         alias.
4781 2002-05-19  Andreas Jaeger  <aj@suse.de>
4783         * sysdeps/unix/sysv/linux/configure.in: Warn against an
4784         installation in /usr/local.
4786 2002-05-16  Bruno Haible  <bruno@clisp.org>
4788         * sysdeps/unix/sysv/aix/bits/ioctl-types.h: Don't use multiline
4789         string as argument of #error.
4791 2002-05-15  Ulrich Drepper  <drepper@redhat.com>
4793         * stdlib/canonicalize.c (canonicalize): Rename to __realpath and
4794         don't define static.  Remove old __realpath function.  TC1 of
4795         POSIX 2001 will allow the second parameter to be NULL.
4796         * stdlib/test-canon.c: Comment out test for NULL as second
4797         parameter of realpath.
4799         * time/offtime.c (__offtime): Set errno if overflow is detected.
4801         * elf/Makefile (rtld-routines): Remove dl-brk and dl-sbrk.
4802         * sysdeps/unix/sysv/linux/Makefile (sysdep-rtld-routines): Add
4803         dl-brk and dl-sbrk.
4805         * sysdeps/sparc/fpu/bits/mathinline.h (fdim): Add __THROW.
4806         (fdimf): Likewise.
4808 2002-05-15  Roland McGrath  <roland@frob.com>
4810         * hurd/report-wait.c (_S_msg_report_wait): Use mach_msg_id_t for arg.
4812 2002-05-12  Bruno Haible  <bruno@clisp.org>
4814         * iconvdata/testdata/EUC-JISX0213: New file.
4815         * iconvdata/testdata/EUC-JISX0213..UTF8: New file.
4816         * iconvdata/testdata/SHIFT_JISX0213: New file.
4817         * iconvdata/testdata/SHIFT_JISX0213..UTF8: New file.
4818         * iconvdata/testdata/ISO-2022-JP-3: New file.
4819         * iconvdata/testdata/ISO-2022-JP-3..UTF8: New file.
4820         * iconvdata/TESTS: Add EUC-JISX0213, SHIFT_JISX0213, ISO-2022-JP-3.
4821         * iconvdata/run-iconv-test.sh: Skip the charmap test if the charmap
4822         contains comments indicating precomposed characters.
4824 2002-04-21  Bruno Haible  <bruno@clisp.org>
4826         * iconvdata/iso-2022-jp-3.c: New file.
4827         * iconvdata/gconv-modules (ISO-2022-JP-3): New module.
4828         * iconvdata/Makefile (modules): Add ISO-2022-JP-3.
4829         (LDFLAGS-ISO-2022-JP-3.so): New variable.
4830         (ISO-2022-JP-3.so): Depend on libJIS.so and libJISX0213.so.
4831         (distribute): Add iso-2022-jp-3.c.
4833 2002-05-12  Bruno Haible  <bruno@clisp.org>
4835         * iconvdata/tst-table-to.c (main): Restore handling of
4836         transliterations, broken by last patch.
4838 2002-05-12  Bruno Haible  <bruno@clisp.org>
4840         * iconvdata/TESTS: Add IBM922, IBM1124, IBM1129.
4842 2002-05-12  Bruno Haible  <bruno@clisp.org>
4844         * iconvdata/euc-jisx0213.c (BODY for FROM_LOOP): Don't advance inptr
4845         when there is not enough room in the output buffer.
4846         * iconvdata/shift_jisx0213.c (BODY for FROM_LOOP): Likewise.
4848 2002-04-20  Bruno Haible  <bruno@clisp.org>
4850         * iconv/skeleton.c ({FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO}): New
4851         macros.
4852         (RESET_INPUT_BUFFER): Use them instead of {MIN,MAX}_NEEDED_{FROM,TO}.
4853         Also make this macro work if FROM_DIRECTION evaluates to 0.
4854         (gconv_init): Use the new macros instead of {MIN,MAX}_NEEDED_{FROM,TO}.
4855         (FUNCTION_NAME): Likewise, in the handling of unaligned accesses and
4856         of consume_incomplete.
4857         * iconvdata/cp1255.c: Define {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO}
4858         instead of {MIN,MAX}_NEEDED_{FROM,TO}. Set FROM_LOOP_MAX_NEEDED_TO to
4859         4, not 8.
4860         * iconvdata/cp1258.c: Likewise.
4861         * iconvdata/ibm930.c: Define {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO}
4862         instead of {MIN,MAX}_NEEDED_{FROM,TO}. Set TO_LOOP_MAX_NEEDED_TO to 3,
4863         not 2.
4864         * iconvdata/ibm933.c: Likewise.
4865         * iconvdata/ibm935.c: Likewise.
4866         * iconvdata/ibm937.c: Likewise.
4867         * iconvdata/ibm939.c: Likewise.
4868         * iconvdata/iso-2022-cn.c: Define
4869         {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
4870         {MIN,MAX}_NEEDED_{FROM,TO}. Set TO_LOOP_MAX_NEEDED_TO to 6, not 4.
4871         * iconvdata/iso-2022-cn-ext.c: Likewise.
4872         * iconvdata/iso-2022-jp.c: Define
4873         {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
4874         {MIN,MAX}_NEEDED_{FROM,TO}.
4875         * iconvdata/tcvn5712-1.c: Define
4876         {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
4877         {MIN,MAX}_NEEDED_{FROM,TO}. Set FROM_LOOP_MAX_NEEDED_FROM to 1, not 2.
4878         * iconvdata/euc-jisx0213.c: Define
4879         {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
4880         {MIN,MAX}_NEEDED_{FROM,TO}. Set FROM_LOOP_MAX_NEEDED_TO to 8, not 4.
4881         * iconvdata/shift_jisx0213.c: Likewise.
4883 2002-05-14  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4885         * sysdeps/powerpc/Makefile (sysdeps_routines): Add divdi3, cmpdi2,
4886         shdi3, fixdfdi, fixsfdi in csu dir.
4887         (shared-only-routines): Likewise.
4888         * sysdeps/wordsize-32/cmpdi2.c: New file.
4889         * sysdeps/wordsize-32/shdi3.c: New file.
4890         * sysdeps/wordsize-32/fixdfdi.c: New file.
4891         * sysdeps/wordsize-32/fixsfdi.c: New file.
4892         * sysdeps/powerpc/Versions (__divdi3, __moddi3, __udivdi3, __umoddi3,
4893         __ashldi3, __ashrdi3, __lshrdi3, __cmpdi2, __ucmpdi2, __fixdfdi,
4894         __fixsfdi, __fixunsdfdi, __fixunssfdi): Export at GLIBC_2.0.
4896         * sysdeps/unix/sysv/linux/semctl.c (__old_semctl, __new_semctl):
4897         Only use va_arg if the argument will be used [PR libc/3259].
4899 2002-05-06  Michael A. Schmidt  <mmaass@us.ibm.com>
4901         * catgets/catgets.c (catopen): Free buffer if internal catalog
4902         open fails.
4904 2002-05-14  Ulrich Drepper  <drepper@redhat.com>
4906         * debug/xtrace.sh: Make more robust.  For realtime tracking use
4907         non-buffering methods.
4908         * debug/pcprofiledump.c: Implement -u option.
4909         Patch by Roger Luethi <rl@hellgate.ch>.
4911 2002-05-11  Jakub Jelinek  <jakub@redhat.com>
4913         * include/netinet/in.h (bindresvport_internal): Add prototype.
4914         * include/rpc/auth.h  (authunix_create_internal,
4915         authunix_create_default_internal, authnone_create_internal,
4916         authdes_pk_create_internal): Add prototypes.
4917         * include/rpc/clnt.h (clnt_create_internal, clnttcp_create_internal,
4918         clntudp_create_internal, clntudp_bufcreate_internal,
4919         clntunix_create_internal): Add prototypes.
4920         * include/rpc/svc.h (svc_sendreply_internal, svcerr_decode_internal,
4921         svc_getreq_internal, svc_getreq_common_internal,
4922         svc_getreqset_internal, svc_getreq_poll_internal,
4923         svc_register_internal, svc_unregister_internal,
4924         svcudp_create_internal, svcudp_bufcreate_internal): Add prototypes.
4925         * include/rpc/svc_auth.h (_authenticate_internal): Add prototype.
4926         * include/sys/socket.h (__sendto, __recvfrom, __sendmsg, __recvmsg,
4927         __setsockopt, __getsockname, __bind, __listen): Add prototypes.
4928         * inet/rexec.c (rexec_af): Use __listen and __getsockname.
4929         * inet/rcmd.c (rcmd_af): Use __listen.
4930         (rresvport_af): Use __bind.
4931         * sunrpc/clnt_udp.c: Use INTUSE calls to bindresvport,
4932         authunix_create, authunix_create_default, authnone_create,
4933         authdes_pk_create, clnt_create, clnttcp_create, clntudp_create,
4934         clntudp_bufcreate, clntunix_create svc_sendreply, svcerr_decode,
4935         svc_getreq, svc_getreq_common, svc_getreqset, svc_getreq_poll,
4936         svc_register, svc_unregister, svcudp_create, svcudp_bufcreate,
4937         _authenticate, add INTDEF after such function definitions.
4938         Use __listen, __bind, __sendto, __recvfrom, __sendmsg, __recvmsg,
4939         __setsockopt, __getsockname instead of non-__ variants.
4940         * sunrpc/pmap_rmt.c: Likewise.
4941         * sunrpc/rtime.c: Likewise.
4942         * sunrpc/svc_udp.c: Likewise.
4943         * sunrpc/clnt_unix.c: Likewise.
4944         * sunrpc/svc_unix.c: Likewise.
4945         * sunrpc/bindrsvprt.c: Likewise.
4946         * sunrpc/svc_tcp.c: Likewise.
4947         * sunrpc/auth_none.c: Likewise.
4948         * sunrpc/clnt_raw.c: Likewise.
4949         * sunrpc/clnt_tcp.c: Likewise.
4950         * sunrpc/auth_unix.c: Likewise.
4951         * sunrpc/key_call.c: Likewise.
4952         * sunrpc/clnt_gen.c: Likewise.
4953         * sunrpc/pm_getmaps.c: Likewise.
4954         * sunrpc/clnt_simp.c: Likewise.
4955         * sunrpc/pmap_clnt.c: Likewise.
4956         * sunrpc/svc_run.c: Likewise.
4957         * sunrpc/svc.c: Likewise.
4958         * sunrpc/svc_simple.c: Likewise.
4959         * sunrpc/pm_getport.c: Likewise.
4960         * sunrpc/auth_des.c: Likewise.
4961         * sunrpc/svc_auth.c: Likewise.
4962         * sysdeps/generic/unwind-dw2-fde.c (__register_frame_info_bases,
4963         __register_frame_info_table_bases, __deregister_frame_info_bases):
4964         Add INTDEF.
4965         (__register_frame_info_bases_internal,
4966         __register_frame_info_table_bases_internal,
4967         __deregister_frame_info_bases_internal): Add prototypes.
4968         (__register_frame_info, __register_frame): Use INTUSE in call to
4969         __register_frame_info_bases.
4970         (__register_frame_info_table): Similarly.
4971         (__deregister_frame_info, __deregister_frame): Similarly.
4972         * sysdeps/generic/sendto.c (__sendto): Renamed from sendto, add
4973         sendto as weak alias.
4974         * sysdeps/mach/hurd/sendto.c: Likewise.
4975         * sysdeps/generic/recvfrom.c (__recvfrom): Renamed from recvfrom, add
4976         recvfrom as weak alias.
4977         * sysdeps/mach/hurd/recvfrom.c: Likewise.
4978         * sysdeps/unix/sysv/aix/recvfrom.c: Likewise.
4979         * sysdeps/generic/recvmsg.c (__recvmsg): Renamed from recvmsg, add
4980         recvmsg as weak alias.
4981         * sysdeps/unix/sysv/aix/recvmsg.c: Likewise.
4982         * sysdeps/generic/sendmsg.c (__sendmsg): Renamed from sendmsg, add
4983         sendmsg as weak alias.
4984         * sysdeps/unix/sysv/aix/sendmsg.c: Likewise.
4985         * sysdeps/generic/setsockopt.c (__setsockopt): Renamed from
4986         setsockopt, add setsockopt as weak alias.
4987         * sysdeps/mach/hurd/setsockopt.c: Likewise.
4988         * sysdeps/generic/bind.c (__bind): Renamed from bind, add bind as
4989         weak alias.
4990         * sysdeps/mach/hurd/bind.c: Likewise.
4991         * sysdeps/generic/listen.c (__listen): Renamed from listen, add listen
4992         as weak alias.
4993         * sysdeps/mach/hurd/listen.c: Likewise.
4994         * sysdeps/generic/getsockname.c (__getsockname): Renamed from
4995         getsockname, add getsockname as weak alias.
4996         * sysdeps/mach/hurd/getsockname.c: Likewise.
4997         * sysdeps/unix/sysv/aix/getsockname.c: Likewise.
4998         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Add weak alias.
4999         * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Add weak alias.
5000         * sysdeps/unix/inet/syscalls.list (__bind, __listen, __recvmsg,
5001         __recvfrom, __sendmsg, __sendto, __setsockopt): Add aliases.
5002         * sysdeps/unix/sysv/linux/alpha/syscalls.list (__recvmsg, __sendmsg):
5003         Add aliases.
5004         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
5005         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
5006         * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
5007         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
5008         * sysdeps/unix/sysv/linux/recvfrom.S (__recvfrom): Add weak alias.
5009         * sysdeps/unix/sysv/linux/recvmsg.S (__recvmsg): Likewise.
5010         * sysdeps/unix/sysv/linux/sendmsg.S (__sendmsg): Likewise.
5011         * sysdeps/unix/sysv/linux/sendto.S (__sendto): Likewise.
5012         * sysdeps/unix/sysv/linux/setsockopt.S (__setsockopt): Likewise.
5013         * sysdeps/unix/sysv/linux/bind.S (__bind): Likewise.
5014         * sysdeps/unix/sysv/linux/listen.S (__listen): Likewise.
5015         * sysdeps/unix/sysv/linux/getsockname.S (__getsockname): Likewise.
5017 2002-05-10  Jakub Jelinek  <jakub@redhat.com>
5019         * locale/programs/localedef.h (show_archive_content): Add verbose
5020         argument.
5021         * locale/programs/localedef.c (main): Adjust caller.
5022         * locale/programs/locarchive.c (struct nameent, struct dataent): New
5023         types.
5024         (nameentcmp, dataentcmp): New functions.
5025         (xstrcmp): Remove.
5026         (show_archive_content): Print verbose listing with --list-archive -v.
5028 2002-05-14  Ulrich Drepper  <drepper@redhat.com>
5030         * locale/programs/locarchive.c (open_archive): Take extra argument
5031         readonly.  If true open file with O_RDONLY and don't create the
5032         archive if it doesn't exist.
5033         Adapt all callers.
5034         (close_archive): Don't do anything if fd element is -1.
5035         * locale/programs/localedef.h (open_archive): Adjust prototype.
5036         * locale/programs/locfile.c (write_all_categories): Adjust open_archive
5037         call.
5039         * malloc/malloc.c (__posix_memalign): Correct check for size of
5040         alignment value [PR libc/3444].
5042         * include/stdio.h: Remove references to old stdio implementation.
5044         * libio/Makefile (bug-ungetwc2-ENV): Define.
5046 2002-05-13  Roland McGrath  <roland@frob.com>
5048         * iconv/gconv_charset.h (upstr): Add inline keyword, quiets warning.
5050         * hurd/hurdinit.c (_hurd_init): Use internal name _hurd_new_proc_init.
5052 2002-05-13  Marcus Brinkmann  <marcus@gnu.org>
5054         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
5055         Allocate three, not two, more than LEN when appending '/.'.
5056         * sysdeps/mach/hurd/chroot.c (chroot): Likewise.  Don't check
5057         if NAME ends with '/.' if it is shorter than 2 chars.
5059 2002-05-12  Roland McGrath  <roland@frob.com>
5061         * mach/Makefile ($(mach-syscalls:%=$(objpfx)%.S)): Make the generated
5062         files #include <sysdep.h> instead of <mach/machine/syscall_sw.h>.
5064         * hurd/hurdexec.c (_hurd_exec): Reauthenticate ports/dtable used in
5065         file_exec to effect svuid=euid, svgid=egid if that is not a no-op.
5067 2002-05-10  Jakub Jelinek  <jakub@redhat.com>
5069         * sysdeps/ia64/Makefile: Remove extra endif.
5070         * sysdeps/ia64/ia64libgcc.S (__divsf3): Fix typo in symbol version.
5072 2002-05-10  Andreas Schwab  <schwab@suse.de>
5074         * sysdeps/powerpc/fpu/w_sqrt.c: Add sqrtl alias.
5076 2002-05-09  Andreas Jaeger  <aj@suse.de>
5078         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: New file.
5079         * sysdeps/unix/sysv/linux/x86_64/Dist: Add it.
5080         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers): Add it.
5082         * sysdeps/unix/sysv/linux/ia64/glob.c: Move to ...
5083         * sysdeps/wordsize-64/glob.c: ...here.
5084         * sysdeps/unix/sysv/linux/x86_64/glob.c: Remove.
5085         * sysdeps/unix/sysv/linux/s390/s390-64/glob.c: Remove.
5086         * sysdeps/unix/sysv/linux/sparc/sparc64/glob.c: Remove.
5088 2002-05-08  Roland McGrath  <roland@frob.com>
5090         * hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Use
5091         O_NOTRANS flag in "." lookup.
5093 2002-05-05  Ulrich Drepper  <drepper@redhat.com>
5095         * malloc/mtrace.c: Comment out use of _mtrace_file and _mtrace_len.
5097 2002-05-04  Ulrich Drepper  <drepper@redhat.com>
5099         * locale/duplocale.c (__duplocale): Update special members only
5100         when allocation succeeded.
5102 2002-05-03  Roland McGrath  <roland@frob.com>
5104         * shlib-versions (.*-.*-gnu-gnu.*): Remove USE_IN_LIBIO conditionals;
5105         we can only build libc.so.0.3(GLIBC_2.2.6) now.
5107 2002-05-02  Jakub Jelinek  <jakub@redhat.com>
5109         * sysdeps/ia64/Makefile: Add ia64libgcc in csu subdir.
5110         * sysdeps/ia64/Versions (__divtf3, __divdf3, __divsf3, __divdi3,
5111         __moddi3, __udivdi3, __umoddi3, __multi3): Export at GLIBC_2.0.
5112         * sysdeps/ia64/ia64libgcc.S: New file.
5114 2002-05-02  Ulrich Drepper  <drepper@redhat.com>
5116         * sysdeps/generic/dl-tls.c (oom): Implement using _dl_fatal_printf.
5118         * malloc/memusage.c: Distinguish anonymous mmap.
5120 2002-05-01  Roland McGrath  <roland@frob.com>
5122         * sysdeps/mach/hurd/close.c: #undef __close before function defn,
5123         and use INTDEF on it.
5124         * sysdeps/mach/hurd/fcntl.c: Use INTDEF2.
5126         * sysdeps/mach/hurd/dl-sysdep.c (errno): New variable.
5128         * sysdeps/mach/hurd/alpha/static-start.S: New file (unfinished).
5130 2002-05-01  Ulrich Drepper  <drepper@redhat.com>
5132         * malloc/memusage.c: Add support for tracking mmap & friends.
5133         * malloc/memusage.sh: Implement -m/--mmap option.
5135 2002-04-30  Jakub Jelinek  <jakub@redhat.com>
5137         * locale/programs/locarchive.c (create_archive): Add archivefname
5138         argument, create fname from it.
5139         (enlarge_archive): Honour output_prefix.
5140         (open_archive): Likewise.
5142 2002-04-30  Jakub Jelinek  <jakub@redhat.com>
5144         * locale/programs/locarchive.c (add_locales_to_archive): Don't nest
5145         too many stpcpy macros.
5147 2002-04-26  Bruno Haible  <bruno@clisp.org>
5149         * locale/programs/ld-collate.c (collate_read): Cast first argument
5150         for "%.*s" to int.
5152 2002-04-26  Bruno Haible  <bruno@clisp.org>
5154         * include/libintl.h (__ngettext, __dngettext, __dcngettext,
5155         __dcngettext_internal): New declarations.
5156         (__gettext, __dgettext, __dcgettext, __dcgettext_internal): Add
5157         attribute declarations.
5159 2002-04-30  Roland McGrath  <roland@frob.com>
5161         Removed old GNU stdio implementation; GNU libio is now the only option.
5162         * configure.in: Removed --enable-libio option and @stdio@ subst var.
5163         Define USE_IN_LIBIO unconditionally.
5164         * configure: Regenerated.
5165         * Makeconfig (stdio): Set to libio by default.
5166         * config.make.in (stdio): Variable removed.
5167         * sysdeps/unix/sysv/linux/configure.in: Don't set $stdio.
5168         * sysdeps/unix/sysv/linux/configure: Regenerated.
5169         * sysdeps/mach/hurd/configure.in: Don't test $stdio.
5170         * sysdeps/mach/hurd/configure: Regenerated.
5171         * stdio/.cvsignore: File removed.
5172         * stdio/Makefile: File removed.
5173         * stdio/Versions: File removed.
5174         * stdio/__fbufsize.c: File removed.
5175         * stdio/__flbf.c: File removed.
5176         * stdio/__fpending.c: File removed.
5177         * stdio/__fpurge.c: File removed.
5178         * stdio/__freadable.c: File removed.
5179         * stdio/__freading.c: File removed.
5180         * stdio/__fsetlocking.c: File removed.
5181         * stdio/__fwritable.c: File removed.
5182         * stdio/__fwriting.c: File removed.
5183         * stdio/clearerr.c: File removed.
5184         * stdio/fclose.c: File removed.
5185         * stdio/fcloseall.c: File removed.
5186         * stdio/feof.c: File removed.
5187         * stdio/ferror.c: File removed.
5188         * stdio/fflush.c: File removed.
5189         * stdio/fgetc.c: File removed.
5190         * stdio/fgetpos.c: File removed.
5191         * stdio/fgets.c: File removed.
5192         * stdio/fileno.c: File removed.
5193         * stdio/fmemopen.c: File removed.
5194         * stdio/fopen.c: File removed.
5195         * stdio/fopncook.c: File removed.
5196         * stdio/fputc.c: File removed.
5197         * stdio/fputs.c: File removed.
5198         * stdio/fread.c: File removed.
5199         * stdio/freopen.c: File removed.
5200         * stdio/fseek.c: File removed.
5201         * stdio/fsetpos.c: File removed.
5202         * stdio/ftell.c: File removed.
5203         * stdio/fwrite.c: File removed.
5204         * stdio/getc.c: File removed.
5205         * stdio/getchar.c: File removed.
5206         * stdio/getdelim.c: File removed.
5207         * stdio/gets.c: File removed.
5208         * stdio/glue.c: File removed.
5209         * stdio/internals.c: File removed.
5210         * stdio/linewrap.c: File removed.
5211         * stdio/linewrap.h: File removed.
5212         * stdio/memstream.c: File removed.
5213         * stdio/newstream.c: File removed.
5214         * stdio/obstream.c: File removed.
5215         * stdio/putc.c: File removed.
5216         * stdio/putchar.c: File removed.
5217         * stdio/puts.c: File removed.
5218         * stdio/rewind.c: File removed.
5219         * stdio/setbuf.c: File removed.
5220         * stdio/setbuffer.c: File removed.
5221         * stdio/setlinebuf.c: File removed.
5222         * stdio/setvbuf.c: File removed.
5223         * stdio/stdio.h: File removed.
5224         * stdio/ungetc.c: File removed.
5225         * stdio/vasprintf.c: File removed.
5226         * stdio/vscanf.c: File removed.
5227         * stdio/vsnprintf.c: File removed.
5228         * stdio/vsprintf.c: File removed.
5229         * stdio/vsscanf.c: File removed.
5230         * sysdeps/generic/defs.c: File removed.
5231         * sysdeps/generic/fdopen.c: File removed.
5232         * sysdeps/generic/pipestream.c: File removed.
5233         * sysdeps/generic/stdio_init.c: File removed.
5234         * sysdeps/generic/sysd-stdio.c: File removed.
5235         * sysdeps/generic/vdprintf.c: File removed.
5236         * sysdeps/mach/hurd/defs.c: File removed.
5237         * sysdeps/mach/hurd/fdopen.c: File removed.
5238         * sysdeps/mach/hurd/pipestream.c: File removed.
5239         * sysdeps/mach/hurd/stdio_init.c: File removed.
5240         * sysdeps/mach/hurd/sysd-stdio.c: File removed.
5241         * sysdeps/mach/hurd/vdprintf.c: File removed.
5242         * sysdeps/posix/defs.c: File removed.
5243         * sysdeps/posix/fdopen.c: File removed.
5244         * sysdeps/posix/pipestream.c: File removed.
5245         * sysdeps/posix/stdio_init.c: File removed.
5246         * sysdeps/posix/vdprintf.c: File removed.
5247         * sysdeps/unix/pipestream.c: File removed.
5248         * sysdeps/unix/sysv/sysd-stdio.c: File removed.
5249         * sysdeps/unix/sysv/sco3.2.4/pipestream.c: File removed.
5250         * sysdeps/unix/sysv/sysv4/pipestream.c: File removed.
5252 2002-04-29  Roland McGrath  <roland@frob.com>
5254         * include/libc-symbols.h (link_warning): Use `unused' attribute.
5256 2002-04-28  Ulrich Drepper  <drepper@redhat.com>
5258         * sysdeps/generic/tls.h: Describe what must be defined.
5260         * sysdeps/generic/glob.c (glob): Don't pass GLOB_NOMAGIC flag to
5261         glob_in_dir [PR libc/3385].
5262         * posix/globtest.sh: Add test case.
5264         * intl/loadmsgcat.c [!_LIBC] (_nl_init_domain_conv): Don't add
5265         //TRANSLIT twice.
5267 2002-04-27  Ulrich Drepper  <drepper@redhat.com>
5269         * sysdeps/unix/sysv/linux/ia64/fxstat.c: Fix a few issues with the
5270         _internal symbol handling.
5271         * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.
5273 2002-04-26  Ulrich Drepper  <drepper@redhat.com>
5275         * sysdeps/ia64/fpu/s_finite.S: Define _internal aliases.
5276         * sysdeps/unix/sysv/linux/ia64/fork.S: Likewise.
5278 2002-04-26  Isamu Hasegawa  <isamu@yamato.ibm.com>
5280         * posix/regcomp.c (re_compile_fastmap_iter): Fix fastmap in case of
5281         not _LIBC and RE_ENABLE_I18N.
5282         (build_range_exp): Implement for not _LIBC.
5283         (build_collating_symbol): Likewise.
5284         (parse_bracket_exp): Unify redundant error handlings.
5285         Don't erase mbcset for non matching list in multibyte envs.
5286         (build_word_op): Add '_' to matching list for \w operator.
5287         * posix/regex_internal.c (re_string_construct): Invoke
5288         build_upper_buffer in case of not RE_ENABLE_I18N.
5289         (re_string_reconstruct): Don't touch cur_state in case of not
5290         RE_ENABLE_I18N.
5291         * posix/regex_internal.h (attribute_hidden): New macro in case of
5292         not _LIBC.
5293         (re_charset_t): Define range_starts/ends in case of not _LIBC.
5294         * posix/regexec.c (sift_states_iter_mb): Hide in case of not
5295         RE_ENABLE_I18N.
5296         (transit_state_mb): Likewise.
5297         (check_node_accept_bytes): Implement the code evaluating range
5298         expression in case of not _LIBC.
5299         (find_collation_sequence_value): Hide in case of not _LIBC.
5301 2002-04-26  Jakub Jelinek  <jakub@redhat.com>
5303         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Copied from
5304         i386/semctl.c.
5305         (__old_semctl, __new_semctl): Only use va_arg if the argument will
5306         be used.
5308 2002-04-26  Ulrich Drepper  <drepper@redhat.com>
5310         * sysdeps/ia64/fpu/s_isinf.S: Fix definition of _internal names.
5312         * sysdeps/ia64/strncpy.S: Fix recovery code.
5313         Patch by David Mosberger <davidm@hpl.hp.com>.
5315 2002-04-24  Ulrich Drepper  <drepper@redhat.com>
5317         * sysdeps/unix/sysv/linux/ia64/Versions [libc]: Add getunwind for
5318         GLIBC_2.2.6.
5320 2002-04-14  Bruno Haible  <bruno@clisp.org>
5322         * posix/regex.c (re_max_failures): Add back symbol for binary
5323         compatibility.
5325 2002-04-22  Isamu Hasegawa  <isamu@yamato.ibm.com>
5327         * posix/regcomp.c (re_compile_internal): Adapt it to new interface
5328         of buffer building functions.
5329         * posix/regex_internal.c (re_string_allocate): New function.
5330         (re_string_realloc_buffers): New function.
5331         (re_string_skip_chars): New function.
5332         (re_string_reconstruct): New function.
5333         (re_string_construct): Adapt it to new interface of buffer building
5334         functions.
5335         (re_string_construct_common): Likewise.
5336         (build_wcs_buffer): Likewise.
5337         (build_wcs_upper_buffer): Likewise.
5338         (build_upper_buffer): Likewise.
5339         (re_string_translate_buffer): Likewise.
5340         (re_string_context_at): Adapt it to variable length buffers.
5341         * posix/regex_internal.h (re_string_t): Add new fields to handle
5342         variable length buffers.
5343         (re_match_context_t): Likewise.
5344         * posix/regexec.c (re_search_internal): Adapt it to new interface
5345         of re_string_t and re_match_context_t.
5346         (acquire_init_state_context): Likewise.
5347         (check_matching): Likewise.
5348         (check_halt_state_context): Likewise.
5349         (proceed_next_node): Likewise.
5350         (set_regs): Likewise.
5351         (sift_states_backward): Likewise.
5352         (clean_state_log_if_need): Likewise.
5353         (sift_states_iter_mb): Likewise.
5354         (sift_states_iter_bkref): Likewise.
5355         (add_epsilon_backreference): Likewise.
5356         (transit_state): Likewise.
5357         (transit_state_sb): Likewise.
5358         (transit_state_mb): Likewise.
5359         (transit_state_bkref): Likewise.
5360         (transit_state_bkref_loop): Likewise.
5361         (check_node_accept): Likewise.
5362         (match_ctx_init): Likewise.
5363         (extend_buffers): New function.
5365 2002-04-21  Bruno Haible  <bruno@clisp.org>
5367         * iconvdata/tst-table.sh: For the second check, use the truncated
5368         GB18030 charmap table, like for the first check.
5370 2002-04-24  Ulrich Drepper  <drepper@redhat.com>
5372         * elf/dl-load.c (open_verify): Correct __lseek parameters.
5373         Patch by Simon Hildrew <simon@hildrew.net> [PR libc/3354].
5375 2002-04-23  H.J. Lu  <hjl@gnu.org>
5377         * include/math.h (isfinite): Fix a typo.
5379 2002-04-24  Ulrich Drepper  <drepper@redhat.com>
5381         * libio/bug-ungetwc2.c (test_locale): Use the de_DE.UTF-8 locale
5382         which is created by the test suite.
5384 2002-04-20  Bruno Haible  <bruno@clisp.org>
5386         * iconvdata/iso-2002-kr.c (MAX_NEEDED_FROM): Set to 4.
5387         (BODY for FROM_LOOP): Fix comparisons between inptr and inend.
5389 2002-04-20  Bruno Haible  <bruno@clisp.org>
5391         * iconvdata/johab.c (BODY for FROM_LOOP): Change type of i, m, f,
5392         to avoid gcc warning.
5394 2002-04-20  Bruno Haible  <bruno@clisp.org>
5396         * iconvdata/iso-2022-jp.c (EMIT_SHIFT_TO_INIT): Fix modification mask
5397         of data->__statep->__count.
5399 2002-04-20  Bruno Haible  <bruno@clisp.org>
5401         * iconvdata/euc-jisx0213.c (BODY for TO_LOOP): Really ignore Unicode
5402         tag characters.
5403         * iconvdata/shift_jisx0213.c (BODY for TO_LOOP): Likewise.
5405 2002-04-24  Roland McGrath  <roland@frob.com>
5407         * sysdeps/mach/alpha/syscall.S: Don't use .frame, ENTRY will have it;
5408         use END macro instead of our own .end directive.
5409         Use `callsys' insn mnemonic instead of `call_pal'.
5411         * sysdeps/mach/alpha/sysdep.h (ENTRY): New macro.
5413         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_USER_ADDRESS_MASK): New
5414         macro; we need this for Hurd.
5416         Log entry was missing for 2002/03/24 commit of rev 1.8,
5417         goes with 2002-03-17 changes.
5418         * sysdeps/mach/hurd/i386/Makefile [$(subdir) = misc]
5419         (sysdep_routines): Append ioperm here.
5420         (sysdep_headers): Append sys/io.h here.
5422 2002-04-23  Roland McGrath  <roland@frob.com>
5424         * sysdeps/mach/hurd/send.c: int -> size_t for WROTE.
5425         * sysdeps/mach/hurd/sendto.c: Likewise.
5426         * hurd/hurdioctl.c (siocgifconf): int -> size_t for DATA_LEN.
5427         * sysdeps/mach/hurd/wait4.c (__wait4): natural_t -> int for SIGCODE.
5428         * sysdeps/mach/hurd/getpriority.c: unsigned int -> size_t for PISIZE.
5430 2002-04-22  Roland McGrath  <roland@frob.com>
5432         * sysdeps/mach/hurd/i386/ioperm.c (ioperm): Translate MIG_BAD_ID
5433         failure from i386_io_perm_* RPCs to ENOSYS.
5435 2002-04-22  Andreas Jaeger  <aj@suse.de>
5437         * sysdeps/unix/sysv/linux/x86_64/ldconfig.h: New file.
5439         * sysdeps/unix/sysv/linux/x86_64/dl-cache.h: New file.
5441         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Use %rdi as temp
5442         register instead of destroying %rbx.
5444 2002-04-21  Ulrich Drepper  <drepper@redhat.com>
5446         * string/string.h: Declare strerror_r also for XPG6.
5448 2002-04-19  Roland McGrath  <roland@frob.com>
5450         * sysdeps/mach/hurd/tmpfile.c: Create a file descriptor and use fdopen.
5452 2002-04-20  Ulrich Drepper  <drepper@redhat.com>
5454         * Makefile: Add handling of xtests and xcheck targets.
5455         * MakeTAGS: Likewise.
5456         * Makeconfig: Likewise.
5457         * Makerules: Likewise.
5458         * Rules: Likewise.
5459         * manual/Makefile: Likewise.
5460         * sunrpc/Makefile (xtests): Add thrsvc if thread library available.
5461         * sunrpc/thrsvc.c: New file.  By Zack Weinberg.
5463 2002-04-11  Zack Weinberg  <zack@codesourcery.com>
5465         * include/rpc/rpc.h (struct rpc_thread_variables): Remove
5466         authnone_private_s.
5467         * sunrpc/auth_none.c: Include bits/libc-lock.h.
5468         Delete #ifdef _RPC_THREAD_SAFE_ block.
5469         (authnone_private): Make a struct, not a pointer to struct.
5470         (authnone_private_guard): New once-control variable.
5471         (authnone_create_once): New function, split out of
5472         authnone_create.  No need to allocate memory.
5473         (authnone_create): Just call authnone_create_once via
5474         __libc_once, then return &authnone_private->no_client.
5475         (authnone_marshal): Access private data via CLIENT argument,
5476         not authnone_private pointer.
5477         Fix typo (MAX_MARSHEL_SIZE -> MAX_MARSHAL_SIZE).
5478         * sunrpc/rpc_thread.c (__rpc_thread_destroy): No need to free
5479         authnone_private_s.
5481 2002-04-12  H.J. Lu  <hjl@gnu.org>
5483         * sunrpc/clnt_raw.c (clntraw_create): Properly set xdrs and client.
5485 2002-04-18  Bruno Haible  <bruno@clisp.org>
5487         * iconvdata/euc-jisx0213.c (EMIT_SHIFT_TO_INIT, BODY for
5488         FROM_DIRECTION): Make the FROM direction stateless.
5489         * iconvdata/shift_jisx0213.c (EMIT_SHIFT_TO_INIT, BODY for
5490         FROM_DIRECTION): Likewise.
5492 2002-04-15  Bruno Haible  <bruno@clisp.org>
5494         * iconvdata/JISX0213.TXT: New file.
5495         * iconvdata/jisx0213.h: New file.
5496         * iconvdata/jisx0213.c: New file.
5497         * iconvdata/euc-jisx0213.c: New file.
5498         * iconvdata/shift_jisx0213.c: New file.
5499         * iconvdata/gconv-modules (EUC-JISX0213, SHIFT_JISX0213): New modules.
5500         * iconvdata/EUC-JISX0213.precomposed: New file.
5501         * iconvdata/SHIFT_JISX0213.precomposed: New file.
5502         * iconvdata/SHIFT_JISX0213.irreversible: New file.
5503         * iconvdata/tst-table-to.c (main): Make it work for encodings for
5504         which the "to" direction is stateful.
5505         * iconvdata/tst-tables.sh: Add EUC-JISX0213, SHIFT_JISX0213.
5506         * iconvdata/Makefile (modules): Add libJISX0213, EUC-JISX0213,
5507         SHIFT_JISX0213.
5508         (libJISX0213-routines): New variable.
5509         (LDFLAGS-EUC-JISX0213.so, LDFLAGS-SHIFT_JISX0213.so): New variables.
5510         (EUC-JISX0213.so, SHIFT_JISX0213.so): Depend on libJISX0213.so.
5511         (LDFLAGS-libJISX0213.so): New variable.
5512         (distribute): Add JISX0213.TXT, EUC-JISX0213.precomposed,
5513         SHIFT_JISX0213.precomposed, SHIFT_JISX0213.irreversible,
5514         jisx0213.c, jisx0213.h, euc-jisx0213.c, shift_jisx0213.c.
5516 2002-04-15  Bruno Haible  <bruno@clisp.org>
5518         * iconvdata/big5hkscs.c (big5hkscs_to_ucs): Change element type to
5519         uint32_t.  Update to Unicode 3.2.
5520         (from_ucs4, from_ucs4_idx): Update to Unicode 3.2.
5521         (BODY for TO_LOOP): Handle the ASCII range specially.
5522         * iconvdata/BIG5HKSCS.irreversible: Add one more entry.
5523         * iconvdata/testdata/BIG5HKSCS: Remove a character.
5524         * iconvdata/testdata/BIG5HKSCS..UTF-8: Regenerated.
5526 2002-04-15  Bruno Haible  <bruno@clisp.org>
5528         * iconvdata/gb18030.c (__twobyte_to_ucs, __fourbyte_to_ucs,
5529         __ucs_to_gb18030_tab1, __ucs_to_gb18030_tab2): Update to Unicode 3.2.
5531 2002-04-15  Bruno Haible  <bruno@clisp.org>
5533         * iconvdata/cns11643.h (__cns11643_from_ucs4p2c_tab): New declaration.
5534         (ucs4_to_cns11643): Update.
5535         * iconvdata/cns11643.c: Update to Unicode 3.2.
5536         (__cns11643l2*_to_ucs4_tab, __cns11643_from_ucs4p0_tab,
5537         __cns11643_from_ucs4p2_tab): Regenerated.
5538         (__cns11643_from_ucs4p2c_tab): New array.
5539         * iconvdata/cvs11643l1.c: Update comments.
5540         * iconvdata/EUC-TW.irreversible: Remove two entries.
5542 2002-04-15  Bruno Haible  <bruno@clisp.org>
5544         * locale/C-translit.h.in: Update to Unicode 3.2.
5545         Add <U2047>, <U205F>..<U2063>, <U2145>..<U2149>, <U2A74>..<U2A76>,
5546         <U30A0>, <U3251>..<U325F>, <U32B1>..<U32BF>, <UFE00>..<UFE0F>.
5548 2002-04-15  Bruno Haible  <bruno@clisp.org>
5550         * iconvdata/sjis.c (halfkana_to_ucs4): Remove array.
5551         (BODY for FROM_LOOP): Optimize the JISX0201:GR to Unicode conversion.
5553 2002-04-15  Bruno Haible  <bruno@clisp.org>
5555         * iconvdata/euc-jp.c (BODY for FROM_LOOP): When encountering an
5556         invalid input (e.g. a byte > 0x80 followed by a byte < 0x80), skip
5557         always one byte, not 0 bytes in some cases and 2 bytes in others.
5559         * iconvdata/tst-table-from.c (main): Correct the usage message.
5561 2002-04-19  Isamu Hasegawa  <isamu@yamato.ibm.com>
5563         * posix/regcomp.c (parse_expression): Fix incorrect error code.
5564         (parse_dup_op): Fix error handling like "a{}".
5565         (parse_bracket_exp): Add error handling.
5566         (fetch_number): Add error handling for "a{<very_large_number>}".
5568 2002-04-19  Isamu Hasegawa  <isamu@yamato.ibm.com>
5570         * posix/regcomp.c (parse_bracket_symbol): Add error handling
5571         in case that the symbol name is too long.
5572         (build_charclass): Handle [:lower:]/[:uppper:] correctly
5573         in case of REG_ICASE.
5575 2002-04-19  Andreas Jaeger  <aj@suse.de>
5577         * math/libm-test.inc: Fix comment, suggested by Hartvig Ekner
5578         <hartvige@mips.com>.
5580 2002-04-15  H.J. Lu  <hjl@gnu.org>
5582         * include/math.h (__finitel_internal): Declare only if
5583         __NO_LONG_DOUBLE_MATH is not defined.
5584         (__isinfl_internal): Likewise.
5585         (__isnanl_internal): Likewise.
5587         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add __connect_internal.
5588         * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
5589         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
5590         * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
5591         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
5592         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
5593         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
5595         * sysdeps/unix/sysv/linux/syscalls.list: Add __chown_internal and
5596         __fcntl_internal.
5598         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat64_internal): Added.
5599         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat64_internal): Added.
5601 2002-04-15  Bruno Haible  <bruno@clisp.org>
5603         * iconvdata/armscii-8.c (BODY for FROM_LOOP): Fix array access.
5604         (BODY for TO_LOOP): Likewise.
5605         * iconvdata/tcvn5712-1.c (from_ucs4): Map U+0309 to 0xB1.
5606         * iconvdata/tst-table.sh: Add support for encodings which contain
5607         precomposed Unicode characters, known to the iconv converter in both
5608         directions but not listed in the charmap.
5609         * iconvdata/IBM856.irreversible: New file.
5610         * iconvdata/IBM922.irreversible: New file.
5611         * iconvdata/IBM1132.irreversible: New file.
5612         * iconvdata/IBM1133.irreversible: New file.
5613         * iconvdata/IBM1160.irreversible: New file.
5614         * iconvdata/IBM1161.irreversible: New file.
5615         * iconvdata/IBM1163.irreversible: New file.
5616         * iconvdata/IBM1164.irreversible: New file.
5617         * iconvdata/ARMSCII-8.irreversible: New file.
5618         * iconvdata/TCVN5712-1.precomposed: New file.
5619         * iconvdata/tst-tables.sh: Add IBM856, IBM922, IBM1124, IBM1129,
5620         IBM1160, IBM1161, IBM1132, IBM1133, IBM1162, IBM1163, IBM1164,
5621         ARMSCII-8, TCVN5712-1.
5622         * iconvdata/Makefile (distribute): Add IBM856.irreversible,
5623         IBM922.irreversible, IBM1132.irreversible, IBM1133.irreversible,
5624         IBM1160.irreversible, IBM1161.irreversible, IBM1163.irreversible,
5625         IBM1164.irreversible, ARMSCII-8.irreversible, TCVN5712-1.precomposed.
5627 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
5629         * time/tst-mktime.c: Include <stdlib.h>.  Use %d, not %ld format
5630         for EVENING69.  Include offsets in TZ environment variable.
5632 2002-04-18  Ulrich Drepper  <drepper@redhat.com>
5634         * iconv/skeleton.c (RESET_INPUT_BUFFER): Replace ifs with #ifs to
5635         avoid compiler warnings.
5637         * locale/programs/localedef.c (main): Always call
5638         construct_output_path.
5640         * iconv/Makefile (CFLAGS-simple-hash.c): Define to find hashval.h.
5642         * locale/programs/locfile.c (to_archive): New variable.  To collect
5643         data which has to be added to the locale archive.
5644         (write_all_categories): Take new third parameter with locale name.
5645         Unless no_archive flag set add new locale data to the archive
5646         (write_locale_data): Unless no-archive flag set store generated data
5647         in to_archive data structure instead of generation output file.
5648         Add new parameter with locale category index.
5649         * locale/programs/locfile.h: Add new parameters in declaractions of
5650         write_all_categories and write_locale_data.
5651         * locale/programs/localedef.c: Recognize --no-archive, --list-archive,
5652         --add-to-archive, and --delete-from-archive options.  Pass extra
5653         parameter to write_all_categories.
5654         * locale/programs/localedef.h: Add prototypes for functions in
5655         locarchive.c.
5656         * locale/locarchive.h: New file.
5657         * locale/programs/locarchive.c: New file.
5658         * locale/Makefile (distribute): Add programs/locarchive.c and
5659         locarchive.h.
5660         (localedef-modules): Add md5 and locarchive.
5661         Add vpath to crypt subdir for md5.c.
5663         * locale/programs/ld-address.c: Pass locale category ID as new second
5664         parameter to write_locale_data.
5665         * locale/programs/ld-collate.c: Likewise.
5666         * locale/programs/ld-ctype.c: Likewise.
5667         * locale/programs/ld-identification.c: Likewise.
5668         * locale/programs/ld-measurement.c: Likewise.
5669         * locale/programs/ld-messages.c: Likewise.
5670         * locale/programs/ld-monetary.c: Likewise.
5671         * locale/programs/ld-name.c: Likewise.
5672         * locale/programs/ld-numeric.c: Likewise.
5673         * locale/programs/ld-paper.c: Likewise.
5674         * locale/programs/ld-telephone.c: Likewise.
5675         * locale/programs/ld-time.c: Likewise.
5677         * locale/simple-hash.c: Move compute_hashval function from here...
5678         * locale/hashval.h: ...to here.  New file.
5679         * locale/simple-hash.h: Add prototype for compute_hashval.
5681         * include/libintl.h: Minor cleanups.
5683 2002-04-16  Ulrich Drepper  <drepper@redhat.com>
5685         * posix/regcomp.c (gettext): Use INTUSE for _libc_intl_domainname.
5687 2002-04-15  Ulrich Drepper  <drepper@redhat.com>
5689         * include/sys/stat.h: Fix typo.  Patch by HJ Lu.
5691 2002-04-14  Bruno Haible  <bruno@clisp.org>
5693         * locale/programs/charmap.c (charmap_read): Don't access result if
5694         result == NULL.
5696 2002-02-17  Andreas Schwab  <schwab@suse.de>
5698         * elf/reldep7.c: New file.
5699         * elf/reldep7mod1.c: New file.
5700         * elf/reldep7mod2.c: New file.
5701         * elf/Makefile: Add rules to build and run reldep7.
5703 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
5705         * elf/dl-lookup.c (_dl_lookup_symbol): Move add_dependency call to
5706         the end of the function.  Pass original flags to recursive call if
5707         add_dependency failed.
5708         (_dl_lookup_versioned_symbol): Likewise.
5710 2002-04-13  Jakub Jelinek  <jakub@redhat.com>
5712         * time/mktime.c (__mktime_internal): If year is 69, don't bail out
5713         early, but check whether it overflowed afterwards.
5714         * time/tst-mktime.c (main): Add new tests.
5716 2002-04-14  Ulrich Drepper  <drepper@redhat.com>
5718         * debug/xtrace.sh: Fix program name in help message.
5719         Patch by Roger Luethi <rl@hellgate.ch>.
5721         * include/sys/stat.h: Add prototypes for __lxstat_internal and
5722         __lxstat64_internal.  Add macros __lxstat and __lxstat64 if not
5723         NOT_IN_libc.
5724         * sysdeps/generic/lxstat.c: Use INTDEF for __lxstat.
5725         * sysdeps/mach/hurd/lxstat.c: Likewise.
5726         * sysdeps/unix/common/lxstat.c: Likewise.
5727         * sysdeps/unix/sysv/aix/lxstat.c: Likewise.
5728         * sysdeps/unix/sysv/linux/lxstat.c: Likewise.
5729         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
5730         * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.
5731         * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c: Likewise.
5732         * sysdeps/generic/lxstat64.c: Use INTDEF for __lxstat64.
5733         * sysdeps/mach/hurd/lxstat64.c: Likewise.
5734         * sysdeps/unix/sysv/aix/lxstat64.c: Likewise.
5735         * sysdeps/unix/sysv/linux/lxstat64.c: Likewise.
5737         * include/wchar.h: Declare __mbrtowc_internal and __mbrlen_internal
5738         prototypes.  Add __mbrlen and __mbrtowc macros.
5739         * wcsmbs/mbrlen.c: Use INTDEF for __mbrlen.
5740         * wcsmbs/mbrtowc.c: Use INTDEF for __mbrtowc.
5742         * include/unistd.h: Add prototype for __write_internal and add
5743         __libc_write macro is SHARED.
5744         * sysdeps/generic/write.c: Use INTDEF for __write.
5745         * sysdeps/mach/hurd/write.c: Likewise.
5746         * sysdeps/unix/sysv/aix/write.c: Likewise.
5747         * sysdeps/unix/syscalls.list: Add __libc_write alias.
5749         * assert/assert.c: Replace STR_N_SIZE with something usable in
5750         macro arguments.
5751         * assert/assert-perr.c: Likewise.
5753         * include/sys/socket.h: Declare __libc_sa_len_internal and define
5754         SA_LEN macro to use it if not NOT_IN_libc.
5755         * sysdeps/unix/sysv/linux/sa_len.c: Use INTDEF for __libc_sa_len.
5757         * include/fcntl.h: Declare __open_internal and define __open and
5758         __libc_open macros if not NOT_IN_libc.
5759         * sysdeps/generic/open.c: Use INTDEF for __open.
5760         * sysdeps/mach/hurd/open.c: Likewise.
5761         * sysdeps/unix/sysv/aix/open.c: Likewise.
5762         * sysdeps/unix/syscalls.list: Add __open_internal alias.
5764         * sysdeps/generic/check_fds.c: Make sure newly opened file descriptor
5765         has correct number.
5767         * include/fcntl.h: Define __libc_fcntl macro if not NOT_IN_libc.
5768         * sysdeps/mach/hurd/fcntl.c: Undefine __libc_fcntl as well.
5769         * sysdeps/unix/sysv/aix/fcntl.c: Likewise.
5770         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
5772         * include/wctype.h: Declare __iswalpha_l_internal,
5773         __iswdigit_l_internal, __iswspace_l_internal,
5774         __iswxdigit_l_internal, and __iswctype_internal.  Define
5775         __iswalpha_l, __iswctype, __iswdigit_l, __iswspace_l, and
5776         __iswxdigit_l macros if not NOT_IN_libc.
5777         * wctype/iswctype.c: Use INTDEF for __iswctype.
5778         * wctype/wcfuncs_l.c: Use INTDEF for all __iswXXX_l.
5780         * include/math.h: Declare __isinf_internal, __isinfl_internal,
5781         __isnan_internal, and __isnanl_internal.
5782         * stdio-common/printf_fp.c: Use INTUSE for calls to __isinf, __isinfl,
5783         __isnan, and __isnanl.
5784         * stdio-common/printf_size.c: Likewise.
5785         * sysdeps/generic/printf_fphex.c: Likewise.
5786         * sysdeps/i386/fpu/s_isinfl.c: Also define _internal alias.
5787         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
5788         * sysdeps/ia64/fpu/s_isinf.S: Likewise.
5789         * sysdeps/ia64/fpu/s_isnan.S: Likewise.
5790         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
5791         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
5792         * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
5793         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
5794         * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
5795         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
5796         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
5797         * sysdeps/m68k/s_isinfl.c: Likewise.
5798         * sysdeps/m68k/fpu/s_isinf.c: Likewise.
5799         * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
5801         * include/sys/time.h: Declare __gettimeofday_internal and define
5802         __gettimeofday macro if not NOT_IN_libc.
5803         * sysdeps/generic/gettimeofday.c: Use INTEDEF for __gettimeofday.
5804         * sysdeps/mach/gettimeofday.c: Likewise.
5805         * sysdeps/posix/gettimeofday.c: Likewise.
5806         * sysdeps/unix/sysv/aix/gettimeofday.c: Likewise.
5807         * sysdeps/unix/common/syscalls.list: Define __gettimeofday alias.
5808         * sysdeps/unix/sysv/linux/alpha/gettimeofday.S: Likewise.
5809         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Likewise.
5811         * include/sys/stat.h: Declare __fxstat_internal and __fxstat64_internal
5812         and define __fxstate and __fxstat64 macros if not NOT_IN_libc.
5813         Remove __lstat and __fstat inline functions.
5814         * sysdeps/generic/fxstat.c: Use INTDEF for __fxstat.
5815         * sysdeps/mach/hurd/fxstat.c: Likewise.
5816         * sysdeps/unix/fxstat.c: Likewise.
5817         * sysdeps/unix/sysv/aix/fxstat.c: Likewise.
5818         * sysdeps/unix/sysv/linux/fxstat.c: Likewise.
5819         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
5820         * sysdeps/unix/sysv/linux/ia64/fxstat.c: Likewise.
5821         * sysdeps/unix/sysv/linux/s390/s390-64/fxstat.c: Likewise.
5822         * sysdeps/generic/fxstat64.c: Use INTDEF for __fxstat64.
5823         * sysdeps/mach/hurd/fxstat64.c: Likewise.
5824         * sysdeps/unix/sysv/aix/fxstat64.c: Likewise.
5825         * sysdeps/unix/sysv/linux/fxstat64.c: Likewise.
5827         * include/unistd.h: Declare __getpid_internal and define
5828         __getpid macro if not NOT_IN_libc.
5829         * sysdeps/mach/hurd/getpid.c: Use INTDEF for __getpid.
5830         * sysdeps/generic/getpid.c: Likewise.
5831         * sysdeps/unix/syscalls.list: Add __getpid_internal alias.
5832         * posix/bsd-getpgrp.c: Use INTUSE for __getpgid call.
5834         * include/unistd.h: Declare __getpgid_internal and define
5835         __getpgid macro if not NOT_IN_libc.
5836         * sysdeps/generic/getpgid.c: Use INTDEF for __getpgid.
5837         * sysdeps/mach/hurd/getpgid.c: Likewise.
5838         * sysdeps/unix/sysv/aix/getpgid.c: Likewise.
5839         * sysdeps/unix/sysv/sysv4/__getpgid.c: Likewise.
5840         * sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
5841         * sysdeps/unix/sysv/linux/syscalls.list: Add _getpgid_internal alias.
5843         * include/unistd.h: Declare __getpagesize_internal and define
5844         __getpagesize macro if not NOT_IN_libc.
5845         * sysdeps/unix/sysv/linux/shmat.c: Include <unistd.h> for
5846         __getpagesize.
5847         * sysdeps/generic/getpagesize.c: Use INTDEF for __getpagesize.
5848         * sysdeps/mach/getpagesize.c: Likewise.
5849         * sysdeps/posix/getpagesize.c: Likewise.
5850         * sysdeps/unix/getpagesize.c: Likewise.
5851         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
5852         * sysdeps/unix/sysv/linux/ia64/getpagesize.c: Likewise.
5853         * sysdeps/unix/sysv/linux/m68k/getpagesize.c: Likewise.
5854         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Likewise.
5856 2002-04-13  Andreas Jaeger  <aj@suse.de>
5858         * sysdeps/i386/i486/bits/string.h (__strcspn_cg): Use only memory
5859         as clobber to reduce register pressure.
5860         (__strpbrk_cg): Likewise.
5861         (__mempcpy_by4): Likewise.
5862         (__strstr_cg): Likewise.
5863         Add prototype for __memrchr.
5865 2002-04-13  Andreas Schwab  <schwab@suse.de>
5867         * sysdeps/m68k/fpu/s_finite.c: Add internal alias.
5868         * sysdeps/m68k/fpu/s_finitef.c: Likewise.
5869         * sysdeps/m68k/fpu/s_finitel.c: Likewise.
5871 2002-04-13  Ulrich Drepper  <drepper@redhat.com>
5873         * elf/do-lookup.h [!VERSIONED]: Add new parameter flags.  Use it to
5874         check whether the caller prefers getting the most recent version of
5875         a symbol of the earliest version.
5876         * elf/dl-lookup.c: Adjust all callers of do_lookup.  Change
5877         _dl_do_lookup to also take the new parameter and pass it on.
5878         Change 'explicit' parameter of _dl_lookup_symbol and
5879         _dl_lookup_versioned_symbol to flags.  Adjust tests.
5880         * sysdeps/generic/ldsodefs.h: Adjust prototypes.
5881         * elf/dl-libc.c: Adjust all callers of _dl_lookup_symbol and
5882         _dl_lookup_versioned_symbol.
5883         * elf/dl-reloc.c: Likewise.
5884         * elf/dl-runtime.c: Likewise.
5885         * elf/dl-sym.c: Likewise.
5886         * sysdeps/mips/dl-machine.h: Likewise.
5888 2002-04-11  Jakub Jelinek  <jakub@redhat.com>
5890         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (LOC): Don't paste
5891         in a token.
5892         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sysdep.h (LOC): Likewise.
5894 2002-04-10  Andreas Jaeger  <aj@suse.de>
5896         * sysdeps/unix/sysv/linux/x86_64/glob.c: New file.
5898         * include/argz.h: Remove extra char from last patch.
5900 2002-04-09  Ulrich Drepper  <drepper@redhat.com>
5902         * sysdeps/mach/hurd/chown.c: Use INTDEF for __chown.
5903         * sysdeps/unix/sysv/aix/chown.c: Likewise.
5904         * sysdeps/unix/grantpt.c: Use INTUSE for __chown calls.
5905         * sysdeps/unix/sysv/linux/m68k/chown.c: Likewise.
5906         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
5907         * sysdeps/unix/sysv/linux/i386/chown.c: Use INTDEF2 to define
5908         __chown_internal.
5909         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
5911         * intl/dcngettext.c [_LIBC]: Use INTUSE for __dcngettext.
5912         * intl/dngettext.c [_LIBC] (DCNGETTEXT): Use INTUSE.
5913         * intl/ngettext.c: Likewise.
5915         * include/sys/socket.h: Declare __connect_internal and define
5916         __connect macro if not NOT_IN_libc.
5917         * sysdeps/mach/hurd/connect.c: Use INTDEF for __connect.
5918         * sysdeps/unix/sysv/aix/connect.c: Likewise.
5919         * sysdeps/unix/sysv/linux/connect.S: Add __connect_internal alias.
5921         * include/unistd.h: Declare __close_internal and define __close macro
5922         if not NOT_IN_libc.
5923         * libio/libioP.h (JUMO0, JUMP1, JUMP2, JUMP3, WJUMP0, WJUMP1, WJUMP2,
5924         WJUMP3): Add extra parenthesis to avoid expanding element names with
5925         macors like __close.
5926         * sysdeps/unix/syscalls.list: Add __close_internal alias.
5928         * include/unistd.h: Declare __dup2_internal and define __dup2 macro
5929         if not NOT_IN_libc.
5930         * sysdeps/mach/hurd/dup2.c: Use INTDEF for __dup2.
5931         * sysdeps/posix/dup2.c: Use INTDEF for __dup2.
5932         * sysdeps/unix/syscalls.list: Add __dup2_internal alias.
5934         * include/unistd.h: Declare __fork_internal and define __fork macro
5935         if not NOT_IN_libc.
5936         * sysdeps/mach/hurd/fork.c: Use INTDEF for __fork.
5937         * sysdeps/unix/sysv/aix/fork.c: Likewise.
5938         * sysdeps/unix/sysv/linux/syscalls.list: Add __fork_internal alias.
5940         * include/stdio_ext.h: Declare __fsetlocking_internal and define
5941         __fsetlocking macro to use it if not NOT_IN_libc.
5942         * libio/__fsetlocking.c: Use INTDEF for __fsetlocking.
5944         * libio/__fbufsize.c: Correct copyright.
5945         * libio/__flbf.c: Likewise.
5946         * libio/__fpending.c: Likewise.
5947         * libio/__fpurge.c: Likewise.
5948         * libio/__freadable.c: Likewise.
5949         * libio/__freading.c: Likewise.
5950         * libio/__fsetlocking.c: Likewise.
5951         * libio/__fwritable.c: Likewise.
5952         * libio/__fwriting.c: Likewise.
5954         * include/stdio.h: Declare __asprintf_internal and define __asprintf
5955         macro to use it if not NOT_IN_libc.
5956         * stdio-common/asprintf.c: Use INTDEF for __asprintf.
5958         * include/mntent.h: Declare __setmntent_internal,
5959         __getmntent_r_internal, __endmntent_internal.  Define __setmntent,
5960         __getmntent_r, and __endmntent macros to use these functions if not
5961         NOT_IN_libc.
5962         * misc/mntent_r.c: Use INTDEF for __setmntent, __getmntent_r, and
5963         __endmntent.
5965         * include/math.h: Declare __finite_internal, __finitef_internal, and
5966         __finitel_internal.  Redefine isfinite macro if in libc or libm using
5967         these functions.
5968         * sysdeps/generic/s_ldexp.c: Use INTUSE for __finite calls.
5969         * sysdeps/generic/s_ldexpf.c: Use INTUSE for __finitef calls.
5970         * sysdeps/generic/s_ldexpl.c: Use INTUSE for __finitel calls.
5971         * sysdeps/i386/fpu/s_finite.S: Define _internal alias.
5972         * sysdeps/i386/fpu/s_finitef.S: Likewise.
5973         * sysdeps/i386/fpu/s_finitel.S: Likewise.
5974         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
5975         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
5976         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
5977         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
5979         * include/fcntl.h: Declare __fcntl_internal.  Define __fcntl macro
5980         to use this function if not NOT_IN_libc.
5981         * libio/iofdopen.c (_IO_fcntl): Use INTUSE.
5982         * sysdeps/generic/fcntl.c: Use INTDEF for __fcntl.
5983         * sysdeps/mach/hurd/fcntl.c: Likewise.
5984         * sysdeps/unix/sysv/aix/fcntl.c: Likewise.
5985         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
5987         * include/argz.h: Declare __argz_count_internal and
5988         __argz_stringify_internal.
5989         * intl/l10nflist.c [_LIBC]: Use INTUSE for __argz_count and
5990         __argz_stringify.
5991         * string/argz-count.c: Use INTDEF for __argz_count.
5992         * string/argz-stringify.c: Use INTDEF for __argz_stringify.
5994         * include/stdlib.h: Declare __cxa_atexit_internal and define
5995         __cxa_atexit macro if not NOT_IN_libc.
5996         * stdlib/cxa_atexit.c: Use INTDEF for __cxa_atexit.
5997         * dlfcn/Makefile: Define NOT_IN_libc when compiling modcxaatexit.c.
5999         * assert/assert.c: Use INTDEF for __assert_fail.
6000         * assert/__assert.c: Use INTUSE for call to __assert_fail.
6001         * include/assert.h: Declare __assert_fail_internal.
6003         * extra-lib.mk: Mark assignment to lib with override.
6005 2002-04-08  Ulrich Drepper  <drepper@redhat.com>
6007         * Makerules: Use cppflags-iterator.mk to add defines for all test
6008         source files.
6010 2002-04-08  kaz Kojima  <kkojima@rr.iij4u.or.jp>
6012         * elf/elf.h: Define R_SH_TLS_xxx macros.
6013         * elf/rtld.c: Remove an extra parenthesis.
6014         * elf/tls-macros.h: Define SH version TLS_LE, TLS_IE, TLS_LD and
6015         TLS_GD macros.
6016         * sysdeps/generic/dl-tls.c: Add a missing semi-colon.
6017         * sysdeps/sh/dl-lookupcfg.h: New file.
6018         * sysdeps/sh/dl-tls.h: New file.
6019         * sysdeps/sh/dl-machine.h (elf_machine_type_class): Set
6020         ELF_RTYPE_CLASS_PLT also for the three TLS relocations.
6021         (elf_machine_rela): Handle R_SH_TLS_DTPMOD32, R_SH_TLS_DTPOFF32 and
6022         R_SH_TLS_TPOFF32 relocations.
6024 2002-04-08  Ulrich Drepper  <drepper@redhat.com>
6026         * cppflags-iterator.mk (cpp-srcs-left): Define NOT_IN_libc instead
6027         of NOT_IN_LIBC.
6028         * include/libintl.h: Test for NOT_IN_libc not NOT_IN_LIBC.
6029         * include/stdlib.h: Likewise.
6031 2002-04-08  Jakub Jelinek  <jakub@redhat.com>
6033         * elf/Makefile (CFLAGS-.os): Define NOT_IN_libc and IS_IN_rtld
6034         instead of _RTLD_LOCAL.
6035         * elf/dl-dst.h: Use IS_IN_rtld instead of _RTLD_LOCAL.
6036         * include/unistd.h: Likewise.
6037         * sysdeps/generic/ldsodefs.h: Likewise.
6039         * stdio-common/_itoa.h (_itoa_word): Only use internal digit arrays
6040         if in libc or ld.so.
6042 2002-04-08  Andreas Jaeger  <aj@suse.de>
6044         * elf/cache.c (print_entry): Support x86-64.
6046 2002-04-08  Ulrich Drepper  <drepper@redhat.com>
6048         * include/stdlib.h: For libc itself replace MB_CUR_MAX definition
6049         with one accessing the locale data structures directly.
6050         * stdio-common/printf-prs.c: Include localeinfo.h for new
6051         MB_CUR_MAX definition.
6053         * Makeconfig (CPPFLAGS): Also add CPPFLAGS-<basename> where <basename>
6054         is the name of the source file without extension.
6055         * Makefile (distribute): Add cppflags-iterator.mk.
6056         * cppflags-iterator.mk: New file.
6057         * extra-lib.mk: For the sources of the library run
6058         cppflags-iterator.mk.
6060         * include/libintl.h: Declare __dcgettext_internal and
6061         _libc_intl_domainname_internal.  Define __dcgettext using these
6062         two symbols if used in libc itself.
6063         * argp/argp-help.c: Define dgettext using __dcgettext_internal and
6064         _libc_intl_domainname_internal.
6065         * argp/argp-parse.c: Likewise.
6066         * intl/dcgettext.c (__dcgettext): Use INTDEF to define alias.
6067         * intl/dgettext.c: Call __dcgettext_internal instead of __dcgettext.
6068         * intl/gettext.c: Likewise.
6069         * locale/SYS_libc.c (_libc_intl_domainname): Use INTDEF to define
6070         alias.
6071         * posix/regcomp.c (gettext): Use __dcgettext_internal instead of
6072         __dcgettext.
6073         * posix/regex_internal.c (gettext): Likewise.
6075 2002-04-08  Andreas Jaeger  <aj@suse.de>
6077         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Fix rewrite rule.
6079         * sysdeps/x86_64/fpu/s_llrint.S: New file.
6080         * sysdeps/x86_64/fpu/s_llrintf.S: New file.
6081         * sysdeps/x86_64/fpu/s_llrintl.S: New file.
6082         * sysdeps/x86_64/fpu/s_lrint.S: New file.
6083         * sysdeps/x86_64/fpu/s_lrintf.S: New file.
6084         * sysdeps/x86_64/fpu/s_lrintl.S: New file.
6086 2002-04-08  Roland McGrath  <roland@frob.com>
6088         * sysdeps/mach/hurd/dl-sysdep.c (__mmap): Use MAP_FAILED instead of
6089         widening __hurd_fail value.
6091 2002-04-07  Roland McGrath  <roland@frob.com>
6093         * sysdeps/mach/hurd/alpha/trampoline.c: Don't include
6094         <mach/machine/alpha_instruction.h>.
6095         (_hurd_setup_sighandler): Take proper arguments for current decls.
6096         Update code to use _hurdsig_catch_fault.
6097         Use `callsys' instruction instead of `call_pal'.
6098         * sysdeps/mach/hurd/alpha/intr-msg.h: New file.
6100         * sysdeps/mach/alpha/sysdep.h: Include <mach/alpha/asm.h>.
6101         (ALIGN, at, AT, fp): New macros.
6103 2002-04-06  Roland McGrath  <roland@frob.com>
6105         * mach/setup-thread.c (__mach_setup_thread): int -> natural_t
6107         * sysdeps/mach/hurd/dl-sysdep.c: Use ElfW(TYPE) in place of Elf32_TYPE.
6108         (__mmap): Use MAP_FAILED instead of widening __hurd_fail value.
6110         * sysdeps/mach/hurd/bind.c: Use prototype definition.
6111         * sysdeps/mach/hurd/connect.c: Likewise.
6112         * sysdeps/mach/hurd/getsockopt.c: Likewise.
6113         * sysdeps/mach/hurd/setsockopt.c: Likewise.
6115         * sysdeps/mach/hurd/alpha/sigreturn.c: Pass missing argument to
6116         __msg_sig_post RPC.
6118         * hurd/catch-exc.c: Use integer_t instead of int.
6119         * hurd/hurdfault.c: Likewise.
6121         * sysdeps/mach/hurd/alpha/exc2signal.c
6122         (_hurd_exception2signal): Rewritten.
6123         * sysdeps/mach/hurd/alpha/longjmp-ts.c
6124         (_hurd_longjmp_thread_state): Rewritten.
6126 2002-04-07  Ulrich Drepper  <drepper@redhat.com>
6128         * nss/getXXbyYY_r.c: If NSS_attribute_hidden is defined use it with the
6129         DB_LOOKUP_FCT prototype.
6130         * nss/getXXent_r.c: Likewise.
6131         * inet/getaliasent_r.c: Define NSS_attribute_hidden.
6132         * inet/getaliasname_r.c: Likewise.
6133         * inet/getnetbyad_r.c: Likewise.
6134         * inet/getnetbynm_r.c: Likewise.
6135         * inet/getnetent_r.c: Likewise.
6136         * inet/getproto_r.c: Likewise.
6137         * inet/getprtent_r.c: Likewise.
6138         * inet/getprtname_r.c: Likewise.
6139         * inet/getrpcbyname_r.c: Likewise.
6140         * inet/getrpcbynumber_r.c: Likewise.
6141         * inet/getrpcent_r.c: Likewise.
6142         * inet/getservent_r.c: Likewise.
6143         * inet/getsrvbynm_r.c: Likewise.
6144         * inet/getsrvbypt_r.c: Likewise.
6145         * shadow/getspent_r.c: Likewise.
6146         * shadow/getspnam_r.c: Likewise.
6148         * malloc/thread-m.h: Define __libc_tsd_MALLOC_data as static.
6150         * sysdeps/i386/elf/bsd-setjmp.S: Use GOTOFF for __sigjmp_save access.
6151         Use i686-friendly PIC code.
6152         * sysdeps/i386/elf/setjmp.S: Likewise.
6154         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use i686-friendly PIC code.
6156         * sysdeps/mach/hurd/Versions: Add _dl_init_first to libc and ld export
6157         list.
6158         * elf/Versions: Remove it here.
6160 2002-04-06  Ulrich Drepper  <drepper@redhat.com>
6162         * iconvdata/tcvn5712-1.c (MAX_NEEDED_INPUT): Define for from
6163         direction.  Reported by H . J . Lu <hjl@lucon.org>.
6165 2002-04-05  Ulrich Drepper  <drepper@redhat.com>
6167         * intl/tst-gettext.sh: Set GCONV_PATH and LOCPATH to values for the
6168         test just before the test runs.
6169         * intl/tst-translit.sh: Likewise.
6170         * intl/tst-codeset.sh: Likewise.
6172         * timezone/zic.c: Update from tzcode2002c.
6173         * timezone/asia: Update from tzdata2002c.
6174         * timezone/backward: Likewise.
6175         * timezone/europe: Likewise.
6176         * timezone/northamerica: Likewise.
6177         * timezone/northamerica: Likewise.
6178         * timezone/northamerica: Likewise.
6179         * timezone/southamerica: Likewise.
6180         * timezone/zone.tab: Likewise.
6182 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
6184         * sysdeps/generic/brk.c (__curbrk): Declare.
6185         * sysdeps/generic/dl-brk.c: Add attribute_hidden to __curbrk.
6186         * sysdeps/generic/dl-sbrk.c: Likewise.
6187         * sysdeps/unix/arm/dl-brk.S: New file.
6188         * sysdeps/unix/bsd/hp/m68k/dl-brk.S: New file.
6189         * sysdeps/unix/bsd/osf/alpha/dl-brk.S: New file.
6190         * sysdeps/unix/bsd/sun/m68k/dl-brk.S: New file.
6191         * sysdeps/unix/bsd/vax/dl-brk.S: New file.
6192         * sysdeps/unix/i386/dl-brk.S: New file.
6193         * sysdeps/unix/mips/dl-brk.S: New file.
6194         * sysdeps/unix/sparc/dl-brk.S: New file.
6195         * sysdeps/unix/sysv/linux/alpha/dl-brk.S: New file.
6196         * sysdeps/unix/sysv/linux/ia64/dl-brk.S: New file.
6197         * sysdeps/unix/sysv/linux/powerpc/dl-brk.S: New file.
6198         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-brk.S: New file.
6200 2002-04-03  Andreas Schwab  <schwab@suse.de>
6202         * Makefile (headers): Add gnu/lib-names.h here instead of
6203         install-others.
6204         ($(inst_includedir)/gnu/lib-names.h): Remove explicit
6205         installation rule.
6206         (install-headers): Add dependency on install-headers-nosubdir.
6207         * stdio-common/Makefile (headers): Add bits/stdio_lim.h here
6208         instead of install-others.
6209         ($(inst_includedir)/bits/stdio_lim.h): Remove explicit
6210         installation rule.
6212 2002-04-05  Ulrich Drepper  <drepper@redhat.com>
6214         * manual/users.tex (Enable/Disable Setuid): Fix typo in example.
6215         Reported by Sam Roberts <sroberts@uniserve.com>.
6217 2002-04-03  Jakub Jelinek  <jakub@redhat.com>
6219         * elf/do-rel.h (elf_dynamic_do_rel): Skip relative relocs if
6220         l_addr == 0 and ELF_MACHINE_REL_RELATIVE.
6221         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_REL_RELATIVE): Define.
6222         * sysdeps/ia64/dl-machine.h (ELF_MACHINE_REL_RELATIVE): Define.
6224 2002-04-03  David Mosberger  <davidm@hpl.hp.com>
6226         * sysdeps/ia64/dl-machine.h (TRAMPOLINE_TEMPLATE): Add unwind info.
6227         (RTLD_START): Ditto.
6228         (__ia64_init_bootstrap_fdesc_table): Insert stop bit to avoid RAW
6229         dependency violation.
6231 2002-04-05  Jakub Jelinek  <jakub@redhat.com>
6233         * time/mktime.c (__mktime_internal): Move check for year < 70 below
6234         all variable declarations.
6236 2002-04-04  Andreas Schwab  <schwab@suse.de>
6238         * sysdeps/unix/sysv/linux/ia64/pipe.S: Don't overwrite r8 on error.
6240 2002-04-04  Andreas Jaeger  <aj@suse.de>
6242         * sysdeps/x86_64/fpu/e_sqrt.c: New file.
6243         * sysdeps/x86_64/fpu/e_sqrtf.c: New file.
6245         * sysdeps/x86_64/fpu/s_fabs.c: New file.
6246         * sysdeps/x86_64/fpu/s_fabsf.c: New file.
6247         * sysdeps/x86_64/fpu/s_fabsl.c: New file.
6249         * sysdeps/unix/sysv/linux/x86_64/time.S: New file.
6251         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: New file.
6253         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: Removed.
6254         * sysdeps/unix/sysv/linux/x86_64/time.c: Removed.
6256         * configure.in: Handle all mips entries the same.
6258         * sysdeps/mips/dec/bits/endian.h: Removed since arch is not supported.
6259         * sysdeps/mips/mips3/*: Likewise.
6260         * sysdeps/mips/p40/bits/endian.h: Likewise.
6262 2002-04-04  Ulrich Drepper  <drepper@redhat.com>
6264         * misc/dirname.c (dirname): Ignore trailing slashes at end of
6265         non-null result [PR libc/2600].
6267         * misc/tst-dirname.c: Add more tests.
6269 2002-04-03  Ulrich Drepper  <drepper@redhat.com>
6271         * locale/programs/charmap.c (charmap_read): If the charmap doesn't
6272         define a code_set_name provide one based on the filename.
6274         * malloc/hooks.c: Define weak_variable correctly for _LIBC.
6276 2001-12-28  Andreas Jaeger  <aj@suse.de>
6278         * time/mktime.c (__mktime_internal): Check for year < 70
6279         [PR libc/2738].
6281 2002-04-03  Andreas Jaeger  <aj@suse.de>
6283         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Fix arguments for
6284         shmat.
6285         Reported by Andi Kleen <ak@suse.de>.
6287 2002-04-03  Ulrich Drepper  <drepper@redhat.com>
6289         * sysdeps/generic/w_lgamma.c: Initialized local_signgam.
6290         * sysdeps/generic/w_lgammaf.c: Likewise.
6291         * sysdeps/generic/w_lgammal.c: Likewise [PR libc/2854].
6293         * debug/catchsegv.sh (exval): Quote [ in pattern [PR libc/2902].
6294         Adjust for new output format of the backtrace functions.
6296         * misc/syslog.c (vsyslog): Only use cleanup handler if
6297         _LIBC_REENTRANT is defined [PR libc/2924].
6299         * libio/Makefile (tests): Add bug-ungetwc2.
6300         * libio/bug-ungetwc2.c: New file.
6302         * manual/install.texi: Typographical and grammatical cleanup.
6303         Patch by Dennis Grace <dgrace@us.ibm.com>.
6305         * sunrpc/rpc_svcout.c (write_real_program): Write "result, "
6306         parameter if mtflag.  Patch by <jeongyun@innovay.com>.
6308         * sunrpc/rpc_svcout.c (printif): Remove third parameter.  It was
6309         always "&".  Adjust callers.
6310         Add "_" prefix to several generated definitions.
6311         Patch by paul@serice.net [PR libc/3158].
6313 2002-04-02  Ulrich Drepper  <drepper@redhat.com>
6315         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c: Completely specify
6316         size of _dl_arm_cap_flags.
6317         Patch by enrico.scholz@informatik.tu-chemnitz.de [PR libc/3155].
6319         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
6320         Define as 8.
6322 2002-03-22  H.J. Lu  <hjl@gnu.org>
6324         * scripts/firstversions.awk: Check the first version.
6326 2002-04-02  Ulrich Drepper  <drepper@redhat.com>
6328         * elf/dl-deps.c (_dl_map_object_deps): The sorting of the
6329         dependencies must be stable to work correctly.
6330         Reported by martin.lubich@datacon.at.
6332         * libio/bug-ungetwc1.c: New file.
6333         * libio/Makefile (tests): Add bug-ungetwc1.
6335         * libio/fileops.c (_IO_new_file_close_it): Only call _IO_do_flush
6336         if stream was last used for writing.
6338         * elf/do-lookup.h (do_lookup): 2 is the first user-defined version
6339         number [PR libc/3111].
6341         * libio/iofclose.c (_IO_new_fclose): Move freeing of backup buffer
6342         to ...
6343         * libio/fileops.c (_IO_new_file_close_it): ...here [PR libc/3190].
6345 2002-04-02  Jakub Jelinek  <jakub@redhat.com>
6347         * inet/ether_ntoh.c (__nss_ethers_lookup): Add internal_function.
6348         * inet/ether_hton.c (__nss_ethers_lookup): Likewise.
6349         * inet/getnetgrent_r.c (__nss_netgroup_lookup): Likewise.
6350         * sunrpc/netname.c (__nss_publickey_lookup): Likewise.
6351         * sunrpc/publickey.c (__nss_publickey_lookup): Likewise.
6353 2002-03-30  Jakub Jelinek  <jakub@redhat.com>
6355         * elf/dynamic-link.h (elf_get_dynamic_info): Don't abort on unknown
6356         dynamic tags.
6358 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
6360         * sysdeps/i386/fpu/s_fabs.S: New file.
6361         * sysdeps/i386/fpu/s_fabsf.S: New file.
6362         * sysdeps/i386/fpu/s_fabsl.S: New file.
6363         * sysdeps/sparc/sparc64/fpu/s_fabs.c: New file.
6364         * sysdeps/sparc/sparc64/fpu/s_fabsf.c: New file.
6365         * sysdeps/sparc/sparc64/fpu/s_fabsl.c: New file.
6367 2002-04-02  Ulrich Drepper  <drepper@redhat.com>
6369         * rt/tst-shm.c (do_test): Add one more test for size of shared
6370         memory object.
6372 2002-03-29  Wolfram Gloger  <wg@malloc.de>
6374         * malloc/malloc.c: Add short description and prototypes for
6375         malloc_get_state, malloc_set_state and posix_memalign, for
6376         consistency and to avoid warnings with -Wstrict-prototypes.
6377         Reported by Andreas Jaeger <aj@suse.de>.
6379 2002-04-02  Ulrich Drepper  <drepper@redhat.com>
6381         * po/gl.po: Update from translation team.
6383 2002-03-31  Roland McGrath  <roland@frob.com>
6385         * hurd/hurdselect.c (_hurd_select): Fix
6386         MACH_MSG_TYPE_INTEGER_T -> integer_t in sizeof.
6387         Use a union rather than casts to compare mach_msg_type_t as int.
6389 2002-03-25  Roland McGrath  <roland@frob.com>
6391         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name): Don't
6392         check off the end of NAME when it's shorter than 2 chars.
6393         Reported by Ognyan Kulev <ogi@fmi.uni-sofia.bg>.
6395 2002-03-17  Roland McGrath  <roland@frob.com>
6397         * sysdeps/mach/hurd/i386/sys/io.h: New file.
6398         * sysdeps/mach/hurd/i386/ioperm.c: New file.
6399         * sysdeps/mach/hurd/i386/Dist: Add them.
6400         * sysdeps/mach/hurd/i386/Versions
6401         (libc: GLIBC_2.2.6): New set, add ioperm.
6402         * sysdeps/mach/configure.in: New check to set HAVE_I386_IO_PERM_MODIFY.
6403         (mach_interface_list): Check for mach_i386.defs.
6404         * config.h.in (HAVE_I386_IO_PERM_MODIFY): #undef it.
6405         * sysdeps/mach/configure: Regenerated.
6407 2002-03-22  Ulrich Drepper  <drepper@redhat.com>
6409         * po/fr.po: Update from translation team.
6411 2002-03-21  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6413         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Remove
6414         getpriority from syscalls list.
6416 2002-03-28  Andreas Jaeger  <aj@suse.de>
6418         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: New file.
6419         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: New file.
6420         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: New file.
6421         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: New file.
6423 2002-03-27  Andreas Jaeger  <aj@suse.de>
6425         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
6426         sigcontext): Follow further kernel change.
6428         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Follow further
6429         kernel change.
6431         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h (GET_STACK):
6432         Change for struct sigcontext change.
6434         * sysdeps/unix/sysv/linux/x86_64/register-dump.h (register_dump):
6435         Follow changes in struct sigcontext.
6437         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Remove ptrace
6438         sysycall, use wrapper instead.
6440 2002-03-26  Andreas Jaeger  <aj@suse.de>
6442         * sysdeps/i386/i486/bits/string.h (__memcpy_by4): Describe memory
6443         read and write accesses as detailed as possible.
6444         (__memcpy_by2): Likewise.
6445         (__memcpy_g): Likewise.
6446         (memmove): Likewise.
6447         (memcmp): Likewise.
6448         (__memset_ccn_by4): Likewise.
6449         (__memset_ccn_by2): Likewise.
6450         (__memset_gcn_by4): Likewise.
6451         (__memset_gcn_by2): Likewise.
6452         (memchr): Likewise.
6453         (__memrchr): Likewise.
6454         (rawmemchr): Likewise.
6455         (__strlen_g): Likewise.
6456         (__strcpy_g): Likewise.
6457         (__mempcpy_by4): Likewise.
6458         (__mempcpy_by2): Likewise.
6459         (__mempcpy_byn): Likewise.
6460         (__stpcpy_g): Likewise.
6461         (__strncpy_by4): Likewise.
6462         (__strncpy_by2): Likewise.
6463         (__strncpy_byn): Likewise.
6464         (__strncpy_gg): Likewise.
6465         (__strcat_c): Likewise.
6466         (__strcat_g): Likewise.
6467         (__strncat_g): Likewise.
6468         (__strcmp_gg): Likewise.
6469         (__strncmp_g): Likewise.
6470         (__strchr_c): Likewise.
6471         (__strchr_g): Likewise.
6472         (__strchrnul_c): Likewise.
6473         (__strchrnul_g): Likewise.
6474         (__strrchr_c): Likewise.
6475         (__strrchr_g): Likewise.
6476         (__strrchr_c): Likewise.
6477         (__strrchr_g): Likewise.
6478         (__strcspn_c1): Likewise.
6479         (__strcspn_cg): Likewise.
6480         (__strcspn_g): Likewise.
6481         (__strcspn_g): Likewise.
6482         (__strspn_c1): Likewise.
6483         (__strspn_cg): Likewise.
6484         (__strspn_g): Likewise.
6485         (__strspn_g): Likewise.
6486         (__strpbrk_cg): Likewise.
6487         (__strpbrk_g): Likewise.
6488         (__strstr_cg): Likewise.
6489         (__strstr_g): Likewise.
6491         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Fix typo.  Reported by
6492         Michal Ludvig <mludvig@suse.cz>.
6494         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Add 32-bit
6495         compatibilty, adjust for kernel changes.
6497         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
6498         sigcontext): Adjust for kernel changes.
6500 2002-03-25  Andreas Jaeger  <aj@suse.de>
6502         * iconv/gconv_simple.c (ucs4le_internal_loop_single): Handle
6503         little endian.
6504         Reported by Artur Zaprzala <zybi@talex.com.pl>.
6506 2002-03-24  Andreas Jaeger  <aj@suse.de>
6508         * manual/memory.texi (Aligned Memory Blocks): Fix typo.
6510         * stdio-common/tst-fdopen.c (main): Remove unused variable.
6512         * iconv/tst-iconv3.c (main): Use correct printf strings.
6514 2002-03-18  Roland McGrath  <roland@frob.com>
6516         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (struct cmsgcred): New type.
6517         (CMGROUP_MAX): New macro.
6519 2002-03-23  Roland McGrath  <roland@frob.com>
6521         * sysdeps/posix/shm_open.c (SHMDIR): /var/run/shm -> /dev/shm
6522         * sysdeps/posix/shm_unlink.c: Likewise.
6524 2002-03-22  Roland McGrath  <roland@frob.com>
6526         * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu.*): Make 2.2.6 default.
6527         * sysdeps/mach/hurd/configure.in: Default oldest ABI is 2.2.6
6528         under --enable-libio.
6529         * sysdeps/mach/hurd/configure: Regenerated.
6531 2002-03-23  Roland McGrath  <roland@frob.com>
6533         * sysdeps/mach/hurd/i386/Makefile
6534         (sysdep_routines, shared-only-routines): Don't add framestate,
6535         reverting 2001-10-02 change.
6536         * sysdeps/unix/sysv/linux/arm/Makefile: Likewise.
6537         * sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
6538         * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
6539         * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
6540         * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
6541         * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
6542         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Likewise.
6543         * sysdeps/unix/sysv/linux/sparc/Makefile: Likewise.
6544         * sysdeps/generic/Makefile (sysdep_routines, shared-only-routines):
6545         Do it here instead, only if [$(unwind-find-fde) = yes].
6547 2002-03-23  Andreas Jaeger  <aj@suse.de>
6549         * signal/signal.h: Fix typo. Patch by Steve Kemp
6550         <skx@tardis.ed.ac.uk>.
6552 2002-03-22  Andreas Jaeger  <aj@suse.de>
6554         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add getresgid and
6555         getresuid.
6557         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
6558         _fpstate): Rename fwd to ftw, use _fpxreg and _xmmreg.
6559         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
6560         user_fpregs_struct): Rename fwd.
6562         * sysdeps/unix/sysv/linux/x86_64/register-dump.h (register_dump):
6563         Follow sigcontext changes.
6565 2002-03-22  Andreas Jaeger  <aj@suse.de>
6567         * sysdeps/mips/bits/nan.h: New file.  Copy from generic one with
6568         changes for NaNs on MIPS.
6569         Patch by Hartvig Ekner <hartvige@mips.com>.
6571 2002-03-21  Ulrich Drepper  <drepper@redhat.com>
6573         * nscd/grpcache.c (addgrbyname): Improve buffer allocate with alloca.
6574         Use realloc if too large.
6575         (addgrbyid): Likewise.
6576         * nscd/hstcache.c (addhstbyname): Likewise.
6577         (addhstbyaddr): Likewise.
6578         (addhstbynamev6): Likewise.
6579         (addhstbyaddrv6): Likewise.
6580         * nscd/pwdcache.c (addpwbyname): Likewise.
6581         (addpwbyuid): Likewise.
6583 2002-03-21  Andreas Jaeger  <aj@suse.de>
6585         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
6586         _fpstate): Add separate struct for x86-64.
6588         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
6589         user_fpregs_struct): Change member names to follow kernel.
6591 2002-03-20  Ulrich Drepper  <drepper@redhat.com>
6593         * nis/ypclnt.c (yp_all): Remove the hack introduced on 1998-09-29.
6594         Correctly close the UDP connection right away [PR libc/3120].
6596 2002-03-20  Andreas Jaeger  <aj@suse.de>
6598         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
6599         user_fpregs_struct): Fix for changed kernel struct.
6600         (struct user_regs_struct): Likewise.
6601         (struct user): Likewise.
6602         Add 32-bit x86 compatibility.
6604         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Add more registers.
6606 2002-03-19  Andreas Jaeger  <aj@suse.de>
6608         * sysdeps/unix/sysv/linux/x86_64/bits/types.h: Cleanup x86 types.
6610 2002-03-18  Andreas Jaeger  <aj@suse.de>
6612         * iconvdata/Makefile: Only run tests when shared libs are
6613         available.
6615 2002-03-17  Andreas Jaeger  <aj@suse.de>
6617         * sysdeps/mips/fpu/fraiseexcpt.c (__feraiseexcept): Set cause bits.
6619         * sysdeps/mips/fpu/fgetexcptflg.c (__fegetexceptflag): Add comment.
6621         * sysdeps/mips/fpu/fclrexcpt.c (__feclearexcept): Clear also cause
6622         bits.
6624         * sysdeps/mips/fpu/fenv_libc.h (CAUSE_MASK): New macro.
6625         (CAUSE_SHIFT): New macro.
6626         Patch by Hartvig Ekner <hartvige@mips.com>.
6628         * sysdeps/generic/unwind-dw2-fde-glibc.c: Add prototypes.
6629         * sysdeps/generic/unwind-pe.h: Likewise.
6631         * libio/iofdopen.c (_IO_new_fdopen): Pass parameter of correct
6632         type to _IO_setb.
6634         * libio/stdio.c (AL2): Define variant when visibility attribute is
6635         not supported.
6637         * include/libc-symbols.h (_INTVARDEF): Define variant when
6638         visibility attribute is not supported.
6640 2002-03-16  Ulrich Drepper  <drepper@redhat.com>
6642         * po/fr.po: Update from translation team.
6644 2002-02-25  Bruno Haible  <bruno@clisp.org>
6646         * MakeTAGS (extract): Use --sort-by-file instead of --sort-output.
6648 2002-03-15  Ulrich Drepper  <drepper@redhat.com>
6650         * libio/iofdopen.c (_IO_new_fdopen): Call _IO_setb to deallocate
6651         buffers if _IO_file_attach failed.
6653         * libio/fileops.c (_IO_file_open): Close file descriptor if
6654         _IO_SEEKOFF call failed.
6656 2002-03-15  H.J. Lu  <hjl@gnu.org>
6657             Ulrich Drepper  <drepper@redhat.com>
6659         * configure.in: Check for availability of
6660         init_array/fini_array/preinit_array handling in binutils.
6661         * config.h.in (HAVE_INITFINI_ARRAY): New macro.
6662         * config.make.in (have-initfini-array): New variable.
6664 2002-03-15  Ulrich Drepper  <drepper@redhat.com>
6666         * stdio-common/tst-printf.c (main): Comment out one test which
6667         checked the compiler's ability to fold floating-point constants
6668         but not really printf.
6669         (rfg3): Make s const.
6670         * stdio-common/tst-printf.sh: Adjust for removed test.
6672         * sysdeps/i386/i386-mcount.S: Just call __mcount_internal, it is an
6673         internal function.  Adjust for internal_function calling convention.
6674         * sysdeps/i386/machine-gmon.h: Declare and define __mcount_internal
6675         as internal_function.
6677         * sysdeps/generic/framestate.c: Declare fallback_frame_state_for as
6678         hidden.
6680         * nss/XXX-lookup.c (DB_LOOKUP_FCT): Add internal_function to
6681         declaration and definition.
6682         * nss/getXXbyYY_r.c (DB_LOOKUP_FCT): Add internal_function to
6683         declaration.
6684         * nss/getXXent_r.c: Likewise.
6685         * nss/nsswitch.h (db_lookup_function): Add internal_function to
6686         definition.
6688         * include/time.h: Declare __localtime_r as hidden.
6690         * include/aliases.h: Declare __getaliasent_r as hidden.
6691         * include/grp.h: Declare __getgrent_r as hidden.
6692         * include/netdb.h: Declare __gethostent_r, __getnetent_r,
6693         __getservent_r, and __getprotoent_r as hidden.
6694         * include/pwd.h: Declare __getpwent_r as hidden.
6695         * include/shadow.h: Declare __getspent_r as hidden.
6696         * include/rpc/netdb.h: Declare __getrpcent_r as hidden.
6698         * iconv/gconv_int.h: Declare __gconv_read_conf, __gconv_alias_compare,
6699         and __gconv_transliterate as hidden.
6700         Add internal_function to __gconv_get_path declaration.
6701         * iconv/gconv_conf.c: Add internal_function to __gconv_get_path
6702         definition.  Add attribute_hidden to __gconv_read_conf definition.
6704 2002-03-14  Ulrich Drepper  <drepper@redhat.com>
6706         * elf/rtld.c: Declare _environ as hidden.
6707         * sysdeps/generic/dl-environ.c: Likewise.
6708         * sysdeps/generic/dl-sysdep.c: Likewise.
6710         * sysdeps/generic/ldsodefs.h: Declare _dl_debug_state_internal and
6711         _dl_mcount_internal as hidden.
6713         * elf/Makefile (rtld-routines): Add dl-sbrk and dl-brk.
6714         * sysdeps/generic/dl-brk.c: New file.
6715         * sysdeps/generic/dl-sbrk.c: New file.
6716         * sysdeps/unix/sysv/linux/i386/dl-brk.c: New file.
6717         * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: New file.
6719         * elf/dl-minimal.c (malloc): Declare _end as hidden.
6720         (__errno_location): New function.  Declare errno as hidden.
6721         * elf/rtld.c (_dl_argc): Define as hidden.
6722         (_dl_skip_args): Define as hidden.
6723         (_begin, _end): Declare as hidden.
6724         * sysdeps/generic/dl-sysdep.c (_end): Declare as hidden.
6725         * sysdeps/generic/entry.h (_start): Declare as hidden.
6726         * sysdeps/generic/ldsodefs.h (_dl_argc): Declare as hidden.
6727         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Declare
6728         _dl_runtime_resolve and _dl_runtime_profile as hidden.
6729         (RTLD_START): Use GOTOFF to access _dl_skip_args and _dl_fini.
6731 2002-03-14  Roland McGrath  <roland@frob.com>
6733         * Makerules ($(common-objpfx)Versions.v.i): Depend on abi-versions.h.
6735         * Makeconfig (%.v.i, %.v): New implicit rules.
6736         (preprocess-versions): Variable removed.
6737         ($(common-objpfx)shlib-versions.v.i): New target giving just the
6738         shlib-versions input files as dependencies.
6739         ($(common-objpfx)soversions.i): Depend on that instead of the input
6740         files.  Use it as input instead of using a pipeline.
6741         (postclean-generated): Append soversions.i, shlib-versions.v, and
6742         shlib-versions.v.i here.
6743         * Makerules ($(common-objpfx)Versions.def.v.i): New target giving just
6744         the Versions.def input files as dependencies.
6745         ($(common-objpfx)Versions.v.i): Likewise for Versions files.
6746         ($(common-objpfx)Versions.all): Depend on that instead of the input
6747         files.  Use it as input instead of using a pipeline.
6748         ($(common-objpfx)sysd-versions): Likewise with Versions.v.i.
6749         (postclean-generated): Append those .v and .v.i files here.
6751 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
6753         * locale/broken_cur_max.c (__ctype_get_mb_cur_max): Use nl_langinfo.
6754         * locale/Versions (_nl_current_LC_COLLATE, _nl_current_LC_CTYPE):
6755         Remove.
6757 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
6759         * sysdeps/generic/mp_clz_tab.c: New file.
6760         * sysdeps/i386/mp_clz_tab.c: New file.
6761         * sysdeps/hppa/mp_clz_tab.c: New file.
6762         * sysdeps/powerpc/mp_clz_tab.c: New file.
6763         * stdlib/Makefile (aux): Revert last patch.
6764         * math/Makefile (gmp-objs): Likewise.
6766 2002-03-13  Paul Eggert  <eggert@twinsun.com>
6768         * time/strftime.c: Comment fixes for references to obsolescent
6769         standards, In most cases the simplest fix is to remove the
6770         confusing comments.  Cross-referencing all the standards properly
6771         is a bit of a pain, and it should be enough to put that info in
6772         the documentation as I did in my recent time.texi patch.
6774 2002-03-13  Paul Eggert  <eggert@twinsun.com>
6776         * manual/time.texi (Formatting Calendar Time):
6777         ISO C99 also specifies the E and O modifiers.
6778         %P is a GNU extension, and is not in ISO C99.
6779         Mention that %r is equivalent to %I:%M:%S %p in the POSIX locale.
6780         %T is also in ISO C99.
6781         The RFC 822 example is not valid in arbitrary locales.
6782         Reword the POSIX.2 wording slightly, to make it a bit clearer
6783         that POSIX.2 formats are also supported by later POSIX versions.
6784         If a format was introduced in ISO C99 it is also required by
6785         POSIX.1-2001.
6787 2002-03-13  Ulrich Drepper  <drepper@redhat.com>
6789         * sysdeps/gnu/errlist.awk: Define _sys_errlist_internal and
6790         _sys_nerr_internal with INTVARDEF2.
6791         * include/libc-symbols.h (INTVARDEF2): New macro.
6792         * include/stdio.h (_sys_errlist_internal): Declare as hidden.
6793         (_sys_nerr_internal): Library.
6795         * sysdeps/posix/signal.c (_sigintr): Define as hidden.
6796         * sysdeps/posix/sigintr.c (_sigintr): Declare as hidden.
6798         * stdio-common/tst-printf.sh: Adjust for last change in tst-printf.c.
6800 2002-03-13  Wolfram Gloger  <wg@malloc.de>
6802         * malloc/malloc.c (sYSMALLOc): Don't change brk if mmap failed.
6804 2002-03-02  Andreas Schwab  <schwab@suse.de>
6806         * stdio-common/vfprintf.c (process_arg): Fix decimal format with
6807         'h' flag and positional arg.
6808         * stdio-common/tst-printf.c (rfg3): New function to test
6809         positional arguments.
6810         (main): Fix some warnings.
6812 2002-03-13  Jakub Jelinek  <jakub@redhat.com>
6814         * elf/dl-minimal.c (_itoa): Use _itoa_lower_digits_internal if SHARED.
6815         * elf/dl-reloc.c (_dl_reloc_bad_type): Likewise.
6817 2002-03-13  Ulrich Drepper  <drepper@redhat.com>
6819         * grp/initgroups.c (__nss_group_data): Declare as hidden.
6821         * include/locale.h (_nl_C_locobj): Declare as hidden.
6823         * time/asctime.c (_nl_C_LC_TIME): Declare as hidden.
6824         * time/strptime.c (_nl_C_LC_TIME): Likewise.
6826         * include/netinet/in.h (in6addr_any_internal): Mark as hidden.
6828         * include/sys/gmon.h: Declare _gmonparam as hidden.
6830         * locale/lc-ctype.c (__ctype32_wctype): Declare as hidden.
6831         (__ctype32_wctrans): Likewise.
6832         (__ctype32_width): Likewise.
6834         * sysdeps/unix/sysv/linux/ttyname.c: Comment out definition and
6835         use of __ttyname.
6837         * posix/regcomp.c (__re_error_msgid): Renamed from re_error_msgid.
6838         Define as hidden.
6839         (__re_error_msgid_idx): Renamed from re_error_msgid_idx.  Define as
6840         hidden.  Change all users of these variables.
6842         * posix/regex_internal.h (__re_error_msgid): Renamed from
6843         re_error_msgid.  Declare as hidden.
6844         (__re_error_msgid_idx): Renamed from re_error_msgid_idx.  Declare as
6845         hidden.
6847         * stdio-common/reg-printf.c (__printf_arginfo_table): Define as hidden.
6848         (__printf_function_table): Likewise.
6849         * stdio-common/printf-parse.h (__printf_arginfo_table): Declare as
6850         hidden.
6851         (__printf_function_table): Likewise.
6853         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_passwd,
6854         __nss_not_use_nscd_group, and __nss_not_use_nscd_hosts as hidden.
6856         * nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Define as hidden.
6857         * nss/nsswitch.c: Declare _nss_*_database as hidden.
6859         * stdlib/wctomb.c (__no_r_state): Declare as hidden.
6860         * stdlib/mbtowc.c (__no_r_state): Define as hidden.
6862 2002-03-12  Ulrich Drepper  <drepper@redhat.com>
6864         * ctype/ctype-info.c: Declare _nl_C_LC_CTYPE_class,
6865         _nl_C_LC_CTYPE_class32, _nl_C_LC_CTYPE_toupper, _nl_C_LC_CTYPE_tolower,
6866         _nl_C_LC_CTYPE_class_upper, _nl_C_LC_CTYPE_class_lower,
6867         _nl_C_LC_CTYPE_class_alpha, _nl_C_LC_CTYPE_class_digit,
6868         _nl_C_LC_CTYPE_class_xdigit, _nl_C_LC_CTYPE_class_space,
6869         _nl_C_LC_CTYPE_class_print, _nl_C_LC_CTYPE_class_graph,
6870         _nl_C_LC_CTYPE_class_blank, _nl_C_LC_CTYPE_class_cntrl,
6871         _nl_C_LC_CTYPE_class_punct, _nl_C_LC_CTYPE_class_alnum,
6872         _nl_C_LC_CTYPE_map_toupper, _nl_C_LC_CTYPE_map_tolower, and
6873         _nl_C_LC_CTYPE_width: Declare as hidden.
6874         * include/locale.h: Declare _nl_locale_file_list.
6875         * locale/C-address.c: Define _nl_C_LC_ADDRESS as hidden.
6876         * locale/C-collate.c: Define _nl_C_LC_COLLATE as hidden.
6877         * locale/C-identification.c: Define _nl_C_LC_IDENTIFICATION as hidden.
6878         * locale/C-measurement.c: Define _nl_C_LC_MEASUREMENT as hidden.
6879         * locale/C-messages.c: Define _nl_C_LC_MESSAGES as hidden.
6880         * locale/C-monetary.c: Define _nl_C_LC_MONETARY as hidden.
6881         * locale/C-name.c: Define _nl_C_LC_NAME as hidden.
6882         * locale/C-numeric.c: Define _nl_C_LC_NUMERIC as hidden.
6883         * locale/C-paper.c: Define _nl_C_LC_PAPER as hidden.
6884         * locale/C-telephone.c: Define _nl_C_LC_TELEPHONE as hidden.
6885         * locale/C-time.c: Define _nl_C_LC_TIME as hidden.
6886         * locale/C-ctype.c: Define _nl_C_LC_CTYPE_class,
6887         _nl_C_LC_CTYPE_class32, _nl_C_LC_CTYPE_toupper, _nl_C_LC_CTYPE_tolower,
6888         _nl_C_LC_CTYPE_class_upper, _nl_C_LC_CTYPE_class_lower,
6889         _nl_C_LC_CTYPE_class_alpha, _nl_C_LC_CTYPE_class_digit,
6890         _nl_C_LC_CTYPE_class_xdigit, _nl_C_LC_CTYPE_class_space,
6891         _nl_C_LC_CTYPE_class_print, _nl_C_LC_CTYPE_class_graph,
6892         _nl_C_LC_CTYPE_class_blank, _nl_C_LC_CTYPE_class_cntrl,
6893         _nl_C_LC_CTYPE_class_punct, _nl_C_LC_CTYPE_class_alnum,
6894         _nl_C_LC_CTYPE_map_toupper, _nl_C_LC_CTYPE_map_tolower,
6895         _nl_C_LC_CTYPE_width, and as hidden.
6896         * locale/findlocale.c: Declare _nl_C as hidden.
6897         * locale/newlocale.c: Likewise.
6898         * locale/setlocale.c: Define _nl_C as hidden.  Remove declaration of
6899         _nl_locale_file_list.
6900         * locale/xlocale.c: Declare _nl_C_LC_CTYPE_class,
6901         _nl_C_LC_CTYPE_toupper, and _nl_C_LC_CTYPE_tolower as hidden.
6902         Define _nl_C_locobj as hidden.
6904         * malloc/mtrace.c (_mtrace_file): Define as hidden.
6905         (_mtrace_line): Likewise.
6907         * include/time.h: Declare __mon_yday as hidden.
6908         * time/strptime.c [_LIBC] (__mon_yday): Remove declaration.
6910         * libio/libioP.h: Declare __libio_codecvt as hidden.
6911         * libio/fileops.c: Declare __libio_translit as hidden.
6912         * libio/iofwide.c: Define __libio_translit as hidden.
6914         * login/getutent_r.c: Define __libc_utmp_lock as hidden.
6915         * login/getutid_r.c: Declare __libc_utmp_lock as hidden.
6916         * login/getutline_r.c: Likewise.
6917         * login/utmpname.c: Likewise.
6919         * login/utmp-private.h: Declare __libc_utmp_file_functions,
6920         __libc_utmp_unknown_functions, __libc_utmp_jump_table, and
6921         __libc_utmp_file_name as hidden.
6923         * locale/setlocale.c (__libc_setlocale_lock): Define as hidden.
6924         * locale/duplocale.c (__libc_setlocale_lock): Declare as hidden.
6925         * locale/freelocale.c: Likewise.
6926         * locale/lc-time.c: Likewise.
6928         * sysdeps/unix/bsd/getpt.c (__libc_ptyname1): Define as hidden.
6929         (__libc_ptyname2): Likewise.
6930         * sysdeps/unix/sysv/linux/ptsname.c (__libc_ptyname1): Declare as
6931         hidden.
6932         (__libc_ptyname2): Likewise.
6934         * sysdeps/generic/sbrk.c: Declare __libc_multiple_libcs as hidden.
6935         * sysdeps/arm/init-first.c (__libc_multiple_libcs): Define as hidden.
6936         * sysdeps/generic/init-first.c: Likewise.
6937         * sysdeps/i386/init-first.c: Likewise.
6938         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
6939         * sysdeps/mach/hurd/mips/init-first.c: Likewise.
6940         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
6941         * sysdeps/sh/init-first.c: Likewise.
6942         * sysdeps/unix/sysv/aix/init-first.c: Likewise.
6943         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
6945         * stdio-common/itowa-digits.c (_itowa_lower_digits): Define as hidden.
6946         (_itowa_upper_digits): Likewise.
6948         * libio/stdio.c (_IO_stdin, _IO_stdout, _IO_stderr): Define as hidden.
6949         * libio/libio.h [_LIBC] (_IO_stdin, _IO_stdout, _IO_stderr): Declare
6950         as hidden.
6952         * libio/libioP.h: Declare _IO_file_jumps_mmap, _IO_wfile_jumps,
6953         _IO_wfile_jumps_mmap, _IO_proc_jumps, _IO_old_proc_jumps,
6954         _IO_str_jumps, _IO_wstr_jumps, _IO_file_jumps_internal,
6955         _IO_wfile_jumps_internal, and _IO_list_all_internal as hidden.
6957         * gmon/gmon.c (__bb_head): Define as hidden.
6958         * gmon/bb_exit_func.c (__bb_head): Declare as hidden.
6960         * argp/argp-parse.c (_argp_hang): Define as static.
6962         * include/libc-symbols.h (_INTVARDEF): Adjust for visibility
6963         handling in latest compilers.
6965         * inet/in6_addr.c (in6addr_any): Use INTVARDEF not INTDEF to
6966         define alias.
6967         * libio/fileops.c (_IO_file_jumps): Likewise.
6968         * libio/stdfiles.c (_IO_list_all): Likewise.
6969         * libio/wfileops.c (_IO_wfile_jumps): Likewise.
6971         * malloc/malloc.h: Move __libc_malloc_initialized declaration to
6972         include/malloc.h.
6973         * include/malloc.h: Add __libc_malloc_initialized declaration
6974         here.  Mark variable hidden.
6975         * malloc/malloc.c: Include <malloc.h> not "malloc.h".
6977         * elf/dl-open.c (__libc_argc): Declare as hidden.
6978         (__libc_argv): Likewise.
6979         * sysdeps/generic/wordexp.c (__libc_argc): Declare as hidden.
6980         (__libc_argv): Likewise.
6981         * sysdeps/mach/hurd/i386/init-first.c: Define __libc_argc and
6982         __libc_argv as hidden.
6983         * sysdeps/mach/hurd/mips/init-first.c: Likewise.
6984         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
6985         * sysdeps/unix/sysv/aix/init-first.c: Likewise.
6986         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
6988         * include/stdlib.h (__libc_drand48_data): Declare as hidden.
6989         * stdlib/drand48.c: Remove declaration of __libc_drand48_data here.
6990         * stdlib/erand48.c: Likewise.
6991         * stdlib/jrand48.c: Likewise.
6992         * stdlib/lcong48.c: Likewise.
6993         * stdlib/lrand48.c: Likewise.
6994         * stdlib/mrand48.c: Likewise.
6995         * stdlib/nrand48.c: Likewise.
6996         * stdlib/seed48.c: Likewise.
6997         * stdlib/srand48.c: Likewise.
6999         * stdio-common/_itoa.c (_itoa_base_table): Declare as hidden.
7000         (_itoa_lower_digits_internal): New declaration.
7001         (_itoa_upper_digits_internal): New declaration.
7002         (_itoa): Use INTUSE to acces _itoa_upper_digits and _itoa_lower_digits.
7003         * stdio-common.h (_itoa_lower_digits_internal): New declaration.
7004         (_itoa_upper_digits_internal): New declaration.
7005         (_itoa_word): Use INTUSE to acces _itoa_upper_digits and
7006         _itoa_lower_digits.
7007         * stdio-common/itoa-digits.c: Use INTVARDEF with _itoa_lower_digits.
7008         * stdio-common/itoa-udigits.c: Use INTVARDEF with _itoa_upper_digits.
7010         * elf/dl-minimal.c (_itoa): Declare _itoa_lower_digits as hidden.
7011         * elf/dl-reloc.c (_dl_reloc_bad_type): Likewise.
7013         * stdio-common/_itowa.c (_itoa_base_table): Declare as hidden.
7014         (_itowa_lower_digits): Likewise.
7015         (_itowa_upper_digits): Likewise.
7016         * stdio-common/_itowa.h (_itowa_lower_digits): Likewise.
7017         (_itowa_upper_digits): Likewise.
7019         * intl/plural-exp.h (attribute_hidden): Define as empty macro if
7020         not already defined.
7021         (GERMANIC_PLURAL): Declare as hidden.
7023         * posix/getopt.c (__getopt_initialized): Declare as hidden.
7024         (attribute_hidden): Define as empty macro if not already defined.
7026         * iconv/gconv_int.h (__gconv_path_elem): Declare hidden.
7027         (__gconv_max_path_elem_len): Likewise.
7028         (__gconv_path_envvar): Likewise.
7030         * math/Makefile (gmp-objs): Remove mp_clz_tab.
7031         * stdlib/Makefile (aux): Remove mp_clz_tab.
7032         * stdlib/mp_clz_tab.c: Removed.  Not needed anywhere.
7034         * stdlib/exit.h (__exit_funcs): Declare as hidden.
7036         * posix/bug-regex5.c (main): Use nl_langinfo instead of _NL_CURRENT.
7038         * locale/localeinfo.h: Add attribute_hidden to _nl_current_LC_XXX,
7039         _nl_category_names, _nl_category_name_sizes, _nl_current,
7040         _nl_C_name, _nl_POSIX_name, _nl_C_codeset, and _nl_C_LC_XXX.
7042         * intl/dcigettext.c (_nl_default_default_domain): Define as hidden.
7043         (_nl_current_default_domain): Likewise
7044         (_nl_state_lock): Likewise.
7045         * intl/textdomain.c (_nl_default_default_domain): Declare as hidden.
7046         (_nl_current_default_domain): Likewise
7047         (_nl_state_lock): Likewise.
7048         * intl/bindtextdom.c (_nl_state_lock): Likewise.
7050         * stdlib/fpioconst.h (__tens): Add attribute_hidden.
7051         (_fpioconst_pow10): Likewise.
7053         * include/time.h (_tmbuf): Add attribute_hidden.
7055         * time/tzset.c (tzstring_list): Define as static.
7057         * include/time.h: Add attribute_hidden to __tzname_cur_max and
7058         __use_tzfile declaration.
7060         * wcsmbs/wcsmbsload.h: Add attribute_hidden to __wcsmbs_gconv_fcts
7061         and __wcsmbs_last_locale declaration.
7063 2002-02-25  Paul Eggert  <eggert@twinsun.com>
7065         * timezone/Makefile (tzbases): Move systemv from here...
7066         (tzlinks): to here, since the entries in systemv were all changed
7067         from Zone to Link lines in tz-2001a.  Bug reported (and patch
7068         tested) by Peter Breitenlohner.
7070 2002-03-07  Jakub Jelinek  <jakub@redhat.com>
7072         * time/tst-posixtz.c (tests): Add new tests.
7073         (main): Test whether tzset() sets daylight properly.
7075 2002-03-06  Jakub Jelinek  <jakub@redhat.com>
7077         * time/tzset.c (tz_compute): Move __daylight, __tzname and
7078         __tzname_cur_max setting...
7079         (tzset_internal): ...here.
7081 2002-03-06  Jakub Jelinek  <jakub@redhat.com>
7083         * time/tzset.c (compute_change): Don't return any value.
7084         (tz_compute): Likewise.  Don't handle southern hemisphere here.
7085         (__tz_convert): But here.
7087 2002-03-11  Ulrich Drepper  <drepper@redhat.com>
7089         * manual/examples/mkfsock.c: Include <string.h> as well.
7090         Patch by Alain De Carolis <alaind@wseurope.com>.
7092 2002-03-06  Isamu Hasegawa  <isamu@yamato.ibm.com>
7094         * posix/regexec.c (re_match): Fix incorrect register sizes.
7095         (re_search): Likewise.
7097 2002-03-05  Isamu Hasegawa  <isamu@yamato.ibm.com>
7099         * posix/regcomp.c (regfree): Remove a disused condition.
7100         * posix/regex_internal.c (re_acquire_state): Likewise.
7101         (re_acquire_state_context): Likewise.
7102         (register_state): Remove a redundant malloc invocation.
7103         * posix/regex_internal.h: (re_state_table_entry): Simplify
7104         the structure.
7106 2002-03-05  Isamu Hasegawa  <isamu@yamato.ibm.com>
7108         * posix/regcomp.c (regcomp): Add __builtin_expect to error
7109         handling conditions.
7110         (regerror): Likewise.
7111         (regfree): Likewise.
7112         (re_compile_internal): Likewise.
7113         (init_dfa): Likewise.
7114         (init_word_char): Likewise.
7115         (create_initial_state): Likewise.
7116         (analyze): Likewise.
7117         (analyze_tree): Likewise.
7118         (duplicate_node): Likewise.
7119         (calc_eclosure): Likewise.
7120         (calc_eclosure_iter): Likewise.
7121         (parse): Likewise.
7122         (parse_reg_exp): Likewise.
7123         (parse_branch): Likewise.
7124         (parse_expression): Likewise.
7125         (parse_subexp): Likewise.
7126         (parse_dup_op): Likewise.
7127         (parse_bracket_exp): Likewise.
7128         (build_equiv_class): Likewise.
7129         (build_charclass): Likewise.
7130         (build_word_op): Likewise.
7131         (fetch_number): Likewise.
7132         (create_tree): Likewise.
7133         (duplicate_tree): Likewise.
7134         * posix/regex.c (BE): New macro.
7135         * posix/regexec.c (re_match): Add __builtin_expect to error
7136         handling conditions.
7137         (re_match_2): Likewise.
7138         (re_search): Likewise.
7139         (re_search_internal): Likewise.
7140         (check_matching): Likewise.
7141         (proceed_next_node): Likewise.
7142         (set_regs): Likewise.
7143         (sift_states_backward): Likewise.
7144         (add_epsilon_backreference): Likewise.
7145         (transit_state): Likewise.
7146         (transit_state_sb): Likewise.
7147         (transit_state_mb): Likewise.
7148         (transit_state_bkref): Likewise.
7149         (transit_state_bkref_loop): Likewise.
7150         (build_trtable): Likewise.
7151         (group_nodes_into_DFAstates): Likewise.
7152         (match_ctx_init): Likewise.
7153         (match_ctx_add_entry): Likewise.
7154         * posix/regex_internal.c (re_string_construct): Add __builtin_expect
7155         to error handling conditions.
7156         (re_string_construct_toupper): Likewise.
7157         (build_wcs_buffer): Likewise.
7158         (build_wcs_upper_buffer): Likewise.
7159         (build_upper_buffer): Likewise.
7160         (re_string_translate_buffer): Likewise.
7161         (re_node_set_alloc): Likewise.
7162         (re_node_set_init_1): Likewise.
7163         (re_node_set_init_2): Likewise.
7164         (re_node_set_init_copy): Likewise.
7165         (re_node_set_intersect): Likewise.
7166         (re_node_set_init_union): Likewise.
7167         (re_node_set_merge): Likewise.
7168         (re_node_set_insert): Likewise.
7169         (re_dfa_add_node): Likewise.
7170         (re_acquire_state): Likewise.
7171         (re_acquire_state_context): Likewise.
7172         (create_new_state_common): Likewise.
7173         (register_state): Likewise.
7174         (create_ci_new_state): Likewise.
7175         (create_cd_new_state): Likewise.
7176         (re_string_context_at): Remove redundant condition.
7178 2002-01-16  Roger Sayle  <roger@eyesopen.com>
7180         * sysdeps/i386/i686/strcmp.S: Avoid unconditional jump to a ret.
7182         * sysdeps/i386/i586/strlen.S: Fix typo in comment.
7184 2002-03-11  Jakub Jelinek  <jakub@redhat.com>
7186         * sysdeps/i386/elf/configure.in: Fix comment.
7188         * sysdeps/sparc/sparc64/configure.in: New file.
7189         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_load_address): Fix
7190         if .dynamic comes before .got.
7191         * config.h.in (SPARC64_DYNAMIC_BEFORE_GOT): Add.
7193         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF,
7194         HP_TIMING_ACCUM): Fix typos.
7196 2002-03-11  Ulrich Drepper  <drepper@redhat.com>
7198         * string/strfry.c: Add some more randomness to the seed.
7199         Patch by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
7201         * po/es.po: Update from translation team.
7202         * po/fr.po: Likewise.
7204         * stdio-common/tfformat.c (sprint_doubles): A test for %F format.
7206         * stdio-common/printf_fp.c (__printf_fp): Correct check for %F format
7207         when determining type of format.
7208         Patch by James Antill <james@anqd.org> [PR libc/2787].
7210 2002-03-04  Jakub Jelinek  <jakub@redhat.com>
7212         * sysdeps/unix/bsd/ftime.c (ftime): Don't return 1000 in millitm.
7214 2002-03-11  Roland McGrath  <roland@frob.com>
7216         * hurd/hurd/threadvar.h: Include <features.h> for __THROW macro.
7218         * Versions.def (libc): Add GLIBC_2.2.6.
7219         * hurd/Versions (libc: GLIBC_2.2.6): Add __errno_location.
7220         * sysdeps/mach/hurd/errnos.awk: In generated macro, use
7221         __errno_location instead of __hurd_errno_location, and don't inline it.
7222         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
7223         * hurd/errno.c: New file.
7224         * hurd/Makefile (routines): Add errno.
7226 2002-03-11  Ulrich Drepper  <drepper@redhat.com>
7228         * stdio-common/vfprintf.c (vfprintf): Avoid crashing for
7229         ridiculously large widths and precisions [PR libc/3026].
7231 2002-03-11  Andreas Jaeger  <aj@suse.de>
7233         * sysdeps/unix/sysv/linux/s390/ldd-rewrite.sed: Fix for bi-arch
7234         support.
7235         Patch by Susanne Oberhauser <froh@SuSE.de>.
7237 2002-03-11  Ulrich Drepper  <drepper@redhat.com>
7239         * inet/rexec.c (ahostbuf): Define as static.
7241         * wctype/wcfuncs.c (__ctype32_wctype): Declare as hidden.
7242         (__ctype32_wctrans): Likewise.
7243         * wcsmbs/wcwidth.h (__ctype32_width): Declare as hidden.
7244         * ctype/ctype-info.c (__ctype32_wctype): Add attribute_hidden.
7245         (__ctype32_wctrans): Likewise.
7246         (__ctype32_width): Likewise.
7248         * gmon/Makefile (elide-routines.os): Add bb_init_func and bb_exit_func.
7249         They were never exported anyway.
7251         * gmon/gmon.c (_gmonparam): Add attribute_hidden.
7252         * gmon/sys/gmon.h: Remove declaration of _gmonparam.  It wasn't
7253         exported.
7254         * include/sys/gmon.h: Declare _gmonparam.
7256         * sysdeps/unix/sysv/linux/i386/getdents64.c: Don't define compatibility
7257         symbols for getdents64.  They were never exported.
7259 2002-03-09  Roland McGrath  <roland@frob.com>
7261         * hurd/hurdsig.c (write_corefile): Fix swapped arguments to __dir_link.
7262         Reported by Jon Arney <jarney1@cox.net>.
7264 2002-02-23  Roland McGrath  <roland@frob.com>
7266         * hurd/hurd/threadvar.h (__hurd_threadvar_location): Add __THROW to
7267         declaration.
7268         (__hurd_errno_location): Function removed.
7270 2002-03-06  Andreas Jaeger  <aj@suse.de>
7272         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Add compatibility for
7273         32-bit.
7275 2002-03-04  Andreas Jaeger  <aj@suse.de>
7277         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: New file.
7279         * sysdeps/unix/sysv/linux/kernel-features.h: Add defines for
7280         x86-64.
7282         * sysdeps/unix/sysv/linux/x86_64/bits/socket.h: New file.
7284         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: New file.
7286         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: New file.
7288         * sysdeps/x86_64/bits/setjmp.h: New file.
7290         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: New file.
7292         * sysdeps/unix/sysv/linux/x86_64/bits/resource.h: New file.
7294         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Add compatibilty
7295         for x86.
7296         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Likewise.
7297         * sysdeps/unix/sysv/linux/x86_64/bits/types.h: Likewise.
7299 2002-02-28  Bo Thorsen  <bo@suse.de>
7301         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Merge with i386
7302         version.
7304 2002-03-03  Andreas Jaeger  <aj@suse.de>
7306         * sysdeps/x86_64/bits/wordsize.h: New file.
7308         * elf/nodlopenmod2.c: Provide prototype to avoid warning.
7309         * elf/tst-tlsmod1.c: Likewise.
7311         * posix/regcomp.c: Get regex.h from include dir for internal
7312         prototypes.
7314         * sysdeps/unix/sysv/linux/init-first.c: Move __init_misc prototype
7315         to libc-internal.h and include it.
7316         * include/libc-internal.h: Add __init_misc.
7318         * misc/init-misc.c: Include libc-internal.h for prototypes.
7320         * sysdeps/wordsize-32/divdi3.c: Add prototypes to avoid warnings.
7322         * misc/error.c [_LIBC]: Include libioP.h for prototype of
7323         _IO_putc_internal.
7325 2002-03-03  Ulrich Drepper  <drepper@redhat.com>
7327         * posix/regcomp.c: Compatibility changes to allow using the code
7328         outside glibc.
7330 2002-02-28  Hartvig Ekner <hartvige@mips.com>
7332         * sysdeps/mips/elf/start.S: Added initialization of GP (to _gp) if
7333         compiled non-PIC.
7335 2002-03-02  Ulrich Drepper  <drepper@redhat.com>
7337         * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Fix creation
7338         of .str elements in the returned data structure.
7340         * elf/elf.h: Add Alpha TLS bits.
7342 2002-02-28  Jakub Jelinek  <jakub@redhat.com>
7344         * sysdeps/unix/sysv/linux/nice.c: New file.
7346 2002-03-01  Ulrich Drepper  <drepper@redhat.com>
7348         * elf/Makefile (dl-routines): Add dl-origin.
7349         (elide-routines.os): Add dl-origin.
7350         * elf/Versions [ld] (GLIBC_PRIVATE): Add _dl_get_origin.
7351         * elf/dl-debug.c (_dl_debug_initialize): Add missing INTUSE around
7352         _dl_debug_state.
7353         * include/libc-symbols.c: Define attribute_hidden depending on
7354         HAVE_VISIBILITY_ATTRIBUTE.  Add definition of INTVARDEF.
7356         * elf/dl-deps.c: Use INTUSE with __libc_enable_secure.
7357         * elf/dl-load.c: Likewise.
7358         * elf/rtld.c: Likewise.
7359         * include/unistd.h: Declare __libc_enable_secure_internal.
7360         * sysdeps/generic/dl-sysdep.c: Use INTVARDEF with __libc_enable_secure.
7361         Use INTUSE with __libc_enable_secure.
7362         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
7364         * elf/dl-deps.c: Use INTUSE with _dl_out_of_memory.
7365         * elf/dl-error.c: Likewise,
7366         * sysdeps/generic/ldsodefs.h: Declare _dl_out_of_memory_internal.
7368         * elf/dl-dst.h [_RTLD_GLOBAL]: Define _dl_get_origin to use INTUSE.
7369         * sysdeps/generic/dl-origin.c: Undefine _dl_get_origin macro before
7370         function definition.  Use INTDEF with _dl_get_origin.
7371         * sysdeps/unix/sysv/linux/dl-origin.c: Likewise.
7373         * elf/dl-init.c: Use INTUSE with _dl_starting_up.
7374         * elf/rtld.c: Likewise.  Use INTVARDEF for _dl_starting_up.
7376         * elf/dl-profile.c: Use INTDEF for _dl_mcount.
7377         * elf/dl-runtime.c: Use INTUSE with _dl_mcount.
7378         * sysdeps/generic/ldsodefs.h: Declare _dl_mcount_internal.
7380         * elf/dl-conflict.c: Use rtld_progrname instead of _dl_argv[0].
7381         * elf/dl-deps.c: Likewise.
7382         * elf/dl-error.c: Likewise.
7383         * elf/dl-fini.c: Likewise.
7384         * elf/dl-init.c: Likewise.
7385         * elf/dl-load.c: Likewise.
7386         * elf/dl-lookup.c: Likewise.
7387         * elf/dl-reloc.c: Likewise.
7388         * elf/dl-version.c: Likewise.
7389         * elf/do-lookup.h: Likewise.
7390         * sysdeps/arm/dl-machine.h: Likewise.
7391         * sysdeps/cris/dl-machine.h: Likewise.
7392         * sysdeps/hppa/dl-machine.h: Likewise.
7393         * sysdeps/i386/dl-machine.h: Likewise.
7394         * sysdeps/m68k/dl-machine.h: Likewise.
7395         * sysdeps/powerpc/dl-machine.h: Likewise.
7396         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
7397         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
7398         * sysdeps/sh/dl-machine.h: Likewise.
7399         * sysdeps/sparc/sparc-32/dl-machine.h: Likewise.
7400         * sysdeps/sparc/sparc-64/dl-machine.h: Likewise.
7401         * sysdeps/x86_64/dl-machine.h: Likewise.
7402         * elf/rtld.c: Use INTDEF for _dl_argv.  Use rtld_progrname instead of
7403         _dl_argv[0].  Use INTUSE with _dl_argv.
7404         * sysdeps/generic/dl-sysdep.c: Use INTUSE with _dl_argv.
7405         * sysdeps/generic/ldsodefs.h: Define rtld_progname macro.
7407 2002-02-28  Jakub Jelinek  <jakub@redhat.com>
7409         * elf/rtld.c (_rtld_global): Remove .protected.
7410         (_rtld_local): Strong alias to _rtld_global.
7411         * elf/Makefile (CFLAGS-.os): Add -D_RTLD_LOCAL if compiling rtld
7412         only .os object.
7413         * sysdeps/generic/ldsodefs.h (GL): If SHARED and _RTLD_LOCAL, use
7414         _rtld_local instead of _rtld_global.
7415         (_rtld_local): Add hidden extern, possibly in .sdata section.
7416         * configure.in: Add tests for visibility attribute and .sdata.
7417         * config.h.in: Add HAVE_VISIBILITY_ATTRIBUTE and HAVE_SDATA_SECTION.
7418         * sysdeps/alpha/dl-machine.h: Use _rtld_local instead of _rtld_global.
7419         * sysdeps/arm/dl-machine.h: Likewise.
7420         * sysdeps/generic/ldsodefs.h: Likewise.
7421         * sysdeps/hppa/dl-machine.h: Likewise.
7422         * sysdeps/cris/dl-machine.h: Likewise.
7423         * sysdeps/i386/dl-machine.h: Likewise.
7424         * sysdeps/ia64/dl-machine.h: Likewise.
7425         * sysdeps/m68k/dl-machine.h: Likewise.
7426         * sysdeps/mips/mips64/dl-machine.h: Likewise.
7427         * sysdeps/mips/dl-machine.h: Likewise.
7428         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
7429         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
7430         * sysdeps/sh/dl-machine.h: Likewise.
7431         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
7432         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
7433         * sysdeps/x86_64/dl-machine.h: Likewise.
7435 2002-02-28  Ulrich Drepper  <drepper@redhat.com>
7437         * login/login.c (login): Always initialize ut_line field
7438         [PR libc/2991].
7440 2002-02-28  Jakub Jelinek  <jakub@redhat.com>
7442         * sysdeps/i386/Makefile (sysdep_routines): Add
7443         divdi3 in csu dir.
7444         (shared-only-routines): Likewise.
7445         * sysdeps/m68k/Makefile (sysdep_routines): Likewise.
7446         (shared-only-routines): Likewise.
7447         * sysdeps/s390/s390-32/Makefile (sysdep_routines): Likewise.
7448         (shared-only-routines): Likewise.
7449         * sysdeps/wordsize-32/divdi3.c: New file.
7451 2002-02-28  Ulrich Drepper  <drepper@redhat.com>
7453         * locale/iso-4217.def: Remove obsolete currencies for countries
7454         with Euro.
7456 2002-02-28  Isamu Hasegawa  <isamu@yamato.ibm.com>
7458         * posix/regcomp.c (regcomp): Remove a redundant condition.
7459         (init_word_char): Add a check on malloc failure.
7460         (create_initial_state): Likewise.
7461         (duplicate_node): Likewise.
7462         (calc_eclosure): Likewise.
7463         (calc_eclosure_iter): Likewise.
7464         (parse_expression): Likewise.
7465         (parse_bracket_exp): Remove unnecessary malloc invocations.
7466         (build_equiv_class): Likewise.
7467         (build_charclass): Likewise.
7468         * posix/regex_internal.c (re_node_set_intersect): Add a check
7469         on malloc failure.
7470         (re_node_set_add_intersect): Likewise.
7471         (re_node_set_merge): Likewise.
7472         (re_acquire_state): Likewise.
7473         (re_acquire_state_context): Likewise.
7474         (create_newstate_common): Likewise.
7475         (register_state): Likewise.
7476         (create_ci_newstate): Likewise.
7477         (create_cd_newstate): Likewise.
7478         * posix/regex_internal.h: Fix prototypes of re_acquire_state
7479         and re_acquire_state_context.
7480         * posix/regexec.c (regexec): Suit it to the error handling of
7481         re_search_internal.
7482         (re_match): Likewise.
7483         (re_search): Likewise.
7484         (re_search_internal): Add a check on malloc failure.
7485         (acquire_init_state_context): Likewise.
7486         (check_matching): Likewise.
7487         (proceed_next_node): Likewise.
7488         (set_regs): Likewise.
7489         (sift_states_backward): Likewise.
7490         (sift_states_iter_bkref): Likewise.
7491         (add_epsilon_backreference): Likewise.
7492         (transit_state): Likewise.
7493         (transit_state_sb): Likewise.
7494         (transit_state_mb): Likewise.
7495         (transit_state_bkref_loop): Likewise.
7496         (build_trtable): Likewise.
7497         (group_nodes_into_DFAstates): Likewise.
7498         (match_ctx_init): Likewise.
7499         (match_ctx_add_entry): Likewise.
7501 2002-02-27  Ulrich Drepper  <drepper@redhat.com>
7503         * elf/dl-load.c (_dl_map_object_from_fd): Always add SONAME to
7504         l_libname if profiling is enabled [PR libc/2916].
7506         * sysdeps/ia64/dl-tls.h: New file.
7508 2002-02-27  Jakub Jelinek  <jakub@redhat.com>
7510         * sysdeps/alpha/dl-machine.h (elf_machine_load_address, RTLD_START):
7511         Work around an Alpha gas bug.
7513 2002-02-27  Ulrich Drepper  <drepper@redhat.com>
7515         * catgets/open_catalog.c (__open_catalog): Fix typo in code which
7516         uses read to load the catalog.
7517         Patch by Andy Isaacson <adi@unlimitedscale.com> [PR libc/3011].
7519 2002-02-26  Ulrich Drepper  <drepper@redhat.com>
7521         * posix/Makefile (distribute): Add regcomp.c, regexec.c,
7522         regex_internal.c, and regex_internal.h.
7523         (CFLAGS-regex.c): Replace -DMBS_SUPPORT with -DRE_ENABLE_I18N.
7524         * posix/regex.c: Complete rewrite.
7525         * posix/regexec.c: New file.
7526         * posix/regcomp.c: New file.
7527         * posix/regex_internal.c: New file.
7528         * posix/regex_internal.h: New file.
7529         * posix/regex.h (RE_ICASE): New macro.
7530         Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
7532         * stdio-common/vfscanf.c (_IO_vfwscanf): Always use ungetc, never
7533         ungetwc.  It's a macro.
7534         * libio/tst-swscanf.c (do_test): Adjust for now fixed wscanf
7535         implementation.
7536         Reported by Jason Merrill <jason@redhat.com>.
7538 2002-02-25  Jakub Jelinek  <jakub@redhat.com>
7540         * libio/iofopen.c (__fopen_maybe_mmap): Set the initial
7541         position to fp->_offset if it is set.
7542         * stdio-common/Makefile (tests): Add tst-fdopen.
7543         * stdio-common/tst-fdopen.c: New test.
7545 2002-02-25  Jakub Jelinek  <jakub@redhat.com>
7547         * libio/fileops.c (_IO_file_xsgetn_mmap): Handle reading from backup.
7548         * stdio-common/tst-ungetc.c (main): Add another test.
7550 2002-02-25  Ulrich Drepper  <drepper@redhat.com>
7552         * assert/assert-perr.c: Use INTUSE to reference functions and variables
7553         inside libc itself.  Use INTDEF and INTDEF2 to define appropriate
7554         aliases.  Add prototypes for the new aliases.
7555         * assert/assert.c: Likewise.
7556         * include/libc-symbols.h: Likewise.
7557         * include/stdio.h: Likewise.
7558         * include/netinet/in.h: Likewise.
7559         * include/rpc/auth.h: Likewise.
7560         * include/rpc/auth_unix.h: Likewise.
7561         * include/rpc/key_prot.h: Likewise.
7562         * include/rpc/pmap_prot.h: Likewise.
7563         * include/rpc/pmap_rmt.h: Likewise.
7564         * include/rpc/rpc_msg.h: Likewise.
7565         * include/rpc/xdr.h: Likewise.
7566         * inet/gethstbyad_r.c: Likewise.
7567         * inet/gethstbynm2_r.c: Likewise.
7568         * inet/gethstbynm_r.c: Likewise.
7569         * inet/gethstent_r.c: Likewise.
7570         * inet/in6_addr.c: Likewise.
7571         * libio/__fpurge.c: Likewise.
7572         * libio/filedoalloc.c: Likewise.
7573         * libio/fileops.c: Likewise.
7574         * libio/ftello.c: Likewise.
7575         * libio/ftello64.c: Likewise.
7576         * libio/genops.c: Likewise.
7577         * libio/iofclose.c: Likewise.
7578         * libio/iofdopen.c: Likewise.
7579         * libio/iofflush.c: Likewise.
7580         * libio/iofflush_u.c: Likewise.
7581         * libio/iofgetpos.c: Likewise.
7582         * libio/iofgetpos64.c: Likewise.
7583         * libio/iofgets.c: Likewise.
7584         * libio/iofgets_u.c: Likewise.
7585         * libio/iofopen.c: Likewise.
7586         * libio/iofopncook.c: Likewise.
7587         * libio/iofputs.c: Likewise.
7588         * libio/iofread.c: Likewise.
7589         * libio/iofread_u.c: Likewise.
7590         * libio/iofsetpos.c: Likewise.
7591         * libio/iofsetpos64.c: Likewise.
7592         * libio/ioftell.c: Likewise.
7593         * libio/iofwrite.c: Likewise.
7594         * libio/iogetline.c: Likewise.
7595         * libio/iogets.c: Likewise.
7596         * libio/iogetwline.c: Likewise.
7597         * libio/iolibio.h: Likewise.
7598         * libio/iopadn.c: Likewise.
7599         * libio/iopopen.c: Likewise.
7600         * libio/ioseekoff.c: Likewise.
7601         * libio/ioseekpos.c: Likewise.
7602         * libio/iosetbuffer.c: Likewise.
7603         * libio/iosetvbuf.c: Likewise.
7604         * libio/ioungetc.c: Likewise.
7605         * libio/ioungetwc.c: Likewise.
7606         * libio/iovdprintf.c: Likewise.
7607         * libio/iovsprintf.c: Likewise.
7608         * libio/iovsscanf.c: Likewise.
7609         * libio/libioP.h: Likewise.
7610         * libio/memstream.c: Likewise.
7611         * libio/obprintf.c: Likewise.
7612         * libio/oldfileops.c: Likewise.
7613         * libio/oldiofclose.c: Likewise.
7614         * libio/oldiofdopen.c: Likewise.
7615         * libio/oldiofgetpos.c: Likewise.
7616         * libio/oldiofgetpos64.c: Likewise.
7617         * libio/oldiofopen.c: Likewise.
7618         * libio/oldiofsetpos.c: Likewise.
7619         * libio/oldiofsetpos64.c: Likewise.
7620         * libio/oldiopopen.c: Likewise.
7621         * libio/oldstdfiles.c: Likewise.
7622         * libio/putc.c: Likewise.
7623         * libio/setbuf.c: Likewise.
7624         * libio/setlinebuf.c: Likewise.
7625         * libio/stdfiles.c: Likewise.
7626         * libio/stdio.c: Likewise.
7627         * libio/strops.c: Likewise.
7628         * libio/vasprintf.c: Likewise.
7629         * libio/vscanf.c: Likewise.
7630         * libio/vsnprintf.c: Likewise.
7631         * libio/vswprintf.c: Likewise.
7632         * libio/wfiledoalloc.c: Likewise.
7633         * libio/wfileops.c: Likewise.
7634         * libio/wgenops.c: Likewise.
7635         * libio/wstrops.c: Likewise.
7636         * malloc/mtrace.c: Likewise.
7637         * misc/error.c: Likewise.
7638         * misc/syslog.c: Likewise.
7639         * nss/getXXbyYY_r.c: Likewise.
7640         * nss/getXXent_r.c: Likewise.
7641         * nss/hosts-lookup.c: Likewise.
7642         * stdio-common/getw.c
7643         * stdio-common/printf-prs.c: Likewise.
7644         * stdio-common/printf_fp.c: Likewise.
7645         * stdio-common/printf_size.c: Likewise.
7646         * stdio-common/putw.c: Likewise.
7647         * stdio-common/scanf.c: Likewise.
7648         * stdio-common/sprintf.c: Likewise.
7649         * stdio-common/tmpfile64.c: Likewise.
7650         * stdio-common/vfprintf.c: Likewise.
7651         * stdio-common/vfscanf.c: Likewise.
7652         * stdlib/strfmon.c: Likewise.
7653         * sunrpc/auth_des.c: Likewise.
7654         * sunrpc/auth_none.c: Likewise.
7655         * sunrpc/auth_unix.c: Likewise.
7656         * sunrpc/authdes_prot.c: Likewise.
7657         * sunrpc/authuxprot.c: Likewise.
7658         * sunrpc/clnt_perr.c: Likewise.
7659         * sunrpc/clnt_raw.c: Likewise.
7660         * sunrpc/clnt_tcp.c: Likewise.
7661         * sunrpc/clnt_udp.c: Likewise.
7662         * sunrpc/clnt_unix.c: Likewise.
7663         * sunrpc/key_call.c: Likewise.
7664         * sunrpc/key_prot.c: Likewise.
7665         * sunrpc/openchild.c: Likewise.
7666         * sunrpc/pm_getmaps.c: Likewise.
7667         * sunrpc/pm_getport.c: Likewise.
7668         * sunrpc/pmap_clnt.c: Likewise.
7669         * sunrpc/pmap_prot.c: Likewise.
7670         * sunrpc/pmap_prot2.c: Likewise.
7671         * sunrpc/pmap_rmt.c: Likewise.
7672         * sunrpc/rpc_cmsg.c: Likewise.
7673         * sunrpc/rpc_prot.c: Likewise.
7674         * sunrpc/svc_authux.c: Likewise.
7675         * sunrpc/svc_raw.c: Likewise.
7676         * sunrpc/svc_simple.c: Likewise.
7677         * sunrpc/svc_tcp.c: Likewise.
7678         * sunrpc/svc_udp.c: Likewise.
7679         * sunrpc/svc_unix.c: Likewise.
7680         * sunrpc/xdr.c: Likewise.
7681         * sunrpc/xdr_array.c: Likewise.
7682         * sunrpc/xdr_mem.c: Likewise.
7683         * sunrpc/xdr_rec.c: Likewise.
7684         * sunrpc/xdr_ref.c: Likewise.
7685         * sunrpc/xdr_stdio.c: Likewise.
7686         * sysdeps/generic/_strerror.c: Likewise.
7687         * sysdeps/generic/printf_fphex.c: Likewise.
7688         * sysdeps/generic/tmpfile.c: Likewise.
7689         * sysdeps/gnu/errlist.awk: Likewise.
7690         * sysdeps/gnu/errlist.c: Likewise.
7692         * libio/Makefile (routines): Remove iosprint.
7693         * libio/iosprintf.c: Removed
7696 2002-02-24  Ulrich Drepper  <drepper@redhat.com>
7698         * elf/dl-support.c (_dl_non_dynamic_init): Renamed from
7699         non_dynamic_init and exported now.
7700         * sysdeps/unix/sysv/linux/ldsodefs.h: Declare _dl_non_dynamic_init.
7701         * sysdeps/unix/sysv/linux/init-first.c: Call _dl_non_dynamic_init for
7702         !SHARED.
7703         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
7704         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
7705         * sysdeps/mach/hurd/mips/init-first.c: Likewise.
7707 2002-02-23  Ulrich Drepper  <drepper@redhat.com>
7709         * elf/dl-close.c (free_slotinfo): Check for end of list and return
7710         true in this case.
7712         * locale/iso-639.def: Add language codes for Walloon.
7714         * elf/dl-fini.c (_dl_fini): Print some final statistics on the
7715         total number of relocations performed.
7717         * elf/sprof.c (load_profdata): If do_test provide information as
7718         to why loading failed.
7719         * elf/dl-profile.c (_dl_start_profile): Initialize all of
7720         hist_hdr.dimen.
7722         * csu/set-init.c: Moved to...
7723         * sysdeps/mach/hurd/set-init.c: ...here.  New file.
7724         * csu/Makefile: Don't compile set-init.
7725         * sysdeps/mach/hurd/Makefile: Compile set-init for subdir csu.
7726         * sysdeps/mach/hurd/i386/init-first.c: Call __init_misc in addition
7727         to __libc_init.
7728         * sysdeps/mach/hurd/mips/init-first.c: Likewise.
7729         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
7730         * sysdeps/unix/sysv/linux/init-first.c: Call __init_misc instead of
7731         __libc_init.
7732         * misc/init-misc.c: Always export __init_misc.  Don't define hooks for
7733         __libc_subinit.
7735 2002-02-22  Ulrich Drepper  <drepper@redhat.com>
7737         * elf/Versions: Add _dl_allocate_tls and _dl_deallocate_tls.
7738         * elf/rtld.c (dl_main): Use _dl_allocate_tls with INTUSE.
7739         * sysdeps/generic/dl-tls.c: Add INTDEF for _dl_allocate_tls.
7740         (_dl_deallocate_tls): New function.
7741         * sysdeps/generic/ldsodefs.h: Declare _dl_allocate_tls_internal and
7742         _dl_deallocate_tls.
7744 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
7746         * libio/fileops.c (_IO_file_seekoff_mmap): Fix fseek SEEK_END.
7747         * stdio-common/tst-fseek.c (main): Add test for this.
7749 2002-02-19  Ulrich Drepper  <drepper@redhat.com.>
7751         * stdlib/Versions: Move __on_exit to GLIBC_PRIVATE.
7753 2002-02-19  Jakub Jelinek  <jakub@redhat.com>
7755         * libio/fileops.c (_IO_file_underflow_mmap): Cast to unsigned char
7756         pointer before dereferencing.
7758 2002-02-18  Roland McGrath  <roland@frob.com>
7760         * sysdeps/mach/hurd/times.c: Fix typo in last change.
7762         * sysdeps/mach/hurd/setpriority.c [POLICY_TIMESHARE_BASE_COUNT]:
7763         Use task_policy in place of task_priority.
7765         * sysdeps/generic/bits/mman.h
7766         (MS_ASYNC, MS_SYNC, MS_INVALIDATE): New macros.
7767         * sysdeps/mach/msync.c: New file.
7769         * sysdeps/mach/powerpc/syscall.S: New file.
7771         * mach/msg.c [MACH_MSG_OVERWRITE]
7772         (__mach_msg_trap, __mach_msg_overwrite): New functions.
7773         * mach/Versions (libc: GLIBC_2.0): Add mach_msg_overwrite and __ name.
7775         * sysdeps/mach/configure.in: Check for clock.defs to put into
7776         mach_interface_list.
7777         * sysdeps/mach/configure: Regenerated.
7779         * mach/Makefile (mach-machine): New variable, set from $(base-machine).
7780         ($(objpfx)mach-syscalls.mk): Use it in place of $(base-machine).
7781         ($(mach-syscalls:%=$(objpfx)%.S) static pattern rule):
7782         Use <mach/machine/syscall_sw.h> instead of <sysdep.h>.
7783         (mach-shortcuts): Add device_read_overwrite_request,
7784         device_read_overwrite, vm_read_overwrite, thread_switch.
7786         * configure.in (base_machine): Set to $machine by default.
7787         * configure: Regenerated.
7789         * sysdeps/mach/configure.in: Check for <mach/machine/ndr_def.h>
7790         or <machine/ndr_def.h> and add -DNDR_DEF_HEADER=... to DEFINES.
7791         * sysdeps/mach/configure: Regenerated.
7792         * mach/mach_init.c [NDR_DEF_HEADER]: #include it.
7794         * hurd/hurdfault.c (_hurdsig_fault_init): Add a cast.
7796         * hurd/hurd/signal.h: Include <setjmp.h> for `jmp_buf' decl.
7798         * mach/msgserver.c (__mach_msg_server_timeout) [! MACH_RCV_LARGE]:
7799         Double MAX_SIZE and don't retry on MACH_RCV_TOO_LARGE.
7801 2002-02-17  Roland McGrath  <roland@frob.com>
7803         * sysdeps/mach/hurd/times.c
7804         [NO_CREATION_TIME] (startup_time): New static variable.
7805         [NO_CREATION_TIME] (times_init): New static function in __libc_subinit.
7806         (__times) [NO_CREATION_TIME]: Use startup_time in lieu of task
7807         creation_time from task_basic_info.
7808         (__times): Use __gettimeofday instead of __host_get_time.
7810         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg) [! MACH_MSG_TYPE_BIT]:
7811         Use untyped Mach IPC message format.
7813         * hurd/catch-exc.c: Include <assert.h>, missing from last change.
7815         * hurd/Versions (libc: GLIBC_2.0): Add _S_catch_exception_raise_state,
7816         _S_catch_exception_raise_state_identity,
7817         _hurdsig_fault_catch_exception_raise_state,
7818         _hurdsig_fault_catch_exception_raise_state_identity.
7820         * mach/shortcut.awk: Don't apply the /^}$/ rule when $proto == "".
7822         * sysdeps/mach/getsysstats.c (__get_avphys_pages) [HOST_VM_INFO]: Use
7823         __host_info with HOST_VM_INFO flavor instead of __vm_statistics.
7825         * sysdeps/mach/hurd/getpriority.c [TASK_SCHED_TIMESHARE_INFO]: Find
7826         `base_priority' in PIP->timeshare_base_info instead of PIP->taskinfo.
7828         * sysdeps/mach/hurd/dl-sysdep.c [FMH]: Define for i386 only.
7829         (fmh, unfmh): Define these functions only #if FMH.  Otherwise define
7830         them as no-op macros.
7831         [FMH] (ELF_MACHINE_USER_ADDRESS_MASK): Redefine it to zero.
7832         (__mmap): Uncomment uses of ELF_MACHINE_USER_ADDRESS_MASK.
7834         * sysdeps/powerpc/dl-machine.h
7835         (ELF_MACHINE_USER_ADDRESS_MASK): New macro.
7837         * hurd/hurdselect.c (_hurd_select) [MACH_MSG_TRAILER_MINIMUM_SIZE]:
7838         Use untyped Mach IPC message format.
7840         * sysdeps/mach/hurd/ioctl.c (__ioctl) [! MACH_MSG_TYPE_BIT]:
7841         Handle untyped Mach IPC message formats.
7843         * hurd/catch-exc.c (_S_catch_exception_raise) [EXC_MASK_ALL]:
7844         Expect different argument conventions when this is defined.
7845         [EXC_MASK_ALL] (_S_catch_exception_raise_state): New stub function.
7846         [EXC_MASK_ALL] (_S_catch_exception_raise_state_identity): Likewise.
7847         * hurd/hurdfault.c: Likewise for _hurdsig_fault_catch_exception_*.
7848         [NDR_CHAR_ASCII] (mig_reply_header_t): #define as mig_reply_error_t
7849         for OSF Mach variant.
7850         (faulted): Use mig_reply_error_t for REPLY.
7851         (_hurdsig_fault_init) [EXC_MASK_ALL]: Use EXCEPTION_STATE_IDENTITY
7852         in __thread_set_exception_ports call.
7853         (_hurdsig_fault_init) [MACH_PORT_RECEIVE_STATUS]: Use
7854         __mach_port_set_attributes in place of __mach_port_set_qlimit.
7856         * sysdeps/mach/powerpc/sysdep.h (_MACH_MACHINE_ASM_H): Define this
7857         before include <sysdeps/mach/sysdep.h>, to inhibit <mach/machine/asm.h>
7858         on Darwin, which includes bogons.
7860         * sysdeps/powerpc/dl-machine.h (elf_machine_rela): Move local
7861         variable LOADBASE so it's not declared when it's not used.
7863 2002-02-16  Roland McGrath  <roland@frob.com>
7865         * sysdeps/mach/hurd/times.c (__times) [NO_CREATION_TIME]: Don't try
7866         to use BI.creation_time.
7868         * mach/Machrules (MIG): Add -x c to CPP value passed down.
7870         * config.h.in: Add #undef HAVE_HOST_PAGE_SIZE.
7871         * sysdeps/mach/configure.in: Check for host_page_size RPC to define it.
7872         * mach/mach_init.c (__mach_init) [HAVE_HOST_PAGE_SIZE]: Use
7873         host_page_size instead of vm_statistics.
7875         * sysdeps/mach/Makefile (mach-before-compile): Don't include
7876         mach_interface.h here, since not all variants use that name.
7878         * sysdeps/mach/configure.in: Add some checks for Mach headers
7879         to ensure a sane installation.
7880         (mach_interface_list): Define this variable by checking for .defs
7881         files found in various variants.
7882         * configure.in (mach_interface_list): AC_SUBST this.
7883         * config.make.in (mach-interface-list): New substituted variable.
7884         * mach/Makefile (user-interfaces): Define this using the value
7885         of $(mach-interface-list) instead of mach, mach4.
7886         Updated other references to mach_interface to use it as well.
7888         * sysdeps/mach/powerpc/machine-lock.h: Avoid multi-line strings.
7890         * mach/msgserver.c [NDR_CHAR_ASCII] (mig_reply_header_t): #define as
7891         mig_reply_error_t for OSF Mach variant.
7893         * mach/Makefile (routines): Remove bootprivport.
7894         * mach/bootprivport.c: File removed.  It has never been used.
7896         * mach/msg-destroy.c (__mach_msg_destroy) [MACH_MSG_PORT_DESCRIPTOR]:
7897         Grok the OSF flavor of message format.
7898         (mach_msg_destroy_port): For MAKE_SEND and
7899         MAKE_SEND_ONCE rights, create an destroy a right to ensure proper
7900         no-senders notification.
7902 2002-02-06  Roland McGrath  <roland@frob.com>
7904         * hurd/Versions (libc: GLIBC_2.0): Move cthread_fork, cthread_detach
7905         to here if 2.0 compatibility enabled ...
7906         (libc: GLIBC_2.1.3): ... from here.
7908 2002-02-15  Ulrich Drepper  <drepper@redhat.com>
7910         * elf/dl-open.c (dl_open_worker): Catch wrap-around of TLS
7911         generation counter.
7912         * elf/dl-close.c (_dl_close): Likewise.
7914 2002-02-14  Ulrich Drepper  <drepper@redhat.com>
7916         * elf/Makefile: Add rules to build and run tst-tls8.
7917         * elf/tst-tls8.c: New file.
7918         * elf/tst-tlsmod4.c: New file.
7920         * stdlib/test-a64l.c (tests): Add more test cases.
7922         * sunrpc/rtime.c (rtime): Change type of thetime to uint32_t.
7923         Reported by Walter Harms <WHarms@bfs.de>.
7925 2002-02-11  Jes Sorensen  <jes@trained-monkey.org>
7927         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Add sc_flag bit
7928         definitions for struct sigcontext.
7929         Suggested by David Mosberger-Tang.
7931 2002-02-13  Ulrich Drepper  <drepper@redhat.com>
7933         * elf/dl-close.c (remove_slotinfo): New function.  Handles everything
7934         for removing reference of module in slotinfo list.
7935         (_dl_close): Use remove_slotinfo.
7936         * sysdeps/generic/dl-tls.c: General pretty printing.
7937         (oom): Define only if SHARED.
7938         (_dl_next_tls_modid): Correct starting point for the case we assume
7939         there is a gap.  Add missing instruction grouping (doh!).  Correct
7940         tests for reaching maximum index.
7941         * elf/Makefile: Add rules to build and run tst-tls7.
7942         * elf/tst-tls7.c: New file.
7943         * elf/tst-tlsmod3.c: New file.
7945         * elf/tst-tlsmod1.c: Move #include "tls-macros.h" instead #ifdef
7946         USE_TLS.
7947         * elf/tst-tlsmod2.c: Likewise.
7949         * elf/dl-close.c (_dl_close): When closing an object using TLS
7950         either decrement dl_tls_max_dtv_idx or set dl_tls_dtv_gaps to
7951         true.  Increment dl_tls_generation only if we closed any TLS-using
7952         object.
7953         * elf/tst-tls6.c: New file.
7954         * elf/Makefile: Add rules to build and run tst-tls6.
7956         * po/da.po: Update from translation team.
7958         * locale/categories.def: Fix typo [PR libc/2948].
7959         * po/Makefile (BROKEN_LINGUAS): Works with current gettext
7960         [PR libc/2949].
7961         * locale/iso-4217.def: Update from official version [PR libc/2950].
7962         * glibcbug.in: Honor TMPDIR [PR libc/2951].
7963         * locale/programs/ld-collate.c (collate_finish): Bail out with a
7964         message if input is too confusion instead of using assert.
7965         (collate_read): Don't crash on unknown symbol [PR libc/2952].
7966         Patches by Alastair McKinstry <alastair@pdd.3com.com>.
7968         * elf/tst-tls1.c: Move #include "tls-macros.h" inside #ifdef USE_TLS.
7969         * elf/tst-tls2.c: Likewise.
7970         * elf/tst-tls3.c: Likewise.
7972 2002-02-13  Jakub Jelinek  <jakub@redhat.com>
7974         * elf/dl-close.c (free_slotinfo): Only define if TLS supported.
7976 2002-02-13  Ulrich Drepper  <drepper@redhat.com>
7978         * elf/dl-open.c (dl_open_worker): Only bump the generation counter
7979         if this is really necessary.
7981         * elf/dl-close.c (_dl_close): Implement freeing entries in the
7982         slotinfo array.
7983         (free_mem): Free memory for the slotinfo array if possible.
7985 2002-02-12  Andreas Schwab  <schwab@suse.de>
7987         * csu/gmon-start.c (__gmon_start__): Remove '&' from ENTRY_POINT.
7989 2002-02-12  Ulrich Drepper  <drepper@redhat.com>
7991         * sysdeps/generic/dl-tls.c (TLS_DTV_UNALLOCATED): Renamed from
7992         TLS_DTV_UNALLOCATE.
7993         (oom): New function.
7994         (_dl_next_tls_modid): Rewrite to handle dl_tls_dtv_slotinfo_list.
7995         (_dl_determine_tlsoffset): Likewise.
7996         (_dl_allocate_tls): Likewise.
7997         (__TLS_GET_ADDR): Define if not already defined.
7998         (_dl_tls_symaddr): New function.
7999         (allocate_and_init): New function.
8000         (__tls_get_addr): Actually implement handling of generation counter
8001         and deferred allocation.
8002         * sysdeps/generic/ldsodefs.h (_rtld_global): Remove _dl_initimage_list,
8003         add _dl_tls_dtv_slotinfo_list, _dl_tls_static_nelem, and
8004         _dl_tls_generation.
8005         Define TLS_SLOTINFO_SURPLUS and DTV_SURPLUS.
8006         Declare _dl_tls_symaddr.
8007         * sysdeps/i386/dl-tls.h: Disable __tls_get_addr handling unless
8008         SHARED.
8009         * include/link.h (struct link_map):  Remove l_tls_nextimage and
8010         l_tls_previmage.
8011         * elf/dl-sym.c (_dl_sym): After successful lookup call _dl_tls_symaddr
8012         instead of DL_SYMBOL_ADDRESS for STT_TLS symbols.
8013         (_dl_vsym): Likewise.
8014         * elf/rtld.c (_dl_start_final): Adjust initdtv initialization for new
8015         layout.
8016         (dl_main): Allow PT_TLS be present for empty segment.  Remove
8017         nextimage list handling.  Instead add all modules using TLS to
8018         dl_tls_dtv_slotinfo_list.
8019         * elf/dl-open.c (dl_open_worker): After successfully loading all
8020         objects add those with TLS to the dl_tls_dtv_slotinfo_list list.
8021         * elf/dl-load.c (_dl_map_object_from_fd): If PT_TLS entry is for an
8022         empty segment don't do anything.  Remove handling of initimage list.
8023         * elf/Versions [ld] (GLIBC_2.0): Add __libc_memalign.
8024         (GLIBC_PRIVATE): Add _dl_tls_symaddr.
8025         * elf/dl-minimal.c: Define __libc_memalign.
8026         * elf/dl-support.c: Remove _dl_initimage_list.  Add
8027         _dl_tls_dtv_slotinfo_list, _dl_tls_static_nelem, and
8028         _dl_tls_generation.
8029         * include/stdlib.h: Declare __libc_memalign.
8031         * elf/Makefile: Add rules to build and run tst-tls4 and tst-tls5.
8032         * elf/tst-tls4.c: New file.
8033         * elf/tst-tls5.c: New file.
8034         * elf/tst-tlsmod2.c: New file.
8036         * elf/tls-macros.h: asms using ___tls_get_addr destroy %ecx and %edx.
8038         * elf/tst-tlsmod1.c: Don't define variables unles USE_TLS.
8040         * elf/tst-tls1.c: Use test-skeleton.c.
8041         * elf/tst-tls2.c: Likewise.
8042         * elf/tst-tls3.c: Likewise.
8044         * elf/dl-conflict.c (RESOLVE_MAP): Return NULL not 0.
8046 2002-02-08  Daniel Jacobowitz  <drow@mvista.com>
8048         * sysdeps/mips/machine-gmon.h: Update MCOUNT for current GCC behavior.
8050 2002-02-10  Ulrich Drepper  <drepper@redhat.com>
8052         * elf/elf.h: Define R_386_TLS_GD and R_386_TLS_LDM.
8054         * elf/tst-tls3.c: New file.
8055         * elf/tst-tlsmod1.c: New file.
8056         * elf/Makefile: Add rules to build and run tst-tls3.
8058         * sysdeps/i386/dl-machine.h: Include <tls.h>.
8059         (elf_machine_type_class): Set ELF_RTYPE_CLASS_PLT also for the three
8060         TLS relocations.
8062         * elf/do-lookup.h (FCT): st_value can be zero for STT_TLS symbols.
8064         * po/fr.po: Update from translation team.
8066         * elf/tls-macros.h: Add alternative macros for use in PIC.
8068         * elf/dl-lookup.c: Include <tls.h>.
8069         * elf/do-lookup.h (FCT): Don't discard STT_TLS symbols.
8071         * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): More changes
8072         required by passing pointer to last element of the list.
8074         * elf/dl-load.c (_dl_map_object_from_fd): Move adjustment of
8075         l_tls_initimage to a place where it actually is performed.
8077         * sysdeps/generic/glob.c (glob): Explicitly set gl_pathc to zero
8078         after globfree() calls.
8080         * elf/dl-deps.c (struct openaux_args): Add open_mode element.
8081         (openaux): Pass open_mode as new last argument to _dl_map_object.
8082         (_dl_map_object_deps): Add new argument open_mode.  Initialize
8083         open_mode element of args variable with it.
8084         * elf/dl-open.c (dl_open_worker): Pass __RTLD_DLOPEN flag is set to
8085         _dl_map_object_deps.
8086         * elf/rtld.c (dl_main): Add zero as last parameter to
8087         _dl_map_object_deps call.
8088         * sysdeps/generic/ldsodefs.h: Adjust prototype of _dl_map_object_deps.
8089         * elf/nodlopen2.c: New file.
8090         * elf/nodlopenmod2.c: New file.
8091         * elf/Makefile: Add rules to build and run nodlopen2.
8093         * elf/tst-tls1.c: Move TLS helper macros to...
8094         * elf/tls-macros.h: ...here.  New file.
8095         * elf/tst-tls2.c: New file.
8096         * elf/Makefile (tests): Add tst-tls2.
8097         (distribute): Add tls-macros.h.
8099         * po/sv.po: Update from translation team.
8101         * elf/tst-tls1.c (main): Add complete set of tests.  Split
8102         architecture specific definitions from the actual test code.
8104         * po/tr.po: Update from translation team.
8106 2002-02-09  Ulrich Drepper  <drepper@redhat.com>
8108         * elf/Makefile (tests): Add tst-tls1.
8109         * elf/tst-tls1.c: New file.
8111         * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Don't handle
8112         alignment of TCB for now.
8114         * elf/rtld.c (dl_main): Use p_vaddr as address of TLS
8115         initialization image for the application itself.
8117         * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Correctly terminate
8118         loop to initialize TLS block.
8120 2002-02-08  Richard Henderson  <rth@redhat.com>
8122         * sysdeps/generic/ldsodefs.h (struct rtld_global): Also include
8123         _dl_cpuclock_offset if HP_SMALL_TIMING_AVAIL.
8125         * sysdeps/alpha/elf/initfini.c: Use \n\ for multiline string.
8127 2002-02-09  Jakub Jelinek  <jakub@redhat.com>
8129         * sysdeps/generic/dl-environ.c (unsetenv): Clear cnt before use.
8131 2002-02-08  Ulrich Drepper  <drepper@redhat.com>
8133         * po/ca.po: Update from translation team.
8134         * po/sk.po: Likewise.
8136         * elf/rtld.c (_dl_start_final): Install DTV explicitly.
8137         (dl_main): Move dtv/static TLS handling before relocation.
8138         Unconditionally call _dl_tlsoffset.  Call _dl_allocate_tls and
8139         TLS_INIT_TP to allocate and install the dtv/static TLS block.
8140         * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): If no object
8141         so far uses TLS initialize GL(dl_tls_static_size) and
8142         GL(dl_tls_static_align) to account for the TCB.
8143         (_dl_allocate_tls): New function.
8144         * sysdeps/generic/ldsodefs.h (rtld_global): Add
8145         _dl_initial_dtv_malloced.
8147         * configure.in: Test for __builtin_memset more realistically.
8149         * csu/version.c (banner): If TLS support is available say so.
8151 2002-02-04  H.J. Lu  <hjl@gnu.org>
8153         * sysdeps/mips/dl-machine.h (elf_machine_matches_host): Use
8154         __attribute_used__.
8155         (__dl_runtime_resolve): Likewise.
8157         * sysdeps/mips/machine-gmon.h (_MCOUNT_DECL): Make it a real
8158         declaration.
8160 2001-11-15  H.J. Lu  <hjl@gnu.org>
8162         * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Don't include
8163         <signal.h>, <sys/ucontext.h> nor <asm/elf.h>. Updated for gdb.
8165         * sysdeps/unix/sysv/linux/mips/sys/user.h: New file.
8167 2002-02-07  H.J. Lu  <hjl@gnu.org>
8169         * sysdeps/mips/atomicity.h (compare_and_swap): Remove
8170         ".set noreorder".
8171         * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set):
8172         Likewise.
8174 2002-02-07  Ulrich Drepper  <drepper@redhat.com>
8176         * sysdeps/unix/sysv/linux/bits/stat.h: Undo last patch.
8178         * sysdeps/i386/dl-tls.h (__tls_get_addr): Call
8179         ___tls_get_addr_internal.
8180         (___tls_get_addr_internal): Define as alias for ___tls_get_addr.
8182         * po/ko.po: Update from translation team.
8184 2002-02-07  Jakub Jelinek  <jakub@redhat.com>
8186         * sysdeps/unix/sysv/linux/bits/stat.h (struct stat): Remove packed
8187         attribute, change __pad{1,2} type to unsigned int.
8188         (struct stat64): Remove packed attribute.
8190 2002-02-07  Ulrich Drepper  <drepper@redhat.com>
8192         * sysdeps/i386/dl-tls.h: No need for #ifdef USE_TLS.
8194 2002-02-07  Andreas Schwab  <schwab@suse.de>
8196         * configure.in: Fix check for -zcombreloc.
8198 2002-02-06  H.J. Lu  <hjl@gnu.org>
8200         * config.h.in (HAVE_BUILTIN_MEMSET): New macro.
8201         * configure.in: Check if __builtin_memset really works.
8202         * elf/rtld.c (_dl_start): Check HAVE_BUILTIN_MEMSET instead of
8203         __GNUC_PREREQ (2, 96) before using __builtin_memset.
8205 2002-02-06  Jakub Jelinek  <jakub@redhat.com>
8207         * io/bug-ftw3.c (main): Don't try the test if root.
8209 2002-02-06  Martin Schwidefsky  <schwidefsky@de.ibm.com>
8211         * sysdeps/unix/sysv/linux/s390/brk.c (__brk): Correct inline assembly
8212         constraints.
8213         * sysdeps/unix/sysv/linux/s390/s390-32/bits/resource.h (RLIMIT_LOCKS):
8214         Add RLIMIT_LOCKS and adjust RLIMIT_NLIMITS.
8215         * sysdeps/unix/sysv/linux/s390/s390-64/bits/resource.h (RLIMIT_LOCKS):
8216         Likewise.
8217         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S (clone): Make clone
8218         a weak alias for __clone.
8219         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S (clone): Likewise.
8220         * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h: Fix typo.
8221         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add framestate.
8222         * sysdeps/unix/sysv/linux/s390/s390-64/Versions: New file.
8223         * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S (__mmap64): Make __mmap
8224         a weak alias for __mmap64.
8226 2002-02-05  H.J. Lu  <hjl@gnu.org>
8228         * sysdeps/mips/atomicity.h (exchange_and_add): Not use branch likely.
8229         (atomic_add): Likewise.
8230         (compare_and_swap): Likewise.
8231         * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Likewise.
8233 2002-02-07  Ulrich Drepper  <drepper@redhat.com>
8235         * sysdeps/generic/dl-tls.c: Don't read TLS header if TLS is not needed.
8237         * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Account for
8238         alignment of the TCB and store total size and alignment of static
8239         TLS block in _dl_tls_static_size and _dl_tls_static_align.
8240         tls_index is a typedef.
8241         * sysdeps/generic/ldsodefs.h: Declare _dl_tls_static_size and
8242         _dl_tls_static_align.
8243         * sysdeps/i386/dl-tls.h: tls_index is a typedef.
8244         * elf/dl-support.c: Define _dl_tls_static_size and
8245         _dl_tls_static_align.
8247 2002-02-06  Ulrich Drepper  <drepper@redhat.com>
8249         * configure.in: Add --without-tls option.
8250         * sysdeps/i386/elf/configure.in: Don't check for TLS support if
8251         --without-tls is given.
8253         * sysdeps/generic/dl-tls.c: Include <tls.h>.
8255         * sysdeps/i386/dl-tls.h: Don't define anything if !USE_TLS.
8257 2002-02-06  Roland McGrath  <roland@frob.com>
8259         * malloc/hooks.c [! HAVE_MREMAP]: Conditionalize unused decls.
8260         * malloc/malloc.c [! HAVE_MREMAP]: Likewise.
8262         * scripts/versions.awk: Improve error message for missing version.
8263         Each version inherits from the last one only if they have the same
8264         nonnumeric prefix, i.e. GLIBC_x.y and GLIBC_x.z or FOO_x and FOO_y
8265         but not GLIBC_x and FOO_y.
8267         * scripts/firstversions.awk: Handle libraries that don't have each
8268         particular version named in the third column of shlib-versions.
8270         * scripts/firstversions.awk: Don't mess with GLIBC_PRIVATE.
8272 2002-02-06  Ulrich Drepper  <drepper@redhat.com>
8274         * Versions.def [ld]: Add GLIBC_2.3.
8275         * elf/Versions [ld]: Add __tls_get_addr to GLIBC_2.3.
8276         * elf/Makefile (dl-routines): Add dl-tls.
8277         (distribute): Add dl-tls.h.
8278         * sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
8279         _dl_tls_module_cnt, add _dl_tls_max_dtv_idx and _dl_tls_dtv_gaps.
8280         Add prototypes for _dl_next_tls_modid and _dl_determine_tlsoffset.
8281         * elf/dl-load.c (_dl_map_object_from_fd): Store alignment requirement
8282         along with the other info in the link map.  Change queueing of init
8283         images for double linked list.  Use _dl_next_tls_modid to compute
8284         l_tls_modid.
8285         * elf/rtld.c (_dl_start_final): Store alignment requirement
8286         along with the other info in rtld map and executable map.
8287         (dl_main): Add ld.so to the init image list if necessary.  Compute
8288         final module ID with _dl_next_tls_modid.
8289         * include/link.h (struct link_map): Add l_tls_previmage and
8290         l_tls_align.
8291         * eld/dl-support.c: Define _dl_tls_max_dtv_idx and _dl_tls_dtv_gaps.
8292         * sysdeps/i386/elf/Versions: New file.
8293         * sysdeps/generic/dl-tls.c: New file.
8294         * sysdeps/generic/dl-tls.h: New file.
8295         * sysdeps/i386/dl-tls.h: New file.
8297 2002-02-06  Roland McGrath  <roland@frob.com>
8299         * sysdeps/unix/sysv/linux/netinet/ip.h: Moved to ...
8300         * sysdeps/generic/netinet/ip.h: ... here, replacing old file.
8302 2002-01-05  Roland McGrath  <roland@frob.com>
8304         * sysdeps/mach/configure.in: New file.
8305         * sysdeps/mach/configure: New generated file.
8307         * mach/Makefile (user-interfaces): Remove default_pager_helper.
8308         It has never been used by anything.
8310 2002-02-06  H.J. Lu  <hjl@gnu.org>
8312         * sysdeps/mips/elf/ldsodefs.h: Make sure the right <ldsodefs.h>
8313         is included.
8315 2002-02-06  Ulrich Drepper  <drepper@redhat.com>
8317         * sysdeps/unix/sysv/linux/bits/stat.h (struct stat): Add
8318         attribute((packed)) to counter stupid people misusing gcc options.
8319         (struct stat64): Likewise.
8321 2002-02-05  Ulrich Drepper  <drepper@redhat.com>
8323         * elf/rtld.c (dl_main): Correct indentation.  Use bool as type for
8324         the variables which are used as booleans.
8326 2002-02-06  Andreas Jaeger  <aj@suse.de>
8328         * include/libc-symbols.h (INTUSE): Renamed from INT.
8329         * elf/dl-deps.c: Change users.
8330         * sysdeps/generic/dl-sysdep.c: Likewise.
8331         * sysdeps/generic/dl-cache.c: Likewise.
8332         * elf/dl-reloc.c: Likewise.
8333         * elf/rtld.c: Likewise.
8334         * elf/dl-version.c: Likewise.
8335         * elf/dl-load.c: Likewise.
8336         * elf/dl-dst.h: Likewise.
8337         * elf/dl-init.c: Likewise.
8338         * elf/dl-error.c: Likewise.
8339         * elf/dl-fini.c: Likewise.
8340         * elf/dl-runtime.c: Likewise.
8341         * elf/do-lookup.h: Likewise.
8343         * stdio-common/_itoa.h: Undefine SPECIAL to avoid duplicate
8344         definition.
8345         * stdio-common/_itowa.h: Likewise.
8347 2002-02-05  Ulrich Drepper  <drepper@redhat.com>
8349         * elf/dl-minimal.c: Define _itoa_lower_digits.
8351         * elf/dynamic-link.h (elf_get_dynamic_info): ld.so can have
8352         DT_FLAGS set.
8354         * elf/dl-load.c (_dl_map_object_from_fd): Prevent dynamically
8355         loading modules with the DF_STATIC_TLS flag set.
8356         * elf/dynamic-link.h (elf_get_dynamic_info): Initialize l_flags
8357         element.
8358         * include/link.h (struct link_map): Add l_flags field.
8359         * elf/elf.h (DF_STATIC_TLS): New definition.
8361         * dlfcn/Makefile: Add rules to build and run bug-dlopen1.
8362         * dlfcn/bug-dlopen1.c: New file.  By Bruno Haible.
8364         * elf/rtld.c (process_dl_debug): Correct printing help message.
8365         * elf/dl-misc.c (_dl_debug_vdprintf): Implement precision handling
8366         for %s.
8368         * inet/getnetgrent_r.c (innetgr): Add int* parameter to getfct
8369         definition and pass &errno in use of this variable.
8370         Reported by Simon Wilkinson <simon@sxw.org.uk> [PR libc/2911].
8372 2002-02-04  Andreas Schwab  <schwab@suse.de>
8374         * locale/programs/localedef.h (WITH_CUR_LOCALE): Define.
8375         * locale/programs/charmap-dir.c: Wrap calls that output messages
8376         with WITH_CUR_LOCALE.  Include "localedef.h" first.
8377         * locale/programs/charmap.c: Likewise.
8378         * locale/programs/ld-address.c: Likewise.
8379         * locale/programs/ld-collate.c: Likewise.
8380         * locale/programs/ld-ctype.c: Likewise.
8381         * locale/programs/ld-identification.c: Likewise.
8382         * locale/programs/ld-measurement.c: Likewise.
8383         * locale/programs/ld-messages.c: Likewise.
8384         * locale/programs/ld-monetary.c: Likewise.
8385         * locale/programs/ld-name.c: Likewise.
8386         * locale/programs/ld-numeric.c: Likewise.
8387         * locale/programs/ld-paper.c: Likewise.
8388         * locale/programs/ld-telephone.c: Likewise.
8389         * locale/programs/ld-time.c: Likewise.
8390         * locale/programs/linereader.c: Likewise.
8391         * locale/programs/linereader.h: Likewise.
8392         * locale/programs/localedef.c: Likewise.
8393         * locale/programs/locfile.c: Likewise.
8394         * locale/programs/repertoire.c: Likewise.
8396 2002-02-05  Ulrich Drepper  <drepper@redhat.com>
8398         * elf/rtld.c (_dl_start_final): Determine load address to locate
8399         ehdr with GL(dl_rtld_map).l_map_start.
8401         * po/ca.po: Update from translation team.
8403         * elf/rtld.c (dl_main): Read PT_TLS entry of the executable.
8404         * elf/dl-load.c (_dl_map_object_from_fd): Handle PT_TLS program
8405         header entry.
8406         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
8407         _dl_tls_module_cnt.
8408         * elf/dl-support.c: Define _dl_initimage_list and _dl_tls_module_cnt.
8410 2002-02-04  Ulrich Drepper  <drepper@redhat.com>
8412         * elf/rtld.c (_dl_start): Fill TLS values in link map for rtld.
8413         * include/link.h (struct link_map): Add various members for TLS
8414         information.
8415         * sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
8416         _rtld_tlsoffset, add _dl_initimage_list.
8417         * sysdeps/i386/dl-lookupcfg.h: New file.
8418         * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement missing
8419         TLS relocation.  When using TLS we now use RESOLVE_MAP.
8420         (elf_machine_rela): Use RESOLVE_MAP instead of RESOLVE_MAP if TLS
8421         is used.
8423         * sysdeps/generic/dl-cache.c (_dl_cache_libcmp): Mark as possibly
8424         unused.
8426         * elf/rtld.c (_dl_start_final): Allocate TLS and initialize
8427         thread-pointer as soon as possible.
8428         * sysdeps/generic/ldsodefs.h: Include <tls.h>.  Define first TLS
8429         elements in rtld_global.
8430         * sysdeps/generic/tls.h: New file.
8431         * elf/Makefile (distribute): Add tls.h.
8432         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add support for TLS
8433         relocations.  Not complete yet.
8435         * resolv/resolv.h: Allow user to define __need_res_state and only
8436         define __res_start structure then.
8437         * include/resolv.h: Only declare functions if _RESOLV_H_ is defined.
8439         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Move
8440         dl_cpuclock_offset initialization to _dl_start_final.
8441         (_dl_show_auxv): Avoid unnecessary sign extension.
8442         * elf/rtld.c (_dl_start_final): Initialize dl_cpuclock_offset.
8444 2002-02-03  Ulrich Drepper  <drepper@redhat.com>
8446         * config.h.in: Add HAVE_TLS_SUPPORT.
8447         * sysdeps/i386/elf/configure.in: New file.
8449 2002-02-03  Andreas Schwab  <schwab@suse.de>
8451         * sysdeps/posix/readv.c: Use ssize_t for bytes_read.
8452         * sysdeps/posix/writev.c: Use ssize_t for bytes_written.  Fix comment.
8454 2002-02-03  Thorsten Kukuk  <kukuk@suse.de>
8456         * sysdeps/posix/writev.c: Check for ssize_t overflow, don't use
8457         alloca if the memory reqirements are too high.
8459 2002-02-03  Ulrich Drepper  <drepper@redhat.com>
8461         * elf/dl-load.c (decompose_rpath): Avoid using strstr.
8462         * elf/dl-minimal.c (_strerror_r): Use _itoa instead of _itoa_word since
8463         the former is available anyway and speed isn't important here.
8464         * elf/dl-misc.c (_dl_debug_vdprintf): Likewise.
8465         * elf/dl-version.c (match_symbol): Likewise.
8466         (_dl_check_map_versions): Likewise.
8467         * elf/rtld.c (process_envvars): Likewise.
8468         (print_statistics): Likewise.
8469         * sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Likewise.
8470         * elf/dl-minimal.c (_itoa): Always define it.  Make it work for all
8471         bases.  Add assert to catch uses of unimplemented features.
8472         (__strsep): Add assert to catch uses of unimplemented features.
8473         * elf/dl-object.c (_dl_new_object): Don't use rawmemchr.  Use strchr
8474         and avoid inline optimization.
8475         * elf/rtld.c (process_envvars): Likewise.
8476         * elf/dl-open.c: Don't include <stdio-common/_itoa.h>.
8477         * elf/dl-profile.c (_dl_start_profile): Help compiler to avoid ffs.
8478         * elf/rtld.c (dl_main): Avoid strsep inline optimization.
8480 2002-02-02  Ulrich Drepper  <drepper@redhat.com>
8482         * stdio-common/_itoa.h: Minor simplifications of the code.
8483         * stdio-common/_itoa.c: Likewise.
8485         * elf/dl-reloc.c (_dl_relocate_object): Use _dl_debug_printf
8486         instead of _dl_printf for debugging info output.
8488         * manual/examples/mkfsock.c (make_named_socket): Make sure name is
8489         always NUL-terminated.  Patch by Chris D. Sloan <cds@cs.hmc.edu>.
8491 2002-02-01  H.J. Lu  <hjl@gnu.org>
8493         * sysdeps/mips/atomicity.h (exchange_and_add): Use branch likely.
8494         (atomic_add): Likewise.
8495         (compare_and_swap): Return 0 only when failed to compare. Use
8496         branch likely.
8498         * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Use
8499         branch likely.
8501 2002-02-03  kaz Kojima  <kkojima@rr.iij4u.or.jp>
8503         * sysdeps/sh/dl-machine.h (elf_machine_rela): Fix a typo.
8505 2002-02-02  Ulrich Drepper  <drepper@redhat.com>
8507         * elf/dl-minimal.c (__strsep): New minimal implementation.
8509 2002-02-02  Paul Eggert  <eggert@twinsun.com>
8511         * src/mktime.c [defined DEBUG && STDC_HEADERS]: Include <string.h>.
8512         (__mktime_internal): If no tm_isdst is requested, prefer solutions
8513         with tm_isdst > 0 when the requested time falls within a
8514         spring-forward gap [PR libc/2894].
8516 2002-02-03  Andreas Schwab  <schwab@suse.de>
8518         * stdio-common/tst-rndseek.c: Increase timeout.
8520 2002-02-02  Ulrich Drepper  <drepper@redhat.com>
8522         Change ld.so to not use functions which are exported.  One cannot
8523         interpose them anyway.  Use INT() to mark uses, INTDEF() to mark
8524         definitions.
8525         * include/libc-symbols.h: Define INT and INTDEF.
8526         * sysdeps/generic/ldsodefs.h: Declare _dl_debug_printf_internal,
8527         _dl_signal_error_internal, _dl_map_object_internal,
8528         _dl_map_object_deps_internal, _dl_lookup_symbol_internal,
8529         _dl_lookup_versioned_symbol_internal,
8530         _dl_relocate_object_internal, _dl_debug_state_internal,
8531         _dl_start_profile_internal, and _dl_unload_cache_internal.
8532         * include/dlfcn.h: Declare _dl_catch_error_internal.
8533         * elf/rtld.c: Use INT for calls to any of the *_internal functions
8534         above.  Add INTDEF to function definitions.
8535         * elf/dl-debug.c: Likewise.
8536         * elf/dl-deps.c: Likewise.
8537         * elf/dl-dst.h: Likewise.
8538         * elf/dl-error.c: Likewise.
8539         * elf/dl-fini.c: Likewise.
8540         * elf/dl-init.c: Likewise.
8541         * elf/dl-load.c: Likewise.
8542         * elf/dl-lookup.c: Likewise.
8543         * elf/dl-misc.c: Likewise.
8544         * elf/dl-open.c: Likewise.
8545         * elf/dl-profile.c: Likewise.
8546         * elf/dl-reloc.c: Likewise.
8547         * elf/dl-runtime.c: Likewise.
8548         * elf/dl-version.c: Likewise.
8549         * elf/do-lookup.h: Likewise.
8550         * sysdeps/generic/dl-cache.c: Likewise.
8551         * sysdeps/generic/dl-sysdep.c: Likewise.
8552         * sysdeps/alpha/dl-machine.h (RTLD_START): Call _dl_init_internal
8553         instead of _dl_init.
8554         * sysdeps/arm/dl-machine.h: Likewise.
8555         * sysdeps/cris/dl-machine.h: Likewise.
8556         * sysdeps/hppa/dl-machine.h: Likewise.
8557         * sysdeps/i386/dl-machine.h: Likewise.
8558         * sysdeps/ia64/dl-machine.h: Likewise.
8559         * sysdeps/m68k/dl-machine.h: Likewise.
8560         * sysdeps/mips/dl-machine.h: Likewise.
8561         * sysdeps/mips/mips64/dl-machine.h: Likewise.
8562         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
8563         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
8564         * sysdeps/sh/dl-machine.h: Likewise.
8565         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
8566         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
8567         * sysdeps/x86_64/dl-machine.h: Likewise.
8568         * sysdeps/powerpc/dl-start.S (_dl_start_user): Likewise.
8570         * elf/Versions: Don't export _dl_check_all_versions, _dl_sysdep_start,
8571         and _dl_debug_initialize.
8573         * elf/dl-object.c (_dl_new_object): Avoid using strrchr.  We have
8574         more information.
8575         * elf/rtld.c (dl_main): Avoid strrchr.
8576         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use the
8577         result of readlink.  Search from the back for '/'.
8579         * elf/dl-profile.c (_dl_start_profile): Help the compiler to avoid
8580         strncpy if possible.
8582         * sysdeps/generic/dl-environ.c (unsetenv): Optimize.  Don't use
8583         strncmp.
8584         * elf/dl-load.c (is_dst): Optimize.  Don't call strncmp twice.
8585         * elf/rtld.c (process_dl_debug): Optimize. Avoid calls to strncmp,
8586         strspn, and strcspn.
8587         (process_envvars): Don't use strcspn.
8589         * elf/dl-load.c (_dl_dst_count): Fix possible endless loop.
8590         (_dl_dst_substitute): Likewise.
8592 2002-02-01  Ulrich Drepper  <drepper@redhat.com>
8594         * elf/do-rel.h (elf_dynamic_do_rel): Help the compiler recognize
8595         code which is never used when relocating ld.so itself.
8597         * elf/dynamic-link.h (elf_get_dynamic_info): Optimize a bit for
8598         starting ld.so itself.  Move l_addr variable initialization closer
8599         to use.
8600         (_ELF_DYNAMIC_DO_RELOC): Help the compiler optimize a bit.
8602 2002-02-01  Jakub Jelinek  <jakub@redhat.com>
8604         * Versions.def (libc): Add GLIBC_PRIVATE.
8605         (libdb, libnss_db, libdb1): Remove.
8606         (libnss_compat, libnss_dns, libnss_files, libnss_hesiod, libnss_nis,
8607         libnss_nisplus): Move all symbols to GLIBC_PRIVATE.
8608         (libpthread): Add GLIBC_PRIVATE.
8609         (libresolv): Likewise, remove GLIBC_2.1.
8610         (ld): Add GLIBC_PRIVATE, remove GLIBC_2.1.1, GLIBC_2.2, GLIBC_2.2.1,
8611         GLIBC_2.2.3, GLIBC_2.3.
8612         * catgets/Versions (__open_catalog): Move to GLIBC_PRIVATE.
8613         * elf/Versions (_dl_open, _dl_close, _dl_addr, _dl_init_first,
8614         _dl_sym, _dl_vsym): Likewise.
8615         (__libc_enable_secure, __libc_stack_end, _dl_argv, _dl_catch_error,
8616         _dl_check_all_versions, _dl_check_map_versions, _dl_debug_initialize,
8617         _dl_debug_printf, _dl_debug_state, _dl_dst_count, _dl_dst_substitute,
8618         _dl_init, _dl_lookup_symbol, _dl_lookup_symbol_skip,
8619         _dl_lookup_versioned_symbol, _dl_lookup_versioned_symbol_skip,
8620         _dl_map_object, _dl_map_object_deps, _dl_out_of_memory,
8621         _dl_relocate_object, _dl_signal_error, _dl_start_profile,
8622         _dl_starting_up, _dl_sysdep_start, _dl_unload_cache, _rtld_global):
8623         Likewise.
8624         (_dl_object_relocation_scope): Remove.
8625         * hesiod/Versions: Move all symbols to GLIBC_PRIVATE.
8626         * iconv/Versions (__gconv_alias_db, __gconv_modules_db,
8627         __gconv_cache): Move to GLIBC_PRIVATE.
8628         * inet/Versions (__internal_endnetgrent, __internal_getnetgrent_r,
8629         __internal_setnetgrent): Likewise.
8630         * io/Versions (__libc_open, __libc_close, __libc_read, __libc_write,
8631         __libc_lseek, __libc_fcntl, __libc_open64, __libc_lseek64): Likewise.
8632         * locale/Versions (__collate_element_hash, __collate_element_strings,
8633         __collate_symbol_classes, __collate_symbol_hash,
8634         __collate_symbol_strings, _nl_current_LC_COLLATE,
8635         _nl_current_LC_CTYPE): Likewise.
8636         * misc/Versions (__libc_fsync, __libc_msync): Likewise.
8637         * nis/Versions (libnss_compat): Move all symbols to GLIBC_PRIVATE.
8638         (libnss_nis, libnss_nisplus): Likewise.
8639         * nss/Versions (_nss_files_parse_grent, _nss_files_parse_pwent,
8640         _nss_files_parse_spent): Move to GLIBC_PRIVATE.
8641         (libnss_files): Move all symbols to GLIBC_PRIVATE.
8642         * posix/Versions (__libc_wait, __libc_waitpid, __libc_pause,
8643         __libc_nanosleep, __libc_fork, __libc_pread, __libc_pread64,
8644         __libc_pwrite, __libc_pwrite64): Move to GLIBC_PRIVATE.
8645         * resolv/Versions (__gai_sigqueue, __ns_name_unpack, __ns_name_ntop,
8646         __ns_get16, __ns_samename): Likewise.
8647         (libnss_dns): Move all symbols to GLIBC_PRIVATE.
8648         * setjmp/Versions (__libc_longjmp, __libc_siglongjmp): Move to
8649         GLIBC_PRIVATE.
8650         * socket/Versions (__libc_accept, __libc_send, __libc_recvfrom,
8651         __libc_recvmsg, __libc_sendmsg, __libc_recv, __libc_sendto,
8652         __libc_connect): Likewise.
8653         * stdio-common/Versions (_itoa_lower_digits, _itoa_upper_digits):
8654         Likewise.
8655         * stdlib/Versions (__libc_system): Likewise.
8656         * sunrpc/Versions (__rpc_thread_destroy): Likewise.
8657         * sysdeps/hppa/Versions: Move all symbols to GLIBC_PRIVATE.
8658         * sysdeps/ia64/fpu/Versions: Likewise.
8659         * sysdeps/ia64/Versions: Likewise.
8660         * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
8661         * sysdeps/unix/sysv/linux/i386/Versions (__modify_ldt): Move
8662         to GLIBC_PRIVATE.
8663         * sysdeps/unix/sysv/linux/x86_64/Versions (__modify_ldt): Likewise.
8664         * sysdeps/unix/sysv/linux/Versions (__syscall_rt_sigqueueinfo,
8665         __libc_sigaction): Likewise.
8666         * termios/Versions (__libc_tcdrain): Likewise.
8668         * misc/sys/cdefs (__attribute_noinline__): Define.
8669         * elf/dl-lookup.c (_dl_do_lookup, _dl_do_lookup_versioned): Add
8670         __attribute_noinline__.
8672         * elf/Makefile (rtld-routines): Add dl-xstat64, dl-fxstat64.
8673         * elf/dl-xstat64.c: New file.
8674         * elf/dl-fxstat64.c: New file.
8675         * sysdeps/unix/sysv/linux/fxstat64.c: If RTLD_STAT64 is defined,
8676         don't export __fxstat64 at multiple versions.
8677         * sysdeps/unix/sysv/linux/lxstat64.c: Similarly.
8678         * sysdeps/unix/sysv/linux/xstat64.c: Similarly.
8680 2002-01-18  Isamu Hasegawa  <isamu@yamato.ibm.com>
8682         * locale/program/ld-collate.c (collate_finish): Assign a wide
8683         char collation sequence value to multi character collating
8684         elements, and avoid over writing by non-character elements.
8686 2002-02-01  Ulrich Drepper  <drepper@redhat.com>
8688         * elf/Makefile (distribute): Add dl-procinfo.c.
8689         * sysdeps/unix/sysv/linux/i386/Dist: Remove dl-procinfo.c.
8690         * sysdeps/unix/sysv/linux/arm/Dist: Likewise.
8692 2002-02-01  Jakub Jelinek  <jakub@redhat.com>
8694         * sysdeps/generic/ldsodefs.h (_dl_load_lock): Remove duplicate
8695         definition.
8696         * sysdeps/ia64/hp-timing.h: Move _dl_hp_timing_overhead in
8697         _rtld_global struct.
8698         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
8699         * sysdeps/sparc/sparc64/hp-timing.c: Likewise.
8700         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
8701         * sysdeps/sparc/sparc64/Makefile: Make hp-timing static only.
8702         * sysdeps/unix/sysv/aix/init-first.c (_dl_fpu_control,
8703         _dl_fpu_control_set): Remove unused externs.
8704         * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: New file.
8705         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: New file.
8706         * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: Move procinfo
8707         related variables in _rtld_global struct.
8708         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Likewise.
8709         * sysdeps/unix/sysv/linux/init-first.c (_dl_fpu_control_set): Remove
8710         unused extern.
8712 2002-02-01  Ulrich Drepper  <drepper@redhat.com>
8714         * sysdeps/generic/dl-procinfo.c: New file.
8716 2002-02-01  Andreas Schwab  <schwab@suse.de>
8718         * sysdeps/m68k/dl-machine.h: Don't use multi-line string literals.
8720 2002-02-01  Ulrich Drepper  <drepper@redhat.com>
8722         * elf/rtld.c (_dl_start): Mark as internal_function.
8723         * sysdeps/i386/dl-machine.h (RTLD_START): Pass parameter for _dl_start
8724         in register.
8725         (elf_machine_rel): Cleanup and minor optimization for RTLD_BOOTSTRAP.
8726         General pretty printing.
8728 2002-01-31  Ulrich Drepper  <drepper@redhat.com>
8730         * elf/dl-minimal.c: Define _itoa for 32-bit machines with HP timing.
8731         * elf/dl-reloc.c: Pretty printing.
8732         * sysdeps/generic/ldsodefs.h: Move _dl_hp_timing_overhead and
8733         procinfo-related variables in rtld_global struct.
8734         * elf/dl-support.c: Likewise.
8735         * elf/rtld.c: Likewise.
8736         * sysdeps/i386/i686/Makefile: Likewise.
8737         * sysdeps/i386/i686/hp-timing.c: Likewise.
8738         * sysdeps/i386/i686/hp-timing.h: Likewise.
8739         * sysdeps/ia64/Makefile: Likewise.
8740         * sysdeps/ia64/hp-timing.c: Likewise.
8741         * sysdeps/sparc/sparc32/sparcv9/Makefile: Likewise.
8742         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
8743         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c: Likewise.
8744         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h: Likewise.
8745         * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
8746         * sysdeps/unix/sysv/linux/i386/dl-procinfo.c: Likewise.
8747         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
8748         * sysdeps/x86_64/Makefile: Likewise.
8750         * sysdeps/generic/ldsodefs.h: Add _dl_load_lock, _dl_lazy,
8751         _dl_dynamic_weak, _dl_fpu_control, _dl_cpuclock_offset, and
8752         _dl_debug_fd to rtld_global.
8753         * elf/Versions: Likewise.
8754         * elf/dl-close.c: Likewise.
8755         * elf/dl-iteratephdr.c: Likewise.
8756         * elf/dl-lookup.c: Likewise.
8757         * elf/dl-misc.c: Likewise.
8758         * elf/dl-open.c: Likewise.
8759         * elf/dl-support.c: Likewise.
8760         * elf/do-lookup.h: Likewise.
8761         * elf/rtld.c: Likewise.
8762         * sysdeps/generic/dl-cache.c: Likewise.
8763         * sysdeps/generic/dl-sysdep.c: Likewise.
8764         * sysdeps/ia64/Versions: Likewise.
8765         * sysdeps/unix/clock_gettime.c: Likewise.
8766         * sysdeps/unix/clock_settime.c: Likewise.
8767         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
8768         * sysdeps/sparc/Versions: Removed.
8769         * sysdeps/i386/i686/Versions : Removed.
8770         * sysdeps/x86_64/Versions: Removed.
8771         * configure.in: Define HAVE_PROTECTED if .protected is available.
8772         * config.h.in: Add entry for HAVE_PROTECTED.
8774 2002-01-31  Jakub Jelinek  <jakub@redhat.com.
8776         * sysdeps/alpha/dl-machine.h: Move global variables for SHARED
8777         code in struct _rtld_global.  Export this struct, remove all
8778         exports for the signal variables.
8779         * sysdeps/arm/dl-machine: Likewise.
8780         * sysdeps/generic/dl-origin: Likewise.
8781         * sysdeps/generic/dl-sysdep: Likewise.
8782         * sysdeps/generic/dl-cache: Likewise.
8783         * sysdeps/hppa/dl-fptr: Likewise.
8784         * sysdeps/hppa/dl-machine: Likewise.
8785         * sysdeps/cris/dl-machine: Likewise.
8786         * sysdeps/i386/dl-machine: Likewise.
8787         * sysdeps/ia64/dl-machine: Likewise.
8788         * sysdeps/m68k/dl-machine: Likewise.
8789         * sysdeps/mach/hurd/dl-sysdep: Likewise.
8790         * sysdeps/mips/mips64/dl-machine: Likewise.
8791         * sysdeps/mips/dl-machine: Likewise.
8792         * sysdeps/powerpc/elf/libc-start: Likewise.
8793         * sysdeps/powerpc/dl-machine: Likewise.
8794         * sysdeps/powerpc/dl-start: Likewise.
8795         * sysdeps/sparc/sparc32/dl-machine: Likewise.
8796         * sysdeps/sparc/sparc64/dl-machine: Likewise.
8797         * sysdeps/sh/dl-machine: Likewise.
8798         * sysdeps/s390/s390-32/dl-machine: Likewise.
8799         * sysdeps/s390/s390-64/dl-machine: Likewise.
8800         * sysdeps/unix/sysv/aix/libc-start: Likewise.
8801         * sysdeps/unix/sysv/aix/start-libc: Likewise.
8802         * sysdeps/unix/sysv/linux/ia64/dl-static: Likewise.
8803         * sysdeps/unix/sysv/linux/m68k/getpagesize: Likewise.
8804         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize: Likewise.
8805         * sysdeps/x86_64/dl-machine: Likewise.
8807 2002-01-31  Ulrich Drepper  <drepper@redhat.com>
8809         * sysdeps/posix/readv.c: Don't use alloca if the memory requirements
8810         are too high.
8812 2002-01-31  Andreas Schwab  <schwab@suse.de>
8814         * sysdeps/posix/readv.c: Check for ssize_t overflow.
8816 2002-01-31  Andreas Schwab  <schwab@suse.de>
8818         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Fix leftover
8819         reference to _dl_pagesize.
8821 2002-01-30  Ulrich Drepper  <drepper@redhat.com>
8823         * Versions.def [ld]: Add GLIBC_2.3.
8824         * elf/dl-addr.c: Move global variables for SHARED code in struct
8825         _rtld_global.  Export this struct, remove all exports for the
8826         signal variables.
8827         * elf/dl-close.c: Likewise.
8828         * elf/dl-conflict.c: Likewise.
8829         * elf/dl-debug.c: Likewise.
8830         * elf/dl-deps.c: Likewise.
8831         * elf/dl-dst.h: Likewise.
8832         * elf/dl-error.c: Likewise.
8833         * elf/dl-fini.c: Likewise.
8834         * elf/dl-init.c: Likewise.
8835         * elf/dl-iteratephdr.c: Likewise.
8836         * elf/dl-libc.c: Likewise.
8837         * elf/dl-load.c: Likewise.
8838         * elf/dl-lookup.c: Likewise.
8839         * elf/dl-minimal.c: Likewise.
8840         * elf/dl-object.c: Likewise.
8841         * elf/dl-open.c: Likewise.
8842         * elf/dl-profile.c: Likewise.
8843         * elf/dl-profstub.c: Likewise.
8844         * elf/dl-reloc.c: Likewise.
8845         * elf/dl-runtime.c: Likewise.
8846         * elf/dl-support.c: Likewise.
8847         * elf/dl-sym.c: Likewise.
8848         * elf/dl-version.c: Likewise.
8849         * elf/do-lookup.h: Likewise.
8850         * elf/do-rel.h: Likewise.
8851         * elf/dynamic-link.h: Likewise.
8852         * elf/rtld.c: Likewise.
8853         * sysdeps/generic/dl-cache.c: Likewise.
8854         * sysdeps/generic/dl-sysdep.c: Likewise.
8855         * sysdeps/generic/ldsodefs.h: Likewise.
8856         * sysdeps/generic/libc-start.c: Likewise.
8857         * sysdeps/i386/dl-machine.h: Likewise.
8858         * sysdeps/ia64/dl-fptr.c: Likewise.
8859         * sysdeps/ia64/dl-machine.h: Likewise.
8860         * sysdeps/unix/sysv/linux/dl-librecon.h: Likewise.
8861         * sysdeps/unix/sysv/linux/dl-origin.c: Likewise.
8862         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
8863         * sysdeps/unix/sysv/linux/getclktck.c: Likewise.
8864         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
8865         * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
8866         * sysdeps/unix/sysv/linux/ia64/dl-static.c: Likewise.
8867         * sysdeps/unix/sysv/linux/ia64/getpagesize.c: Likewise.
8869 2002-01-29  Ulrich Drepper  <drepper@redhat.com>
8871         * sysdeps/ia64/dl-lookupcfg.h (DL_AUTO_FUNCTION_ADDRESS): Add cast
8872         to avoid warning
8873         (DL_STATIC_FUNCTION_ADDRESS): Likewise.
8875         * elf/dl-lookup.c: Only define or handle _dl_num_relocations for the
8876         SHARED version.
8877         * elf/dl-reloc.c: Likewise for _dl_num_cache_relocations.
8879         * elf/rtld.c (_dl_start): Use __builtin_memset if available.
8881 2002-01-29  Ben Collins  <bcollins@debian.org>
8883         * string/bits/string2.h (__mempcpy): Protect size arg for
8884         addition when using __builtin_memcpy.
8886 2002-01-29  Ulrich Drepper  <drepper@redhat.com>
8888         * stdlib/Makefile (tests): Add tst-qsort.
8889         * stdlib/tst-qsort.c: New file.  Written by Paul Eggert.
8891         * manual/signal.texi (Process Signal Mask): Document that
8892         pthread_sigmask, not sigprocmask, must be used in MT programs.
8893         Patch by Bertold Kolics <Bertold.Kolics@Sun.COM>.
8895         * misc/hsearch_r.c (hsearch_r): Don't insert anything if entry is
8896         found.
8897         * misc/Makefile (tests): Add tst-hsearch.
8898         * misc/tst-hsearch.c: New file.
8900 2002-01-18  Wolfram Gloger  <wg@malloc.de>
8902         * malloc/malloc.c: Rewrite, adapted from Doug Lea's malloc-2.7.0.c.
8903         * malloc/malloc.h: Likewise.
8904         * malloc/thread-m.h: Spinlock definitions for x86/x86_64.
8905         * malloc/arena.c: New file.
8906         * malloc/hooks.c: New file.
8907         * malloc/tst-mallocstate.c: New file.
8908         * malloc/Makefile: Add new testcase tst-mallocstate.
8909         Add arena.c and hooks.c to distribute.  Fix commented CPPFLAGS.
8911 2002-01-28  Ulrich Drepper  <drepper@redhat.com>
8913         * stdlib/msort.c: Remove last patch.  The optimization violates the
8914         same rule which qsort.c had problems with.
8916 2002-01-27  Paul Eggert  <eggert@twinsun.com>
8918         * stdlib/qsort.c (_quicksort): Do not apply the comparison function
8919         to a pivot element that lies outside the array to be sorted, as
8920         ISO C99 requires that the comparison function be called only with
8921         addresses of array elements [PR libc/2880].
8923 2002-01-28  Ulrich Drepper  <drepper@redhat.com>
8925         * elf/dl-load.c (_dl_map_object): Remove incorrect optimization
8926         for SHARED code.  Reported by Ben Collins <bcollins@debian.org>.
8928         * timezone/asia: Update from tzdata2002b.
8929         * timezone/australasia: Likewise.
8930         * timezone/backward: Likewise.
8931         * timezone/europe: Likewise.
8932         * timezone/leapseconds: Likewise.
8933         * timezone/iso3166.tab: Likewise.
8934         * timezone/zone.tab: Likewise.
8936 2002-01-23  Richard Henderson  <rth@redhat.com>
8938         * sysdeps/alpha/Makefile (pic-ccflag): New variable.
8940 2002-01-28  Ulrich Drepper  <drepper@redhat.com>
8942         * string/strxfrm.c: Allocate one more byte for rulearr and clear
8943         this element [PR libc/2855].
8945         * string/strcoll.c: Handle zero-length arguments specially
8946         [PR libc/2856].
8948 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
8950         * string/bits/string2.h (__mempcpy): For gcc 3.0+, don't use
8951         __mempcpy_small but instead use __builtin_memcpy ( , , n) + n for
8952         short lengths and constant src.
8953         (strcpy): Don't optimize for gcc 3.0+.
8954         (__stpcpy): For gcc 3.0+, don't use
8955         __stpcpy_small but instead use __builtin_strcpy (, src) + strlen (src)
8956         for short string literal src.
8958 2002-01-23  Jeroen Dobbelaere  <jeroen.dobbelaere@acunia.com>
8960         * sysdeps/unix/sysv/linux/configure.in (libc_cv_gcc_unwind_find_fde):
8961         Set for arm, too.
8963 2001-01-22  Paul Eggert  <eggert@twinsun.com>
8965         * manual/llio.texi (Linked Channels, Cleaning Streams):
8966         Make it clearer that a just-opened input stream might need cleaning.
8968 2002-01-21  H.J. Lu  <hjl@gnu.org>
8970         * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
8971         Don't use label at end of compound statement.
8973 2002-01-28  Stephen L Moshier  <moshier@mediaone.net>
8975         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (__ieee754_lgammal_r):
8976         Remove test for negative integer arg; sin_pi does it correctly.
8978 2002-01-20  Ulrich Drepper  <drepper@redhat.com>
8980         * nscd/Makefile (distribute): Filter out xmalloc.c.
8982 2002-01-19  Ulrich Drepper  <drepper@redhat.com>
8984         * libio/fileops.c (_IO_file_underflow_mmap): Don't define as static.
8985         Set offset if read end wasn't the buffer end.
8986         (_IO_file_seekoff_mmap): New function.
8987         (_IO_file_xsgetn_mmap): New function.
8988         (_IO_file_jumps_mmap): Use the two new functions.
8989         * libio/wfileops.c (_IO_wfile_underflow_mmap): Handle end read buffer
8990         != end buffer.
8991         * libio/libioP.h: Declare _IO_file_seekoff_mmap and
8992         _IO_file_underflow_mmap.
8993         * libio/iofopen.c: Don't position file descriptor at end of file.
8994         * libio/tst-widetext.c: Improve error messages.
8995         * stdio-common/tst-rndseek.c: Likewise.
8997 2002-01-18  Ulrich Drepper  <drepper@redhat.com>
8999         * sysdeps/unix/sysv/linux/bits/statvfs.h: Avoid warning about comma at
9000         end of enum for !_GNU_SOURCE.
9001         * sysdeps/unix/sysv/linux/alpha/bits/statvfs.h: Likewise.
9002         * sysdeps/unix/sysv/linux/ia64/bits/statvfs.h: Likewise.
9003         * sysdeps/unix/sysv/linux/sparc/bits/statvfs.h: Likewise.
9004         * sysdeps/mach/hurd/bits/statvfs.h: Don't define non-standard ST_*
9005         values unless _GNU_SOURCE.
9007         * iconvdata/tcvn5712-1.c: Minor cleanups.
9009 2002-01-18  Andreas Schwab  <schwab@suse.de>
9011         * sysdeps/unix/sysv/linux/configure.in
9012         (libc_cv_gcc_unwind_find_fde): Set for m68k, too.
9014 2002-01-16  Roger Sayle  <roger@eyesopen.com>
9016         * stdlib/msort.c (msort_with_tmp): Replace implementation with
9017         more efficient "Towers of Hanoi" mergesort.
9018         (hanoi_sort, hanoi_sort_int, hanoi_sort_long): New functions,
9019         for generic, sizeof(int) and sizeof(long) variants respectively.
9021 2002-01-17  Ulrich Drepper  <drepper@redhat.com>
9023         * manual/syslog.texi (openlog): Describe possible problems with
9024         first parameter.
9025         Patch by Christopher Allen Wing <wingc@engin.umich.edu>.
9027         * nscd/nscd.c (drop_privileges): Removed.  Adjust caller.
9028         * nscd/connections.c (begin_drop_privileges): New function.
9029         (finish_drop_privileges): New function.
9030         (nscd_init): Call the new functions which also install all groups
9031         for the server user.
9032         * nscd/Makefile (nscd-modules): Add xmalloc for nscd.
9033         Patch by Christopher Allen Wing <wingc@engin.umich.edu>.
9035 2002-01-17  H.J. Lu  <hjl@gnu.org>
9037         * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Remove
9038         `const' from `got'.
9040 2002-01-17  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9042         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Use 64 bit
9043         instructions for pointer operations.
9044         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
9046 2002-01-17  Andreas Jaeger  <aj@suse.de>
9048         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: GCC 3.1 has
9049         __uint128_t build-in.
9051         * sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and
9052         PowerPC, sync with 2.2 branch.
9054 2002-01-16  Ulrich Drepper  <drepper@redhat.com>
9056         * posix/getconf.c: Update copyright year.
9057         * nss/getent.c: Likewise.
9058         * nscd/nscd_nischeck.c: Likewise.
9059         * iconv/iconvconfig.c: Likewise.
9060         * iconv/iconv_prog.c: Likewise.
9061         * elf/ldconfig.c: Likewise.
9062         * catgets/gencat.c: Likewise.
9063         * csu/version.c: Likewise.
9064         * elf/ldd.bash.in: Likewise.
9065         * elf/sprof.c (print_version): Likewise.
9066         * locale/programs/locale.c: Likewise.
9067         * locale/programs/localedef.c: Likewise.
9068         * nscd/nscd.c (print_version): Likewise.
9069         * debug/xtrace.sh: Likewise.
9070         * malloc/memusage.sh: Likewise.
9071         * malloc/mtrace.pl: Likewise.
9073 2002-01-16  Andreas Schwab  <schwab@suse.de>
9075         * sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed: Fix regexp to
9076         reliably remove "-ia64" from rtld name.
9078 2002-01-16  Ulrich Drepper  <drepper@redhat.com>
9080         * iconvdata/gb18030.c: Bug fixes and support for more characters.
9081         Patch by Yu Shao <yshao@redhat.com>.
9083 2002-01-16  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9085         * sysdeps/unix/sysv/linux/s390/swapcontext.c: Remove.
9086         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: New file.
9087         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: New file.
9089 2002-01-14  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9091         * sysdeps/s390/fpu/libm-test-ulps: Update.
9093 2002-01-11  Ulrich Drepper  <drepper@redhat.com>
9095         * elf/elf.h: Update x86 relocations.
9097 2002-01-10  Ulrich Drepper  <drepper@redhat.com>
9099         * locale/programs/charmap.c (new_width): Check whether byte
9100         sequences for both ends of range have the same length.
9102 2002-01-09  Jakub Jelinek  <jakub@redhat.com>
9104         * elf/elf.h (SHN_UNDEF): Remove duplicate definition.
9106 2002-01-09  Jakub Jelinek  <jakub@redhat.com>
9108         * sysdeps/alpha/fpu/e_sqrt.c (__ieee754_sqrt): Don't use multi-line
9109         string literals.
9110         (__full_ieee754_sqrt): Add __attribute_used__.
9112 2002-01-10  Ulrich Drepper  <drepper@redhat.com>
9114         * sysdeps/generic/group_member.c (__group_member): Also check
9115         groups[0] [PR libc/2781].
9117 2002-01-08  Ulrich Drepper  <drepper@redhat.com>
9119         * Makefile (distribute): Add scripts/cpp.
9120         * elf/Makefile (distribute): Add reldep6mod[01234].c,
9121         unwind-dw2.c, unwind-dw2-fde.c, unwind.h, unwind-pe.h,
9122         unwind-dw2-fde.h, and dwarf2.h.
9123         * sysdeps/unix/bsd/bsd4.4/Dist: New file.
9124         * sysdeps/unix/sysv/aix/Dist: Add sysv_termio.h and start-libc.c.
9125         * sysdeps/unix/sysv/linux/ia64/Dist: Add ldd-rewrite.sed.
9126         * sysdeps/unix/sysv/linux/s390/Dist: Likewise.
9128 2002-01-07  Roland McGrath  <roland@frob.com>
9130         * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Use
9131         volatile on type of ARGC so the compiler doesn't get clever.
9133 2002-01-07  Andreas Jaeger  <aj@suse.de>
9135         * sysdeps/generic/bits/byteswap.h: Prevent double inclusion.
9136         * sysdeps/i386/bits/byteswap.h: Likewise.
9137         * sysdeps/ia64/bits/byteswap.h: Likewise.
9138         * sysdeps/m68k/bits/byteswap.h: Likewise.
9139         * sysdeps/s390/s390-32/bits/byteswap.h: Likewise.
9140         * sysdeps/s390/s390-64/bits/byteswap.h: Likewise [PR libc/2757].
9142 2002-01-02  Bruno Haible  <bruno@clisp.org>
9144         * intl/plural.y: Fix %expect count.
9146 2002-01-03  Jakub Jelinek  <jakub@redhat.com>
9148         * elf/Makefile (routines, shared-only-routines): Add
9149         unwind-dw2-fde-glibc instead of unwind-dw2-fde.
9150         * elf/elf.h (PT_GNU_EH_FRAME): Define.
9151         * sysdeps/generic/unwind-dw2-fde-glibc.c: New file.
9152         * sysdeps/generic/unwind-dw2-fde.c (__register_frame_info_bases):
9153         Optimize if .eh_frame section contains no FDEs.
9154         (__register_frame, __deregister_frame_info_bases,
9155         __deregister_frame): Likewise.
9156         * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Fix
9157         DW_CFA_restore handling.
9159 2002-01-07  Stephen L Moshier  <moshier@mediaone.net>
9161         * sysdeps/ieee754/ldbl-96/s_erfl.c (erfcl): Fix K&R header.
9163         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Fix typo in test
9164         for x < 0.25 and restore original range reduction method.
9165         (__ieee754_lgammal_r): Make sure signgam is set before returning.
9167 2002-01-07  Ulrich Drepper  <drepper@redhat.com>
9169         * libio/fileops.c (_IO_file_underflow_mmap): New function.
9170         (_IO_file_close_mmap): New function.
9171         (_IO_file_jumps_mmap): New variable.
9172         * libio/wfileops.c (_IO_wfile_underflow): Reset read pointer before
9173         trying to convert rest of byte buffer.
9174         (_IO_wfile_underflow_mmap): New function.
9175         (_IO_wfile_jumps_mmap): New variable.
9176         * libio/iofopen.c (__fopen_maybe_mmap): New function.
9177         (__fopen_internal): New function.  Split out from _IO_new_fopen.
9178         (_IO_new_fopen): Call __fopen_internal.
9179         * libio/iofopen64.c: Just call __fopen_internal.
9180         * libio/iofdopen.c: Call __fopen_maybe_mmap before returning
9181         successfully.
9182         * libio/iolibio.h: Declare __fopen_internal and __fopen_maybe_mmap.
9183         * libio/libioP.h: Declare _IO_file_jumps_mmap, _IO_wfile_jumps_mmap,
9184         _IO_file_close_mmap.
9186         * sysdeps/gnu/_G_config.h: Define _G_MMAP64.
9187         * sysdeps/unix/sysv/linux/cris/_G_config.h: Likewise.
9189         * stdio-common/Makefile (tests): Add tst-rndseek.
9190         * stdio-common/tst-rndseek.c: New file.
9192 2002-01-05  Roland McGrath  <roland@frob.com>
9194         * config.h.in (HAVE_MIG_RETCODE): New #undef.
9195         * sysdeps/mach/hurd/configure.in (hurd_MIG_RETCODE: New macro
9196         swiped from hurd package's aclocal.m4; use it to set HAVE_MIG_RETCODE.
9197         * sysdeps/mach/hurd/configure: Regenerated.
9199 2002-01-03  Ulrich Drepper  <drepper@redhat.com>
9201         * elf/elf.h: Add more TLS definitions.
9203 2002-01-02  Ulrich Drepper  <drepper@redhat.com>
9205         * include/features.h (__GLIBC_MINOR__): Bump to 3.
9207 2002-01-02  Roland McGrath  <roland@frob.com>
9209         * sysdeps/mach/hurd/sigwait.c (__sigwait): Use __sigandset,
9210         __sigisemptyset.  Don't use MASK uninitialized.
9212         * sysdeps/mach/hurd/sigprocmask.c (__sigprocmask): Use __sigorset.
9213         * hurd/hurdinit.c (_hurd_new_proc_init): Use __sigisemptyset.
9214         * hurd/hurdsig.c (_hurd_internal_post_signal): Use __sigismember,
9215         __sigdelset, __sigaddset, __sigorset.
9217         * sysdeps/generic/htonl.c: Use uint32_t instead of u_int32_t.
9218         * sysdeps/generic/htons.c: Use uint16_t instead of u_int16_t.
9220         * hurd/hurdinit.c (_hurd_ports_use): Return EGRATUITOUS when
9221         _hurd_ports is null.
9223         * hurd/hurdsig.c (_hurdsig_init): Conditionalize exception port setup
9224         for old CMU and new OSF Mach interface flavors.
9225         * hurd/hurdfault.c (_hurdsig_fault_init): Likewise.
9226         * sysdeps/mach/hurd/fork.c (__fork): Likewise.
9228         * hurd/hurdsig.c (_hurd_internal_post_signal): Leave msgh_seqno unset.
9230         * sysdeps/mach/hurd/spawni.c (__spawni) [KERN_INVALID_LEDGER]:
9231         Pass extra arguments to task_create for OSF variant.
9232         * sysdeps/mach/hurd/fork.c (__fork): Likewise.
9234         * sysdeps/powerpc/elf/libc-start.c: Make AUXVEC diddling code
9235         conditional on [HAVE_AUX_VECTOR].
9237         * mach/mach/mach_traps.h (thread_switch, __thread_switch): Use
9238         mach_msg_timeout_t as type of final argument.
9240         * hurd/privports.c (__get_privileged_ports):
9241         Change host_priv_t to mach_port_t in argument type.
9242         * hurd/hurd.h (get_privileged_ports, __get_privileged_ports):
9243         Update decls.
9245         * sysdeps/mach/hurd/i386/bits/sigcontext.h: Protect from
9246         multiple inclusion.  Inhibit #error under [_SYS_UCONTEXT_H].
9247         * sysdeps/mach/hurd/alpha/bits/sigcontext.h: Likewise.
9248         * sysdeps/mach/hurd/hppa/bits/sigcontext.h: Likewise.
9249         * sysdeps/mach/hurd/mips/bits/sigcontext.h: Likewise.
9250         * sysdeps/mach/hurd/powerpc/bits/sigcontext.h: Likewise.
9252 2002-01-01  Roland McGrath  <roland@frob.com>
9254         * sysdeps/mach/hurd/errnos.awk: Tighten up device_types.h matching.
9256 2002-01-01  Ulrich Drepper  <drepper@redhat.com>
9258         * include/stdlib.h: Define inlines for the _l variants of the strto*
9259         functions.
9261 2002-01-01  Roland McGrath  <roland@frob.com>
9263         * sysdeps/mach/hurd/powerpc/intr-msg.h: Remove extraneous backslash.
9265         * mach/Machrules (MIG): Set CPP as well as CC.
9267 2001-12-31  Ulrich Drepper  <drepper@redhat.com>
9269         * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Always use C
9270         locale to parse /proc/loadavg [PR libc/2760].
9272 2001-12-31  Jakub Jelinek  <jakub@redhat.com>
9274         * elf/dl-conflict.c: Include sys/param.h.
9275         (RESOLVE_CONFLICT_FIND_MAP): Cast r_offset to ElfW(Addr).
9276         * sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Avoid
9277         warning.
9278         (TRAMPOLINE_TEMPLATE, RTLD_START): Don't use multi-line string
9279         literals to avoid warnings.
9281 2001-12-31  Andreas Jaeger  <aj@suse.de>
9283         * configure.in: Don't check for gsed since we do not use it anywhere.
9285 2001-12-25  Dmitry V. Levin  <ldv@alt-linux.org>
9287         * io/fts.c: Update from BSD to fix memory leaks.
9289 2001-12-25  Dmitry V. Levin  <ldv@alt-linux.org>
9291         * crypt/md5-crypt.c: Realloc error handling memory leak fix.
9292         * elf/chroot_canon.c: Likewise.
9293         * elf/dl-object.c: Likewise.
9294         * iconv/iconv_charmap.c: Likewise.
9295         * iconv/iconv_prog.c: Likewise.
9296         * libio/iogetdelim.c: Likewise.
9297         * locale/lc-time.c: Likewise.
9298         * stdlib/canonicalize.c: Likewise.
9299         * sunrpc/svc.c: Likewise.
9300         * sysdeps/generic/glob.c: Likewise.
9302 2001-12-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9304         * sysdeps/unix/sysv/linux/s390/profil-counter.h: Move/copy to ...
9305         * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h: ... here,
9306         remove high order bit from the program counter.
9307         * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h: ... and here.
9309 2001-12-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9311         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Remove
9312         unnecessary code and add missing reloc types.
9313         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Add empty
9314         case for reloc type R_390_NONE.
9316 2001-12-28  Andreas Jaeger  <aj@suse.de>
9318         * io/bug-ftw3.c: Include string.h for prototypes.
9320         * crypt/md5test.c (main): Remove unused variable.
9322         * dlfcn/modstatic.c: Add prototype to avoid warning.
9324 2001-12-26  Roland McGrath  <roland@frob.com>
9326         * sysdeps/mach/hurd/sigwait.c (__sigwait): When returning immediately,
9327         check only (SS->pending & MASK) for the signal to return.
9328         From Jeroen Dekkers <jeroen@dekkers.cx>.
9330 2001-12-22  Roland McGrath  <roland@frob.com>
9332         * iconv/skeleton.c [!RESET_INPUT_BUFFER && !SAVE_RESET_STATE]:
9333         Use preprocessor #if conditionals instead of `if' to avoid
9334         warnings about divide by zero in dead code.
9336         * hurd/Versions (libc: GLIBC_2.2.5): Add _hurd_port_set,
9337         _hurd_port_init, and __hurd_self_sigstate.
9339         * mach/Versions (libc: GLIBC_2.2.5): Add mig_strncpy.
9341 2001-12-21  Andreas Jaeger  <aj@suse.de>
9343         * elf/dblloadmod1.c: Add prototype to avoid warning.
9344         * elf/dblloadmod2.c: Likewise.
9345         * elf/dblloadmod3.c: Likewise.
9346         * elf/reldepmod5.c: Likewise.
9347         * elf/reldepmod6.c: Likewise.
9349         * elf/dl-conflict.c (_dl_resolve_conflicts): Add unused attribute
9350         for resolve_conflict_map since RESOLVE_CONFLICT_FIND_MAP is not
9351         used on all architectures.
9353         * sunrpc/svc_tcp.c: Add noreturn attribute for
9354         svctcp_rendezvous_abort.
9355         * sunrpc/svc_unix.c: Likewise for svcunix_rendezvous_abort.
9357         * sysdeps/generic/strstr.c (strstr): Add paranthese for assignment
9358         to avoid warning.
9360 2001-12-19  Jakub Jelinek  <jakub@redhat.com>
9362         * manual/llio.texi (aio_fsync): Fix a typo.
9363         Patch by Tammy Fox <tfox@redhat.com>.
9365 2001-12-18  Jakub Jelinek  <jakub@redhat.com>
9367         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (clone): Subtract
9368         stack bias from child stack pointer before passing it to clone syscall.
9370 2001-12-18  Ulrich Drepper  <drepper@redhat.com>
9372         * sysdeps/posix/sysconf.c (__sysconf): Respect POSIX minimum for
9373         _SC_TZNAME_MAX.
9374         * sysdeps/generic/sysconf.c (__sysconf): Likewise.
9375         Reported by Thorsten Kukuk <kukuk@suse.de>.
9377         * sysdeps/unix/grantpt.c (grantpt): Correct typo in comment and
9378         add some casts.
9380         * sysdeps/unix/sysv/linux/grantpt.c: Make __unix_grantpt static.
9382 2001-12-18  Thorsten Kukuk  <kukuk@suse.de>
9384         * sysdeps/unix/sysv/linux/grantpt.c: Make errno results standard
9385         conforming: return EBADF if file descriptor is invalid and EINVAL
9386         if file descriptor is no valid tty.
9387         * login/tst-grantpt.c: New file.
9388         * login/Makefile (tests): Add tst-grantpt.
9390 2001-12-17  Ulrich Drepper  <drepper@redhat.com>
9392         * io/ftw.c (ftw_dir): Handle inaccessibility of toplevel dir
9393         different than implemented in last patch.
9394         * io/bug-ftw3.c: Adjust test for changed handling of
9395         inaccessibility of toplevel dir.
9397 2001-12-16  Roland McGrath  <roland@frob.com>
9399         * nss/nsswitch.c (__nss_next): Don't use __FUNCTION__ as literal.
9400         * grp/initgroups.c (internal_getgrouplist): Likewise.
9402         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Add `break' after
9403         `default:' to silence new GCC warning.
9404         Rewrite cast of lvalue to silence new GCC warning.
9406         * sysdeps/mach/hurd/i386/init-first.c: Avoid multi-line strings in asm.
9408         * sysdeps/mach/hurd/spawni.c: New file, by me with a
9409         couple fixes by Neal H Walfield <neal@cs.uml.edu>.
9411 2001-12-14  Ulrich Drepper  <drepper@redhat.com>
9413         * sysdeps/generic/strstr.c (strstr): Update.  New optimized version.
9414         Patch by Stephen R. van den Berg.
9416         * crypt/md5.h: Define md5_uintptr.
9418 2001-12-13  Ulrich Drepper  <drepper@redhat.com>
9420         * libio/tst_swprintf.c (main): Add test for string argument with
9421         zero precision.
9422         * stdio-common/Makefile (tests): Add tst-sprintf.
9423         * stdio-common/tst-sprintf.c: New file.
9425 2001-12-13  Andreas Schwab  <schwab@suse.de>
9427         * stdio-common/vfprintf.c (process_string_arg): Correctly handle
9428         zero precision with wide character string format.
9430 2001-12-13  Thorsten Kukuk  <kukuk@suse.de>
9432         * sysdeps/posix/cuserid.c (cuserid): If we don't find the UID,
9433         but have a user supplied buffer, return the empty buffer, not NULL.
9435 2001-12-13  Ulrich Drepper  <drepper@redhat.com>
9437         * crypt/md5.c (md5_process_bytes): Correct handling of alignment.
9438         Patch by Eric Sharkey <sharkey@netrics.com>.
9440         * crypt/md5test.c (main): Add test for multiple calls to
9441         __md5_process_bytes to itererate over input string.
9443 2001-12-12  Ulrich Drepper  <drepper@redhat.com>
9445         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Mostly the code
9446         from __nis_findfastest.  Take timeout value from parameter.
9447         (__nis_findfastest): Call __nis_findfastest_with_timeout repeatedly.
9448         * nis/nis_intern.h: Define parameters controlling __nis_findfastest
9449         [PR libc/2520].  Patch by Alexander Belopolsky <alexb@rentec.com>.
9451 2001-12-12  Andreas Jaeger  <aj@suse.de>
9453         * configure.in: Use -nostartfiles -nostdlib for linker tests, fix
9454         combreloc test so that it works in this case.
9456         * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix typo in last patch.
9458 2001-12-12  NIIBE Yutaka  <gniibe@m17n.org>
9460         * sysdeps/sh/Makefile: New file.
9461         * sysdeps/sh/_mcount.S: New file.
9462         * sysdeps/sh/sysdep.h (CALL_MCOUNT): Implemented.
9463         * sysdeps/sh/machine-gmon.h: Remove "NOTYET" comment, as we are ready.
9465 2001-12-11  Ulrich Drepper  <drepper@redhat.com>
9467         * resolv/nss_dns/dns-host.c (getanswer_r): Remove MAX_NR_ADDRS
9468         limitation [PR libc/2564].
9470 2001-12-11  Jakub Jelinek  <jakub@redhat.com>
9472         * elf/Makefile (dl-routines): Add conflict.
9473         (rtld-ldscript-in, rtld-ldscript, rtld-parms): Remove.
9474         (ld.so): Add _begin local symbol.
9475         * elf/elf.h (DT_VALTAGIDX, DT_VALNUM, DT_ADDRTAGIDX, DT_ADDRNUM):
9476         Define.
9477         * elf/dl-deps.c (_dl_build_local_scope): New function.
9478         (_dl_map_object_deps): If LD_TRACE_PRELINKING, compute local scopes
9479         of all libraries.
9480         * elf/do-rel.h (VALIDX): Define.
9481         (elf_dynamic_do_rel): If ELF_MACHINE_PLT_REL is defined, don't do
9482         lazy binding for RELA.  If DT_GNU_PRELINKED, DT_RELACOUNT relocations
9483         can be skipped.
9484         * elf/dl-conflict.c: New file.
9485         * elf/dl-lookup.c (_dl_debug_bindings): New function.
9486         (_dl_lookup_symbol): Use _dl_debug_bindings.  Reference_name is always
9487         non-NULL.
9488         (_dl_lookup_symbol_skip): Likewise.
9489         (_dl_lookup_versioned_symbol): Likewise.
9490         (_dl_lookup_versioned_symbol_skip): Likewise.
9491         * elf/dl-runtime.c (PLTREL): If ELF_MACHINE_PLT_REL is defined,
9492         define to ElfW(Rel).
9493         * elf/dynamic-link.h (elf_get_dynamic_info): Record selected dynamic
9494         tags in the DT_VALRNGLO..DT_VALRNGHI and DT_ADDRRNGLO..DT_ADDRRNGHI
9495         ranges.
9496         Don't adjust address dynamic tags if l_addr is 0.
9497         * elf/rtld.c (_dl_trace_prelink, _dl_trace_prelink_map): New variables.
9498         (_dl_start): Skip ELF_DYNAMIC_RELOCATE if ld.so is prelinked.
9499         (VALIDX, ADDRIDX): Define.
9500         (_dl_start_final): Initialize _dl_rtld_map's l_map_start and l_map_end.
9501         (dl_main): Print library list for LD_TRACE_PRELINKING.
9502         If prelinking information can be used, skip relocating libraries and
9503         call _dl_resolve_conflicts instead.
9504         (process_envvars): Handle LD_TRACE_PRELINKING envvar.
9505         * elf/dl-load.c (_dl_map_object): Don't create fake libs
9506         if LD_TRACE_PRELINKING.
9507         * include/link.h (struct link_map) [l_info]: Add DT_VALNUM
9508         + DT_ADDRNUM.
9509         * sysdeps/generic/ldsodefs.h (_dl_trace_prelink_map): New declaration.
9510         (DL_DEBUG_PRELINK): Define.
9511         (_dl_resolve_conflicts): Add prototype.
9513         * sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Reinitialize
9514         .plt for prelinked libraries where prelinking info cannot be used.
9515         (elf_machine_rela): If relocating R_ALPHA_JMP_SLOT in .gnu.conflict
9516         section, use RESOLVE_CONFLICT_FIND_MAP to find out reloc's link_map.
9517         * sysdeps/arm/bits/link.h: New file.
9518         * sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): Save original
9519         content of .got[1].
9520         (ELF_MACHINE_NO_RELA): Only define if RTLD_BOOTSTRAP.
9521         (ELF_MACHINE_PLT_REL): Define.
9522         (elf_machine_rela, elf_machine_rela_relative): New functions.
9523         (elf_machine_lazy_rel): Reinitialize R_ARM_JUMP_SLOT address instead
9524         of adjusting it if prelinked and prelinking cannot be used.
9525         * sysdeps/i386/bits/link.h: New file.
9526         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Save original
9527         content of .got[1].
9528         (ELF_MACHINE_NO_RELA): Only define if RTLD_BOOTSTRAP.
9529         (ELF_MACHINE_PLT_REL): Define.
9530         (elf_machine_rela, elf_machine_rela_relative): New functions.
9531         (elf_machine_lazy_rel): Reinitialize R_386_JUMP_SLOT address instead
9532         of adjusting it if prelinked and prelinking cannot be used.
9533         * sysdeps/powerpc/dl-machine.h (elf_machine_rela): If relocating
9534         conflicts, skip finaladdr computation.  Use RESOLVE_CONFLICT_FIND_MAP
9535         to find out map for R_PPC_JMP_SLOT relocs.
9536         * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Define.
9537         (OPCODE_BA): Define.
9538         (elf_machine_runtime_setup): Reinitialize .plt for prelinked
9539         libraries where prelinking info cannot be used.
9540         (sparc_fixup_plt): Renamed from elf_machine_fixup_plt.
9541         (elf_machine_fixup_plt): Call sparc_fixup_plt.
9542         (elf_machine_rela): Set value to 0 if relocating conflicts.
9543         Call sparc_fixup_plt for R_SPARC_JMP_SLOT.
9544         * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Define.
9545         (sparc64_fixup_plt): Fix a typo.
9546         (elf_machine_rela): Set value to 0 if relocating conflicts.
9547         Handle R_SPARC_JMP_SLOT relocs when relocating conflicts.
9548         (elf_machine_runtime_setup): Reinitialize .plt for prelinked
9549         libraries where prelinking info cannot be used.
9550         * sysdeps/sh/bits/link.h: New file.
9551         * sysdeps/sh/dl-machine.h (elf_machine_runtime_setup): Save original
9552         content of .got[1].
9553         (elf_machine_lazy_rel): Reinitialize R_SH_JMP_SLOT address instead
9554         of adjusting it if prelinked and prelinking cannot be used.
9555         * sysdeps/s390/s390-32/bits/link.h: New file.
9556         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup):
9557         Save original content of .got[1].
9558         (elf_machine_lazy_rel): Reinitialize R_390_JMP_SLOT address instead
9559         of adjusting it if prelinked and prelinking cannot be used.
9560         * sysdeps/s390/s390-64/bits/link.h: New file.
9561         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup):
9562         Save original content of .got[1].
9563         (elf_machine_lazy_rel): Reinitialize R_390_JMP_SLOT address instead
9564         of adjusting it if prelinked and prelinking cannot be used.
9565         * sysdeps/x86_64/bits/link.h: New file.
9566         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup):
9567         Save original content of .got[1].
9568         (elf_machine_lazy_rel): Reinitialize R_X86_64_JMP_SLOT address instead
9569         of adjusting it if prelinked and prelinking cannot be used.
9571 2001-12-11  Ulrich Drepper  <drepper@redhat.com>
9573         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_r): Use sizeof
9574         where appropriate instead of numbers.  Little optimizations.
9576 2001-12-10  Roland McGrath  <roland@frob.com>
9578         * sysdeps/mach/hurd/bind.c (bind): Don't deallocate IFSOCK if we never
9579         set it.
9581         * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu.*): Set default
9582         set to GLIBC_2.2.5, not GLIBC_2.2.4.
9584         * sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde):
9585         Fix conditionals so this is set by default for stdio and not for libio.
9586         * sysdeps/mach/hurd/configure: Regenerated.
9588 2001-12-10  Thorsten Kukuk  <kukuk@suse.de>
9590         * io/ftw.c (ftw_startup): Check, if the path is search and readable.
9592 2001-12-10  Ulrich Drepper  <drepper@redhat.com>
9594         * io/Makefile (tests): Add bug-ftw3.
9595         * io/bug-ftw3.c: New file.
9597         * sysdeps/generic/glob.c (glob): Return only pattern if nothing
9598         matches and GLOB_NOCHECK is set.
9599         * posix/globtest.sh: Correct expected result for NOCHECK test.
9601         * po/ca.po: Update from translation team.
9603 2001-12-09  Ulrich Drepper  <drepper@redhat.com>
9605         Implement transliteration of characters in strings of the locale
9606         definitions.
9607         * locale/programs/linereader.c: Adjust for additional parameter to
9608         lr_token.
9609         (get_string): If character <Uxxxx> is not found try to transliterate
9610         it.
9611         * locale/programs/ld-ctype.c: Adjust for additional parameter to
9612         lr_token.  Add const to charmap parameter of all functions.
9613         (find_translit, find_translit2): New functions.
9614         * locale/programs/charmap.c: Adjust for additional parameter to
9615         lr_token.
9616         * locale/programs/repertoire.c: Likewise.
9617         * locale/programs/linereader.h: Likewise.
9618         * locale/programs/ld-address.c: Likewise.  Add const to charmap
9619         parameter of all functions.
9620         * locale/programs/ld-collate.c: Likewise.
9621         * locale/programs/ld-identification.c: Likewise.
9622         * locale/programs/ld-measurement.c: Likewise.
9623         * locale/programs/ld-messages.c: Likewise.
9624         * locale/programs/ld-monetary.c: Likewise.
9625         * locale/programs/ld-name.c: Likewise.
9626         * locale/programs/ld-numeric.c: Likewise.
9627         * locale/programs/ld-paper.c: Likewise.
9628         * locale/programs/ld-paper.c: Likewise.
9629         * locale/programs/ld-telephone.c: Likewise.
9630         * locale/programs/ld-time.c: Likewise.
9631         * locale/programs/locfile.c: Likewise.
9632         * locale/programs/localedef.c: Likewise.
9633         * locale/programs/localedef.h: Likewise.
9634         * locale/programs/locfile.h: Likewise.  Add declaration for
9635         find_translit.
9636         * locale/programs/simple-hash.c: Add const to first parameter of
9637         find_entry, iterate_table, and lookup.
9638         * locale/programs/simple-hash.h: Likewise.
9639         * locale/localeinfo.h: Don't define __LC_LAST here.  Include <locale.h>
9640         instead.
9641         * include/locale.h: Define __LC_LAST.
9642         * iconv/Makefile (CFLAGS-linereader.c): Define to -DNO_TRANSLITERATION.
9644 2001-12-07  Geoff Keating  <geoffk@redhat.com>
9646         * sysdeps/powerpc/Dist: Update for recent FP changes.
9647         * sysdeps/powerpc/fpu/Dist: Likewise.
9649 2001-12-07  Andreas Schwab  <schwab@suse.de>
9651         * sysdeps/unix/sysv/linux/opensock.c: Include <string.h>.
9653 2001-12-06  Geoff Keating  <geoffk@redhat.com>
9655         * sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr
9656         save/restore functions here.
9657         (libm-support): Don't define these functions here.
9658         * sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore
9659         functions here.
9660         * sysdeps/powerpc/fe_nomask.c: Move to...
9661         * sysdeps/powerpc/fpu/fe_nomask.c: ... here.
9662         * sysdeps/powerpc/fprrest.S: Move to...
9663         * sysdeps/powerpc/fpu/fprrest.S: ... here.
9664         * sysdeps/powerpc/fprsave.S: Move to...
9665         * sysdeps/powerpc/fpu/fprsave.S: ... here.
9667 2001-12-06  Ulrich Drepper  <drepper@redhat.com>
9669         * sysdeps/unix/sysv/linux/opensock.c: New file.
9671 2001-12-06  Geoff Keating  <geoffk@redhat.com>
9673         * config.make.in (with-fp): Define from configure.
9674         * configure.in: Substitute with_fp.
9675         * configure: Regenerate.
9676         * sysdeps/powerpc/Makefile: Set -msoft-float when --without-fp is
9677         specified, and don't change FPU environment.
9679 2001-12-06  Ulrich Drepper  <drepper@redhat.com>
9681         * libio/vasprintf.c (_IO_vasprintf): Free buffer on failure.
9682         * assert/assert.c: Check result of __asprintf call and don't use
9683         string if it failed.
9684         * assert/assert-perr.c: Likewise.
9685         * inet/rcmd.c: Likewise.
9686         * locale/programs/localedef.c (main): Check result of
9687         construct_output_path and exit if it failed.
9688         (construct_output_path): Check result of asprintf and mkdir calls and
9689         fail if they failed.
9690         * posix/getopt.c: Check result of __asprintf calls and fail if
9691         they failed.
9692         Patch by Dmitry V. Levin <ldv@alt-linux.org>.
9694 2001-12-05  Ulrich Drepper  <drepper@redhat.com>
9696         * sysdeps/generic/strcasecmp.c (__strcasecmp): Little performance
9697         patch.
9698         * sysdeps/generic/strncase.c: Likewise.
9699         * string/tester.c: Add tests for strcasecmp and strncasecmp.
9701 2001-12-05  Geoff Keating  <geoffk@redhat.com>
9703         * scripts/cpp: Test the exit status from 'type', not 'awk'.
9705         * sysdeps/powerpc/__longjmp.S: Don't restore FP registers.
9706         * sysdeps/powerpc/fpu/__longjmp.S: Do restore FP registers.
9707         * sysdeps/powerpc/setjmp.S: Don't save FP registers.
9708         * sysdeps/powerpc/fpu/setjmp.S: Do save FP registers.
9709         * sysdeps/powerpc/fclrexcpt.c: Move to...
9710         * sysdeps/powerpc/fpu/fclrexcpt.c: ... here.
9711         * sysdeps/powerpc/fpu_control.h: Move to...
9712         * sysdeps/powerpc/fpu/fpu_control.h: ... here.
9714 2001-12-05  Ulrich Drepper  <drepper@redhat.com>
9716         * iconvdata/ibm1129.h: Remove duplicate mappings.
9717         * iconvdata/ibm937.c: Handle overflow errors.  Handle new tables.
9718         * iconvdata/ibm937.h: Reorganize table to safe a lot of space.
9719         Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
9721         * timezone/zic.c: Fix handling of turnaround times.
9722         Patch by Arthur David Olson <olsona@dc37a.nci.nih.gov>.
9724 2001-12-02  Moshe Olshansky  <OLSHANSK@il.ibm.com>
9726         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): Fix
9727         overflow problem.
9729 2001-12-05  Ulrich Drepper  <drepper@redhat.com>
9731         * posix/regex.c: For use outside glibc defined bounded pointer
9732         macros here.  Patch by Jim Meyering <jim@meyering.net>.
9734         * iconvdata/Makefile (modules): Add TCVN5712-1.
9735         * iconvdata/TESTS: Add TCVN5712-1.
9736         * iconvdata/gconv-modules: Likewise.
9737         * iconvdata/tcvn5712-1.c: New file.
9738         * iconvdata/testdata/TCVN-5712: New file.
9739         * iconvdata/testdata/TCVN-5712..UTF8: New file.
9741 2001-12-04  Ulrich Drepper  <drepper@redhat.com>
9743         * iconvdata/cp1258.c: Optimize conversion from UCS4.
9745 2001-12-02  Roland McGrath  <roland@frob.com>
9747         * mach/Makefile, mach/Machrules: Move comments out of \ continuations.
9749         * hurd/hurd.h (__hurd_fail): Add `break;' to silence new gcc-3 warning.
9750         Reported by Jeff Bailey <jbailey@nisa.net>.
9752         * hurd/hurd.h (_hurd_umask): Remove volatile qualifier from decl.
9753         Reported by Jeff Bailey <jbailey@nisa.net>.
9755         * mach/Makefile ($(objpfx)mach-syscalls.mk): Pass $(CFLAGS) to $(CC).
9756         * mach/Machrules ($(objpfx)%.udeps static pattern rule): Likewise.
9757         Reported by Jeff Bailey <jbailey@nisa.net>.
9759 2001-12-01  Roland McGrath  <roland@frob.com>
9761         * sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde): Add
9762         missing backslash in test arguments.
9763         * sysdeps/mach/hurd/configure: Regenerated.
9765 2001-11-26  Roland McGrath  <roland@frob.com>
9767         * hurd/hurdinit.c (_hurd_ports_use): Check if _hurd_ports is null.
9768         Reported by John Tobey <jtobey@john-edwin-tobey.org>.
9770 2001-11-30  Ulrich Drepper  <drepper@redhat.com>
9772         * iconvdata/Makefile (modules): Add ARMSCII-8.
9773         * iconvdata/gconv-modules: Add entries for ARMSCII-8.
9774         * iconvdata/armscii-8.c: New file.
9776 2001-11-29  Jakub Jelinek  <jakub@redhat.com>
9778         * sysdeps/generic/glob.c (next_brace_sub): Return NULL if braces
9779         don't match, fix {{a,b},c} globbing, clean up.
9780         Patch by Flavio Veloso <flaviovs@magnux.com>.
9781         * posix/globtest.sh: Add new tests.
9783 2001-11-29  Andreas Jaeger  <aj@suse.de>
9785         * sysdeps/unix/sysv/linux/x86_64/Versions: Add arch_prctl.
9786         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add arch_prctl call.
9788         * sysdeps/generic/abort.c: Include libioP.h for
9789         _IO_flush_all_lockp prototype.
9791 2001-11-29  Ulrich Drepper  <drepper@redhat.com>
9793         * posix/regex.h: Define __restrict_arr correctly.
9795 2001-11-28  Ulrich Drepper  <drepper@redhat.com>
9797         * iconvdata/ibm1163.c: New file.
9798         * iconvdata/ibm1163.h: New file.
9799         * iconvdata/ibm1164.c: New file.
9800         * iconvdata/ibm1164.h: New file.
9801         * iconvdata/TESTS: Add entries for IBM1163 and IBM1164.
9802         * iconvdata/Makefile: Likewise.
9803         * iconvdata/testdata/IBM1163: New file.
9804         * iconvdata/testdata/IBM1163..UTF8: New file.
9805         * iconvdata/testdata/IBM1164: New file.
9806         * iconvdata/testdata/IBM1164..UTF8: New file.
9807         Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
9809         * iconvdata/ibm1046.h: Optimize.  Remove duplicate mappings.
9810         * iconvdata/ibm1124.h: Likewise.
9811         * iconvdata/ibm1132.h: Likewise.
9812         * iconvdata/ibm1133.h: Likewise.
9813         * iconvdata/ibm1160.h: Likewise.
9814         * iconvdata/ibm1161.h: Likewise.
9815         * iconvdata/ibm1162.h: Likewise.
9816         * iconvdata/ibm856.h: Likewise.
9817         * iconvdata/ibm922.h: Likewise.
9818         * iconvdata/ibm930.h: Likewise.
9819         * iconvdata/ibm932.h: Likewise.
9820         * iconvdata/ibm933.h: Likewise.
9821         * iconvdata/ibm935.h: Likewise.
9822         * iconvdata/ibm937.h: Likewise.
9823         * iconvdata/ibm939.h: Likewise.
9824         * iconvdata/ibm943.h: Likewise.
9825         * iconvdata/ibm930.c: Pretty printing.
9826         * iconvdata/ibm937.c: Avoid access accross array boundary.
9828         * iconv/gconv_open.c (__gconv_open): Empty codeset name now means using
9829         the current locale's codeset.
9830         * iconv/iconv_open.c (iconv_open): Don't strip out everything for
9831         empty input string.
9832         * iconv/iconv_prog.c: Pass empty strings as default value for to-
9833         and from-charset.  Don't determine locale's charset here.
9835         * libio/genops.c (_IO_flush_all_lockp): New function.  The same code
9836         as the old _IO_flush_all but lock only if parameter is nonzero.
9837         (_IO_flush_all): Call _IO_flush_all_lockp with 1 as parameter.
9838         * libio/libioP.h: Add prototype for _IO_flush_all_lockp.
9839         * sysdeps/generic/abort.c (fflush): Define to _IO_flush_all_lockp(0)
9840         if libio is used [PR libc/2575].
9842 2001-11-28  Jakub Jelinek  <jakub@redhat.com>
9844         * sysdeps/sparc/fpu/bits/mathinline.h (__signbitf, __signbit,
9845         __signbitl): Only define for ISO C99.
9847 2001-11-22  Thorsten Kukuk  <kukuk@suse.de>
9849         * nss/nss_files/files-hosts.c (_nss_files_get##name##_r): Set
9850         herrnop to NETDB_INTERNAL if we run out of buffer space.
9852 2001-11-28  Ulrich Drepper  <drepper@redhat.com>
9854         * nss/nss_files/files-XXX.c (internal_getent): Correct input
9855         overflow test for platforms with signed char.
9856         Reported by Andrew Haley <aph@cambridge.redhat.com>.
9858 2001-11-28  Bruno Haible  <bruno@clisp.org>
9860         * locale/programs/simple-hash.c (lookup_2): Remove function.
9861         (insert_entry_2): Call lookup instead of lookup_2.
9863 2001-03-04  Bruno Haible  <bruno@clisp.org>
9865         * intl/dcigettext.c (DCIGETTEXT): Increment path_max proportionally.
9867 2001-10-31  Bruno Haible  <bruno@clisp.org>
9869         * intl/plural.y: Include <stddef.h>, needed for NULL with SunOS 4 cc.
9871 2001-03-21  Bruno Haible  <bruno@clisp.org>
9873         * intl/dcigettext.c (_nl_state_lock): Mark as #ifdef _LIBC. AIX 3 xlc
9874         chokes on empty macro arguments.
9875         * intl/plural.y: Add #pragma for alloca on AIX 3.
9877 2001-11-27  Ulrich Drepper  <drepper@redhat.com>
9879         * intl/dcigettext.c (guess_category_value): Only implement for
9880         glibc.  Otherwise rely on function _nl_locale_name which isn't
9881         present in the glibc sources.
9883 2001-09-24  Bruno Haible  <bruno@clisp.org>
9885         * intl/loadmsgcat.c (_nl_init_domain_conv): Also enable
9886         transliteration when building on a glibc system but outside glibc.
9888 2001-09-22  Bruno Haible  <bruno@clisp.org>
9890         * intl/plural-eval.c: New file, extracted from dcigettext.c.
9891         * intl/dcigettext.c (plural_eval): Remove function, moved to
9892         intl/plural-eval.c.
9893         (plural_lookup): Call PLURAL_EVAL instead of plural_eval.
9894         Include plural-eval.c.
9896 2001-09-22  Bruno Haible  <bruno@clisp.org>
9898         * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Reject numbers that
9899         don't start with a digit; nplurals must be positive.
9901 2001-09-02  Bruno Haible  <bruno@clisp.org>
9903         * intl/plural-exp.h: New file, extracted from gettextP.h.
9904         * intl/plural-exp.c: New file, extracted from loadmsgcat.c.
9905         * intl/gettextP.h (struct expression, struct parse_args,
9906         __gettext_free_exp, __gettextparse): Move to plural-exp.h.
9907         * intl/loadmsgcat.c: Include plural-exp.h.
9908         (PLURAL_PARSE): Move macro to plural-exp.h.
9909         (plvar, plone, germanic_plural, INIT_GERMANIC_PLURAL): Move to
9910         plural-exp.c.
9911         (_nl_load_domain): Move plural handling code to plural-exp.c.  Call
9912         EXTRACT_PLURAL_EXPRESSION.
9913         (_nl_unload_domain): Update.
9914         * intl/dcigettext.c: Include plural-exp.h.
9915         * intl/plural.y: Include plural-exp.h, not gettextP.h.
9916         (FREE_EXPRESSION): Move macro to plural-exp.h.
9917         * intl/Makefile (routines): Add plural-exp.
9918         (distribute): Add plural-exp.h.
9920 2001-07-28  Bruno Haible  <bruno@clisp.org>
9922         * intl/l10nflist.c (_nl_normalize_codeset): Cast isalnum, isalpha,
9923         isdigit, tolower argument to 'unsigned char'.
9924         * intl/loadmsgcat.c (_nl_load_domain): Cast isspace argument to
9925         'unsigned char'.
9926         * intl/localealias.c (read_alias_file): Cast isspace argument to
9927         'unsigned char'.
9929 2001-10-20  Bruno Haible  <bruno@clisp.org>
9931         Assume strchr() exists. (Without it, intl/explodename.c wouldn't link
9932         anyway.)
9933         * intl/dcigettext.c (strchr): Remove fallback definition; it conflicts
9934         with the variable 'index' in plural_lookup.
9935         * intl/l10nflist.c (strchr): Likewise.
9936         * intl/localealias.c (strchr): Likewise.
9938         Assume <stddef.h>, <stdlib.h>, <string.h>, <locale.h> exist.
9939         * intl/bindtextdom.c: Likewise.
9940         * intl/dcigettext.c: Likewise.
9941         * intl/dgettext.c: Likewise.
9942         * intl/dngettext.c: Likewise.
9943         * intl/explodename.c: Likewise.
9944         * intl/finddomain.c: Likewise.
9945         * intl/gettext.c: Likewise.
9946         * intl/l10nflist.c: Likewise.
9947         * intl/loadmsgcat.c: Likewise.
9948         * intl/localealias.c: Likewise.
9949         * intl/ngettext.c: Likewise.
9950         * intl/textdomain.c: Likewise.
9951         * intl/gettext.h: Assume <limits.h> exists.
9953 2001-11-27  Ulrich Drepper  <drepper@redhat.com>
9955         * stdio-common/Makefile (tests): Add scanf11.
9956         * stdio-common/scanf11.c: New file.
9958 2001-11-26  Ulrich Drepper  <drepper@redhat.com>
9960         * version.h (RELEASE): Define as development.
9961         (VERSION): Set to 2.2.90.
9963 2001-11-22  Thorsten Kukuk  <kukuk@suse.de>
9965         * nis/nss_compat/compat-grp.c: Print group id as unsigned long.
9966         * nis/nss_nis/nis-grp.c: Likewise.
9967         * nis/nss_nisplus/nisplus-grp.c: Likewise.
9969         * nis/nss_compat/compat-pwd.c: Print user id as unsigned long.
9970         * nis/nss_nis/nis-pwd.c: Likewise.
9971         * nis/nss_nisplus/nisplus-pwd.c: Likewise.
9973         * nis/nss_nis/nis-publickey.c: Use strtoul instead of atoi.
9974         * nis/nss_nisplus/nisplus-parser.c: Likewise.
9975         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
9977         * nscd/grpcache.c: Use strtoul instead of atol.
9978         * nscd/pwdcache.c: Likewise.
9979         * nss/getent.c: Likewise.
9981 2001-11-27  Paul Eggert  <eggert@twinsun.com>
9983         * sysdeps/posix/tempname.c (__gen_tempname): Try at least
9984         ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
9986 2001-11-19  Bruno Haible  <bruno@clisp.org>
9988         * locale/programs/simple-hash.c (insert_entry_2): Resize at 75%, not
9989         90%.
9990         (compute_hashval): Shift by 9 bits, not by 4 bits. This drastically
9991         improves the quality of the hash function, especially for short
9992         strings.
9994 2001-11-26  Ulrich Drepper  <drepper@redhat.com>
9996         * stdio-common/vfscanf.c: If incomplete nan of inf(inity) strings
9997         are found call conv_error and not input_error [PR libc/2669].
9999         * math/bits/mathcalls.h: Mark ceil and floor as const.
10000         Reported by David Mosberger.
10002 2001-11-21  Jim Meyering  <meyering@lucent.com>
10004         * posix/regex.c (iswctype, mbrtowc, wcslen, wcscoll, wcrtomb) [_LIBC]:
10005         Define to be __-prefixed.
10006         Remove unnecessary duplication in `#ifdef _LIBC' blocks.
10008 2001-11-26  Andreas Jaeger  <aj@suse.de>
10010         * sysdeps/unix/sysv/linux/hppa/brk.c: Remove __brk_addr alias,
10011         avoid warning.
10013 2001-11-26  Stephen L Moshier <moshier@mediaone.net>
10015         * sysdeps/ieee754/ldbl-128/e_log10l.c (L102B): Fix typo in
10016         initialization.
10018         * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Remove
10019         unused variables.  Fix threshold for returning 1.0.
10021         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (neval, deval): Constify
10022         argument.
10024         * sysdeps/ieee754/ldbl-128/s_erfl.c (neval, deval): Likewise, and
10025         remove unused variables.
10027         * sysdeps/ieee754/ldbl-128/e_j0l.c (neval, deval): Likewise.
10029         * sysdeps/ieee754/ldbl-128/e_j1l.c (neval, deval): Likewise, and
10030         include local math header files.
10032 2001-11-22  Andreas Jaeger  <aj@suse.de>
10034         * sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Add brace to
10035         avoid warning.
10037 2001-11-21  Andreas Jaeger  <aj@suse.de>
10039         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: New file.
10041         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers): Add
10042         sys/debugreg.h
10044 2001-11-15  Andreas Jaeger  <aj@suse.de>
10046         * include/features.h (__GLIBC_HAVE_LONG_LONG): Define for
10047         compilers that support it.
10049         * posix/sys/types.h: Use __GLIBC_HAVE_LONG_LONG.
10050         * sysdeps/unix/sysv/linux/bits/types.h: Likewise.
10051         * stdlib/stdlib.h: Likewise.
10053 2001-11-17  Ulrich Drepper  <drepper@redhat.com>
10055         * posix/regex.c (byte_re_match_2_internal): For gcc replace switch
10056         statement with gotos.
10057         Based on a patch by Paolo Bonzini <bonzini@pc-amo3.elet.polimi.it>.
10059 2001-11-16  Stephen L Moshier  <moshier@mediaone.net>
10061         * sysdeps/ieee754/ldbl-96/s_erfl.c (__erfcl): Fix K&R header.
10063 2001-11-15  Ulrich Drepper  <drepper@redhat.com>
10065         * sysdeps/generic/unwind-dw2-fde.c: Don't use recursive mutexes.
10067 2001-10-02  Jakub Jelinek  <jakub@redhat.com>
10068             H.J. Lu  <hjl@gnu.org>
10070         * Versions.def (libc): Add GCC_3.0.
10071         * configure.in (libc_cv_gcc_static_libgcc): Set to -static-libgcc
10072         if gcc supports this flag.
10073         (EXPORT_UNWIND_FIND_FDE): Define unless target configure disables it.
10074         (gcc3): Allow glibc to be compiled with gcc 3.x.
10075         * config.h.in (EXPORT_UNWIND_FIND_FDE): Add.
10076         * config.make.in (static-libgcc, unwind-find-fde): Add.
10077         * Makerules (build-shlib-helper, build-module-helper): Use it.
10078         * scripts/versions.awk: Make sure GLIBC_ versions come first.
10079         * elf/soinit.c (__libc_global_ctors): Set tbases and dbases if
10080         necessary.
10081         (_fini): Call __deregister_frame_info_bases if
10082         __register_frame_info_bases was used to register.
10083         * elf/Versions (__register_frame_info, __deregister_frame_info): Add
10084         for GLIBC_2.0.
10085         (__register_frame_info_bases, __register_frame_info_table_bases,
10086         __deregister_frame_info_bases, _Unwind_Find_FDE): Add for GCC_3.0.
10087         * elf/Makefile (routines): Add unwind-dw2-fde.
10088         (shared-only-routines): Add unwind-dw2-fde.
10089         * sysdeps/alpha/gccframe.h: New file.
10090         * sysdeps/arm/gccframe.h: New file.
10091         * sysdeps/generic/framestate.c: New file.
10092         * sysdeps/generic/dwarf2.h: New file.
10093         * sysdeps/generic/gccframe.h (struct object): Update from gcc 3.0.
10094         * sysdeps/generic/unwind-dw2-fde.c: New file.
10095         * sysdeps/unix/sysv/linux/ia64/unwind-dw2-fde.c: New file.
10096         * sysdeps/generic/unwind-dw2-fde.h: New file.
10097         * sysdeps/generic/unwind-dw2.c: New file.
10098         * sysdeps/generic/unwind-pe.h: New file.
10099         * sysdeps/generic/unwind.h: New file.
10100         * sysdeps/hppa/gccframe.h: New file.
10101         * sysdeps/i386/gccframe.h: New file.
10102         * sysdeps/m68k/gccframe.h: New file.
10103         * sysdeps/mips/gccframe.h: New file.
10104         * sysdeps/powerpc/gccframe.h: New file.
10105         * sysdeps/s390/gccframe.h: New file.
10106         * sysdeps/sh/gccframe.h: New file.
10107         * sysdeps/sparc/gccframe.h: New file.
10108         * sysdeps/vax/gccframe.h: New file.
10109         * sysdeps/unix/sysv/linux/configure.in (libc_cv_gcc_unwind_find_fde):
10110         Set on all architectures except ia64.
10111         * sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde): Set
10112         for i386.
10113         * sysdeps/mach/hurd/i386/Versions (__register_frame_info,
10114         __deregister_frame_info): Move to elf/Versions.
10115         * sysdeps/unix/sysv/linux/m68k/Versions: Likewise.
10116         * sysdeps/unix/sysv/linux/arm/Versions: Likewise.
10117         * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
10118         * sysdeps/unix/sysv/linux/i386/Versions: Likewise.
10119         * sysdeps/unix/sysv/linux/mips/Versions: Likewise.
10120         * sysdeps/unix/sysv/linux/powerpc/Versions: Likewise.
10121         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
10122         * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
10123         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
10124         * sysdeps/mach/hurd/i386/Makefile (sysdep-routines): Add framestate.
10125         * sysdeps/unix/sysv/linux/arm/Makefile: Likewise.
10126         * sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
10127         * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
10128         * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
10129         * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
10130         * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
10131         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Likewise.
10132         * sysdeps/unix/sysv/linux/sparc/Makefile: Likewise.
10134 2001-11-15  Jeff Law  <law@redhat.com>
10136         * posix/regex.c (uintptr_t): Do not provide a definition if the
10137         system provided one.
10139 2001-11-13  Roland McGrath  <roland@frob.com>
10141         * stdio-common/tmpfile.c: Moved to ...
10142         * sysdeps/generic/tmpfile.c: ... here.
10143         * sysdeps/mach/hurd/tmpfile.c: New file.
10145         * hurd/fopenport.c (__fopenport): Renamed from fopenport.
10146         [USE_IN_LIBIO] (fopencookie): #define as _IO_fopencookie.
10147         (fopenport): Define as weak alias.
10149         * libio/iofopncook.c (_IO_fopencookie): Move forward declaration ...
10150         * libio/libioP.h: ... to here.
10152 2001-11-12  Ulrich Drepper  <drepper@redhat.com>
10154         * elf/dl-reloc.c (_dl_relocate_object): Avoid iterating over
10155         program header twice.  Construct list with the needed information.
10157 2001-11-10  Ulrich Drepper  <drepper@redhat.com>
10159         * po/ca.po: Update from translation team.
10161         * elf/dl-load.c (_dl_map_object_from_fd): Remove use of
10162         _dl_pf_to_prot.  Use arithmetic operation using PF_TO_PROT macro.
10163         * sysdeps/generic/ldsodefs.h (PF_TO_PROT): New macro.
10164         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
10166 2001-11-10  Andreas Jaeger  <aj@suse.de>
10168         * sysdeps/ieee754/ldbl-128/e_log2l.c: New file.
10169         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
10170         Contributed by Stephen L Moshier <moshier@mediaone.net>.
10172 2001-11-09  Ulrich Drepper  <drepper@redhat.com>
10174         * elf/dl-minimal.c (realloc): Handle NULL for first parameter
10175         correctly.
10176         * elf/dl-load.c (is_dst): New function.
10177         (_dl_dst_count): Use is_dst to check for DST variable.
10178         (_dl_dst_substitute): Likewise.
10180 2001-11-09  Roland McGrath  <roland@frob.com>
10182         Hurd/PowerPC port contributed by Peter Bruin <pjbruin@dds.nl>.
10183         * sysdeps/mach/hurd/powerpc/exc2signal.c: New file.
10184         * sysdeps/mach/hurd/powerpc/init-first.c: New file.
10185         * sysdeps/mach/hurd/powerpc/intr-msg.h: New file.
10186         * sysdeps/mach/hurd/powerpc/longjmp-ts.c: New file.
10187         * sysdeps/mach/hurd/powerpc/register-dump.h: New file.
10188         * sysdeps/mach/hurd/powerpc/sigreturn.c: New file.
10189         * sysdeps/mach/hurd/powerpc/static-start.S: New file.
10190         * sysdeps/mach/hurd/powerpc/trampoline.c: New file.
10191         * sysdeps/mach/hurd/powerpc/bits/sigcontext.h: New file.
10192         * sysdeps/mach/hurd/powerpc/Dist: New file.
10194         * hurd/privports.c (__get_privileged_ports):
10195         Only contact the proc server if necessary for this call.
10196         Suggested by Neal H Walfield <neal@cs.uml.edu>.
10197         Check error return for mach_port_mod_refs.
10199 2001-11-09  Andreas Schwab  <schwab@suse.de>
10201         * sysdeps/unix/sysv/linux/m68k/bits/resource.h: New file.
10203 2001-11-09  Ulrich Drepper  <drepper@redhat.com>
10205         * elf/dl-load.c (lose): Remove some unnecessary code.  The new
10206         object is always the last in the list.
10207         (_dl_map_object_from_fd): Delete code to remove from object list
10208         when DF_1_NOOPEN is seen.  This is done in lose.
10210 2001-11-08  Ulrich Drepper  <drepper@redhat.com>
10212         * elf/dl-object.c (_dl_new_object): Various small optimizations.
10214 2001-11-07  Ulrich Drepper  <drepper@redhat.com>
10216         * sysdeps/generic/dl-cache.c: Optimize SEARCH_CACHE and
10217         HWCAP_CHECK macro code.
10219         * elf/dl-misc.c (_dl_sysdep_read_whole_file): Optimize code a bit.
10220         Now returns MAP_FAILED on error.
10221         * elf/rtld.c: Adjust caller.
10222         * sysdeps/generic/dl-cache.c: Likewise.
10223         * sysdeps/generic/ldsodefs.h: Adjust description.
10225         * elf/dl-version.c (match_symbol): Optimize error handling for size.
10226         (_dl_check_map_versions): Likewise.
10228 2001-11-06  Ulrich Drepper  <drepper@redhat.com>
10230         * elf/dl-load.c (_dl_map_object_from_fd): Don't call
10231         _dl_signal_error directly, always use lose.  Set fd to -1 after
10232         file is closed.
10233         (lose): Don't call close if fd == -1.
10235 2001-11-07  Kaoru Fukui  <k_fukui@highway.ne.jp>
10237         * manual/charset.texi: Fix typo @w[ISO 6937] to  @w{ISO 6937}.
10238          Also fix typo @code {mbsinit} to @code{mbsinit}.
10240 2001-11-06  Ulrich Drepper  <drepper@redhat.com>
10242         * elf/dl-profile.c: Replace state variable with simple flag named
10243         running.  Remove commented-out code.
10245         * elf/dl-load.c (decompose_rpath): Optimize error handling for size.
10246         (_dl_init_paths): Likewise.
10247         (_dl_map_object_from_fd): Likewise.
10248         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
10250 2001-11-06  Roland McGrath  <roland@frob.com>
10252         * sysdeps/mach/powerpc/sysdep.h: Include sysdeps/unix/powerpc/sysdep.h
10253         instead of sysdeps/powerpc/elf/sysdep.h and sysdeps/unix/sysdep.h.
10255         * sysdeps/unix/sysv/linux/powerpc/sysdep.h: Don't include
10256         sysdeps/powerpc/elf/sysdep.h.
10257         Reported by Kaoru Fukui <k_fukui@highway.ne.jp>.
10259 2001-11-05  Ulrich Drepper  <drepper@redhat.com>
10261         * elf/rtld.c (process_dl_debug): Rewritten.  Optimized for size not
10262         speed.
10263         (process_envvars): Some more optimizations.
10264         * sysdeps/generic/ldsodefs.h (DL_DEBUG_HELP): New macro.
10266         * elf/elf.h: Add dynamic tag definitions for prelinking.
10268         * elf/rtld.c (process_envvars): Avoid using array of string pointers.
10269         Rewrite code to remove environment varables for SUID binaries.
10270         Small optimization in LD_PROFILE handling.
10271         * sysdeps/generic/unsecvars.h: Adjust format for process_envvars
10272         changes.
10273         * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
10275         * sysdeps/generic/dl-sysdep.c: Don't initialize _dl_cpuclock_offset.
10277         * elf/dl-reloc.c (_dl_reloc_bad_type): Rewrite to not use writable
10278         strings.  Change type of second parameter.
10279         * sysdeps/generic/ldsodefs.h: Adjust _dl_reloc_bad_type prototype
10280         for last change.
10282         * io/fts.h: Prevent using <fts.h> with _FILE_OFFSET_BITS=64.
10284 2001-11-04  Joseph S. Myers  <jsm28@cam.ac.uk>
10286         * manual/string.texi: Fix typos.
10287         * manual/examples/argp-ex2.c: Likewise.
10289 2001-11-05  Roland McGrath  <roland@frob.com>
10291         * sysdeps/powerpc/elf/sysdep.h: Remove this file, because it overrides
10292         the more-specific unix/sysv/linux/powerpc file and breaks everything.
10293         * sysdeps/powerpc/sysdep.h (ALIGNARG, ASM_TYPE_DIRECTIVE,
10294         ASM_SIZE_DIRECTIVE, CALL_MCOUNT, ENTRY, EALIGN, DO_CALL, JUMPTARGET,
10295         PSEUDO, PSEUDO_RET, PSEUDO_END, L, C_TEXT): These macros moved here
10296         here, put under [__ELF__].
10298 2001-11-05  Ulrich Drepper  <drepper@redhat.com>
10300         * manual/charset.texi: Extensive editing work.
10301         * manual/nss.texi: Likewise.
10302         Changes by Dennis Grace <dgrace@us.ibm.com>.
10304 2001-11-04  Roland McGrath  <roland@frob.com>
10306         * hurd/set-host.c (_hurd_set_host_config): Use O_WRONLY in flags
10307         parameter to dir_mkfile.
10309 2001-11-02  Jakub Jelinek  <jakub@redhat.com>
10311         * string/bits/string2.h (__strndup): If n is smaller than len, set
10312         len to n + 1.
10313         * string/tester.c (test_strndup): New function.
10314         (main): Call it.
10316 2001-11-01  Ulrich Drepper  <drepper@redhat.com>
10318         * sunrpc/rpc_main.c: Optimize variable definitions a bit.
10320         * sunrpc/Makefile (rpcgen-cmd): Use ../scripts/cpp in rpcgen calls.
10321         * scripts/cpp: New file.
10323         * elf/dl-load.c (_dl_map_object): Correct test of DF_1_NODEFLIB
10324         for rtld_search_dirs content.  Minor optimizations.
10326 2001-10-31  Ulrich Drepper  <drepper@redhat.com>
10328         * elf/dl-load.c (_dl_map_object): Make code a bit more compact by
10329         avoiding unnecessary duplication.
10331 2001-10-31  Jakub Jelinek  <jakub@redhat.com>
10333         * elf/dl-load.c (_dl_map_object): If library was found using
10334         LD_LIBRARY_PATH, don't try RUNPATH list.
10336 2001-10-31  Martin Schwidefsky  <schwidefsky@de.ibm.com>
10338         * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h (REGISTER_DUMP):
10339         Correct second argument of register_dump call.
10340         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h (REGISTER_DUMP):
10341         Likewise.
10343 2001-10-31  Ulrich Drepper  <drepper@redhat.com>
10345         * iconvdata/Makefile: Add support for IBM1132, IBM1133, and IBM1162
10346         modules.
10347         * iconvdata/TESTS: Likewise.
10348         * iconvdata/gconv-modules: Likewise.
10349         * iconvdata/ibm1132.c: New file.
10350         * iconvdata/ibm1132.h: New file.
10351         * iconvdata/ibm1133.c: New file.
10352         * iconvdata/ibm1133.h: New file.
10353         * iconvdata/ibm1162.c: New file.
10354         * iconvdata/ibm1162.h: New file.
10355         * iconvdata/testdata/IBM1132: New file.
10356         * iconvdata/testdata/IBM1132..UTF8: New file.
10357         * iconvdata/testdata/IBM1133: New file.
10358         * iconvdata/testdata/IBM1133..UTF8: New file.
10359         * iconvdata/testdata/IBM1162: New file.
10360         * iconvdata/testdata/IBM1162..UTF8: New file.
10361         Patches by Masahide Washizawa <WASHI@jp.ibm.com>.
10363         * string/string.h: Fix typo in comment.
10364         * wcsmbs/wchar.h: Likewise.
10366 2001-10-30  Joseph S. Myers  <jsm28@cam.ac.uk>
10368         * manual/getopt.texi (getopt_long, getopt_long_only): Include
10369         const in type of longopts parameter.
10371 2001-10-29  Andreas Jaeger  <aj@suse.de>
10373         * sysdeps/ieee754/dbl-64/mpa.h: Add prototypes for internal functions.
10375 2001-10-29  Kevin Ryde  <user42@zip.com.au>
10377         * manual/stdio.texi (Integer Conversions): Corrections to sample printf
10378         output, clarify `#' behaviour on 0.
10379         (Floating-Point Conversions): Clarify that %g only uses %e when
10380         the exponent would be greater than 1.
10382 2001-10-28  Roland McGrath  <roland@frob.com>
10384         Support for Mach/PowerPC contributed by Peter Bruin <pjbruin@dds.nl>.
10385         * sysdeps/mach/powerpc/machine-sp.h: New file.
10386         * sysdeps/mach/powerpc/sysdep.h: New file.
10387         * sysdeps/mach/powerpc/thread_state.h: New file.
10389         * sysdeps/mach/hurd/i386/Makefile: File removed; crt0.o rules moved ...
10390         * sysdeps/mach/hurd/Makefile: ... to here.  For the time being, we can
10391         expect to need the same thing on every platform.
10393         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: File moved ...
10394         * sysdeps/generic/sys/ucontext.h: ... to replace this one.
10396         * sysdeps/unix/sysv/linux/powerpc/sysdep.h (ALIGNARG,
10397         ASM_TYPE_DIRECTIVE, ASM_SIZE_DIRECTIVE, CALL_MCOUNT, ENTRY, EALIGN,
10398         DO_CALL, JUMPTARGET, PSEUDO, PSEUDO_RET, PSEUDO_END, L, C_TEXT):
10399         Move all these assembly-related definitions to ...
10400         * sysdeps/powerpc/elf/sysdep.h: ... this new file.
10402         * sysdeps/mach/powerpc/machine-lock.h: Assembly code rewritten
10403         by Peter Bruin <pjbruin@dds.nl>.
10405         * hurd/hurdselect.c (_hurd_select): Check SELECT_RETURNED bit when
10406         packing results for a `poll' call.
10408 2001-10-26  Ulrich Drepper  <drepper@redhat.com>
10410         * posix/fnmatch_loop.c: Recognize - at end of bracket expression
10411         correctly.
10412         * posix/tst-fnmatch.input: Add tests for - at beginning and end of
10413         bracket expression.
10415         * string/strxfrm.c [USE_IN_EXTENDED_LOCALE_MODEL]: Correctly get
10416         nrules value.
10417         * string/tst-strxfrm.c (test): Also test __strxfrm_l.
10419 2001-10-24  H.J. Lu  <hjl@gnu.org>
10421         * sysdeps/generic/bits/dlfcn.h (DL_CALL_FCT): Cast to void *.
10422         Use __BEGIN_DECLS/__END_DECLS around prototypes.
10423         * sysdeps/mips/bits/dlfcn.h (DL_CALL_FCT): Likewise.
10425 2001-10-21  Jim Meyering  <meyering@lucent.com>
10427         * malloc/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
10428         this code would end up calling gettext even in packages built
10429         with --disable-nls.
10430         * posix/getopt.c (_): Likewise.
10431         * posix/regex.c (_): Likewise.
10433 2001-10-26  Ulrich Drepper  <drepper@redhat.com>
10435         * resolv/gethnamaddr.c (gethostbyaddr): Use ip6.addr for reverse
10436         lookup not ip6.int.
10437         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
10438         Reported by Martin.v.Loewis@t-online.de [PR libc/2598].
10440 2001-10-19  Jakub Jelinek  <jakub@redhat.com>
10442         * misc/sys/cdefs.h (__attribute_used__): Define.
10443         * elf/rtld.c (_dl_start): Add __attribute_used__.
10444         * elf/dl-runtime.c (fixup, profile_fixup): Likewise.
10446 2001-10-25  Andreas Schwab  <schwab@suse.de>
10448         * stdlib/a64l.c: Expect least significant digit first.
10449         * stdlib/l64a.c: Produce least significant digit first.
10450         * stdlib/Makefile (tests): Add test-a64l.
10451         * stdlib/test-a64l.c: New file.
10452         Reported by Masaki Hasegawa <masaki-h@pp.iij4u.or.jp>.
10454 2001-10-21  Ulrich Drepper  <drepper@redhat.com>
10456         * po/sk.po: Update from translation team.
10458 2001-10-18  Ulrich Drepper  <drepper@redhat.com>
10460         * sysdeps/i386/elf/start.S (_fp_hw): Define object type.
10462 2001-10-18  Andreas Schwab  <schwab@suse.de>
10464         * math/libm-test.inc (print_ulps): Print ulp values rounded to
10465         next whole number.
10466         (print_function_ulps): Likewise.
10467         (print_complex_function_ulps): Likewise.
10468         (print_max_error): Likewise.
10469         (print_complex_max_error): Likewise.  Handle ignore_max_ulp.
10471 2001-10-16  Andreas Schwab  <schwab@suse.de>
10473         * sysdeps/m68k/fpu/libm-test-ulps: Updated for fixed cbrtl
10474         implementation.
10476         * sysdeps/m68k/setjmp.c: Also define setjmp and _setjmp if
10477         BSD_SETJMP or BSD__SETJMP is defined, resp.
10478         * sysdeps/m68k/bsd-setjmp.c: Inline setjmp code instead of making
10479         a tail call to __sigsetjmp that would require extending the
10480         caller's frame.
10481         * sysdeps/m68k/bsd-_setjmp.c: Likewise.
10482         * sysdeps/m68k/bsd-setjmp.S: Deleted.
10483         * sysdeps/m68k/bsd-_setjmp.S: Deleted.
10484         Reported by Jes Sorensen <jes@trained-monkey.org>.
10486 2001-10-16  Andreas Jaeger  <aj@suse.de>
10488         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Fix
10489         parentheses.  Reported by David Byron <dbyron@porto.coactive.com>,
10490         close PR libc/2589.
10492 2001-10-15  Ulrich Drepper  <drepper@redhat.com>
10494         * po/ca.po: New file.  Contributed by the translation team.
10496 2001-10-15  Ralf Baechle  <ralf@gnu.org>
10498         * sysdeps/unix/sysv/linux/mips/sys/sysmips.h: Make sysmips() prototype
10499         a varargs prototype.  Remove dependency from kernel header files.
10501         * sysdeps/unix/sysv/linux/mips/bits/termios.h: General cleanup, use
10502         __USE_MISC / __USE_XOPEN not __USE_BSD where appropriate.
10504 2001-10-14  Ulrich Drepper  <drepper@redhat.com>
10506         * locale/programs/ld-collate.c (handle_ellipsis): Use %lX not %lx
10507         to generate hexadecimal identifier.
10508         Patch by Jungshik Shin <jungshik.shin@yale.edu>.
10510 2001-10-09  Stephen L Moshier  <moshier@mediaone.net>
10512         * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Fix algorithm.
10514 2001-10-14  Ulrich Drepper  <drepper@redhat.com>
10516         * sysdeps/ieee754/ldbl-128/e_powl.c: New file.
10517         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: New file.
10518         Contributed by Stephen L Moshier <moshier@mediaone.net>.
10520         * sysdeps/ieee754/ldbl-128/e_j0l.c: Constify float variables.
10521         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
10522         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise
10523         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise
10524         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise
10525         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise
10527         * timezone/africa: Update from tzdata2001d.
10528         * timezone/asia: Likewise.
10529         * timezone/australasia: Likewise.
10530         * timezone/backward: Likewise.
10531         * timezone/europe: Likewise.
10532         * timezone/leapseconds: Likewise.
10533         * timezone/northamerica: Likewise.
10534         * timezone/southamerica: Likewise.
10535         * timezone/zone.tab: Likewise.
10537 2001-10-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
10539         * sysdeps/s390/s390-32/sys/ucontext.h: Correct __psw_t typedef.
10540         * sysdeps/s390/s390-64/sys/ucontext.h: Likewise.
10542 2001-10-12  Ulrich Drepper  <drepper@redhat.com>
10544         * elf/elf.h (PT_TLS): New definition.
10546 2001-10-10  Jeff Bailey  <jbailey@nisa.net>
10548         * sysdeps/mach/hurd/Makefile: Add $(CFLAGS) for generation of
10549         bits/errno.h
10551 2001-10-07  Roland McGrath  <roland@frob.com>
10553         * sysdeps/mach/hurd/setrlimit.c (__setrlimit): Never return ENOSYS.
10555 2001-10-10  Ulrich Drepper  <drepper@redhat.com>
10557         * elf/elf.h: Add more ELFOSABI_* constants.
10559 2001-10-04  Ben Collins  <bcollins@debian.org>
10561         * sysdeps/generic/inttypes.h: Fix typo (define, not defined) in
10562         decleration of __need_wchar_t.
10564 2001-10-03  Jakub Jelinek  <jakub@redhat.com>
10566         * string/bits/string2.h (__strsep_g): Add prototype.
10567         (__strsep): Use it.
10568         * string/Versions (__strsep): Remove.
10569         * sysdeps/generic/strsep.c (__strsep_g): Add alias to __strsep.
10571 2001-10-07  Ulrich Drepper  <drepper@redhat.com>
10573         * manua/llio.texi: Clarify file references added by mmap.
10574         Patch by Marcus Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de>.
10576 2001-09-29  Jes Sorensen  <jes@trained-monkey.org>
10578         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h (struct sigcontext):
10579         Add sc_loadrs and sc_rbs_bas to match current kernel.
10581 2001-09-27  Jakub Jelinek  <jakub@redhat.com>
10583         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Update.
10585         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfcl): Fix erfc(-inf).
10587 2001-09-27  Jakub Jelinek  <jakub@redhat.com>
10589         * elf/dl-open.c (dl_open_worker): If l_opencount of freshly loaded
10590         object has been bumped because of relocation dependency, avoid
10591         duplicates in l_scope.
10592         (show_scope): Fix typos.
10593         * elf/Makefile: Add rules to build and run reldep6.
10594         * elf/reldep6.c: New file.
10595         * elf/reldep6mod0.c: New file.
10596         * elf/reldep6mod1.c: New file.
10597         * elf/reldep6mod2.c: New file.
10598         * elf/reldep6mod3.c: New file.
10599         * elf/reldep6mod4.c: New file.
10601 2001-09-26  Jakub Jelinek  <jakub@redhat.com>
10603         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_fixup_plt): Call
10604         sparc64_fixup_plt.
10605         (sparc64_fixup_plt): Moved from elf_machine_fixup_plt.  Optimize
10606         near jumps and 0xfffff800XXXXXXXX target addresses, no thread safety
10607         for non-lazy binding. Fix .plt[32768+] handling.
10608         (elf_machine_plt_value): Don't add addend.
10609         (elf_machine_rela): Call sparc64_fixup_plt instead of
10610         elf_machine_fixup_plt.
10611         (elf_machine_runtime_setup, TRAMPOLINE_TEMPLATE): Optimize for
10612         dynamic linker at 0xfffff800XXXXXXXX.
10614         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Update.
10616 2001-09-28  Ulrich Drepper  <drepper@redhat.com>
10618         * elf/elf.h: Define SHF_GROUP and SHF_TLS.
10620 2001-09-25  Jakub Jelinek  <jakub@redhat.com>
10622         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (struct cmsghdr): Don't
10623         declare __cmsg_data field if its size would be bigger than 0.
10624         (CMSG_DATA): Adjust accordingly.
10625         * sysdeps/unix/sysv/aix/bits/socket.h: Likewise.
10626         * sysdeps/unix/sysv/linux/alpha/bits/socket.h: Likewise.
10627         * sysdeps/unix/sysv/linux/ia64/bits/socket.h: Likewise.
10628         * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h: Likewise.
10629         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
10630         * sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise.
10631         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
10633 2001-09-25  Ulrich Drepper  <drepper@redhat.com>
10635         * iconvdata/TESTS: Add entries for IBM1160 and IBM1161.
10636         * iconvdata/testdata/IBM1160: New file.
10637         * iconvdata/testdata/IBM1160..UTF8: New file.
10638         * iconvdata/testdata/IBM1161: New file.
10639         * iconvdata/testdata/IBM1161..UTF8: New file.
10640         Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
10642 2001-09-24  Ulrich Drepper  <drepper@redhat.com>
10644         * sysdeps/unix/bsd/ulimit.c (ulimit): Handle overflow in
10645         UL_SETFSIZE computations better.
10647         * rt/Makefile: Remove use of filter for librt again.
10649         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle overflow in
10650         UL_SETFSIZE computations better.
10652         * string/Versions: Export __strsep for GLIBC_2.2.5.
10653         * string/bits/string2.h: Define all __STRING_INLINE functions if
10654         _FORCE_INLINES is defined.
10655         Use int instead of char of parameter types.
10656         (__strsep): Don't use __strsep_g.  Don't define it.
10657         (__strsep_1c, __strsep_2c, __strsep_3c): Optimize.
10658         * sysdeps/i386/i486/string.h (__strcpy_a_small): Renamed from
10659         __strcpy_small.
10660         (__stpcpy_a_small): Renamed from __stpcpy_small.
10661         (__strcspn_c1): Don't define if _FORCE_INLINES.
10662         (__strspn_c1): Likewise.
10664 2001-09-22  Ben Collins  <bcollins@debian.org>
10666         * sysdeps/sparc/bits/sigaction.h: Define SA_RESTART and friends when
10667         _UNIX98_SOURCE is defined too.  Matches generic/bits/sigaction.h.
10668         * sysdeps/ia64/bits/sigaction.h: Likewise.
10669         * sysdeps/s390/s390-64/bits/sigaction.h: Likewise.
10671 2001-09-24  Andrew Haley  <aph@cambridge.redhat.com>
10673         * sysdeps/unix/sysv/linux/sh/Makefile (sysdep_headers): Add sys/io.h.
10675 2001-09-24  Jakub Jelinek  <jakub@redhat.com>
10677         * elf/dl-open.c (dl_open_worker): Update l_scope_max.
10679 2001-09-24  Ulrich Drepper  <drepper@redhat.com>
10681         * wcsmbs/wchar.h: Add __attribute_pure__ to mbsinit prototype.
10683 2001-09-20  H.J. Lu  <hjl@gnu.org>
10685         * include/dlfcn.h (__RTLD_SPROF): New definiton.
10686         * elf/dl-open.c (dl_open_worker): Return immediately after loading
10687         for __RTLD_SPROF.
10688         * elf/sprof.c (main): Default to the filename if soname doesn't exist.
10689         (load_shobj): Call dlopen with `RTLD_LAZY | __RTLD_SPROF'.
10691 2001-09-20  H.J. Lu  <hjl@gnu.org>
10693         * elf/dl-profile.c (_dl_mcount): Use old *narcsp value for newarc,
10694         don't add 1.
10696 2001-09-22  Ulrich Drepper  <drepper@redhat.com>
10698         * nss/getent.c: Accept -s parameter to overwrite rules in
10699         nsswitch.conf.  Patch by Nalin Dahyabhai <nalin@redhat.com>.
10701         * nss/nss_files/files-network.c (LINE_PARSER): Pad addr string
10702         with as many ".0" as necessary to form a complete address
10703         inet_network understands.
10705         * nss/getent.c: Various cleanups.  Use simpler and fewer function
10706         calls.
10708 2001-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
10710         * sysdeps/s390/s390-32/bits/setjmp.h: Correct pointer comparison in
10711         _JMPBUF_UNWINDS.
10712         * sysdeps/s390/s390-64/bits/setjmp.h: Likewise.
10714 2001-09-22  Ulrich Drepper  <drepper@redhat.com>
10716         * iconvdata/Makefile: Add rules to build and distribute IBM1160 and
10717         IBM1161.
10718         * iconvdata/gconv-modules: Add entries for IBM1160 and IBM1161.
10719         * iconvdata/ibm1160.c: New file.
10720         * iconvdata/ibm1160.h: New file.
10721         * iconvdata/ibm1161.c: New file.
10722         * iconvdata/ibm1161.h: New file.
10723         Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
10725 2001-09-19  Jakub Jelinek  <jakub@redhat.com>
10727         * sysdeps/alpha/dl-machine.h (elf_machine_load_address): Compute the
10728         difference between base address and first PT_LOAD's virtual address,
10729         not the base address.
10731 2001-09-11  Tom Rix  <trix@redhat.com>
10733         * sysdeps/unix/sysv/aix/init-first.c (init):  Use USE_NONONPTION_FLAG
10734         ifdef for __getopt_clean_environment.
10735         * sysdeps/unix/sysv/aix/libc-start.c: Add real implementation.
10737 2001-09-22  Andreas Jaeger  <aj@suse.de>
10739         * elf/reldep4.c (main): Add proper prototype to fix warning.
10741         * elf/reldep5.c (main): Remove unused variable.
10743         * math/math_private.h: Add prototypes.
10745 2001-09-21  Andreas Jaeger  <aj@suse.de>
10747         * sysdeps/unix/sysv/linux/x86_64/Dist: New file.
10748         * sysdeps/x86_64/Dist: New file.
10749         * sysdeps/x86_64/soft-fp/Dist: New file.
10751         * sysdeps/gnu/Dist: Remove eval.c.
10753 2001-09-20  Ulrich Drepper  <drepper@redhat.com>
10755         * malloc/memusage.c (realloc): Don't count already allocated
10756         memory in the sums.
10757         (me): Always use dlsym() to find the real implementations.
10759         * malloc/memusage.sh: Make -n option actually do something.
10761 2001-09-20  Andreas Jaeger  <aj@suse.de>
10763         * elf/elf.h (R_390_NUM): Correct value.
10765         * Versions.def: Add missing versions 2.2.3 for libthread_db and
10766         libpthread.
10768         * sysdeps/unix/sysv/linux/configure.in: Add minimal kernel version
10769         for x86-64, install x86-64 into */lib64.
10771         * shlib-versions: Add x86-64.
10773         * elf/elf.h: Add x86-64 relocations.
10775 2001-09-19  Ulrich Drepper  <drepper@redhat.com>
10777         * po/fr.po: Update from translation team.
10779 2001-09-19  Andreas Jaeger  <aj@suse.de>
10781         * sysdeps/unix/sysv/linux/x86_64/Makefile: New file.
10782         * sysdeps/unix/sysv/linux/x86_64/Versions: New file.
10783         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: New file.
10784         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: New file.
10785         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: New file.
10786         * sysdeps/unix/sysv/linux/x86_64/bits/statfs.h: New file.
10787         * sysdeps/unix/sysv/linux/x86_64/bits/time.h: New file.
10788         * sysdeps/unix/sysv/linux/x86_64/bits/types.h: New file.
10789         * sysdeps/unix/sysv/linux/x86_64/brk.c: New file.
10790         * sysdeps/unix/sysv/linux/x86_64/clone.S: New file.
10791         * sysdeps/unix/sysv/linux/x86_64/fstatfs64.c: New file.
10792         * sysdeps/unix/sysv/linux/x86_64/ftruncate64.c: New file.
10793         * sysdeps/unix/sysv/linux/x86_64/fxstat.c: New file.
10794         * sysdeps/unix/sysv/linux/x86_64/fxstat64.c: New file.
10795         * sysdeps/unix/sysv/linux/x86_64/getdents.c: New file.
10796         * sysdeps/unix/sysv/linux/x86_64/getdents64.c: New file.
10797         * sysdeps/unix/sysv/linux/x86_64/getrlimit64.c: New file.
10798         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
10799         * sysdeps/unix/sysv/linux/x86_64/glob64.c: New file.
10800         * sysdeps/unix/sysv/linux/x86_64/lxstat.c: New file.
10801         * sysdeps/unix/sysv/linux/x86_64/lxstat64.c: New file.
10802         * sysdeps/unix/sysv/linux/x86_64/mmap64.c: New file.
10803         * sysdeps/unix/sysv/linux/x86_64/pread64.c: New file.
10804         * sysdeps/unix/sysv/linux/x86_64/profil-counter.h: New file.
10805         * sysdeps/unix/sysv/linux/x86_64/pwrite64.c: New file.
10806         * sysdeps/unix/sysv/linux/x86_64/readdir.c: New file.
10807         * sysdeps/unix/sysv/linux/x86_64/readdir64.c: New file.
10808         * sysdeps/unix/sysv/linux/x86_64/readdir64_r.c: New file.
10809         * sysdeps/unix/sysv/linux/x86_64/readdir_r.c: New file.
10810         * sysdeps/unix/sysv/linux/x86_64/recv.c: New file.
10811         * sysdeps/unix/sysv/linux/x86_64/register-dump.h: New file.
10812         * sysdeps/unix/sysv/linux/x86_64/send.c: New file.
10813         * sysdeps/unix/sysv/linux/x86_64/setrlimit64.c: New file.
10814         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: New file.
10815         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: New file.
10816         * sysdeps/unix/sysv/linux/x86_64/sigpending.c: New file.
10817         * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: New file.
10818         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: New file.
10819         * sysdeps/unix/sysv/linux/x86_64/statfs64.c: New file.
10820         * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: New file.
10821         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: New file.
10822         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: New file.
10823         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: New file.
10824         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: New file.
10825         * sysdeps/unix/sysv/linux/x86_64/syscall.S: New file.
10826         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: New file.
10827         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: New file.
10828         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: New file.
10829         * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
10830         * sysdeps/unix/sysv/linux/x86_64/truncate64.c: New file.
10831         * sysdeps/unix/sysv/linux/x86_64/umount.c: New file.
10832         * sysdeps/unix/sysv/linux/x86_64/vfork.S: New file.
10833         * sysdeps/unix/sysv/linux/x86_64/xstat.c: New file.
10834         * sysdeps/unix/sysv/linux/x86_64/xstat64.c: New file.
10835         * sysdeps/unix/x86_64/sysdep.S: New file.
10836         * sysdeps/unix/x86_64/sysdep.h: New file.
10837         * sysdeps/x86_64/Implies: New file.
10838         * sysdeps/x86_64/Makefile: New file.
10839         * sysdeps/x86_64/Versions: New file.
10840         * sysdeps/x86_64/__longjmp.S: New file.
10841         * sysdeps/x86_64/abort-instr.h: New file.
10842         * sysdeps/x86_64/atomicity.h: New file.
10843         * sysdeps/x86_64/bits/endian.h: New file.
10844         * sysdeps/x86_64/bits/setjmp.h: New file.
10845         * sysdeps/x86_64/bits/string.h: New file.
10846         * sysdeps/x86_64/bp-asm.h: New file.
10847         * sysdeps/x86_64/bsd-_setjmp.S: New file.
10848         * sysdeps/x86_64/bsd-setjmp.S: New file.
10849         * sysdeps/x86_64/dl-machine.h: New file.
10850         * sysdeps/x86_64/elf/initfini.c: New file.
10851         * sysdeps/x86_64/elf/start.S: New file.
10852         * sysdeps/x86_64/ffs.c: New file.
10853         * sysdeps/x86_64/ffsll.c: New file.
10854         * sysdeps/x86_64/fpu/bits/fenv.h: New file.
10855         * sysdeps/x86_64/fpu/bits/mathdef.h: New file.
10856         * sysdeps/x86_64/fpu/e_acosl.c: New file.
10857         * sysdeps/x86_64/fpu/e_atan2l.c: New file.
10858         * sysdeps/x86_64/fpu/e_exp2l.S: New file.
10859         * sysdeps/x86_64/fpu/e_expl.c: New file.
10860         * sysdeps/x86_64/fpu/e_fmodl.S: New file.
10861         * sysdeps/x86_64/fpu/e_log10l.S: New file.
10862         * sysdeps/x86_64/fpu/e_log2l.S: New file.
10863         * sysdeps/x86_64/fpu/e_logl.S: New file.
10864         * sysdeps/x86_64/fpu/e_powl.S: New file.
10865         * sysdeps/x86_64/fpu/e_rem_pio2l.c: New file.
10866         * sysdeps/x86_64/fpu/e_scalbl.S: New file.
10867         * sysdeps/x86_64/fpu/e_sqrtl.c: New file.
10868         * sysdeps/x86_64/fpu/fclrexcpt.c: New file.
10869         * sysdeps/x86_64/fpu/fedisblxcpt.c: New file.
10870         * sysdeps/x86_64/fpu/feenablxcpt.c: New file.
10871         * sysdeps/x86_64/fpu/fegetenv.c: New file.
10872         * sysdeps/x86_64/fpu/fegetexcept.c: New file.
10873         * sysdeps/x86_64/fpu/fegetround.c: New file.
10874         * sysdeps/x86_64/fpu/feholdexcpt.c: New file.
10875         * sysdeps/x86_64/fpu/fesetenv.c: New file.
10876         * sysdeps/x86_64/fpu/fesetround.c: New file.
10877         * sysdeps/x86_64/fpu/fgetexcptflg.c: New file.
10878         * sysdeps/x86_64/fpu/fraiseexcpt.c: New file.
10879         * sysdeps/x86_64/fpu/fsetexcptflg.c: New file.
10880         * sysdeps/x86_64/fpu/ftestexcept.c: New file.
10881         * sysdeps/x86_64/fpu/libm-test-ulps: New file.
10882         * sysdeps/x86_64/fpu/math_ldbl.h: New file.
10883         * sysdeps/x86_64/fpu/printf_fphex.c: New file.
10884         * sysdeps/x86_64/fpu/s_atanl.c: New file.
10885         * sysdeps/x86_64/fpu/s_cosl.S: New file.
10886         * sysdeps/x86_64/fpu/s_expm1l.S: New file.
10887         * sysdeps/x86_64/fpu/s_fpclassifyl.c: New file.
10888         * sysdeps/x86_64/fpu/s_isinfl.c: New file.
10889         * sysdeps/x86_64/fpu/s_isnanl.c: New file.
10890         * sysdeps/x86_64/fpu/s_log1pl.S: New file.
10891         * sysdeps/x86_64/fpu/s_logbl.c: New file.
10892         * sysdeps/x86_64/fpu/s_nextafterl.c: New file.
10893         * sysdeps/x86_64/fpu/s_nexttoward.c: New file.
10894         * sysdeps/x86_64/fpu/s_nexttowardf.c: New file.
10895         * sysdeps/x86_64/fpu/s_rintl.c: New file.
10896         * sysdeps/x86_64/fpu/s_significandl.c: New file.
10897         * sysdeps/x86_64/fpu/s_sincosl.S: New file.
10898         * sysdeps/x86_64/fpu/s_sinl.S: New file.
10899         * sysdeps/x86_64/fpu/s_tanl.S: New file.
10900         * sysdeps/x86_64/gmp-mparam.h: New file.
10901         * sysdeps/x86_64/hp-timing.c: New file.
10902         * sysdeps/x86_64/hp-timing.h: New file.
10903         * sysdeps/x86_64/htonl.S: New file.
10904         * sysdeps/x86_64/memusage.h: New file.
10905         * sysdeps/x86_64/setjmp.S: New file.
10906         * sysdeps/x86_64/soft-fp/sfp-machine.h: New file.
10907         * sysdeps/x86_64/stackinfo.h: New file.
10908         * sysdeps/x86_64/sysdep.h: New file.
10909         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: New file.
10911         * sysdeps/ieee754/ldbl-128/s_erfl.c: New file, contributed Stephen
10912         L Moshier.
10914 2001-09-18  Ulrich Drepper  <drepper@redhat.com>
10916         * malloc/malloc.c (ptmalloc_init): Handle _environ==NULL.
10917         Reported by B. D. Elliott <bde@nwlink.com> [PR libc/2541].
10919 2001-09-18  Andreas Schwab  <schwab@suse.de>
10921         * elf/dl-load.c (_dl_map_object_from_fd): Update handling of scope
10922         list, now that l_scope is a pointer.
10924         * elf/dl-open.c (dl_open_worker): Fix thinko when enlarging the
10925         scope list.
10927 2001-09-18  kaz Kojima  <kkojima@rr.iij4u.or.jp>
10929         * sysdeps/sh/dl-machine.h (elf_machine_rela): Fix reverse condition.
10930         (elf_machine_rela_relative): Add a missing declaration.
10932 2001-09-18  Jakub Jelinek  <jakub@redhat.com>
10934         * sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed: New file.
10935         * sysdeps/unix/sysv/linux/s390/ldd-rewrite.sed: New file.
10936         * sysdeps/unix/sysv/linux/configure.in: Add ia64 and s390
10937         ldd-rewrite scripts.
10939 2001-09-18  Ulrich Drepper  <drepper@redhat.com>
10941         * elf/ldd.bash.in: Update copyright message.
10943 2001-09-17  H.J. Lu  <hjl@gnu.org>
10945         * hurd/hurdmalloc.c (bcopy): Removed.
10946         (realloc): Replace bcopy with memcpy.
10947         * hurd/path-lookup.c (file_name_path_scan): Likewise.
10948         * resolv/gethnamaddr.c (map_v4v6_address): Likewise.
10949         * sunrpc/rpcinfo.c (pmapdump): Likewise.
10951         * resolv/gethnamaddr.c (getanswer): Replace bcopy with memmove.
10952         (gethostbyaddr): Likewise.
10953         * sunrpc/rpcinfo.c (get_inet_address): Likewise.
10955 2001-09-18  Ulrich Drepper  <drepper@redhat.com>
10957         * sysdeps/gnu/eval.c: Removed.
10959 2001-09-18  Andreas Jaeger  <aj@suse.de>
10961         * sysdeps/i386/fpu/s_logbl.S: Move to ...
10962         * sysdeps/i386/fpu/s_logbl.c: ...here, use inline assembler.
10964         * sysdeps/i386/fpu/s_rintl.S: Move to ...
10965         * sysdeps/i386/fpu/s_rintl.c: ...here, use inline assembler.
10967         * sysdeps/i386/fpu/s_significandl.S: Move to ...
10968         * sysdeps/i386/fpu/s_significandl.c: ...here, use inline assembler.
10970 2001-09-16  Ulrich Drepper  <drepper@redhat.com>
10972         * string/strcoll.c [USE_IN_EXTENDED_LOCALE_MODEL]: Correctly get
10973         nrules value.
10975 2001-09-14  H.J. Lu  <hjl@gnu.org>
10977         * sysdeps/mips/fpu/libm-test-ulps: Updated.
10979 2001-09-14  Ulrich Drepper  <drepper@redhat.com>
10981         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Fix a typo.
10982         Patch by Florian La Roche <laroche@redhat.com>.
10984         * string/bits/string2.h (__strtok_r_1c): Optimize a bit.
10986         * sysdeps/unix/sysv/linux/net/ethernet.h: Correct references to
10987         ETHER_CRC_LEN.
10989 2001-09-14  Andreas Schwab  <schwab@suse.de>
10991         * posix/execl.c: Fix last argument of memcpy.  Reported by Brian
10992         Sumner <bls@sgi.com>.
10993         * posix/execlp.c: Likewise.
10995 2001-09-13  Jakub Jelinek  <jakub@redhat.com>
10997         * elf/dl-deps.c (_dl_map_object_deps): Fix filter handling if filter
10998         is already found earlier in the search scope.
11000 2001-09-12  Jakub Jelinek  <jakub@redhat.com>
11002         * rt/Makefile (LDFLAGS-rt.so): Use shared thread library as librt's
11003         filter.
11005 2001-09-13  Ulrich Drepper  <drepper@redhat.com>
11007         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust expected errors for j0.
11009 2001-09-12  Ulrich Drepper  <drepper@redhat.com>
11011         * config.h.in: Enforce optimization to be used.
11012         * Makeconfig (preprocess-versions): Define ASSEMBLER.
11013         * stdlib/Makefile (isomac-CFLAGS): Define to -O.
11014         * posix/Makefile (annexc-CFLAGS): Define to -O.
11015         * sysdeps/unix/make-syscalls.sh: Define __OPTIMIZE__ in use of asm_CPP.
11017 2001-09-11  Ulrich Drepper  <drepper@redhat.com>
11019         * nscd/nscd_gethst_r.c: Don't expect IPv6 addresses for IPv4 lookup.
11020         Patch by Stephan Kulow.
11022 2001-09-08  Ben Collins  <bcollins@debian.org>
11024         * sysdeps/arm/dl-machine.h (elf_machine_rel): Fix thinko in
11025         usage of RESOLVE() (r_type, not reloc->r_type).
11027 2001-09-08  Ulrich Drepper  <drepper@redhat.com>
11029         * elf/dl-object.c: Avoid allocating extra memory block for name.
11030         * elf/dl-close.c (_dl_close): Don't free l_libname if it is not
11031         allocated separately.
11032         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
11034 2001-09-08  H.J. Lu  <hjl@gnu.org>
11036         * po/zh_TW.po: Fix a typo.
11038 2001-09-07  Tom Rix  <trix@redhat.com>
11040         * sysdeps/unix/sysv/aix/sysv_termio.h: New file.
11042 2001-08-26  Tom Rix  <trix@redhat.com>
11044         * sysdeps/unix/sysv/aix/Makefile (aix-syscalls.o): More linker
11045         command line options.
11046         * sysdeps/unix/sysv/aix/start.s: New file, rework of start.c
11047         * sysdeps/unix/sysv/aix/start.c: Removed.
11048         * sysdeps/unix/sysv/aix/start-libc.c: New file.
11049         * sysdeps/unix/sysv/aix/init-first.c: New file.
11050         * sysdeps/unix/sysv/aix/fcntl.c: Alias __libc_fcntl to __fcntl.
11052 2001-09-08  Ben Collins  <bcollins@debian.org>
11054         * sysdeps/arm/dl-machine.h: Fix usage of new _dl_signal_error() format.
11055         * sysdeps/generic/dl-machine.h: Likewise.
11056         * sysdeps/hppa/dl-fptr.c: Likewise.
11057         * sysdeps/ia64/dl-fptr.c: Likewise.
11058         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
11059         * sysdeps/mips/dl-machine.h: Likewise.
11060         * sysdeps/mips/mips64/dl-machine.h: Likewise.
11061         * sysdeps/powerpc/dl-machine.c: Likewise.
11063 2001-09-07  Ben Collins  <bcollins@debian.org>
11065         * sysdeps/sparc/sparc32/dl-machine.h: Fix typo.
11067         * sysdeps/hppa/dl-lookupcfg.h: Forward declare struct link_map.
11069 2001-09-08  Ulrich Drepper  <drepper@redhat.com>
11071         * elf/dl-lookup.c (add_dependency): Bump l_opencount of all
11072         dependencies if necessary.
11074         * elf/dl-close.c (_dl_close): If object has no r_list (i.e., wasn't
11075         loaded directly) determine length if l_initfini list by iterating
11076         over its elements.  Minor optimizations.
11077         * elf/dl-deps.c (_dl_map_object_deps): Always add own map to l_initfini
11078         for dependency objects.
11079         If object was already loaded check whether any of the dependencies
11080         is already on the relocation dependency list.  If yes, remove the
11081         latter.  Minor optimizations.
11082         * elf/dl-lookup.c (add_dependency): Add check for self reference of
11083         maps here.  Search l_initfini list only if the object was loaded
11084         directly and not only as a dependency.
11085         (_dl_lookup_symbol): Add relocation dependency also if object
11086         is not in global scope.  Remove test for self-reference here.
11087         (_dl_lookup_versioned_symbol): Likewise.
11088         * elf/dl-object (_dl_new_object): Cleanup.  Initialize dont_free
11089         element of first name record.
11090         * elf/loadtest.c: Add some more test to recognize early if an object
11091         wasn't unloaded.
11092         * elf/Makefile: Add rules to build and run reldep5.
11093         * elf/reldep5.c: New file.
11094         * elf/reldepmod5.c: New file.
11095         * elf/reldepmod6.c: New file.
11097         * elf/reldep2.c: Fix typo.
11099 2001-09-07  Ulrich Drepper  <drepper@redhat.com>
11101         * include/link.h (struct link_map): Add l_scope_mem and l_scope_max
11102         elements.  Change l_scope to be a pointer only.
11103         * elf/dl-object.c (_dl_new_object): Initialize l_scope and l_scope_max.
11104         * elf/dl-open.c (dl_open_worker): If dependency wasn't just opened
11105         here add searchlist of newly open file to the dependency's scope.
11106         * elf/dl-close.c (_dl_close): If dependency is used otherwise remove
11107         only searchlist from its scope.  Free own scope array if necessary.
11108         * elf/Makefile (tests): Add dblload and dblunload now.
11110 2001-09-06  Andreas Jaeger  <aj@suse.de>
11112         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: New file, contributed
11113         Stephen L Moshier.
11115 2001-09-05  Ulrich Drepper  <drepper@redhat.com>
11117         * elf/Makefile: Add rules to build new tests.  Don't run them yet since
11118         they both fail.
11119         * elf/dblload.c: New file.
11120         * elf/dblloadmod1.c: New file.
11121         * elf/dblloadmod2.c: New file.
11122         * elf/dblloadmod3.c: New file.
11123         * elf/dblunload.c: New file.
11125 2001-09-04  Richard Henderson  <rth@redhat.com>
11127         * elf/elf.h (R_ALPHA_OP_*, R_ALPHA_IMMED_*): Remove.
11128         (R_ALPHA_GPREL16): Rename from R_ALPHA_IMMED_GP_16.
11130 2001-09-04  Ulrich Drepper  <drepper@redhat.com>
11132         Correct very misleading message for error in failed runtime relocation.
11133         * elf/dl-error.c (_dl_signal_error): Take extra parameter to describe
11134         place of the error.
11135         (_dl_signal_cerror): Likewise.
11136         * sysdeps/generic/ldsodefs.h: Adjust prototypes.
11137         * elf/dl-close.c: Likewise.
11138         * elf/dl-deps.c: Likewise.
11139         * elf/dl-load.c: Likewise.
11140         * elf/dl-lookup.c: Likewise.
11141         * elf/dl-open.c: Likewise.
11142         * elf/dl-reloc.c: Likewise.
11143         * elf/dl-sym.c: Likewise.
11144         * elf/dl-version.c: Likewise.
11145         * sysdeps/generic/dl-sysdep.c: Likewise.
11147 2001-09-04  Jakub Jelinek  <jakub@redhat.com>
11149         * iconv/strtab.c (strtabinit): Initialize null Strent.
11150         (newstring): Move len == 0 handling...
11151         (strtabadd): ...here.
11152         If len == 1, return null Strent.
11153         When inserting a suffix of an existing string, check if
11154         it is not equal to some suffix already recorded.
11155         Copy left and right members over if adding longer string.
11157 2001-09-04  Jakub Jelinek  <jakub@redhat.com>
11159         * sunrpc/rpc_cout.c (upcase): Account for trailing '\0'.
11161         * sysdeps/unix/sysv/linux/alpha/gethostname.c: Include <errno.h>.
11162         (__syscall_gethostname): Add prototype.
11164 2001-09-04  Ulrich Drepper  <drepper@redhat.com>
11166         * elf/dl-object.c (_dl_new_object): Remove unnecessary if.
11168 2001-09-02  Ulrich Drepper  <drepper@redhat.com>
11170         * elf/rtld.c (dl_main): Increment l_opencount for main binary.
11172 2001-08-27  Roland McGrath  <roland@frob.com>
11174         * sysdeps/unix/sysv/gethostname.c (__gethostname): When LEN is too
11175         short, copy that much into NAME anyway before returning error.
11177 2001-09-01  Richard Henderson  <rth@redhat.com>
11179         * sysdeps/alpha/elf/Dist: Remove file.
11180         * sysdeps/alpha/elf/Makefile: Remove file.
11181         * sysdeps/alpha/elf/crtbegin.S: Remove file.
11182         * sysdeps/alpha/elf/crtend.S: Remove file.
11183         * sysdeps/alpha/elf/initfini.c: New file.
11185 2001-09-01  Mark Kettenis  <kettenis@gnu.org>
11187         * iconv/tst-iconv1.c: Include <stddef.h> for wchar_t.
11188         * iconv/tst-iconv3.c: Likewise.
11190 2001-09-01  Jakub Jelinek  <jakub@redhat.com>
11192         * sysdeps/generic/inttypes.h (__gwchar_t): Define to wchar_t for C++.
11194 2001-09-01  Ulrich Drepper  <drepper@redhat.com>
11196         * iconv/gconv_cache.c: Rename variable cache to __gconv_cache and
11197         export it.
11198         * iconv/Versions (libc) [GLIBC_2.2.5]: Export __gconv_cache.
11199         * iconv/iconv_prog.c (insert_cache): New function.
11200         (print_known_names): If cache is used call insert_cache to use the
11201         information from the cache [PR libc/2509].
11203 2001-08-31  Ulrich Drepper  <drepper@redhat.com>
11205         * time/strptime.c (strptime_internal): Recognize 'l' format and
11206         handle it like 'I' for symmetry with strftime.
11208 2001-08-31  Richard Henderson  <rth@redhat.com>
11210         * elf/dl-support.c (_dl_cpuclock_offset): Protect with NONAVAIL.
11211         (HP_TIMING_AVAIL): Set to HP_SMALL_TIMING_AVAIL if present.
11212         * elf/rtld.c (HP_TIMING_AVAIL): Likewise.
11213         (print_statistics): Make scalar unsigned long long.
11214         * sysdeps/alpha/hp-timing.h: New file.
11216 2001-08-31  Jakub Jelinek  <jakub@redhat.com>
11218         * stdio-common/perror.c (perror): Save errno early, pass it
11219         down to perror_internal.
11220         (perror_internal): Add errnum argument.
11222 2001-08-31  Jakub Jelinek  <jakub@redhat.com>
11224         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Remove unused code.
11225         Don't add old memory content for R_ALPHA_REFQUAD.
11227 2001-08-30  Ulrich Drepper  <drepper@redhat.com>
11229         * crypt/md5-crypt.c (__md5_crypt_r): Compute used and required
11230         memory correctly.
11232         * sysdeps/unix/sysv/linux/ia64/ioperm.c (_ioperm): Use __open
11233         instead of open, __close instead of close, __getpagesize instead
11234         of getpagesize.
11236         * string/argz-stringify.c (__argz_stringify): Use __strnlen
11237         instead of strnlen.
11238         * include/string.h (strndupa): Redefine here to use __strnlen
11239         instead of strnlen.
11240         * string/strndup.c (__strndup): Use __strnlen not strnlen.
11242         * misc/syslog.c (vsyslog): Fix typo in last change (connect ->
11243         connected).
11245 2001-08-30  Jakub Jelinek  <jakub@redhat.com>
11247         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Don't handle
11248         R_ALPHA_RELATIVE if RTLD_BOOTSTRAP and HAVE_Z_COMBRELOC.  Only check
11249         for rtld map if neither RTLD_BOOTSTRAP nor HAVE_Z_COMBRELOC is defined.
11250         * sysdeps/i386/dl-machine.h (elf_machine_rel): Similarly.
11251         * sysdeps/ia64/dl-machine.h (elf_machine_rel): Similarly.
11252         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rel): Similarly.
11253         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rel): Similarly.
11255 2001-08-30  Ulrich Drepper  <drepper@redhat.com>
11257         * sysdeps/alpha/fpu/libm-test-ulps: Adjust j0 ULPs.
11259 2001-08-30  Andreas Jaeger  <aj@suse.de>
11261         * sysdeps/ieee754/ldbl-128/e_jnl.c: New file,
11262         contributed Stephen L Moshier.
11264 2001-08-30  Jakub Jelinek  <jakub@redhat.com>
11266         * sunrpc/etc.rpc (sgi_fam): Add.
11268 2001-08-30  Ulrich Drepper  <drepper@redhat.com>
11270         * sysdeps/unix/sysv/linux/alpha/gethostname.c: New file.
11272 2001-08-29  Ulrich Drepper  <drepper@redhat.com>
11274         * nis/nis_findserv.c (__nis_findfastest): Don't fail if reply received
11275         first is from a previous call.
11276         Patch by Alexander Belopolsky <alexb@rentec.com> for [PR libc/3670].
11278 2001-08-29  Andreas Schwab  <schwab@suse.de>
11280         * sysdeps/ia64/fpu/libm-test-ulps: Updated.
11282 2001-08-25  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
11284         * config.make.in (INSTALL_SCRIPT): Define.
11285         * Makeconfig (INSTALL_SCRIPT): Define.
11286         * Makerules (do-install-script): New macro to install scripts using
11287         INSTALL_SCRIPT.
11288         (install-bin-script): New rule to install scripts with
11289         do-install-script.
11290         (install-bin-script-nosubdir): New rule.
11291         (install-no-libc.a-nosubdir): Add install-bin-script-nosubdir.
11292         (distinfo-vars): Add $(install-bin-script).
11293         * Rules (others): Likewise.
11294         * Makefile (glibcbug): Install with install-bin-script.
11295         * debug/Makefile (xtrace): Likewise.
11296         (catchsegv): Likewise.
11297         * elf/Makefile (ldd): Likewise.
11298         * malloc/Makefile (mtrace): Likewise.
11299         * timezone/Makefile (tzselect): Likewise.
11301 2001-08-29  H.J. Lu  <hjl@gnu.org>
11303         * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Pass
11304         ELF_RTYPE_CLASS_PLT, instead of R_MIPS_REL32, to
11305         _dl_lookup_versioned_symbol () and _dl_lookup_symbol ().
11307 2001-08-29  Andreas Schwab  <schwab@suse.de>
11309         * sysdeps/m68k/fpu/libm-test-ulps: Updated.
11311 2001-08-28  H.J. Lu  <hjl@gnu.org>
11313         * Makeconfig (combreloc-LDFLAGS): New variable.
11314         Add it to LDFLAGS.so, LDFLAGS-rtld, and +link.
11315         * config.make.in (have-z-combreloc): New variable.
11316         * configure.in: Substitute libc_cv_z_combreloc.
11318 2001-08-29  Ulrich Drepper  <drepper@redhat.com>
11320         * po/sv.po: Update from translation team.
11321         * po/fr.po: Likewise.
11322         * po/da.po: Likewise.
11324 2001-08-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
11326         * Makerules: Fix a typo: MD% -> MD5.
11328 2001-08-28  Ulrich Drepper  <drepper@redhat.com>
11330         * sunrpc/rpc_hout.c (pargdef): Function must take pointer to object.
11331         Patch by Patrick Duval <Patrick.Duval@devinci.fr>.
11333 2001-08-28  Andreas Jaeger  <aj@suse.de>
11335         * manual/libc-texinfo.sh: Add entry about free manuals.
11337         * manual/contrib.texi (Contributors): Fix cross reference.
11339         * manual/libc.texinfo (Copying): Include freemanuals.
11341         * manual/Makefile (appendices): Add freemanuals.
11343         * manual/freemanuals.texi: New file.
11344         Patch by Brian Youmans <3diff@gnu.org>.
11346         * manual/libm-err-tab.pl: Pretty print more platforms, print a
11347         smaller table.
11349         * manual/math.texi (Errors in Math Functions): Fix grammar, start
11350         table on separate page.
11351         Patch by Brian Youmans <3diff@gnu.org>.
11353 2001-08-27  Ulrich Drepper  <drepper@redhat.com>
11355         * misc/syslog.c (vsyslog): Try a bit harder to use syslogd.  If
11356         the connection went down after we first used it try to connect
11357         again and resend the message before printing to the console.
11358         Reported by Coserea Gh. Tudor <tudore@tudore.gecadsoftware.com>.
11360 2001-08-27  Jakub Jelinek  <jakub@redhat.com>
11362         * string/tst-strlen.c (main): Test strnlen (, -1) too.
11363         * sysdeps/generic/strnlen.c (__strnlen): Fix for maxlens with top
11364         bit set.
11366 2001-08-27  Ulrich Drepper  <drepper@redhat.com>
11368         * iconv/strtab.c (searchstring): Use correct length for comparison.
11369         (strtabadd): Account total size correct if new string has old string as
11370         substring.
11372 2001-08-27  Jakub Jelinek  <jakub@redhat.com>
11374         * elf/rtld.c (dl_main): Update call to _dl_lookup_symbol.
11376 2001-08-27  Andreas Jaeger  <aj@suse.de>
11378         * sysdeps/i386/fpu/libm-test-ulps (float): Add ulps for new tests.
11380         * math/libm-test.inc (j0_test): Add extra tests.
11381         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Use |x|,
11382         not x, in Hankel approximation.
11383         Patches by Stephen L Moshier.
11385 2001-08-26  Ulrich Drepper  <drepper@redhat.com>
11387         * sysdeps/ia64/dl-lookupcfg.h: Add forward declaration for struct
11388         link_map.
11390         * configure.in: Fix test for .rela.dyn section.
11392         * elf/dl-runtime.c: Update calls to _dl_lookup_*.
11394 2001-08-26  Jakub Jelinek  <jakub@redhat.com>
11396         * elf/dl-reloc.c (RESOLVE_MAP, RESOLVE): Use elf_machine_type_class
11397         instead of elf_machine_lookup_noexec_p and elf_machine_lookup_noplt_p.
11398         Pass type_class to _dl_lookup_*.
11399         * elf/dl-lookup.c (_dl_lookup_symbol): Take type_class parameter now.
11400         Pass around just type_class instead of noexec, noplt pair.
11401         (_dl_lookup_versioned_symbol): Likewise.
11402         (_dl_lookup_symbol_skip): Pass around just type_class instead of
11403         noexec, noplt pair.
11404         (_dl_lookup_versioned_symbol_skip): Likewise.
11405         (_dl_do_lookup, _dl_do_lookup_versioned): Likewise.
11406         * elf/do-lookup.h (do_lookup): Likewise.
11407         * include/link.h (struct link_map): Replace noexec and noplt fields
11408         in l_lookup_cache with type_class field.
11409         * sysdeps/generic/ldsodefs.h (ELF_RTYPE_CLASS_PLT,
11410         ELF_RTYPE_CLASS_COPY): Define.
11411         Adjust prototypes for _dl_lookup_symbol and
11412         _dl_lookup_versioned_symbol.
11413         * sysdeps/alpha/dl-machine.h (elf_machine_lookup_noplt_p,
11414         elf_machine_lookup_noexec_p): Remove.
11415         (elf_machine_type_class): Define.
11416         * sysdeps/arm/dl-machine.h: Likewise.
11417         * sysdeps/hppa/dl-machine.h: Likewise.
11418         * sysdeps/cris/dl-machine.h: Likewise.
11419         * sysdeps/i386/dl-machine.h: Likewise.
11420         * sysdeps/ia64/dl-machine.h: Likewise.
11421         * sysdeps/m68k/dl-machine.h: Likewise.
11422         * sysdeps/mips/mips64/dl-machine.h: Likewise.
11423         * sysdeps/mips/dl-machine.h: Likewise.
11424         * sysdeps/powerpc/dl-machine.h: Likewise.
11425         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
11426         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
11427         * sysdeps/sh/dl-machine.h: Likewise.
11428         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
11429         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
11431 2001-08-26  Ulrich Drepper  <drepper@redhat.com>
11433         * manual/message.texi (Advanced gettext functions): Change
11434         description of plural forms for Slovak.
11435         Reported by Marcel Telka <marcel@telka.sk>.
11437         * manuaL/time.texi (Low-Level Time String Parsing): Fix description of
11438         %z.  Reported by C. Scott Ananian <cananian@lesser-magoo.lcs.mit.edu>.
11440 2001-08-26  Jakub Jelinek  <jakub@redhat.com>
11442         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_lazy_rel): Fix a
11443         typo.  Patch by Florian La Roche <laroche@redhat.com>.
11445 2001-08-26  Ulrich Drepper  <drepper@redhat.com>
11447         * include/link.h (struct link_map): Add l_lookup_cache element.
11448         * elf/dl-reloc.c (RESOLVE): Add symbol caching here.
11449         (RESOLVE_MAP): Likewise.
11450         (_dl_relocate_object): Remove cache initialization.
11451         * elf/dl-lookup.c: Rip out cache handling code.
11452         * sysdeps/generic/ldsodefs.h: Remove lookup_cache struct and variable
11453         declarations.
11455         * elf/dl-lookup.c (_dl_lookup_symbol): Reorder some conditions and
11456         remove some __builtin_expect.
11457         (_dl_lookup_versioned_symbol): Likewise.
11459         * config.h.in: Add HAVE_Z_COMBRELOC.
11460         * configure.in: Add test for -z combreloc.
11462         * sysdeps/i386/dl-machine.h (elf_machine_rel): Minor cleanups and
11463         optimizations.  Use HAVE_Z_COMBRELOC to avoid generaton of
11464         R_386_RELATIVE handling for ld.so startup.  Reduce RTLD_BOOTSTRAP
11465         case to almost no code.
11467 2001-08-25  Ulrich Drepper  <drepper@redhat.com>
11469         * po/tr.po: Update from translation team.
11471 2001-08-24  Andreas Jaeger  <aj@suse.de>
11473         * iconv/Makefile (extra-objs): Add iconvconfig-modules so that
11474         make clean works.
11476 2001-08-24  Ulrich Drepper  <drepper@redhat.com>
11478         * elf/rtld.c (print_statistics): Printf % after percent values.
11479         * elf/dl-misc.c (_dl_debug_vdprintf): Implement %%.
11481         * elf/dl-lookup.c (_dl_lookup_symbol): If we use the cache we
11482         don't have to compute the hash value and initialize current_value.
11483         Move reference_name variable to where it is needed.
11484         (_dl_lookup_versioned_symbol): Likewise.
11486 2001-08-24  Roland McGrath  <roland@frob.com>
11488         * string/tester.c (test_strerror): Don't use _sys_errlist/_sys_nerr.
11489         Just test that strerror returns non-null for a few errno codes.
11491 2001-08-23  Roland McGrath  <roland@frob.com>
11493         * hurd/Versions (libc: GLIBC_2.2.5): New set; add _hurd_raise_signal,
11494         _hurdsig_interrupt_timeout, _hurdsig_fault_preemptor.
11496         * sysdeps/posix/shm_unlink.c (shm_unlink): __unlink -> unlink.
11498         * mach/Versions (libc: GLIBC_2.2.5): New set; add __mach_msg_destroy,
11499         __mach_reply_port.
11501 2001-08-24  Ulrich Drepper  <drepper@redhat.com>
11503         * nss/test-netdb.c (test_hosts): Don't segfault if gethostname
11504         returns NULL.
11506         * elf/do-rel.h (elf_dynamic_do_rel): Fix problem with ld.so
11507         startup.  Explicitly remove lazy part for RTLD_BOOTSTRAP since gcc
11508         doesn't do it.
11509         * elf/rtld.c: Include <sys/param.h>.
11510         * elf/dl-reloc.c: Likewise.
11512 2001-08-24  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
11514         * sysdeps/unix/sysv/linux/mips/configure.in: Define AC_SUBST to
11515         empty to prevent junk from being generated.
11516         * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
11518 2001-08-24  Jakub Jelinek  <jakub@redhat.com>
11520         * elf/do-rel.h (elf_dynamic_do_rel): If l_addr is 0, skip relative
11521         records.  Rename endrel to relative, initialize it to r, and use it
11522         in elf_machine_rel_relative calls.  Point r after relative relocs.
11524 2001-08-24  Ulrich Drepper  <drepper@redhat.com>
11526         * sysdeps/i386/dl-machine.h (elf_machine_rel): Correct prediction
11527         of R_386_NONE.
11529 2001-08-24  Jakub Jelinek  <jakub@redhat.com>
11531         * elf/do-rel.h (elf_machine_rel_relative): Define for rela if
11532         necessary.  Undefine newly defined macros at the end.
11533         * sysdeps/hppa/dl-machine.h (elf_machine_rela_relative):
11534         Rename from elf_machine_rel_relative.
11535         * sysdeps/cris/dl-machine.h (elf_machine_rela_relative): Likewise.
11536         * sysdeps/m68k/dl-machine.h (elf_machine_rela_relative): Likewise.
11537         * sysdeps/powerpc/dl-machine.h (elf_machine_rela_relative): Likewise.
11538         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela_relative):
11539         Likewise.
11540         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela_relative):
11541         Likewise.
11542         * sysdeps/ia64/dl-machine.h (elf_machine_rela_relative): Likewise.
11543         Fix argument types.
11544         * sysdeps/alpha/dl-machine.h (elf_machine_rela_relative): Likewise.
11545         Fix argument types.
11546         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela_relative):
11547         Likewise.  Fix argument types.
11548         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela_relative):
11549         Likewise.  Fix argument types.
11550         * sysdeps/sh/dl-machine.h (elf_machine_rela_relative): Likewise.
11551         Fix argument types.
11552         * sysdeps/mips/dl-machine.h (elf_machine_rel_relative): Use
11553         ElfW(Rel) in argument.
11554         * sysdeps/mips/mips64/dl-machine.h (elf_machine_rel_relative): New
11555         function.
11557 2001-08-24  Alexandre Oliva  <aoliva@redhat.com>
11559         * sysdeps/sh/dl-machine.h (elf_machine_rela): Fix typo.
11561 2001-08-24  Andreas Jaeger  <aj@suse.de>
11563         * sysdeps/ieee754/ldbl-128/e_j1l.c: New file, contributed by
11564         Stephen L Moshier <moshier@mediaone.net>.
11566 2001-08-24  Ulrich Drepper  <drepper@redhat.com>
11568         * elf/do-rel.h (elf_dynamic_do_rel): RELATIVE relocations comes
11569         first if RELCOUNT is set.
11571         * elf/do-rel.h (elf_dynamic_do_rel): If not relocating lazily, don't
11572         call elf_machine_rel for the last DT_RELCOUNT relocations but instead
11573         elf_machine_rel_relative.
11574         * sysdeps/alpha/dl-machine.h: Define elf_machine_rel_relative.
11575         Minor optimizations.
11576         * sysdeps/arm/dl-machine.h: Likewise.
11577         * sysdeps/cris/dl-machine.h: Likewise.
11578         * sysdeps/hppa/dl-machine.h: Likewise.
11579         * sysdeps/i386/dl-machine.h: Likewise.
11580         * sysdeps/ia64/dl-machine.h: Likewise.
11581         * sysdeps/m68k/dl-machine.h: Likewise.
11582         * sysdeps/mips/dl-machine.h: Likewise.
11583         * sysdeps/powerpc/dl-machine.h: Likewise.
11584         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
11585         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
11586         * sysdeps/sh/dl-machine.h: Likewise.
11587         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
11588         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
11590 2001-08-23  Roland McGrath  <roland@frob.com>
11592         * rt/tst-aio4.c [! SIGRTMIN] (SIGRTMIN, SIGRTMAX): Define as -1.
11594         * sysdeps/mach/hurd/bits/libc-lock.h: New file, initially copied from
11595         sysdeps/mach version.  Implement counting ("recursive") mutexes
11596         on top of cthreads mutexes.
11597         * sysdeps/mach/hurd/bits/stdio-lock.h: File removed; generic now works.
11599         * sysdeps/generic/bits/stdio-lock.h (_IO_lock_initializer): Define to
11600         _LIBC_LOCK_RECURSIVE_INITIALIZER if defined, else do an #error.
11601         (__libc_cleanup_region_start, __libc_cleanup_region_end,
11602         __libc_clean_end): Define these to call the cleanup function after
11603         normal exit when they're supposed to.
11605         * sysdeps/mach/bits/libc-lock.h (__libc_cleanup_region_start):
11606         Take new first arg DOIT, a boolean saying whether to really install
11607         any cleanup handler.
11608         (__libc_cleanup_region_end): Do nothing if start's DOIT arg was zero.
11609         (__libc_cleanup_end): Likewise.
11610         * sysdeps/generic/bits/libc-lock.h: Same changes.
11611         * stdio-common/vfscanf.c (LOCK_STREAM): Pass new arg.
11612         * stdio-common/vfprintf.c (buffered_vfprintf, vfprintf): Likewise.
11613         * sysdeps/mach/hurd/bits/stdio-lock.h (_IO_cleanup_region_start):
11614         Likewise.
11615         * misc/syslog.c (vsyslog, openlog, closelog): Likewise.
11616         * sysdeps/generic/bits/stdio-lock.h
11617         (_IO_cleanup_region_start, _IO_cleanup_region_start_noarg): Likewise.
11619 2001-08-23  Jakub Jelinek  <jakub@redhat.com>
11621         * elf/ldconfig.c (search_dir): Remove stale symlinks.
11623 2001-08-23  Jakub Jelinek  <jakub@redhat.com>
11625         * elf/dl-lookup.c (lookup_cache, lookup_cache_versioned): New
11626         functions.
11627         (_dl_lookup_symbol): Lookup relocations in cache and store successfull
11628         lookups in cache.
11629         (_dl_lookup_versioned_symbol): Likewise.
11630         * elf/dl-reloc.c (_dl_relocate_object): Initialize cache for
11631         relocation lookup.
11632         * elf/rtld.c (print_statistics): Output _dl_num_cache_relocations.
11633         * sysdeps/generic/ldsodefs.h (struct lookup_cache): New definition.
11634         (lookup_cache, lookup_cache_versioned): Add declarations.
11636 2001-08-23  Ulrich Drepper  <drepper@redhat.com>
11638         * stdlib/tst-random.c (main): Swap parameters in fail call.
11639         Patch by Pete Bevin <pete@petebevin.com>.
11641 2001-08-23  Jakub Jelinek  <jakub@redhat.com>
11643         * sysdeps/generic/inttypes.h: Use __gwchar_t instead of __wchar_t.
11645 2001-08-23  Ulrich Drepper  <drepper@redhat.com>
11647         * malloc/obstack.c: Indent preprocessor directives.
11648         Patch by Jim Meyering <meyering@ascend.com>.
11650         * po/ja.po: Update from translation team.
11652 2001-08-23  Roland McGrath  <roland@frob.com>
11654         * libio/tst-ungetwc1.c (main): Add a const to quiet a warning.
11656         * nss/test-netdb.c (test_hosts): Don't use MAXHOSTNAMELEN.
11657         Instead, use dynamic buffer to test gethostname's ENAMETOOLONG error.
11659 2001-08-22  Roland McGrath  <roland@frob.com>
11661         * sysdeps/generic/ldsodefs.h (_dl_load_lock): Declare it here with
11662         __libc_lock_define_recursive.
11663         * elf/dl-open.c: Don't declare it here any more.
11664         * elf/dl-close.c: Likewise.
11665         * elf/dl-lookup.c: Likewise.
11666         * elf/dl-iteratephdr.c: Likewise.
11667         * elf/dl-lookup.c (add_dependency): Use __libc_lock_lock_recursive and
11668         __libc_lock_unlock_recursive.
11669         * elf/dl-close.c (_dl_close): Likewise
11670         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise
11671         * elf/dl-open.c (_dl_open): Likewise
11673         * sysdeps/generic/bits/libc-lock.h
11674         (__libc_lock_define_recursive): New macro.
11675         * sysdeps/generic/bits/stdio-lock.h (_IO_lock_t): Use it.
11676         (_IO_lock_lock): Use __libc_lock_lock_recursive.
11677         (_IO_lock_unlock): Use __libc_lock_unlock_recursive.
11679         * conform/conformtest.pl (checknamespace): Sort the output list.
11681         * sysdeps/generic/bits/poll.h (POLLWRBAND): New alias for POLLOUT.
11682         (POLLRDNORM, POLLRDBAND, POLLWRNORM, POLLWRBAND): Make these
11683         definitions conditional on [__USE_XOPEN].
11685         * sysdeps/mach/hurd/bits/fcntl.h (O_ASYNC, O_FSYNC, O_SYNC): Define
11686         these unconditionally, not only use [__USE_BSD], so as to match
11687         the sysdeps/unix/sysv/linux files.
11689 2001-08-22  Ulrich Drepper  <drepper@redhat.com>
11691         * test-skeleton.c (add_temp_file): Add __attribute__ ((unused)) to
11692         avoid warnings.
11694         * dlfcn/tst-dladdr.c (do_test): Get address of ref1 using
11695         DL_LOOKUP_ADDRESS.
11697 2001-08-22  Roland McGrath  <roland@frob.com>
11699         * sysdeps/generic/bits/sigaction.h (struct sigaction): Fix up
11700         conditionalization of sa_handler/sa_sigaction member types to
11701         match the sysdeps/unix/sysv/linux file.
11703 2001-08-22  Ulrich Drepper  <drepper@redhat.com>
11705         * elf/dl-addr.c (_dl_addr): Handle broken binaries with zero
11706         symbol sizes a bit better.
11708         * sysdeps/ia64/strncpy.S: Complete rewrite.
11709         Contributed by Jakub Jelinek <jakub@redhat.com>.
11711         * string/stratcliff.c (main): Add strncpy test.
11713 2001-08-22  Roland McGrath  <roland@frob.com>
11715         * sysdeps/generic/dl-environ.c: Include <stdlib.h> and <unistd.h>,
11716         and don't declare unsetenv or _environ directly.
11717         (unsetenv): Return int, not void.  Use __environ instead of _environ.
11719 2001-08-01  Mark Kettenis  <kettenis@gnu.org>
11721         * sysdeps/unix/bsd/bsd4.4/Makefile: New file.
11722         * sysdeps/unix/bsd/bsd4.4/Versions: New file.
11723         * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: New file.
11724         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Correct
11725         test for cmsg struct size.
11727 2001-04-23  Paul Eggert  <eggert@twinsun.com>
11729         * posix/getopt.h (getopt_long, getopt_long_only, _getopt_internal):
11730         Rename __argc to ___argc in prototypes to avoid compatibility
11731         problems with systems that reserve the identifier "__argc".
11732         Similarly for __argv.
11734 2001-08-21  Roland McGrath  <roland@frob.com>
11736         * stdio-common/tst-fseek.c: Include <time.h> for `time' declaration.
11738         * mach/Makefile (tests): Removed.
11739         * mach/hello.c: File removed.
11741 2001-08-22  Ulrich Drepper  <drepper@redhat.com>
11743         * po/sv.po: Update from translation team.
11745         * stdio-common/vfscanf.c: Fix handling of %l[].
11746         Reported by Mitsuru Chinen <mchinen@yamato.ibm.com>.
11748         * libio/Makefile (tests): Add tst-sscanf.
11749         * libio/tst-sscanf.c: New file.
11751         * elf/dl-addr.c (_dl_addr): Fix tests to determine dli_sname.
11752         * malloc/mtrace.c (tr_where): dli_sname always points to a
11753         non-empty string if != NULL.
11754         Reported by Tim Janik <timj@gtk.org>.
11756 2001-08-22  Jakub Jelinek  <jakub@redhat.com>
11758         * sunrpc/xdr_rec.c (xdrrec_create): Fix buf sizes before allocating
11759         buf.  Free resources on failure.
11760         * sunrpc/svc_unix.c (svcunix_create): Free resources on failure.
11761         (makefd_xprt): Likewise.
11762         * sunrpc/svc_udp.c (svcudp_bufcreate): Likewise.
11763         * sunrpc/svc_tcp.c (svctcp_create, makefd_xprt): Likewise.
11764         * sunrpc/auth_unix.c (authunix_create): Likewise.
11766 2001-08-21  Jakub Jelinek  <jakub@redhat.com>
11768         * string/strnlen.c: Remove.
11769         * sysdeps/generic/strnlen.c: New file.
11770         * sysdeps/i386/i486/bits/string.h (strnlen): Remove.
11772 2001-08-21  Roland McGrath  <roland@frob.com>
11774         * sysdeps/mach/i386/machine-sp.h (__thread_stack_pointer): Define this
11775         as a macro, not an extern inline function.
11777         * hurd/Versions (GLIBC_2.2.5): New set, define __hurd_fail here.
11778         * Versions.def (libc): Add GLIBC_2.2.5 set.
11779         * hurd/hurd.h (_HURD_H_EXTERN_INLINE): New macro.
11780         (__hurd_fail): Use that instead of _EXTERN_INLINE in decl.
11782 2001-08-20  Roland McGrath  <roland@frob.com>
11784         * hurd/hurdlookup.c (__hurd_file_name_lookup): Fail with ENOENT for "".
11785         (__hurd_file_name_split, __hurd_directory_name_split): Likewise.
11787 2001-08-21  Ulrich Drepper  <drepper@redhat.com>
11789         * string/bits/string2.h: Remove strnlen optimization here.
11790         * sysdeps/i386/i486/bits/string.h: Add it here.
11792 2001-08-21  Wolfram Gloger  <wg@malloc.de>
11794         * malloc/malloc.c: Make access to ..._hook pointers thread-safe.
11796 2001-08-21  Ulrich Drepper  <drepper@redhat.com>
11798         * po/gl.po: Update from translation team.
11800 2001-08-20  Ulrich Drepper  <drepper@redhat.com>
11802         * misc/error.c (error_tail): Use fputws_unlocked instead of fputws.
11803         * misc/err.c (convert_and_print): Likewise.
11805         * malloc/obstack.c (print_and_abort): Use fprintf instead of two
11806         function calls.
11808 2001-08-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
11810         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Revert the
11811         change of the gregset_t type.
11812         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
11814 2001-08-20  kaz Kojima  <kkojima@rr.iij4u.or.jp>
11816         * sysdeps/unix/sysv/linux/sh/sysdep.S: Align errno.
11818 2001-08-20  Ulrich Drepper  <drepper@redhat.com>
11820         * posix/regex.c (truncate_wchar): Use wcrtomb not wctomb.
11822         * string/strnlen.c: Fix the implementation.  We cannot use memchr.
11824 2001-08-18  Mark Kettenis  <kettenis@gnu.org>
11826         * sysdeps/mach/hurd/i386/init-first.c (init): Initialize __environ
11827         before calling the cthreads initialization code.
11829 2001-08-20  Ulrich Drepper  <drepper@redhat.com>
11831         * argp/argp-help.c: Fix two problems introduced in last change.
11833         * include/dirent.h: Include <dirstream.h> first.
11835 2001-08-19  Ulrich Drepper  <drepper@redhat.com>
11837         * io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat.
11839         * sunrpc/svcauth_des.c (_svcauth_des): Avoid using bcopy.
11840         * sunrpc/xdr_rec.c: Likewise.
11841         * sunrpc/xdr_mem.c: Likewise.
11842         * sunrpc/svc_authux.c (_svcauth_unix): Likewise.
11843         * sunrpc/rpc_cmsg.c: Likewise.
11844         * sunrpc/getrpcport.c (getrpcport): Likewise.
11845         * sunrpc/clnt_simp.c (callrpc): Likewise.
11846         * sunrpc/clnt_gen.c (clnt_create): Likewise.
11847         * string/envz.c: Likewise.
11849         * po/ko.po: Update from translation team.
11851         * argp/argp-help.c: Handle wide oriented stderr stream.
11853 2001-08-18  Ulrich Drepper  <drepper@redhat.com>
11855         * sysdeps/generic/strtol.c: Little optimizations.  Add some
11856         __builtin_expect.
11858         * conform/conformtest.pl: <inttypes.h> test requires <stddef.h>.
11860         * wcsmbs/wchar.h (wcwdith): Change parameter type to wchar_t.
11861         * wcsmbs/wcwidth.c (wcwdith): Likewise.
11862         * wcsmbs/wcwidth.h (internal_wcwdith): Likewise.
11864         * conform/data/unistd.h-data: Remove _SC_MULTIPLE_PROCESS.
11866         * conform/data/ucontext.h-data: Fix typos in ucontext_t element tests.
11868         * time/time.h (struct timespec): Use __time_t for tv_sec element.
11870         * sysdeps/generic/inttypes.h: Define __wchar_t.  Use it instead of
11871         wchar_t for function declarations and defintions.
11873         * misc/sys/select.h: Define __need_time_t before including <time.h>.
11874         Define suseconds_t if it hasn't happened yet.
11876         * iconv/gconv.h: Define __need_wchar_t before including <stddef.h>.
11878         * conform/data/sys/uio.h-data: Allow UIO_MAXIOV to be defined.
11880         * sysdeps/generic/stdint.h: Don't get definition of wchar_t from
11881         <stddef.h>.
11883         * conform/data/stddef.h-data: Remove wint_t.
11885         * conform/conformtest.pl: Change namespace test to take #undef
11886         lines into account.
11888         * conform/data/netinet/in.h-data: Fix typo in allow-header line.
11890         * conform/data/sys/socket.h-data: Add sockatmark.
11892 2001-08-17  Ulrich Drepper  <drepper@redhat.com>
11894         * io/fts.c: Update from recent BSD source.
11896 2001-08-17  Roland McGrath  <roland@frob.com>
11898         * stdio-common/perror.c (perror) [! USE_IN_LIBIO]: Don't use _IO_fwide.
11899         * misc/error.c (error_tail, error, error_at_line) [! USE_IN_LIBIO]:
11900         Likewise.
11902 2001-08-17  Ulrich Drepper  <drepper@redhat.com>
11904         * locale/duplocale.c (__duplocale): Also initialize the special
11905         __ctype_* elements.
11907         * conform/data/netdb.h-data: Adjust gai_strerror return type.
11909 2001-08-17  Andreas Jaeger  <aj@suse.de>
11911         * misc/getpass.c: Include wchar.h for prototypes.
11912         * malloc/obstack.c: Likewise.
11914 2001-08-17  Ulrich Drepper  <drepper@redhat.com>
11916         * sunrpc/svc_simple.c (universal): Use __write instead of write.
11918         * wcsmbs/wcscoll.c: Also define __wcscoll.
11919         * include/wchar.h: Declare __wcscoll.
11921         * libio/fwprintf.c: Use __vfwprintf instead of vfwprintf.
11922         * libio/vwprintf.c: Likewise.
11923         * libio/wprintf.c: Likewise.
11925         * iconv/gconv_cache.c: Use __munmap instead of munmap.
11927 2001-08-16  Ulrich Drepper  <drepper@redhat.com>
11929         * posix/regex.c [_LIBC] (convert_mbs_to_wcs): Use __mbrtowc
11930         instead of mbrtowc.
11931         [_LIBC]: Use __iswctype instead of iswctype, __wcslen instead of
11932         wcslen, and __wcscoll instead of wcscoll.
11934         * sysdeps/unix/sockatmark.c (sockatmark): Use __ioctl instead of ioctl.
11936         * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue): Use
11937         __getuid instead of getuid.
11939         * stdio-common/perror.c (perror): Use __close instead of close.
11940         * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
11941         * libio/freopen.c (freopen): Likewise.
11942         * libio/freopen64.c (freopen64): Likewise.
11944         * libio/tst-ungetwc2.c (main): Define str const.
11946         * include/wchar.h: Add prototypes for __fwprintf and __vfwprintf.
11947         * libio/fwprintf.c: Also define __fwprintf.
11948         * stdio-common/vfprintf.c [COMPILE_WPRINTF]: Also define __vfwprintf.
11949         * argp/argp-fmtstream.c: Handle wide oriented stderr stream.
11950         * assert/assert-perr.c: Likewise.
11951         * assert/assert.c: Likewise.
11952         * gmon/gmon.c: Likewise.
11953         * inet/rcmd.c: Likewise.
11954         * malloc/obstack.c: Likewise.
11955         * misc/err.c: Likewise.
11956         * misc/error.c: Likewise.
11957         * misc/getpass.c: Likewise.
11958         * posix/getopt.c: Likewise.
11959         * resolv/res_hconf.c: Likewise.
11960         * stdio-common/perror.c: Likewise.
11961         * stdio-common/psignal.c: Likewise.
11962         * stdlib/fmtmsg.c: Likewise.
11963         * sunrpc/auth_unix.c: Likewise.
11964         * sunrpc/clnt_perr.c: Likewise.
11965         * sunrpc/clnt_tcp.c: Likewise.
11966         * sunrpc/clnt_udp.c: Likewise.
11967         * sunrpc/clnt_unix.c: Likewise.
11968         * sunrpc/svc_simple.c: Likewise.
11969         * sunrpc/svc_tcp.c: Likewise.
11970         * sunrpc/svc_udp.c: Likewise.
11971         * sunrpc/svc_unix.c: Likewise.
11972         * sunrpc/xdr.c: Likewise.
11973         * sunrpc/xdr_array.c: Likewise.
11974         * sunrpc/xdr_rec.c: Likewise.
11975         * sunrpc/xdr_ref.c: Likewise.
11976         * sysdeps/generic/wordexp.c: Likewise.
11978         * po/it.po: Update from translation team.
11980         * misc/err.c: Handle wide oriented stderr stream.
11982 2001-08-14  Tom Rix  <trix@redhat.com>
11984         * iconv/gconv_cache.c (find_module): Add #ifndef STATIC_GCONV.
11985         * iconv/Makefile: Fix gconv_cache.c CFLAGS.
11987 2001-08-13  Tom Rix  <trix@redhat.com>
11989         * sysdeps/unix/sysv/aix/Makefile: Add rule to import kernel symbols.
11990         * sysdeps/unix/sysv/aix/bits/types.h: Fix type of __id_t, __useconds_t
11991         and __intptr_t.
11993 2001-08-15  Martin Schwidefsky  <schwidefsky@de.ibm.com>
11995         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S (__getcontext):
11996         Store the access registers to the ucontext structure.
11997         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S (__getcontext):
11998         Likewise.
12000         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S (__setcontext):
12001         Load the access registers from the ucontext structure.
12002         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S (__setcontext):
12003         Likewise.
12005         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h: Adjust the SC_xxx
12006         offsets to the new ucontext layout.
12007         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.h: Likewise.
12009         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Fix the layout
12010         of the ucontext structure.
12011         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
12013 2001-08-15  Ulrich Drepper  <drepper@redhat.com>
12015         * misc/error.c (error): Handle wide oriented stderr stream correctly.
12016         (error_at_line): Likewise.
12018         * stdio-common/perror.c (perror): Implement according to standard.
12019         The stream orientation must not be changed if the stream was not
12020         oriented before the call.
12021         * stdio-common/Makefile (tests): Add tst-perror.
12022         * stdio-common/tst-perror.c: New file.
12025 See ChangeLog.12 for earlier changes.