* sysdeps/s390/bits/string.h (strlen, strncpy, strcat, strncat,
[glibc.git] / ChangeLog
blobbe5b7f7adb8402bc96f8371e76428f30206203a6
1 2005-01-28  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3         * sysdeps/s390/bits/string.h (strlen, strncpy, strcat, strncat,
4         strncat, memchr, strcmp): Add missing memory clobber.
6 2005-01-27  Ulrich Drepper  <drepper@redhat.com>
8         * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_globfree): Also
9         copy gl_offs.  Patch by Sergey Tikhonov <tsv@solvo.ru>.
11 2005-01-27  Paolo Bonzini  <bonzini@gnu.org>
13         [BZ #558]
14         * posix/regcomp.c (calc_inveclosure): Return reg_errcode_t.
15         Initialize the node sets in dfa->inveclosures.
16         (analyze): Initialize inveclosures only if it is needed.
17         Check errors from calc_inveclosure.
18         * posix/regex_internal.c (re_dfa_add_node): Do not initialize
19         the inveclosure node set.
20         * posix/regexec.c (re_search_internal): If nmatch includes unused
21         subexpressions, reset them to { rm_so: -1, rm_eo: -1 } here.
23         * posix/regcomp.c (parse_bracket_exp) [!RE_ENABLE_I18N]:
24         Do build a SIMPLE_BRACKET token.
26         * posix/regexec.c (transit_state_mb): Do not examine nodes
27         where ACCEPT_MB is not set.
29 2005-01-27  Jakub Jelinek  <jakub@redhat.com>
31         * stdlib/tst-fmtmsg.c: Include stdlib.h.
32         * stdio-common/tst-fmemopen2.c: Include string.h.
33         * posix/execvp.c: Include stdbool.h.
35 2004-12-13  Paolo Bonzini  <bonzini@gnu.org>
37         Separate parsing and creation of the NFA.  Avoided recursion on
38         the (very unbalanced) parse tree.
39         [BZ #611]
40         * posix/regcomp.c (struct subexp_optimize, analyze_tree, calc_epsdest,
41         re_dfa_add_tree_node, mark_opt_subexp_iter): Removed.
42         (optimize_subexps, duplicate_tree, calc_first, calc_next,
43         mark_opt_subexp): Rewritten.
44         (preorder, postorder, lower_subexps, lower_subexp, link_nfa_nodes,
45         create_token_tree, free_tree, free_token): New.
46         (analyze): Accept a regex_t *.  Invoke the passes via the preorder and
47         postorder generic visitors.  Do not initialize the fields in the
48         re_dfa_t that represent the transitions.
49         (free_dfa_content): Use free_token.
50         (re_compile_internal): Analyze before UTF-8 optimizations.  Do not
51         include optimization of subexpressions.
52         (create_initial_state): Fetch the DFA node index from the first node's
53         bin_tree_t *.
54         (optimize_utf8): Abort on unexpected nodes, including OP_DUP_QUESTION.
55         Return on COMPLEX_BRACKET.
56         (duplicate_node_closure): Fix comment.
57         (duplicate_node): Do not initialize the fields in the
58         re_dfa_t that represent the transitions.
59         (calc_eclosure, calc_inveclosure): Do not handle OP_DELETED_SUBEXP.
60         (create_tree): Remove final argument.  All callers adjusted.  Rewritten
61         to use create_token_tree.
62         (parse_reg_exp, parse_branch, parse_expression, parse_bracket_exp,
63         build_charclass_op): Use create_tree or create_token_tree instead
64         of re_dfa_add_tree_node.
65         (parse_dup_op): Likewise.  Also free the tree using free_tree for
66         "<re>{0}", and lower OP_DUP_QUESTION to OP_ALT: "a?" is equivalent
67         to "a|".  Adjust invocation of mark_opt_subexp.
68         (parse_sub_exp): Create a single SUBEXP node.
69         * posix/regex_internal.c (re_dfa_add_node): Remove last parameter,
70         always perform as if it was 1.  Do not initialize OPT_SUBEXP and
71         DUPLICATED, and initialize the DFA fields representing the transitions.
72         * posix/regex_internal.h (re_dfa_add_node): Adjust prototype.
73         (re_token_type_t): Move OP_DUP_PLUS and OP_DUP_QUESTION to the tokens
74         section.  Add a tree-only code SUBEXP.  Remove OP_DELETED_SUBEXP.
75         (bin_tree_t): Include a full re_token_t for TOKEN.  Turn FIRST and
76         NEXT into pointers to trees.  Remove ECLOSURE.
78 2004-12-28  Paolo Bonzini  <bonzini@gnu.org >
80         [BZ #605]
81         * posix/regcomp.c (parse_bracket_exp): Do not modify DFA nodes
82         that were already created.
83         * posix/regex_internal.c (re_dfa_add_node): Set accept_mb field
84         in the token if needed.
85         (create_ci_newstate, create_cd_newstate): Set accept_mb field
86         from the tokens' field.
87         * posix/regex_internal.h (re_token_t): Add accept_mb field.
88         (ACCEPT_MB_NODE): Removed.
89         * posix/regexec.c (proceed_next_node, transit_states_mb,
90         build_sifted_states, check_arrival_add_next_nodes): Use
91         accept_mb instead of ACCEPT_MB_NODE.
93 2005-01-26  Ulrich Drepper  <drepper@redhat.com>
95         * debug/chk_fail.c (__chk_fail): Print program name in final message.
97         * sysdeps/unix/sysv/linux/kernel-features.h: Found reference to
98         MSG_NOSIGNAL being in 2.2 kernels.
100 2005-01-26  Jakub Jelinek  <jakub@redhat.com>
102         * sysdeps/unix/sysv/linux/i386/sysdep.h
103         (SYSCALL_ERROR_HANDLER_TLS_STORE): Remove unnecessary 0 imm.
105         [BZ #693]
106         * posix/regex_internal.h (DUMMY_CONSTRAINT): Rename to...
107         (WORD_DELIM_CONSTRAINT): ...this.
108         (NOT_WORD_DELIM_CONSTRAINT): Define.
109         (re_context_type): Add INSIDE_NOTWORD and NOT_WORD_DELIM,
110         change WORD_DELIM to use WORD_DELIM_CONSTRAINT.
111         * posix/regcomp.c (peek_token): For \B create NOT_WORD_DELIM
112         anchor instead of INSIDE_WORD.
113         (parse_expression): Handle NOT_WORD_DELIM constraint.
114         * posix/bug-regex19.c (tests): Adjust tests that relied on \B
115         being inside word instead of not word delim.
116         * posix/tst-rxspencer.c (mb_frob_pattern): Don't frob escaped
117         characters.
118         * posix/rxspencer/tests: Add some new tests.
120 2005-01-14  GOTO Masanori  <gotom@debian.or.jp>
122         * sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
123         irrespective of Cflag.
125         * manual/memory.texi (sbrk): Fix definition.
126         * manual/string.texi (strcasestr): Fix example typo.
128 2005-01-25  Roland McGrath  <roland@redhat.com>
130         * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
132 2005-01-23  Roland McGrath  <roland@redhat.com>
134         * sysdeps/i386/Makefile (defines): If -mno-tls-direct-seg-refs appears
135         in $(CFLAGS), add -DNO_TLS_DIRECT_SEG_REFS.
136         * sysdeps/unix/sysv/linux/i386/sysdep.h [USE___THREAD]
137         (SYSCALL_ERROR_HANDLER) [NO_TLS_DIRECT_SEG_REFS]: Load thread pointer
138         from %gs:0 and add to that value, rather that direct %gs:OFFSET access.
139         * sysdeps/unix/i386/sysdep.S [NO_TLS_DIRECT_SEG_REFS]: Likewise.
141 2005-01-25  Jakub Jelinek  <jakub@redhat.com>
143         * stdlib/fmtmsg.c (addseverity): Remove new_string variable.
144         (free_mem): Don't free string.
145         * stdlib/tst-fmtmsg.c: Include string.h.
146         (main): Add some more tests.
148 2005-01-25  Andreas Schwab  <schwab@suse.de>
150         * timezone/asia: Update from tzdata2005c.
151         * timezone/backward: Likewise.
152         * timezone/leapseconds: Likewise.
153         * timezone/northamerica: Likewise.
154         * timezone/southamerica: Likewise.
156         * timezone/private.h: Update from tzcode2005c.
157         * timezone/tzfile.h: Likewise.
158         * timezone/zdump.c: Likewise.
159         * timezone/zic.c: Likewise.
161 2005-01-25  Ulrich Drepper  <drepper@redhat.com>
163         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove code using
164         RESOLVE.
165         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Remove code
166         using RESOLVE.
167         * elf/rtld.c (_dl_start): Remove RESOLVE definition.
169 2005-01-25  Alan Modra  <amodra@bigpond.net.au>
171         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Test
172         sym_map, not sym, against zero.
174 2005-01-24  Ulrich Drepper  <drepper@redhat.com>
176         * misc/syslog.c: Moved to...
177         * sysdeps/generic/syslog.c: ...here.
178         [NO_SIGIPE]: Don't install SIGPIPE handler.
179         * sysdeps/unix/sysv/linux/syslog.c: New file.
180         * sysdeps/unix/sysv/linux/kernel-features.h: Define
181         __ASSUME_MSG_NOSIGNAL.
183 2005-01-22  Richard Henderson  <rth@redhat.com>
185         * sysdeps/alpha/dl-trampoline.S: New file.
186         * sysdeps/alpha/dl-machine.h: Move PLT trampolines there.
187         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
188         (elf_machine_runtime_setup): Test for dl_profile non-null.
189         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
190         * sysdeps/alpha/bits/link.h: New file.
191         * sysdeps/generic/ldsodefs.h (La_alpha_regs, La_alpha_retval): New.
192         (struct audit_ifaces): Add alpha entries.
193         * elf/tst-auditmod1.c: Add alpha entries.
195 2005-01-22  Ulrich Drepper  <drepper@redhat.com>
197         * sysdeps/ia64/dl-machine.h: Remove PLT trampolines here.
198         * sysdeps/ia64/dl-trampoline.S: New file.
200         * sysdeps/x86_64/bits/link.h: Use namespace-safe identifiers in
201         La_x86_64_xmm definition.
203         * posix/Makefile: Use CFLAGS-*.os instead of CFLAGS-*.c for frame
204         pointer option.
205         * stdlib/Makefile (CFLAGS-system.os): Use this instead of
206         CFLAGS-system.c for frame pointer option.
208 2005-01-21  Roland McGrath  <roland@redhat.com>
210         * elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS.
211         * sysdeps/i386/dl-machine.h: Update decl.
213 2005-01-21  Jakub Jelinek  <jakub@redhat.com>
215         * elf/Makefile: Add rules to build and run tst-align2.
216         * elf/tst-align2.c: New test.
217         * elf/tst-alignmod2.c: New file.
218         * sysdeps/powerpc/tst-stack-align.h: New file.
219         * sysdeps/i386/dl-machine.h (RTLD_START): Align stack and clear frame
220         pointer before calling _dl_init.
221         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
223 2005-01-20  Ulrich Drepper  <drepper@redhat.com>
225         * posix/execl.c: Do not allocate potentially large buffers on the
226         stack.
227         * posix/execle.c: Likewise.
228         * posix/execlp.c: Likewise.
229         * posix/execlp.c: Likewise.
230         (script_execute): Removed.
231         (allocate_scripts_argv): New function.  Called at most once to
232         allocate memory, not every time a script is run.  Adjust caller.
234         * sysdeps/generic/wordexp.c (exec_comm): Add a few
235         TEMP_FAILURE_RETRY.  Reorganize code to avoid multiple calls to
236         exec_comm_child.
237         (exec_comm_child): Can now be inlined.
239         * posix/Makefile: Add -fomit-frame-pointer for a few more files.
240         * stdlib/Makefile: Likewise.
242 2005-01-19  Roland McGrath  <roland@redhat.com>
244         [BZ #681]
245         * sunrpc/openchild.c (_openchild): Use NULL instead of 0 for trailing
246         argument to execlp.
247         Reported by Marcus Meissner <meissner@suse.de>.
249 2005-01-19  Jakub Jelinek  <jakub@redhat.com>
251         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Fix a typo
252         in assert.
253         * iconv/strtab.c (strtabfinalize): Likewise.
255         * libio/iofopncook.c (_IO_cookie_seekoff): Add prototype.
257 2005-01-17  Roland McGrath  <roland@redhat.com>
259         * nscd/Makefile (LDLIBS-nscd): New variable.
260         ($(objpfx)nscd): Use that instead of selinux-LIBS.
262         * Makeconfig (link-extra-libs): Define just as $(LDLIBS-$(@F)).
263         (link-extra-libs-static): Define to $(link-extra-libs).
264         (link-extra-libs-bounded): Likewise.
266 2005-01-17  Ulrich Drepper  <drepper@redhat.com>
268         * include/link.h: Remove stray definition of pltenter.
270 2005-01-16  GOTO Masanori  <gotom@debian.or.jp>
272         * sysdeps/unix/rewinddir.c: Reset filepos.
273         * dirent/tst-seekdir.c: Check telldir value after calling rewinddir.
275 2005-01-15  Ulrich Drepper  <drepper@redhat.com>
277         * elf/tst-auditmod1.c: Reduce duplication.
279 2005-01-16  Andreas Schwab  <schwab@suse.de>
281         * sysdeps/m68k/dl-machine.h: Remove trampoline code.  Define
282         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
283         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
284         GLRO(dl_profile) != NULL.
285         * sysdeps/m68k/dl-trampoline.S: New file.
286         * sysdeps/m68k/bits/link.h: New file.
287         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add m68k
288         variants.
289         * elf/tst-auditmod1.c: Add m68k support.
291 2005-01-14  Ulrich Drepper  <drepper@redhat.com>
293         * posix/regcomp.c [!_LIBC] (init_dfa): Fix determining of relevant
294         LC_* variable.  Patch by Aharon Robbins <arnold@skeeve.com>.
296         * stdlib/fmtmsg.c (internal_addseverity): Remove incorrect free call.
297         * stdlib/tst-fmtmsg.c (main): Add another addseverity test.
299 2005-01-12  Ulrich Drepper  <drepper@redhat.com>
301         * elf/dl-load.c (_dl_map_object_from_fd): We don't have to allow
302         callers from libc anymore.
304         * elf/dl-open.c (dl_open_worker): Pass __RTLD_AUDIT flag from caller
305         to _dl_map_object_deps.
306         * elf/dl-load.c (_dl_map_object_from_fd): Don't change memory
307         protections when loading auditing modules.
309         * dlfcn/dlopen.c (dlopen_doit): Catch invalid mode arguments and fail.
311         * posix/getconf.c: Update copyright year.
312         * nss/getent.c: Likewise.
313         * nscd/nscd_nischeck.c: Likewise.
314         * iconv/iconvconfig.c: Likewise.
315         * iconv/iconv_prog.c: Likewise.
316         * elf/ldconfig.c: Likewise.
317         * catgets/gencat.c: Likewise.
318         * csu/version.c: Likewise.
319         * elf/ldd.bash.in: Likewise.
320         * elf/sprof.c (print_version): Likewise.
321         * locale/programs/locale.c: Likewise.
322         * locale/programs/localedef.c: Likewise.
323         * nscd/nscd.c (print_version): Likewise.
324         * debug/xtrace.sh: Likewise.
325         * malloc/memusage.sh: Likewise.
326         * malloc/mtrace.pl: Likewise.
327         * debug/catchsegv.sh: Likewise.
329 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
331         * sunrpc/svc_tcp.c (svctcp_create): Call listen with SOMAXCONN
332         as backlog.
333         * sunrpc/svc_unix.c (svcunix_create): Likewise.
335         * grp/putgrent.c (putgrent): Don't write 0 as group
336         ID if groupname starts with + or -.
337         * pwd/putpwent.c (putpwent): Don't write 0 as user or
338         group ID if user name starts with + or -.
340 2005-01-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
342         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add sh variants.
343         * sysdeps/elf/tst-auditmod1.c: Add sh support.
344         * sysdeps/sh/bits/link.h: New.
345         * sysdeps/sh/dl-machine.h: Remove trampoline code here.  Define
346         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.  Remove obsolete comments.
347         (RTLD_START): Define __fpscr_values.
348         * sysdeps/sh/dl-trampoline.S: New file.
349         * sysdeps/sh/sh4/dl-trampoline.S: New file.
350         * sysdeps/sh/sh4/Versions [ld]: Add __fpscr_values.
351         * sysdeps/sh/sh4/dl-machine.h: Remove.
353 2005-01-10  Jakub Jelinek  <jakub@redhat.com>
355         * time/tst-strptime.c (day_tests): Add 2 new tests.
356         (test_tm, main): Issue an error instead of segfaulting if
357         strptime returns NULL.
359 2005-01-10  H.J. Lu  <hongjiu.lu@intel.com>
361         * sysdeps/alpha/libc-tls.c (__tls_get_addr): Updated for dtv_t union.
362         * sysdeps/ia64/libc-tls.c (__tls_get_addr): Likewise.
364 2005-01-11  Ulrich Drepper  <drepper@redhat.com>
366         * malloc/malloc.h: Remove no-glibc support.
368 2005-01-12  GOTO Masanori  <gotom@debian.or.jp>
370         [BZ #650]
371         * malloc/malloc.h: Always include features.h.
373 2005-01-10  Roland McGrath  <roland@redhat.com>
375         * sysdeps/ia64/fpu/e_logl.c: File removed.
377         * dlfcn/dlfcn.c (init): Fix typo in attribute decl.
379 2005-01-10  Ulrich Drepper  <drepper@redhat.com>
381         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Fix assertion and
382         recognition of last entry.
384 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
386         * elf/dl-runtime.c: Include <sys/param.h>.
388         * elf/Makefile (headers): Add bits/link.h.
390 2005-01-09  Andreas Schwab  <schwab@suse.de>
392         * elf/rtld.c (dl_main): Create main_map with __RTLD_OPENEXEC.
394 2005-01-09  Andreas Jaeger  <aj@suse.de>
396         * time/strptime_l.c (__strptime_internal): Add braces to avoid
397         warning.
399         * sysdeps/x86_64/bits/link.h: Use vector_size for GCC 4.0.
401         * elf/rtld.c (dl_main): Call _dl_add_to_slotinfo only if USE_TLS.
403 2005-01-08  Jakub Jelinek  <jakub@redhat.com>
405         * elf/Makefile (generated): Add tst-pie1{,.out,.o}.
407 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
409         * elf/dl-fini.c (_dl_fini): Call destructors of audit DSOs after
410         those of all the regular objects.
412         * elf/dl-debug.c (_dl_debug_initialize): Take extra parameter and
413         use it to select the r_debug structure for that namespace.
414         * elf/dl-close.c (_dl_close): Adjust call to _dl_debug_initialize.
415         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
416         * elf/dl-open.c (_dl_open): Likewise.
417         * elf/rtld.c (dl_main): Likewise.
418         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Add _ns_debug
419         member.
420         (_dl_debug_initialize): Add new parameter in declaration.
422         * elf/dl-close.c (_dl_close): Make sure auditing callbacks are not
423         called for the auditing objects themselves.
424         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
426 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
428         * sysdeps/powerpc/powerpc64/dl-machine.h
429         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
430         GLRO(dl_profile) != NULL.
431         * sysdeps/powerpc/powerpc64/bits/link.h (struct la_ppc64_regs): Add
432         padding.
433         * sysdeps/powerpc/powerpc64/dl-trampoline.S: (_dl_profile_resolve):
434         Extend _dl_prof_resolve to add pass extra parameters to
435         _dl_profile_fixup and set up structure with register content.
437         * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_runtime_setup):
438         If profile != 0 does not anymore mean GLRO(dl_profile) != NULL.
439         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_prof_resolve):
440         Extend _dl_prof_resolve to add pass extra parameters to
441         _dl_profile_fixup and set up structure with register content.
442         * sysdeps/powerpc/powerpc32/bits/link.h: Fix types of some fields in
443         the register and result structures.
444         * sysdeps/powerpc/powerpc64/bits/link.h: Fix types of some fields
445         in the 32-bit register and result structures.
447         * sysdeps/powerpc/powerpc64/dl-trampoline.S: Use register names.
449         * sysdeps/powerpc/powerpc32/dl-trampoline.S: New file.
450         * sysdeps/powerpc/powerpc32/dl-machine.h: Remove trampoline code here.
451         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
452         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc32 variants.
453         * elf/tst-auditmod1.c: Add ppc32 support.
454         * sysdeps/powerpc/powerpc32/bits/link.h: New file.
455         * sysdeps/powerpc/powerpc64/bits/link.h: Add ppc32 definitions.
457         * malloc/malloc.c (malloc_printerr): Print program name as part of
458         error message.
460         * misc/sys/cdefs.h (__attribute_warn_unused_result__): Define.
461         * stdlib/stdlib.h: Make realloc with
462         __attribute_warn_unused_result__ instead of __wur.
463         * malloc/malloc.h: Add __wur and __attribute_warn_unused_result__
464         markers as in <stdlib.h>.
466         * libio/stdio.h: Remove __wur from rename and remove.
467         * posix/unistd.h: Remove __wur from dup2.
469 2005-01-03  Andreas Jaeger  <aj@suse.de>
471         * elf/Makefile (tests): Revert patch from 2005-01-03.
473 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
475         * sysdeps/unix/sysv/linux/init-first.c (__libc_init_first): Don't
476         make __libc_init_first hidden.
478         * elf/rtld.c [!DONT_USE_BOOTSTRAP_MAP] (_dl_start_final): Initialize
479         l_relocated of rtld map.
480         * sysdeps/powerpc/powerpc64/dl-trampoline.S: New file.
481         * sysdeps/powerpc/powerpc64/dl-machine.h: Remove trampoline code here.
482         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
483         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc64 variants.
484         * elf/tst-auditmod1.c: Add ppc64 support.
485         * sysdeps/powerpc/powerpc64/bits/link.h: New file.
487 2005-01-06  Roland McGrath  <roland@redhat.com>
489         [BZ #633]
490         * sysdeps/unix/sysv/linux/futimes.c (__futimes): Catch errno values
491         indicating file-name lookup errors, and return ENOSYS or EBADF instead.
493 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
495         * csu/elf-init.c (__libc_csu_fini): Don't do anything here.
496         * sysdeps/generic/libc-start.c: Don't register program destructor here.
498         * dlfcn/Makefile: Add rules to build dlfcn.c.
499         (LDFLAGS-dl.so): Removed.
500         * dlfcn/dlclose.c: _dl_close is now in ld.so, use function pointer
501         table.
502         * dlfcn/dlmopen.c: Likewise for _dl_open.
503         * dlfcn/dlopen.c: Likewise.
504         * dlfcn/dlopenold.c: Likewise.
505         * elf/dl-libc.c: Likewise for _dl_open and _dl_close.
506         * elf/Makefile (routines): Remove dl-open and dl-close.
507         (dl-routines): Add dl-open, dl-close, and dl-trampoline.
508         Add rules to build and run tst-audit1.
509         * elf/tst-audit1.c: New file.
510         * elf/tst-auditmod1.c: New file.
511         * elf/Versions [libc]: Remove _dl_open and _dl_close.
512         * elf/dl-close.c: Change for use inside ld.so instead of libc.so.
513         * elf/dl-open.c: Likewise.
514         * elf/dl-debug.c (_dl_debug_initialize): Allow reinitialization,
515         signaled by nonzero parameter.
516         * elf/dl-init.c: Fix use of r_state.
517         * elf/dl-load.c: Likewise.
519         * elf/dl-close.c: Add auditing checkpoints.
520         * elf/dl-open.c: Likewise.
521         * elf/dl-fini.c: Likewise.
522         * elf/dl-load.c: Likewise.
523         * elf/dl-sym.c: Likewise.
524         * sysdeps/generic/libc-start.c: Likewise.
525         * elf/dl-object.c: Allocate memory for auditing information.
526         * elf/dl-reloc.c: Remove RESOLV.  We now always need the map.
527         Correctly initialize slotinfo.
528         * elf/dynamic-link.h: Adjust after removal of RESOLV.
529         * sysdeps/hppa/dl-lookupcfg.h: Likewise.
530         * sysdeps/ia64/dl-lookupcfg.h: Likewise.
531         * sysdeps/powerpc/powerpc64/dl-lookupcfg.h: Removed.
532         * elf/dl-runtime.c (_dl_fixup): Little cleanup.
533         (_dl_profile_fixup): New parameters to point to register struct and
534         variable for frame size.
535         Add auditing checkpoints.
536         (_dl_call_pltexit): New function.
537         Don't define trampoline code here.
538         * elf/rtld.c: Recognize LD_AUDIT.  Load modules on startup.
539         Remove all the functions from _rtld_global_ro which only _dl_open
540         and _dl_close needed.
541         Add auditing checkpoints.
542         * elf/link.h: Define symbols for auditing interfaces.
543         * include/link.h: Likewise.
544         * include/dlfcn.h: Define __RTLD_AUDIT.
545         Remove prototypes for _dl_open and _dl_close.
546         Adjust access to argc and argv in libdl.
547         * dlfcn/dlfcn.c: New file.
548         * sysdeps/generic/dl-lookupcfg.h: Remove all content now that RESOLVE
549         is gone.
550         * sysdeps/generic/ldsodefs.h: Add definitions for auditing interfaces.
551         * sysdeps/generic/unsecvars.h: Add LD_AUDIT.
552         * sysdeps/i386/dl-machine.h: Remove trampoline code here.
553         Adjust for removal of RESOLVE.
554         * sysdeps/x86_64/dl-machine.h: Likewise.
555         * sysdeps/generic/dl-trampoline.c: New file.
556         * sysdeps/i386/dl-trampoline.c: New file.
557         * sysdeps/x86_64/dl-trampoline.c: New file.
559         * sysdeps/generic/dl-tls.c: Cleanups.  Fixup for dtv_t change.
560         Fix updating of DTV.
561         * sysdeps/generic/libc-tls.c: Likewise.
563         * sysdeps/arm/bits/link.h: Renamed to ...
564         * sysdeps/arm/buts/linkmap.h: ...this.
565         * sysdeps/generic/bits/link.h: Renamed to...
566         * sysdeps/generic/bits/linkmap.h: ...this.
567         * sysdeps/hppa/bits/link.h: Renamed to...
568         * sysdeps/hppa/bits/linkmap.h: ...this.
569         * sysdeps/hppa/i386/link.h: Renamed to...
570         * sysdeps/hppa/i386/linkmap.h: ...this.
571         * sysdeps/hppa/ia64/link.h: Renamed to...
572         * sysdeps/hppa/ia64/linkmap.h: ...this.
573         * sysdeps/hppa/s390/link.h: Renamed to...
574         * sysdeps/hppa/s390/linkmap.h: ...this.
575         * sysdeps/hppa/sh/link.h: Renamed to...
576         * sysdeps/hppa/sh/linkmap.h: ...this.
577         * sysdeps/hppa/x86_64/link.h: Renamed to...
578         * sysdeps/hppa/x86_64/linkmap.h: ...this.
580         * posix/unistd.h: Declare ftruncate for POSIX 2003.  [BZ #640]
582 2004-12-22  Steven Munroe  <sjmunroe@us.ibm.com>
584         * math/libm-test.inc (rint_test_tonearest): New test.
585         (rint_test_towardzero): New test.
586         (rint_test_downward): New test.
587         (rint_test_upward): New test.
588         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Fix -0.0 case.
589         Remove redundant const values.
590         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Fix -0.0 case.
591         Remove redundant const values.  Use float const.
592         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Fix -0.0 case.
593         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Fix -0.0 case.
594         Use float const.
595         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Fix -0.0 case.
596         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Fix -0.0 case.
597         Use float const.
598         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Fix -0.0 case.
599         Remove redundant const values.
600         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Fix -0.0 case.
601         Remove redundant const values.  Use float const.
602         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Fix -0.0 case.
603         Remove redundant const values.
604         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Fix -0.0 case.
605         Remove redundant const values.  Use float const.
606         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Use EALIGN for Quadword
607         alignment.  Fix -0.0 case.  Remove redundant const values.
608         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Use EALIGN for Quadword
609         alignment.  Fix -0.0 case.  Remove redundant const values.
610         Use float const.
611         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Use EALIGN for Quadword
612         alignment.  Fix -0.0 case.
613         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Use EALIGN for Quadword
614         alignment.  Fix -0.0 case.  Use float const.
615         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Use EALIGN for Quadword
616         alignment.  Fix -0.0 case.
617         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Use EALIGN for Quadword
618         alignment.  Fix -0.0 case.  Use float const.
619         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Use EALIGN for Quadword
620         alignment.  Fix -0.0 case.  Remove redundant const values.
621         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Use EALIGN for Quadword
622         alignment.  Fix -0.0 case.  Remove redundant const values.
623         Use float const.
624         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Use EALIGN for Quadword
625         alignment.  Fix -0.0 case.
626         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Use EALIGN for Quadword
627         alignment.  Fix -0.0 case.  Remove redundant const values.
628         Use float const.
630 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
632         * misc/sys/cdefs.h: Define __wur.
633         * libio/stdio.h: Use __wur for a number of interfaces.
634         * posix/unistd.h: Likewise.
635         * stdlib/stdlib.h: Likewise.
637 2004-12-29  Jakub Jelinek  <jakub@redhat.com>
639         * sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Use
640         libc_hidden_proto instead of HIDDEN_PROTO.
641         * sysdeps/ia64/fpu/libm-symbols.h (HIDDEN_PROTO): Remove.
642         (__libm_error_support): If ASSEMBLER and in libc, define to
643         HIDDEN_JUMPTARGET(__libm_error_support).
645 2004-12-28  David Mosberger  <davidm@hpl.hp.com>
647         * sysdeps/ia64/fpu/Makefile (duplicated-routines): New macro.
648         (sysdep_routines): Replace libm_ldexp{,f,l} and libm_scalbn{,f,l}
649         with $(duplicated-routines).
650         (libm-sysdep_routines): Likewise, but substitute "s_" prefix for
651         "m_" prefix.
653 2004-12-27  David Mosberger  <davidm@hpl.hp.com>
655         * sysdeps/ia64/fpu/libm-symbols.h: Add include of <sysdep.h> and
656         undefine "ret" macro.  Add __libm_error_support hidden definitions.
658         * sysdeps/ia64/fpu/e_lgamma_r.c: Remove CVS-id comment.  Add
659         missing portion of copyright statement.
660         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
661         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
663         * sysdeps/ia64/fpu/w_lgamma.c: Remove CVS-id comment.  Add
664         missing portion of copyright statement.
665         (__ieee754_lgamma): Rename from lgamma().  Make lgamma() a weak alias.
666         (__ieee754_gamma): Likewise.
667         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
668         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
670 2004-12-09  H. J. Lu <hjl@lucon.org>
672         * sysdeps/ia64/fpu/s_nextafterl.c: Remove.
673         * sysdeps/ia64/fpu/s_nexttoward.c: Likewise.
674         * sysdeps/ia64/fpu/s_nexttowardf.c: Likewise.
675         * sysdeps/ia64/fpu/e_atan2l.S: Remove (duplicate of e_atan2l.c).
676         * sysdeps/ia64/fpu/e_expl.S: Likewise.
677         * sysdeps/ia64/fpu/e_logl.c: Remove (conflicts with e_logl.S).
679 2004-11-18  David Mosberger  <davidm@hpl.hp.com>
681         * sysdeps/ia64/fpu/README: New file.
682         * sysdeps/ia64/fpu/gen_import_file_list: New file.
683         * sysdeps/ia64/fpu/import_check: Likewise.
684         * sysdeps/ia64/fpu/import_diffs: Likewise.
685         * sysdeps/ia64/fpu/import_file.awk: Likewise.
686         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
687         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
689         * sysdeps/ia64/fpu/e_acos.S: Update from Intel libm v2.1+.
690         * sysdeps/ia64/fpu/e_acosf.S: Likewise.
691         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
692         * sysdeps/ia64/fpu/e_asin.S: Likewise.
693         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
694         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
695         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
696         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
697         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
698         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
699         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
700         * sysdeps/ia64/fpu/e_exp.S: Likewise.
701         * sysdeps/ia64/fpu/e_expf.S: Likewise.
702         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
703         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
704         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
705         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
706         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
707         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
708         * sysdeps/ia64/fpu/e_log.S: Likewise.
709         * sysdeps/ia64/fpu/e_log2.S: Likewise.
710         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
711         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
712         * sysdeps/ia64/fpu/e_logf.S: Likewise.
713         * sysdeps/ia64/fpu/e_pow.S: Likewise.
714         * sysdeps/ia64/fpu/e_powf.S: Likewise.
715         * sysdeps/ia64/fpu/e_powl.S: Likewise.
716         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
717         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
718         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
719         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
720         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
721         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
722         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
723         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
724         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
725         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
726         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
727         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
728         * sysdeps/ia64/fpu/libm_error.c: Likewise.
729         * sysdeps/ia64/fpu/libm_reduce.c: Likewise.
730         * sysdeps/ia64/fpu/libm_support.h: Likewise.
731         * sysdeps/ia64/fpu/s_atan.S: Likewise.
732         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
733         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
734         * sysdeps/ia64/fpu/s_cbrt.S: Likewise.
735         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
736         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
737         * sysdeps/ia64/fpu/s_ceil.S: Likewise.
738         * sysdeps/ia64/fpu/s_ceilf.S: Likewise.
739         * sysdeps/ia64/fpu/s_ceill.S: Likewise.
740         * sysdeps/ia64/fpu/s_cos.S: Likewise.
741         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
742         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
743         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
744         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
745         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
746         * sysdeps/ia64/fpu/s_fabs.S: Likewise.
747         * sysdeps/ia64/fpu/s_fabsf.S: Likewise.
748         * sysdeps/ia64/fpu/s_fabsl.S: Likewise.
749         * sysdeps/ia64/fpu/s_floor.S: Likewise.
750         * sysdeps/ia64/fpu/s_floorf.S: Likewise.
751         * sysdeps/ia64/fpu/s_floorl.S: Likewise.
752         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
753         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
754         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
755         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
756         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
757         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
758         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
759         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
760         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
761         * sysdeps/ia64/fpu/s_logb.S: Likewise.
762         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
763         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
764         * sysdeps/ia64/fpu/s_modf.S: Likewise.
765         * sysdeps/ia64/fpu/s_modff.S: Likewise.
766         * sysdeps/ia64/fpu/s_modfl.S: Likewise.
767         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
768         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
769         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
770         * sysdeps/ia64/fpu/s_rint.S: Likewise.
771         * sysdeps/ia64/fpu/s_rintf.S: Likewise.
772         * sysdeps/ia64/fpu/s_rintl.S: Likewise.
773         * sysdeps/ia64/fpu/s_round.S: Likewise.
774         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
775         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
776         * sysdeps/ia64/fpu/s_significand.S: Likewise.
777         * sysdeps/ia64/fpu/s_significandf.S: Likewise.
778         * sysdeps/ia64/fpu/s_significandl.S: Likewise.
779         * sysdeps/ia64/fpu/s_tan.S: Likewise.
780         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
781         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
782         * sysdeps/ia64/fpu/s_trunc.S: Likewise.
783         * sysdeps/ia64/fpu/s_truncf.S: Likewise.
784         * sysdeps/ia64/fpu/s_truncl.S: Likewise.
786         * sysdeps/ia64/fpu/e_acosh.S: New file from Intel libm v2.1+.
787         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
788         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
789         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
790         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
791         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
792         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
793         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
794         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
795         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
796         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
797         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
798         * sysdeps/ia64/fpu/e_lgamma_r.S: Likewise.
799         * sysdeps/ia64/fpu/e_lgammaf_r.S: Likewise.
800         * sysdeps/ia64/fpu/e_lgammal_r.S: Likewise.
801         * sysdeps/ia64/fpu/e_logl.S: Likewise.
802         * sysdeps/ia64/fpu/libm_frexp.S: Likewise.
803         * sysdeps/ia64/fpu/libm_frexpf.S: Likewise.
804         * sysdeps/ia64/fpu/libm_frexpl.S: Likewise.
805         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
806         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
807         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
808         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
809         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
810         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
811         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
812         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
813         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
814         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
815         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
816         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
817         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
818         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
819         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
820         * sysdeps/ia64/fpu/s_asinhf.S: Likewise.
821         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
822         * sysdeps/ia64/fpu/s_erf.S: Likewise.
823         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
824         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
825         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
826         * sysdeps/ia64/fpu/s_erff.S: Likewise.
827         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
828         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
829         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
830         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
831         * sysdeps/ia64/fpu/s_fma.S: Likewise.
832         * sysdeps/ia64/fpu/s_fmaf.S: Likewise.
833         * sysdeps/ia64/fpu/s_fmal.S: Likewise.
834         * sysdeps/ia64/fpu/s_fmax.S: Likewise.
835         * sysdeps/ia64/fpu/s_fmaxf.S: Likewise.
836         * sysdeps/ia64/fpu/s_fmaxl.S: Likewise.
837         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
838         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
839         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
840         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
841         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
842         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
843         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
844         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
845         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
846         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
847         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
848         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
849         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
850         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
851         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
852         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
853         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
854         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
855         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
857         * sysdeps/ia64/fpu/e_gamma_r.c: New empty dummy-file.
858         * sysdeps/ia64/fpu/e_gammaf_r.c: Likewise.
859         * sysdeps/ia64/fpu/e_gammal_r.c: Likewise.
860         * sysdeps/ia64/fpu/w_acosh.c: Likewise.
861         * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
862         * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
863         * sysdeps/ia64/fpu/w_atanh.c: Likewise.
864         * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
865         * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
866         * sysdeps/ia64/fpu/w_exp10.c: Likewise.
867         * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
868         * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
869         * sysdeps/ia64/fpu/w_exp2.c: Likewise.
870         * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
871         * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
872         * sysdeps/ia64/fpu/w_expl.c: Likewise.
873         * sysdeps/ia64/fpu/e_expl.S: Likewise.
874         * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
875         * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
876         * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
877         * sysdeps/ia64/fpu/w_log2.c: Likewise.
878         * sysdeps/ia64/fpu/w_log2f.c: Likewise.
879         * sysdeps/ia64/fpu/w_log2l.c: Likewise.
880         * sysdeps/ia64/fpu/w_sinh.c: Likewise.
881         * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
882         * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
884         * sysdeps/ia64/fpu/libm_atan2_reg.S: Remove.
885         * sysdeps/ia64/fpu/s_ldexp.S: Likewise.
886         * sysdeps/ia64/fpu/s_ldexpf.S: Likewise.
887         * sysdeps/ia64/fpu/s_ldexpl.S: Likewise.
888         * sysdeps/ia64/fpu/s_scalbn.S: Likewise.
889         * sysdeps/ia64/fpu/s_scalbnf.S: Likewise.
890         * sysdeps/ia64/fpu/s_scalbnl.S: Likewise.
892         * sysdeps/ia64/fpu/s_sincos.c: Make it an empty dummy-file.
893         * sysdeps/ia64/fpu/s_sincosf.c: Likewise.
894         * sysdeps/ia64/fpu/s_sincosl.c: Likewise.
896         * sysdeps/ia64/fpu/e_atan2l.S: Add "Not needed" comment.
898         * sysdeps/ia64/fpu/s_copysign.S: Add __libm_copysign{,f,l}
899         alias for use by libm_error.c
901         * sysdeps/ia64/fpu/Makefile (libm-sysdep_routines): Remove
902         libm_atan2_reg, libm_tan, libm_frexp4{f,l}.
903         Mention s_erfc{,f,l}, libm_frexp{,f,l}, libm_ldexp{,f,l},
904         libm_sincos{,f,l}, libm_sincos_large, libm_lgamma{,f,l},
905         libm_scalbn{,f,l}, libm_scalblnf.
906         (sysdep_routines): Remove libm_frexp4{,f,l}.
907         Mention libm_frexp{,f,l}, libm_ldexp{,f,l}, and libm_scalbn{,f,l}.
908         (sysdep-CPPFLAGS): Add -include libm-symbols.h, -D__POSIX__,
909         _D_LIB_VERSIONIMF=_LIB_VERSION, -DSIZE_LONG_INT_64, and
910         -DSIZE_LONG_LONG_INT_64.
912 2005-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
914         * elf/rtld.c (dl_main) [NEED_DL_SYSINFO_DSO]: Insure l_map_end and
915         l_text_end are set for a VDSO with a single PT_LOAD entry.
917 2005-01-05  Ulrich Drepper  <drepper@redhat.com>
919         * libio/iofopncook.c (_IO_cookie_seekoff): Define.  Mark offset as
920         invalid to disable optimizations in fileops which won't work here.
921         (_IO_cookie_jumps): Use it.
922         (_IO_old_cookie_jumps): Likewise.
923         * libio/fmemopen.c (fmemopen_seek): Result must be returned in *P,
924         not the return value.
925         * stdio-common/Makefile (tests): Add tst-fmemopen2.
926         * stdio-common/tst-fmemopen2.c: New file.
928         * sysdeps/unix/sysv/linux/bits/waitflags.h: Define __WNOTHREAD.
930 2005-01-05  Roland McGrath  <roland@redhat.com>
932         * configure.in (libc_cv_cpp_asm_debuginfo): Checked moved ...
933         * sysdeps/i386/configure.in: ... here.  New file.
935 2005-01-03  Ulrich Drepper  <drepper@redhat.com>
937         * sysdeps/generic/libc-start.c [SHARED] (__libc_start_main): Don't
938         initialize __environ again.
939         * stdlib/Makefile: Add rules to build and run tst-putenv.
940         * stdlib/tst-putenv.c: New file.
941         * stdlib/tst-putenvmod.c: New file.
943         * sysdeps/unix/sysv/linux/init-first.c: Clean file up.  Don't
944         define unnecessary wrappers or aliases of static functions.
946 2005-01-03  Andreas Jaeger  <aj@suse.de>
948         * csu/Makefile (generated): Add start.os and start.ob.
950         * elf/Makefile (tests): Change rule for tst-pie1 so that make
951         clean works.
953 2004-12-29  Roland McGrath  <roland@redhat.com>
955         [BZ #626]
956         * sysdeps/unix/alarm.c (alarm): Round return value to nearest rather
957         than always up; when nearest is zero, round up to one.
959 2004-12-28  Ulrich Drepper  <drepper@redhat.com>
961         * po/es.po: Update from translation team.
963         * sysdeps/generic/dl-tls.c (__tls_get_addr): Fix typo.
965 2004-12-27  Ulrich Drepper  <drepper@redhat.com>
967         * include/signal.h: Define __sigemptyset.
969 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
971         * posix/regex_internal.h (struct re_dfastate_t): Make
972         word_trtable a pointer to the 512-item transition table.
973         * posix/regexec.c (build_trtable): Fill in either state->trtable
974         or state->word_trtable.  Return a boolean indicating success.
975         (transit_state): Expect state->trtable to be a 256-item
976         transition table.  Reorganize code to have less tests in
977         the common case, and to save an indentation level.
978         * posix/regex_internal.c (free_state): Free word_trtable.
980 2004-12-21  Jakub Jelinek  <jakub@redhat.com>
982         * sysdeps/unix/sysv/linux/i386/clone.S (__clone): Make sure %esp when
983         calling fn is 16 byte aligned.
984         * sysdeps/i386/tst-stack-align.h: New file.
986         * misc/efgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
987         (ecvt_r): Special case denormals.
988         * misc/qefgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
989         * misc/tst-efgcvt.c: Include float.h.
990         (ecvt_tests): Add 2 new tests.
992 2004-12-20  Roland McGrath  <roland@frob.com>
994         * version.h (RELEASE, VERSION): development, 2.3.90
995         * include/features.h (__GLIBC_MINOR__): Now 4.
997 2004-12-20  Jakub Jelinek  <jakub@redhat.com>,
998             Jim Gifford  <giffordj@linkline.com>
1000         [BZ #562]
1001         * sysdeps/mips/Makefile (librt-sysdep_routines): Add.
1002         * sysdeps/unix/mips/rt-sysdep.S: New file.
1004 2004-12-19  Roland McGrath  <roland@redhat.com>
1006         * iconv/Makefile (test-iconvconfig): New target.
1007         [$(cross-compiling) != yes] (xtests): Depend on it.
1009         * iconv/iconvconfig.c (nostdlib, output_file, output_file_len):
1010         New variables.
1011         (options, parse_opt, main): Take new options --nostdlib and
1012         --output/-o to set them.  Under --nostdlib, skip GCONV_PATH dirs.
1013         (write_output): If output_file is set, write the output there.
1015 2004-12-19  Andreas Jaeger  <aj@suse.de>
1017         [BZ #560]
1018         * inet/netinet/in.h: Use __interface_addr instead of __interface.
1020         [BZ #573]
1021         * sunrpc/xcrypt.c (passwd2des_internal): Make it hidden instead of
1022         internal linkage.
1024 2004-12-19  Roland McGrath  <roland@frob.com>
1026         * version.h (VERSION): 2.3.4.
1027         * README.template: Various updates.
1028         * README: Regenerated.
1029         * NEWS: Mention ports.
1030         * README-alpha: File removed.
1032         [BZ #416]
1033         * locale/langinfo.h: Comment fixes.
1035 2004-12-17  Ulrich Drepper  <drepper@redhat.com>
1037         * po/ja.po: Update from translation team.
1039 2004-12-17  Richard Henderson  <rth@redhat.com>
1041         * sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Add support
1042         for NPTL where the PID is stored at userlevel and needs to be
1043         reset when CLONE_THREAD is not used.
1045 2004-12-17  Jakub Jelinek  <jakub@redhat.com>
1047         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Update.
1049 2004-12-17  Andreas Jaeger  <aj@suse.de>
1051         * math/libm-test.inc (atan2_test): Compute value with 36 digits.
1052         * sysdeps/alpha/fpu/libm-test-ulps: Adjust for changed result.
1053         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
1054         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
1055         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
1056         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
1057         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1059 2004-12-16  Ulrich Drepper  <drepper@redhat.com>
1061         * stdlib/tst-setcontext.c: Enlarge st1 and st2 arrays.
1063 2004-09-02  Steven Munroe  <sjmunroe@us.ibm.com>
1065         [BZ #610]
1066         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
1067         (__novec_getcontext): Fix typo in store of fp29.
1068         (__getcontext): Fix typo in store of fp29.
1069         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
1070         (__novec_swapcontext): Fix typo in store of fp29.
1071         (__swapcontext): Fix typo in store of fp29.
1073 2004-12-17  GOTO Masanori  <gotom@debian.or.jp>
1075         * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): Fix
1076         vague message.
1078 2004-12-16  Roland McGrath  <roland@redhat.com>
1080         * nscd/Makefile ($(objpfx)nscd): Don't depend on $(selinux-LIBS),
1081         which is usually a -lselinux that make will resolve wrongly.
1083 2004-12-16  Andreas Jaeger  <aj@suse.de>
1085         * math/math.h: Use #if defined to not receive warnings about
1086         undefined symbols.
1088 2004-12-16  Jakub Jelinek  <jakub@redhat.com>
1090         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone): Add support
1091         for NPTL where the PID is stored at userlevel and needs to be reset
1092         when CLONE_THREAD is not used.
1094         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
1095         (SYSCALL_ERROR_HANDLER): If RTLD_PRIVATE_ERRNO, use rtld_errno
1096         instead of errno.
1097         * sysdeps/unix/sysv/linux/sparc/sparc64/socket.S: Include
1098         sysdep-cancel.h instead of sysdep.h.  Handle cancellation.
1099         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Regenerate.
1101         * sysdeps/ieee754/ldbl-128/e_expl.c: Include stdlib.h.
1103 2004-12-15  Jakub Jelinek  <jakub@redhat.com>
1105         * sysdeps/unix/sysv/linux/gethostid.c: Make bi-arch safe.
1107 2004-12-15  Steven Munroe  <sjmunroe@us.ibm.com>
1109         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Correct stack
1110         alignment.  Clean up flag bit tests.
1111         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Correct stack
1112         alignment.  Clean up flag bit tests.  Remove redundent SP assignment.
1113         Add TOC register save/restore around function call.
1115         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Make no_vmx symbol
1116         local.
1117         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Make no_vmx symbol
1118         local.
1119         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Make no_vmx symbol
1120         local.
1121         * sysdeps/powerpc/powerpc64/setjmp-common.S: Make no_vmx and
1122         aligned_save_vmx symbol local.
1124 2004-12-15  Ulrich Drepper  <drepper@redhat.com>
1126         * sysdeps/i386/i486/bits/string.h (__strncat_g): Fix i686
1127         implementation.
1129 2004-09-08  H.J. Lu  <hongjiu.lu@intel.com>
1131         * Makeconfig (libunwind): New.
1132         (libgcc_eh): Add $(libunwind).
1133         (gnulib): Always set to -lgcc $(libgcc_eh).
1134         (static-gnulib): Always set to -lgcc -lgcc_eh $(libunwind).
1135         (libc.so-gnulib): New.
1136         * Makerules (LDLIBS-c.so): Use $(libc.so-gnulib) instead of
1137         $(static-gnulib).
1138         * configure.in (libc_cv_cc_with_libunwind): Set to yes if gcc
1139         uses -lunwind for static binaries.
1141 2004-06-05  Joseph S. Myers  <jsm@polyomino.org.uk>
1143         * malloc/Makefile (install-bin): Remove memusage.
1144         (install-bin-script): Add memusage.
1146 2004-12-15  Jakub Jelinek  <jakub@redhat.com>
1148         * nis/nis_domain_of_r.c (nis_domain_of_r): Use libnsl_hidden_def,
1149         not libnsl_hidden_proto.
1151         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S (__clone): Add support
1152         for NPTL where the PID is stored at userlevel and needs to be reset
1153         when CLONE_THREAD is not used.
1154         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S (__clone): Likewise.
1156         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone): Save
1157         and restore r2 around call to fn.
1159 2004-12-15  Andreas Jaeger  <aj@suse.de>
1161         * sysdeps/ia64/dl-machine.h (elf_machine_rela): Mark auto instead
1162         of static, add always_inline attribute.
1163         (elf_machine_rela_relative): Likewise.
1164         (elf_machine_lazy_rel): Likewise.
1166 2004-12-15  Ulrich Drepper  <drepper@redhat.com>
1168         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Add support
1169         for pid caching in nptl.
1171 2004-12-14  Ulrich Drepper  <drepper@redhat.com>
1173         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Add support
1174         for pid caching in nptl.
1176 2004-10-18  Maciej W. Rozycki  <macro@mips.com>
1178         * sysdeps/unix/sysv/linux/mips/bits/socket.h (__cmsg_nxthdr): Use
1179         __NTH instead of __THROW in the inline definition.
1180         * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Likewise.
1182         * sysdeps/mips/bits/dlfcn.h (RTLD_DEEPBIND): New macro.
1184         * sysdeps/unix/sysv/linux/mips/bits/mman.h
1185         (PROT_GROWSDOWN, PROT_GROWSUP): New macros.
1187 2004-10-06  Alan Modra  <amodra@bigpond.net.au>
1189         * sysdeps/powerpc/powerpc64/ppc-mcount.S (PROF): Don't undef.
1190         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Invoke CALL_MOUNT.
1191         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
1192         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
1193         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
1194         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
1195         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S: Likewise.
1196         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
1197         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
1199 2004-10-19  Wolfram Gloger  <wg@malloc.de>
1201         * malloc/hooks.c (mem2chunk_check, top_check): Handle
1202         non-contiguous arena.  Reported by Michael Dalton
1203         <mwdalton@stanford.edu> [BZ #457].  Add further checks for top chunk.
1205 2004-12-14  Jakub Jelinek  <jakub@redhat.com>
1207         * sysdeps/posix/sysconf.c (__sysconf_check_spec): Remove leading
1208         underscore from GETCONF_DIR filenames.
1210 2004-12-13  Ulrich Drepper  <drepper@redhat.com>
1212         * po/de.po: Update from translation team.
1214         * nss/getnssent.c (__nss_getent): Double buffer size each round to
1215         avoid problems with delays for some people's huge entries.
1216         * nss/getXXbyYY.c (FUNCTION_NAME): Likewise.
1218 2004-12-13  Jakub Jelinek  <jakub@redhat.com>
1220         * posix/getconf.c (main): Prepend just $GETCONF_DIR/ instead of
1221         $GETCONF_DIR/_ to spec.
1222         * posix/confstr.c (confstr): Remove leading underscores for
1223         _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS.
1225 2004-12-12  Ulrich Drepper  <drepper@redhat.com>
1227         * elf/dl-load.c (_dl_map_object_from_fd): Fix computation of
1228         mapping start.  It must take the actual pagesize into account, not
1229         the alignment in the file.
1231 2004-12-11  Ulrich Drepper  <drepper@redhat.com>
1233         * malloc/malloc.c (_int_realloc): Add checks for corrupted memory.
1234         (_int_free): Make clear message are result of free() calls.
1236         * malloc/malloc.c (_int_realloc): Remove unnecessary tests for
1237         oldmem and size == 0.
1239 2004-12-10  Ulrich Drepper  <drepper@redhat.com>
1241         * malloc/arena.c (arena_get2): Prevent endless loop if arenas and
1242         list lock are taken.
1244 2004-12-08  Thorsten Kukuk  <kukuk@suse.de>
1246         * nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_getnetgrent_r):
1247         Add check if the value is not an empty string.  [BZ #597]
1249 2004-11-29  Jakub Jelinek  <jakub@redhat.com>
1251         * stdlib/strtod_l.c (INTERNAL (__STRTOF)): If densize > 2
1252         and numsize < densize, always shift num up by empty + 1 limbs.
1254 2004-12-07  Paolo Bonzini  <bonzini@gnu.org>
1256         * posix/regexec.c (proceed_next_node): Simplify treatment of epsilon
1257         nodes.  Pass the pushed node to push_fail_stack.
1258         (push_fail_stack): Accept a single node rather than an array
1259         of two epsilon destinations.
1260         (build_sifted_states): Only walk non-epsilon nodes.
1261         (check_arrival): Don't pass epsilon nodes to
1262         check_arrival_add_next_nodes.
1263         (check_arrival_add_next_nodes) [DEBUG]: Abort if an epsilon node is
1264         found.
1265         (check_node_accept): Do expensive checks later.
1266         (add_epsilon_src_nodes): Cache result of merging the inveclosures.
1267         * posix/regex_internal.h (re_dfastate_t): Add non_eps_nodes and
1268         inveclosure.
1269         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at,
1270         re_string_context_at, re_string_peek_byte_case,
1271         re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
1272         Declare as pure.
1273         * posix/regex_internal.c (create_newstate_common): Remove.
1274         (register_state): Move part of it here.  Initialize non_eps_nodes.
1275         (free_state): Free inveclosure and non_eps_nodes.
1276         (create_cd_newstate, create_ci_newstate): Allocate the new
1277         re_dfastate_t here.
1279 2004-12-09  Ulrich Drepper  <drepper@redhat.com>
1281         * malloc/malloc.c (public_rEALLOc): Add parameter checks.
1282         (_int_free): Provide better error message for invalid pointers.
1284 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1286         * posix/tst-regex.c: Use defined _POSIX_CPUTIME && _POSIX_CPUTIME >= 0
1287         conditionals instead of defined _POSIX_CPUTIME.
1288         (main): If _POSIX_CPUTIME == 0, call sysconf to see if CPUTIME
1289         option is available.
1290         * posix/tst-regex.c2: Use defined _POSIX_CPUTIME && _POSIX_CPUTIME >= 0
1291         conditionals instead of defined _POSIX_CPUTIME.
1292         (do_test): If _POSIX_CPUTIME == 0, call sysconf to see if CPUTIME
1293         option is available.
1294         * sysdeps/posix/sysconf.c (__sysconf): If _POSIX_CPUTIME resp.
1295         _POSIX_THREAD_CPUTIME is defined to 0, return -1 for the corresponding
1296         _SC_ argument.
1298 2004-12-08  Jakub Jelinek  <jakub@redhat.com>
1300         * elf/ldd.bash.in: When set -o pipefail is available, use that for
1301         piping to cat; when not, don't use the pipe at all.
1302         Pipe to cat in all cases of running the executable.
1303         When direct running exits with code 5, retry running via ${RTLD}.
1304         * elf/rtld.c (process_envvars): If __libc_enable_secure and
1305         mode != normal, exit with exitcode 5.
1307 2004-12-07  Jakub Jelinek  <jakub@redhat.com>
1309         * sysdeps/posix/sysconf.c (__sysconf_check_spec): Only define
1310         if it will be actually used.
1312 2004-12-07  Roland McGrath  <roland@redhat.com>
1314         * rt/tst-timer5.c (setup_test): New function.
1315         (TEST_CLOCK_MISSING): Use it to punt test if timer_create does not
1316         support CLOCK_MONOTONIC.
1318 2004-12-07  Jakub Jelinek  <jakub@redhat.com>
1320         * sysdeps/unix/sysv/linux/ia64/clone2.S (__clone2): Add support for
1321         NPTL where the PID is stored at userlevel and needs to be reset when
1322         CLONE_THREAD is not used.  Restore gp before calling _exit.
1324 2004-12-07  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1326         * sysdeps/unix/sysv/linux/sh/clone.S: Clear the frame pointer when
1327         starting a new thread.  Add support for NPTL where the PID is stored
1328         at userlevel and needs to be reset when CLONE_THREAD is not used.
1330 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1332         * elf/rtld.c (process_envvars): Don't consider LD_SHOW_AUXV
1333         and LD_DYNAMIC_WEAK if __libc_enable_secure.
1334         If __libc_enable_secure, /etc/suid-debug doesn't exist and
1335         program will be actually run, turn off all debugging.
1336         * sysdeps/generic/unsecvars.h (UNSECURE_ENVVARS): Add LD_DEBUG,
1337         LD_DYNAMIC_WEAK and LD_SHOW_AUXV.
1339 2004-12-06  Jakub Jelinek  <jakub@redhat.com>
1341         * time/tzset.c (tzset_internal): If + or - is seen,
1342         but no offset after it, reset offset to 0.  [BZ #601]
1344 2004-12-06  Ulrich Drepper  <drepper@redhat.com>
1346         * libio/ioseekpos.c (_IO_seekpos_unlocked): Call _IO_SEEKOFF not
1347         _IO_SEEKPOS, saving one indirect jump.
1349         * libio/fileops.c (_IO_new_file_seekoff): Fix optimization of in-buffer
1350         seek.  Remove dead code.
1352 2004-12-02  Jakub Jelinek  <jakub@redhat.com>
1354         * libio/Makefile (tests): Add bug-ungetc4.
1355         * libio/bug-ungetc4.c: New test.
1357 2004-12-06  Roland McGrath  <roland@redhat.com>
1359         * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Diagnose EINVAL
1360         for CLOCK_THREAD_CPUTIME_ID, not ENOTSUP.
1361         Use SYSDEP_NANOSLEEP handler before validating CLOCK_ID value.
1363         * rt/tst-timer4.c (TEST_CLOCK, TEST_CLOCK_NANOSLEEP): New macros.
1364         Use them throughout in place of CLOCK_REALTIME and nanosleep.
1365         (do_test) [TEST_CLOCK_MISSING]: Call this macro and if it returns
1366         non-null, punt the test with a message using the string returned.
1367         * rt/tst-timer5.c: New file.
1368         * rt/Makefile (tests): Add it.
1370 2004-12-01  Paolo Bonzini  <bonzini@gnu.org>
1372         * posix/regcomp.c (free_dfa_content, init_dfa): Remove
1373         references to re_dfa_t's subexps field.
1374         (parse_sub_exp, parse_expression): Do not use it.  Use
1375         completed_bkref_map instead.
1376         (create_initial_state, peek_token): Store a backreference \N
1377         with opr.idx = N-1.
1378         * posix/regexec.c (proceed_next_node, check_dst_limits, get_subexp):
1379         Likewise.
1380         (check_subexp_limits): Remove useless condition.
1381         * posix/regex_internal.h (re_subexp_t): Remove.
1382         (re_dfa_t): Remove subexps and subexps_alloc field, add
1383         completed_bkref_map.
1385 2004-12-05  Roland McGrath  <roland@frob.com>
1387         * Makeconfig: Comment typo fix.
1389 2004-11-30  Andreas Schwab  <schwab@suse.de>
1391         * nis/ypclnt.c (ypprot_err): Remove unused entries.
1393 2004-11-30  Paolo Bonzini  <bonzini@gnu.org>
1395         * posix/regexec.c (check_dst_limits_calc_pos_1): Check for
1396         bkref_idx == -1, and don't recurse in that case.
1398 2004-11-30  GOTO Masanori  <gotom@debian.or.jp>
1400         * posix/confstr.c: Enclose #error message with double quote
1401         for gcc-3.3 and lower.
1403 2004-12-04  Ulrich Drepper  <drepper@redhat.com>
1405         * sysdeps/unix/sysv/linux/i386/clone.S: Add support for NPTL where
1406         the PID is stored at userlevel and needs to be reset when CLONE_THREAD
1407         is not used.
1408         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
1410 2004-11-18  Daniel Jacobowitz  <dan@codesourcery.com>
1412         * sysdeps/arm/sysdep.h: Define __USE_BX__ if bx is available.
1413         Use it instead of __THUMB_INTERWORK__.  Make RETINSTR take
1414         only a condition and a register.
1415         * sysdeps/arm/dl-machine.h: Use __USE_BX__ instead of
1416         __THUMB_INTERWORK__.
1417         (_dl_start_user): Use BX.
1418         * sysdeps/arm/strlen.S: Use DO_RET.
1419         * sysdeps/unix/arm/brk.S: Likewise.
1420         * sysdeps/unix/arm/fork.S: Likewise.
1421         * sysdeps/unix/arm/sysdep.S: Likewise.
1422         * sysdeps/unix/arm/sysdep.h: Likewise.
1423         * sysdeps/unix/sysv/linux/arm/clone.S: Update uses of RETINSTR.
1424         * sysdeps/unix/sysv/linux/arm/mmap.S: Likewise.
1425         * sysdeps/unix/sysv/linux/arm/mmap64.S: Likewise.
1426         * sysdeps/unix/sysv/linux/arm/socket.S: Likewise.
1427         * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
1428         * sysdeps/unix/sysv/linux/arm/vfork.S: Likewise.
1430 2004-12-02  Roland McGrath  <roland@redhat.com>
1432         * extra-lib.mk (object-suffixes-$(lib)): Add .oS when
1433         $(lib)-static-only-routines is nonempty.
1434         (extra-objs, o-iterator.mk rule): Filter out .oS from generators.
1435         Add a special rule for .oS objects -> _nonshared.a library.
1437 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1439         * time/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
1440         convert T2, not T.
1441         * time/Makefile (tests): Add tst-mktime3.
1442         * time/tst-mktime3.c: New test.
1444 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1446         * stdlib/stdlib.h (realpath): Remove nonnull attribute.
1448         * posix/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
1449         normal_bracket label.
1451         * time/tst-mktime2.c (bigtime_test): Initialize tm.tm_isdst to -1.
1453 2004-12-01  Roland McGrath  <roland@redhat.com>
1455         * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c):
1456         Do $(make-target-directory).
1458 2004-11-29  Roland McGrath  <roland@redhat.com>
1460         * posix/confstr.c: Avoid punctuation in #error text.
1462 2004-11-27  Ulrich Drepper  <drepper@redhat.com>
1464         * posix/Makefile (tests): Add tst-sysconf.
1465         * posix/tst-sysconf.c: New file.
1467         * posix/getconf.c (vars): Add support for _SC_IPV6 and
1468         _SC_RAW_SOCKETS.
1469         * sysdeps/posix/sysconf.c (__sysconf): Add support for _SC_IPV6
1470         and _SC_RAW_SOCKETS.
1471         * sysdeps/generic/bits/confname.h: Define _SC_IPV6 and
1472         _SC_RAW_SOCKETS.
1474 2004-11-26  Jakub Jelinek  <jakub@redhat.com>
1476         * sysdeps/generic/unsecvars.h (UNSECURE_ENVVARS): Add GETCONF_DIR.
1478 2004-11-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1480         * sysdeps/unix/sysv/linux/mips/pread.c: Include sgidefs.h only if
1481         NO_SGIDEFS_H isn't defined.  Don't include sgidefs.h twice.
1482         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
1483         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
1484         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
1486 2004-11-27  Ulrich Drepper  <drepper@redhat.com>
1488         * include/dlfcn.h (__libc_dlopen): Add __RTLD_DLOPEN to the mode
1489         parameter.  Reported by VY Newsum <newsum@fel.tno.nl>.
1491 2004-11-10  Daniel Jacobowitz  <dan@debian.org>
1493         * libio/iolibio.h (_IO_fclose, _IO_new_fclose, _IO_old_fclose,
1494         _IO_fflush, _IO_fgetpos, _IO_fgetpos64, _IO_fgets, _IO_fopen,
1495         _IO_old_fopen, _IO_new_fopen, _IO_fopen64, __fopen_internal,
1496         _IO_fprintf, _IO_fputs, _IO_fsetpos, _IO_fsetpos64, _IO_ftell,
1497         _IO_fread, _IO_fwrite, _IO_gets, _IO_printf, _IO_puts, _IO_scanf,
1498         _IO_fflush_internal, _IO_ftell_internal, _IO_fputs_internal)
1499         _IO_fwrite_internal): Remove incorrect __THROW.
1500         * libio/libioP.h (_IO_default_xsputn, _IO_wdefault_xsputn,
1501         _IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_default_write,
1502         _IO_default_read, _IO_getline, _IO_getline_info, _IO_getwline,
1503         _IO_getwline_info, _IO_file_read_internal, _IO_sgetn_internal,
1504         _IO_wdo_write_internal, _IO_do_write_internal,
1505         _IO_getline_info_internal, _IO_getline_internal,
1506         _IO_vfprintf_internal, _IO_putc_internal, _IO_read, _IO_write,
1507         _IO_close): Likewise.
1509 2004-11-26  Jakub Jelinek  <jakub@redhat.com>
1511         * posix/Makefile (install-others): Add $(inst_libexecdir)/getconf.
1512         (CFLAGS-sysconf.c): Add -D_GETCONF_DIR.
1513         (CFLAGS-getconf.c): New.
1514         ($(inst_libexecdir)/getconf): New.
1515         * posix/confstr.c (confstr): Use __sysconf to query specifications
1516         that don't have _POSIX_V6_* macros defined.  Use __*_{C,LD}FLAGS
1517         macros defined in bits/environments.h.
1518         * sysdeps/posix/sysconf.c: Include stdlib.h, string.h and
1519         sys/stat.h.
1520         (__sysconf_check_spec): New routine.
1521         (__sysconf): Use it.
1522         * posix/getconf.c (specs): Change into structure array.
1523         (main): If -v is not given, try to get default from
1524         $(libexecdir)/getconf/default.  If specification is not
1525         supported by this getconf, try to execute
1526         $(libexecdir)/getconf/$(specification).
1527         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: New file.
1528         * sysdeps/unix/sysv/linux/s390/bits/environments.h: New file.
1529         * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: New file.
1530         * sysdeps/unix/sysv/linux/sparc/bits/environments.h: New file.
1531         * sysdeps/unix/sysv/linux/i386/bits/environments.h: New file.
1532         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: New file.
1533         * sysdeps/generic/bits/environments.h (__ILP32_OFFBIG_CFLAGS):
1534         Define.
1536         * stdlib/stdlib.h (setenv): Use nonnull only for second argument.
1537         (unsetenv): Remove.
1539 2004-11-23  Paolo Bonzini  <bonzini@gnu.org>
1541         * posix/regcomp.c (analyze_tree): Always call calc_epsdest.
1542         (calc_inveclosure): Use re_node_set_insert_last.
1543         (parse_dup_op): Lower X{1,5} to (X(X(X(XX?)?)?)?)?
1544         rather than X?X?X?X?X?.
1545         * posix/regex_internal.h (re_node_set_insert_last): New declaration.
1546         * posix/regex_internal.c (re_node_set_insert_last): New function.
1547         * posix/PCRE.tests: Add testcases.
1549 2004-11-25  Ulrich Drepper  <drepper@redhat.com>
1551         * dlfcn/dlfcn.h: Remove nonnull attribute from dlopen.
1553         * posix/confstr.c (confstr): Return appropriate strings for
1554         _CS_LFS_LINTFLAGS, _CS_LFS64_CFLAGS, and _CS_LFS64_LINTFLAGS.
1556 2004-11-05  Maciej W. Rozycki  <macro@mips.com>
1558         * sysdeps/mips/dl-machine.h: Include <sgidefs.h>.  Use _ABIO32,
1559         _ABIN32 and _ABI64 for ABI selection throughout.
1560         * sysdeps/mips/elf/start.S: Likewise.
1561         * sysdeps/mips/mips64/__longjmp.c: Likewise.
1562         * sysdeps/mips/mips64/bsd-_setjmp.S: Likewise.
1563         * sysdeps/mips/mips64/bsd-setjmp.S: Likewise.
1564         * sysdeps/mips/mips64/setjmp.S: Likewise.
1565         * sysdeps/mips/mips64/setjmp_aux.c: Likewise.
1566         * sysdeps/mips/sys/regdef.h: Likewise.
1567         * sysdeps/mips/sys/ucontext.h: Likewise.
1568         * sysdeps/unix/mips/sysdep.h: Likewise.
1569         * sysdeps/unix/sysv/linux/kernel-features.h: Likewise.
1570         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
1571         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
1572         * sysdeps/unix/sysv/linux/mips/ptrace.c: Likewise.
1573         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
1574         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
1575         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
1576         * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
1577         * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Likewise.
1579         * sysdeps/mips/atomicity.h: Use _ABIO32, _ABIN32 and _ABI64 for
1580         ABI selection throughout.
1581         * sysdeps/mips/bits/setjmp.h: Likewise.
1582         * sysdeps/mips/fpu/bits/mathdef.h: Likewise.
1583         * sysdeps/mips/machine-gmon.h: Likewise.
1584         * sysdeps/mips/sys/asm.h: Likewise.
1585         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
1586         * sysdeps/unix/sysv/linux/mips/bits/sigcontext.h: Likewise.
1587         * sysdeps/unix/sysv/linux/mips/bits/stat.h: Likewise.
1588         * sysdeps/unix/sysv/linux/mips/kernel_stat.h: Likewise.
1589         * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h: Likewise.
1590         * sysdeps/unix/sysv/linux/mips/sys/ptrace.h: Likewise.
1591         * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
1592         * sysdeps/unix/sysv/linux/mips/sys/user.h: Likewise.
1594         * sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being
1595         included by kernel headers and undo its settings if already
1596         included.  Define _ABIO32, _ABIN32 and _ABI64 if missing and use
1597         them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and
1598         _MIPS_SIM_ABI64 for compatibility.
1599         * sysdeps/unix/sysv/linux/mips/Makefile: Use _ABIO32, _ABIN32 and
1600         _ABI64 for ABI selection in generated syscall-list.h
1601         * sysdeps/unix/sysv/linux/mips/configure.in: Use _ABIO32, _ABIN32
1602         and _ABI64 for ABI selection in generated asm-unistd.h.
1603         * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
1605         * sysdeps/unix/sysv/linux/mips/pwrite.c (__libc_pwrite): Correct
1606         an inverted _MIPS_SIM conditional.
1608 2004-11-23  Alexandre Oliva  <aoliva@redhat.com>
1610         * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Use free
1611         range even if it doesn't match exactly.
1613 2004-11-23  Jakub Jelinek  <jakub@redhat.com>
1615         * nss/nss_files/files-XXX.c (internal_getent): If parse_line returned
1616         -1, also do H_ERRNO_SET (NETDB_INTERNAL).
1618 2004-11-22  Ulrich Drepper  <drepper@redhat.com>
1620         * sysdeps/i386/fpu_control.h: Add volatile to the asms.
1621         Patch by Alexander Stohr.
1623 2004-11-22  Jakub Jelinek  <jakub@redhat.com>
1625         * nscd/nscd_getai (__nscd_getai): Avoid memory and file descriptor
1626         leaks.
1627         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free air.
1629 2004-11-15  Maciej W. Rozycki  <macro@mips.com>
1631         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (__SI_MAX_SIZE):
1632         Define appropriately based on __WORDSIZE.
1633         [struct siginfo] (__pad0): Add for explicit padding.
1635         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Formatting fixes
1636         throughout.
1638 2004-11-22  Ulrich Drepper  <drepper@redhat.com>
1640         * dirent/dirent.h: Add nonnull attributes.
1641         * dlfcn/dlfcn.h: Likewise.
1643 2004-11-20  Jakub Jelinek  <jakub@redhat.com>
1645         * sysdeps/ieee754/k_standard.c: Document code 50.
1646         (__kernel_standard) <case 50>: Avoid raising div-by-zero
1647         exception again.
1649 2004-11-19  H.J. Lu  <hongjiu.lu@intel.com>
1651         [BZ #552]
1652         * math/libm-test.inc (tgamma_test): Update tgamma (0) and
1653         tgamma (-0).
1654         * sysdeps/generic/w_tgamma.c (__tgamma): Properly handle |x| == 0.
1655         * sysdeps/generic/w_tgammaf.c (__tgammaf): Likewise.
1656         * sysdeps/generic/w_tgammal.c (__tgammal): Likewise.
1657         * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
1658         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
1659         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
1660         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
1661         * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle
1662         tgamma (0) and tgamma (-0).
1664 2004-11-20  Ulrich Drepper  <drepper@redhat.com>
1666         * time/tzfile.c (__tzfile_read): Avoid open for checking whether
1667         the file we already use changed.
1669         * misc/syslog.c: Remove !USE_IN_LIBIO code.
1671 2004-11-20  Jakub Jelinek  <jakub@redhat.com>
1673         * signal/signal.h (__sysv_signal, sysv_signal, signal, bsd_signal,
1674         ssignal): Remove __nonnull attribute.
1676 2004-11-20  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1678         * sysdeps/unix/sysv/linux/sh/sys/procfs.h: New file.
1680 2004-11-20  Ulrich Drepper  <drepper@redhat.com>
1682         * signal/signal.h: Add nonnull attributes.
1684         * signal/signal.h: Add deprecated attributes to sigstack,
1685         sigpause, sigblock, sigsetmask, siggetmask.
1687 2004-11-20  Jakub Jelinek  <jakub@redhat.com>
1689         * sysdeps/unix/sysv/linux/bits/socket.h (SCM_RIGHTS): Avoid
1690         comma at the end of enum if __USE_BSD is not defined.
1692 2004-11-19  Ulrich Drepper  <drepper@redhat.com>
1694         * malloc/malloc.c (_int_malloc): Check for corruption of chunk
1695         which is about to be returned.
1697         * malloc/malloc.c (_int_free): Add a few more cheap tests for
1698         corruption.
1700 2004-11-17  Randolph Chung  <tausq@debian.org>
1702         * sysdeps/hppa/dl-machine.h (TRAMPOLINE_TEMPLATE): Add unwind
1703         annotations.
1705 2004-11-18  Jakub Jelinek  <jakub@redhat.com>
1707         [BZ #544]
1708         * posix/regex.h (RE_NO_SUB): New define.
1709         * posix/regex_internal.h (OP_DELETED_SUBEXP): New.
1710         (re_dfa_t): Add subexp_map.
1711         * posix/regcomp.c (struct subexp_optimize): New type.
1712         (optimize_subexps): New routine.
1713         (re_compile_internal): Call it.
1714         (re_compile_pattern): Set preg->no_sub to 1 if RE_NO_SUB.
1715         (free_dfa_content): Free subexp_map.
1716         (calc_inveclosure, calc_eclosure): Skip OP_DELETED_SUBEXP nodes.
1717         * posix/regexec.c (re_search_internal): If subexp_map
1718         is not NULL, duplicate registers as needed.
1719         * posix/Makefile: Add rules to build and run tst-regex2.
1720         * posix/tst-regex2.c: New test.
1721         * posix/rxspencer/tests: Fix last two tests (\0 -> \1).
1722         Add some new tests for nested subexpressions.
1724 2004-11-18  Ulrich Drepper  <drepper@redhat.com>
1726         * libio/libio.h (_IO_FLAGS2_FORTIFY): Renamed from
1727         _IO_FLAGS2_CHECK_PERCENT_N.
1728         * debug/fprintf_chk.c: Adjust all users.
1729         * debug/printf_chk.c: Likewise.
1730         * debug/vfprintf_chk.c: Likewise.
1731         * debug/vprintf_chk.c: Likewise.
1732         * debug/vsnprintf_chk.c: Likewise.
1733         * debug/vsprintf_chk.c: Likewise.
1734         * stdio-common/vfprintf.c: Likewise.  Detect missing %N$ formats.
1735         * debug/tst-chk1.c: Test detection of missing %N$ formats.
1737 2004-11-15  Jakub Jelinek  <jakub@redhat.com>
1739         * posix/bug-regex24.c: Include string.h.
1741         * nis/nis_clone_obj.c (nis_clone_object): Rename out3 label to out2
1742         and out2 to out.  Remove out label.  Formatting.
1744 2004-11-15  Ulrich Drepper  <drepper@redhat.com>
1746         * include/stdio.h: Do not mark __libc_message as noreturn.
1747         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_fatal): Add loop to
1748         fool gcc.  Include <stdbool.h>.
1749         * sysdeps/posix/libc_fatal.c (__libc_fatal): Add loop to fool gcc.
1750         (__libc_message): Fix typo.
1752 2004-11-13  Ulrich Drepper  <drepper@redhat.com>
1754         * malloc/malloc.c (malloc_state): stat_lock_* elements need only
1755         be defined if THREAD_STATS is defined.  Remove pad0_ since it does
1756         not align with cache line sizes in general anyway.
1758 2004-11-13  Jakub Jelinek  <jakub@redhat.com>
1760         * elf/rtld.c (print_statistics): Avoid segfaults if not all namespaces
1761         are used.  Fix computation of num_relative_relocations on RELA
1762         architectures other than IA-64 and Alpha.
1764 2004-11-13  Ulrich Drepper  <drepper@redhat.com>
1766         * malloc/malloc.c (_int_free): Use munmap_chunk for handling
1767         mmaped memory.
1769 2004-11-12  Ulrich Drepper  <drepper@redhat.com>
1771         * malloc/malloc.c (_int_free): Remove test for NULL parameter.
1772         (_int_realloc): Call _int_free only if memory parameter is not NULL.
1774         * sysdeps/unix/sysv/linux/libc_fatal.c: Add new function __libc_message
1775         which performs the printing and simple format string handling.  The
1776         string is written to tty, stderr, syslog in this order, stopping after
1777         the first successful output.
1778         (__libc_fatal): Call __libc_message.
1779         * include/stdio.h: Declare __libc_message.
1780         * malloc/malloc.c (malloc_printerr): Use __libc_message.
1781         * debug/chk_fail.c: Also print message with __libc_message.
1782         * debug/test-strcpy_chk.c: Ensure that debug messages are not printed
1783         to the terminal or stderr.
1784         * debug/tst-chk1.c: Likewise.
1786         * posix/Makefile: Remove gpl2lgpl variable.
1788 2004-11-12  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1790         * elf/elf.h: Add 20 bit relocations R_390_*20.
1792 2004-11-12  Jakub Jelinek  <jakub@redhat.com>
1794         * sysdeps/unix/sysv/linux/i386/setuid.c: Include linux/posix_types.h.
1795         * sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
1796         * sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
1797         * sysdeps/unix/sysv/linux/i386/setregid.c: Likewise.
1798         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
1799         * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
1801 2004-11-12  Andreas Schwab  <schwab@suse.de>
1803         * nis/ypclnt.c (ypprot_err): Fix "minor optimizations".
1805 2004-11-12  Ulrich Drepper  <drepper@redhat.com>
1807         * posix/Makefile (tests): Add bug-regex24.
1808         * posix/bug-regex24.c: New file.
1810 2004-11-12  Paolo Bonzini  <bonzini@gnu.org>
1812         * posix/regexec.c (check_dst_limits_calc_pos_1): Use the map to
1813         cut recursive paths.  Make exit condition more precise.
1814         (match_ctx_add_entry): Initialize the map.
1815         * posix/regex_internal.h (struct re_backref_cache_entry): Add a map of
1816         reachable subexpression nodes from each backreference cache entry.
1818 2004-11-10  Jakub Jelinek  <jakub@redhat.com>
1820         * sysdeps/unix/sysv/linux/setreuid.c: Remove sys/syscall.h,
1821         sys/types.h, linux/posix_types.h, sysdep.h and pthread-functions.h
1822         includes.  Include setxid.h.  Use INLINE_SETXID_SYSCALL macro
1823         instead of INLINE_SYSCALL, kill the HAVE_PTR__NPTL_SETXID guarded
1824         snippets.
1825         * sysdeps/unix/sysv/linux/setegid.c: Likewise.
1826         * sysdeps/unix/sysv/linux/setuid.c: Likewise.
1827         * sysdeps/unix/sysv/linux/seteuid.c: Likewise.
1828         * sysdeps/unix/sysv/linux/setgid.c: Likewise.
1829         * sysdeps/unix/sysv/linux/setresuid.c: Likewise.
1830         * sysdeps/unix/sysv/linux/setresgid.c: Likewise.
1831         * sysdeps/unix/sysv/linux/setregid.c: Likewise.
1832         * sysdeps/unix/sysv/linux/i386/setegid.c: Likewise.
1833         * sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
1834         * sysdeps/unix/sysv/linux/i386/setuid.c: Likewise.
1835         * sysdeps/unix/sysv/linux/i386/seteuid.c: Likewise.
1836         * sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
1837         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
1838         * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
1839         * sysdeps/unix/sysv/linux/i386/setregid.c: Likewise.
1840         * sysdeps/unix/sysv/linux/alpha/setreuid.c: Likewise.
1841         Formatting.  Change signed int into int.
1842         * sysdeps/unix/sysv/linux/alpha/setresuid.c: Likewise.
1843         * sysdeps/unix/sysv/linux/alpha/setresgid.c: Likewise.
1844         * sysdeps/unix/sysv/linux/alpha/setregid.c: Likewise.
1845         * sysdeps/unix/sysv/linux/syscalls.list (setresuid, setresgid):
1846         Remove.
1847         * sysdeps/unix/setxid.h: New file.
1849         * Rules (binaries-static): Add xtests-static.
1850         * Makeconfig (run-program-prefix): Filter also xtests-static.
1852 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu.
1854         [BZ #535]
1855         * time/difftime.c: Fix a double-rounding bug on hosts with
1856         64-bit time_t and long double being IEEE double.  Also, port
1857         to more valid C99 hosts, even those that have padding bits.
1858         Don't include <values.h> since it is marked as an obsolescent
1859         interface.  Include <limits.h>, <float.h>, and <stdint.h> instead.
1860         (TYPE_BITS, TYPE_FLOATING, TYPE_SIGNED): New macros.
1861         (subtract): New static function, that works correctly without
1862         double-rounding, even on hosts with 64-bit time_t.  Also cater
1863         to hosts with padding bits.
1864         (__difftime): Use it.  Use DBL_MANT_DIG and LDBL_MANT_DIG to
1865         determine whether floating types are wide enough: the old
1866         test (which used sizeof) could in theory report the wrong results
1867         on hosts with padding bits in floating-point values.
1869 2004-11-11  Simon Josefsson  <jas@extundo.com>
1871         [BZ #542]
1872         * sysdeps/generic/strtok_r.c [HAVE_CONFIG_H]: Include config.h.
1873         [!_LIBC]: Include strtok_r.h (in gnulib), map __strtok_r to
1874         strtok_r and __rawmemchr to strch.
1875         (__strtok_r): Use C89 prototype.
1876         [weak_alias]: Move calls to libc_hidden_def and weak_alias into
1877         this #ifdef.
1879 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
1881         [BZ #541]
1882         * time/mktime.c (SHR): New macro, which is a portable
1883         substitute for >> that should work even on Crays.
1884         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
1885         Problem reported by Mark D. Baushke in
1886         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
1888 2004-11-09  Paolo Bonzini  <bonzini@gnu.org>
1890         * posix/regexec.c (match_ctx_free_subtops): Remove, merge into...
1891         (match_ctx_clean): ... this function.
1892         (match_ctx_free): Call match_ctx_clean.
1894         * posix/regexec.c (transit_state): Remove the check for
1895         out-of-bounds buffers.
1896         (check_matching): Check here for out-of-bounds buffers.
1897         (re_search_internal): Store into match_kind a set of bits
1898         indicating which incantation of fastmap scanning must be
1899         used.  Use a switch statement instead of multiple ifs.
1900         Exit the final "for (;;)" with goto free_return unless
1901         the match succeeded, thus simplifying some conditionals.
1903         * posix/regex_internal.c (re_string_reconstruct,
1904         re_string_context_at): Add several branch predictions for
1905         case-sensitive matching and no transition table being used.
1907 2004-11-10  Ulrich Drepper  <drepper@redhat.com>
1909         * posix/tst-waitid.c: Don't use error to print error message, they
1910         won't end up in the .out file.
1912 2004-11-09  Ulrich Drepper  <drepper@redhat.com>
1914         * nscd/nscd-client.h (libc_locked_map_ptr): Add new first
1915         parameter, used as class for definition.
1916         * nscd/nscd_getpw_r.c: Adjust for libc_locked_map_ptr change.
1917         (pw_map_free): Ensure no crash after memory is freed.
1918         * nscd/nscd_getgr_r.c: Likewise.  Make map externally visible.
1919         * nscd/nscd_gethst_r.c: Likewise.
1920         * nscd/nscd_getai.c: Use map from nscd_gethost.c.
1921         * nscd/nscd_initgroups.c: Use map from nscd_getgr.c.
1923         * nscd/nscd_getai.c: Add some checks to detect corrupt databases.
1924         * nscd/nscd_getgr_r.c: Likewise
1925         * nscd/nscd_gethst_r.c: Likewise.
1926         * nscd/nscd_getpw_r.c: Likewise
1928 2004-11-09  Jakub Jelinek  <jakub@redhat.com>
1930         * posix/regcomp.c (calc_eclosure_iter): Don't access
1931         dfa->edests[node].elems[0] if dfa->edests[node].nelem == 0.
1932         * posix/rxspencer/tests: Add 5 new tests.
1934 2004-11-09  Ulrich Drepper  <drepper@redhat.com>
1936         * sysdeps/unix/sysv/linux/ifaddrs.c: Determine sin6_scope_id field
1937         value correctly.  Patch by Mitsuru Kanda <mk@karaba.org>.
1939 2004-11-04  Jakub Jelinek  <jakub@redhat.com>
1941         * libio/fileops.c (_IO_new_file_seekoff): If mode is 0 and
1942         fp->_offset == _IO_pos_BAD, just call _IO_SYSSEEK (fp, 0, dir)
1943         and if successful set fp->_offset.
1944         * libio/Makefile (tests): Add bug-ungetc3.
1945         * libio/bug-ungetc3.c: New test.
1947 2004-11-03  Marcus Brinkmann  <marcus@gnu.org>
1949         * sysdeps/gnu/_G_config.h (_G_HAVE_MREMAP): Define symbol.
1950         * sysdeps/mach/hurd/_G_config.h: New file.
1951         * libio/fileops.c (mmap_remap_check) [__linux__]: Replaced with
1952         [_G_HAVE_MREMAP].
1954 2004-11-08  Ulrich Drepper  <drepper@redhat.com>
1956         * posix/regcomp.c (utf8_sb_map): Define.
1957         (free_dfa_content): Don't free dfa->sb_char if it's a pointer to
1958         utf8_sb_map.
1959         (init_dfa): Use utf8_sb_map instead of initializing memory when the
1960         encoding is UTF-8.
1962 2004-11-03  Paolo Bonzini  <bonzini@gnu.org>
1964         * posix/regcomp.c (init_dfa): Get the codeset name outside glibc as
1965         well.  Check if it is spelled UTF8 as well as UTF-8, and check
1966         case-insensitively.  Set dfa->map_notascii manually when outside
1967         glibc.
1968         * posix/regex_internal.c (build_wcs_upper_buffer) [!_LIBC]: Enable
1969         optimizations based on map_notascii.
1970         * posix/regex_internal.h [HAVE_LANGINFO_H || HAVE_LANGINFO_CODESET
1971         || _LIBC]: Include langinfo.h.
1973         * posix/regex_internal.h (struct re_backref_cache_entry): Add "more"
1974         field.
1975         * posix/regexec.c (check_dst_limits): Hoist computation of the source
1976         and destination bkref_idx out of the loop.  Pass it to
1977         check_dst_limits_calc_pos.
1978         (check_dst_limits_calc_pos_1): New function, containing the recursive
1979         loop of check_dst_limits_calc_pos; uses the "more" field of
1980         struct re_backref_cache to control the loop.
1981         (check_dst_limits_calc_pos): Store into "boundaries" the position
1982         relative to lim's start and end positions.  Do not accept eclosures,
1983         accept bkref_idx instead.  Call check_dst_limits_calc_pos_1 to do the
1984         work.
1985         (sift_states_bkref): Use the "more" field of struct re_backref_cache
1986         to control the loop.  A big "if" was turned into a continue and the
1987         function was reindented.
1988         (get_subexp): Use the "more" field of struct re_backref_cache
1989         to control the loop.
1990         (match_ctx_add_entry): Initialize the bkref_ents' "more" field.
1991         (search_cur_bkref_entry): Return -1 if out of bounds.
1993         * posix/regexec.c (empty_set): Remove.
1994         (sift_states_backward): Remove cur_src variable.  Move inner loop
1995         to build_sifted_states.
1996         (build_sifted_states): Extract from sift_states_backward.  Do not
1997         use empty_set.
1998         (update_cur_sifted_state): Do not use empty_set.  Special case
1999         dest_nodes->nelem == 0.
2001         * posix/regex_internal.h (struct re_backref_cache_entry): Remove flag
2002         field.
2003         (struct re_sift_context_t): Remove cur_bkref, cls_subexp_idx,
2004         check_subexp fields.  Move limits last.
2005         * posix/regexec.c (match_ctx_clear_flag): Remove.
2006         (sift_ctx_init): Remove check_subexp parameter.  Do not set removed
2007         fields.  Callers adjusted.
2008         (expand_bkref_cache): Remove last_str parameter.  Callers adjusted.
2009         (re_search_internal): Remove fast_translate variable.
2010         (update_cur_sifted_state): Pass candidates as the final parameter
2011         to sift_states_bkref.
2012         (sift_states_bkref): Change last unused parameter to be "candidates",
2013         do not fetch candidates into a local variable.
2014         Remove dead test for "node == sctx->bkref", and the cur_bkref_idx
2015         variable.
2016         Remove loops that set/reset the flag field of backref cache entries.
2017         (check_arrival_add_next_nodes): Use a signed int to hold the return
2018         value of re_node_set_insert.
2019         (group_nodes_into_DFAstates): Likewise.
2020         (match_ctx_add_entry): Do not set the flag field of the new entry.
2022 2004-11-05  Roland McGrath  <roland@redhat.com>
2024         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Define
2025         _dl_sysinfo_dso under [NEED_DL_SYSINFO_DSO] as well.
2026         * elf/rtld.c (dl_main): Set up GLRO(dl_sysinfo_dso) under
2027         [NEED_DL_SYSINFO_DSO] as well.
2028         * sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Always include
2029         AT_SYSINFO and AT_SYSINFO_EHDR in name table.
2030         (_dl_sysdep_start) [NEED_DL_SYSINFO_DSO]: Match AT_SYSINFO_EHDR.
2031         * elf/dl-support.c (_dl_sysinfo_dso): Define also under
2032         [NEED_DL_SYSINFO_DSO].
2033         (_dl_aux_init) [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO]:
2034         Match AT_SYSINFO_EHDR and set GL(dl_sysinfo_dso).
2036 2004-11-05  Roland McGrath  <roland@redhat.com>
2038         * manual/errno.texi (Error Codes): Revert last change for now.
2039         * sysdeps/gnu/errlist.c: Regenerated.
2041 2004-11-04  Roland McGrath  <roland@frob.com>
2043         * Makeconfig (link-libc, rpath-dirs): Remove AIX cruft definitions.
2044         (LDFLAGS-rpath-ORIGIN, LDFLAGS-soname-fname): Likewise.
2045         (LDFLAGS-rdynamic, LDFLAGS-Bsymbolic): Likewise.
2046         ($(common-objpfx)gnu/lib-names.stmp): Likewise.
2048 2004-11-01  Jakub Jelinek  <jakub@redhat.com>
2050         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h [__WORDSIZE == 32]
2051         (elf_fpxregset_t): New type.
2052         (struct elf_prpsinfo): If __WORDSIZE == 32, change pr_[ug]id type
2053         to unsigned short int.
2054         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
2055         (struct user_fpregs_struct): Fix comment.
2056         * sysdeps/i386/fpu/bits/mathdef.h (float_t, double_t): If
2057         __FLOAT_EVAL_METHOD__ is defined and 0, typedef to float resp. double.
2058         * sysdeps/x86_64/fpu/bits/mathdef.h: Include bits/wordsize.h.
2059         (float_t, double_t): If -m32 and not -mfpmath=sse, typedef to
2060         long double.
2061         * sysdeps/x86_64/fpu/bits/fenv.h: Include bits/wordsize.h.
2062         (fenv_t): Remove __mxcsr field for -m32.
2064 2004-11-04  Jakub Jelinek  <jakub@redhat.com>
2066         * libio/ftello.c (ftello): Don't subtract save_end - save_base
2067         if pos is _IO_pos_BAD.
2068         * libio/ftello64.c (ftello64): Likewise.
2069         * libio/iofgetpos.c (_IO_new_fgetpos): Likewise.
2070         * libio/iofgetpos64.c (_IO_new_fgetpos64): Likewise.
2071         * libio/oldiofgetpos.c (_IO_old_fgetpos): Likewise.
2072         * libio/oldiofgetpos64.c (_IO_old_fgetpos64): Likewise.
2073         * libio/ioftell.c (_IO_ftell): Likewise.
2074         Cast to long int instead of off_t when checking for overflow.
2076 2004-11-04  Richard Henderson  <rth@redhat.com>
2078         * sysdeps/unix/sysv/linux/alpha/register-dump.h (regnames): Align.
2079         (linefeed): Remove.
2080         (register_dump): Rewrite to generate into a flat buffer instead
2081         of into iovecs.
2083 2004-11-02  Jakub Jelinek  <jakub@redhat.com>
2085         * debug/tst-chk1.c (ret): New volatile variable.
2086         (CHK_FAIL_END): Remove redundant ret setting.
2087         (do_test): Remote ret variable.
2089 2004-01-03  Paolo Bonzini  <bonzini@gnu.org>
2091         * posix/regex_internal.h (__regfree) [!_LIBC]: Define to regfree.
2093 2004-11-03  Marcus Brinkmann  <marcus@gnu.org>
2095         * sysdeps/generic/utime.c: Include <stddef.h>.
2097         * sysdeps/generic/sysconf.c: Include <grp.h> and <pwd.h>.
2099         * sysdeps/generic/tempname.c (__path_search): Add missing argument
2100         TRY_TMPDIR.
2102 2004-10-31  Mariusz Mazur <mmazur@kernel.pl>
2104         * sysdeps/unix/sysv/linux/alpha/setregid.c: New file.
2105         * sysdeps/unix/sysv/linux/alpha/setresgid.c: New file.
2106         * sysdeps/unix/sysv/linux/alpha/setresuid.c: New file.
2107         * sysdeps/unix/sysv/linux/alpha/setreuid.c: New file.
2109 2004-10-27  Derek R. Price  <derek@ximbiot.com>
2111         [BZ #487] This change is imported from gnulib.
2112         * time/mktime.c (not_equal_tm) [DEBUG]: Remove redundant check.
2114 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2116         [BZ #473]
2117         * time/tst-mktime.c (main): Don't assume that mktime fails
2118         when given time stamps before 1970.  It returns negative
2119         time_t values instead, for compatibility with BSD.
2121         * time/tst-mktime2.c: New file.
2122         * time/Makefile (tests): Add it.
2124         [BZ #473] Import from gnulib.  Revamp to avoid several problems near
2125         time_t extrema, and on hosts with 64-bit time_t and 32-bit int.
2126         This fixes Debian bug 177940.
2127         * time/mktime.c (TIME_T_MIDPOINT): New macro.
2128         (ydhms_diff): Renamed from ydhms_tm_diff, with a new signature,
2129         which avoids overflow problems on hosts with 64-bit time_t and
2130         32-bit int.  All callers changed.  Now an inline function.
2131         Verify at compile-time that long int is wide enough to avoid
2132         these overflow problems.
2133         (guess_time_tm): New function.
2134         (__mktime_internal): Use it.  Avoid overflow when computing yday on
2135         hosts with 64-bit long and 32-bit int.  Remove tests for 69;
2136         no longer needed.  Use if rather than #ifdef for LEAP_SECONDS_POSSIBLE
2137         so that the code is checked by more compilers.
2138         Do not rely on floating point to probe: stick to integer arithmetic,
2139         to avoid potential porting problems.
2140         Repair potential overflow correctly in the Southern Hemisphere.
2141         (localtime_offset): Add a FIXME for the case where time_t is unsigned.
2143 2004-10-30  Andreas Schwab  <schwab@suse.de>
2145         * sysdeps/m68k/dl-machine.h (elf_machine_rela)
2146         (elf_machine_rela_relative, elf_machine_lazy_rel): Mark auto
2147         instead of static.
2149 2004-10-30  Andreas Schwab  <schwab@suse.de>
2151         * sysdeps/unix/sysv/linux/waitid.c: Include <stddef.h> for NULL.
2153 2004-10-30  Ulrich Drepper  <drepper@redhat.com>
2155         * malloc/malloc.c (_int_free): Use unique comments for the error
2156         cases.
2158 2004-10-28  Roland McGrath  <roland@frob.com>
2160         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_fork): Use i386_thread_state
2161         instead of machine_thread_state.
2163 2004-10-28  Roland McGrath  <roland@redhat.com>
2165         * sysdeps/unix/sysv/linux/syscalls.list: Remove setaltroot.
2167 2004-10-28  Ulrich Drepper  <drepper@redhat.com>
2169         * elf/dl-open.c (dl_open_worker): Remove reference to glibcbug script.
2171 2004-10-27  Ulrich Drepper  <drepper@redhat.com>
2173         * elf/dl-load.c (_dl_map_object): Use cache_rpath to check for
2174         existing rpath in main executable, not explicit test.
2176 2004-10-27  Jakub Jelinek  <jakub@redhat.com>
2178         * include/resolv.h (_res_opcodes): New extern.
2179         Add libresolv_hidden_proto.
2180         * resolv/res_debug.c (_res_opcodes): Remove.
2181         (__p_class_syms, __p_type_syms): Add libresolv_hidden_proto
2182         and libresolv_hidden_data_def.  Remove attribute_hidden.
2183         * resolv/res_mkquery (_res_opcodes): Remove.
2184         * resolv/res_data.c (_res_opcodes): Remove attribute_hidden.
2185         Add libresolv_hidden_data_def.
2187 2004-10-27  Ulrich Drepper  <drepper@redhat.com>
2189         * elf/dl-open.c (_dl_open): Don't allow explicitly opening a DSO
2190         into an empty namespace.
2192         * elf/dl-fini.c (_dl_fini): Fix search for map in maps array.
2193         Reverse order of namespaces.
2194         * elf/Makefile: Add rules to build and run tst-dlmopen3.
2195         * elf/tst-dlmopen3.c: New file.
2196         * elf/tst-dlmopen1mod.c: Add check whether constructor runs.
2198 2004-10-27  Jakub Jelinek  <jakub@redhat.com>
2200         * sysdeps/generic/glob.c (globfree): Clear gl_pathv after freeing it.
2201         * posix/Makefile: Add rules to build and run bug-glob2 test.
2202         * posix/bug-glob2.c: New test.
2204 2004-10-27  Roland McGrath  <roland@frob.com>
2206         * sysdeps/mach/hurd/i386/tls.h (HURD_TLS_DESC_DECL): New macro.
2207         (_hurd_tls_init): Use it.
2208         (_hurd_tls_fork): New function.
2209         * sysdeps/mach/hurd/fork.c (__fork) [USE_TLS]: Call it.
2211 2004-10-26  Roland McGrath  <roland@frob.com>
2213         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Initialize TCB->tcb.
2215 2004-10-26  Jakub Jelinek  <jakub@redhat.com>
2217         * sysdeps/gnu/netinet/udp.h (struct udphdr): Use u_int16_t
2218         type instead of uint16_t.  Formatting.
2220 2004-10-25  Roland McGrath  <roland@redhat.com>
2222         * login/openpty.c (openpty): Add libutil_hidden_def.
2224         * nss/nss_files/files-parse.c (nss_files_parse_hidden_def): Define to
2225         either libc_hidden_def or libnss_files_hidden_def, not hidden_def.
2226         This file is also compiled into libnss_hesiod by #include.
2228 2004-10-25  Roland McGrath  <roland@frob.com>
2230         * sysdeps/unix/bsd/hp: Directory and all files removed.
2231         These are now in the ports repository.
2232         * sysdeps/unix/bsd/osf: Likewise.
2233         * sysdeps/unix/bsd/sequent: Likewise.
2234         * sysdeps/unix/bsd/sony: Likewise.
2235         * sysdeps/unix/bsd/ultrix4: Likewise.
2236         * sysdeps/unix/sysv/aix: Likewise.
2237         * sysdeps/unix/sysv/hpux: Likewise.
2238         * sysdeps/unix/sysv/irix4: Likewise.
2239         * sysdeps/unix/sysv/isc2.2: Likewise.
2240         * sysdeps/unix/sysv/minix: Likewise.
2241         * sysdeps/unix/sysv/sco3.2.4: Likewise.
2242         * sysdeps/unix/sysv/sco3.2: Likewise.
2243         * sysdeps/unix/sysv/sysv4: Likewise.
2245         * configure.in (ASM_LINE_SEP): Move this setting to ...
2246         * sysdeps/hppa/configure.in: ... here, new file.
2247         * sysdeps/hppa/configure: New generated file.
2248         * configure: Regenerated.
2250 2004-10-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2252         * sysdeps/sh/dl-machine.h: Include sysdep.h.
2253         (ELF_MACHINE_RUNTIME_TRAMPOLINE): Add CFI directives.
2254         (elf_machine_runtime_setup): Add always_inline attribute.
2255         (_dl_start_user): Pass the correct environ.
2256         (elf_machine_rela): Replace static inline by auto inline, add
2257         always_inline attribute.
2258         (elf_machine_rela_relative): Likewise.
2259         (elf_machine_lazy_rel): Likewise.
2261 2004-10-24  Ulrich Drepper  <drepper@redhat.com>
2263         * nis/nis_call.c: Pretty printing.  Minor cleanups.
2264         * nis/nis_addmember.c (nis_addmember): Add assert to check buffer
2265         bounds.
2267         * resolv/nss_dns/dns-host.c: Avoid using PLTs.
2268         * include/libc-symbols.h: Define hidden attribute macros for
2269         libnss_nisplus and libutil.
2270         * include/utmp.h: Add libutil_hidden_proto for login_tty.
2271         * login/login_tty.c: Add libutil_hidden_def.
2272         * nis/nisplus-parser.h: Add libnss_nisplus_hidden_proto for parsers.
2273         * nis/nss_nisplus/nisplus-parser.c: Add libnss_nisplus_hidden_def.
2274         * include/pty.h: New file.
2275         * include/rpcsvc/yp.h: New file.
2276         * include/rpcsvc/ypclnt.h: New file.
2277         * include/rpcsvc/ypupd.h: New file.
2278         * include/libc-symbols.h: Define hidden attribute macros for libnsl.
2279         * include/rpcsvc/nislib.h: Use libnsl_hidden_proto for various
2280         functions.
2281         * nis/nis_add.c: Add libnsl_hidden_def.  Minor optimizations.
2282         * nis/nis_call.c: Likewise.
2283         * nis/nis_clone_obj.c: Likewise.
2284         * nis/nis_defaults.c: Likewise.
2285         * nis/nis_domain_of_r.c: Likewise.
2286         * nis/nis_error.c: Likewise.
2287         * nis/nis_file.c: Likewise.
2288         * nis/nis_free.c: Likewise.
2289         * nis/nis_local_names.c: Likewise.
2290         * nis/nis_lookup.c: Likewise.
2291         * nis/nis_modify.c: Likewise.
2292         * nis/nis_print.c: Likewise.
2293         * nis/nis_remove.c: Likewise.
2294         * nis/nis_subr.c: Likewise.
2295         * nis/nis_table.c: Likewise.
2296         * nis/nis_util.c: Likewise.
2297         * nis/yp_xdr.c: Likewise.
2298         * nis/ypclnt.c: Likewise.
2299         * nis/ypupdate_xdr.c: Likewise.
2301         * resolv/res_send.c (send_dg): Cope with failures.
2303         * include/libc-symbols.h: Define hidden attribute macros for
2304         libnss_files.
2305         * include/netdb.h: Use libnss_files_hidden_proto for the parsers
2306         defined in libnss_files, not libc_hidden_proto.
2307         * include/netinet/ether.h: Likewise.
2308         * include/rpc/netdb.h: Likewise.
2309         * nss/nss_files/files-parse.c: Use hidden_def in parser definitions
2310         instead of libc_hidden_def.
2311         * nss/nss_files/files-netgrp.c: Add libnss_files_hidden_def to
2312         _nss_netgroup_parseline definition.
2314 2004-10-23  Roland McGrath  <roland@frob.com>
2316         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Don't return early
2317         after an RPC succeeds.
2319         * sysdeps/vax, sysdeps/unix/bsd/vax: Directories and all files removed.
2320         These are now in the ports repository.
2321         * sysdeps/tahoe, sysdeps/unix/bsd/tahoe: Likewise.
2322         * sysdeps/cris, sysdeps/unix/sysv/linux/cris: Likewise.
2323         * sysdeps/am29k, sysdeps/i860, sysdeps/i960, sysdeps/m88k: Likewise.
2324         * sysdeps/standalone, sysdeps/z8000: Likewise.
2326 2004-10-23  Ulrich Drepper  <drepper@redhat.com>
2328         * resolv/res_send.c (send_dg): Combine write and read to socket
2329         into one loop.
2331 2004-10-22  Roland McGrath  <roland@frob.com>
2333         * Makefile (%.bz2, %.gz): Move these pattern rules ...
2334         * Makerules: ... to here.
2336 2001-10-31  Alexandre Oliva  <aoliva@redhat.com>
2338         * elf/elf.h: Add R_MN10300_* relocation numbers.
2340 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
2342         [BZ #471] Fix imported from gnulib.
2343         * time/mktime.c (leapyear, ydms_tm_diff): Year is of type
2344         long int, not int, to avoid problems when tm_year == INT_MAX
2345         and tm_mon > 12.
2346         (__mktime_intenral): Compute year using long int arithmetic,
2347         not int arithmetic, to avoid problems on hosts where time_t
2348         and long are 64 bits but int is 32.
2350         [BZ #468] Import a fix from gnulib.
2351         * time/mktime.c [! DEBUG]: Do not include <string.h>.
2352         It's needed only if DEBUG is nonzero.
2354         [BZ #470] Import fix from gnulib.
2355         * time/mktime.c [!_LIBC] (__mktime_internal): Define to
2356         mktime_internal, to avoid clashes with any __mktime_internal
2357         function defined in the standard library.
2359         [BZ #469] Imported from gnulib.
2360         * time/mktime.c (__isleap): Remove; all uses replaced by:
2361         (leapyear): New function, which avoids overflow by not adding
2362         1900 to year before testing whether it is a leap year.
2364         [BZ #472] Imported from gnulib.
2365         * time/mktime.c (Local Variables): Remove -DHAVE_TIME_R_POSIX;
2366         no longer used.
2368 2004-10-22  Ulrich Drepper  <drepper@redhat.com>
2370         * resolv/res_send.c: Remove compatibility code which is unused in
2371         glibc and probably bitrotten.
2373         * debug/execinfo.h: Remove __THROW from backtrace prototype.
2375 2004-10-22  Jakub Jelinek  <jakub@redhat.com>
2377         * sysdeps/i386/Makefile (CFLAGS-backtrace.c): Add -fexceptions.
2378         * sysdeps/i386/backtrace.c: Include <bits/libc-lock.h>, <dlfcn.h>,
2379         <stdlib.h> and <unwind.h>.  Remove <bp-checks.h> include.
2380         (struct trace_arg): New type.
2381         (unwind_backtrace, unwind_getip, unwind_getcfa, unwind_getgr): New
2382         fn pointers resp. macros.
2383         (init, backtrace_helper): New functions.
2384         (__backtrace): Rewritten to use _Unwind_Backtrace first and fall
2385         back to frame pointer walking.
2387 2004-10-22  Ulrich Drepper  <drepper@redhat.com>
2389         * sysdeps/unix/sysv/linux/Versions: Things are still in flux, it
2390         seems.  Undo last additions.
2392 2004-10-21  Ulrich Drepper  <drepper@redhat.com>
2394         * posix/execvp.c (execvp): Also ignore ENODEV and ETIMEDOUT errno
2395         values.
2397 2004-10-20  Roland McGrath  <roland@redhat.com>
2399         * Makeconfig ($(common-objpfx)shlib-versions.v.i): Check also
2400         $(config-sysdirs) for shlib-versions files.
2402         * Makeconfig ($(common-objpfx)soversions.i): Replace shell loop with
2403         use of ...
2404         * scripts/soversions.awk: ... this new file.  Collect lib info and
2405         match any DEFAULT line before emitting anything, so DEFAULT can come
2406         later in the concatenation of shlib-versions files.
2408         * manual/errno.texi (Error Codes): Add ENOKEY, EKEYEXPIRED,
2409         EKEYREVOKED, EKEYREJECTED.
2410         * sysdeps/unix/sysv/linux/Versions (libc: GLIBC_2.3.4): New errlist.
2411         * sysdeps/gnu/errlist.c: Regenerated
2413         * sysdeps/gnu/errlist-compat.awk: Don't bail if Versions gives a count
2414         higher than ERR_MAX reports.  Instead, emit a #define ERR_MAX.
2415         * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.h): New target.
2416         (generated): Add errlist-compat.h.
2417         * sysdeps/gnu/errlist.awk: Make output #include <errlist-compat.h> to
2418         define ERR_MAX and use that for table size.
2420 2004-10-20  Ulrich Drepper  <drepper@redhat.com>
2422         * sysdeps/unix/sysv/linux/syscalls.list: Add entries for setaltroot,
2423         key_add, key_request, and keyctl syscalls.
2424         * sysdeps/unix/sysv/linux/Versions: Export them.
2426 2004-10-19  Roland McGrath  <roland@frob.com>
2428         * sysdeps/mach/readonly-area.c: New file.
2430 2004-10-19  Ulrich Drepper  <drepper@redhat.com>
2432         * elf/Versions [ld, GLIBC_PRIVATE]: Add _dl_debug_state.
2433         * elf/dl-debug.c (_dl_debug_state): Add rtld_hidden_def.
2434         * sysdeps/generic/ldsodefs.h (_dl_debug_state): Don't mark as
2435         hidden but use rtld_hidden_proto.
2437 2004-10-19  Alfred M. Szmidt  <ams@gnu.org>
2439         * sysdeps/generic/readonly-area.c (__readonly_str): Renamed to ...
2440         (__readonly_area): ... this.
2442 2004-10-18  Jakub Jelinek  <jakub@redhat.com>
2444         * sysdeps/generic/strcpy_chk.c (__strcpy_chk): Speed up by checking
2445         destlen only every 4 bytes.
2447 2004-10-19  Ulrich Drepper  <drepper@redhat.com>
2449         * nss/getent.c (hosts_keys): Let inet_pton decide whether the
2450         string is an address or not.
2452 2004-10-19  Jakub Jelinek  <jakub@redhat.com>
2454         * elf/dl-addr.c (_dl_addr): Don't look at STT_TLS symbols.
2455         Use DL_SYMBOL_ADDRESS to set dli_saddr.
2457         * debug/Makefile (catchsegv): Prefix $LIB with a backslash.
2459 2004-10-19  Ulrich Drepper  <drepper@redhat.com>
2461         * debug/Makefile ($(objpfx)catchsegv): To support multilib
2462         platforms, use $LIB in path to slibdir.
2464 2004-10-19  Jakub Jelinek  <jakub@redhat.com>
2466         * debug/catchsegv.sh: Update copyright year.
2467         Use mktemp to create segv_output file.
2469 2004-10-18  Jakub Jelinek  <jakub@redhat.com>
2471         * elf/dl-libc.c (__libc_dlsym_private, __libc_register_dl_open_hook):
2472         New functions.
2473         (__libc_dlopen_mode): Call __libc_register_dl_open_hook and
2474         __libc_register_dlfcn_hook.
2475         * dlfcn/Makefile (routines, elide-routines.os): Set.
2476         Add rules to build and test tststatic2.
2477         * dlfcn/tststatic2.c: New test.
2478         * dlfcn/modstatic2.c: New test module.
2479         * dlfcn/dladdr.c: Call _dlfcn_hook from libdl.so if not NULL.
2480         Define __ prefixed routine in libc.a and in libdl.a just call it.
2481         * dlfcn/dladdr1.c: Likewise.
2482         * dlfcn/dlclose.c: Likewise.
2483         * dlfcn/dlerror.c: Likewise.
2484         * dlfcn/dlinfo.c: Likewise.
2485         * dlfcn/dlmopen.c: Likewise.
2486         * dlfcn/dlopen.c: Likewise.
2487         * dlfcn/dlopenold.c: Likewise.
2488         * dlfcn/dlsym.c: Likewise.
2489         * dlfcn/dlvsym.c: Likewise.
2490         * dlfcn/sdladdr.c: New file.
2491         * dlfcn/sdladdr1.c: New file.
2492         * dlfcn/sdlclose.c: New file.
2493         * dlfcn/sdlerror.c: New file.
2494         * dlfcn/sdlinfo.c: New file.
2495         * dlfcn/sdlopen.c: New file.
2496         * dlfcn/sdlsym.c: New file.
2497         * dlfcn/sdlvsym.c: New file.
2498         * dlfcn/Versions (libdl): Export _dlfcn_hook@GLIBC_PRIVATE.
2499         * include/dlfcn.h (DL_CALLER_DECL, DL_CALLER RETURN_ADDRESS): Define.
2500         (struct dlfcn_hook): New type.
2501         (_dlfcn_hook): New extern decl.
2502         (__dlopen, __dlclose, __dlsym, __dlerror, __dladdr, __dladdr1,
2503         __dlinfo, __dlmopen, __libc_dlsym_private,
2504         __libc_register_dl_open_hook, __libc_register_dlfcn_hook): New
2505         prototypes.
2506         (__dlvsym): Use DL_CALLER_DECL.
2507         * include/libc-symbols.h: Define libdl_hidden_proto and friends.
2509         * malloc/arena.c (_dl_open_hook): Extern decl.
2510         (ptmalloc_init): Don't call _dl_addr when dlopened from statically
2511         linked programs but don't use brk for them either.
2513 2004-10-18  Roland McGrath  <roland@redhat.com>
2515         * dlfcn/bug-dlsym1.c (main): Remove bogus setenv call.
2517 2004-10-18  Ulrich Drepper  <drepper@redhat.com>
2519         * elf/dl-open.c (dl_open_worker): Avoid dereferencing map in
2520         statically linked code if there might none be found.
2522 2004-10-06  Maciej W. Rozycki  <macro@mips.com>
2524         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
2525         (__SYSCALL_CLOBBERS): Add "memory".
2526         * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h
2527         (__SYSCALL_CLOBBERS): Likewise.
2528         * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h
2529         (__SYSCALL_CLOBBERS): Likewise.
2531 2004-10-17  Ulrich Drepper  <drepper@redhat.com>
2533         * include/libc-symbols.h: Define libresolv_hidden_proto and friends.
2534         * include/resolv.h: Add libresolv_hidden_proto for symbols defined,
2535         used, and exported in libresolv.
2536         * resolv/base64.c: Add libresolv_hidden_def.
2537         * resolv/gethnamaddr.c: Likewise.
2538         * resolv/ns_name.c: Likewise.
2539         * resolv/ns_netint.c: Likewise.
2540         * resolv/res_comp.c: Likewise.
2541         * resolv/res_data.c: Likewise.
2542         * resolv/res_debug.c: Likewise.
2543         * resolv/res_mkquery.c: Likewise.
2544         * resolv/res_query.c: Likewise.
2545         * resolv/res_send.c: Likewise.
2547 2004-10-15  Jakub Jelinek  <jakub@redhat.com>
2549         * elf/dl-minimal.c (__chk_fail): New.  Add rtld_hidden_def.
2550         * sysdeps/unix/sysv/linux/readonly-area.c: New file.
2551         * sysdeps/i386/i686/memmove.S (__memmove_chk): Add checking
2552         routine.
2553         * sysdeps/i386/i686/memcpy.S (__memcpy_chk): Likewise.
2554         * sysdeps/i386/i686/mempcpy.S (__mempcpy_chk): Likewise.
2555         * sysdeps/i386/i686/memset.S (__memset_chk): Likewise.
2556         * sysdeps/i386/i686/memmove-chk.S: New file.
2557         * sysdeps/i386/i686/memcpy-chk.S: Likewise.
2558         * sysdeps/i386/i686/mempcpy-chk.S: Likewise.
2559         * sysdeps/i386/i686/memset-chk.S: Likewise.
2560         * sysdeps/generic/strcat-chk.c (__strcat_chk): Don't __chk_fail
2561         if exactly fitting into buffer.
2562         * sysdeps/generic/strncat-chk.c (__strncat_chk): Likewise.
2563         * sysdeps/generic/readonly-area.c: New file.
2564         * sysdeps/generic/strncpy-chk.c (__strncpy_chk): Only test
2565         destlen once.
2566         * sysdeps/x86_64/memset.S (__memset_chk): Add checking routine.
2567         * sysdeps/x86_64/memcpy.S (__memcpy_chk): Likewise.
2568         * sysdeps/x86_64/mempcpy.S (__memcpy_chk): Define to __mempcpy_chk.
2569         * sysdeps/x86_64/memcpy-chk.S: New file.
2570         * sysdeps/x86_64/mempcpy-chk.S: Likewise.
2571         * sysdeps/x86_64/memset-chk.S: Likewise.
2572         * sysdeps/x86_64/strcpy-chk.S: Likewise.
2573         * sysdeps/x86_64/stpcpy-chk.S: Likewise.
2574         * argp/argp-xinl.c (__OPTIMIZE__): Define to 1 instead of nothing.
2575         * argp/argp-fs-xinl.c (__OPTIMIZE__): Likewise.
2576         * debug/tst-chk1.c: New test.
2577         * debug/tst-chk2.c: Likewise.
2578         * debug/tst-chk3.c: Likewise.
2579         * debug/test-strcpy_chk.c: Likewise.
2580         * debug/test-stpcpy_chk.c: Likewise.
2581         * debug/vsprintf_chk.c (__vsprintf_chk): If flags > 0, request
2582         _IO_FLAGS2_CHECK_PERCENT_N.  Add libc_hidden_def.
2583         * debug/Makefile (routines): Add printf_chk, fprintf_chk, vprintf_chk,
2584         vfprintf_chk, gets_chk and readonly-area.
2585         (CFLAGS-*_chk.c): Set.
2586         (tests): Add tst-chk1, tst-chk2, tst-chk3, test-strcpy_chk and
2587         test-stpcpy_chk.
2588         * debug/vprintf_chk.c: New file.
2589         * debug/printf_chk.c: Likewise.
2590         * debug/vfprintf_chk.c: Likewise.
2591         * debug/fprintf_chk.c: Likewise.
2592         * debug/gets_chk.c: Likewise.
2593         * debug/chk_fail.c (__chk_fail): Add libc_hidden_def.
2594         * debug/snprintf_chk.c (__snprintf_chk): Fix order of arguments
2595         passed to __vsnprintf_chk.
2596         * debug/Versions (libc): Export __printf_chk, __fprintf_chk,
2597         __vprintf_chk, __vfprintf_chk and __gets_chk @GLIBC_2.3.4.
2598         * debug/vsnprintf_chk.c (__vsnprintf_chk): Don't call
2599         __vsnprintf, instead create a temporary file with
2600         _IO_strn_jumps jumptable.  If flags > 0, request
2601         _IO_FLAGS2_CHECK_PERCENT_N.  Add libc_hidden_def.
2602         * libio/Makefile (headers): Add bits/stdio2.h.
2603         * libio/stdio.h: Include <bits/stdio2.h> if __USE_FORTIFY_LEVEL.
2604         (sprintf, snprintf, vsprintf, vsnprintf): Remove defines.
2605         * libio/strfile.h (_IO_strnfile): New type.
2606         (_IO_strn_jumps): New extern.
2607         * libio/vsnprintf.c (_IO_strnfile): Remove.
2608         (_IO_strn_jumps): Remove static.
2609         * libio/bits/stdio2.h: New file.
2610         * libio/vswprintf.c (_IO_strnfile): Rename type to...
2611         (_IO_wstrnfile): ...this.  Adjust all uses.
2612         * libio/libio.h (_IO_FLAGS2_CHECK_PERCENT_N): Define.
2613         * stdio-common/vfprintf.c (STR_LEN): Define.
2614         (vfprintf): Add readonly_format variable.
2615         Handle _IO_FLAGS2_CHECK_PERCENT_N.
2616         (buffered_vfprintf): Copy _flags2.
2617         * include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
2618         __vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
2619         __vfprintf_chk): New prototypes.
2620         (__vsprintf_chk, __vsnprintf_chk): Add libc_hidden_proto.
2621         * include/string.h (__memcpy_chk, __memmove_chk, __mempcpy_chk,
2622         __memset_chk, __strcpy_chk, __stpcpy_chk, __strncpy_chk, __strcat_chk,
2623         __strncat_chk): New prototypes.
2624         * include/bits/string3.h: New file.
2625         * include/sys/cdefs.h (__chk_fail): Add libc_hidden_proto
2626         and rtld_hidden_proto.
2627         * string/Makefile (headers): Add bits/string3.h.
2628         * string/bits/string3.h (bcopy, bzero): New defines.
2629         (memset, memcpy, memmove, strcpy, strncpy, strcat, strncat): Change
2630         macros so that inlines are used only if unknown destination size
2631         or side-effects in destination argument.
2632         (mempcpy, stpcpy): Likewise.  Protect with #ifdef __USE_GNU.
2634 2004-09-16  Ulrich Drepper  <drepper@redhat.com>
2636         * debug/Makefile (routines): Add *_chk.
2637         * debug/Versions (libc): Export __chk_fail, __memcpy_chk,
2638         __memmove_chk, __mempcpy_chk, __memset_chk, __stpcpy_chk,
2639         __strcat_chk, __strcpy_chk, __strncat_chk, __strncpy_chk,
2640         __sprintf_chk, __vsprintf_chk, __snprintf_chk, __vsnprintf_chk
2641         @GLIBC_2.3.4.
2642         * debug/chk_fail.c: New file.
2643         * debug/snprintf_chk.c: Likewise.
2644         * debug/sprintf_chk.c: Likewise.
2645         * debug/vsnprintf_chk.c: Likewise.
2646         * debug/vsprintf_chk.c: Likewise.
2647         * include/features.h (_FORTIFY_SOURCE): Document, handle.
2648         (__USE_FORTIFY_LEVEL): Define.
2649         (__GNUC_PREREQ): Move to earlier location.
2650         * include/sys/cdefs.h (__chk_fail): New prototype.
2651         * libio/bits/stdio.h (sprintf, vsprintf, snprintf, vsnprintf):
2652         Define if __USE_FORTIFY_LEVEL.
2653         * misc/sys/cdefs.h (__bos, __bos0): Define.
2654         * string/string.h: Include <bits/string3.h> if __USE_FORTIFY_LEVEL.
2655         * bits/string/string3.h: New header.
2656         * sysdeps/generic/memcpy_chk.c: New file.
2657         * sysdeps/generic/memmove_chk.c: Likewise.
2658         * sysdeps/generic/mempcpy_chk.c: Likewise.
2659         * sysdeps/generic/memset_chk.c: Likewise.
2660         * sysdeps/generic/stpcpy_chk.c: Likewise.
2661         * sysdeps/generic/strcat_chk.c: Likewise.
2662         * sysdeps/generic/strcpy_chk.c: Likewise.
2663         * sysdeps/generic/strncat_chk.c: Likewise.
2664         * sysdeps/generic/strncpy_chk.c: Likewise.
2666 2004-10-17  Roland McGrath  <roland@frob.com>
2668         * manual/memory.texi (Page Lock Functions): Typo fix.
2669         Reported by Carlos Maziero <maziero@ppgia.pucpr.br>
2671 2004-10-16  Alfred M. Szmidt  <ams@kemisten.nu>
2673         * sysdeps/mach/hurd/Makefile (link-libc-static): Use
2674         `$(static-gnulib') instead of `$(gnulib)'.
2676 2004-10-17  Ulrich Drepper  <drepper@redhat.com>
2678         * sunrpc/rpc_clntout.c: Avoid including rcsid into binary.
2679         * sunrpc/rpc_cout.c: Likewise.
2680         * sunrpc/rpc_hout.c: Likewise.
2681         * sunrpc/rpc_main.c: Likewise.
2682         * sunrpc/rpc_parse.c: Likewise.
2683         * sunrpc/rpc_sample.c: Likewise.
2684         * sunrpc/rpc_scan.c: Likewise.
2685         * sunrpc/rpc_svcout.c: Likewise.
2686         * sunrpc/rpc_tblout.c: Likewise.
2687         * sunrpc/rpc_util.c: Likewise.
2689 2004-10-15  Jakub Jelinek  <jakub@redhat.com>
2691         * sysdeps/unix/sysv/linux/i386/sysdep.h (PUSHARGS_6, DOARGS_6,
2692         POPARGS_6, _PUSHARGS_6, _DOARGS_6, _POPARGS_6): Define.
2693         * sysdeps/unix/sysv/linux/i386/syscall.S (syscall): Handle 6 argument
2694         syscalls.
2696 2004-10-15  Ulrich Drepper  <drepper@redhat.com>
2698         * nscd/nscd.h (_PATH_NSCD_PASSWD_DB): Move to /var/db.
2699         (_PATH_NSCD_GROUP_DB): Likewise.
2700         (_PATH_NSCD_HOSTS_DB): Likewise.
2701         (_PATH_NSCD_XYZ_DB_TMP): New #define, point to /var/run.
2702         * nscd/connections.c (nscd_init): Non-persistent database files
2703         are created with the _PATH_NSCD_XYZ_DB_TMP path.
2704         * nscd/nscd.init: Create /var/db/nscd if necessary.
2706 2004-10-15  Richard Henderson  <rth@redhat.com>
2708         * sysdeps/unix/sysv/linux/alpha/register-dump.h: New file.
2709         * sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h (SIGCONTEXT): Add
2710         _code argument, pass sigcontext by pointer.
2711         (SIGCONTEXT_EXTRA_ARGS): Likewise.
2712         (GET_PC, GET_FRAME, GET_STACK): Expect ctx as pointer.
2714 2004-10-14  Richard Henderson  <rth@redhat.com>
2716         * sysdeps/alpha/dl-machine.h (elf_machine_rela,
2717         elf_machine_rela_relative, elf_machine_lazy_rel): Mark auto
2718         instead of static.
2720         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Use prototype
2721         style definition.
2722         * sysdeps/unix/sysv/linux/alpha/adjtime.c (ADJTIME): If
2723         __ASSUME_TIMEVAL64, define __adjtime directly rather than
2724         via strong_alias.
2726 2004-10-14  Ulrich Drepper  <drepper@redhat.com>
2728         * nscd/Makefile: When using compilers without -fpie support, also
2729         link with -lselinux if necessary.
2730         Patch by Arkadiusz Miskiewicz <arekm@pld-linux.org>.
2732         * nscd/connections.c (nscd_init): Remove file if not persistent
2733         and not shared.  Patch by Jerome Borsboom <j.borsboom@erasmusmc.nl>.
2735 2004-10-14  Jakub Jelinek  <jakub@redhat.com>
2737         * sysdeps/unix/sysv/linux/i386/setresuid.c: Handle
2738         defined __NR_setresuid32 && !defined __NR_setresuid.
2739         * sysdeps/unix/sysv/linux/i386/setresgid.c: Handle
2740         defined __NR_setresgid32 && !defined __NR_setresgid.
2742         * sysdeps/sparc/fpu/bits/mathinline.h (__signbitf, __signbit,
2743         __signbitl, sqrtf, sqrt, sqrtl, fdim, fdimf): Use __NTH macro.
2745         * sysdeps/generic/errno-loc.c: Don't undef #errno
2746         if RTLD_PRIVATE_ERRNO.
2747         * include/errno.h (__errno_location): If RTLD_PRIVATE_ERRNO,
2748         add attribute_hidden.
2750         * dlfcn/dlinfo.c (dlinfo_doit): Replace iteration over GL(dl_loaded)
2751         chain with iteration over all namespaces' _ns_loaded chains.
2752         * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_preferred_address):
2753         Likewise.
2754         * sysdeps/mips/dl-machine.h (elf_machine_runtime_link_map): Likewise.
2756         * elf/rtld.c (_dl_start): Fix one last dl_loaded.
2757         * elf/dl-load.c (_dl_map_object_from_fd): Avoid definition of
2758         label when it is not needed.
2759         * elf/dl-close.c (_dl_close): Typo: & -> &&.
2761 2004-10-12  Jakub Jelinek  <jakub@redhat.com>
2763         * sysdeps/generic/segfault.c: Include alloca.h and stdint.h.
2764         Don't include frame.h.
2765         (CURRENT_STACK_FRAME, INNER_THAN, ADVANCE_STACK_FRAME): Remove.
2766         (catch_segfault): Use backtrace function.
2768         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Fix comment.
2769         * sysdeps/unix/sysv/linux/ia64/register-dump.h: New file.
2770         * sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h (GET_PC): Return sc_ip
2771         field.
2773 2004-10-13  Ulrich Drepper  <drepper@redhat.com>
2775         Add support for namespaces in the dynamic linker.
2776         * dlfcn/Makefile (libdl-routines): Add dlmopen.
2777         * dlfcn/Versions [libdl, GLIBC_2.3.4]: Add dlmopen.
2778         * dlfcn/dlfcn.h: Define Lmid_t, LM_ID_BASE, and LM_ID_NEWLM.
2779         Declare dlmopen.  Document RTLD_DI_LMID.
2780         * dlfcn/dlinfo.c: Handle RTLD_DI_LMID.
2781         * dlfcn/dlmopen.c: New file.
2782         * dlfcn/dlopen.c: Pass new parameter to _dl_open.
2783         * dlfcn/dlopenold.c: Likewise.
2784         * elf/dl-addr.c: Adjust for removal of GL(dl_loaded).
2785         * elf/dl-caller.c: Likewise.
2786         * elf/dl-close.c: Likewise.
2787         * elf/dl-conflict.c: Likewise.
2788         * elf/dl-debug.c: Likewise.
2789         * elf/dl-lookup.c: Likewise.
2790         * elf/dl-sym.c: Likewise.
2791         * elf/dl-version.c: Likewise.
2792         * elf/do-lookup.h: Likewise.
2793         * elf/rtld.c: Likewise.
2794         * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
2795         * elf/dl-depsc: Likewise.  Add new parameter to _dl_map_object.
2796         * elf/dl-fini.c: Call destructors in all namespaces.
2797         * elf/dl-iteratephdr.c: Compute total nloaded.  Adjust for removal of
2798         GL(dl_loaded).
2799         * elf/dl-libc.c: Pass new parameter to _dl_open.  Adjust for removal
2800         of GL(dl_loaded).
2801         * elf/dl-load.c (_dl_map_object_from_fd): Don't load ld.so a second
2802         time.  Reuse the one from the main namespace in all others.
2803         Pass new parameter to _dl_new_object.
2804         Adjust for removal of GL(dl_loaded).
2805         * elf/dl-object.c: Take new parameter.  Use it to initialize l_ns.
2806         Adjust for removal of GL(dl_loaded).
2807         * elf/dl-open.c (_dl_open): Take new parameter.
2808         Adjust for removal of GL(dl_loaded).
2809         * elf/dl-support.c: Replace global _dl_loaded etc variables with
2810         _dl_ns variable.
2811         * include/dlfcn.h: Adjust prototype of _dl_open.
2812         Define __LM_ID_CALLER.
2813         * include/link.h: Add l_real, l_ns, and l_direct_opencount elements.
2814         * sysdeps/generic/dl-tls.c: Bump TLS_STATIC_SURPLUS.  Since libc is
2815         using TLS we need memory appropriate to the number of namespaces.
2816         * sysdeps/generic/ldsodefs.h (struct rtld_global): Replace _dl_loaded,
2817         _dl_nloaded, _dl_global_scope, _dl_main_searchlist, and
2818         _dl_global_scope_alloc with _dl_ns element.  Define DL_NNS.
2819         Adjust prototypes of _dl_map_object and member in rtld_global_ro.
2820         * malloc/malloc.c: Include <dlfcn.h>.
2821         * malloc/arena.c (ptmalloc_init): If libc is not in primary namespace,
2822         never use brk.
2823         * elf/Makefile: Add rules to build and run tst-dlmopen1 and
2824         tst-dlmopen2.
2825         * elf/tst-dlmopen1.c: New file.
2826         * elf/tst-dlmopen1mod.c: New file.
2827         * elf/tst-dlmopen2.c: New file.
2829         * elf/dl-close.c: Improve reference counting by tracking direct loads.
2830         * elf/dl-lookup.c (add_dependency): Likewise.
2831         * elf/dl-open.c (dl_open_worker): Likewise.
2832         * elf/rtld.c (dl_main): Likewise.
2834 2004-09-09  GOTO Masanori  <gotom@debian.or.jp>
2836         [BZ #77]
2837         * elf/dl-close.c: Count down l_opencount to check not only for
2838         l_reldeps, but also l_initfini.
2840 2004-10-13  Ulrich Drepper  <drepper@redhat.com>
2842         * elf/dl-close.c (_dl_close): Update bug reporting instructions.
2844 2004-10-11  Ulrich Drepper  <drepper@redhat.com>
2846         * timezone/asia: Update from tzdata2004e.
2847         * timezone/southamerica: Likewise.
2848         * timezone/private.h: Update from tzcode2004e.
2849         * timezone/zdump.c: Likewise.
2851         * stdio-common/vfscanf.c: Add support for reading localized
2852         digits.  Patch mainly by Hamed Malek <hamed@bamdad.org>.
2854         * resolv/res_init.c (res_thread_freeres): Reset _res.options.
2855         [BZ #434]
2857         * resolv/res_send.c (send_dg): Use nonblocking sockets.  Add
2858         appropriate poll/select calls and restart operation if necessary.
2859         Also handle EINTR.
2861         * elf/tst-dlopenrpath.c (do_test): Enable code which was disabled
2862         for debugging.
2864         * elf/dl-sym.c (do_sym): Avoid using global variable.
2866         * elf/dl-addr.c (_dl_addr): Really use match everywhere.
2868 2004-10-09  Andreas Schwab  <schwab@suse.de>
2870         * sysdeps/m68k/memcopy.h (WORD_COPY_BWD): Remove use of cast as
2871         lvalue.
2873         * sysdeps/m68k/fpu/bits/mathinline.h: Remove __THROW from inline
2874         definitions.
2876 2004-10-07  Andreas Schwab  <schwab@suse.de>
2878         * misc/sys/uio.h: Change __vector to __iovec to avoid clash with
2879         altivec.
2881 2004-10-06  Alan Modra  <amodra@bigpond.net.au>
2883         * gmon/Makefile (CFLAGS-mcount.c): Move before inclusion of "Rules".
2884         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-mcount.c): Add
2885         -msoft-float.
2886         * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): New macros.
2887         (CALL_MCOUNT): Replace with a gas macro implementation.
2888         (EALIGN): Delete PROF version.
2889         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Invoke CALL_MCOUNT.
2890         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Likewise.
2891         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: Likewise.
2892         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
2893         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
2894         * sysdeps/powerpc/powerpc64/memset.S: Likewise.
2895         * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
2896         * sysdeps/powerpc/powerpc64/strchr.S: Likewise.
2897         * sysdeps/powerpc/powerpc64/strcmp.S: Likewise.
2898         * sysdeps/powerpc/powerpc64/strcpy.S: Likewise.
2899         * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
2900         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
2901         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Likewise.
2902         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Likewise.
2903         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
2904         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
2905         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
2906         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
2907         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
2908         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
2909         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
2910         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
2911         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
2912         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
2913         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
2914         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
2915         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
2917         * sysdeps/powerpc/powerpc64/setjmp-common.S: Add extra entry point
2918         past _mcount call.
2919         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Use it.
2920         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: Likewise.
2922 2004-10-06  Ulrich Drepper  <drepper@redhat.com>
2924         * resolv/res_mkquery.c (res_nmkquery): Reject randombits value if
2925         low 16 bits are zero.
2927 2004-10-06  Jakub Jelinek  <jakub@redhat.com>
2929         * posix/tst-getaddrinfo2.c: Include stdlib.h and string.h.
2930         (do_test): Use %p instead of 0x%08X to print a pointer.
2932         * malloc/malloc.c: Include stdio-common/_itoa.h.
2934 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
2936         * elf/rtld.c (dl_main): Use _dl_debug_printf instead of _dl_printf
2937         for prelink message.
2939 2004-10-05  Jakub Jelinek  <jakub@redhat.com>
2941         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Include dl-sysdep.h.
2942         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
2944 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
2946         * grp/initgroups.c: Remove duplicate group IDs.
2947         * grp/compat-initgroups.c: Likewise.
2948         * nscd/initgrcache.c: Likewise.
2950 2004-10-05  Jakub Jelinek  <jakub@redhat.com>
2952         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (__sysconf): Return 200112L
2953         for _SC_CPUTIME or _SC_THREAD_CPUTIME.
2955         * nscd/Makefile (nscd-cflags): Set to -DIS_IN_nscd=1, plus
2956         -fpie if building PIE.
2957         (CFLAGS-*.c): Use it.
2959         * nscd/Makefile (relro-LDFLAGS): Add -Wl,-z,now if have-z-relro.
2960         ($(objpfx)nscd): Add $(relro-LDFLAGS).
2962         * sysdeps/unix/sysv/linux/i386/sysconf.c: Include hp-timing.h.
2963         (__sysconf): Return -1 for _SC_CPUTIME or _SC_THREAD_CPUTIME if
2964         !HP_TIMING_AVAIL.
2966 2004-10-05  Ulrich Drepper  <drepper@redhat.com>
2968         * nscd/Makefile (distribute): Remove TODO.
2969         * nscd/TODO: Removed.
2971 2004-10-04  Ulrich Drepper  <drepper@redhat.com>
2973         * nscd/gai.c: Define __no_netlink_support if NEED_NETLINK is
2974         defined and __ASSUME_NETLINK_SUPPORT is zero.
2975         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-gai.c): Add
2976         -DNEED_NETLINK.
2978         * malloc/mtrace.pl: Avoid calling location unless it is needed for
2979         output.  Patch by Edward Bishop <binutils@gmail.com>.
2981         * nscd/Makefile (CFLAGS-gai.c): Add -fpie.
2983 2004-10-04  H.J. Lu  <hongjiu.lu@intel.com>
2985         * sysdeps/unix/sysv/linux/ia64/clock_getcpuclockid.c
2986         (clock_getcpuclockid): Add missing retval.
2988         * sysdeps/unix/sysv/linux/ia64/sysconf.c (linux_sysconf): Fix a typo.
2990 2004-10-04  Roland McGrath  <roland@redhat.com>
2992         * include/errno.h [RTLD_PRIVATE_ERRNO] (errno): Rename the real symbol
2993         to rtld_errno.
2994         * sysdeps/generic/errno.c [RTLD_PRIVATE_ERRNO] (rtld_errno): Define it,
2995         and don't define any other errno names.
2996         * sysdeps/unix/alpha/sysdep.h [RTLD_PRIVATE_ERRNO]: Use rtld_errno in
2997         place of errno.
2998         * sysdeps/unix/i386/sysdep.S: Likewise.
2999         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3000         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
3001         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
3002         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
3003         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
3004         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
3005         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3006         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
3007         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
3008         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3009         * sysdeps/unix/x86_64/sysdep.S: Likewise.
3011         * sysdeps/generic/errno.c [! USE___THREAD] (errno): Use `nocommon'
3012         attribute instead of `section'.
3014 2004-10-04  Ulrich Drepper  <drepper@redhat.com>
3016         * sysdeps/unix/sysv/linux/ia64/sysconf.c: New file.
3017         * sysdeps/unix/sysv/linux/ia64/Dist: Add has_cpuclock.c.
3018         * sysdeps/unix/sysv/linux/ia64/clock_getcpuclockid.c: Move actual
3019         testing code to...
3020         * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c: ...here.  New file.
3021         * sysdeps/unix/sysv/linux/i386/sysconf.c: Add dynamic check for
3022         _SC_CPUTIME and _SC_THREAD_CPUTIME.
3024         * nscd/connections.c (start_threads): Use sysconf in case
3025         _POSIX_CLOCK_SELECTION or _POSIX_MONOTONIC_CLOCK is not greater zero.
3027         * nscd/Makefile (nscd-modules): Add gai.
3028         * nscd/gai.c: New file.
3029         * nscd/nscd.c: Remove getaddrinfo stub definition.
3031         * assert/assert.h: Give up on using __builtin_expect.
3033         * elf/rtld.c (dl_main): Only skip => output in ldd mode if both
3034         strings are identical.
3036 2004-03-18  Jakub Jelinek  <jakub@redhat.com>
3038         * malloc/arena.c (aligned_heap_area): New variable.
3039         (new_heap): If aligned_heap_area != NULL, attempt to use that
3040         first.  If HEAP_MAX_SIZE << 1 area is already HEAP_MAX_SIZE bytes
3041         aligned, remember the second half in aligned_heap_area.
3042         (delete_heap): Clear aligned_heap_area if deleting the area right
3043         before aligned_heap_area.
3045 2004-10-03  Juerg Billeter  <j@bitron.ch>
3047         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Return -1 if nscd
3048         can't be used.  [BZ #424]
3050 2004-10-03  Ulrich Drepper  <drepper@redhat.com>
3052         Dynamically create new threads if necessary.
3053         * nscd/connections.c (fd_ready): If no thread available for processing
3054         the request, create a new one unless the limit is reached.
3055         (start_threads): Check errors from pthread_create.
3056         * nscd/nscd.h: Declare max_nthreads.
3057         * nscd/nscd_conf.c: Parse max-nthreads entry.
3058         * nscd/nscd.conf: Add max-threads entry.
3059         * nscd/nscd_stat.c: Print current and maximum number of threads.
3061         Implement paranoia mode.
3062         * nscd/connections.c (nscd_init): Mark database and socket descriptors
3063         as close on exec.
3064         (restart): New function.
3065         (restart_p): New function.
3066         (nscd_run): Add missing descrement of nready in case readylist is
3067         empty.
3068         (main_loop_poll): Call restart_p and restart.
3069         (main_loop_epoll): Likewise.
3070         (begin_drop_privileges): Save original UID and GID.
3071         * nscd/nscd.c: Define new variables paranoia, restart_time,
3072         restart_interval, oldcwd, old_gid, old_uid.
3073         (main): Disable paranoia mode if we are not forking.
3074         (check_pid): When re-execing, the PID file contains the same PID as
3075         the current process.  Do not fail in this case.
3076         * nscd/nscd.conf: Add paranoia and restart-interval entries.
3077         * nscd/nscd.h: Define RESTART_INTERVAL.  Declare new variables.
3078         * nscd/nscd_conf.c: Parse paranoia and restart-internal configurations.
3079         * nscd/nscd_stat.c: Print paranoia and restart-internal values.
3081         * nscd/connections.c: Implement alternative loop for main thread
3082         which uses epoll.
3083         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]
3084         (CFLAGS-connections.c): Add -DHAVE_EPOLL.
3086 2004-10-02  Ulrich Drepper  <drepper@redhat.com>
3088         * nscd/Makefile (CFLAGS-initgrcache.c): Add to CFLAGS-* variables,
3089         don't replace old content.
3091         * nscd/connections.c: Rewrite handling of incoming connections.  All
3092         are handled by one thread which then hands off the descriptors for the
3093         real work to the worker threads.
3094         * nscd/Makefile: Link nscd with librt.
3096         * nscd/selinux.c: Pretty printing.
3098         * nscd/dbg_log.c (dbg_log): Don't add unnecessary newline to
3099         output.  Let syslog do the formatting if debug_level == 0.
3101         * nscd/nscd_helper.c (get_mapping): No need to check timestamp if
3102         nscd_certainly_running is nonzero.
3104 2004-10-02  Simon Josefsson  <jas@extundo.com>
3106         [BZ #420]
3107         * sysdeps/generic/memmem.c [!_LIBC]: Define __builtin_expect, to
3108         make the file usable inside gnulib.
3110 2004-10-01  Ulrich Drepper  <drepper@redhat.com>
3112         * malloc/malloc.c (public_vALLOc): Add missing use of hooks.
3113         (public_pVALLOc): Likewise.
3115         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Always add the
3116         group the caller provided unless there is a real problem.
3118         * posix/bug-glob1.c (prepare): Fix creation of symlink.
3120 2004-09-30  Ulrich Drepper  <drepper@redhat.com>
3122         * posix/Makefile: Add rules to build and run bug-glob1.
3123         * posix/bug-glob1.c: New file.
3125         * iconv/iconv_prog.c (main): Print progress information to stderr.
3127         * nscd/nscd.c (termination_handler): Reset timestamp so that
3128         clients immediately stop using the database.
3130         * nscd/nscd-client.h (__nscd_get_map_ref): Drop volatile from last
3131         parameter.
3132         (__nscd_drop_map_ref): Change second parameter to be a reference to
3133         a variable.  Update variable when cycle count changed.
3134         * nscd/nscd_helper.c (__nscd_get_map_ref): Remove volatile here, too.
3135         * nscd/nscd_getai.c: Correctly use __nscd_drop_map_ref.  Reinitialize
3136         all variables and avoid memory leak in case of retries.
3137         * nscd/nscd_getgr_r.c: Likewise.
3138         * nscd/nscd_gethst_r.c: Likewise.
3139         * nscd/nscd_getpw_r.c: Likewise.
3140         * nscd/nscd_initgroups.c: Likewise.
3142         * nscd/nscd.h: Add declaration of addinitgroups and
3143         readdinitgroups.
3145 2004-09-30  Andreas Jaeger  <aj@suse.de>
3147         * nscd/Makefile (CFLAGS-nscd_initgroups.c): Set to -fpie.
3148         (CFLAGS-initgrcache.c): Set to -fexceptions.
3150 2004-09-29  Ulrich Drepper  <drepper@redhat.com>
3152         * sysdeps/generic/glob.c (glob_in_dir): Don't blindly trust
3153         readdir results; for symlinks or files of unknown type check using
3154         stat whether the file exists.
3156         * posix/tst-gnuglob.c (find_file): Handle leading "./".  Fix
3157         recognition of files.
3159 2004-09-29  Jakub Jelinek  <jakub@redhat.com>
3161         * time/tzfile.c (tzfile_mtime): New variable.
3162         (__tzfile_read): Reread the file if mtime is different.
3164 2004-09-28  Jakub Jelinek  <jakub@redhat.com>
3166         * sysdeps/alpha/fpu/bits/mathinline.h (__fdimf, __fdim, fdimf, fdim):
3167         Handle +inf/+inf.
3168         * sysdeps/powerpc/fpu/bits/mathinline.h (fdim, fdimf): Likewise.
3169         * sysdeps/sparc/fpu/bits/mathinline.h (fdim, fdimf): Likewise.
3171 2004-09-29  Ulrich Drepper  <drepper@redhat.com>
3173         * nscd/nscd_gethst_r.c (nscd_gethst_r): Use correct constant for
3174         testing result of __nscd_get_map_ref.
3176 2004-09-29  Jakub Jelinek  <jakub@redhat.com>
3178         * sysdeps/i386/fpu/s_fdim.S (__fdim): Handle +inf/+inf.
3179         * sysdeps/i386/fpu/s_fdimf.S (__fdimf): Likewise.
3180         * sysdeps/i386/fpu/s_fdiml.S (__fdiml): Likewise.
3182 004-09-29  Ulrich Drepper  <drepper@redhat.com>
3184         * grp/initgroups.c: Move compat_call implementation...
3185         * grp/compat-initgroups.c: ...to here.  New file.
3186         * grp/Makefile (distribute): Add compat-initgroups.c.
3187         (CFLAGS-initgroups.c): Add -DUSE_NSCD=1.
3188         * mscd/initgrcache.c: New file.
3189         * nscd/nscd_initgroups.c: New file.
3190         * nscd/Makefile (routines): Add nscd_initgroups.
3191         (nscd-modules): Add initgrcache.
3192         * nscd/cache.c (prune_cache): Add support for INITGROUPS entries.
3193         * nscd/connections.c: Handle INITGROUPS requests.
3194         * nscd/nscd-client.h: Define INITGROUPS, initgr_response_header.
3195         Add initgrdata element to struct datahead.  Fix typo in comment.
3196         * nscd/nscd_proto.h: Declare __nscd_getgrouplist.  Fix parameter
3197         type in __nscd_getgrgrid_r.
3198         * nscd/selinux.c (perms): Add INITGROUPS entry.
3200         * nscd/nscd_getai.c: No need to include <sys/mman.h>.
3202         * sunrpc/get_myaddr.c (get_myaddress): Account for interfaces without
3203         assigned addresses.
3204         * sunrpc/pmap_clnt.c (__get_myaddress): Likewise.
3205         * sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.
3206         * sunrpc/clnt_udp.c (is_network_up): Likewise.
3208         * nscd/nscd.c: Define getaddrinfo hidden so that it is never found
3209         outside.
3211         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (si_segvflags):
3212         Renamed from si_flags due to conflict with si_flags from <elf.h>.
3214 2004-09-28  Ulrich Drepper  <drepper@redhat.com>
3216         * nscd/nscd_getai.c: Use NO_MAPPING instead of MAP_FAILED for test
3217         of failing __nscd_get_map_ref.  Fix a few typos.
3219         * sysdeps/unix/sysv/linux/sigwait.c (do_sigwait): Make sure
3220         SIGSETXID is not blocked.
3221         * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Likewise.
3222         * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Likewise.
3223         * sysdeps/unix/sysv/linux/sigprocmask.c (__sigprocmask): Likewise.
3224         * sysdeps/generic/sigfillset.c (sigfillset): Don't set SIGSETXID.
3226         * sunrpc/get_myaddr.c (get_myaddress): Fix test for failing
3227         getifaddrs call.
3228         * sunrpc/pmap_clnt.c (__get_myaddress): Likewise.
3229         * sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.
3230         * sunrpc/Makefile (xtests): Add tst-getmyaddr.
3231         * sunrpc/tst-getmyaddr.c: New file.
3233         * malloc/arena.c (ptmalloc_init): Allow MALLOC_CHECK_==0 to
3234         disable all checking.
3236         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (si_flags): Add
3237         support to get this value.
3239 2004-09-28  Jakub Jelinek  <jakub@redhat.com>
3241         * io/utime.h (utime): Allow second argument to be NULL.
3243 2004-09-28  Ulrich Drepper  <drepper@redhat.com>
3245         * sysdeps/posix/getaddrinfo.c (gaih_inet): If NAME is a numerical IP
3246         address and AI_CANONNAME is set, return copy of NAME as ai_canonname.
3248 2004-09-27  Andreas Jaeger  <aj@suse.de>
3250         * sysdeps/i386/dl-machine.h (elf_machine_rela_relative): Replace
3251         static inline by auto inline, add always_inline attribute.
3252         (elf_machine_rel): Likewise.
3253         (elf_machine_rela): Likewise.
3254         (elf_machine_lazy_rel): Likewise.
3255         (elf_machine_lazy_rela): Likewise.
3256         (elf_machine_rel_relative): Likewise.
3258 2004-09-27  Ulrich Drepper  <drepper@redhat.com>
3260         * sunrpc/xdr_intXX_t.c: Add xdr_quad_t and xdr_u_quad_t aliases.
3261         * sunrpc/rpc/xdr.h: Declare xdr_quad_t and xdr_u_quad_t.
3262         * sunrpc/rpc_parse.c (get_type): Use "quad_t" for TOK_HYPER.
3263         Otherwise isvectordef will loop infinitely if typedef hyper int64_t
3264         is seen.
3265         (unsigned_dec): Use "u_quad_t" for similar reasons.
3266         * sunrpc/Versions: Export xdr_quad_t and xdr_u_quad_t.
3268 2004-09-27  Roland McGrath  <roland@redhat.com>
3270         * sysdeps/generic/bits/waitstatus.h (__WIFSIGNALED): Simplify bit
3271         twiddling in last change.
3273         * posix/tst-waitid.c (do_test): Add tests for waitpid with WCONTINUED.
3275         [BZ #409]
3276         * posix/sys/wait.h [__WIFCONTINUED] (WIFCONTINUED): New macro.
3277         * stdlib/stdlib.h [__WIFCONTINUED] (WIFCONTINUED): New macro.
3278         * sysdeps/generic/bits/waitstatus.h (__W_CONTINUED): New macro.
3279         [WCONTINUED] (__WIFCONTINUED): New macro.
3280         (__WIFSIGNALED): Rewritten to exclude __W_CONTINUED value, and have no
3281         branches.
3283         * sysdeps/unix/sysv/linux/waitid.c (do_waitid): Add fifth argument to
3284         all three syscall uses, not just one!
3286 2004-09-26  Richard Henderson  <rth@redhat.com>
3288         * sysdeps/alpha/alphaev6/memcpy.S: Mark .prologue.
3289         * sysdeps/unix/alpha/sysdep.h (LEAF, ENTRY): Align entry points
3290         to 16 byte boundaries.
3292 2004-09-26  Ulrich Drepper  <drepper@redhat.com>
3294         * elf/readlib.c (process_file): Before complaining about too-short
3295         file, check that it potentially be an ELF file.  Also complain about
3296         empty files.  [BZ #151].
3298         * scripts/test-installation.pl: Fix ld.so recognition for new
3299         LD_TRACE_LOADED_OBJECTS output format.
3300         Patch by <jsberg04+computing.glibc@ftml.net>  [BZ #407].
3302         * elf/dl-support.c (_dl_non_dynamic_init): Fix cleaning of
3303         environment.  [BZ #384]
3305         * sunrpc/clnt_udp.c (is_network_up): Use getifaddrs instead of ioctl.
3306         * sunrpc/get_myaddr.c (get_myaddress): Likewise.
3307         * sunrpc/pmap_clnt.c (__get_myaddress): Likewise.
3308         * sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.  Change interface
3309         to avoid buffer overrun and remove now useless parameters.
3310         (clnt_broadcast): Adjust caller.  [BZ #381].
3312         * sysdeps/generic/s_fdim.c: Handle +inf/+inf
3313         * sysdeps/generic/s_fdimf.c: Likewise.
3314         * sysdeps/generic/s_fdiml.c: Likewise.
3315         * sysdeps/i386/i686/fpu/s_fdim.S: Likewise.
3316         * sysdeps/i386/i686/fpu/s_fdimf.S: Likewise.
3317         * sysdeps/i386/i686/fpu/s_fdiml.S: Likewise.
3318         * sysdeps/powerpc/fpu/s_fdim.c: Likewise.
3319         * sysdeps/powerpc/fpu/s_fdimf.c: Likewise.
3320         * sysdeps/x86_64/fpu/s_fdiml.S: Likewise.
3321         * math/libm-test.inc (fdim_test): Add test case.  [BZ #376].
3323         * sysdeps/generic/bits/types.h: Fix __SQUAD_TYPE and __UQUAD_TYPE
3324         for compilers without __GLIBC_HAVE_LONG_LONG.  [BZ #362]
3326         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Remove incorrect
3327         requirement on socktype and protocol.
3328         (gaih_inet): If numeric port number is given, return records for all
3329         possible socket types.
3330         * posix/tst-getaddrinfo2.c: New file.
3331         * posix/Makefile (tests): Add tst-getaddrinfo2.  [BZ #358]
3333 2004-09-25  Ulrich Drepper  <drepper@redhat.com>
3335         * locale/loadlocale.c (_nl_intern_locale_data): Recognize LC_CTYPE
3336         data where _nl_value_type_LC_CTYPE does not contain the type
3337         information.  Add range checks.
3338         Reported by John Lumby <johnlumby@hotmail.com> [BZ #356].
3340         * libio/vasprintf.c (_IO_vasprintf): Fix condition to decide
3341         whether to realloc or not.
3342         Reported by Pavel Kankovsky <peak@argo.troja.mff.cuni.cz> [BZ #346].
3344         * intl/dcigettext.c (DCIGETTEXT): Protect tfind/tsearch calls.
3345         * intl/dcigettext.c (_nl_find_msg): Call _nl_load_domain also if
3346         decided < 0.
3347         * intl/finddomain.c (_nl_find_domain): Likewise.
3348         * intl/loadmsgcat.c (_nl_load_domain): Set decided to 1 only once we
3349         are done.  First set to -1 to signal initialization is ongoing.
3350         Protect against concurrent callers with recursive lock.
3351         * intl/finddomain.c (_nl_find_domain): Protect calls to
3352         _nl_make_l10nflist.  [BZ #322]
3354         * sysdeps/posix/getaddrinfo.c (getaddrinfo): If determinination of
3355         source address fails, initialized source_addr_len field so that
3356         duplicate address recognition does not copy junk.
3358 2004-09-25  Jakub Jelinek  <jakub@redhat.com>
3360         * sysdeps/unix/sysv/linux/i386/setuid.c (__setuid): Remove second
3361         result declaration.
3363 2004-09-22  Andreas Schwab  <schwab@suse.de>
3365         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Adjust whitespace.
3367 2004-09-24  Ulrich Drepper  <drepper@redhat.com>
3369         * misc/daemon.c (daemon): Don't succeed if /dev/null cannot be
3370         opened.
3372         * nis/ypclnt.c (do_ypcall): Add one missing unlock.  Simplify the
3373         code a bit.
3375         * misc/daemon.c (daemon): Define errno in case /dev/null is not
3376         the correct device.
3378         * nis/ypclnt.c (yp_bind_file): Optimize a bit.  Minimal cleanups.
3380 2004-09-23  Andreas Jaeger  <aj@suse.de>
3382         * locale/weight.h (findidx): Remove static, it's not supported
3383         anymore with GCC 4.0 in a block scope.
3384         * locale/weightwc.h (findidx): Likewise.
3385         * posix/regcomp.c (seek_collating_symbol_entry): Likewise.
3386         (lookup_collation_sequence_value): Likewise.
3387         (build_range_exp): Likewise.
3388         (build_collating_symbol): Likewise.
3389         * iconv/iconvconfig.c (write_output): Likewise.
3390         * elf/do-rel.h (elf_dynamic_do_rel): Likewise.
3392         * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Remove
3393         static, add always_inline attribute.
3394         (elf_machine_rela): Likewise.
3395         (elf_machine_lazy_rel): Likewise.
3397         * elf/dynamic-link.h (elf_get_dynamic_info): Make static dependend
3398         on !RESOLVE so that it's not defined in local scope.
3400 2004-09-23  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
3402         * sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL_NCS): Define.
3404 2004-09-23  Thorsten Kukuk  <kukuk@suse.de>
3406         * sysdeps/unix/sysv/linux/sys/mount.h: Sync MS_RMT_MASK flag
3407         and BLK* ioctls with linux kernel headers.
3409 2004-09-23  Ulrich Drepper  <drepper@redhat.com>
3411         * sysdeps/generic/bits/dlfcn.h: Add RTLD_DEEPBIND.
3412         * elf/dl-object.c (_dl_new_object): Add new parameter mode.  If mode
3413         has RTLD_DEEPBIND set add local searchlist before global scope.
3414         * sysdeps/generic/ldsodefs.h (_dl_new_object): Adjust prototype.
3415         * elf/rtld.c: Adjust callers of _dl_new_object.
3416         * elf/dl-load.c: Likewise.
3417         (_dl_map_object_from_fd): If RTLD_DEEPBIND is used, don't do anything
3418         for DF_SYMBOLIC.
3419         * elf/dl-open.c (dl_open_writer): Pass RTLD_DEEPBIND flag on to
3420         _dl_map_object_deps.
3421         * elf/tst-deep1.c: New file.
3422         * elf/tst-deep1mod1.c: New file.
3423         * elf/tst-deep1mod2.c: New file.
3424         * elf/tst-deep1mod3.c: New file.
3425         * elf/Makefile: Add rules to build and run new tests.
3427         * elf/dl-deps.c: Pretty printing.
3429 2004-09-23  Jakub Jelinek  <jakub@redhat.com>
3431         * sysdeps/unix/alpha/sysdep.h (inline_syscall[0-6]): Change name
3432         argument to numbers from syscall names.
3433         (INLINE_SYSCALL1): Pass __NR_##name to inline_syscall##nr.
3434         (INTERNAL_SYSCALL_NCS): Renamed from...
3435         (INTERNAL_SYSCALL_1): ... this.  Use INTERNAL_SYSCALL_NCS.
3436         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
3437         (INTERNAL_SYSCALL_NCS): Define.
3438         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
3439         (INTERNAL_SYSCALL_NCS): Likewise.
3440         * sysdeps/unix/sysv/linux/sparc/sysdep.h (inline_syscall[0-6]):
3441         Change name argument to numbers from syscall names.
3442         (INLINE_SYSCALL, INTERNAL_SYSCALL): Adjust.
3443         (INTERNAL_SYSCALL_NCS): Define.
3445 2004-09-22  Ulrich Drepper  <drepper@redhat.com>
3447         * malloc/malloc.c (malloc_printerr): Use syslog if writev failed.
3449         * string/string.h: Add __nonnull annotations.
3450         * stdlib/stdlib.h: Likewise.
3452 2004-09-20  H.J. Lu  <hongjiu.lu@intel.com>
3454         * sysdeps/unix/sysv/linux/ia64/sysdep.h (DO_INLINE_SYSCALL):
3455         Renamed to ...
3456         (DO_INLINE_SYSCALL_NCS): This.
3457         (DO_INLINE_SYSCALL): New.
3458         (INLINE_SYSCALL): Updated.
3459         (INTERNAL_SYSCALL_NCS): Updated.
3461 2004-09-21  Ulrich Drepper  <drepper@redhat.com>
3463         * elf/sprof.c (load_shobj): Add support for reading symbol table
3464         from debuginfo file.
3466         * elf/ldd.bash.in: Fix syntax errors.
3468 2004-09-20  Ulrich Drepper  <drepper@redhat.com>
3470         * sysdeps/unix/sysv/linux/dl-execstack.c
3471         (_dl_make_stack_executable): Remove some duplication.
3473         * nscd/nscd.c (options): Mark S option as hidden.
3474         (parse_opt): When S option is used, print warning message.
3475         * nscd/grpcache.c (adgrptbyX): Don't handle secure mode.
3476         * nscd/hstcache.c (addhstbyX): Don't handle secure mode.
3477         * nscd/aicache.c (addhstaiX): Don't handle secure mode.
3478         * nscd/pwdcache.c (addpwbyX): Don't handle secure mode.
3480 2004-09-20  Roland McGrath  <roland@frob.com>
3482         * elf/dl-load.c (__stack_prot): Only use PROT_GROWSUP/PROT_GROWSDOWN
3483         in initializer #if defined.
3485 2004-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3487         [BZ #391]
3488         * stdlib/getsubopt.c: Merge fixes from gnulib.
3489         (__strchrnul) [!_LIBC]: Define and include "strchrnul.c".
3490         (getsubopt): Use prototypes, not K&R style.
3491         Fix bug: memcmp(A,B,N) was being invoked on a memory block B
3492         whose size might be smaller than N.  Use strncmp to avoid the bug.
3494 2004-09-20  Ulrich Drepper  <drepper@redhat.com>
3496         * configure.in: If selinux has not explictly been requested, don't
3497         comment on it missing.
3499         * elf/dl-load.c: Define __stack_prot.
3500         * sysdeps/unix/sysv/linux/dl-execstack.c: Don't define
3501         __stack_prot here, just declare it.
3503 2004-09-20  Jakub Jelinek  <jakub@redhat.com>
3505         * configure.in (libc_cv_z_relro): Only set to yes if linker script
3506         contains DATA_SEGMENT_RELRO_END.
3508 2004-09-20  Ulrich Drepper  <drepper@redhat.com>
3510         * elf/dl-load.c (_dl_map_object_from_fd): Add some error checking.
3511         Reorder code slightly.
3512         * elf/rtld.c (dl_main): No need to check whether l_info[DT_HASH]
3513         is non-null, _dl_setup_hash will do that.
3515 2004-09-19  Ulrich Drepper  <drepper@redhat.com>
3517         * sysdeps/unix/sysv/linux/setegid.c [HAVE_PTR__NPTL_SETXID]: Call
3518         callback to set IDs in all other threads as well.
3519         * sysdeps/unix/sysv/linux/seteuid.c: Likewise.
3520         * sysdeps/unix/sysv/linux/i386/setegid.c: Likewise.
3521         * sysdeps/unix/sysv/linux/i386/seteuid.c: Likewise.
3522         * sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
3523         * sysdeps/unix/sysv/linux/i386/setuid.c: Likewise.
3524         * sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
3525         * sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
3526         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
3527         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
3528         * sysdeps/unix/sysv/linux/setuid.c: New file.
3529         * sysdeps/unix/sysv/linux/setgid.c: New file.
3530         * sysdeps/unix/sysv/linux/setreuid.c: New file.
3531         * sysdeps/unix/sysv/linux/setregid.c: New file.
3532         * sysdeps/unix/sysv/linux/setresuid.c: New file.
3533         * sysdeps/unix/sysv/linux/setresgid.c: New file.
3534         * sysdeps/unix/sysv/linux/i386/sysdep.h: Define INTERNAL_SYSCALL_NCS.
3535         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3536         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
3537         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
3538         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3539         * sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c: Use x86 version.
3540         * sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c: Likewise.
3541         * sysdeps/unix/sysv/linux/sparc/sparc32/setresgid.c: New file.
3542         * sysdeps/unix/sysv/linux/sparc/sparc32/setresuid.c: New file.
3543         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Remove setresgid
3544         and setresuid.
3545         * nscd/aicache.c: Use pthread_seteuid_np instead of seteuid.
3546         * nscd/grpcache.c: Likewise.
3547         * nscd/hstcache.c: Likewise.
3548         * nscd/pwdcache.c: Likewise.
3550         * resolv/res_mkquery.c (res_nmkquery): Fix typo.
3552 2004-09-18  Ulrich Drepper  <drepper@redhat.com>
3554         * sysdeps/unisx/sysv/linux/dl-execstack.c: Get protection flag
3555         from memory.
3556         * elf/dl-load.c (_dl_map_object_from_fd): Add PROT_EXEC flag to
3557         __stack_flags.
3559         * sysdeps/posix/getaddrinfo.c (gaih_inet): Do not use
3560         gethostbyname3_r if we are not looking for the canonical name.
3562         * resolv/res_mkquery.c (res_nmkquery): Randomize request ID every
3563         time.
3565 2004-09-18  Roland McGrath  <roland@redhat.com>
3567         * sysdeps/unix/sysv/linux/waitid.c (do_waitid): Pass fifth argument to
3568         system call.
3570 2004-09-17  Ulrich Drepper  <drepper@redhat.com>
3572         * include/link.h (struct link_map): Add l_used element.
3573         * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_UNUSED.
3574         * elf/rtld.c (process_dl_debug): Recognize unused.
3575         (dl_main): When unused debug flag is set check for unused direct
3576         dependencies.
3577         When printing dependencies and SONAME starts with /, omit the SONAME =>
3578         part.
3579         * elf/dl-lookup.c (_dl_lookup_symbol_x): Mark object in which the
3580         symbol has been found as used.
3581         * elf/ldd.bash.in: Add -u option.
3583 2004-09-18  Jakub Jelinek  <jakub@redhat.com>
3585         * sysdeps/unix/sysv/linux/nscd_setup_thread.c (setup_thread):
3586         Do nothing if __NR_set_tid_address is not defined.  [BZ #390]
3588 2004-09-17  Ulrich Drepper  <drepper@redhat.com>
3590         * sysdeps/posix/getaddrinfo.c: Use gethostbyname3_r NSS function
3591         in case it is available.
3593 2004-09-17  Jakub Jelinek  <jakub@redhat.com>
3595         * nscd/nscd.c (parse_opt): Write arg string instead of (void *)
3596         key to the socket.
3598 2004-09-17  Ulrich Drepper  <drepper@redhat.com>
3600         * misc/sys/cdefs.h: Define __nonnull using nonnull function attribute
3601         for gcc 3.3 and higher.
3602         * io/fcntl.h: Add __nonnull where appropriate.
3603         * io/ftw.h: Likewise.
3604         * io/utime.h: Likewise.
3605         * io/sys/poll.h: Likewise.
3606         * io/sys/sendfile.h: Likewise.
3607         * io/sys/stat.h: Likewise.
3608         * io/sys/statfs.h: Likewise.
3609         * io/sys/statvfs.h: Likewise.
3610         * posix/unistd.h: Likewise.
3611         * catgets/nl_types.h: Likewise.
3612         * crypt/crypt.h: Likewise.
3613         * debug/execinfo.h: Likewise.
3615 2004-09-16  Ulrich Drepper  <drepper@redhat.com>
3617         * posix/glob.h: Remove cruft to make header usable outside glibc.
3618         The maintenance headache is too big.
3620         * configure.in: Add test for required SELinux features.
3621         * config.make.in: Add have-selinux entry.
3622         * config.h.in: Add HAVE_SELINUX entry.
3623         * nscd/Makefile (nscd-modules): Add selinux.
3624         (CFLAGS-selinux.c): Add -fpie.
3625         Define selinux-LIBS and use in link line.
3626         * nscd/connections.c (handle_request): Check access SELinux permissions
3627         before processing request.
3628         * nscd/nscd.c (main): Initialize selinux_enabled and stop avc thread.
3629         * nscd/nscd_stat.c: Transmit and print AVC statistics.
3630         * nscd/selinux.c: New file.
3631         * nscd/selinux.h: New file.
3632         Patch mostly by Matthew Rickard <mjricka@epoch.ncsc.mil>.
3634 2004-09-16  Jakub Jelinek  <jakub@redhat.com>
3636         * nscd/nscd_helper.c (__nscd_unmap, get_mapping): Use __munmap
3637         instead of munmap.
3639         * nscd/Makefile (CFLAGS-aicache.c): Set to -fpie.
3641 2004-09-16  Thorsten Kukuk  <kukuk@suse.de>
3643         * sysdeps/posix/getaddrinfo.c (gaih_inet): Check
3644         __nss_not_use_nscd_hosts variable if nscd should be used or not.
3646 2004-09-16  Ulrich Drepper  <drepper@redhat.com>
3648         * nscd/nscd_proto.h: Define NSS_NSCD_RETRY.
3649         Add __nscd_getai prototype.
3650         * nss/getXXbyYY_r.c: Remode definition of NSS_NSCD_RETRY.
3651         * nscd/nscd-client.h: Remove __nscd_getai prototype.
3652         * nscd/nscd_getai.c: Include nscd_proto.h.
3654         * elf/ldd.bash.in: Add support for SELinux environments.
3655         Patch by Stephen Smalley <sds@epoch.ncsc.mil>.
3657 2004-09-16  Roland McGrath  <roland@redhat.com>
3659         * configure.in (--with-headers): Let argument contain a : separated
3660         list of directories to use, not just one.
3661         * configure: Regenerated.
3663 2004-09-15  Richard Henderson  <rth@redhat.com>
3665         * sysdeps/alpha/fpu/libm-test-ulps: Update.
3666         * scripts/data/c++-types-alpha-linux-gnu.data: New file.
3668 2004-09-15  Ulrich Drepper  <drepper@redhat.com>
3670         * nscd/aicache.c: Prefer using gethostbyname3_r NSS callback to also
3671         get ttl and canonical name.  Use these two values.
3672         * resolv/Versions: Export _nss_dns_gethostbyname3_r from libnss_dns.
3673         * resolv/nss_dns/dns-host.c (getanswer_r): Take two new parameters.
3674         If nonnull fill with TTL and pointer to canonical name respectively.
3675         (_nss_dns_gethostbyaddr_r): Pass NULL in new parameters of getanswer_r.
3676         (_nss_dns_gethostbyname2_r): Just wrapper around
3677         _nss_dns_gethostbyname3_r.
3678         (_nss_dns_gethostbyname3_r): Renamed from _nss_dns_gethostbyname2_r.
3679         Take two new parameters which as passed to getanswer_r.
3681         * nscd/Makefile (rountines): Add nscd_getai.
3682         (nscd-modules): Add aicache.
3683         * nscd/aicache.c: New file.
3684         * nscd/nscd_getai.c: New file.
3685         * nscd/cache.c (prune_cache): Handle GETAI request type.
3686         * nscd/connections.c: Add GETAI support in request handling.
3687         * nscd/nscd-client.h (request_type): Add GETAI.
3688         Define ai_response_header and struct nscd_ai_result types.
3689         (struct datahead): Add aidata field.
3690         Declare __nscd_getai.
3691         * nscd/nscd.c: Add getaddrinfo definition to catch problems.
3692         * nscd/nscd.h: Declare addhstai and readdhstai.
3694         * sysdeps/posix/getaddrinfo.c: Add support for using cached results.
3695         * posix/Makefile (CFLAGS-getaddrinfo.c): Add -DUSE_NSCD.
3697         * nscd/nscd-client.h  (struct datahead): Use uint8_t instead of bool.
3699 2004-09-14  Ulrich Drepper  <drepper@redhat.com>
3701         * misc/sys/cdefs.h: Remove debugging text from __P and __PMT.
3703 2004-09-13  Ulrich Drepper  <drepper@redhat.com>
3705         * misc/sys/cdefs.h: Restore old definition of __P.
3706         * csu/munch.awk: Remove uses of __P and __PMT.
3707         * gmon/gmon.c: Likewise.
3708         * hesiod/hesiod.h: Likewise.
3709         * include/stdio.h: Likewise.
3710         * io/fts.c: Likewise.
3711         * libio/genops.c: Likewise.
3712         * libio/libioP.h: Likewise.
3713         * libio/fileops.c: Likewise.
3714         * libio/iolibio.h: Likewise.
3715         * libio/libio.h: Likewise.
3716         * libio/memstream.c: Likewise.
3717         * libio/oldfileops.c: Likewise.
3718         * libio/oldstdfiles.c: Likewise.
3719         * libio/iopopen.c: Likewise.
3720         * libio/vsnprintf.c: Likewise.
3721         * libio/vswprintf.c: Likewise.
3722         * libio/wgenops.c: Likewise.
3723         * libio/oldiopopen.c: Likewise.
3724         * locale/programs/xmalloc.c: Likewise.
3725         * locale/programs/xstrdup.c: Likewise.
3726         * malloc/mtrace.c: Likewise.
3727         * misc/getttyent.c: Likewise.
3728         * misc/getusershell.c: Likewise.
3729         * nis/rpcsvc/ypupd.h: Likewise.
3730         * posix/fnmatch.h: Likewise.
3731         * posix/glob.h: Likewise.
3732         * resolv/arpa/nameser.h: Likewise.
3733         * resolv/gethnamaddr.c: Likewise.
3734         * resolv/resolv.h: Likewise.
3735         * resolv/inet_net_ntop.c: Likewise.
3736         * resolv/inet_net_pton.c: Likewise.
3737         * resolv/res_init.c: Likewise.
3738         * resolv/nss_dns/dns-network.c: Likewise.
3739         * stdio-common/vfprintf.c: Likewise.
3740         * stdio-common/reg-printf.c: Likewise.
3741         * sysdeps/generic/chflags.c: Likewise.
3742         * sysdeps/generic/fchflags.c: Likewise.
3743         * sysdeps/generic/glob.c: Likewise.
3744         * sysdeps/generic/printf_fphex.c: Likewise.
3745         * sysdeps/generic/memcmp.c: Likewise.
3746         * sysdeps/generic/memcopy.h: Likewise.
3747         * sysdeps/generic/morecore.c: Likewise.
3748         * sysdeps/generic/sstk.c: Likewise.
3749         * sysdeps/posix/sigvec.c: Likewise.
3750         * sysdeps/posix/ttyname_r.c: Likewise.
3751         * sysdeps/standalone/arm/bits/errno.h: Likewise.
3752         * sysdeps/standalone/standalone.h: Likewise.
3753         * sysdeps/standalone/i386/force_cpu386/brdinit.c: Likewise.
3754         * sysdeps/standalone/i386/force_cpu386/_exit.c: Likewise.
3755         * sysdeps/unix/arm/start.c: Likewise.
3756         * sysdeps/unix/bsd/sigaction.c: Likewise.
3757         * sysdeps/unix/bsd/sun/m68k/sigtramp.c: Likewise.
3758         * sysdeps/unix/bsd/sun/sparc/sigtramp.c: Likewise.
3759         * sysdeps/unix/bsd/sun/sunos4/wait4.c: Likewise.
3760         * sysdeps/unix/bsd/ultrix4/mips/sigvec.c: Likewise.
3761         * sysdeps/unix/bsd/ultrix4/sysconf.c: Likewise.
3762         * sysdeps/unix/sparc/start.c: Likewise.
3763         * sysdeps/unix/sysv/getdents.c: Likewise.
3764         * sysdeps/unix/sysv/irix4/fpathconf.c: Likewise.
3765         * sysdeps/unix/sysv/irix4/getgroups.c: Likewise.
3766         * sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
3767         * sysdeps/unix/sysv/irix4/getrusage.c: Likewise.
3768         * sysdeps/unix/sysv/irix4/pathconf.c: Likewise.
3769         * sysdeps/unix/sysv/irix4/setgroups.c: Likewise.
3770         * sysdeps/unix/sysv/irix4/sigtramp.c: Likewise.
3771         * sysdeps/unix/sysv/irix4/start.c: Likewise.
3772         * sysdeps/unix/sysv/irix4/sysconf.c: Likewise.
3773         * sysdeps/unix/sysv/sco3.2.4/__setpgid.c: Likewise.
3774         * sysdeps/unix/sysv/sco3.2.4/getgroups.c: Likewise.
3775         * sysdeps/unix/sysv/sysv4/__getpgid.c: Likewise.
3776         * sysdeps/unix/sysv/sysv4/__setpgid.c: Likewise.
3777         * sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
3778         * sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
3779         * sysdeps/unix/sysv/sysv4/sethostname.c: Likewise.
3780         * sysdeps/unix/sysv/sysv4/setsid.c: Likewise.
3781         * sysdeps/unix/sysv/sysv4/sysconf.c: Likewise.
3782         * sysdeps/unix/sysv/sysv4/waitpid.c: Likewise.
3783         * sysdeps/unix/sysv/sysv4/solaris2/getdents.c: Likewise.
3784         * time/tzset.c: Likewise.
3785         * time/strftime_l.c: Likewise.
3786         * time/strptime_l.c: Likewise.
3787         * crypt/md5.h: Likewise.
3789 2004-09-13  Andreas Jaeger  <aj@suse.de>
3791         * configure.in: Support GCC 4.x.
3792         * configure: Regenerated.
3794 2004-09-13  Thorsten Kukuk  <kukuk@suse.de>
3796         * nscd/nscd_stat.c: Don't access dbs[cnt].head for disabled services.
3798         * nscd/nscd.init: Fix path to socket.
3800 2004-09-12  Ulrich Drepper  <drepper@redhat.com>
3802         * nscd/nscd_helper.c (get_mapping): Correctly check cmsg length.
3803         Avoid file descriptor leak in case of size mismatch.
3805         * nscd/nscd-client.h: Fix database structure layout for biarch.
3806         * nscd/mem.c (gc): Add casts to avoid warnings.
3808         * nss/getent.c: Don't preconstruct help message.  Do it only when
3809         needed.
3811         * locale/programs/locale.c: Simplify help message printing.
3813 2004-09-12  Roland McGrath  <roland@frob.com>
3815         * sysdeps/mach/hurd/i386/init-first.c (init1) [! SHARED]: Add decls
3816         missing in last change.
3818 2004-09-11  Thorsten Kukuk  <kukuk@suse.de>
3820         * nis/nss_compat/compat-grp.c: Check that buflen is greater zero
3821         before writing data into the buffer with negative offset.
3822         * nis/nss_compat/compat-initgroups.c: Likewise.
3823         * nis/nss_compat/compat-pwd.c: Likewise.
3824         * nis/nss_compat/compat-spwd.c Likewise.
3826 2004-09-12  Ulrich Drepper  <drepper@redhat.com>
3828         * misc/syslog.c (vsyslog): Fix copying of PID in case of
3829         out-of-memory situation.  [BZ #365].
3831         * sysdeps/alpha/fpu/bits/mathinline.h: Use __NTH instead of
3832         __THROW in inline function definitions.
3834         * posix/spawn.h [__USE_GNU]: Define POSIX_SPAWN_USEVFORK.
3835         * posix/spawnattr_setflags.c: Check whether any unknown bit is set
3836         in FLAGS parameter and fail if this is the case.
3837         * sysdeps/posix/spawni.c: Use vfork if POSIX_SPAWN_USEVFORK flag is
3838         set.
3840         * nscd/pwdcache.c (cache_addpw): Sync also negative results to disk.
3841         * nscd/grpcache.c (cache_addgr): Likewise.
3842         * nscd/hstcache.c (cache_addhst): Likewise.
3844 2004-09-11  Roland McGrath  <roland@frob.com>
3846         * sysdeps/mach/hurd/i386/init-first.c (init1) [! SHARED]:
3847         Set _dl_phdr and _dl_phnum.
3848         (init1): When bootstrap task, bail early and never examine *D.
3850 2004-09-11  Alfred M. Szmidt  <ams@kemisten.nu>
3852         * sysdeps/mach/hurd/i386/tls.h (__i386_set_gdt) [!HAVE_I386_SET_GDT]:
3853         Cast THR, SEL and DESC to `void'.
3855 2004-09-11  Ulrich Drepper  <drepper@redhat.com>
3857         * nscd/connections.c (nscd_run): Call setup_thread only for enabled
3858         databases.
3860         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Use __NTH for __cmsg_nxthdr.
3862 2004-09-10  Ulrich Drepper  <drepper@redhat.com>
3864         * nscd/nscd.c (pagesize_m1): New variable.
3865         (main): Initialize it.
3866         * nscd/nscd.h: Declare pagesize_m1.
3867         * nscd/hstcache.c: Pass correctly aligned address to msync.
3868         * nscd/grpcache.c: Likewise.
3869         * nscd/pwdcache.c: Likewise.
3871 2004-09-10  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
3873         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Decrement
3874         __nwaiters.  If pthread_cond_destroy has been called and this is
3875         the last waiter, signal pthread_cond_destroy caller and avoid
3876         using the pthread_cond_t structure after unlock.
3877         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
3879 2004-09-10  Ulrich Drepper  <drepper@redhat.com>
3881         * sysdeps/unix/sysv/linux/kernel-features.h: Don't define
3882         __ASSUME_CLONE_STOPPED.
3884 2004-09-10  Jakub Jelinek  <jakub@redhat.com>
3886         * misc/sys/cdefs.h (__REDIRECT_NTH): Change order of __THROW and
3887         __asm__ for C++.  [BZ #377]
3889 2004-09-10  Ulrich Drepper  <drepper@redhat.com>
3891         * nscd/nscd_stat.c: Improve output by also printing .shared and
3892         .persistent.
3894         * nscd/connections.c: Allow cache sharing to be really disabled.
3896 2004-09-10  Jakub Jelinek  <jakub@redhat.com>
3898         * malloc/malloc.c (_int_free): Only do arena boundary check for
3899         contiguous arenas.
3901 2004-09-10  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
3903         * stdlib/longlong.h [__M32R__] (add_ssaaaa, sub_ddmmss): Fix broken
3904         instruct operands.
3905         * elf/elf.h: Add R_M32R_* relocs.
3907 2004-09-09  Ulrich Drepper  <drepper@redhat.com>
3909         * misc/sys/cdefs.h: Despite what the gcc manual says, gcc 3.2
3910         seems not to support the nothrow attribute.  Use it only for gcc
3911         3.3 and higher.
3913         * malloc/hooks.c (top_check): Print top chunk corruption as normal
3914         error message.
3916         * malloc/malloc.c (malloc_printerr): Don't make informational
3917         message look like error message.
3919 2004-09-09  Andreas Jaeger  <aj@suse.de>
3921         * nscd/Makefile (CFLAGS-nscd_setup_thread.c): Set to -fpie.
3923 2004-09-08  Ulrich Drepper  <drepper@redhat.com>
3925         * sysdeps/unix/sysv/linux/bits/socket.h (__SCM_CONNECT): Removed.
3927         * malloc/malloc.c (_int_free): Add inexpensive double free and
3928         memory corruption tests.
3929         (malloc_printf_nc): Renamed to malloc_printerr.  Second parameter
3930         is no format string anymore.  Don't use stdio.  Adjust all callers.
3931         * malloc/hooks.c: Adjust malloc_printf_nc callers.
3933 2004-09-08  Roland McGrath  <roland@redhat.com>
3935         * malloc/mcheck.c: Don't use __P.
3936         Use prototypes definitions for static functions.
3938 2004-09-08  Ulrich Drepper  <drepper@redhat.com>
3940         * sysdeps/ia64/fpu/bits/mathinline.h: Use __NTH instead of __THROW.
3942 2004-09-08  Ulrich Drepper  <drepper@redhat.com>
3943             Jakub Jelinek  <jakub@redhat.com>
3945         * nscd/nscd-client.h: Add a few #includes.
3947         * nscd/Makefile (nscd-modules): Add nscd_setup_thread.
3948         * nscd/connections.c (nscd_run): Call setup_thread for maintenance
3949         threads.
3950         * nscd/nscd-client.h (struct database_pers_head): Add
3951         nscd_certainly_running field.
3952         * nscd/nscd.h: Declare setup_thread.
3953         * nscd/nscd_helper.c (__nscd_get_map_ref): Avoid the time test if
3954         nscd_certainly_running is nonzero.
3955         * sysdeps/generic/nscd_setup_thread.c: New file.
3956         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: New file.
3958 2004-09-08  Ulrich Drepper  <drepper@redhat.com>
3960         * nscd/connections.c: Implement r/o sharing of nscd's cache with client
3961         processes via shared memory.
3962         * nscd/nscd-client.h: Likewise.
3963         * nscd/nscd.h: Likewise.
3964         * nscd/nscd_conf.c: Likewise.
3965         * nscd/nscd_getgr_r.c: Likewise.
3966         * nscd/nscd_getpw_r.c: Likewise.
3967         * nscd/nscd_gethst_r.c: Likewise.
3968         * nscd/nscd.conf: Add new config parameters.
3969         * nscd/Makefile (aux): Add nscd_helper.
3970         * nscd/nscd_helper.c: New file.
3971         * nscd/mem.c (gc): Indicate beginning and end of the gc cycle.
3973         * nscd/hstcache.c: Simplify a lot.  We cache only the request itself,
3974         no derived information.
3975         * connections.c (nscd_init): Fix bug in testing size of the persistent.
3977         * nis/Makefile (aux): Add nis_hash.
3978         * nis/nis_hash.c: New file.  Split out from nis_util.c.
3979         * nis/nis_util.c: Move __nis_hash code in separate file.
3981         * csu/tst-atomic.c: Improve atomic_increment_val test which would
3982         not have found a ppc bug.
3984         * sysdeps/s390/fpu/bits/mathinline.h: Remove unnecessary includes.
3986         * malloc/arena.c: Remove __MALLOC_P uses.
3987         * malloc/malloc.c: Likewise.
3989         * malloc/mtrace.c: Remove __P uses.
3990         * malloc/mcheck-init.c: Likewise.
3992 2004-09-07  Jakub Jelinek  <jakub@redhat.com>
3994         * sysdeps/powerpc/powerpc64/configure.in: New file.
3995         * config.h.in (USE_PPC64_OVERLAPPING_OPD): Add.
3996         * configure.in (HAVE_ASM_GLOBAL_DOT_NAME): Remove.
3997         * sysdeps/powerpc/powerpc64/sysdep.h: Formatting.
3998         (OPD_ENT, BODY_LABEL, ENTRY_1, ENTRY_2, END_2, DOT_PREFIX,
3999         BODY_PREFIX): Define.
4000         (ENTRY, DOT_LABEL, END, TRACEBACK, END_GEN_TB, EALIGN): Support
4001         HAVE_ASM_GLOBAL_DOT_NAME or no dot symbols,
4002         USE_PPC64_OVERLAPPING_OPD or never overlapping .opd entries.
4003         * sysdeps/powerpc/powerpc64/dl-machine.h: Include sysdep.h.
4004         (TRAMPOLINE_TEMPLATE, RTLD_START): Use the new sysdep.h macros.
4006 2004-09-07  Ulrich Drepper  <drepper@redhat.com>
4008         * malloc/malloc.h: Don't define __THROW if it is already defined.
4010         * sysdeps/powerpc/bits/atomic.h (atomic_increment): Define.
4011         (atomic_decrement): Define.
4013         * sysdeps/powerpc/bits/atomic.h: Implement atomic_increment_val and
4014         atomic_decrement_val.
4015         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
4016         * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
4018         * csu/tst-atomic.c (do_test): Add tests of atomic_increment_val
4019         and atomic_decrement_val.
4021         * include/atomic.h: Define atomic_increment_val, atomic_decrement_val,
4022         and atomic_delay is not already defined.
4023         * sysdeps/i386/i486/bits/atomic.h: Define atomic_delay.
4024         * sysdeps/x86_64/bits/atomic.h: Likewise.
4026         * miscd/sys/cdefs.h (__NTH): New macro.
4027         (__THROW): Define using nothrow attribute for C code and gcc >= 3.2.
4028         (__REDIRECT_NTH): New macro.
4029         * argp/argp.h: Use __NTH and __REDIRECT_NTH where necessary.
4030         * ctype/ctype.h: Likewise.
4031         * dirent/dirent.h: Likewise.
4032         * io/fcntl.h: Likewise.
4033         * io/sys/sendfile.h: Likewise.
4034         * io/sys/stat.h: Likewise.
4035         * io/sys/statfs.h: Likewise.
4036         * io/sys/statvfs.h: Likewise.
4037         * libio/bits/stdio.h: Likewise.
4038         * misc/sys/mman.h: Likewise.
4039         * posix/unistd.h: Likewise.
4040         * resource/sys/resource.h: Likewise.
4041         * rt/aio.h: Likewise.
4042         * signal/signal.h: Likewise.
4043         * stdlib/stdlib.h: Likewise.
4044         * string/argz.h: Likewise.
4045         * string/string.h: Likewise.
4046         * sysdeps/generic/inttypes.h: Likewise.
4047         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
4048         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
4049         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
4050         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
4051         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
4052         * sysdeps/unix/sysv/linux/bits/sys/sysmacros.h: Likewise.
4053         * wcsmbs/wchar.h: Likewise.
4055         * sysdeps/generic/glob.c: Use __PMT isntead of __P where appropriate.
4057         * resolv/gethnamaddr.c (getanswer): Remove __P use in variable
4058         definition.
4060         * io/sys/poll.h: Remove __THROW from poll prototype, it's a
4061         cancellation point.
4063         * io/fts.c (fts_open): Remove uses of __P.
4065         * include/stdlib.h: No need to use __THROW in this header.
4067 2004-09-06  Roland McGrath  <roland@frob.com>
4069         * sysdeps/mach/hurd/dl-sysdep.c (__writev): Does use assert on FD
4070         validity, since __assert_fail gets to here anyway.  Just fail.
4072 2004-09-06  Ulrich Drepper  <drepper@redhat.com>
4074         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix problem with
4075         AF_UNSPEC lookup with AI_CANONNAME of name which has only IPv6
4076         addresses.
4078 2004-09-05  Richard Henderson  <rth@redhat.com>
4080         * sysdeps/alpha/fpu/fraiseexcpt.c: Remove file.
4081         * sysdeps/unix/sysv/linux/kernel-features.h
4082         (__ASSUME_IEEE_RAISE_EXCEPTION): New.
4083         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.c: New file.
4084         * sysdeps/unix/sysv/linux/alpha/kernel_sysinfo.h: New file.
4085         * sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S: Use it.
4086         * sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S: Likewise.
4088 2004-09-05  Richard Henderson  <rth@redhat.com>
4090         * sysdeps/alpha/div.S: Save and restore FPCR around fp operations.
4091         * sysdeps/alpha/divl.S, sysdeps/alpha/divq.S, sysdeps/alpha/divqu.S,
4092         sysdeps/alpha/ldiv.S, sysdeps/alpha/reml.S, sysdeps/alpha/remq.S,
4093         sysdeps/alpha/remqu.S: Likewise.
4094         * sysdeps/alpha/div_libc.h (FRAME): Increase to 64.
4096 2004-09-05  Ulrich Drepper  <drepper@redhat.com>
4098         * nscd/cache.c (cache_add): Correctly log GETHOSTBYADDR and
4099         GETHOSTBYADDRv6 requests.
4101 2004-09-04  Ulrich Drepper  <drepper@redhat.com>
4103         * nscd/pwdcache.c (cache_addpw): Use correct key length in
4104         cache_add calls.
4105         * nscd/grpcache.c (cache_addgr): Likewise.
4107 2004-09-03  Alfred M. Szmidt  <ams@kemisten.nu>
4109         * sysdeps/mach/hurd/i386/tls.h (THREAD_DTV): Changed type of _DTV
4110         to `dtv_t *'.
4112 2004-09-03  Ulrich Drepper  <drepper@redhat.com>
4114         * nscd/nscd.c (parse_opt): Use writev instead of two write for
4115         invalidate command.
4117 2004-09-02  Ulrich Drepper  <drepper@redhat.com>
4119         * nscd/connections.c (nscd_run): Check early for invalid request types.
4121 2004-09-02  Roland McGrath  <roland@frob.com>
4123         * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): New macro.
4124         (INSTALL_NEW_DTV, THREAD_DTV): Rewritten to fetch the right word.
4125         (THREAD_SELF): New macro.
4127 2004-09-02  Steven Munroe  <sjmunroe@us.ibm.com>
4129         [BZ #357]
4130         * stdlib/tst-setcontext.c (test_stack): Added test for stack clobber.
4131         (main): Call test_stack.
4132         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
4133         (__getcontext): Push stack frame then save parms in local frame.
4134         Improve instruction scheduling.
4135         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
4136         (__swapcontext): Likewise.
4138 2004-09-01  Andreas Schwab  <schwab@suse.de>
4140         * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h [g++ >= 3.5]: Use
4141         __builtin_offsetof.
4143 2004-09-01  Jakub Jelinek  <jakub@redhat.com>
4145         [BZ #361]
4146         * posix/fnmatch_loop.c (FCT): For backslash between brackets, branch
4147         to normal_bracket after fetching the next character.
4148         * posix/tst-fnmatch.input: Add 25 new tests.
4149         Reported by Markus Oberhumer <markus@oberhumer.com>.
4151 2004-09-01  Ulrich Drepper  <drepper@redhat.com>
4153         * elf/rtld.c (dl_main): First check existence of ld.so.preload
4154         with access.
4156 2004-09-01  Roland McGrath  <roland@redhat.com>
4158         * sysdeps/unix/sysv/linux/bits/waitflags.h
4159         (WSTOPPED, WEXITED, WCONTINUED, WNOWAIT): New macros.
4160         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_WAITID_SYSCALL):
4161         New macro.
4162         * sysdeps/unix/sysv/linux/waitid.c: New file.  Use new syscall when
4163         available, or fall back to the waitpid-based generic code.
4165 2004-08-14  Alfred M. Szmidt  <ams@kemisten.nu>
4167         * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Let gcc
4168         clobber the `ebp' register.
4169         * sysdeps/mach/hurd/i386/Makefile (CFLAGS-init-first.c): Removed.
4170         Reverts change from 2004-05-07 by Jeroen Dekkers.
4172         * sysdeps/mach/hurd/i386/init-first.c (init): Changed the type of
4173         NEWSP from `void *' to `int *'.  Changed all casts accordingly.
4175 2004-08-31  Jakub Jelinek  <jakub@redhat.com>
4177         * wcsmbs/wcsmbsload.c (__wcsmbs_getfct): Move attribute_hidden
4178         before return type.
4179         * locale/localename.c (__current_locale_name): Likewise.
4181 2004-08-30  Roland McGrath  <roland@frob.com>
4183         * scripts/extract-abilist.awk: If `lastversion' variable defined, omit
4184         later sets from output.
4185         * Makerules (check-abi): Pass option to set that with value of
4186         LIB-abi-frozen variable if one is set.
4188         * abilist/libcidn.abilist: New file (empty).
4190 2004-08-30  Jakub Jelinek  <jakub@redhat.com>
4192         * posix/bits/posix1_lim.h (_POSIX_CHILD_MAX, _POSIX_OPEN_MAX): If
4193         not __USE_XOPEN2K, use the Unix98 mandated values.
4195 2004-08-27  Roland McGrath  <roland@redhat.com>
4197         * configure.in (usetls): Default to yes.
4198         * configure: Regenerated.
4200 2004-08-26  Roland McGrath  <roland@redhat.com>
4202         * configure.in (add_ons_automatic): New variable, set to yes or no
4203         indicating --enable-add-ons with no explicit list.
4204         (running add-on fragments): Allow a fragment to modify $libc_add_on
4205         and have that affect its place in the list of add-ons to use.
4206         * configure: Regenerated.
4208 2004-08-26  Ulrich Drepper  <drepper@redhat.com>
4210         * nscd/cache.c: Major rewrite.  The data is now optionally kept in
4211         a mmaped memory region which is automatically mirrored on disk.
4212         This implements persistent data storage.  The Memory handled
4213         needed to be completely revamped, it now uses a garbage collection
4214         mechanism instead of malloc.
4215         * nscd/connections.c: Likewise.
4216         * nscd/nscd.c: Likewise.
4217         * nscd/nscd.h: Likewise.
4218         * nscd/nscd_conf.c: Likewise.
4219         * nscd/nscd_stat.c: Likewise.
4220         * nscd/grpcache.c: Likewise.
4221         * nscd/hstcache.c:: Likewise.
4222         * nscd/pwdcache.c:: Likewise.
4223         * nscd/Makefile: Add rules to build mem.c.
4224         * nscd/mem.c: New file.
4225         * nscd/nscd.conf: Describe new configuration options.
4227 2004-08-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4229         * sysdeps/unix/sysv/linux/mips/pread.c: Include sgidefs.h only if
4230         NO_SGIDEFS_H isn't defined.
4231         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
4232         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
4234         * sysdeps/unix/sysv/linux/sh/pread.c: Define NO_SGIDEFS_H and
4235         _MIPS_SIM.
4236         * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
4237         * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
4238         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
4240 2004-08-26  Ulrich Drepper  <drepper@redhat.com>
4242         * nscd/connections.c (nscd_run): atomic_increment was not missing.
4244         * sysdeps/gnu/Makefile (libdl-sysdep_routines): Don't add eval.
4245         Patch by Greg Schafer.
4247 2004-08-25  Richard Henderson  <rth@redhat.com>
4249         * sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind
4250         instead of $31.  Zero $15.
4251         * sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
4253 2004-08-25  Ulrich Drepper  <drepper@redhat.com>
4255         * sysdeps/powerpc/powerpc64/bits/atomic.h
4256         (__arch_compare_and_exchange_bool_32_acq): Fix case where oldval
4257         is negative.
4258         (__arch_compare_and_exchange_bool_32_rel): Likewise.
4260         * nscd/connections.c: Make socket nonblocking so that threads
4261         don't get stuck on accept.  Fix locking.
4263         * nscd/grpcache.c (cache_addgr): Use copy of original key in hash
4264         entry with alternative key.
4265         * nscd/pwdcache.c (cache_addpw): Likewise.
4267 2004-08-25  Richard Sandiford  <rsandifo@redhat.com>
4269         * sysdeps/mips/dl-machine.h (_dl_start_user): Don't set
4270         __libc_stack_end.
4272 2004-08-23  Ulrich Drepper  <drepper@redhat.com>
4274         * sysdeps/gnu/netinet/udp.h: Cosmetic changes.  Remove unnecessary
4275         __BEGIN_DECLS/__END_DECLS.
4277 2004-08-23  Andreas Jaeger  <aj@suse.de>
4279         [BZ #341]
4280         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_NOATIME): Define.
4281         * sysdeps/unix/sysv/linux/arm/bits/fcntl.h (O_NOATIME): Likewise.
4282         * sysdeps/unix/sysv/linux/cris/bits/fcntl.h (O_NOATIME): Likewise.
4283         * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (O_NOATIME): Likewise.
4284         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (O_NOATIME): Likewise.
4285         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_NOATIME): Likewise.
4286         * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h (O_NOATIME): Likewise.
4287         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_NOATIME): Likewise.
4288         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (O_NOATIME): Likewise.
4289         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_NOATIME): Likewise.
4290         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (O_NOATIME): Likewise.
4291         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_NOATIME): Likewise.
4292         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (O_NOATIME): Likewise.
4294 2004-08-21  Ulrich Drepper  <drepper@redhat.com>
4296         * malloc/hooks.c (DEFAULT_CHECK_ACTION): Moved to malloc.c.
4297         (check_action): Likewise.
4298         When printing error messages, use malloc_printf_nc now instead of
4299         fiddling with the streams cancellation flag in every place.
4300         * malloc/malloc.c (DEFAULT_CHECK_ACTION): New definition.  Change
4301         default to 3.
4302         (check_action): New variable.
4303         (unlink): Print error message and eventually terminate in case list
4304         is corrupted.
4305         (malloc_printf_nc): New function.  Use it in _int_free.
4306         Change proposed by Arjan van de Ven.
4308         * dlfcn/Makefile: Don't build eval.c anymore.
4310 2004-08-20  Roland McGrath  <roland@frob.com>
4312         * csu/Makefile ($(objpfx)version-info.h): Use printf in place
4313         of echo -e for POSIX.2 portability.
4314         Reported by Paul Jarc <prj@po.cwru.edu>.
4316 2004-08-19  Ulrich Drepper  <drepper@redhat.com>
4318         * sysdeps/posix/getaddrinfo.c (gaih_inet): Minor optimizations in
4319         list generation.
4321         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use
4322         getcanonname_r function if AI_CANONNAME flag is not set in
4323         request.
4325         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss):
4326         Initialize mysize with limits only if latter is >= 0.  Use mysize
4327         in malloc call.
4329 2004-08-19  Jakub Jelinek  <jakub@redhat.com>
4331         * sysdeps/posix/getaddrinfo.c (gaih_inet): Cast canon to (char *)
4332         to avoid warning.
4334         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Initialize
4335         status to NSS_STATUS_UNAVAIL.
4337 2004-08-19  Ulrich Drepper  <drepper@redhat.com>
4339         * sysdeps/posix/getaddrinfo.c (gaih_inet): Use h->h_name in the
4340         cannoname lookup since it has the FQDN even if the original NAME
4341         value has not.
4343 2004-08-18  Ulrich Drepper  <drepper@redhat.com>
4345         * sysdeps/posix/getaddrinfo.c (gaih_inet): Store NAME parameter
4346         pointer in new variable ORIG_NAME and use this pointer when
4347         determination of canonical name failed, not the possibly IDN
4348         translated value of NAME.
4350 2004-08-17  Ulrich Drepper  <drepper@redhat.com>
4352         * resolv/resolv.h (RES_DEFAULT): Add RES_NOIP6DOTINT.
4353         * resolv/res_init.c (res_setoptions): Recognize ip6-dotint option.
4354         Reset RES_NOIP6DOTINT flag in this case..
4356         * sysdeps/posix/getaddrinfo.c: Fix memory handling of
4357         ai_canonname.
4359 2004-08-16  Ulrich Drepper  <drepper@redhat.com>
4361         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Don't use
4362         CNAME records, we better follow the chain of CNAME records which
4363         can be accomplished with A/AAAA lookups.
4365 2004-08-15  Roland McGrath  <roland@redhat.com>
4367         * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who):
4368         Remove __RUSAGE_BOTH constant and RUSAGE_BOTH macro.
4369         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
4370         * sysdeps/unix/sysv/linux/mips/bits/resource.h: Likewise.
4371         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
4373 2004-08-15  Roland McGrath  <roland@frob.com>
4375         * sysdeps/i386/i686/Makefile (elide-routines.os): Append hp-timing to
4376         this, not ...
4377         (static-only-routines): ... this.
4378         * sysdeps/ia64/Makefile: Likewise.
4379         * sysdeps/sparc/sparc32/sparcv9/Makefile: Likewise.
4380         * sysdeps/sparc/sparc64/Makefile: Likewise.
4381         * sysdeps/x86_64/Makefile: Likewise.
4382         * sysdeps/i386/i686/hp-timing.c: Revert copyright terms change.
4383         * sysdeps/ia64/hp-timing.c: Likewise.
4384         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
4385         * sysdeps/sparc/sparc64/hp-timing.c: Likewise.
4387         * csu/elf-init.c: Update copyright terms including special exception
4388         for these trivial files, which are statically linked into executables
4389         that use dynamic linking for the significant library code.
4390         * io/fstat.c: Likewise.
4391         * io/fstat64.c: Likewise.
4392         * io/lstat.c: Likewise.
4393         * io/lstat64.c: Likewise.
4394         * io/stat.c: Likewise.
4395         * io/stat64.c: Likewise.
4396         * stdlib/atexit.c: Likewise.
4397         * sysdeps/alpha/elf/initfini.c: Likewise.
4398         * sysdeps/alpha/elf/start.S: Likewise.
4399         * sysdeps/arm/elf/start.S: Likewise.
4400         * sysdeps/cris/elf/start.S: Likewise.
4401         * sysdeps/generic/initfini.c: Likewise.
4402         * sysdeps/generic/mknod.c: Likewise.
4403         * sysdeps/hppa/elf/initfini.c: Likewise.
4404         * sysdeps/hppa/elf/start.S: Likewise.
4405         * sysdeps/i386/elf/start.S: Likewise.
4406         * sysdeps/i386/i686/hp-timing.c: Likewise.
4407         * sysdeps/ia64/elf/initfini.c: Likewise.
4408         * sysdeps/ia64/elf/start.S: Likewise.
4409         * sysdeps/ia64/hp-timing.c: Likewise.
4410         * sysdeps/m68k/elf/start.S: Likewise.
4411         * sysdeps/mach/start.c: Likewise.
4412         * sysdeps/mips/elf/start.S: Likewise.
4413         * sysdeps/powerpc/powerpc32/elf/start.S: Likewise.
4414         * sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
4415         * sysdeps/s390/s390-32/elf/start.S: Likewise.
4416         * sysdeps/s390/s390-32/initfini.c: Likewise.
4417         * sysdeps/s390/s390-64/elf/start.S: Likewise.
4418         * sysdeps/s390/s390-64/initfini.c: Likewise.
4419         * sysdeps/sh/elf/initfini.c: Likewise.
4420         * sysdeps/sh/elf/start.S: Likewise.
4421         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
4422         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
4423         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
4424         * sysdeps/sparc/sparc64/hp-timing.c: Likewise.
4425         * sysdeps/standalone/i386/start.S: Likewise.
4426         * sysdeps/standalone/i960/start.S: Likewise.
4427         * sysdeps/standalone/m68k/m68020/start.S: Likewise.
4428         * sysdeps/unix/arm/start.c: Likewise.
4429         * sysdeps/unix/bsd/osf/alpha/start.S: Likewise.
4430         * sysdeps/unix/bsd/ultrix4/mips/start.S: Likewise.
4431         * sysdeps/unix/sparc/start.c: Likewise.
4432         * sysdeps/unix/start.c: Likewise.
4433         * sysdeps/unix/sysv/aix/start.s: Likewise.
4434         * sysdeps/unix/sysv/irix4/start.c: Likewise.
4435         * sysdeps/x86_64/elf/initfini.c: Likewise.
4436         * sysdeps/x86_64/elf/start.S: Likewise.
4438 2004-08-15  Roland McGrath  <roland@redhat.com>
4440         [BZ #227]
4441         * sysdeps/unix/sysv/linux/kernel-features.h
4442         (__ASSUME_BRK_PAGE_ROUNDED): New macro.
4443         * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
4444         [! __ASSUME_BRK_PAGE_ROUNDED]: Adjust the break up if it falls within
4445         the partial page after the dynamic linker's own data segment.
4447 2004-08-15  Ulrich Drepper  <drepper@redhat.com>
4449         * sysdeps/posix/getaddrinfo.c (gaih_inet): Optimize generation of
4450         v4-mapped addresses a bit.
4451         (gethosts): Move alloca out of macro, so that it is done only once.
4453         * sysdeps/posix/getaddrinfo.c (gaih_addrtuple): Change type of
4454         addr to avoid casts.
4455         (gethosts): Removed.
4456         (gethosts2): Renamed to gethosts.  Make it usable for family !=
4457         AF_UNSPEC.  Fix AI_V4MAPPED.
4458         (gaih_inet): Remove use of old gethosts.  Always use what used to be
4459         gethosts2.  If entry is found, try to use the same NSS module's
4460         getcanonname_r function.  Use gethostbyaddr for AI_CANONNAME only
4461         if getcanonname_r was not available.  Fix filtering of AI_V4MAPPED
4462         addresses.  Numerous cleanups.
4463         * resolv/nss_dns/dns-canon.c: New file.
4464         * resolv/Makefile (libnss_dns-routines): Add dns-canon.
4465         * resolv/Versions (libnss_dns): Add _nss_dns_getcanonname_r.
4467         * elf/Makefile: Add rules to build and run tst-dlopenrpath.
4468         * elf/tst-dlopenrpath.c: New file.
4469         * elf/tst-dlopenrpathmod.c: New file.
4471         * intl/tst-gettext.sh: Adjust for change of de.po file to UTF-8.
4472         * intl/tst-gettext.c: Likewise.
4474         * nss/getent.c (ahosts_keys_int): Correctly print IPv6 addresses.
4476         * nss/getent.c: Allow queries for getaddrinfo with AF_INET and
4477         AF_INET6.
4479 2004-08-14  Ulrich Drepper  <drepper@redhat.com>
4481         * po/de.po: Update from translation team.
4483 2004-08-14  Roland McGrath  <roland@frob.com>
4485         * sysdeps/mach/configure: Regenerated.
4486         * sysdeps/mach/hurd/configure: Regenerated.
4488 2004-08-14  Ulrich Drepper  <drepper@redhat.com>
4490         * sysdeps/posix/getaddrinfo.c (getaddrinfo): If RFC3484 sorting is
4491         performed, make sure it is still the first entry after sorting
4492         that has the ai_canonname information.
4494         * sysdeps/posix/getaddrinfo.c (gaih_inet): Really set ai_canonname
4495         only in one entry.
4497 2004-08-13  Daniel Jacobowitz  <dan@debian.org>
4499         * scripts/output-format.sed: Handle default case of three-argument
4500         OUTPUT_FORMAT.
4502         * sysdeps/arm/machine-gmon.h (mcount_internal): Mark as
4503         __attribute_used__.
4505 2004-08-13  Ulrich Drepper  <drepper@redhat.com>
4507         * nss/getent.c (ahosts_keys): ai_canonname is NULL for all but the
4508         first returned entry.  Print name only if not NULL.
4510         * nis/nss_nis/nis-netgrp.c: Remove locking by using data in struct
4511         __netgrent object passed in instead of global variables.
4512         Optimize.
4513         * nis/nss_nisplus/nisplus-netgrp.c: Remove locking by using data
4514         in struct __netgrent object passed in instead of global variables.
4515         * inet/netgroup.h (struct __netgrent): Add service_user field.
4516         Move cursor in anonymous union, add new field location to that
4517         union.
4518         * inet/getnetgrent_r.c: Extensive rewrite to really enable
4519         concurrent uset of set/get/endnetgrent and innetgr.
4520         Reported by Chuck Simmons.
4522         * inet/netgroup.h (struct name_list): Replace name pointer with
4523         zero-sized array.
4524         * inet/getnetgrent_r.c: Adjust code for change in name_list
4525         layout.  Numerous strdup and free calls removed.
4527         * elf/sprof.c (read_symbols): When comparing aliases, prefer
4528         non-hidden over hidden symbols and strong over weak symbols
4529         if both don't start with '_'.
4531         * malloc/malloc.c: Use strong_alias instead of weak_alias wherever
4532         possible.
4534 2004-08-12  Jakub Jelinek  <jakub@redhat.com>
4536         * sysdeps/unix/sysv/linux/bits/resource.h: Define non-standard
4537         RUSAGE_ enums as __RUSAGE_ and adjust macros accordingly.
4538         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
4539         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
4540         * sysdeps/unix/sysv/linux/mips/bits/resource.h: Likewise.
4541         Define non-standard RLIMIT_ enums as __RLIMIT_ and adjust macros
4542         accordingly.
4544 2004-08-11  Andreas Schwab  <schwab@suse.de>
4546         * resolv/res_libc.c: Move definition of __res_initstamp ...
4547         * resolv/res_init.c: ... here.
4549 2004-08-10  GOTO Masanori  <gotom@debian.or.jp>
4551         * locale/C-time.c: Change default ERA value from NULL to "".
4552         * locale/tst-C-locale.c: Add test case for ERA keywords.
4554 2004-08-12  Ulrich Drepper  <drepper@redhat.com>
4556         * sysdeps/unix/sysv/linux/bits/resource.h: Define non-standard
4557         RLIMIT__ enums as __RLIMIT_ and adjust macros accordingly.
4558         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
4559         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
4561 2004-08-12  Jakub Jelinek  <jakub@redhat.com>
4563         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_SIGPENDING,
4564         RLIMIT_MSGQUEUE): Add.
4565         (RLIMIT_NLIMITS, RLIM_NLIMITS): Adjust.
4566         * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIMIT_SIGPENDING,
4567         RLIMIT_MSGQUEUE, RLIMIT_NLIMITS): Add.
4568         (RLIM_NLIMITS): Adjust.
4569         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIMIT_SIGPENDING,
4570         RLIMIT_MSGQUEUE, RLIMIT_NLIMITS): Add.
4571         (RLIM_NLIMITS): Adjust.
4572         * sysdeps/unix/sysv/linux/mips/bits/resource.h (RLIMIT_SIGPENDING,
4573         RLIMIT_MSGQUEUE, RLIMIT_NLIMITS): Add.
4574         (RLIM_NLIMITS): Adjust.
4576 2004-08-12  Jakub Jelinek  <jakub@redhat.com>
4578         * resolv/res_query.c (__libc_res_nsearch): Protect the debugging
4579         printf with #ifdef DEBUG and RES_DEBUG check.
4581         * sysdeps/unix/sysv/linux/bits/shm.h: Move __END_DECLS after
4582         __USE_MISC #endif.
4583         * sysdeps/generic/bits/shm.h: Add __BEGIN_DECLS for __getpagesize
4584         declaration.
4585         * sysdeps/gnu/bits/shm.h: Likewise.
4586         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
4587         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
4588         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
4589         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
4590         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
4592 2004-08-12  Ulrich Drepper  <drepper@redhat.com>
4594         * po/ca.po: Update from translation team.
4596 2004-08-11  Ulrich Drepper  <drepper@redhat.com>
4598         * sysdeps/unix/sysv/linux/bits/shm.h: Add __BEGIN_DECLS for
4599         __getpagesize declaration.
4601 2004-08-11  Roland McGrath  <roland@redhat.com>
4603         * configure.in (libc_cv_cpp_asm_debuginfo): Add missing braces around
4604         commands inside &&.
4605         Reported by Andreas Schwab <schwab@suse.de>.
4606         * configure: Regenerated.
4608         * posix/tst-waitid.c (do_test): Ignore SIGCHLD before cleanup SIGKILL.
4610 2004-08-11  Ulrich Drepper  <drepper@redhat.com>
4612         * time/tzset.c (tzset_internal): Add new parameter which is
4613         nonzero if called through tzset.  Use TZDEFAULT name including
4614         name comparison if the new parameter is zero.  This means implicit
4615         tzset calls will not cause files to be opened and read by tzfile.c
4616         all the time.
4618 2004-08-11  Jakub Jelinek  <jakub@redhat.com>
4620         * rt/tst-timer2.c (do_test): If timer_create fails, just continue.
4621         * rt/tst-timer4.c (do_test): If one of the timer_create calls fails,
4622         return 1 immediately.
4624         * time/tzfile.c (__tzfile_read): Free transitions only if it will
4625         not be reused.
4627         * sysdeps/ieee754/dbl-64/mpa.c: Include <sys/param.h>.
4628         * sysdeps/ieee754/dbl-64/mpa.h (MAX, MIN): Macros removed.
4630         * stdio-common/tst-popen.c: Include <string.h>.
4632         * resolv/res_send.c (__libc_res_nsend): Only define TMPBUF #if DEBUG.
4634         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Remove noreturn
4635         attribute.  Return NULL instead of calling pthread_exit at the end.
4637 2004-08-11  Roland McGrath  <roland@redhat.com>
4639         * iconvdata/testdata/ISO-2022-JP-3: Regenerated.
4641 2004-08-10  Alfred M. Szmidt  <ams@kemisten.nu>
4643         * sysdeps/generic/bits/in.h (struct ip_mreq): Remove definition.
4645 2004-08-10  Jakub Jelinek  <jakub@redhat.com>
4647         * libio/bits/stdio.h (fread_unlocked): Cast 0 to (size_t).
4648         (fwrite_unlocked): When checking if size * n is <= 8, cast each
4649         argument to size_t individually.  Cast n to (void) instead of
4650         (size_t), surround with (), return (size_t) 0 if one of n or size
4651         is 0.  [BZ #316]
4652         * stdio-common/Makefile (tests): Add tst-unlockedio.
4653         * stdio-common/tst-unlockedio.c: New test.
4655 2004-08-09  Roland McGrath  <roland@frob.com>
4657         * manual/install.texi (Supported Configurations): Replace bug-glibc
4658         mention with web URL.
4659         * INSTALL: Regenerated.
4660         * locale/iso-3166.def: Likewise, in comment.
4661         * locale/iso-4217.def: Likewise.
4662         * locale/iso-639.def: Likewise.
4663         * posix/cpio.h: Remove bug reporting comment.
4665 2004-08-09  Ulrich Drepper  <drepper@redhat.com>
4667         * libio/bits/stdio.h (fread_unlocked): Add a couple of (size_t)
4668         casts to handle funny calls with floating point argument values
4669         and signed values correctly and without warning.
4670         (fwrite_unlocked): Likewise.  [BZ #309]
4672         * malloc/memusage.c (me): Use creat64, not creat.
4673         * malloc/memusagestat.c: Fix handling of very large sizes.  [BZ #285]
4674         Patch by Guy Maor <guymaor@yahoo.com>.
4676         * elf/ldconfig.c (options): Mark parameter option names as
4677         translatable.  [BZ #253]  Patch by Jakub Bogusz <qboosh@pld-linux.org>.
4679         * iconv/gconv_charset.h (strip): Also allow comma which is what is
4680         used to separate options.  [BZ #194]
4682 2004-08-09  Roland McGrath  <roland@redhat.com>
4684         * FAQ.in: Refer to web pages instead of bug-glibc.
4685         * FAQ: Regenerated.
4687         * time/strptime_l.c: #include <stdbool.h>, `bool' used in last change.
4689 2004-08-09  Ulrich Drepper  <drepper@redhat.com>
4691         * time/tzset.c (tzset_internal): If TZ is not set do not compare
4692         old and new tz value since it might be /etc/localtime in both
4693         cases although the file changed.  [BZ #154]
4694         Patch by Christian Franke <franke@computer.org>.
4696         * time/tzfile.c (__tzfile_read): Determine dev/ino of file.
4697         Compare with values of previously opened file.  Don't do anything
4698         is they match.
4700 2004-08-08  Ulrich Drepper  <drepper@redhat.com>
4702         * elf/dl-load.c (_dl_map_object): If __RTLD_CALLMAP flag is set,
4703         reset loader before the actual loading.
4704         * elf/dl-open.c (dl_open_worker): If file name contains no path
4705         element determine map of caller.  Pass caller map in this case to
4706         _dl_map_object.  Set __RTLD_CALLMAP in mode.
4707         * include/dlfcn.h (__RTLD_CALLMAP): Define.  [BZ #116]
4708         Patch by Greg Wolodkin <greg@mathworks.com>.
4710         * misc/syslog.c (openlog_internal): Always try both UDP and TCP.
4711         [BZ #108]  Patch mainly by Bjorn Andersson <bjorn@iki.fi>.
4713         * configure.in: Also recognize i786. [BZ #106]
4714         Patch by <pluto@pld-linux.org>.
4716         * resolv/res_query.c (__libc_res_nsearch): Correctly test whether
4717         name contains any dots. [BZ #95]
4719         * resolv/res_send.c: Compiling with DEBUG defined works again.
4720         * resolv/gethnamaddr.c (dprintf): Renamed to Dprintf.  Adjust all
4721         callers.
4723         * resolv/tst-leaks.c (TIMEOUT): Define so that if no server is
4724         available the process is not killed. [BZ #41]
4726         * intl/tst-gettext.c (main): Improve some messages. [BZ #33]
4728         * time/strptime_l.c (__strptime_internal): Fix handling of %Ey.
4729         [BZ #28]
4731         * po/sv.po: Update from translation team.
4733 2004-08-07  Ulrich Drepper  <drepper@redhat.com>
4735         * inet/netinet/in.h: Add more const to the setipv4soucefilter,
4736         getsourcefilter, and setsourcefilter parameter list.
4737         * sysdeps/generic/setipv4sourcefilter.c: Likewise.
4738         * sysdeps/generic/getsourcefilter.c: Likewise.
4739         * sysdeps/generic/setsourcefilter.c: Likewise.
4740         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
4741         * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
4742         * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
4744         * po/tr.po: Update from translation team.
4746 2004-08-06  Ulrich Drepper  <drepper@redhat.com>
4748         * iconvdata/jisx0213.h (jisx0213_added_in_2004_p): Fix typo.
4749         Reported by Paolo Bonzini.
4751 2004-08-06  Jakub Jelinek  <jakub@redhat.com>
4753         * sysdeps/ia64/dl-machine.h (elf_machine_fixup_plt): Add
4754         always_inline.
4755         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_runtime_setup,
4756         elf_machine_fixup_plt, elf_machine_plt_conflict): Likewise.
4758         * sysdeps/unix/sysv/linux/netatalk/at.h: Include bits/sockaddr.h
4759         before including linux/atalk.h.
4761         * resolv/res_libc.c: Include atomic.h.
4763         * intl/finddomain.c (free_mem): Rename to...
4764         (_nl_finddomain_subfreeres): ... this.  Add
4765         __libc_freeres_fn_section.
4766         * intl/loadmsgcat.c (_nl_unload_domain): Add
4767         __libc_freeres_fn_section.
4768         * intl/gettextP.h (_nl_unload_domain): Move into #ifdef _LIBC.
4769         Add attribute_hidden.
4770         (_nl_findomain_subfreeres): New prototype.
4771         * iconv/gconv_db.c (free_mem): Call _nl_findomain_subfreeres.
4773 2004-07-30  Guido Guenther  <agx@sigxcpu.org>
4775         * nss/getent.c (passwd_keys): Use strtoul instead of isdigit to
4776         test if the key is numeric or not.
4777         (group_keys): Likewise.
4779 2004-08-05  Ulrich Drepper  <drepper@redhat.com>
4781         * inet/netinet/in.h: Define struct ip_msfilter, IP_MSFILTER_SIZE,
4782         struct group_filter, and GROUP_FILTER_SIZE.
4783         * include/sys/socket.h: Declare __getsockopt.
4784         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: New file.
4785         * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: New file.
4786         * sysdeps/unix/sysv/linux/setsourcefilter.c: New file.
4787         * sysdeps/unix/sysv/linux/getsourcefilter.c: New file. [BZ #211]
4789         * po/ko.po: Update from translation team.
4791 2004-08-04  Jakub Jelinek  <jakub@redhat.com>
4793         * hesiod/hesiod.c (__hesiod_res_get): Use calloc instead of malloc +
4794         memset.
4795         (__hesiod_res_set): Free nsaddrs.
4797         * include/resolv.h (__res_maybe_init): Add prototype.
4798         * resolv/resolv.h (struct __res_state): Add _u._ext.initstamp field.
4799         * resolv/Versions (libc): Add __res_maybe_init@@GLIBC_PRIVATE.
4800         * resolv/res_libc.c (__res_initstamp, lock): New variables.
4801         (res_init): Increase __res_initstamp.
4802         (__res_maybe_init): New function.
4803         * resolv/res_init.c (__res_vinit): Initialize _u._ext.initstamp.
4804         * hesiod/hesiod.c (__hesiod_res_get): Use __res_maybe_init instead
4805         of RES_INIT check and {res_ninit,__res_ninit,res_init} call.
4806         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
4807         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname2_r,
4808         _nss_dns_gethostbyaddr_r): Likewise.
4809         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r,
4810         _nss_dns_getnetbyaddr_r): Likewise.
4811         * resolv/gethnamaddr.c (gethostbyname, gethostbyname2,
4812         gethostbyaddr): Likewise.
4813         * resolv/res_data.c (fp_nquery, res_mkquery, res_mkupdate,
4814         res_isourserver, res_sendsigned, res_update, res_search,
4815         res_querydomain): Likewise.
4816         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Likewise.
4817         * nss/digits_dots.c (__nss_hostname_digits_dots): Likewise.
4818         * nss/getnssent_r.c (__nss_setent, __nss_endent, __nss_getent_r):
4819         Likewise.
4821 2004-08-05  Ulrich Drepper  <drepper@redhat.com>
4823         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set ai_family for
4824         V4-mapped IPv6 addresses and req->ai_family==AF_INET.
4825         Reported by A. Guru <a.guru@sympatico.ca>.
4827         * po/sv.po: Update from translation team.
4828         * po/sk.po: Likewise.
4829         * po/pl.po: Likewise.
4831 2004-08-04  Jakub Jelinek  <jakub@redhat.com>
4832             Ulrich Drepper  <drepper@redhat.com>
4834         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Don't read more input
4835         characters than necessary.
4837 2004-08-05  Ulrich Drepper  <drepper@redhat.com>
4839         * wcsmbs/Makefile (tests): Add tst-mbsrtowcs.
4840         * wcsmbs/tst-mbsrtowcs.c: New file.
4842         * po/fr.po: Update from translation team.
4844 2004-08-04  Jakub Jelinek  <jakub@redhat.com>
4846         * resolv/inet_pton.c (inet_pton4): Disallow octal numbers.  Reported
4847         by A. Guru <a.guru@sympatico.ca>.  [BZ #295]
4849 2004-08-05  Ulrich Drepper  <drepper@redhat.com>
4851         * po/nl.po: Update from translation team.
4853         * sysdeps/posix/getaddrinfo.c (gaih_inet): Recognize all the IPv4
4854         numeric address formats inet_addr knows.
4855         (getaddrinfo): Allow AI_NUMERICSERV flag.
4856         If neither IPv4 nor IPv6 interface is present we cannot make any
4857         decision for AI_ADDRCONFIG.  Fail if AI_NUMERICSERV is set and the
4858         string is not just a number.  Remove useless freeaddrinfo call.
4859         * resolv/netdb.h (AI_NUMERICSERV): Define.
4860         Based on a patch by a.guru@sympatico.ca.
4862 2004-08-04  Jakub Jelinek  <jakub@redhat.com>
4864         * stdlib/strfmon_l.c (__vstrfmon_l): Memset whole info structure
4865         instead of trying to initialize some, but not all, fields one by
4866         one.
4867         * stdio-common/printf_size.c (printf_size): Initialize fb_info
4868         structure with *info instead of trying to initialize some, but not
4869         all, fields from it.
4871         * nscd/connections.c (handle_request): Check if req->type is in
4872         LASTDBREQ .. LASTREQ range instead of req.
4874         * locale/programs/linereader.c (lr_create): Initialize
4875         lr->return_widestr to 0.
4877         * elf/dl-close.c (free_slotinfo): Add __libc_freeres_fn_section.
4878         (free_mem): Call free_slotinfo just once.
4880         * stdio-common/tst-fmemopen.c (main): Check for MAP_FAILED instead
4881         of NULL.
4883         * locale/localeinfo.h (_nl_locale_subfreeres): New prototype.
4884         * locale/setlocale.c (free_category): Add __libc_freeres_fn_section.
4885         (free_mem): Rename to _nl_locale_subfreeres.
4886         * iconv/gconv_db.c: Include locale/localeinfo.h.
4887         (free_derivation, free_modules_db): Add __libc_freeres_fn_section.
4888         (free_mem): Call _nl_locale_subfreeres.
4889         * iconv/gconv_dl.c (do_release_all): Add __libc_freeres_fn_section.
4891 2004-08-04  Roland McGrath  <roland@frob.com>
4893         * Makeconfig ($(common-objpfx)config.status):
4894         Fix typo: $(add_ons) -> $(add-ons).
4895         (Makeconfig-add-on): New variable.  When doing $(sysdep-makeconfigs)
4896         include, use black magic to get it set to an add-on's name during the
4897         include of the add-on's Makeconfig.
4899         * configure.in: Use variable name `libc_add_on' when sourcing add-on
4900         configure fragments, so they can refer to this.
4901         * configure: Regenerated.
4903 2004-08-04  Roland McGrath  <roland@redhat.com>
4905         * posix/tst-waitid.c (test_child): Sleep a second before stopping.
4906         (do_test): Bump sleep to three seconds.
4907         (sigchld, check_sigchld): New functions.
4908         (do_test): Handle SIGCHLD and check for getting the right details.
4910         * posix/tst-waitid.c (do_test): Kill the child process when bailing
4911         out early on some failure.
4912         [WCONTINUED]: Test WCONTINUED functionality.
4914 2004-08-03  Ulrich Drepper  <drepper@redhat.com>
4916         * nscd/connections.c (handle_request): Print more descriptive
4917         message for invalid request types.
4919 2004-08-02  Jakub Jelinek  <jakub@redhat.com>
4921         * iconvdata/ibm932.c (BODY): Avoid binary search for ch >= 0xffff.
4922         Always treat high as highest number in range + 1.
4923         * iconvdata/ibm943.c (BODY): Likewise.
4925 2004-07-31  Bruno Haible  <bruno@clisp.org>
4927         * iconvdata/JISX0213.TXT: Updated to JISX0213 plane 1 version 2004.
4928         * iconvdata/jisx0213.c (__jisx0213_to_ucs_main,
4929         __jisx0213_to_ucs_pagestart, __jisx0213_from_ucs_level1,
4930         __jisx0213_from_ucs_level2): Regenerated.
4931         * iconvdata/jisx0213.h (jisx0213_added_in_2004_p): New function.
4932         * iconvdata/iso-2022-jp-3.c (JISX0213_1_2000_set): Renamed from
4933         JISX0213_1_set.
4934         (JISX0213_1_2004_set): New enum value.
4935         (BODY for FROM_LOOP): Treat ESC $ ( Q like ESC $ ( O.
4936         (BODY for TO_LOOP): For JISX 0213 plane 1 characters, emit ESC $ ( O
4937         when possible, ESC $ ( Q when needed.
4938         * iconvdata/testdata/EUC-JISX0213: Add the 10 new characters.
4939         * iconvdata/testdata/EUC-JISX0213..UTF8: Update.
4940         * iconvdata/testdata/SHIFT_JISX0213: Add the 10 new characters.
4941         * iconvdata/testdata/SHIFT_JISX0213..UTF8: Update.
4942         * iconvdata/testdata/ISO-2022-JP-3: Add the 10 new JISX0213 characters.
4943         * iconvdata/testdata/ISO-2022-JP-3..UTF8: Update.
4945 2004-07-22  Bruno Haible  <bruno@clisp.org>
4947         * iconvdata/gconv-modules (ISO-8859-7): Add alias ISO_8859-7:2003.
4949 2004-07-29  David S. Miller  <davem@redhat.com>
4951         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S (memcpy): Optimize
4952         better for smaller than 256 byte copies.  Also, use only one
4953         unrolled loop instead of two for the large copy case.
4955 2004-07-30  Richard Henderson  <rth@redhat.com>
4957         * sysdeps/alpha/divq.S: Save t3 before it gets clobbered.
4958         * sysdeps/alpha/remq.S: Likewise.
4959         * sysdeps/alpha/div.S, sysdeps/alpha/ldiv.S: Rewrite with the
4960         new division algorithms in divl.S and divq.S respectively.
4962 2004-07-28  GOTO Masanori  <gotom@debian.or.jp>
4964         * timezone/asia: Update from tzdata2004b.
4965         * timezone/backward: Likewise.
4966         * timezone/europe: Likewise.
4967         * timezone/iso3166.tab: Likewise.
4968         * timezone/leapseconds: Likewise.
4969         * timezone/northamerica: Likewise.
4970         * timezone/southamerica: Likewise.
4971         * timezone/zone.tab: Likewise.
4973         * timezone/private.h: Update from tzcode2004b.
4974         * timezone/zic.c: Likewise.
4976 2004-07-27  Ulrich Drepper  <drepper@redhat.com>
4978         * nscd/grpcache.c (cache_addgr): If necessary, add entry also
4979         under the name the user provided.
4980         * nscd/pwdcache.c (cache_addpw): Likewise.
4982 2004-07-26  Roland McGrath  <roland@redhat.com>
4984         * sysdeps/posix/waitid.c [WEXITED]: Clear WEXITED bit in OPTIONS for
4985         call to __waitpid.
4987 2004-07-26  Ulrich Drepper  <drepper@redhat.com>
4989         * nscd/hstcache.c (cache_addhst): Fix two scenarios which lead to
4990         memory leaks.
4992         * sysdeps/unix/sysv/linux/ifreq.c (__ifreq): Assign pointer for
4993         new buffer at the right time.
4994         Reported by Jakub Bogusz <qboosh@pld-linux.org>.
4996 2004-07-25  Ulrich Drepper  <drepper@redhat.com>
4998         * inet/Versions [libc, GLIBC_2.3.4]: Add getipv4sourcefilter,
4999         getsourcefilter, setipv4sourcefilter, and setsourcefilter.
5000         * inet/Makefile (routines): Likewise.
5001         * inet/netinet/in.h: Add prototypes for getipv4sourcefilter,
5002         getsourcefilter, setipv4sourcefilter, and setsourcefilter.
5003         * sysdeps/generic/getipv4sourcefilter.c: New file.
5004         * sysdeps/generic/setipv4sourcefilter.c: New file.
5005         * sysdeps/generic/getsourcefilter.c: New file.
5006         * sysdeps/generic/setsourcefilter.c: New file.
5008 2004-07-17  Steven Munroe  <sjmunroe@us.ibm.com>
5010         * sysdeps/powerpc/powerpc64/memcpy.S: Improve instruction scheduling
5011         for POWER4 machines.
5013 2004-07-21  Jakub Jelinek  <jakub@redhat.com>
5015         [BZ #274]
5016         * stdlib/strtod_l.c (INTERNAL (__STRTOF)): Fix used >=
5017         BITS_PER_MP_LIMB shifting up.
5018         * stdlib/tst-strtod.c (main): Add new tests.
5020 2004-07-23  Jakub Jelinek  <jakub@redhat.com>
5022         [BZ #282]
5023         * libio/iopopen.c (_IO_new_popen): Use _IO_init instead of
5024         _IO_no_init.  Remove wd from struct locked_FILE.
5025         (_IO_wproc_jumps): Remove.
5026         Reported by Andrew Josey <a.josey@opengroup.org>.
5027         * stdio-common/Makefile (tests): Add tst-popen.
5028         * stdio-common/tst-popen.c: New test.
5030 2004-07-23  Ulrich Drepper  <drepper@redhat.com>
5032         * posix/bits/posix1_lim.h: Fix values for _POSIX_CHILD_MAX and
5033         _POSIX_OPEN_MAX.  Add _POSIX_HOST_NAME_MAX, _POSIX_SYMLINK_MAX,
5034         _POSIX_SYMLOOP_MAX, and _POSIX_RE_DUP_MAX.
5035         Reported by Andrew Josey.
5037         * include/features.h: Document _POSIX_C_SOURCE == 200112L.
5039         * grp/grp.h: Define gid_t if __USE_XOPEN2K is defined.
5040         * pwd/pwd.h: Define uid_t and gid_t if __USE_XOPEN2K is defined.
5041         * io/sys/stat.h: Define dev_t, gid_t, ino_t, mode_t, nlink_t,
5042         off_t, time_t, and uid_t if __USE_XOPEN2K is defined.
5043         * signal/signal.h: Define pid_t if __USE_XOPEN2K is defined.
5044         * posix/unistd.h: Define gid_t, off_t, pid_t, uid_t, and
5045         useconds_t if __USE_XOPEN2K is defined.
5046         * io/utime.h: Define time_t if __USE_XOPEN2K is defined.
5047         * libio/stdio.h: Declare fseeko and ftello if __USE_XOPEN2K is defined.
5049 2004-07-19  Thorsten Kukuk  <kukuk@suse.de>
5051         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
5052         allocate memory for large temporary variables with alloca.
5054 2004-07-22  Ulrich Drepper  <drepper@redhat.com>
5056         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Compatibility
5057         code must have version GLIBC_2.0.  Patch by Dwayne McConnell.
5059         * nscd/nscd_getgr_r.c (nscd_getgr_r): Avoid read call with NULL
5060         pointer and zero length.
5062 2004-07-21  Ulrich Drepper  <drepper@redhat.com>
5064         * nscd/cache.c (prune_cache): Print correct list when debugging.
5066 2004-07-21  Jakub Jelinek  <jakub@redhat.com>
5068         * resolv/res_libc.c (res_init): If RES_INIT is set and
5069         _res.nscount > 0, call __res_nclose and free nsaddrs.
5070         * resolv/Makefile: Add rules to build and run tst-leaks2.
5071         * resolv/tst-leaks2.c: New test.
5073 2004-07-21  Ulrich Drepper  <drepper@redhat.com>
5075         * intl/libintl.h: Don't define macros for C++.
5076         Patch by Goto Masanori.
5078 2004-07-22  GOTO Masanori  <gotom@debian.or.jp>
5080         [BZ #276]
5081         * include/arpa/inet.h: Change inet_aton type from in_addr_t to int.
5082         * inet/arpa/inet.h: Likewise.
5083         * resolv/inet_addr.c: Likewise.
5085 2004-07-21  Alexandre Oliva  <aoliva@redhat.com>
5087         * sysdeps/unix/sysv/linux/mips/mips64/syscalls.list: Add semtimedop.
5089 2004-07-20  Roland McGrath  <roland@redhat.com>
5091         * configure.in (add_ons): Substitute this.  Move $add_ons handling
5092         after AC_CANONICAL_HOST and default setting of $machine et al.
5093         Don't set $subdirs from $add_ons.
5094         Instead, source add-on/configure fragments early on.
5095         (base_machine): If it's already set, don't set it based on $machine.
5096         (libc_config_ok): New variable, set to no.  If an add-on fragment sets
5097         it to yes, skip the  tuple sanity check as if --enable-hacker-mode.
5098         (sysnames): Try appending add-on names after machine as well.
5099         * config.make.in (add-ons): Set from @add_ons@ instead of @subdirs@.
5100         * Makeconfig ($(common-objpfx)config.status): Also depend on configure
5101         files in $(add_ons) dirs.
5103         * sysdeps/unix/sysv/linux/bits/in.h (struct ip_mreq): Remove
5104         definition, now in netinet/in.h proper.
5106 2004-07-20  Alexandre Oliva  <aoliva@redhat.com>
5108         * sysdeps/unix/sysv/linux/mips/Makefile ($(objpfx)syscall-%.h):
5109         Sort by syscalls.  Make sure we get headers such as sgidefs.h from
5110         the build tree before just-installed ones.
5112         * sysdeps/mips/atomicity.h: Use standard names for ABI macros,
5113         include sgidefs.h where appropriate.
5114         * sysdeps/mips/dl-machine.h: Likewise.
5115         * sysdeps/mips/machine-gmon.h: Likewise.
5116         * sysdeps/mips/bits/setjmp.h: Likewise.
5117         * sysdeps/mips/fpu/bits/mathdef.h: Likewise.
5118         * sysdeps/mips/mips64/__longjmp.c: Likewise.
5119         * sysdeps/mips/mips64/setjmp_aux.c: Likewise.
5120         * sysdeps/unix/sysv/linux/mips/kernel_stat.h: Likewise.
5121         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
5122         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
5123         * sysdeps/unix/sysv/linux/mips/ptrace.c: Likewise.
5124         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
5125         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
5126         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
5127         * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h: Likewise.
5128         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
5129         * sysdeps/unix/sysv/linux/mips/bits/sigcontext.h: Likewise.
5130         * sysdeps/unix/sysv/linux/mips/bits/stat.h: Likewise.
5131         * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
5132         * sysdeps/unix/sysv/linux/mips/sys/ptrace.h: Likewise.
5133         * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
5134         * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Likewise.
5135         * sysdeps/unix/sysv/linux/mips/sys/user.h: Likewise.
5136         * sysdeps/unix/sysv/linux/mips/Makefile ($(objpfx)syscall-%.h):
5137         Likewise.
5138         * sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h):
5139         Likewise.
5141         * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Update to use
5142         _dl_lookup_symbol_x.
5143         (elf_machine_runtime_link_map): Don't INTUSE _dl_signal_error.
5145 2004-07-20  Ulrich Drepper  <drepper@redhat.com>
5147         * inet/netinet/in.h: Define struct ip_mreq and struct
5148         ip_mreq_source.
5149         Define struct group_req and struct group_source_req.
5150         * sysdeps/unix/sysv/linux/bits/in.h: Define IP_UNBLOCK_SOURCE,
5151         IP_BLOCK_SOURCE, IP_ADD_SOURCE_MEMBERSHIP,
5152         IP_DROP_SOURCE_MEMBERSHIP, IP_MSFILTER, MCAST_JOIN_GROUP,
5153         MCAST_BLOCK_SOURCE, MCAST_UNBLOCK_SOURCE, MCAST_LEAVE_GROUP,
5154         MCAST_JOIN_SOURCE_GROUP, MCAST_LEAVE_SOURCE_GROUP, and
5155         MCAST_MSFILTER.
5156         Define MCAST_INCLUDE and MCAST_EXCLUDE.
5158         * iconvdata/gconv-modules: Add alias for IBM874 [BZ #244].
5160 2004-07-19  Jakub Jelinek  <jakub@redhat.com>
5162         [BZ #258]
5163         * math/libm-test.inc (max_value, min_value): New variables.
5164         (initialize): Initialize them.
5165         (pow_test): Add a couple of new tests.
5166         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Don't generate invalid
5167         exception if |y| >= 1U<<31.
5168         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Don't generate invalid
5169         exception if |y| >= 1L<<63.
5170         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
5171         If y*log2(x) overflows to +-inf, return still +inf/+0 instead of NaN.
5172         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
5174 2004-07-18  Ulrich Drepper  <drepper@redhat.com>
5176         * nscd/pwdcache.c (cache_addpw): Optimize case of unsuccessful
5177         lookup a bit.
5178         * nscd/grpcache.c (cache_addgr): Likewise.
5179         * nscd/hstcache.c (cache_addhst): Likewise.
5181 2004-07-10  GOTO Masanori  <gotom@debian.or.jp>
5183         * sysdeps/s390/s390-32/elf/start.S: Remove symbol _fp_hw.
5184         * sysdeps/s390/s390-64/elf/start.S: Likewise.
5186 2004-04-16  Andreas Schwab  <schwab@suse.de>
5188         * sysdeps/ia64/bits/atomic.h: Cast first argument of
5189         __sync_bool_compare_and_swap_si correct to void*.
5191 2004-07-17  Ulrich Drepper  <drepper@redhat.com>
5193         * iconv/iconv_prog.c (print_known_names): Make machine-readable
5194         output even less cluttered.
5196 2004-07-16  Steven Munroe  <sjmunroe@us.ibm.com>
5198         [BZ #269]
5199         * setjmp/Makefile (tests): Add bug269-setjmp.
5200         * setjmp/bug269-setjmp.c: New file.
5201         * sysdeps/powerpc/powerpc64/__longjmp-common.S [SHARED && !IS_IN_rtld]:
5202         Store R2 from jmpbuf in callers TOC save area.
5203         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S [SHARED && !IS_IN_rtld]:
5204         Store R2 in TOC save area.
5205         * sysdeps/powerpc/powerpc64/setjmp-common.S [SHARED && !IS_IN_rtld]:
5206         Copy TOC save area from previous frame as R2 (TOC) in jmpbuf.
5208 2004-07-16  Jakub Jelinek  <jakub@redhat.com>
5210         * locale/newlocale.c: Include bits/libc-lock.h.
5211         (__libc_setlocale_lock): Extern decl.
5212         (__newlocale): Use it.
5213         Reported by Ulrich Weigand <Ulrich.Weigand@de.ibm.com>.
5215 2004-07-15  Jakub Jelinek  <jakub@redhat.com>
5217         * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Remove
5218         static inline __attribute ((always_inline)).  Don't define if
5219         NO_CANCELLATION.
5220         (__libc_fcntl): Use INLINE_SYSCALL directly instead of
5221         __fcntl_nocancel.
5222         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c (__fcntl_nocancel):
5223         Remove static inline __attribute ((always_inline)).  Don't define
5224         if NO_CANCELLATION.
5225         (__libc_fcntl): Use INLINE_SYSCALL directly instead of
5226         __fcntl_nocancel.
5227         * sysdeps/unix/sysv/linux/i386/fcntl.c (__fcntl_nocancel): Define to
5228         __libc_fcntl if NO_CANCELLATION and __ASSUME_FCNTL64 == 0.
5229         Don't define at all if NO_CANCELLATION and __ASSUME_FCNTL64 > 0.
5230         (__libc_fcntl): Don't define if __fcntl_nocancel is a macro.
5232         [BZ #262]
5233         * sysdeps/i386/elf/start.S (_start): Use @GOT instead of @GOTOFF
5234         for main.
5235         * elf/Makefile: Add rules to build and run tst-pie1.
5236         * elf/tst-pie1.c: New test.
5237         * elf/tst-piemod1.c: New file.
5239 2004-07-14  Jakub Jelinek  <jakub@redhat.com>
5241         [BZ #266]
5242         * manual/string.texi (l64a): Note that the static buffer is 7 bytes
5243         long.  Rewrite example code so that it takes into account l64a output
5244         shorter than 6 characters.
5245         Reported by Julian Graham <julian.graham@aya.yale.edu>.
5247 2004-07-14  Kaz  Kojima  <kkojima@rr.iij4u.or.jp>
5249         * sysdeps/sh/dl-machine.h: Don't reset _dl_starting_up here.
5250         (elf_machine_rela_relative): Remove unused valiable.
5252 2004-07-12  Paul Eggert  <eggert@cs.ucla.edu>
5254         [BZ #263]
5255         * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Don't store
5256         outside the buffer if the read returns 0.  __strtod_l can't set
5257         endp to NULL, so remove a test for that case.
5259 2004-07-12  Roland McGrath  <roland@redhat.com>
5261         * manual/signal.texi (Interrupted Primitives): Make clear that
5262         TEMP_FAILURE_RETRY evaluates its expression as long int and compares
5263         it to -1 to define "failure".
5265 2004-07-10  Ulrich Drepper  <drepper@redhat.com>
5267         * elf/ldconfig.c: Define PROCINFO_CLASS as static before including
5268         ldsodefs.h.
5269         * sysdeps/generic/ldsodefs.h: Only define PROCINFO_CLASS if it is not
5270         already defined.
5271         * sysdeps/i386/dl-procinfo.c: Define PROCINFO_CALLS only if not
5272         already defined.
5274         * elf/rtld.c (print_statistics): Mark with noinline attribute.
5275         * sysdeps/i386/dl-machine.h (elf_machine_rel): Mark with always_inline
5276         attribute.
5277         (elf_machine_rel_relative): Likewise.
5279         * include/string.h: Add libc_hidden_proto for __strtok_r and
5280         __strsep_g.
5281         * sysdeps/generic/strsep.c: Add libc_hidden_def.
5282         * sysdeps/generic/strtok_r.c: Likewise.
5283         * sysdeps/i386/strtok_r.S: Add alias for internal symbol.
5284         * sysdeps/i386/i686/strtok_r.S: Likewise.
5285         * sysdeps/x86_64/strtok_r.S: Likewise.
5287 2004-07-09  Alexandre Oliva  <aoliva@redhat.com>
5289         * inet/getnetgrent_r.c (internal_setnetgrent): Make it hidden
5290         instead of internal-linkage, such that we can alias to it.
5291         (internal_endnetgrent, internal_getnetgrent_r): Likewise.
5293 2004-07-09  Ulrich Drepper  <drepper@redhat.com>
5295         * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Move attribute
5296         to the front for gcc 3.5+.
5297         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
5298         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Likewise.
5299         * include/fcntl.h: Don't declare __fcntl_nocancel here if
5300         NO_CANCELLATION is defined.
5302 2004-07-07  Jakub Jelinek  <jakub@redhat.com>
5304         * elf/dl-fini.c (_dl_fini): Add nloaded variable, load
5305         GL(dl_nloaded) into it while still in critical section.
5307 2004-07-06  Thorsten Kukuk  <kukuk@suse.de>
5309         * nss/getent.c (print_group, print_passwd): Use %lu format for
5310         `unsigned long int' values.
5312         * sysdeps/unix/sysv/linux/i386/fcntl.c (__fcntl_nocancel): Fix syntax
5313         error typos in goto statements.
5315 2004-07-07  Roland McGrath  <roland@frob.com>
5317         * Makefile (dist-separate): New variable.
5318         (glibc-%.tar rule): Make separate tar files for add-ons listed there.
5319         Depend on their configure files.
5320         (dist-do-separate-dirs): New canned sequence to do that.
5321         (dist-separate-libidn, dist-separate-linuxthreads): New variables.
5322         (dist): Depend on add-on tar files based on $(dist-separate).
5323         (dist-version): New variable, default to $(version).
5324         (tag-for-dist, dist): Use that in place of $(version) in deps.
5326 2004-07-07  Ulrich Drepper  <drepper@redhat.com>
5328         * elf/dl-fini.c (_dl_fini): Move the unlock of the ld.so lock
5329         before the loop running the destructors.
5331 2004-05-18  Andreas Schwab  <schwab@suse.de>
5333         * elf/dl-load.c (_dl_map_object_from_fd): Use the end address of
5334         the first segment for mprotect, not l_text_end.
5336 2004-07-05  Ulrich Drepper  <drepper@redhat.com>
5338         * elf/dl-profile.c (_dl_start_profile): Compact error handling.
5339         Remove hashfraction variable.  Make kcount and kcountsize local
5340         variables.
5342         * elf/dl-init.c: Don't define and use _dl_starting_up if
5343         HAVE_INLINED_SYSCALLS is defined and the variable is not used.
5344         * elf/dl-support.c: Likewise.
5345         * elf/rtld.c: Likewise.
5346         * elf/dl-misc.c (_dl_debug_vdprintf): Use writev syscall directly
5347         if HAVE_INLINED_SYSCALLS is defined.
5348         * sysdeps/powerpc/powerpc64/dl-machine.h: Don't reset _dl_starting_up
5349         here.
5350         * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
5351         * sysdeps/unix/sysv/linux/configure.in: Define HAVE_INLINED_SYSCALLS.
5352         * config.h.in: Add entry for HAVE_INLINED_SYSCALLS.
5354         * sysdeps/posix/profil.c: If compiled for ld.so, omit code which
5355         is needed to stop profiling.
5356         * elf/dl-open.c (dl_open_worker): If a newly opened object is to be
5357         profile make sure it cannot be unloaded.
5359         * sysdeps/unix/sysv/linux/dl-origin.c: Inline readlink syscall.
5361         * sysdeps/unix/sysv/linux/fcntl.c: If compiled without cancellation
5362         support, make sure the helper function is inlined.
5363         * sysdeps/unix/sysv/linux/pread.c: Likewise.
5364         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
5365         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
5366         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Likewise.
5368 2004-07-05  Jakub Jelinek  <jakub@redhat.com>
5370         * include/string.h (ffs): Add libc_hidden_builtin_proto.
5371         * sysdeps/rs6000/ffs.c (ffs): Add libc_hidden_builtin_def.
5372         * sysdeps/alpha/alphaev67/ffs.S (ffs): Likewise.
5373         * sysdeps/alpha/ffs.S (ffs): Likewise.
5374         * sysdeps/s390/ffs.c (ffs): Likewise.
5375         * sysdeps/powerpc/ffs.c (ffs): Likewise.
5376         * sysdeps/i386/ffs.c (ffs): Likewise.
5377         * sysdeps/i386/i686/ffs.c (ffs): Likewise.
5378         * sysdeps/m68k/ffs.c (ffs): Likewise.
5379         * sysdeps/generic/ffs.c (ffs): Likewise.
5380         * sysdeps/m88k/ffs.c (ffs): Likewise.
5381         * sysdeps/am29k/ffs.c (ffs): Likewise.
5382         * sysdeps/i960/ffs.c (ffs): Likewise.
5383         * sysdeps/x86_64/ffs.c (ffs): Likewise.
5385         * Makerules (check-abi): Use diff -p -U 0 instead of diff -pu0.
5387         * sysdeps/powerpc/novmx-longjmp.c (__libc_longjmp,
5388         __libc_siglongjmp): Remove symbol_version.
5389         * sysdeps/powerpc/longjmp.c (__libc_longjmp, __libc_siglongjmp):
5390         Export @@GLIBC_PRIVATE, not @@GLIBC_2.3.4.
5391         * sysdeps/powerpc/sigjmp.c (__sigjmp_save): Use strong_alias
5392         unconditionally.
5393         * sysdeps/powerpc/novmx-sigjmp.c (__sigjmp_save): Remove.
5394         * sysdeps/powerpc/powerpc32/__longjmp.S (__longjmp): Use
5395         strong_alias instead of default_symbol_version, remove
5396         symbol_version.
5397         * sysdeps/powerpc/powerpc64/__longjmp.S (__longjmp): Likewise.
5398         * sysdeps/powerpc/powerpc32/bsd-setjmp.S (__novmx__setjmp): Change
5399         into strong_alias to __novmxsetjmp.
5400         (__vmx__setjmp): Similarly with __vmxsetjmp.
5401         (__setjmp): Make it strong_alias to __vmx__setjmp, remove
5402         default_symbol_version and symbol_version.
5403         * sysdeps/powerpc/powerpc64/bsd-setjmp.S (__novmx__setjmp): Change
5404         into strong_alias to __novmxsetjmp.
5405         (__vmx__setjmp): Similarly with __vmxsetjmp.
5406         (__setjmp): Make it strong_alias to __vmx__setjmp, remove
5407         default_symbol_version and symbol_version.
5409         * nscd/nscd_getgr_r.c: Include stdio-common/_itoa.h.
5411 2004-07-05  Ulrich Drepper  <drepper@redhat.com>
5413         * elf/rtld.c (dl_main): Mark dyn_temp with attribute_relro.
5415 2004-07-04  Matthew Reppert  <arashi@kai.vm.bytemark.co.uk>
5417         * sysdeps/unix/sysv/linux/i386/glob64.c (glob64): Use libc_hidden_ver
5418         instead of libc_hidden_def.
5420 2004-07-01  Roland McGrath  <roland@redhat.com>
5422         * aclocal.m4: Add provide for AC_CONFIG_AUX_DIR_DEFAULT.
5424         * Makeconfig ($(common-objpfx)shlib-versions.v.i): Move top-level
5425         $(..)shlib-versions file to last in deps list.  This lets add-ons give
5426         more-specific matches that override defaults in the top-level file.
5428         * sysdeps/unix/sysv/linux/configure.in: If arch_minimum_kernel was
5429         already set, don't set it or libc_cv_gcc_unwind_find_fde.
5430         * sysdeps/unix/sysv/linux/configure: Regenerated.
5432 2004-07-01  Martin Schwidefsky  <schwidefsky@de.ibm.com>
5434         * sysdeps/s390/fpu/bits/mathinline.h [__LIBC_INTERNAL_MATH_INLINES]
5435         (__ieee754_sqrt): Define as __MATH_INLINE using sqdbr instruction.
5436         (__ieee754_sqrtf): Define as __MATH_INLINE using sqebr instruction.
5437         * sysdeps/s390/fpu/e_sqrt.c: New file.
5438         * sysdeps/s390/fpu/e_sqrtf.c: New file.
5439         * sysdeps/s390/Implies: New file.
5440         * sysdeps/s390/s390-32/Implies: Remove ieee754, move
5441         ieee754/dbl-64 and ieee754/flt-32 to s390/Implies.
5442         * sysdeps/s390/s390-64/Implies: Likewise.
5444 2004-06-30  Jakub Jelinek  <jakub@redhat.com>
5446         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Include tls.h.
5447         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
5449         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S (thread_start):
5450         DO_CALL (exit, 1) instead of branching to _exit.
5451         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S (thread_start):
5452         Likewise.
5454         * sysdeps/s390/fpu/bits/mathinline.h: New file.
5456         * include/glob.h (glob64): Add libc_hidden_proto.
5457         * sysdeps/generic/glob64.c (glob64): Add libc_hidden_def.
5458         * sysdeps/gnu/glob64.c (glob64): Likewise.
5459         * sysdeps/unix/sysv/linux/i386/glob64.c (glob64): Likewise.
5461 2004-06-11  Jakub Jelinek  <jakub@redhat.com>
5463         * sysdeps/i386/fpu/libm-test-ulps: Update for GCC 3.4.
5464         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
5466 2004-06-11  Dwayne Grant McConnell  <dgm69@us.ibm.com>
5468         * sysdeps/powerpc/fpu/s_lround.c: Removed.
5469         * sysdeps/powerpc/fpu/s_lroundf.c: Removed.
5470         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: New file.
5471         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: New file.
5472         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: New file.
5473         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: New file.
5474         * sysdeps/powerpc/powerpc32/fpu/s_lrint.c: Removed.
5475         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: New file.
5476         * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: New file.
5477         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: New file.
5478         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: New file.
5479         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: New file.
5480         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: New file.
5481         * sysdeps/powerpc/powerpc32/fpu/s_round.S: New file.
5482         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: New file.
5483         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: New file.
5485 2004-06-30  Ulrich Drepper  <drepper@redhat.com>
5487         * include/net/if.h: Handle if_nameindex and if_freenameindex with
5488         libc_proto_hidden.
5489         * sysdeps/unix/sysv/linux/netlinkaccess.h: New file.
5490         * sysdeps/unix/sysv/linux/ifaddrs.c: Export netlink handling functions.
5491         * sysdeps/unix/sysv/linux/if_index.c (if_nameindex): Implement using
5492         netlink if possible.  Fall back on ioctl method if necessary.
5493         * sysdeps/unix/sysv/linux/Dist: Add netlinkaccess.h.
5495         * include/unistd.h: Declare __truncate.
5496         * sysdeps/generic/truncate.c: Also define __truncate.
5497         * sysdeps/mach/hurd/truncate.c: Likewise.
5498         * sysdeps/unix/common/syscalls.list: Likewise.
5499         * sysdeps/unix/sysv/linux/truncate64.c: Use __truncate, not truncate.
5501 2004-06-29  Ulrich Drepper  <drepper@redhat.com>
5503         * stdio-common/printf-parsemb.c (__parse_one_specmb): Initialize
5504         info.extra.  Patch by Marcus Meissner.
5506 2004-06-29  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
5508         * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
5509         Fix branch offset for a PLT entry.
5511 2004-06-20  Jim Meyering  <jim@meyering.net>
5513         * malloc/obstack.h (obstack_base): Cast to `void *', to align with
5514         documentation.
5516 2004-06-28  Ulrich Drepper  <drepper@redhat.com>
5518         * inet/bug-if1.c (do_test): Simply use 0 as invalid index.
5519         Workaround for [BZ #232].
5521         * sysdeps/unix/sysv/linux/if_index.c (if_nameindex): Use extend_alloca.
5523 2004-06-28  GOTO Masanori  <gotom@debian.or.jp>
5525         * iconv/gconv_simple.c: Use get16/put16 for user given buffer
5526         in ucs2/ucs2reverse when unaligned memory access is attempted.
5527         * iconv/tst-iconv5.c: New file.
5528         * iconv/Makefile (tests): Add tst-iconv5.
5530 2004-06-28  Jakub Jelinek  <jakub@redhat.com>
5532         * inet/bug-if1.c: Include <string.h>.
5534 2004-06-19  Roland McGrath  <roland@redhat.com>
5536         * sysdeps/posix/waitid.c (do_waitid) [DO_WAITID]: Define function
5537         under this macro name instead.
5538         [NO_DO_WAITID]: Don't define it at all.
5539         (do_waitid) [WNOWAIT, WEXITED]: If these POSIX.1 waitid flag bits are
5540         defined, then return ENOTSUP for combinations of selection bits other
5541         than WEXITED and WEXITED|WSTOPPED, which this version cannot support.
5543         * posix/tst-waitid.c: New file.
5544         * posix/Makefile (tests): Add it.
5546 2004-06-28  Jakub Jelinek  <jakub@redhat.com>
5548         * sysdeps/unix/alpha/sysdep.h (inline_syscall6): Fix a typo.
5550         [BZ #231]
5551         * sysdeps/unix/alpha/sysdep.S (__syscall_error): Avoid !samegp
5552         relocation in librt.so.
5554         [BZ #230]
5555         * sysdeps/alpha/dl-machine.h (_dl_start_user): Use ldah/ldl to load
5556         _dl_skip_args.  Patch by Jakub Bogusz <qboosh@pld-linux.org>.
5558 2004-06-27  Ulrich Drepper  <drepper@redhat.com>
5560         * elf/ldconfig.c (add_dir): Take chroot into account.
5561         Based on changes by HJ Lu and Hideki Iwamoto.
5563         * nscd/connections.c (invalidate_cache): If the host cache has to
5564         be invalidated, re-read resolv.conf.
5566         * resolv/resolv.h (RES_NOIP6DOTINT): Define.
5567         * resolv/res_init.c (res_setoptions): Handle no-ip6-dotint option.
5568         * resolv/gethnamaddr.c (gethostbyaddr): Don't lookup with .ip6.int
5569         if RES_NOIP6DOTINT flag is set.
5570         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
5572 2004-06-25  Jakub Jelinek  <jakub@redhat.com>
5574         * sysdeps/unix/sysv/linux/powerpc/fcntl.c: Move to...
5575         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fcntl.c: ... here.
5576         * sysdeps/unix/sysv/linux/powerpc/lockf64.c: Move to...
5577         * sysdeps/unix/sysv/linux/powerpc/powerpc32/lockf64.c: ... here.
5578         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: New file.
5580         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (F_GETLK, F_SETLK,
5581         F_SETLKW): Fix values for -m32 -D_FILE_OFFSET_BITS=64.
5583 2004-06-21  Jakub Jelinek  <jakub@redhat.com>
5585         [BZ #231]
5586         * sysdeps/unix/alpha/Makefile: New file.
5587         * sysdeps/unix/alpha/rt-sysdep.S: New file.
5588         Reported by Jakub Bogusz <qboosh@pld-linux.org>.
5590 2004-06-18  Ulrich Drepper  <drepper@redhat.com>
5592         * sysdeps/posix/getaddrinfo.c (gaih_inet): For AI_CANONNAME,
5593         determine the canonical name only for the first returned entry.
5595         * inet/bug-if1.c: New file.
5596         * inet/Makefile (tests): Add bug-if1.
5598 2004-06-18  Roland McGrath  <roland@frob.com>
5600         * Makerules (compile-mkdep-flags): Add -MT $@.
5602         * Makefile (dist, tag-for-dist): New targets.
5603         (files-for-dist, tag-of-stem): New variables.
5604         (glibc-%.tar glibc-linuxthreads-%.tar): New pattern rule.
5605         Make tar files using cvs export.
5606         (%.bz2, %.gz, tag-%): New pattern rules.
5607         (distribute): Variable removed.
5608         (+subdir_targets): Remove distinfo targets.
5609         (echo_subdirs, echo-distinfo, parent_echo-distinfo): Targets removed.
5610         (rpm/%): Pattern rule removed.
5611         * rpm/Makefile, rpm/rpmrc, rpm/template: Ancient cruft files removed.
5612         * Rules (subdir_echo-headers, subdir_echo-distinfo, subdir_dist):
5613         Targets removed.
5614         * Makerules (dist, subdir_distinfo): Targets removed.
5615         ($(objpfx)distinfo): Depend on $(distribute).
5616         * Make-dist: File removed.
5618         * NEWS: Fix a typo.  Update bug-reporting instructions.
5620 2004-06-17  Thorsten Kukuk  <kukuk@suse.de>
5622         * sysdeps/unix/sysv/linux/sched_setaffinity.c
5623         (__sched_setaffinity_new): Set errno to EINVAL and return -1 if
5624         cpuset is wrongly set.
5626 2004-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
5628         * sysdeps/powerpc/powerpc64/memcpy.S: Improve instruction scheduling
5629         for POWER4 machines.
5631 2004-06-14  Jakub Jelinek  <jakub@redhat.com>
5633         [BZ #218]
5634         * sunrpc/pmap_prot2.c (xdr_pmaplist): When freeing, remember pml_next
5635         in a local variable, point rp to that local variable afterwards.
5637 2004-06-11  Jakub Jelinek  <jakub@redhat.com>
5639         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Handle special
5640         cases properly.
5642 2004-06-17  Ulrich Drepper  <drepper@redhat.com>
5644         * sysdeps/unix/sysv/linux/if_index.c (if_indextoname): Correct
5645         error value for unknown interface. [BZ #198]
5647 2004-06-13  Jakub Jelinek  <jakub@redhat.com>
5649         * sysdeps/i386/bits/string.h (memcpy): Add () around arguments.
5650         (memchr, __memrchr, strlen, strcmp, strncmp, __strchr_g, __strchr_c,
5651         __strchrnul_g, __strchrnul_c, strspn, strcspn, strpbrk): Add memory
5652         the asm uses as its input, either of size __n where __n is known or
5653         0xfffffff.
5654         (strstr): Add "memory" clobber.
5656 2004-06-14  Jakub Jelinek  <jakub@redhat.com>
5658         [BZ #219]
5659         * nss/nsswitch.c (free_mem): Don't try to close a library handle
5660         if the handle is invalid.  Patch by David Kimdon <kimdon@esrf.fr>.
5662 2004-06-11  Dmitry V. Levin  <ldv@altlinux.org>
5664         [BZ #217]
5665         * debug/xtrace.sh: Fix typo in error diagnostics.
5667 2004-06-14  Andreas Schwab  <schwab@suse.de>
5669         * stdio-common/psignal.c (psignal): Don't use BUF when asprintf
5670         failed.
5672 2004-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
5674         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix pasto
5675         that clobbers r19.  Fix pasto that overflowed sigcontext.v_reserve.
5676         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Fix pasto
5677         that clobbers r19.
5678         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Fix pasto
5679         that clobbers r19.  Fix pasto that overflowed sigcontext.v_reserve.
5680         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S:
5681         Fix setting of sigcontext.v_regs.  Fix pasto that clobbers r19.
5682         Fix pasto that overflowed sigcontext.v_reserve.
5683         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S:
5684         Fix pasto that clobbers r19.
5685         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Fix setting
5686         of sigcontext.v_regs.  Fix pasto that clobbers r19.  Fix pasto that
5687         overflowed sigcontext.v_reserve.
5689 2004-05-04  H.J. Lu  <hongjiu.lu@intel.com>
5691         [BZ #150]
5692         * sysdeps/generic/strtol_l.c (DEF): Use ".gnu.linkonce.r."
5693         instead of ".gnu.linkonce.ro." as the prefix for linkonce
5694         read-only section name.
5696 2004-06-14  Richard Henderson  <rth@redhat.com>
5698         * sysdeps/alpha/div_libc.h (_ITOFS): Use "sp" not "$sp".
5699         (_ITOFT, _FTOIT, _ITOFT2): Likewise.
5701 2004-06-08  Jakub Jelinek  <jakub@redhat.com>
5703         * sysdeps/s390/s390-32/backtrace.c (init): Guard with #ifdef SHARED.
5704         (unwind_backtrace, unwind_getip): Define #ifndef SHARED.
5705         (__backtrace): Don't call init #ifndef SHARED.
5706         * sysdeps/s390/s390-64/backtrace.c (init): Guard with #ifdef SHARED.
5707         (unwind_backtrace, unwind_getip): Define #ifndef SHARED.
5708         (__backtrace): Don't call init #ifndef SHARED.
5709         * sysdeps/ia64/backtrace.c (init): Guard with #ifdef SHARED.
5710         (unwind_backtrace, unwind_getip): Define #ifndef SHARED.
5711         (__backtrace): Don't call init #ifndef SHARED.
5713 2004-06-11  Roland McGrath  <roland@redhat.com>
5715         * sysdeps/arm/strlen.S [__ARMEB__]: Compute correctly for big-endian.
5716         From Krzysztof Halasa <khc@pm.waw.pl>.
5718 2004-06-10  Jakub Jelinek  <jakub@redhat.com>
5720         * elf/tls-macros.h [__s390x__] (TLS_LD, TLS_GD): Clobber also r14.
5722 2004-06-08  Jakub Jelinek  <jakub@redhat.com>
5724         [BZ #199]
5725         * crypt/md5-crypt.c (__md5_crypt): Only update buflen if realloc
5726         succeeds.  Reported by Miles Ohlrich <miles@cray.com>.
5728         * elf/chroot_canon.c (chroot_canon): Avoid segfault if first malloc
5729         fails.  Avoid memory leak if realloc fails.
5731 2004-06-09  Jakub Jelinek  <jakub@redhat.com>
5733         * sysdeps/generic/setenv.c (setenv): Return -1/EINVAL if name is
5734         NULL, "" or contains '=' character in it.  Reported by
5735         Michael T Kerrisk <mtk-lists@gmx.net>.
5736         * stdlib/tst-environ.c: Include errno.h.
5737         (main): Add tests for these arguments to setenv/unsetenv.
5739 2004-06-07  Roland McGrath  <roland@frob.com>
5741         * NEWS: Update bug reporting instructions.  Fix some typos.
5743 2004-06-05  Ulrich Drepper  <drepper@redhat.com>
5745         * stdio-common/_itoa.h: Don't expand _itoa inline for libc.
5746         * stdio-common/_itoa.c: Add _itoa implementation.
5748         * nscd/nscd_gethst_r.c (__nscd_open_socket): Change implementation
5749         to also send request.  Add parameter to allow this.
5750         Change callers.
5751         * nscd/nscd_getgr_r.c: Change __nscd_open_socket caller.
5752         * nscd/nscd_getpw_r.c: Likewise.
5753         * nscd/nscd-client.h: Change __nscd_open_socket prototype.
5755 2004-06-05  Andreas Jaeger  <aj@suse.de>
5757         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
5758         Handle more than 6 args correctly.  Based on a patch by Masahide
5759         Washizawa <washi@jp.ibm.com>.
5761 2004-06-04  Ulrich Drepper  <drepper@redhat.com>
5763         * nscd/nscd_gethst_r.c (nscd_gethst_r): Use __nss_not_use_nscd_hosts
5764         in all places, not __nss_not_use_nscd_group.
5765         Reported by Philippe Gregoire.
5767 2004-06-03  Ulrich Drepper  <drepper@redhat.com>
5769         * sysdeps/i386/i486/bits/atomic.h: Optimize a bit.
5771 2004-05-07  Dmitry V. Levin  <ldv@altlinux.org>
5773         * argp/argp-help.c (__argp_error, __argp_failure): Check result
5774         of __asprintf call and don't use string if it failed.
5775         * stdio-common/psignal.c (psignal): Likewise.
5776         * locale/programs/localedef.c (more_help): Likewise.
5777         * resolv/res_hconf.c (arg_service_list, arg_trimdomain_list,
5778         arg_bool, parse_line): Check result of __asprintf calls and
5779         don't use string if they failed.
5780         * sunrpc/svc_simple.c (registerrpc, universal): Likewise.
5781         * elf/ldconfig.c (parse_conf_include): Check result of __asprintf
5782         call and exit if it failed.
5784 2004-05-10  Jakub Jelinek  <jakub@redhat.com>
5786         * sysdeps/posix/sysconf.c (__sysconf) <cases _SC_REALTIME_SIGNALS,
5787         _SC_PRIORITY_SCHEDULING, _SC_TIMERS, _SC_ASYNCHRONOUS_IO,
5788         _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO, _SC_FSYNC, _SC_MAPPED_FILES,
5789         _SC_MEMLOCK, _SC_MEMLOCK_RANGE, _SC_MEMORY_PROTECTION,
5790         _SC_MESSAGE_PASSING, _SC_SEMAPHORES, _SC_SHARED_MEMORY_OBJECTS,
5791         _SC_THREADS, _SC_THREAD_SAFE_FUNCTIONS, _SC_THREAD_ATTR_STACKADDR,
5792         _SC_THREAD_ATTR_STACKSIZE, _SC_THREAD_PRIORITY_SCHEDULING,
5793         _SC_THREAD_PRIO_INHERIT, _SC_THREAD_PRIO_PROTECT,
5794         _SC_THREAD_PROCESS_SHARED>: Return _POSIX_* value instead of 1.
5795         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
5796         <case _SC_MONOTONIC_CLOCK>: Return _POSIX_VERSION instead of 1.
5798 2004-05-07  Jeroen Dekkers  <jeroen@dekkers.cx>
5800         * sysdeps/mach/hurd/i386/Makefile (CFLAGS-init-first.c): Add
5801         -momit-leaf-frame-pointer.
5803         * inet/test-ifaddrs.c (addr_string): Surround AF_PACKET case with
5804         #ifdef AF_PACKET.
5806         * sysdeps/mach/hurd/getcwd.c
5807         (_hurd_canonicalize_directory_name_intern): Only realloc when
5808         size is <= 0.
5810         * sysdeps/mach/hurd/mmap.c (__mmap): Fail when addr or offset
5811         isn't page aligned.
5813         * sysdeps/mach/hurd/spawni.c (EXPAND_DTABLE): Set dtablesize to
5814         new size.
5816         * sysdeps/mach/hurd/Versions (GLIBC_PRIVATE): Add __libc_read,
5817         __libc_write and __libc_lseek64.
5819 2004-05-29  Roland McGrath  <roland@redhat.com>
5821         * elf/Makefile (shared-only-routines): Add dl-caller.
5823 2004-05-28  Ulrich Drepper  <drepper@redhat.com>
5825         * sysdeps/powerpc/configure.in: New file.
5827 2004-05-28  Steven Munroe  <sjmunroe@us.ibm.com>
5829         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Add .machine
5830         "altivec" to enable VMX instructions.
5831         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
5832         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
5833         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
5834         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
5835         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
5836         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
5837         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
5838         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
5839         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
5841 2004-05-27  Jakub Jelinek  <jakub@redhat.com>
5843         * sysdeps/i386/fpu/bits/mathinline.h (__expm1_code): Define using
5844         __builtin_expm1l for GCC 3.5+.
5845         (__expl): Define using __builtin_expl for GCC 3.4+.
5846         (exp, expf, expl): Don't define for GCC 3.4+.
5847         (tan, tanf, tanl): Don't define for GCC 3.5+.
5848         (__atan2l): Define using __builtin_atan2l for GCC 3.4+.
5849         (atan2, atan2f, atan2l): Don't define for GCC 3.4+ or !__FAST_MATH__.
5850         (fmod, fmodf, fmodl): Don't define for GCC 3.5+ or !__FAST_MATH__.
5851         (fabsf, fabsl): Only provide if __USE_MISC or __USE_ISOC99.
5852         (sin, sinf, sinl, cos, cosf, cosl, log, logf, logl): Don't define
5853         for GCC 3.4+.
5854         (log10, log10f, log10l, asin, asinf, asinl, acos, acosf, acosl):
5855         Don't define for GCC 3.5+.
5856         (atan, atanf, atanl): Don't define for GCC 3.4+ or !__FAST_MATH__.
5857         (log1p, log1pf, log1pl, logb, logbf, logbl, log2, log2f, log2l): Don't
5858         define for GCC 3.5+.
5859         (drem, dremf, dreml): Don't define for GCC 3.5+ or !__FAST_MATH__.
5860         * sysdeps/sparc/fpu/bits/mathinline.h (sqrt, sqrtf, sqrtl): Don't
5861         define for GCC 3.2+.
5863 2004-05-27  Jakub Jelinek  <jakub@redhat.com>
5865         * string/bits/string2.h (__bzero): Define even for GCC 3.0+.
5866         * sysdeps/alpha/stpcpy.S (stpcpy): Add libc_hidden_builtin_def.
5867         * sysdeps/alpha/alphaev67/stpcpy.S (stpcpy): Likewise.
5868         * sysdeps/powerpc/powerpc32/stpcpy.S (stpcpy): Likewise.
5869         * sysdeps/powerpc/powerpc64/stpcpy.S (stpcpy): Likewise.
5870         * sysdeps/sparc/sparc32/stpcpy.S (stpcpy): Likewise.
5871         * sysdeps/sparc/sparc64/stpcpy.S (stpcpy): Likewise.
5872         * sysdeps/i386/stpcpy.S (stpcpy): Likewise.
5873         * sysdeps/i386/i586/stpcpy.S (stpcpy): Likewise.
5874         * sysdeps/generic/stpcpy.c (stpcpy): Likewise.
5875         * sysdeps/x86_64/stpcpy.S (stpcpy): Likewise.
5876         * sysdeps/i386/i586/memcpy.S (memcpy): Remove
5877         libc_hidden_builtin_def if MEMPCPY_P.
5878         * sysdeps/x86_64/memcpy.S (memcpy): Likewise.
5879         * sysdeps/i386/i686/mempcpy.S (mempcpy): Add libc_hidden_builtin_def.
5880         * sysdeps/i386/i586/mempcpy.S (mempcpy): Likewise.
5881         * sysdeps/generic/mempcpy.c (mempcpy): Likewise.
5882         * sysdeps/x86_64/mempcpy.S (mempcpy): Likewise.
5884 2004-05-26  Roland McGrath  <roland@frob.com>
5886         * sysdeps/generic/bits/in.h
5887         (IMPLINK_IP, IMPLINK_LOWEXPER, IMPLINK_HIGHEXPER): Macros removed.
5888         These are long obsolete in BSD systems where they originated.
5889         * conform/data/netinet/in.h-data: Remove `allow IMPLINK_*'
5891 2004-05-26  Jakub Jelinek  <jakub@redhat.com>
5893         * include/string.h (mempcpy, stpcpy): Add libc_hidden_builtin_proto.
5894         * string/bits/string2.h (memset): Disable macro for GCC 3.0+.
5895         (__mempcpy): Use __builtin_mempcpy for GCC 3.4+.
5896         (strchr): For GCC 3.2+, only use __rawmemchr if second argument is
5897         constant '\0' and first argument is not constant.
5898         (__stpcpy): Use __builtin_stpcpy for GCC 3.4+.
5899         (strncpy): Remove #ifdef _USE_STRING_ARCH_mempcpy variant.
5900         For GCC 3.2+ use __builtin_strncpy.
5901         (strncat): For GCC 3.2+ use __builtin_strncat.
5902         (strcmp): For GCC 3.2+ use __builtin_strcmp if both arguments are
5903         constant.
5904         (strcspn, strspn, strpbrk): For GCC 3.2+, use builtin function
5905         if both arguments are constant.
5907 2004-05-26  Ulrich Drepper  <drepper@redhat.com>
5909         * nss/nss_files/files-hosts.c: Fix condition for looking up IPv4
5910         mapped addresses in gethostbyaddr.
5912 2004-05-25  Ulrich Drepper  <drepper@redhat.com>
5914         * nss/digits_dots.c (__nss_hostname_digits_dots): Remove typep and
5915         flags parameter, convert afp to simple int parameter.  Adjust code.
5916         typep was never != NULL and flags therefore also unused.  *afp is
5917         never modified.
5918         * nss/nsswitch.h: Adjust __nss_hostname_digits_dots prototype.
5919         * nss/getXXbyYY.c: Remove HAVE_TYPE handling.  Adjust af parameter
5920         handling for __nss_hostname_digits_dots calls.
5921         * nss/getXXbyYY_r.c: Likewise.
5923         * elf/dl-load.c (_dl_map_object_from_fd): Map DSOs with MAP_DENYWRITE.
5925 2004-05-25  Steven Munroe  <sjmunroe@us.ibm.com>
5927         * sysdeps/powerpc/fpu/Makefile: Make ld.so a dependency of libm.so.
5928         * sysdeps/powerpc/fpu/bits/mathinline.h [__LIBC_INERNAL_MATH_INLINES]
5929         (__ieee754_sqrt): Define as __MATH_INLINE using fsqrt instruction.
5930         (__ieee754_sqrtf): Define as __MATH_INLINE using fsqrts instruction.
5931         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Moved
5932         implementation from w_sqrt.c.
5933         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Moved
5934         implementation from w_sqrtf.c.
5935         * sysdeps/powerpc/fpu/w_sqrt.c (__sqrt): Wrapper implementation
5936         using inline __ieee754_sqrt().
5937         * sysdeps/powerpc/fpu/w_sqrtf.c (__sqrtf): Wrapper implementation
5938         using inline __ieee754_sqrtf().
5939         * sysdeps/powerpc/powerpc32/sysdep.h [__ASSEMBLER__]: Include
5940         <sysdeps/powerpc/sysdep.h> independent of __ASSEMBLER__.
5941         * sysdeps/powerpc/sysdep.h [__ASSEMBLER__] (PPC_FEATURE_*): Define
5942         PPC_FEATURE_*  independent of __ASSEMBLER__.
5944 2004-05-25  Jakub Jelinek  <jakub@redhat.com>
5946         * sysdeps/pthread/aio_notify.c: Use <> instead of "" for aio_misc.h
5947         include.
5948         (aio_start_notify_thread): Define if not defined.
5949         (notify_func_wrapper): Use it.
5950         * sysdeps/pthread/aio_misc.c: Use <> instead of "" for aio_misc.h
5951         include.
5952         (aio_create_helper_thread): Define if not defined.
5953         (__aio_create_helper_thread): New function.
5954         (__aio_enqueue_request): Use aio_create_helper_thread.
5956         * nis/ypclnt.c (ypall_data, ypall_foreach): Remove.
5957         (struct ypresp_all_data): New type.
5958         (__xdr_ypresp_all): Change second argument to
5959         struct ypresp_all_data *.  Replace ypall_foreach and
5960         ypall_data with objp->foreach and objp->data.
5961         (yp_all): Remove status variable, add data.  Replace
5962         all uses of status with data.status.  Initialize data.foreach
5963         and data.data instead of ypall_foreach and ypall_data.
5965 2004-05-24  Jakub Jelinek  <jakub@redhat.com>
5967         * elf/dl-lookup.c (add_dependency): Set DF_1_NODELETE bit
5968         in l_flags_1, not in l_flags.
5970 2004-04-10  Robert Millan  <robertmh@gnu.org>
5972         * sysdeps/unix/sysv/linux/bits/in.h: Cosmetic fixes to get in sync
5973         with sysdeps/generic/bits/in.h.
5975 2004-05-25  Roland McGrath  <roland@frob.com>
5977         * sysdeps/generic/unwind-dw2-fde-glibc.c: Change copyright terms from
5978         GCC GPL to standard glibc LGPL.
5980 2004-05-24  Ulrich Drepper  <drepper@redhat.com>
5982         * manual/string.texi (Copying and Concatenation): Fixed second
5983         concat example.
5984         Reported by Fabian Pietsch <fabian@zzznowman.dyndns.org>.
5986 2004-05-23  Ulrich Drepper  <drepper@redhat.com>
5988         * malloc/obstack.c: Don't allow linking with _obstack.
5990 2004-05-23  Andreas Schwab  <schwab@suse.de>
5992         * sysdeps/m68k/m68020/bits/atomic.h: Use "+m" constraint instead
5993         of separate "m" constraints.
5995 2004-05-15  Chris Demetriou  <cgd@broadcom.com>
5997         * sysdeps/mips/dl-machine.h (ELF_DL_FRAME_SIZE)
5998         (ELF_DL_SAVE_ARG_REGS, ELF_DL_RESTORE_ARG_REGS): For the N32
5999         and 64 ABIs, save and restore regs $10 and $11 (a6 and a7).
6001 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
6003         * malloc/obstack.c (_obstack) [!defined _LIBC]: Remove; not used.
6004         Add comment explaining why libc still defines it.
6006 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6008         * malloc/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
6009         obstack_alignment_mask, obstack_alloc, obstack_base,
6010         obstack_blank, obstack_blank_fast, obstack_chunk_size,
6011         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
6012         obstack_grow0, obstack_init, obstack_int_grow,
6013         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
6014         obstack_next_free, obstack_object_size, obstack_ptr_grow,
6015         obstack_ptr_grow_fast, obstack_room): Remove declarations of
6016         nonexistent functions.
6018 2004-05-18  Steven Munroe  <sjmunroe@us.ibm.com>
6020         * sysdeps/powerpc/powerpc64/sysdep.h [__ASSEMBLER__]: Include
6021         <sysdeps/powerpc/sysdep.h> independent of __ASSEMBLER__.
6022         [PIC]: Redundent for powerpc64, removed.
6023         (ENTRY): Generate size and alignment for opd entry.
6024         (EALIGN): Generate size and alignment for opd entry.
6025         (END): Use DOT_LABEL in ASM_SIZE_DIRECTIVE.
6026         (END_GEN_TB): Use DOT_LABEL in ASM_SIZE_DIRECTIVE.
6028 2004-05-19  Ulrich Drepper  <drepper@redhat.com>
6030         * misc/regexp.h: Say the functions have been withdrawn.
6032         * wcsmbs/tst-wcpncpy.c: Add more tests.
6034 2004-05-18  Roland McGrath  <roland@frob.com>
6036         * sysdeps/generic/unwind.h: Change copyright terms from GCC GPL to
6037         standard glibc LGPL.
6038         * sysdeps/generic/unwind-dw2.c: Likewise.
6039         * sysdeps/generic/unwind-dw2-fde.c: Likewise.
6040         * sysdeps/generic/unwind-dw2-fde.h: Likewise.
6041         * sysdeps/generic/unwind-pe.h: Likewise.
6043 2004-05-15  Petter Reinholdtsen  <pere@hungry.com>
6045         * locale/iso-3166.def: Remove YUGOSLAVIA and insert "SERBIA AND
6046         MONTENEGRO" which have taken over the code 819.  Patch from
6047         Danilo Segan. [BZ #40]
6049 2004-05-15  Jakub Jelinek  <jakub@redhat.com>
6051         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
6052         (SYSCALL_ERROR_HANDLER): Rename __sparc.get_pic.l7 to
6053         __sparc_get_pic_l7.
6055 2004-05-15  Joseph S. Myers  <jsm@polyomino.org.uk>
6057         * catgets/gencat.c: Update bug reporting instructions.
6058         * csu/version.c: Likewise.
6059         * debug/catchsegv.sh: Likewise.
6060         * debug/pcprofiledump.c: Likewise.
6061         * debug/xtrace.sh: Likewise.
6062         * elf/ldd.bash.in: Likewise.
6063         * iconv/iconv_prog.c: Likewise.
6064         * iconv/iconvconfig.c: Likewise.
6065         * locale/programs/locale.c: Likewise.
6066         * locale/programs/localedef.c: Likewise.
6067         * login/programs/pt_chown.c: Likewise.
6068         * malloc/memusage.sh: Likewise.
6069         * malloc/memusagestat.c: Likewise.
6070         * malloc/mtrace.pl: Likewise.
6071         * manual/crypt.texi: Likewise.
6072         * manual/install.texi: Likewise.
6073         * nss/makedb.c: Likewise.
6075 2004-05-14  Jakub Jelinek  <jakub@redhat.com>
6077         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Only
6078         CHECK_STATIC_TLS if sym != NULL.
6079         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
6080         * sysdeps/i386/dl-machine.h (elf_machine_rela): Likewise.
6082 2004-05-12  Andreas Schwab  <schwab@suse.de>
6084         * posix/regex_internal.c (build_wcs_buffer): Also set pstr->mbs
6085         when translating.
6087 2004-05-13  H.J. Lu  <hongjiu.lu@intel.com>
6089         * Rules (xtests): Depend on tests.
6091 2004-05-13  Jakub Jelinek  <jakub@redhat.com>
6093         * libio/genops.c (_IO_default_xsputn): Avoid one overflow per char if
6094         count is negative, yet write_ptr < write_end.
6095         (_IO_default_xsgetn): Avoid one underflow per char if count is
6096         negative, yet read_ptr < read_end.
6098 2004-05-12  Steven Munroe  <sjmunroe@us.ibm.com>
6100         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (XTABS): Define XTABS
6101         equal to TAB3.
6103 2004-05-12  Ulrich Drepper  <drepper@redhat.com>
6105         * elf/dl-lookup.c (_dl_lookup_symbol_x): Correct _dl_signal_cerror
6106         call.
6108 2004-05-10  Roland McGrath  <roland@frob.com>
6110         * hurd/hurdlookup.c (__hurd_file_name_split): Return ENOENT for "".
6111         (__hurd_directory_name_split): Likewise.
6113 2004-05-10  Ulrich Drepper  <drepper@redhat.com>
6115         * po/fr.po: Update from translation team.
6117 2004-05-10  Andreas Jaeger  <aj@suse.de>
6119         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
6120         Correctly compute alignment.
6121         Patch by Michael Matz <matz@suse.de>.
6123 2004-05-09  Ulrich Drepper  <drepper@redhat.com>
6125         * sysdeps/generic/sigpause.c: Prevent sigpause prototype.
6126         * sysdeps/posix/sigpause.c: Likewise.
6127         * signal/signal.h: Don't define sigpause macro unless needed.
6129 2004-05-08  Jakub Jelinek  <jakub@redhat.com>
6131         * configure.in (libc_cv_libgcc_s_suffix): New check.
6132         (libc_cv_as_needed): Use -lgcc_s$libc_cv_libgcc_s_suffix.
6133         * config.make.in (libgcc_s_suffix): Set.
6134         * Makeconfig (libgcc_eh): Use -lgcc_s$(libgcc_s_suffix).
6136 2004-05-08  Ulrich Drepper  <drepper@redhat.com>
6138         * signal/signal.h: Use BSD sigpause only if BSD behavior is preferred.
6140 2004-04-29  Steven Munroe  <sjmunroe@us.ibm.com>
6142         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (LOADARGS_1,
6143         LOADARGS_2, LOADARGS_3, LOADARGS_4, LOADARGS_5, LOADARGS_6):
6144         Load argument values into temporary variables.
6145         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (LOADARGS_1,
6146         LOADARGS_2, LOADARGS_3, LOADARGS_4, LOADARGS_5, LOADARGS_6):
6147         Likewise.
6149 2004-05-07  Ulrich Drepper  <drepper@redhat.com>
6151         * sysdeps/unix/sysv/linux/Makefile: mq_send.c and mq_receive.c
6152         need to be compiled with exceptions.
6154 2004-05-06  Ulrich Drepper  <drepper@redhat.com>
6156         * sysdeps/unix/sysv/linux/ifreq.c (__ifreq): Fix memory handling.
6157         * sysdeps/generic/ifreq.c (__ifreq): Fix memory handling.
6159         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Make clear that
6160         realloc cannot fail.
6162         * nss/nss_files/files-netgrp.c (EXPAND): Free buffer which cannot
6163         be expanded.
6165         * nis/nis_table.c: Clean up memory handling.
6166         * nis/nis_subr.c (nis_getnames): Clean up memory handling.
6167         * nis/nis_removemember.c (nis_removemember): Add comment
6168         explaining use of realloc.
6170         * math/tgmath.h (fabs): Use __TGMATH_UNARY_REAL_IMAG_RET_REAL.
6171         (carg): Likewise.
6172         Patch by Lev S Bishop <lev.bishop@yale.edu>.
6174         * math/bug-tgmath1.c (main): Test fabs and carg as well.
6176 2004-05-06  Richard Henderson  <rth@redhat.com>
6178         * elf/elf.h (AT_L1I_CACHESHAPE, AT_L1D_CACHESHAPE,
6179         AT_L2_CACHESHAPE, AT_L3_CACHESHAPE): New.
6180         * sysdeps/unix/sysv/linux/alpha/Versions: Export
6181         __libc_alpha_cache_shape as a private symbol.
6182         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c: New file.
6183         * sysdeps/unix/sysv/linux/alpha/sysconf.c: New file.
6185 2004-05-06  Richard Henderson  <rth@redhat.com>
6187         * sysdeps/alpha/div_libc.h (_ITOFS, _ITOFT, _FTOIT, _ITOFT2): New.
6188         * sysdeps/alpha/divl.S: Use them.
6189         * sysdeps/alpha/divq.S: Likewise.
6190         * sysdeps/alpha/divqu.S: Likewise.
6191         * sysdeps/alpha/reml.S: Likewise.
6192         * sysdeps/alpha/remq.S: Likewise.
6193         * sysdeps/alpha/remqu.S: Likewise.
6195 2004-05-06  Ulrich Drepper  <drepper@redhat.com>
6197         * math/tgmath.h (__TGMATH_UNARY_REAL_IMAG_RET_REAL):Define.
6198         (cimag): Use it.
6199         (creal): Likewise.
6200         * math/Makefile (tests): Add bug-tgmath1.
6201         * math/bug-tgmath1.c: New file.
6203 2004-05-05  Jakub Jelinek  <jakub@redhat.com>
6205         * sysdeps/alpha/atomicity.h: Remove.
6206         * sysdeps/generic/atomicity.h: Remove.
6208 2004-05-05  H.J. Lu  <hongjiu.lu@intel.com>
6210         * sysdeps/i386/i486/bits/string.h (strpbrk): Cast return to
6211         char *.
6213 2004-04-22  David Mosberger  <davidm@hpl.hp.com>
6215         * sysdeps/unix/sysv/linux/ia64/Makefile (librt-routines): Mention
6216           rt-sysdep.
6217         * sysdeps/unix/sysv/linux/ia64/rt-sysdep.S: New file.
6219         * sysdeps/ia64/strcat.c: New file.
6220         * sysdeps/ia64/strcat.S: Delete.
6222 2004-05-04  Jakub Jelinek  <jakub@redhat.com>
6224         * sysdeps/unix/sysv/linux/ia64/sysdep.S (USE___THREAD): Remove
6225         defined.
6227 2004-04-23  Jakub Jelinek  <jakub@redhat.com>
6229         * sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Add
6230         libc_hidden_proto.  Define to __GI___libm_error_support for
6231         assembly going into libc.so.
6232         * sysdeps/ia64/fpu/libc_libm_error.c (__libm_error_support): Add
6233         libc_hidden_def.
6235         * include/libc-symbols.h (HIDDEN_BUILTIN_JUMPTARGET): Define.
6236         * sysdeps/ia64/bcopy.S (bcopy): Use it for jump to memmove.
6238         * sysdeps/unix/sysv/linux/ia64/sysdep.S (__syscall_error): Access
6239         gprel errno if RTLD_PRIVATE_ERRNO or __thread __libc_errno/errno
6240         if USE___THREAD.
6242 2004-05-03  Jakub Jelinek  <jakub@redhat.com>
6244         * sysdeps/unix/bsd/bits/fcntl.h (F_SETOWN, F_GETOWN): Define if
6245         __USE_BSD or __USE_UNIX98.
6246         * sysdeps/unix/bsd/ultrix4/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6247         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6248         * sysdeps/unix/bsd/sun/sunos4/bits/fcntl.h (F_SETOWN, F_GETOWN):
6249         Likewise.
6250         * sysdeps/unix/common/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6251         * sysdeps/unix/sysv/aix/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6252         * sysdeps/unix/sysv/irix4/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6253         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_SETOWN, F_GETOWN):
6254         Likewise.
6255         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_SETOWN, F_GETOWN):
6256         Likewise.
6257         * sysdeps/unix/sysv/linux/cris/bits/fcntl.h (F_SETOWN, F_GETOWN):
6258         Likewise.
6259         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (F_SETOWN, F_GETOWN):
6260         Likewise.
6261         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_SETOWN, F_GETOWN):
6262         Likewise.
6263         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (F_SETOWN, F_GETOWN):
6264         Likewise.
6265         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (F_SETOWN, F_GETOWN):
6266         Likewise.
6267         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (F_SETOWN, F_GETOWN):
6268         Likewise.
6269         * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h (F_SETOWN, F_GETOWN):
6270         Likewise.
6271         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (F_SETOWN, F_GETOWN):
6272         Likewise.
6273         * sysdeps/unix/sysv/linux/arm/bits/fcntl.h (F_SETOWN, F_GETOWN):
6274         Likewise.
6275         * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (F_SETOWN, F_GETOWN):
6276         Likewise.
6277         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (F_SETOWN, F_GETOWN):
6278         Likewise.
6279         * sysdeps/generic/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6280         * sysdeps/mach/hurd/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
6281         * io/sys/stat.h (S_ISSOCK, S_IFSOCK): Likewise.
6283 2004-05-01  Jakub Jelinek  <jakub@redhat.com>
6285         * posix/Versions (libc): Remove __libc_wait, __libc_waitpid,
6286         __libc_pause, __libc_nanosleep, __libc_pread, __libc_pread64,
6287         __libc_pwrite64, __waitid and __pselect @@GLIBC_PRIVATE.
6288         * stdlib/Versions (libc): Remove __on_exit@@GLIBC_PRIVATE.
6289         * sysdeps/unix/sysv/linux/Versions (libc): Remove
6290         __libc_sigaction@@GLIBC_PRIVATE.
6291         * sysdeps/unix/sysv/linux/x86_64/Versions (libc): Remove
6292         __modify_ldt@@GLIBC_PRIVATE.
6293         * socket/Versions (libc): Remove __libc_accept, __libc_send,
6294         __libc_recvfrom, __libc_recvmsg, __libc_sendmsg, __libc_recv,
6295         __libc_sendto and __libc_connect @@GLIBC_PRIVATE.
6296         * stdio-common/Versions (libc): Remove
6297         _itoa_upper_digits@@GLIBC_PRIVATE.
6298         * resolv/Versions (libresolv): Remove __ns_samename@@GLIBC_PRIVATE.
6299         * misc/Versions (libc): Remove __libc_fsync, __libc_msync,
6300         __libc_readv and __libc_writev @@GLIBC_PRIVATE.
6301         * termios/Versions (libc): Remove __libc_tcdrain@@GLIBC_PRIVATE.
6302         * io/Versions (libc): Remove __libc_open, __libc_close, __libc_read,
6303         __libc_write, __libc_lseek, __libc_fcntl, __libc_open64 and
6304         __libc_lseek64 @@GLIBC_PRIVATE.
6306 2004-04-30  Jakub Jelinek  <jakub@redhat.com>
6308         * elf/dl-load.c (open_verify): Move e_phentsize check after e_type
6309         check.
6311 2004-04-29  Steven Munroe  <sjmunroe@us.ibm.com>
6313         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: New file.
6314         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: New file.
6315         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: New file.
6316         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: New file.
6317         * sysdeps/powerpc/powerpc64/fpu/s_llrint.c: Removed.
6318         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: New file.
6319         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.c: Removed.
6320         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: New file.
6321         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: New file.
6322         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: New file.
6323         * sysdeps/powerpc/powerpc64/fpu/s_lround.S: New file.
6324         * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: New file.
6325         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: New file.
6326         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: New file.
6327         * sysdeps/powerpc/powerpc64/fpu/s_round.S: New file.
6328         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: New file.
6329         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: New file.
6330         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: New file.
6332         * math/test-misc.c [LDBL_MANT_DIG == 106](main): Correct LDBL_MAX
6333         mantissa for AIX long double format.
6334         * misc/qefgcvt.c [LDBL_MANT_DIG == 106] (NDIGIT_MAX): Define for AIX
6335         long double format.
6336         * misc/qefgcvt_r.c [LDBL_MANT_DIG == 106] (NDIGIT_MAX): Likewise.
6337         * stdlib/fpioconst.c [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__>1024]
6338         (_fpioconst_pow10): AIX long double format has same exponent range as
6339         double.
6340         * stdlib/fpioconst.h [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__>1024]
6341         (LDBL_MAX_10_EXP_LOG): AIX long double format has same exponent range
6342         as double.
6344 2004-04-23  Art Haas  <ahaas@airmail.net>
6346         * sysdeps/unix/sysv/linux/kernel-features.h: Add 'defined'.
6348 2004-04-28  Carlos O'Donell  <carlos@baldric.uwo.ca>
6350         * sysdeps/unix/sysv/linux/mq_getattr.c: Include <stddef.h>.
6351         * sysdeps/unix/sysv/linux/mq_notify.c: Likewise.
6352         * sysdeps/unix/sysv/linux/mq_open.c: Likewise.
6353         * sysdeps/unix/sysv/linux/mq_receive.c: Likewise.
6354         * sysdeps/unix/sysv/linux/mq_send.c: Likewise.
6356 2004-04-29  Philip Blundell  <pb@nexus.co.uk>
6358         * sysdeps/arm/dl-machine.h (RTLD_START): Avoid unnecessary GOT
6359         entries.
6361 2004-04-29  Jakub Jelinek  <jakub@redhat.com>
6363         * manual/resource.texi (sched_setaffinity, sched_getaffinity): Fix
6364         prototypes and description [BZ #131].
6366         * string/bits/string2.h (strpbrk): Cast NULL to char * [BZ #130].
6367         Patch by Ed Catmur <ed@catmur.co.uk>.
6368         * string/tst-inlcall.c (main): Add test for strpbrk.
6370         [BZ #140]
6371         * sysdeps/unix/sysv/linux/sys/sysctl.h: Remove linux/compiler.h
6372         include.
6373         (_LINUX_KERNEL_H, _LINUX_TYPES_H, _LINUX_LIST_H): Only define if not
6374         yet defined, #undef back after including linux/sysctl.h if defined
6375         here.
6376         (__LINUX_COMPILER_H, __user): Define if not yet defined, #undef
6377         back after including linux/sysctl.h if defined here.
6379         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c (_Qp_qtoi): Use %f31
6380         for single precision register, add it to __asm clobbers [BZ #139].
6381         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c (_Qp_qtoui): Use %f31
6382         for single precision register, add it to __asm clobbers.
6383         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c (_Qp_qtoux): Use fqtox
6384         instead of fqtoi in QP_HANDLE_EXCEPTIONS.
6385         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c (_Qp_qtox): Likewise.
6386         Reported by M. H. VanLeeuwen <vanl@megsinet.net>.
6388 2004-04-23  Andreas Schwab  <schwab@suse.de>
6390         * sysdeps/unix/sysv/linux/m68k/register-dump.h: Use
6391         __attribute_used__.
6393 2004-04-22  Philip Blundell  <philb@gnu.org>
6395         * sysdeps/arm/dl-machine.h (elf_machine_rela): Don't use INTUSE
6396         when calling _dl_signal_error.
6397         (elf_machine_rel): Likewise.
6399 2004-04-21  Ulrich Drepper  <drepper@redhat.com>
6401         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Define _GI___sigsetjmp
6402         and use it internally instead of __sigsetjmp.
6403         * sysdeps/ia64/fpu/s_frexpf.c (frexpf): Use _GI___libm_frexp_4f.
6404         * sysdeps/ia64/fpu/s_frexpl.c (frexpl): Use _GI___libm_frexp_4l.
6405         * sysdeps/ia64/fpu/libm_frexp4.S: Define _GI___libm_frexp_4.
6406         * sysdeps/ia64/fpu/libm_frexp4f.S: Define _GI___libm_frexp_4f.
6407         * sysdeps/ia64/fpu/libm_frexp4l.S: Define _GI___libm_frexp_4l.
6408         * sysdeps/ia64/fpu/s_frexp.c (frexp): Use _GI___libm_frexp_4.
6409         * sysdeps/ia64/fpu/libm_support.h: Declare _GI___libm_frexp_4,
6410         _GI___libm_frexp_4f, _GI___libm_frexp_4l.
6411         * sysdeps/ia64/fpu/bits/mathinline.h: New file.
6412         * sysdeps/unix/sysv/linux/ia64/__start_context.S: Use
6413         HIDDEN_JUMPTARGET for exit call.
6414         * sysdeps/unix/sysv/linux/ia64/clone2.S: Use HIDDEN_JUMPTARGET for
6415         _exit call.
6416         * sysdeps/ia64/bcopy.S: Use HIDDEN_JUMPTARGET for memmove call.
6417         * sysdeps/ia64/strcat.S: Use HIDDEN_JUMPTARGET for strlen and
6418         strcpy calls.
6420 2004-04-21  Jakub Jelinek  <jakub@redhat.com>
6422         * posix/tst-chmod.c (do_test): Fix a typo.
6424         * elf/lateglobal.c (main): Fix error checks.
6425         Patch by Stephen Clarke <stephen.clarke@st.com>.
6427         * manual/ctype.texi (isblank, iswblank): Mark as ISO functions,
6428         mention they have been added in ISO C99.
6429         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6431 2004-03-31  H.J. Lu  <hongjiu.lu@intel.com>
6433         * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Fix typo.
6435 2004-04-20  Jakub Jelinek  <jakub@redhat.com>
6437         * sysdeps/unix/sysv/linux/shm_open.c (shm_unlink): Change EPERM into
6438         EACCES.
6440 2004-04-20  Jakub Jelinek  <jakub@redhat.com>
6442         * stdio-common/vfscanf.c (_IO_vfscanf): Revert last %% whitespace
6443         handling change.
6444         * stdio-common/tst-sscanf.c (int_tests): Adjust.
6446         * nis/nss-nis.c: Include stdlib.h.
6448         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Shut up a
6449         warning.
6450         * sysdeps/sparc/sparc64/memcmp.S (memcmp): Remove BP_SYM () from
6451         libc_hidden_builtin_def.
6453 2004-04-20  Jim Meyering  <jim@meyering.net>
6455         * misc/error.c (error_tail): Don't leak upon realloc failure.
6457 2004-04-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6459         * sysdeps/unix/sysv/linux/dl-execstack.c (_dl_make_stack_executable):
6460         Use RETURN_ADDRESS instead of __builtin_return_address.
6462 2004-04-19  Ulrich Drepper  <drepper@redhat.com>
6464         * sysdeps/unix/sysv/linux/mq_unlink.c: Rewrite to produce more
6465         compact code.
6467 2004-04-20  Jakub Jelinek  <jakub@redhat.com>
6469         * stdio-common/vfscanf.c (_IO_vfscanf): When skipping whitespace,
6470         do input_error () instead of conv_error () and don't look at errno.
6471         Don't eat any whitespace before %% if skip_space == 0.
6472         * stdio-common/tst-sscanf.c (int_tests): New array.
6473         (main): Run int_tests.
6476 See ChangeLog.14 for earlier changes.