[BZ #1350]
[glibc.git] / ChangeLog
blob1f7585cb3e6605fc4eeda5ad6351f3d5bdf8c900
1 2005-10-16  Roland McGrath  <roland@frob.com>
3         [BZ #1254]
4         * sysdeps/mach/hurd/getpeername.c (__getpeername): Respect *LEN
5         byte limit when setting ADDR->sa_family.
6         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
8         [BZ #1253]
9         * sysdeps/mach/hurd/dl-sysdep.h
10         [SHARED] (DL_ARGV_NOT_RELRO): New macro.
12         [BZ #1253]
13         * sysdeps/mach/hurd/i386/init-first.c (init): Make cast kosher.
14         (_hurd_stack_setup): Don't declare with arguments and ellipsis.
15         Use __builtin_frame_address and __builtin_return_address.
16         (_dl_init_first): Likewise.
18         * sysdeps/mach/hurd/i386/init-first.c (_cthread_init_routine): Declare
19         as weak extern.
20         (init): Check for it being undefined.
22 2005-10-16  Daniel Jacobowitz  <dan@codesourcery.com>
23             Roland McGrath  <roland@redhat.com>
25         * Makerules [module-names] (extra-modules-build): New variable.
26         ($(extra-modules-build:%=$(objpfx)%.so)): New static pattern rule.
27         Depend on libc.so and libc_nonshared.a.
28         * dlfcn/Makefile ($(test-modules)): Remove static pattern rule.
29         * elf/Makefile (modules-names-nobuild): New variable, add filtmod1.
30         ($(test-modules)): Remove static pattern rule.
32 2005-10-15  Thomas Schwinge  <tschwinge@gnu.org>
34         * include/dirent.h: Include <stdbool.h>.
35         * sysdeps/mach/hurd/fdopendir.c: Include <fcntl.h>.
36         (fdopendir): Correct argument to _hurd_fd_get().
37         * sysdeps/mach/hurd/opendir.c (__opendir): Remove stray `}'.
39 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
41         [BZ #1224]
42         * posix/regcomp.c (init_word_char, duplicate_node_closure,
43         fetch_token, peek_token_bracket, build_range_exp,
44         build_collating_symbol): Remove forward decls; no longer needed
45         now that we use prototypes.
47 2005-10-15  Ulrich Drepper  <drepper@redhat.com>
49         [BZ #1221]
50         * posix/regex_internal.h: Remove last traces of
51         RE_NO_INTERNAL_PROTOTYPES.
53         [BZ #968]
54         * string/strxfrm_l.c (STRXFRM): Fix exit conditions of two loops.
56         * sysdeps/unix/fdopendir.c (fdopendir): Make sure descriptor
57         allows reading.
59         * wcsmbs/tst-mbrtowc2.c: Use de_DE.UTF-8 instead of en_US.UTF-8.
60         * wcsmbs/Makefile: Define tst-mbrtowc2-ENV.
62         * posix/regexec.c: Finish prototyping of static functions.
63         * posix/regex_internal.c: Likewise.
65 2005-10-14  Roland McGrath  <roland@frob.com>
67         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): New function, broken
68         out of ...
69         (__opendir): ... here.  Call it.
70         * sysdeps/mach/hurd/fdopendir.c: New file.
72 2005-10-14  Ulrich Drepper  <drepper@redhat.com>
74         [BZ #865]
75         * math/tgmath.h: Correctly determine result type for
76         __TGMATH_BINARY_REAL_ONLY,
77         __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
78         __TGMATH_TERNARY_REAL_ONLY, and __TGMATH_BINARY_REAL_IMAG.
80 2005-09-17  Andreas Jaeger  <aj@suse.de>
82         [BZ #865]
83         * math/test-tgmath-int.c: New file.
84         * math/Makefile (tests): Add test-tgmath-int.
86 2005-10-14  Ulrich Drepper  <drepper@redhat.com>
88         [BZ #804]
89         * malloc/tst-mtrace.sh: Work around for bootstraping.
91         * locale/programs/ld-collate.c (collate_output): Fix counting of
92         elements.  Don't limit table size.  Use correct secondary hash
93         function.
94         * locale/localeinfo.h (LIMAGIC): Change value returned for LC_COLLATE.
95         * posix/fnmatch_loop.c: Adjust for changed secondary hash function.
96         * posix/regcomp.c: Likewise.
98         * time/asctime.c (asctime_internal): Use __snprintf instead of
99         snprintf to avoid PLT entry.
101         * sysdeps/unix/opendir.c (__opendir): Pass extra argument to
102         __alloc_dir.
103         (__alloc_dir): Only close descriptor on error if new parameter is true.
104         * sysdeps/unix/fdopendir.c (fdopendir): Pass extra argument to
105         __alloc_dir.  Don't close fd on error.
106         * include/dirent.h (__alloc_dir): Adjust prototype.
108         * stdlib/Makefile (tests): Add tst-ucontext-off.
109         * stdlib/tst-ucontext-off.c: New file.
110         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h (TESTS): Define.
111         * sysdeps/unix/sysv/linux/i386/ucontext_i.h (TESTS): Likewise.
113         [BZ #1468]
114         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Fix values for
115         oFPREGS, oSIGMASK, oFPREGSMEM, and oMXCSR.
116         Patch by Nicholas Miell <nmiell@comcast.net>.
118         [BZ #1460]
119         * time/asctime.c (asctime_internal): New function, derived from
120         asctime_r.  Takes additional parameter which is the buffer length.
121         Use snprintf instead sprintf, if it overflows, fail.
122         (asctime_r): Call asctime_internal with 26 as buffer length.
123         (asctime): Call asctime_internal with length of internal buffer.
124         * time/Makefile (tests): Add bug-asctime_r.
125         * time/bug-asctime_r.c: New file.
127         [BZ #1459]
128         * time/asctime.c (__asctime_r): Check for tm_year computation to
129         overflow and fail in this case.
130         * time/Makefile (tests): Add bug-asctime.
131         * time/bug-asctime.c: New file.
133         [BZ #1458]
134         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MREMAP_FIXED.
135         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
136         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
137         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
138         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
139         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
140         * misc/sys/mman.h: Add ellipsis after last parameter of mremap and
141         adjust leading comment.
142         * sysdeps/unix/sysv/linux/syscalls.list: Add pointer parameter to
143         mremap syscall.
144         * include/sys/mman.h (__mremap): Add ellipsis.
145         * malloc/memusage.c: Adjust mremap wrapper for optional additional
146         parameter.
148 2005-10-13  Ulrich Drepper  <drepper@redhat.com>
150         [BZ #1405]
151         * libio/iogetdelim.c (_IO_getdelim): Fix truncation of return
152         value.  Avoid overflow in computation.
154         [BZ #1373]
155         * argp/argp.h: Remove __NTH for __argp_usage inline function.
157 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
159         [BZ #1248]
160         * posix/regex_internal.h (bitset_not, bitset_merge, bitset_not_merge,
161         bitset_mask, re_string_allocate, re_string_construct,
162         re_string_reconstruct, re_string_destruct, re_string_elem_size_at,
163         re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case,
164         re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1,
165         re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect,
166         re_node_set_init_union, re_node_set_merge, re_node_set_insert,
167         re_node_set_insert_last, re_node_set_compare, re_node_set_contains,
168         re_node_set_remove_at, re_dfa_add_node, re_acquire_state,
169         re_acquire_state_context): Remove unnecessary forward decls.
170         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
171         Put __attribute at function definition, now that the function decl
172         has been removed.
173         * posix/regex_internal.c (re_string_peek_byte_case,
174         re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
175         Likewise.
177 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
179         [BZ #1231]
180         * posix/regex_internal.c (re_string_skip_chars, register_state,
181         calc_state_hash): Remove forward decls.
182         * posix/regexec.c (acquire_init_state_context, check_halt_node_context,
183         proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes,
184         clean_state_log_if_needed): Likewise.
186 2005-10-13  Ulrich Drepper  <drepper@redhat.com>
188         * posix/regex.c: No need to use K&R definitions for static functions.
189         * posix/regex_internal.c: Likewise.
190         * posix/regcomp.c: Likewise.
192         [BZ #1466]
193         * sysdeps/generic/s_csqrt.c (__csqrt): For zero real part, return
194         principal square root.
195         * sysdeps/generic/s_csqrtf.c (__csqrtf): Likewise.
196         * sysdeps/generic/s_csqrtl.c (__csqrtl): Likewise.
197         * math/libm-test.inc (csqrt_test): Add test for returning
198         principal value.
200         * include/features.h: Define _POSIX_C_SOURCE to 200112 for
201         _XOPEN_SOURCE == 600.
203 2005-10-12  Ulrich Drepper  <drepper@redhat.com>
205         * malloc/malloc.c (_int_free): Fail if block size is obviously wrong.
207         * include/malloc.h: Remove _int_new_arena prototype.
208         * malloc/arena.c (_int_new_arena): Move definition ahead of
209         arena_get2 and make static.
211         Correctly implement M_MXFAST.
212         * malloc/malloc.c (struct malloc_state): Replace max_fast with flags
213         fields.
214         (global_max_fast): New variable.
215         (set_max_fast): Change to not require arena parameter and to modify
216         global_max_fast.  Change all callers.
217         (get_max_fast): New macro.  Use this instead of directly accessing
218         now removed max_fast arena member.
219         (have_fastchunks): Use flags instead of max_fast.
220         (clear_fastchunks): Likewise.
221         (set_fastchunks): Likewise.
222         (contiguous): Likewise.
223         (noncontiguous): Likewise.
224         (set_noncontiguous): Likewise.
225         (set_contiguous): Likewise.
226         (malloc_init_state): Explicitly set FASTCHUNKS_BIT.  Call set_max_fast
227         only for main arena.
228         * malloc/hooks.c (public_sET_STATe): Adjust set_max_fast use.
230 2005-10-10  Daniel Jacobowitz  <dan@codesourcery.com>
232         * sysdeps/generic/bits/byteswap.h (__bswap_constant_16): New macro.
233         (__bswap_16): Use it.
234         (__bswap_constant_32): New macro.
235         (__bswap_32): Use it.
237 2005-10-10  Ulrich Drepper  <drepper@redhat.com>
239         * malloc/arena.c (ptmalloc_unlock_all2): Reset atfork_recursive_cntr.
241 2005-10-08  Jakub Jelinek  <jakub@redhat.com>
243         * nss/getent.c (hosts_keys): Pass INADDRSZ as size rather
244         than IN6ADDRSZ to AF_INET gethostbyaddr.
246 2005-10-07  Roland McGrath  <roland@redhat.com>
248         [BZ #1438]
249         * include/features.h: Make tests on _FORTIFY_SOURCE and __OPTIMIZE__
250         friendly to -Wundef.
251         (__USE_FORTIFY_LEVEL): Always define it, to 0 if nothing else.
253 2005-10-06  Ulrich Drepper  <drepper@redhat.com>
255         * sysdeps/unix/sysv/linux/readonly-area.c: Allow fopen to fail because
256         the file does not exist.
258 2005-10-05  Simon Josefsson  <jas@extundo.com>
260         [BZ #1423]
261         * crypt/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): New macros.
263 2005-10-05  Roland McGrath  <roland@redhat.com>
265         * crypt/Makefile (distribute): Remove duplicate defn.
267         * sysdeps/generic/ldsodefs.h (struct audit_ifaces):
268         Use ARCH_PLTENTER_MEMBERS and ARCH_PLTEXIT_MEMBERS macros if defined.
269         * elf/tst-auditmod1.c: Include <tst-audit.h> to define more
270         architecture-specific code.
271         * sysdeps/generic/tst-audit.h: New file.
272         * elf/Makefile (distribute): Add it.
274 2005-10-05  Daniel Jacobowitz  <dan@codesourcery.com>
276         * elf/elf.h (R_ARM_TLS_DTPMOD32, R_ARM_TLS_DTPOFF32,
277         R_ARM_TLS_TPOFF32, R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
278         R_ARM_TLS_LDO32, R_ARM_TLS_IE32, R_ARM_TLS_LE32): New macros.
280 2005-10-03  Roland McGrath  <roland@redhat.com>
282         * sysdeps/powerpc/nofpu: Directory removed, saved in ports repository.
284 2005-09-30  Ulrich Drepper  <drepper@redhat.com>
286         * posix/regex.h: Pretty printing.
287         Clean up namespace a bit.
289 2005-09-30  Jakub Jelinek  <jakub@redhat.com>
291         * posix/regexec.c (update_cur_sifted_state, check_arrival,
292         check_arrival_add_next_nodes): Avoid using uninitialized variable.
294         * malloc/memusage.c (dest): Fix a bunch of warnings on 32-bit arches.
296         * sysdeps/i386/fpu/libm-test-ulps: Update for GCC 4.0.x.
298 2005-09-29  Ulrich Drepper  <drepper@redhat.com>
300         * iconvdata/Makefile (modules): Add IBM803, IBM901, IBM902, IBM921,
301         IBM1008, IBM1008_420, IBM1097, IBM1112, IBM1123, IBM1130, IBM1140,
302         IBM1141, IBM1142, IBM1143, IBM1144, IBM1145, IBM1146, IBM1147, IBM1148,
303         IBM1149, IBM1166, IBM1167, IBM4517, IBM4899, IBM4909, IBM4971,
304         IBM5347, IBM9030, IBM9066, IBM9448, IBM12712, IBM16804.
305         (distribute): Add ibm803.c, ibm803.h, ibm901.c, ibm901.h, ibm902.c,
306         ibm902.h, ibm921.c, ibm921.h, ibm1008.c, ibm1008.h, ibm1008_420.c,
307         ibm1097.c, ibm1097.h, ibm1112.c, ibm1112.h, ibm1123.c, ibm1123.h,
308         ibm1130.c, ibm1130.h, ibm1140.c, ibm1140.h, ibm1141.c, ibm1141.h,
309         ibm1142.c, ibm1142.h, ibm1143.c, ibm1143.h, ibm1144.c, ibm1144.h,
310         ibm1145.c, ibm1145.h, ibm1146.c, ibm1146.h, ibm1147.c, ibm1147.h,
311         ibm1148.c, ibm1148.h, ibm1149.c, ibm1149.h, ibm1166.c, ibm1166.h,
312         ibm1167.c, ibm1167.h, ibm4517.c, ibm4517.h, ibm4899.c, ibm4899.h,
313         ibm4909.c, ibm4909.h, ibm4971.c, ibm4971.h, ibm5347.c, ibm5347.h,
314         ibm9030.c, ibm9030.h, ibm9066.c, ibm9066.h, ibm9448.c, ibm9448.h,
315         ibm12712.c, ibm12712.h, ibm16804.c, ibm16804.h.
316         * iconvdata/TESTS: Add entries for new modules.
317         * iconvdata/gconv-modules: Likewise.
318         * iconvdata/ibm803.c: New file.
319         * iconvdata/ibm803.h: New file.
320         * iconvdata/ibm901.c: New file.
321         * iconvdata/ibm901.h: New file.
322         * iconvdata/ibm902.c: New file.
323         * iconvdata/ibm902.h: New file.
324         * iconvdata/ibm921.c: New file.
325         * iconvdata/ibm921.h: New file.
326         * iconvdata/ibm1008.c: New file.
327         * iconvdata/ibm1008.h: New file.
328         * iconvdata/ibm1008_420.c: New file.
329         * iconvdata/ibm1097.c: New file.
330         * iconvdata/ibm1097.h: New file.
331         * iconvdata/ibm1112.c: New file.
332         * iconvdata/ibm1112.h: New file.
333         * iconvdata/ibm1123.c: New file.
334         * iconvdata/ibm1123.h: New file.
335         * iconvdata/ibm1130.c: New file.
336         * iconvdata/ibm1130.h: New file.
337         * iconvdata/ibm1140.c: New file.
338         * iconvdata/ibm1140.h: New file.
339         * iconvdata/ibm1141.c: New file.
340         * iconvdata/ibm1141.h: New file.
341         * iconvdata/ibm1142.c: New file.
342         * iconvdata/ibm1142.h: New file.
343         * iconvdata/ibm1143.c: New file.
344         * iconvdata/ibm1143.h: New file.
345         * iconvdata/ibm1144.c: New file.
346         * iconvdata/ibm1144.h: New file.
347         * iconvdata/ibm1145.c: New file.
348         * iconvdata/ibm1145.h: New file.
349         * iconvdata/ibm1146.c: New file.
350         * iconvdata/ibm1146.h: New file.
351         * iconvdata/ibm1147.c: New file.
352         * iconvdata/ibm1147.h: New file.
353         * iconvdata/ibm1148.c: New file.
354         * iconvdata/ibm1148.h: New file.
355         * iconvdata/ibm1149.c: New file.
356         * iconvdata/ibm1149.h: New file.
357         * iconvdata/ibm1166.c: New file.
358         * iconvdata/ibm1166.h: New file.
359         * iconvdata/ibm1167.c: New file.
360         * iconvdata/ibm1167.h: New file.
361         * iconvdata/ibm4517.c: New file.
362         * iconvdata/ibm4517.h: New file.
363         * iconvdata/ibm4899.c: New file.
364         * iconvdata/ibm4899.h: New file.
365         * iconvdata/ibm4909.c: New file.
366         * iconvdata/ibm4909.h: New file.
367         * iconvdata/ibm4971.c: New file.
368         * iconvdata/ibm4971.h: New file.
369         * iconvdata/ibm5347.c: New file.
370         * iconvdata/ibm5347.h: New file.
371         * iconvdata/ibm9030.c: New file.
372         * iconvdata/ibm9030.h: New file.
373         * iconvdata/ibm9066.c: New file.
374         * iconvdata/ibm9066.h: New file.
375         * iconvdata/ibm9448.c: New file.
376         * iconvdata/ibm9448.h: New file.
377         * iconvdata/ibm12712.c: New file.
378         * iconvdata/ibm12712.h: New file.
379         * iconvdata/ibm16804.c: New file.
380         * iconvdata/ibm16804.h: New file.
381         * iconvdata/testdata/IBM803: New file.
382         * iconvdata/testdata/IBM803..UTF8: New file.
383         * iconvdata/testdata/IBM901: New file.
384         * iconvdata/testdata/IBM901..UTF8: New file.
385         * iconvdata/testdata/IBM902: New file.
386         * iconvdata/testdata/IBM902..UTF8: New file.
387         * iconvdata/testdata/IBM921: New file.
388         * iconvdata/testdata/IBM921..UTF8: New file.
389         * iconvdata/testdata/IBM1008: New file.
390         * iconvdata/testdata/IBM1008..UTF8: New file.
391         * iconvdata/testdata/IBM1097: New file.
392         * iconvdata/testdata/IBM1097..UTF8: New file.
393         * iconvdata/testdata/IBM1112: New file.
394         * iconvdata/testdata/IBM1112..UTF8: New file.
395         * iconvdata/testdata/IBM1123: New file.
396         * iconvdata/testdata/IBM1123..UTF8: New file.
397         * iconvdata/testdata/IBM1130: New file.
398         * iconvdata/testdata/IBM1130..UTF8: New file.
399         * iconvdata/testdata/IBM1140: New file.
400         * iconvdata/testdata/IBM1140..UTF8: New file.
401         * iconvdata/testdata/IBM1141: New file.
402         * iconvdata/testdata/IBM1141..UTF8: New file.
403         * iconvdata/testdata/IBM1142: New file.
404         * iconvdata/testdata/IBM1142..UTF8: New file.
405         * iconvdata/testdata/IBM1143: New file.
406         * iconvdata/testdata/IBM1143..UTF8: New file.
407         * iconvdata/testdata/IBM1144: New file.
408         * iconvdata/testdata/IBM1144..UTF8: New file.
409         * iconvdata/testdata/IBM1145: New file.
410         * iconvdata/testdata/IBM1145..UTF8: New file.
411         * iconvdata/testdata/IBM1146: New file.
412         * iconvdata/testdata/IBM1146..UTF8: New file.
413         * iconvdata/testdata/IBM1147: New file.
414         * iconvdata/testdata/IBM1147..UTF8: New file.
415         * iconvdata/testdata/IBM1148: New file.
416         * iconvdata/testdata/IBM1148..UTF8: New file.
417         * iconvdata/testdata/IBM1149: New file.
418         * iconvdata/testdata/IBM1149..UTF8: New file.
419         * iconvdata/testdata/IBM1166: New file.
420         * iconvdata/testdata/IBM1166..UTF8: New file.
421         * iconvdata/testdata/IBM1167: New file.
422         * iconvdata/testdata/IBM1167..UTF8: New file.
423         * iconvdata/testdata/IBM4517: New file.
424         * iconvdata/testdata/IBM4517..UTF8: New file.
425         * iconvdata/testdata/IBM4899: New file.
426         * iconvdata/testdata/IBM4899..UTF8: New file.
427         * iconvdata/testdata/IBM4909: New file.
428         * iconvdata/testdata/IBM4909..UTF8: New file.
429         * iconvdata/testdata/IBM4971: New file.
430         * iconvdata/testdata/IBM4971..UTF8: New file.
431         * iconvdata/testdata/IBM5347: New file.
432         * iconvdata/testdata/IBM5347..UTF8: New file.
433         * iconvdata/testdata/IBM9030: New file.
434         * iconvdata/testdata/IBM9030..UTF8: New file.
435         * iconvdata/testdata/IBM9066: New file.
436         * iconvdata/testdata/IBM9066..UTF8: New file.
437         * iconvdata/testdata/IBM9448: New file.
438         * iconvdata/testdata/IBM9448..UTF8: New file.
439         * iconvdata/testdata/IBM12712: New file.
440         * iconvdata/testdata/IBM12712..UTF8: New file.
441         * iconvdata/testdata/IBM16804: New file.
442         * iconvdata/testdata/IBM16804..UTF8: New file.
443         Patch by Masahide WASHIZAWA <washi@jp.ibm.com>.
445         * iconvdata/run-iconv-test.sh: Run ASCII->encoding->ASCII suntzus
446         test only if $subset is N.
448 2005-09-29  Roland McGrath  <roland@redhat.com>
450         [BZ #1392]
451         * posix/sys/wait.h [!__GNUC__ || __cplusplus] (__WAIT_INT): Use const.
453 2005-09-29  Alfred M. Szmidt  <ams@gnu.org>
455         * elf/rtld.c [DL_ARGV_NOT_RELRO] (_dl_argc, _dl_skip_args):
456         Don't use attribute_relro.
458 2005-09-29  Roland McGrath  <roland@redhat.com>
460         [BZ #1392]
461         * posix/sys/wait.h (__WAIT_INT): Rewrite using an initializer,
462         in case __typeof yields a const-qualified type.
464 2005-09-28  Ulrich Drepper  <drepper@redhat.com>
466         * dirent/dirent.h: Declare fdopendir.
467         * dirent/Versions: Export fdopendir for GLIBC_2.4.
468         * dirent/Makefile (routines): Add fdopendir.
469         (tests): Add tst-fdopendir.
470         * dirent/tst-fdopendir.c: New file.
471         * include/dirent.h: Declare __alloc_dir.
472         * sysdeps/generic/fdopendir.c: New file.
473         * sysdeps/unix/fdopendir.c: New file.
474         * sysdeps/unix/opendir.c: Split off back part of opendir into new
475         function __alloc_dir.
477 2005-09-26  Steven Munroe  <sjmunroe@us.ibm.com>
479         [BZ #1384]
480         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust expected y1, y1f, yn,
481         ynf results.
483 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
484             Ulrich Drepper  <drepper@redhat.com>
486         [BZ #1302]
487         Change bitset word type from unsigned int to unsigned long int,
488         as this has better performance on typical 64-bit hosts.  Change
489         bitset type name to bitset_t.
490         * posix/regcomp.c (build_equiv_class, build_charclass):
491         (build_range_exp, build_collating_symbol):
492         Prefer bitset_t to re_bitset_ptr_t in prototypes, when the actual
493         argument is a bitset.  This is merely a style issue, but it makes
494         it clearer that an entire array is expected.
495         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps,
496         lower_subexp): Adjust for new bitset_t definition.
497         (lower_subexp, parse_bracket_exp, built_charclass_op): Likewise.
498         * posix/regex_internal.h (bitset_set, bitset_clear, bitset_contain,
499         bitset_not, bitset_merge, bitset_set_all, bitset_mask): Likewise.
500         * posix/regexec.c (check_dst_limits_calc_pos_1,
501         check_subexp_matching_top, build_trtable, group_nodes_into_DFAstates):
502         Likewise.
503         * posix/regcomp.c (utf8_sb_map): Don't assume initializer
504         == 0xffffffff.
505         * posix/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
506         All uses changed.
507         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
508         (bitset_word_t): New type, replacing 'unsigned int' for bitset uses.
509         All uses changed.
510         (BITSET_WORD_MAX): New macro.
511         (bitset_set, bitset_clear, bitset_contain, bitset_empty,
512         (bitset_set_all, bitset_copy):  Adjust for bitset_t change.
513         (bitset_empty, bitset_copy):
514         Prefer sizeof (bitset_t) to multiplying it out ourselves.
515         (bitset_not_merge): Remove; unused.
516         (bitset_contain): Return bool, not unsigned int with one bit on.
517         All callers changed.
518         * posix/regexec.c (build_trtable): Don't assume bitset_t has no
519         stricter alignment than re_node_set; do this by defining a new
520         internal type struct dests_alloc and using it to allocate memory.
522 2005-09-27  Ulrich Drepper  <drepper@redhat.com>
524         [BZ #1230]
525         * stdlib/strtod_l.c (STRNCASECMP): Always use C locale object.
526         (TOLOWER_C): Define.  Use it when recognizing inf and nan.
527         * stdlib/Makefile (tests): Add bug-strtod2.
528         * stdlib/bug-strtod2.c: New file.
530 2005-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
532         [BZ #1361]
533         * argp/argp-fmtstream.h [HAVE_CONFIG_H]: Do not #include <config.h>.
534         * argp/argp-eexst.c, argp/argp-fmtstream.c, argp/argp-fs-xinl.c,
535         argp/argp-xinl.c: Fix up whitespace.
537 2005-09-27  Ulrich Drepper  <drepper@redhat.com>
539         [BZ #1158]
540         * stdlib/cxa_atexit.c (__new_exitfn): Rewrite to preserve order in
541         which the functions were registered.
542         * dlfcn/Makefile: Add rules to build and run bug-atexit1 and
543         bug-atexit2.
544         * dlfcn/bug-atexit1.c: New file.
545         * dlfcn/bug-atexit1-lib.c: New file.
546         * dlfcn/bug-atexit2.c: New file.
547         * dlfcn/bug-atexit2-lib.c: New file.
549         [BZ #1078]
550         * libio/fileops.c (_IO_new_file_xsputn): Determine amount of
551         available space in non-line-buffered buffer correctly.
552         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
553         * stdio-common/Makefile (tests): Add tst-fwrite.
554         * stdio-common/tst-fwrite.c: New file.
556 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
558         [BZ #838]
559         * malloc/arena.c (ptmalloc_lock_all): If global lock already taken
560         by the same thread, just bump the counter.
561         (ptmalloc_unlock_all): If counter for recursive locks hasn't reached
562         zero, don't do anything else.
563         * malloc/Makefile (tests): Add tst-mallocfork.
564         * malloc/tst-mallocfork.c: New file.
566         [BZ #808]
567         * malloc/malloc.c (_int_realloc): Make error message clearer.
569         [BZ #713]
570         * libio/iofgets.c: Treat N==1 correctly.
571         * libio/iofgets_u.c: Likewise.
572         * libio/iofgetws.c: Likewise.
573         * libio/iofgetws_u.c: Likewise.
574         * stdio-common/Makefile (tests): Add tst-fgets.
575         * stdio-common/tst-fgets.c: New file.
577 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
579         [BZ #652]
580         * posix/getconf.c: Add new option -a to print the names of
581         the current system configuration variables to stdout.
582         Based on patch from Josh Aas <josha@sgi.com>.
584 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
586         [BZ #644]
587         * sysdeps/posix/getaddrinfo.c (fls): New function.
588         (gaih_inet): Don't use ffs, use fls.  Convert address to native byte
589         order first.
590         * posix/Makefile (tests): Add tst-rfc3484.
591         * posix/tst-rfc3484.c: New file.
593         [BZ #627]
594         * libio/iofclose.c (_IO_new_fclose): Unlock the internal lock
595         before destroying it as part of the _IO_FINISH call.
596         * libio/oldiofclose.c (_IO_old_fclose): Likewise.
598         [BZ #524]
599         * sysdeps/posix/getaddrinfo.c (match_prefix): Fix matching loop if
600         number of bits is multiple of 8.
601         Patch by Fredrik Tolf <fredrik@dolda2000.com>.
603         [BZ #516]
604         * elf/dl-load.c: Report failed loading due to ELF class mismatch
605         with better words.
607         [BZ #162]
608         * manual/llio.texi (Waiting for I/O): Correct description of read
609         conditions reported by select.
611 2005-09-24  Jakub Jelinek  <jakub@redhat.com>
613         * inet/getnetgrent_r.c (innetgr): Call endfct even if result != 0.
614         Return 1 only if result == 1.  Patch by Benoit Capelle.
616 2005-09-25  Ulrich Drepper  <drepper@redhat.com>
618         [BZ #278]
619         * manual/stdio.texi (Hook Functions): Correct type of position
620         parameter of seeker and fix fallout of the change in the text.
622         [BZ #714]
623         * iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of
624         left-over bytes and store them correctly.
625         * wcsmbs/tst-mbrtowc2.c: New file.
626         * wcsmbs/Makefile (tests): Add tst-mbrtowc2.
628 2005-09-24  Roland McGrath  <roland@redhat.com>
630         * sysdeps/unix/sysv/i386/signal.S: Removed, saved in ports repository.
631         * sysdeps/unix/sysv/i386/sigreturn.S: Likewise.
633 2005-09-24  Ulrich Drepper  <drepper@redhat.com>
635         [BZ #545]
636         * locale/iso-639.def: More updates from the current spec.
638         * locale/programs/ld-address.c (address_finish): Produce better
639         error messages for invalid lang_ab use.
641         * locale/iso-639.def: Add a few updates from current spec.
643 2005-09-23  Ulrich Drepper  <drepper@redhat.com>
645         [BZ #704]
646         * locale/iso-4217.def: Replace MGF with MGA.
648         * iconvdata/jis0208.c (__jisx0208_from_ucs4_lat1): Reduce size of
649         array.
650         * iconvdata/jis0208.h (ucs4_to_jisx0208): Adjust access.
652 2004-08-13  GOTO Masanori  <gotom@debian.or.jp>
654         [BZ #395]
655         * iconvdata/jis0208.c: Remove 0x005C mapping from
656         __jisx0208_from_ucs4_lat1.
657         Reported by Fumitoshi UKAI <ukai@debian.or.jp>
659 2005-09-23  Ulrich Drepper  <drepper@redhat.com>
661         [BZ #394]
662         * libio/fmemopen.c (fmemopen_write): Return 0 instead of -1 if
663         nothing can be written.
664         * libio/iofopncook.c (_IO_cookie_write): If something went wrong,
665         set error bit.
667 2005-09-22  Ulrich Drepper  <drepper@redhat.com>
669         [BZ #281]
670         * posix/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
671         * posix/regcomp.c: Remove unnecessary uses of
672         unsigned RE_TRANSLATE_TYPE.
673         * posix/regex_internal.h: Likewise.
674         * posix/regex_internal.c: Likewise.
675         * posix/regexexec.c: Likewise.
676         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
678         [BZ #1035]
679         * locale/iso-4217.def: Replace TRL entry with TRY for new Turkish Lira.
681         [BZ #1363]
682         * nscd/nscd_getpw_r.c (nscd_getpw_r): Remove incorrectly C&Ped
683         free call in code handling detection of GC runs.
685 2005-09-22  Roland McGrath  <roland@redhat.com>
687         * elf/dl-tsd.c (__libc_dl_error_tsd): Use attribute_tls_model_ie for
688         static __thread variable.
689         From Alexandre Oliva <aoliva@redhat.com>
691         * Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command.
692         Reported by Alexandre Oliva <aoliva@redhat.com>.
694 2005-09-20  Jakub Jelinek  <jakub@redhat.com>
696         * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
698 2005-09-20  Roland McGrath  <roland@redhat.com>
700         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl.
702         [BZ #1346]
703         * elf/dl-load.c (_dl_map_object_from_fd) [HAVE_Z_RELRO]: Do relro
704         magic on __stack_prot only if [SHARED].  Skip mprotect if __stack_prot
705         lies outside the page-rounded-down relro region.
707 2005-09-19  Richard Henderson  <rth@redhat.com>
709         [BZ #1358]
710         * sysdeps/unix/alpha/sysdep.h (inline_syscall1): Copy argument(s)
711         to a temporary first.
712         (inline_syscall2, inline_syscall3, inline_syscall4): Likewise.
713         (inline_syscall5, inline_syscall6): Likewise.
715         * sysdeps/alpha/ldiv.S (lldiv): Add alias.
717 2005-09-17  Ulrich Drepper  <drepper@redhat.com>
719         [BZ #1010]
720         * sysdeps/unix/sockatmark.c (sockatmark): Use SIOCATMARK correctly.
722         [BZ #1053]
723         * debug/xtrace.sh: Add missing escape character in -? match.
724         Patch by Peter Breitenlohner <peb@mppmu.mpg.de>.
726         [BZ #1051]
727         * wctype/wctype.h: Remove stray __END_NAMESPACE_C99.
728         * stdlib/stdlib.h: Use __END_NAMESPACE_STD instead of
729         __END_NAMESPACE_C99 in one place.
730         * scripts/begin-end-check.pl: New file.
731         Patch by Ralph Loader <suckfish@ihug.co.nz>.
732         * Makefile: Add rules to run scripts/begin-end-check.pl.
734 2005-09-17  Andreas Jaeger  <aj@suse.de>
736         * timezone/zdump.c: Include ctype.h.
738 2005-09-16  Andreas Jaeger  <aj@suse.de>
740         [BZ #1047]
741         * sysdeps/unix/sysv/linux/mips/getpagesize.c: New file.
743 2005-09-16  Maciej W. Rozycki  <macro@linux-mips.org>
745         [BZ #933]
746         * sysdeps/unix/sysv/linux/mips/brk.c (__brk): Load the number of
747         the syscall immediately before invocation.
748         * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl): Likewise.
749         * sysdeps/unix/sysv/linux/mips/mips64/syscall.S (syscall): Likewise.
751         * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl): Use
752         macros to handle GP.
753         * sysdeps/unix/sysv/linux/mips/mips64/syscall.S (syscall):
754         Likewise.  Update inaccurate comments.
756 2005-09-13  Ulrich Drepper  <drepper@redhat.com>
758         * sysdeps/posix/spawni.c (__spawni): Automatically recognize some
759         more cases when we can use vfork.
761 2005-08-29  Thomas Schwinge  <schwinge@nic-nac-project.de>
763         [BZ #1261]
764         * manual/memory.texi (Hooks for Malloc): Correct prototype of
765         my_init_hook and definition of my_free_hook.
767 2005-09-12  Roland McGrath  <roland@redhat.com>
769         [BZ #1331]
770         * malloc/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
771         macro argument.
772         Reported by Matej Vela <vela@debian.org>.
774 2005-09-12  Jakub Jelinek  <jakub@redhat.com>
776         * malloc/malloc.c (struct malloc_chunk): Fix comment typo.
777         (public_cALLOc): For mmapped chunks and perturb_byte != 0,
778         don't clear SIZE_SZ bytes more than should be cleared.
780 2005-09-09  Jakub Jelinek  <jakub@redhat.com>
782         * inet/getnetgrent_r.c: Include assert.
783         (setup): Remove FUNC_NAME and ALL arguments, assume they are always
784         "setnetgrent" and 1.
785         (endnetgrent_hook): New function.
786         (internal_endnetgrent): Use it.
787         (__internal_setnetgrent_reuse): Use it.  Adjust setup caller.
788         If status is NSS_STATUS_SUCCESS, yet action is continue, call
789         endnetgrent hook.
790         (internal_getnetgrent_r): Use __nss_lookup_function rather than
791         setup.  Recompute getfct pointer after successful
792         __internal_setnetgrent_reuse.  Don't use __nss_next.
793         (innetgr): Use __nss_lookup_function instead of __nss_lookup.
794         Adjust setup caller.
795         * nss/nss_files/files-netgrp.c (_nss_files_endnetgrent): Always clear
796         data_size and cursor.  Add libnss_files_hidden_proto and
797         libnss_files_hidden_def.
798         (_nss_files_setnetgrent): Call _nss_files_endnetgrent on failure.
799         * nis/nss_nis/nis-netgrp.c (internal_endnetgrent): Always clear
800         data_size and cursor.
801         (_nss_nis_setnetgrent): Don't call internal_endnetgrent.
802         (_nss_nis_getnetgrent_r): Remove result->cursor == NULL handling.
803         * nis/nss_nisplus/nisplus-netgrp.c (internal_endnetgrent): Always clear
804         data_size and position.
805         (_nss_nisplus_setnetgrent): Don't call internal_endnetgrent.
807 2005-09-09  Ulrich Drepper  <drepper@redhat.com>
809         * nss/getent.c (netgroup_keys): Call endnetgrent.
810         (main): Call mtrace.
812         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): We don't
813         need locking for the stream.  Use feof_unlocked.
815 2005-09-09  Jakub Jelinek  <jakub@redhat.com>
817         [BZ #1318]
818         * locale/loadarchive.c (_nl_load_locale_from_archive): Free
819         normalized_codeset even if p was already normalized.
820         Reported by Jaroslav Snajdr <jsnajdr@kerio.com>.
822 2005-09-08  Roland McGrath  <roland@redhat.com>
824         * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Decode DSOCAPS
825         properly, first byte is bit number in mask.  Skip disabled caps.
827 2005-07-11  Derek R. Price  <derek@ximbiot.com>
829         [BZ #1061]
830         * sysdeps/generic/glob.c (glob): Only a 0 return from
831         getlogin_r means success, according to POSIX 1003.2.
833 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
835         [BZ #1033]
836         * time/mktime.c: Import from gnulib.
837         The following macros are now consistent with other gnulib code.
838         This does not change mktime's behavior.
839         (TYPE_IS_INTEGER): New macro.
840         (time_t_is_integer): Use it.
841         (TYPE_TWOS_COMPLEMENT): New macro.
842         (twos_complement_arithmetic): Use it.
843         (TYPE_ONES_COMPLEMENT): New macro.
844         (TYPE_MINIMUM, TYPE_MAXIMUM): Now supports signed-magnitude.
845         mktime doesn't use this, but the code now matches other gnulib code.
846         (ranged_convert): Pacify GCC 4.0 in a different way, which
847         generates a few bytes less code.
848         (ranged_convert, __mktime_internal): When calling a function via a
849         pointer P, use P () rather than (*P) (), as we now assume C89 or
850         better.
852 2005-09-07  Alexandre Oliva  <aoliva@redhat.com>
854         * timezone/test-tz.c: Update to match tzdata2005m.
855         * timezone/tst-timezone.c: Likewise.
857 2005-09-07  Ulrich Drepper  <drepper@redhat.com>
859         * posix/regexec.c (find_recover_state): Remove unnecessary
860         initialization.
861         (transit_state_bkref): Make DFA a const pointer.
862         (get_subexp): Likewise.
863         (check_arrival): Likewise.
864         (update_cur_sifted_state): Likewise.
865         (re_search_internal): Likewise.
866         (prune_impossible_nodes): Likewise.
867         (acquire_init_state_context): Likewise.
868         (proceed_next_node): Likewise.
869         (set_regs): Likewise.
870         (free_fail_stack_return): Likewise.
871         (check_arrival_expand_ecl): Mark DFA parameter as const.
872         (check_arrival_expand_ecl_sub): Likewise.
873         (check_subexp_limits): Likewise.
874         (sub_epsilon_src_nodes):  Likewise.
875         (add_epsilon_src_nodes):  Likewise.
876         (merge_state_array): Likewise.
877         (update_regs): Likewise.
878         (build_trtable): Likewise.
879         (sift_states_backward): Mark MCTX parameter as const.
880         (build_sifted_states): Likewise.
881         (update_cur_sifted_state): Likewise.
882         (sift_states_mkref): Likewise.
883         (check_arrival_expand_ecl): Mark eclosure as const.
884         (check_dst_limits_calc_pos_1): Likewise.
885         * posix/regex_internal.h (re_match_context_t): Make dfa a const
886         pointer.
888 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
890         * timezone/africa: Update from tzdata2005m.
891         * timezone/asia: Likewise.
892         * timezone/australasia: Likewise.
893         * timezone/backward: Likewise.
894         * timezone/europe: Likewise.
895         * timezone/northamerica: Likewise.
896         * timezone/southamerica: Likewise.
897         * timezone/zone.tab: Likewise.
898         * timezone/zdump.c: Update from tzcode2005m.
900         * posix/regexec.c (merge_state_with_log): Define dfa as const pointer.
901         (transit_state_sb): Likewise.
902         (transit_state_mb): Likewise.
903         (sift_states_iter_mb): Likewise.
904         (check_arrival_add_next_nodes): Likewise.
905         (check_node_accept_bytes): Change first parameter to pointer-to-const.
906         [_LIBC] (re_search_2_stub): Use mempcpy.
908         * posix/regex_internal.c (re_string_reconstruct): Avoid calling
909         mbrtowc for very simple UTF-8 case.
911 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
913         * posix/regex_internal.c (build_wcs_upper_buffer): Fix portability
914         bugs in int versus size_t comparisons.
916 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
918         * posix/regex_internal.c (re_acquire_state): Make DFA pointer arg
919         a pointer-to-const.
920         (re_acquire_state_context): Likewise.
921         * posix/regex_internal.h: Adjust prototypes.
923 2005-08-31  Jim Meyering  <jim@meyering.net>
925         * posix/regcomp.c (search_duplicated_node): Make first pointer arg
926         a pointer-to-const.
927         * posix/regex_internal.c (create_ci_newstate, create_cd_newstate,
928         register_state): Likewise.
929         * posix/regexec.c (search_cur_bkref_entry, check_dst_limits):
930         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
931         (group_nodes_into_DFAstates): Likewise.
933 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
935         * posix/regexec.c (re_search_internal): Simplify update of
936         rm_so and rm_eo by replacing "if (A == B) A += C - B;"
937         with the equivalent of "if (A == B) A = C;".
939 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
941         * posix/regcomp.c (re_compile_internal): Change third parameter type
942         to size_t.
943         (init_dfa): Likewise.  Make sure that arithmetic on pat_len doesn't
944         overflow.
945         * posix/regex_internal.h (struct re_dfa_t): Change type of nodes_alloc
946         and nodes_len to size_t.
947         * posix/regex_internal.c (re_dfa_add_node): Use size_t as type for
948         new_nodes_alloc.  Check for overflow.
950 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
952         * posix/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
953         (optimize_subexps, lower_subexp):
954         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
955         since the signed shift might overflow.  Use 1u<<31 instead.
956         * posix/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
957         Likewise.
958         * posix/regexec.c (check_dst_limits_calc_pos_1): Likewise.
959         (check_subexp_matching_top): Likewise.
960         * posix/regcomp.c (optimize_subexps, lower_subexp):
961         Use CHAR_BIT rather than 8, for clarity.
962         * posix/regexec.c (check_dst_limits_calc_pos_1):
963         (check_subexp_matching_top): Likewise.
964         * posix/regcomp.c (init_dfa): Make table_size unsigned, so that we
965         don't have to worry about portability issues when shifting it left.
966         Remove no-longer-needed test for table_size > 0.
967         * posix/regcomp.c (parse_sub_exp): Do not shift more bits than there
968         are in a word, as the resulting behavior is undefined.
969         * posix/regexec.c (check_dst_limits_calc_pos_1): Likewise;
970         in one case, a <= should have been an <, and in another case the
971         whole test was missing.
972         * posix/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
973         the standard name CHAR_BIT.
975         * posix/regex_internal.h (re_sub_match_top_t): Remove unused member
976         next_last_offset.
977         (struct re_dfa_t): Remove unused member states_alloc.
978         * posix/regcomp.c (init_dfa): Don't initialize unused members.
980 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
982         * posix/regexec.c (set_regs): Don't alloca with an unbounded size.
984         alloca modernization/simplification for regex.
985         * posix/regex.c: Remove portability cruft for alloca.  This no longer
986         needs to be at the start of the file, and can be moved into
987         regex_internal.h and simplified.
988         * posix/regex_internal.h: Include <alloca.h>.
989         (__libc_use_alloca) [!defined _LIBC]: New macro.
990         * posix/regexec.c (build_trtable): Remove "#ifdef _LIBC",
991         since the code now works outside glibc.
993 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
995         * include/regex.h: Remove use of _RE_ARGS.
997 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
999         * posix/regexec.c (find_recover_state): Change "err" to "*err".
1001 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1003         * posix/regcomp.c (regerror): Pointer args are 'restrict',
1004         as per POSIX.
1005         * posix/regex.h (regerror): Likewise.
1006         * manual/pattern.texi (POSIX Regexp Compilation): Likewise.
1007         Similarly for regcomp and regexec.  Also, first 2 args of regexec
1008         and 2nd arg of regerror are const.
1010         * posix/regex.c: Do not include <sys/types.h>, as POSIX no longer
1011         requires this.  (The code never needed it.)
1013 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
1015         * posix/regexec.c (sift_states_bkref): re_node_set_insert returns
1016         int, not reg_errcode_t.
1018         * posix/regex_internal.c (calc_state_hash): Put 'inline' before type,
1019         since some broken compilers warn about it otherwise.
1021         * posix/regcomp.c (create_initial_state): Remove duplicate decl.
1023 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
1025         * posix/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
1026         C89 or better.  All uses removed.
1028 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1030         * posix/regex.c: Prevent using C++ compilers.
1032 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
1034         * posix/regcomp.c (duplicate_node): Return new index, not an error
1035         code, and let the caller return REG_ESPACE if out of space.  This
1036         removes an uninitialied-variable warning with GCC 4.0.1, and also
1037         avoids taking the address of a local variable.  All callers
1038         changed.
1040 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1042         * include/time.h (__strptime_internal): Rename parameter to avoid
1043         bogus compiler warning.
1045 2005-08-19  Jim Meyering  <jim@meyering.net>
1047         * posix/regexec.c (proceed_next_node): Redo local variables to
1048         avoid GCC shadowing warnings.
1050 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1052         * posix/regex_internal.c (re_acquire_state): Minor code rearrangement.
1053         (re_acquire_state_context): Likewise.
1055 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
1057         * posix/regex_internal.c (re_string_realloc_buffers):
1058         (re_node_set_insert, re_node_set_insert_last, re_dfa_add_node):
1059         Rename local variables to avoid GCC shadowing warnings.
1061 2005-07-08  Eric Blake  <ebb9@byu.net>
1062             Paul Eggert  <eggert@cs.ucla.edu>
1064         * posix/regcomp.c (init_dfa): Store __btowc value in wint_t, not
1065         wchar_t.  Remove now-unnecessary cast.
1066         (build_range_exp): Likewise.
1068 2005-08-31  Bob Wilson  <bob.wilson@acm.org>
1070         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf):  Remove the
1071         exponent bias from the increment value for scaling by 2^60.
1073 2005-09-05  Alexandre Oliva  <aoliva@redhat.com>
1075         * configure.in: Compile source test file with -fPIC for -shared.
1077 2005-09-04  Ulrich Drepper  <drepper@redhat.com>
1079         * iconv/skeleton.c: Eliminate DEFINE_DIRECTION_OBJECTS macro use,
1080         it wasn't used.  Remove use of from_object and to_object variable,
1081         replace with some constants.  Adjust users.
1083         * sysdeps/i386/bits/string.h: Removed.
1085         * stdio-common/Makefile (tests): Add tst-put-error.
1086         * stdio-common/tst-put-error.c: New file.
1087         * libio/fileops.c (_IO_new_file_xsputn): If overflow fails and no more
1088         data would have to be written signal error.
1089         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
1091         * libio/fileops.c (_IO_new_file_overflow): Use NULL not 0.
1093 2005-09-02  Ulrich Drepper  <drepper@redhat.com>
1095         * elf/dl-load.c (_dl_map_object_from_fd): No need to change
1096         protection of memory used for the last segment.
1098 2005-08-22  Robert Millan  <robertmh@gnu.org>
1100         * sysdeps/mach/hurd/nfs/nfs.h: Move to ...
1101         * sysdeps/generic/nfs/nfs.h: ... here.
1103 2005-09-01  Ulrich Drepper  <drepper@redhat.com>
1105         * libio/stdio.h: Remove __wur from ungetc, sscanf, and vsscanf.
1106         Add __wur to feof{,_unlocked}, ferror{,_unlocked},
1107         fileno{,_unlocked}, and popen.
1109 2005-08-30  Ulrich Drepper  <drepper@redhat.com>
1111         * sysdeps/ieee754/flt-32/e_hypotf.c [!__STDC__]: Fix function name.
1113 2005-08-01  Bob Wilson  <bob.wilson@acm.org>
1114             Richard Sandiford  <richard@codesourcery.com>
1116         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Add missing
1117         exponent bias to the value for 2^126.
1119 2005-08-30  Jakub Jelinek  <jakub@redhat.com>
1120             Alan Modra  <amodra@bigpond.net.au>
1122         * elf/dl-addr.c (_dl_addr): Use DL_ADDR_SYM_MATCH macro.
1123         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): Define.
1124         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h: New file.
1126 2005-08-23  Ulrich Drepper  <drepper@redhat.com>
1128         * nscd/nscd.c (main): Use error while process isn't running in the
1129         background, not dbg_log.
1130         * nscd/nscd_conf.c (nscd_parse_file): Likewise.
1131         Mark messages with _().  Unify testing for database name.
1133         * nscd/connection.c (DEFAULT_DATASIZE_PER_BUCKET): Move to nscd.h.
1134         (dbs): Initialize max_db_size fields.
1135         (nscd_init): When mapping the database, use max_db_size as the
1136         mapping size even if it is bigger than the file size.
1137         * nscd/mem.c (mempool_alloc): When resizing the file make sure the
1138         limit in max_db_size is not exceeded.  Don't use mremap, just
1139         posix_fallocate is enough (according to Linus).  Use posix_fallocate
1140         correctly.
1141         * nscd/nscd.conf: Add max-db-size parameters.
1142         * nscd/nscd.h (struct database_dyn): Add max_db_size field.
1143         Define DEFAULT_MAX_DB_SIZE and DEFAULT_DATASIZE_PER_BUCKET.
1144         Temporarily define TEMP_FAILURE_RETRY_VAL here.
1145         * nscd/nscd_conf.c (nscd_parse_file): Parse max-db-size parameter
1146         and add sanity checks for it.
1148         * nscd/aicache.c (addhstaiX): Use send with MSG_NOSIGNAL not write to
1149         send reply.
1150         * nscd/connection.c (writeall): Likewise.
1151         (handle_request): Likewise.
1152         * nscd/grpcache.c (cache_addgr): Likewise.
1153         * nscd/hstcache.c (cache_addhst): Likewise.
1154         * nscd/initgrcache.c (addinitgroupsX): Likewise.
1155         * nscd/nscd.c (parse_opt): Likewise.
1156         * nscd/nscd_stat.c (send_stats): Likewise.
1157         (receive_print_stats): Likewise.
1158         * nscd/pwdcache.c (cache_addpw): Likewise.
1160         * sysdeps/unix/sysv/linux/Versions: Export inotify_* syscalls.
1162 2005-08-22  Jakub Jelinek  <jakub@redhat.com>
1164         * stdlib/bits/stdlib.h (mbstowcs): Divide __bos (__dst) by
1165         sizeof (wchar_t) rather than multiplying __len by sizeof (wchar_t).
1166         Pass __bos (__dst) / sizeof (wchar_t) to the *_chk routine.
1167         * wcsmbs/bits/wchar2.h (mbsrtowcs, mbsnrtowcs): Likewise.
1168         * debug/mbsnrtowcs_chk.c (__mbsnrtowcs_chk): Don't multiply
1169         len by sizeof (wchar_t).
1170         * debug/mbsrtowcs_chk.c (__mbsrtowcs_chk): Likewise.
1171         * debug/mbstowcs_chk.c (__mbstowcs_chk): Likewise.
1172         Fix type of SRC argument.  Pass &SRC rather than SRC to
1173         __mbsrtowcs.
1174         * debug/wcstombs_chk.c (__wcstombs_chk): Pass &SRC rather than SRC
1175         to __wcsrtombs.
1176         * debug/tst-chk1.c: Include assert.h.
1177         (do_test): Change enough array from VLA into a fixed size array.
1178         Assert that MB_CUR_MAX is <= sizeof (enough).  Use FAIL () macro
1179         instead of print error details.  Add several new tests.
1180         Kill some unused variable warnings.
1182 2005-08-21  Ulrich Drepper  <drepper@redhat.com>
1184         * resolv/res_send.c (Aerror): Fix printing IP address.
1186         * resolv/res_send.c (send_vc): Pass correct sockaddr size to connect.
1188 2005-08-19  H.J. Lu  <hongjiu.lu@intel.com>
1190         * sysdeps/ia64/fpu/libm_error.c (__libm_error_support): Don't abort.
1192 2005-08-17  Robert Love  <rml@novell.com>
1194         * sysdeps/unix/sysv/linux/sys/inotify.h: Add IN_MOVE_SELF event.
1196 2005-08-19  Bruno Haible  <bruno@clisp.org>
1198         * intl/localealias.c (read_alias_file): In case of failure, close the
1199         file descriptor and sort the array before returning.
1201 2005-08-19  Ulrich Drepper  <drepper@redhat.com>
1203         * malloc/Makefile: Link libmemusage.so with ld.so.
1204         * malloc/memusage.c: Use atomic operations for all counter and size
1205          computations.  Handle thread stacks.
1206         * sysdeps/generic/memusage.h: Define memusage_cntr_t and
1207         memusage_size_t.
1208         * sysdeps/i386/i686/memusage.h: New file.
1209         * include/atomic.h: Define atomic_max and atomic_min.
1211         * debug/tst-chk1.c: Add tests for mbstowcs and wcstombs.
1213 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
1215         [BZ #1207]
1216         * posix/regex.h: Remove spurious space-before-tab.  From gnulib.
1218 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
1220         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1221         sys/inotify.h.
1222         * sysdeps/unix/sysv/linux/sys/inotify.h: New file.
1223         * sysdeps/unix/sysv/linux/syscalls.list: Add inotify syscalls.
1225         * nscd/cache.c (prune_cache): Add more debug output.  Only for
1226         debug level 3 and higher and very verbose.
1228         * nscd/cache.c (prune_cache): Use stat64 not stat.
1229         * nscd/connections.c (nscd_init): Likewise.
1231 2005-08-10  Sergio Gelato  <Sergio.Gelato@astro.su.se>
1233         [BZ #1188]
1234         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Change assert check
1235         from (len > 0) to (len >= 0).
1237 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
1239         * nis/nis_xdr.c (_xdr_nis_result): Fix type of res variable.
1240         Reported by Thomas Schwinge.
1242 2005-08-15  Jakub Jelinek  <jakub@redhat.com>
1244         * nis/nis_subr.c (nis_leaf_of_r): Handle buflen == 0 correctly.
1246 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
1248         * nss/getent.c (more_help): Use open_memstream instead of handling
1249         memory allocation ourselves.
1251 2005-08-16  Jay Fenlason  <fenlason@redhat.com>
1253         * nss/getent.c (parse_options): change the -s option to support
1254         {database}:{search} to override /etc/resolv.conf for only the
1255         specified database.
1257 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
1259         * nscd/connections.c (main_loop_epoll): Pass NULL as event
1260         argument for epoll_ctl(EPOLL_CTL_DEL) calls.
1262         * nscd/nscd_stat.c (receive_print_stats): Really print values of
1263         thread number, paranoia, and restart interval the server is using.
1265         * argp/argp-help.c: Use _IO_vasprintf instead of vasprintf.
1266         * include/stdio.h: Add libc_hidden_proto for __vfprintf_chk.
1267         * debug/vfprintf_chk.c: Add libc_hidden_def.
1269 2005-08-08  Roland McGrath  <roland@redhat.com>
1271         * argp/argp-help.c (__argp_error): __asprintf -> vasprintf.
1272         (__argp_failure): Likewise.
1274 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
1276         * nscd/cache.c (cache_add): Commit hash table and header to disk.
1278         * nscd/mem.c (mempool_alloc): Use posix_fallocate instead of ftruncate.
1279         * nscd/connections.c (nscd_init): Likewise.
1281 2005-08-08  Jakub Jelinek  <jakub@redhat.com>
1283         * stdio-common/fxprintf.c: Include libioP.h.
1285         * posix/bits/unistd.h (confstr, getgroups, ttyname_r, gethostname,
1286         getdomainname): Add __NTH.
1287         * stdlib/bits/stdlib.h (ptsname_r, wctomb, mbstowcs, wcstombs):
1288         Likewise.
1289         (realpath): Likewise.  Use __const instead of const.  Add __restrict
1290         keywords.
1291         * socket/bits/socket2.h (recvfrom): Add __restrict keyword to __buf.
1292         * wcsmbs/bits/wchar2.h (wmemcpy, wmemmove, wmempcpy, wmemset,
1293         wcscpy, wcpcpy, wcsncpy, wcpncpy, wcscat, wcsncat, vswprintf, wcrtomb,
1294         mbsrtowcs, wcsrtombs, mbsnrtowcs, wcsnrtombs): Add __NTH.
1295         * string/bits/string3.h (__memset_ichk): Likewise.
1296         (__memcpy_ichk, __memmove_ichk, __mempcpy_ichk, __strcpy_ichk,
1297         __stpcpy_ichk, __strncpy_ichk, stpncpy, __strcat_ichk,
1298         __strncat_ichk): Likewise.  Use __const instead of const.
1299         (__stpncpy_chk): Use __const instead of const.
1300         (__stpncpy_alias): Use __REDIRECT_NTH instead of __REDIRECT.
1302 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
1303             Jakub Jelinek  <jakub@redhat.com>
1305         * nscd/mem.c (BLOCK_ALIGN_LOG, BLOCK_ALIGN, BLOCK_ALIGN_M1): Move
1306         definitions to...
1307         * nscd/nscd.h (BLOCK_ALIGN_LOG, BLOCK_ALIGN, BLOCK_ALIGN_M1): ...here.
1308         * nscd/connections.c (usekey): New enum.
1309         (check_use, verify_persistent_db): New functions.
1310         (nscd_init): If persistent database is corrupted, unlink it and
1311         recreate rather than falling back to non-persistent database.
1312         Call verify_persistent_db.  Avoid overflows in total computation.
1314 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
1316         * iconvdata/utf-16.c (PREPARE_LOOP): Minor cleanups to make code
1317         better readable.  Avoid passing var to loop function, it's not
1318         necessary at all.
1320 2005-08-07  Ulrich Drepper  <drepper@redhat.com>
1322         * elf/elf.h (DT_ALPHA_PLTRO): Use symbolic name in DT_ALPHA_PLTRO
1323         definition.
1325 2005-08-05  Ulrich Drepper  <drepper@redhat.com>
1327         * timezone/checktab.awk: Update from tzcode2005k.
1328         * timezone/private.h: Likewise.
1329         * timezone/scheck.c: Likewise.
1330         * timezone/tzselect.ksh: Likewise.
1331         * timezone/zdump.c: Likewise.
1332         * timezone/zic.c: Likewise.
1333         * timezone/africa: Update from tzdata2005k.
1334         * timezone/antarctica: Likewise.
1335         * timezone/asia: Likewise.
1336         * timezone/australasia: Likewise.
1337         * timezone/europe: Likewise.
1338         * timezone/iso3166.tab: Likewise.
1339         * timezone/leapseconds: Likewise.
1340         * timezone/northamerica: Likewise.
1341         * timezone/solar87: Likewise.
1342         * timezone/solar88: Likewise.
1343         * timezone/solar89: Likewise.
1344         * timezone/southamerica: Likewise.
1345         * timezone/zone.tab: Likewise.
1347 2005-08-05  Roland McGrath  <roland@frob.com>
1349         [BZ #1251]
1350         * mach/shortcut.awk: Ignore `weak_alias' lines.
1351         Reported by Alfred M. Szmidt <ams@gnu.org>.
1353         [BZ #1250]
1354         * sysdeps/mach/hurd/mig-reply.c (reply_port): Don't use ?: as lvalue.
1355         Reported by Alfred M. Szmidt <ams@gnu.org>.
1357 2005-08-03  Dwayne Grant McConnell  <dgm69@us.ibm.com>
1359         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s):
1360         Use +=, not =, to append.  Remove duplicate flags.
1361         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
1362         Likewise.  Fix comments.
1364 2005-08-01  Ulrich Drepper  <drepper@redhat.com>
1366         * sysdeps/unix/sysv/linux/sigwait.c (do_sigwait): Restart system
1367         call if it returned EINTR.
1369 2005-07-31  Ulrich Drepper  <drepper@redhat.com>
1371         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Move
1372         helper variable into .data.rel.ro.  Simplify the code.  Extend
1373         comment to explain prelinking.
1375 2005-07-31  Andreas Jaeger  <aj@suse.de>
1377         * include/bits/syslog.h: New file.
1379 2005-07-30  Ulrich Drepper  <drepper@redhat.com>
1381         * elf/dl-load.c [__WORDSIZE==64] (FILEBUF_SIZE): Adjust the value
1382         up.  We have more program header entries now and the note section
1383         was normally not loaded.
1385         * nis/nis_subr.c: Some minor code cleanups.
1387 2005-07-29  Ulrich Drepper  <drepper@redhat.com>
1389         * misc/bits/syslog.h: New file.
1390         * misc/sys/syslog.h: Include <bits/syslog.h> for fortification.
1391         * misc/Makefile (headers): Add bits/syslog.h.
1392         * include/sys/syslog.h: Add __vsyslog_chk prototype and hidden_proto.
1393         * sysdeps/generic/syslog.c: Change vsyslog function to __vsyslog_chk.
1394         Call __vfprintf_chk if necessary.  Make vsyslog a wrapper.  Add
1395         __syslog_chk.
1396         * misc/Versions: Export __syslog_chk and __vsyslog_chk.
1398 2005-07-28  Thomas Schwinge  <schwinge@nic-nac-project.de>
1400         [BZ #1137]
1401         * misc/error.c [_LIBC]: Include <stdbool.h> and <stdint.h>.
1403 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
1405         * nis/nis_xdr.c: Help gcc to avoid generating unnecessary wrapper
1406         functions.
1408 2005-07-28  Jakub Jelinek  <jakub@redhat.com>
1410         * stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf
1411         call.
1412         * gmon/gmon.c (write_gmon): Use __snprintf rather than snprintf.
1414 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
1416         * nis/nis_file.c: Rewrite the two pairs of functions into wrappers
1417         around a pair of new, generalized functions.  22% size reduction.
1419 2005-07-27  Ulrich Drepper  <drepper@redhat.com>
1421         * nis/nis_xdr.c: Remove unnecessary cast which might hide bugs.
1422         Rearrange code.  This reduces the code size 10%.
1424 2005-07-26  Jakub Jelinek  <jakub@redhat.com>
1426         * misc/error.c (error_tail): Fix a comment typo.
1428 2005-07-25  Ulrich Drepper  <drepper@redhat.com>
1430         * po/zh_TW.po: Update from translation team.
1432         * debug/mbstowcs_chk.c: New file.
1433         * debug/wcstombs_chk.c: New file.
1434         * debug/Makefile (routines): Add mbstowcs_chk and wcstombs_chk.
1435         * debug/Versions: Add __mbstowcs_chk and __wcstombs_chk.
1436         * stdlib/bits/stdlib.h: Add definitions for mbstowcs and wcstombs.
1438         * wcsmbs/bits/wchar2.h (mbsrtowcs): Pretty printing.
1440 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
1442         * string/test-memset.c (test_main): Use negative byte value in
1443         test.
1445         * string/test-memset.c (do_one_test): Compare effect of call, not
1446         only return value.
1447         Add a few casts to avoid warnings.
1449 2005-07-24  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
1451         * sysdeps/sh/memset.S (memset): Correct 2nd argument handling.
1453 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
1455         [BZ #1125]
1456         * posix/Makefile (tests): Add tst-execvp4.
1457         * posix/tst-execvp4.c: New file.
1459 2005-07-24  Jakub Jelinek  <jakub@redhat.com>
1461         [BZ #1125]
1462         * posix/execvp.c (execvp): Change path_malloc to
1463         char *, free that pointer on failure.
1465 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
1467         * wcsmbs/bits/wchar2.h: Use __FILE not FILE.
1468         * wcsmbs/Makefile: Add rules to build and run tst-wchar-h.
1469         * wcsmbs/tst-wchar-h.c: New file.
1471 2005-07-22  Ulrich Drepper  <drepper@redhat.com>
1473         * stdio-common/fxprintf.c (__fxprintf): Define variable more local.
1475 2005-07-22  Jakub Jelinek  <jakub@redhat.com>
1477         * wcsmbs/bits/wchar2.h (__vfwprintf_chk, __vwprintf_chk): Use
1478         __gnuc_va_list rather than _G_va_list.
1480 2005-07-22  Roland McGrath  <roland@redhat.com>
1482         [BZ #869]
1483         * Makerules ($(objpfx)stubs): Fix last change.
1485 2005-07-21  Roland McGrath  <roland@redhat.com>
1487         * nscd/Makefile ($(objpfx)nscd): Pass $(nscd-cflags) to $(LINK.o).
1489         * stdlib/Makefile (headers): Move bits/wchar.h to ...
1490         * wcsmbs/Makefile (headers): ... here.  Add bits/wchar2.h too.
1492 2005-07-21  Jakub Jelinek  <jakub@redhat.com>
1494         * wcsmbs/bits/wchar2.h (swprintf): Remove format argument.
1495         * debug/tst-chk1.c (do_test): Add test for swprintf with format
1496         being the last argument.
1498 2005-07-21  Thorsten Kukuk  <kukuk@suse.de>
1500         * debug/getgroups_chk.c (__getgroups_chk): Fix return value.
1502         * stdio-common/fxprintf.c: Include string.h.
1504 2005-07-20  Ulrich Drepper  <drepper@redhat.com>
1506         [BZ #1138]
1507         * sysdeps/x86_64/fpu/libm-test-ulps: Adjust expected atan2f results.
1508         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
1509         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
1511 2005-07-20  Bob Wilson  <bob.wilson@acm.org>
1512             Darin Petkov  <darin@tensilica.com>
1514         [BZ #1138]
1515         * sysdeps/ieee754/flt-32/e_atan2f.c (pi_lo): Correct exponent value.
1517 2005-07-20  Jakub Jelinek  <jakub@redhat.com>
1519         * include/stdio.h (__fxprintf): Remove wfmt argument.
1520         * stdio-common/fxprintf.c: Include assert.h, ctype.h and wchar.h.
1521         (__fxprintf): Remove wfmt argument, create wfmt format string on
1522         the fly from fmt.
1523         * argp/argp-fmtstream.c: Adjust all __fxprintf callers.
1524         * argp/argp-help.c: Likewise.
1525         * assert/assert-perr.c: Likewise.
1526         * assert/assert.c: Likewise.
1527         * gmon/gmon.c: Likewise.
1528         * inet/rcmd.c: Likewise.
1529         * malloc/obstack.c: Likewise.
1530         * misc/error.c: Likewise.
1531         * misc/getpass.c: Likewise.
1532         * posix/getopt.c: Likewise.
1533         * resolv/res_hconf.c: Likewise.
1534         * stdio-common/perror.c: Likewise.
1535         * stdio-common/psignal.c: Likewise.
1536         * stdlib/fmtmsg.c: Likewise.
1537         * sunrpc/auth_unix.c: Likewise.
1538         * sunrpc/clnt_perr.c: Likewise.
1539         * sunrpc/clnt_tcp.c: Likewise.
1540         * sunrpc/clnt_udp.c: Likewise.
1541         * sunrpc/clnt_unix.c: Likewise.
1542         * sunrpc/svc_simple.c: Likewise.
1543         * sunrpc/svc_tcp.c: Likewise.
1544         * sunrpc/svc_udp.c: Likewise.
1545         * sunrpc/svc_unix.c: Likewise.
1546         * sunrpc/xdr.c: Likewise.
1547         * sunrpc/xdr_array.c: Likewise.
1548         * sunrpc/xdr_rec.c: Likewise.
1549         * sunrpc/xdr_ref.c: Likewise.
1550         * sysdeps/generic/wordexp.c: Likewise.
1552 2005-07-20  Ulrich Drepper  <drepper@redhat.com>
1554         * wcsmbs/bits/wchar2.h: Add definitions for wcrtomb, mbsrtowcs,
1555         wcsrtombs, mbsnrtowcs, and wcsnrtombs.
1556         * debug/Makefile (routines): Add wcrtomb_chk, mbsrtowcs_chk,
1557         wcsrtombs_chk, mbsnrtowcs_chk, and wcsnrtombs_chk.
1558         * debug/Versions: Add __wcrtomb_chk, __mbsrtowcs_chk,
1559         __wcsrtombs_chk, __mbsnrtowcs_chk, and __wcsnrtombs_chk.
1560         * debug/tst-chk1.c: Add tests for new functions.
1561         * debug/mbsnrtowcs_chk.c: New file.
1562         * debug/mbsrtowcs_chk.c: New file.
1563         * debug/wcrtomb_chk.c: New file.
1564         * debug/wcsnrtombs_chk.c: New file.
1565         * debug/wcsrtombs_chk.c: New file.
1567 2005-07-19  Ulrich Drepper  <drepper@redhat.com>
1569         * stdio-common/Makefile (aux): Add fxprintf.
1570         * stdio-common/fxprintf.c: New file.
1571         * include/stdio.h: Add declaration for __fxprintf.
1572         * argp/argp-fmtstream.c: Use __fxprintf instead of inline stream
1573         orientation test and two separate function calls.
1574         * argp/argp-help.c: Likewise.
1575         * assert/assert-perr.c: Likewise.
1576         * assert/assert.c: Likewise.
1577         * gmon/gmon.c: Likewise.
1578         * inet/rcmd.c: Likewise.
1579         * malloc/obstack.c: Likewise.
1580         * misc/error.c: Likewise.
1581         * misc/getpass.c: Likewise.
1582         * posix/getopt.c: Likewise.
1583         * resolv/res_hconf.c: Likewise.
1584         * stdio-common/perror.c: Likewise.
1585         * stdio-common/psignal.c: Likewise.
1586         * stdlib/fmtmsg.c: Likewise.
1587         * sunrpc/auth_unix.c: Likewise.
1588         * sunrpc/clnt_perr.c: Likewise.
1589         * sunrpc/clnt_tcp.c: Likewise.
1590         * sunrpc/clnt_udp.c: Likewise.
1591         * sunrpc/clnt_unix.c: Likewise.
1592         * sunrpc/svc_simple.c: Likewise.
1593         * sunrpc/svc_tcp.c: Likewise.
1594         * sunrpc/svc_udp.c: Likewise.
1595         * sunrpc/svc_unix.c: Likewise.
1596         * sunrpc/xdr.c: Likewise.
1597         * sunrpc/xdr_array.c: Likewise.
1598         * sunrpc/xdr_rec.c: Likewise.
1599         * sunrpc/xdr_ref.c: Likewise.
1600         * sysdeps/generic/wordexp.c: Likewise.
1602         [BZ #1137]
1603         * misc/Makefile: Add rules to build and run tst-error1.
1604         * misc/tst-error1.c: New file.
1605         * misc/error.c: Fix memory leak and possibly endless loop.
1607         * configure.in: Check for -fstack-protector gcc option.
1608         * config.make.in (have-ssp): Add template.
1609         * nscd/Makefile (nscd-cflags): Add -fstack-protector if supported.
1611         * nscd/nscd.c (main): Don't ignore result of chdir call.
1613 2005-07-18  Roland McGrath  <roland@redhat.com>
1615         [BZ #869]
1616         * Makerules ($(objpfx)stubs): Do cd into $(objdir) to reduce size of
1617         objdump command line.
1619 2005-07-18  Ulrich Drepper  <drepper@redhat.com>
1621         * nscd/Makefile (nscd-cflags): Add _FORTIFY_SOURCE.
1623         * nscd/connections.c: Fix a few wur warnings.
1625         [BZ #1113]
1626         * nscd/grpcache.c (cache_addgr): Use correct maximum for group ID
1627         length.  Patch by Ivan Gyurdiev <ivg2@cornell.edu>.
1629         * debug/confstr_chk.c: New file.
1630         * debug/getdomainname_chk.c: New file.
1631         * debug/getgroups_chk.c: New file.
1632         * debug/gethostname_chk.c: New file.
1633         * debug/getlogin_r_chk.c: New file.
1634         * debug/ttyname_r_chk.c: New file.
1635         * posix/bits/unistd.h: Add definitions for new debug versions.
1636         * debug/tst-chk1.c: Add tests for new functions.
1637         * debug/Versions: Export new functions.
1638         * debug/Makefile (routines): Add new files.
1640         * stdlib/bits/stdlib.h: Fix typo.
1642 2005-07-13  Thorsten Kukuk  <kukuk@suse.de>
1644         * manual/Makefile (libc/index.html): Depend on dir-add.texi.
1646 2005-07-15  Ulrich Drepper  <drepper@redhat.com>
1648         * stdlib/bits/stdlib.h: Use __REDIRECT_NTH instead of __REDIRECT
1649         where necessary.
1650         * wcsmbs/bits/wchar2.h: Likewise.
1652 2005-07-15  Andreas Jaeger  <aj@suse.de>
1654         * debug/Makefile (tst-lfschk3-ENV): New, set locale.
1655         (tst-lfschk2-ENV): New.
1656         (tst-lfschk1-ENV): New.
1657         (tst-chk3-ENV): New.
1658         (tst-chk2-ENV): New.
1659         (tst-chk1-ENV): New.
1661         [BZ #1079]
1662         * include/stdlib.h: Remove malloc attribute from __posix_memalign.
1663         * stdlib/stdlib.h: Likewise.
1665 2005-07-15  Ulrich Drepper  <drepper@redhat.com>
1667         * wcsmbs/bits/wchar2.h: New file.
1668         * include/bits/wchar2.h: New file.
1669         * wcsmbs/wchar.h: Include <bits/wchar2.h> if fortification is
1670         requested.
1671         * wcsmbs/wcsncpy.c: Add __wcsncpy alias.
1672         * string/bits/string3.h: Add fortified stpncpy definitions.
1673         * sysdeps/generic/stpncpy_chk.c: New file.
1674         * libio/vswprintf.c: Move _IO_wstrnfile definition to strfile.h.
1675         Export _IO_wstrn_jumps.
1676         * libio/strfile.h: Define _IO_wstrnfile and declare _IO_wstrn_jumps.
1677         * include/wchar.h: Declare __wcsncpy and __vswprintf_chk.
1678         * debug/fgetws_chk.c: New file.
1679         * debug/fgetws_u_chk.c: New file.
1680         * debug/fwprintf_chk.c: New file.
1681         * debug/swprintf_chk.c: New file.
1682         * debug/vfwprintf_chk.c: New file.
1683         * debug/vswprintf_chk.c: New file.
1684         * debug/vwprintf_chk.c: New file.
1685         * debug/wcpcpy_chk.c: New file.
1686         * debug/wcpncpy_chk.c: New file.
1687         * debug/wcscat_chk.c: New file.
1688         * debug/wcscpy_chk.c: New file.
1689         * debug/wcsncat_chk.c: New file.
1690         * debug/wcsncpy_chk.c: New file.
1691         * debug/wmemcpy_chk.c: New file.
1692         * debug/wmemmove_chk.c: New file.
1693         * debug/wmempcpy_chk.c: New file.
1694         * debug/wmemset_chk.c: New file.
1695         * debug/wprintf_chk.c: New file.
1696         * debug/tst-chk1.c: Add tests for new functions.
1697         * debug/Versions: Export new functions.
1698         * debug/Makefile (routines): Add new functions.
1700 2005-07-13  Ulrich Drepper  <drepper@redhat.com>
1702         * nscd/nscd_helper.c: Add a few __builtin_expect.
1704         [BZ #1080]
1705         * nscd/connections.c (send_ro_fd): Make sure BUF is aligned correctly.
1706         * nscd/nscd_helper.c (wait_on_socket): New function.
1707         (get_mapping): Use wait_on_socket instead of poll.  The former handles
1708         EINTR of poll correctly.
1709         (__nscd_open_socket): Likewise.
1710         (get_mapping): Make sure BUF is aligned correctly.
1711         (get_mapping): Use munmap on correct pointer.
1713 2005-07-12  Ulrich Drepper  <drepper@redhat.com>
1715         * include/libc-symbols.h: Define macros for librt hidden symbols.
1716         * include/time.h: Add librt_hidden_proto definition for clock_gettime.
1717         * sysdeps/generic/clock_gettime.c: Add librt_hidden_def.
1718         * sysdeps/unix/clock_gettime.c: Likewise.
1720         * stdlib/bits/stdlib.h: New file.
1721         * stdlib/stdlib.h: Include <bits/stdlib.h> if fortification is
1722         requested.
1723         * Makefile (headers): Add bits/stdlib.h.
1724         * include/bits/stdlib.h: New file.
1725         * debug/Depend: New file.
1726         * debug/ptsname_r_chk.c: New file.
1727         * debug/realpath_chk.c: New file.
1728         * debug/wctomb_chk.c: New file.
1729         * debug/Makefile (routines): Add ptsname_r_chk, realpath_chk, and
1730         wctomb_chk.
1731         * debug/Versions: Export __ptsname_r_chk, __realpath_chk, and
1732         __wctomb_chk.
1733         * debug/tst-chk1.c: Add tests for __ptsname_r_chk, __realpath_chk, and
1734         __wctomb_chk.
1736 2005-07-12  Jakub Jelinek  <jakub@redhat.com>
1738         [BZ #1106]
1739         * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c: Include not-cancel.h.
1740         (has_cpuclock): Use open_not_cancel_2 instead of open, read_not_cancel
1741         instead of read and close_not_cancel_no_status instead of close.
1743         [BZ #1106]
1744         * sysdeps/s390/s390-64/bcopy.S (__bcopy): Use
1745         HIDDEN_BUILTIN_JUMPTARGET to jump to memmove.
1747 2005-06-27  Carlos O'Donell  <carlos@systemhalted.org>
1749         * posix/regcomp.c (re_compile_internal): Call __libc_lock_init
1750         after init_dfa.
1752 2005-07-08  Ulrich Drepper  <drepper@redhat.com>
1754         * sysdeps/x86_64/fpu/s_sincosl.S: Use retq not ret.  Remove
1755         alignment.
1756         * sysdeps/x86_64/fpu/s_sincos.S: New file.
1758         * include/fenv.h: Add libm_hidden_proto for fesetround and
1759         feholdexcept.
1760         * sysdeps/alpha/fpu/feholdexcpt.c: Add libm_hidden_def.
1761         * sysdeps/alpha/fpu/fesetround.c: Likewise.
1762         * sysdeps/generic/feholdexcpt.c: Likewise.
1763         * sysdeps/generic/fesetround.c: Likewise.
1764         * sysdeps/i386/fpu/feholdexcpt.c: Likewise.
1765         * sysdeps/i386/fpu/fesetround.c: Likewise.
1766         * sysdeps/ia64/fpu/feholdexcpt.c: Likewise.
1767         * sysdeps/ia64/fpu/fesetround.c: Likewise.
1768         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
1769         * sysdeps/powerpc/fpu/fesetround.c: Likewise.
1770         * sysdeps/s390/fpu/feholdexcpt.c: Likewise.
1771         * sysdeps/s390/fpu/fesetround.c: Likewise.
1772         * sysdeps/sh/sh4/fpu/feholdexcpt.c: Likewise.
1773         * sysdeps/sh/sh4/fpu/fesetround.c: Likewise.
1774         * sysdeps/sparc/fpu/feholdexcpt.c: Likewise.
1775         * sysdeps/sparc/fpu/fesetround.c: Likewise.
1776         * sysdeps/x86_64/fpu/feholdexcpt.c: Likewise.
1777         * sysdeps/x86_64/fpu/fesetround.c: Likewise.
1778         * sysdeps/generic/s_significand.c (__significand): Use __ilogb not
1779         ilogb.
1780         * sysdeps/generic/s_significandf.c (__significandf): Use __ilogbf
1781         not ilogbf.
1782         * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and
1783         __cos, not sin and cos.
1785 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
1787         * resolv/res_send.c (send_dg): Recognize referral results and
1788         treat them as server errors.
1789         Based on a patch by Jason Vas Dias <jvdias@redhat.com>.
1791 2005-07-08  Carlos O'Donell  <carlos@systemhalted.org>
1793         * sysdeps/hppa/setjmp.S (__sigsetjmp): Use %r1 not %r19.
1795         * sysdeps/hppa/add_n.s (__mpn_add_n): Use sr0 or r0, not 0.
1796         * sysdeps/hppa/lshift.s (__mpn_lshift): Likewise.
1797         * sysdeps/hppa/rshift.s (__mpn_rshift): Likewise.
1798         * sysdeps/hppa/sub_n.s (__mpn_sub_n): Likewise.
1799         * sysdeps/hppa/udiv_qrnnd.s (__udiv_qrnnd): Likewise.
1800         * sysdeps/hppa/hppa1.1/udiv_qrnnd.s (__udiv_qrnnd): Likewise.
1802 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
1804         * sysdeps/generic/s_ctanh.c (__ctanh): Handle case of zero den better.
1805         * sysdeps/generic/s_ctanhf.c (__ctanhf): Likewise.
1806         * sysdeps/generic/s_ctanhl.c (__ctanhl): Likewise.
1807         * sysdeps/generic/s_ctan.c (__ctan): Likewise.
1808         * sysdeps/generic/s_ctanf.c (__ctanf): Likewise.
1809         * sysdeps/generic/s_ctanl.c (__ctanl): Likewise.
1811 2005-04-13  H.J. Lu  <hongjiu.lu@intel.com>
1813         [BZ #974]
1814         * csu/elf-init.c (__preinit_array_start): Take int, char **, char **.
1815         (__preinit_array_end): Likewise.
1816         (__init_array_start): Likewise.
1817         (__init_array_end): Likewise.
1818         (__libc_csu_init): Take int argc, char **argv, char **envp.
1819         Call preinit_array and init_array with argc, argv, envp.
1820         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Remove
1821         INIT_MAIN_ARGS.
1822         * sysdeps/powerpc/elf/libc-start.c (INIT_MAIN_ARGS): Removed.
1823         * elf/Makefile (distribute): Add tst-array5.c, tst-array5-static.c,
1824         tst-array5dep.c, and tst-array5.exp.
1825         (tests): Add tst-array5.
1826         (tests-static): Add tst-array5-static.
1827         ($(objpfx)tst-array5): New target.
1828         ($(objpfx)tst-array5.out): Likewise.
1829         ($(objpfx)tst-array5-static.out): Likewise.
1830         * elf/tst-array5-static.c: New file.
1831         * elf/tst-array5-static.exp: Likewise.
1832         * elf/tst-array5.c: Likewise.
1833         * elf/tst-array5.exp: Likewise.
1834         * elf/tst-array5dep.c: Likewise.
1836 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
1838         * sysdeps/unix/sysv/linux/bits/sched.h: Adjust clone prototype.
1840 2005-07-05  Jakub Jelinek  <jakub@redhat.com>
1842         * elf/stackguard-macros.h (STACK_CHK_GUARD): Fix s390/s390x definition.
1843         Reported by Ulrich Weigand <uweigand@de.ibm.com>.
1845         * elf/stackguard-macros.h (STACK_CHK_GUARD): Add ia64 definition.
1847 2005-07-06  Ulrich Drepper  <drepper@redhat.com>
1849         * elf/dl-error.c (_dl_signal_error): When testing for executable
1850         being relocated, take into account that nothing might even be loaded.
1852         * elf/dl-reloc.c [PROF] (_dl_relocate_object): Define
1853         consider_profiling always to zero.  Don't count of compiler to
1854         remove unreached if block.
1855         * sysdeps/x86_64/dl-trampoline.S [PROF] (_dl_runtime_profile):
1856         Don't compile.
1857         * sysdeps/i386/dl-trampoline.S [PROF] (_dl_runtime_profile): Likewise.
1858         * sysdeps/ia64/dl-trampoline.S [PROF] (_dl_runtime_profile): Likewise.
1859         * sysdeps/s390/s390-64/dl-trampoline.S [PROF] (_dl_runtime_profile):
1860         Likewise.
1861         * sysdeps/s390/s390-32/dl-trampoline.S [PROF] (_dl_runtime_profile):
1862         Likewise.
1863         * sysdeps/powerpc/powerpc64/dl-trampoline.S [PROF]
1864         (_dl_profile_resolve): Likewise.
1865         * sysdeps/powerpc/powerpc32/dl-trampoline.S [PROF]
1866         (_dl_profile_resolve): Likewise.
1867         * gmon/Makefile: Add rules to build and run tst-profile-static.
1868         * gmon/tst-profile-static.c: New file.
1869         * Makeconfig (+link-static): Allow passing program-specific flags.
1871 2005-07-05  Thorsten Kukuk  <kukuk@suse.de>
1873         [BZ #1111]
1874         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Check if NSS
1875         module provides getgrgid_r.
1876         (getgrnam_plusgroup): Preserve original return value.
1877         * nis/nss_compat/compat-pwd.c (getpwnam_plususer): Preserve
1878         original return value.
1879         * nis/nss_compat/compat-spwd.c (getspnam_plususer): Likewise.
1881 2005-07-05  Ulrich Drepper  <drepper@redhat.com>
1883         [BZ #1101]
1884         * posix/regex_internal.c (build_wcs_buffer): Use MB_LEN_MAX not
1885         MB_CUR_MAX.
1886         (build_wcs_upper_buffer): Likewise.
1888         * csu/elf-init.c (__libc_csu_fini): Pretty printing.
1890 2005-07-02  Roland McGrath  <roland@redhat.com>
1892         * NEWS: Note LinuxThreads removal.
1893         * manual/install.texi (Installation): Don't mention linuxthreads.
1894         (Configuring and compiling): Don't use linuxthreads as example.
1896         * sysdeps/unix/sysv/linux/configure.in: Check for nptl add-on only,
1897         not linuxthreads.
1898         * sysdeps/unix/sysv/linux/configure: Regenerated.
1899         * resolv/Depend: Add nptl.
1900         * rt/Depend: Likewise.
1902         * linuxthreads, linuxthreads_db: Directories removed (preserved in
1903         ports repository).
1905 2005-06-27  Jakub Jelinek  <jj@ultra.linux.cz>
1907         [BZ #1037]
1908         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: -mv8 is deprecated,
1909         use -mcpu=v8.
1911 2005-06-16  Jakub Jelinek  <jakub@redhat.com>
1913         [BZ #1016]
1914         * sysdeps/ia64/strlen.S (strlen): Change l2 into a local label.
1916 2005-06-23  Thorsten Kukuk  <kukuk@suse.de>
1918         [BZ #1109]
1919         * nscd/nscd_stat.c (receive_print_stats): Replace YESSTR/NOSTR
1920         with own translation.
1922 2005-06-25  Jakub Jelinek  <jakub@redhat.com>
1924         [BZ #1097]
1925         * sunrpc/xdr.c (xdr_hyper, xdr_u_hyper): When decoding, cast
1926         t2 to uint32_t instead of ulong.
1927         * sunrpc/Makefile (tests): Add tst-xdrmem.
1928         * sunrpc/tst-xdrmem.c: New test.
1930         * Versions.def (ld): Add GLIBC_2.4.
1931         * configure.in: Add --enable-stackguard-randomization option.
1932         (ENABLE_STACKGUARD_RANDOMIZE): New define.
1933         * config.h.in (ENABLE_STACKGUARD_RANDOMIZE): Add.
1934         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include stdint.h.
1935         (_dl_setup_stack_chk_guard): New inline function.
1936         * sysdeps/generic/dl-osinfo.h: Include stdint.h.
1937         (_dl_setup_stack_chk_guard): New inline function.
1938         * elf/rtld.c (__stack_chk_guard): New variable.
1939         (dl_main): Remove all traces of TLS_INIT_TP_EXPENSIVE.
1940         Set __stack_chk_guard to _dl_setup_stack_chk_guard (),
1941         use THREAD_SET_STACK_GUARD if defined.
1942         * elf/Versions (ld): Export __stack_chk_guard@@GLIBC_2.4.
1943         * sysdeps/generic/libc-start.c (__stack_chk_guard): New variable.
1944         (__libc_start_main): Set __stack_chk_guard to
1945         _dl_setup_stack_chk_guard (), use THREAD_SET_STACK_GUARD if defined.
1946         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Remove all
1947         traces of TLS_INIT_TP_EXPENSIVE.
1948         * debug/Versions (libc): Export __stack_chk_fail@@GLIBC_2.4.
1949         * debug/Makefile (routines): Add stack_chk_fail.
1950         (static-only-routines): Add stack_chk_fail_local.
1951         * debug/stack_chk_fail_local.c: New file.
1952         * debug/stack_chk_fail.c: New file.
1953         * elf/Makefile: Add rules to build and run tst-stackguard1{,-static}
1954         tests.
1955         * elf/tst-stackguard1.c: New file.
1956         * elf/tst-stackguard1-static.c: New file.
1957         * elf/stackguard-macros.h: New file.
1959 2005-06-21  Ulrich Drepper  <drepper@redhat.com>
1961         * resource/Makefile (tests): Add tst-getrlimit.
1962         * resource/tst-getrlimit.c: New file.
1964         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTPRIO): Fix typo.
1965         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
1966         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
1968 2005-06-20  Ulrich Drepper  <drepper@redhat.com>
1970         * nscd/nscd.init: Get more in line with lsb3.
1971         * nscd/nscd.c: Adjust some error codes to fit in better with lsb3.
1972         * nscd/connections.c: Likewise.
1974 2005-06-20  Jakub Jelinek  <jakub@redhat.com>
1976         [BZ #653]
1977         * sysdeps/unix/sysv/linux/sys/quota.h: Add definitions and types for
1978         _LINUX_QUOTA_VERSION >= 2.
1979         (_LINUX_QUOTA_VERSION): Define if not yet defined.
1981         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_NICE,
1982         RLIMIT_RTPRIO): Add.
1983         (RLIMIT_NLIMITS): Adjust.
1984         * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIMIT_NICE,
1985         RLIMIT_RTPRIO): Add.
1986         (RLIMIT_NLIMITS): Adjust.
1987         * sysdeps/unix/sysv/linux/mips/bits/resource.h (RLIMIT_NICE,
1988         RLIMIT_RTPRIO): Add.
1989         (RLIMIT_NLIMITS): Adjust.
1990         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIMIT_NICE,
1991         RLIMIT_RTPRIO): Add.
1992         (RLIMIT_NLIMITS): Adjust.
1994 2005-06-17  Ulrich Drepper  <drepper@redhat.com>
1996         [BZ #1106]
1997         * time/mktime.c: Always include <string.h> for prototype of
1998         implicitly used memcpy.
2000         [BZ #1104]
2001         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
2002         (truncate64): Use __truncate, not truncate.
2003         (__have_no_truncate64): Renamed from have_no_truncate64.
2004         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c
2005         (__have_no_truncate64): Renamed from have_no_truncate64.
2007         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ulps for complex
2008         float functions for gcc 4.
2010 2005-06-10  Jakub Jelinek  <jakub@redhat.com>
2012         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_runtime_setup):
2013         Handle prelinked libraries and binaries with new style PLT.
2015 2005-06-07  Jakub Jelinek  <jakub@redhat.com>
2017         * elf/elf.h (R_PPC_REL16, R_PPC_REL16_LO, R_PPC_REL16_HI,
2018         R_PPC_REL16_HA): Define.
2020 2005-06-14  Alan Modra  <amodra@bigpond.net.au>
2022         * config.h.in (HAVE_ASM_PPC_REL16): Add.
2023         * elf/elf.h (DT_PPC_GOT, DT_PPC_NUM): Define.
2024         * elf/tls-macros.h (PowerPC32): Include config.h.  Add variants of
2025         TLS_IE, TLS_LD and TLS_GD for new PLT/GOT layout.
2026         * sysdeps/powerpc/powerpc32/configure.in: New file,
2027         * sysdeps/powerpc/powerpc32/dl-dtprocnum.h: New file.
2028         * sysdeps/powerpc/powerpc32/dl-machine.h (DT_PPC): Define.
2029         (ppc_got): New inline function.
2030         (elf_machine_dynamic): Use ppc_got.  Add attribute const.
2031         (elf_machine_load_address): Add attribute const.  Don't use int vars.
2032         Use bcl rather than bl to save trashing branch target stack.  Use
2033         elf_machine_dynamic rather than duplicating code here.
2034         (elf_machine_runtime_setup): New inline function replacing define.
2035         Handle new PLT.
2036         (elf_machine_fixup_plt): Handle new PLT.
2037         (elf_machine_rela): Likewise.
2038         * sysdeps/powerpc/powerpc32/sysdep.h: Include config.h.
2039         (CALL_MCOUNT): Don't set up counter vars.
2040         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Correct comment.
2041         * sysdeps/powerpc/powerpc32/elf/start.S (start_addressesp): Don't
2042         define when HAVE_ASM_PPC_REL16.
2043         (_start): Add HAVE_ASM_PPC_REL16 code.
2044         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Don't bl
2045         into the GOT when HAVE_ASM_PPC_REL16.
2046         * sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
2047         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Ditto.
2048         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S (__ceil): Likewise.
2049         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S (__ceilf): Likewise.
2050         * sysdeps/powerpc/powerpc32/fpu/s_floor.S (__floor): Likewise.
2051         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S (__floorf): Likewise.
2052         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Likewise.
2053         * sysdeps/powerpc/powerpc32/fpu/s_rint.S (__rint): Likewise.
2054         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S (__rintf): Likewise.
2055         * sysdeps/powerpc/powerpc32/fpu/s_round.S (__round): Likewise.
2056         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S (__roundf): Likewise.
2057         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S (__trunc): Likewise.
2058         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S (__truncf): Likewise.
2059         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp):
2060         Likewise.
2061         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S (__brk): Likewise.
2062         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
2063         (__getcontext): Likewise.
2064         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
2065         (__setcontext): Likewise.
2066         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
2067         (__swapcontext): Likewise.
2068         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (stackblock):
2069         Comment.
2070         (__socket): Bomb if NARGS >= 7.  Invoke CGOTSETUP and CGOTRESTORE.
2072 2005-06-17  Ulrich Drepper  <drepper@redhat.com>
2074         [BZ #1106]
2075         * sysdeps/posix/sigignore.c: Include <string.h> to tell the compiler
2076         to use __GI_memset.
2077         * sysdeps/posix/signal.c: Likewise.
2078         * sysdeps/posix/sigset.c: Likewise.
2079         * sysdeps/posix/sysv_signal.c: Likewise.
2080         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
2081         * sysdeps/unix/sysv/linux/sysctl.c: Likewise.
2082         * sysdeps/unix/sysv/linux/system.c: Likewise.
2084 2005-06-15  Jakub Jelinek  <jakub@redhat.com>
2086         [BZ #1088]
2087         * hesiod/hesiod.c (hesiod_init): Don't check for ctx->classes[0] == 0
2088         or both classes equal here.
2089         (parse_config_file): If both classes are equal, clear the second one.
2091 2005-06-08  Karl Kelley  <kekelley@iastate.edu>
2093         [BZ #1088]
2094         * hesiod/hesiod_p.h (struct hesiod_p): Add classes array.
2095         * hesiod/hesiod.c (hesiod_init): Initialize classes.  Fail if no
2096         valid classes were given or if both are equal.
2097         (hesiod_resolve): Use ctx->classes instead of hardcoded C_IN
2098         and C_HS order.
2099         (parse_config_file): Handle classes keyword.
2100         * hesiod/README.hesiod: Mention addition of the classes keyword.
2102 2005-06-14  Ulrich Drepper  <drepper@redhat.com>
2104         [BZ #1085]
2105         * configure.in: Add test for availability of libaudit.
2106         * config.h.in: Define HAVE_LIBAUDIT.
2107         * config.make.in: Define have-libaudit.
2108         * nscd/Makefile: If libaudit is available, link nscd with it.
2109         * nscd/selinux.c: If HAVE_LIBAUDIT is defined, log using libaudit.
2110         Patch by Steve Grubb <sgrubb@redhat.com>.
2112         * debug/pread64_chk.c: Use __libc_pread64 instead of __pread64.
2113         * sysdeps/posix/posix_fallocate64.c: Likewise.
2114         * include/string.h: Use libc_hidden_proto for strnlen.
2115         * sysdeps/generic/strnlen.c: Add libc_hidden_def.
2116         * include/libintl.h: Use libc_hidden_proto for __dcgettext.
2117         * intl/dcgettext.c: Add libc_hidden_def.
2118         * include/execinfo.h: Add libc_hidden_proto for __backtrace and
2119         __backtrace_symbols_fd.
2120         * sysdeps/generic/backtrace.c: Add libc_hidden_def.
2121         * sysdeps/generic/backtracesymsfd.c: Likewise.
2122         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
2123         * sysdeps/i386/backtrace.c: Likewise.
2124         * sysdeps/ia64/backtrace.c: Likewise.
2125         * sysdeps/powerpc/powerpc32/backtrace.c: Likewise.
2126         * sysdeps/powerpc/powerpc64/backtrace.c: Likewise.
2127         * sysdeps/s390/s390-32/backtrace.c: Likewise.
2128         * sysdeps/s390/s390-64/backtrace.c: Likewise.
2130 2005-06-13  Ulrich Drepper  <drepper@redhat.com>
2132         * sysdeps/unix/clock_gettime.c (clock_gettime): Implement case
2133         where HANDLED_REALTIME is not defined.  [BZ #966]
2135 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
2137         [BZ #1096]
2138         * sysdeps/unix/sysv/linux/netlinkaccess.h (__netlink_sendreq,
2139         __netlink_receive): Remove prototypes.
2140         (__netlink_request): New prototype.
2141         * sysdeps/unix/sysv/linux/ifaddrs.c: Include <alloca.h> and
2142         <stdint.h>.
2143         (__netlink_sendreq): Make static.
2144         (__netlink_receive): Rename to...
2145         (__netlink_request): ... this.  Add type argument, call
2146         __netlink_sendreq.  If MSG_TRUNC is set after recvmsg, retry
2147         with a bigger buffer.  Don't record buffers that contain no
2148         messages we are expecting.
2149         (getifaddrs): Use __netlink_request instead of __netlink_sendreq
2150         and __netlink_receive pairs.  Formatting.
2151         * sysdeps/unix/sysv/linux/if_index.c (if_nameindex_netlink): Use
2152         __netlink_request instead of __netlink_sendreq and __netlink_receive
2153         pair.
2155 2005-06-13  Thorsten Kukuk  <kukuk@suse.de>
2157         * sysdeps/unix/sysv/linux/netinet/if_tr.h: Don't include kernel
2158         headers, instead copy important structs/defines.
2160 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
2162         * elf/rtld.c (dl_main): Move DT_DEBUG setup before first
2163         _dl_debug_state call.
2165 2005-06-12  Ulrich Drepper  <drepper@redhat.com>
2167         * elf/dl-error.c (_dl_signal_error): Store information about use of
2168         real malloc in the catch object.
2169         (_dl_catch_error): Forward information about malloc use to caller
2170         in new parameter.
2171         (_dl_out_of_memory): Make static.
2172         * elf/dl-deps.c: Adjust callers of _dl_catch_error.
2173         * elf/dl-libc.c: Likewise.
2174         * elf/dl-open.c: Likewise.
2175         * elf/rtld.c: Likewise.
2176         Add new --audit option.
2177         * sysdeps/generic/ldsodefs.h: Remove _dl_out_of_memory declaration.
2178         (rtld_global_ro._dl_signal_error): Add new parameter.
2179         * include/dlfcn.h (_dl_catch_error): Add new parameter.
2180         * dlfcn/dlfcn.c (_dlerror_run): Pass additional parameter to
2181         _dl_catch_error.  Only free if the returned newly value says so.
2183 2005-06-01  Roland McGrath  <roland@redhat.com>
2185         [BZ #959]
2186         * posix/tst-mmap.c (main): Fill the test file with enough data for the
2187         page size.
2189 2005-05-30  Jakub Jelinek  <jakub@redhat.com>
2191         * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): If
2192         GLRO(dl_osversion) has been already set to a value smaller than
2193         _dl_discover_osversion (), don't overwrite it here.
2195 2005-05-24  Thomas Schwinge  <schwinge@nic-nac-project.de>
2197         * sysdeps/mach/i386/syscall.S (syscall): Call END.
2199 2005-05-28  Richard Henderson  <rth@redhat.com>
2201         * elf/elf.h (DT_ALPHA_PLTRO, DT_ALPHA_NUM): New.
2202         * sysdeps/alpha/dl-dtprocnum.h: New file.
2203         * sysdeps/alpha/dl-machine.h (DT_ALPHA): New.
2204         (elf_machine_load_address): Simplify to rely on gprel relocations.
2205         (elf_machine_runtime_setup): Handle DT_ALPHA_PLTRO plt format.
2206         Remove thread safety workaround for binutils 2.6.
2207         (elf_machine_fixup_plt): Handle DT_ALPHA_PLTRO plt format.
2208         * sysdeps/alpha/dl-trampoline.S (_dl_runtime_resolve_new): New.
2209         (_dl_runtime_profile_new): New.
2210         (_dl_runtime_resolve_old): Rename from _dl_runtime_resolve.
2211         (_dl_runtime_profile_old): Rename from _dl_runtime_profile.  Fix
2212         typo in _dl_call_pltexit argument loading.
2214         * sysdeps/alpha/div_libc.h (funcnoplt): New.
2215         * sysdeps/alpha/divl.S: Use it.
2216         * sysdeps/alpha/divq.S: Likewise
2217         * sysdeps/alpha/divqu.S: Likewise.
2218         * sysdeps/alpha/reml.S: Likewise.
2219         * sysdeps/alpha/remq.S: Likewise.
2220         * sysdeps/alpha/remqu.S: Likewise.
2222 2005-05-26  Andreas Schwab  <schwab@suse.de>
2224         * locale/Makefile (CFLAGS-loadlocale.c): Don't define.
2226 2005-05-26  Ulrich Drepper  <drepper@redhat.com>
2228         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_DIRECT): Fix value.
2229         Reported by Colin Gibbs <colin@gibbsonline.net>.  [BZ #954]
2231 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
2233         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Corrent
2234         _dl_hwcap access in PIC && !SHARED case.
2235         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
2237 2005-05-25  Dwayne Grant McConnell  <dgm69@us.ibm.com>
2239         * gmon/gmon.c: Add space in weak_alias use.
2240         * linuxthreads/sysdeps/unix/sysv/linux/mips/vfork.S: Likewise.
2241         * sysdeps/alpha/htonl.S: Likewise.
2242         * sysdeps/alpha/htons.S: Likewise.
2243         * sysdeps/alpha/elf/start.S: Likewise.
2244         * sysdeps/i386/i386-mcount.S: Likewise.
2245         * sysdeps/ia64/strchr.S: Likewise.
2246         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
2247         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
2248         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
2249         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
2250         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
2251         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
2252         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
2253         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
2254         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
2255         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
2256         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
2257         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
2258         * sysdeps/mach/hurd/readdir64_r.c: Likewise.
2259         * sysdeps/mach/hurd/sigaltstack.c: Likewise.
2260         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
2261         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
2262         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
2263         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
2264         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
2265         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
2266         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
2267         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
2268         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
2269         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
2270         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
2271         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
2272         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
2273         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
2274         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
2275         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
2276         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
2277         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
2278         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
2279         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
2280         * sysdeps/sparc/sparc32/memset.S: Likewise.
2281         * sysdeps/sparc/sparc32/stpcpy.S: Likewise.
2282         * sysdeps/sparc/sparc32/strchr.S: Likewise.
2283         * sysdeps/sparc/sparc32/strchr.S: Likewise.
2284         * sysdeps/sparc/sparc64/memcmp.S: Likewise.
2285         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
2286         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
2287         * sysdeps/sparc/sparc64/memset.S: Likewise.
2288         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
2289         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
2290         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
2291         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
2292         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
2293         * sysdeps/unix/sysv/linux/alpha/clone.S: Likewise.
2294         * sysdeps/unix/sysv/linux/alpha/getcontext.S: Likewise.
2295         * sysdeps/unix/sysv/linux/alpha/getrusage.S: Likewise.
2296         * sysdeps/unix/sysv/linux/alpha/setcontext.S: Likewise.
2297         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Likewise.
2298         * sysdeps/unix/sysv/linux/alpha/swapcontext.S: Likewise.
2299         * sysdeps/unix/sysv/linux/alpha/syscall.S: Likewise.
2300         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
2301         * sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
2302         * sysdeps/unix/sysv/linux/hppa/clone.S: Likewise.
2303         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
2304         * sysdeps/unix/sysv/linux/i386/makecontext.S: Likewise.
2305         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
2306         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
2307         * sysdeps/unix/sysv/linux/ia64/getcontext.S: Likewise.
2308         * sysdeps/unix/sysv/linux/ia64/setcontext.S: Likewise.
2309         * sysdeps/unix/sysv/linux/mips/clone.S: Likewise.
2310         * sysdeps/unix/sysv/linux/mips/vfork.S: Likewise.
2311         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
2312         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
2313         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
2314         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
2315         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2316         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
2317         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
2318         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Likewise.
2319         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Likewise.
2320         * sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S: Likewise.
2321         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
2322         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
2323         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
2324         * sysdeps/unix/sysv/linux/wordsize-64/getdents.c: Likewise.
2325         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
2326         * sysdeps/unix/sysv/linux/x86_64/makecontext.c: Likewise.
2327         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
2328         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
2329         * sysdeps/x86_64/_mcount.S: Likewise.
2331 2005-05-24  Roland McGrath  <roland@redhat.com>
2333         * sysdeps/unix/sysv/linux/i386/sysdep.h
2334         (SETUP_PIC_REG, LOAD_PIC_REG): Move these macros ...
2335         * sysdeps/i386/sysdep.h [PIC]: ... to here.
2337 2005-05-23  Roland McGrath  <roland@redhat.com>
2339         * sysdeps/arm, sysdeps/unix/arm, sysdeps/unix/sysv/linux/arm:
2340         Subdirectories moved to ports repository.
2341         * configure.in (base_machine): Remove arm* and thumb* patterns.
2342         * shlib-versions (arm.*-.*-linux.*): Remove this pattern.
2344 2005-05-23  Ulrich Drepper  <drepper@redhat.com>
2346         [BZ #1086]
2347         * sunrpc/bindrsvprt.c (LOWPORT): Apparently some mountd
2348         implementations are broken and don't accept ports < 512.
2350 2005-05-22  Dmitry V. Levin  <ldv@altlinux.org>
2352         [BZ #961]
2353         * io/sys/sendfile.h: Remove __nonnull from sendfile and sendfile64
2354         declarations.
2356 2005-05-23  Ulrich Drepper  <drepper@redhat.com>
2358         [BZ #1086]
2359         * sunrpc/pm_getport.c (__get_socket): New function.
2360         (pmap_getport): Use it to open a non-reserved socket to the portmapper
2361         for TCP.
2362         * include/rpc/pmap_clnt.h (__get_socket): Declare.
2363         * sunrpc/pm_getmaps.c (pmap_getmaps): Use __get_socket to get an
2364         non-reserved socket for the portmapper.
2365         Based on a patch by Steve Dickson <steved@redhat.com>.
2367         [BZ #1086]
2368         * sunrpc/bindrsvprt.c (bindresvport): Try harder to find a port.
2369         If we tried looking at the usual range without success extend the
2370         range to even lower ports.
2372         * sysdeps/unix/clock_gettime.c (clock_gettime): Revert last patch.
2374 2005-05-22  Andreas Schwab  <schwab@suse.de>
2376         * elf/rtld.c: Include <dl-osinfo.h>.
2378 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
2380         * sysdeps/powerpc/powerpc32/sysdep.h (PSEUDO_RET): Don't use
2381         JUMPTARGET.  Instead append @local to __syscall_error.
2382         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Delete all occurrences
2383         of JUMPTARGET.  Instead append @local to labels.
2384         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
2385         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
2386         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Likewise.
2387         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
2388         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
2389         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
2390         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
2391         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Likewise.
2392         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
2393         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
2394         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
2396         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Use float constants.
2397         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
2398         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Likewise.
2399         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
2400         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.  Use one GOT
2401         slot to access both constants.
2402         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
2403         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
2405         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S (TWO52.0): Delete.
2406         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S (TWO23.0): Delete.
2407         * sysdeps/powerpc/powerpc32/fpu/s_floor.S (TWO52.0): Delete.
2408         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S (TWO23.0): Delete.
2409         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Comment typo.
2410         (NEGZERO.0, POINTFIVE.0): Delete.
2411         * sysdeps/powerpc/powerpc32/fpu/s_rint.S (TWO52.0): Delete.
2412         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S (TWO23.0): Delete.
2413         * sysdeps/powerpc/powerpc32/fpu/s_round.S (__round): Code in .text.
2414         (TWO52.0, POINTFIVE.0): Delete.
2415         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S (__roundf): Code in .text.
2416         (TWO23.0, POINTFIVE.0): Delete.
2417         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S (__trunc): Code in .text.
2418         (TWO52.0): Delete.
2419         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S (__truncf): Code in .text.
2420         (TWO23.0): Delete.
2421         * sysdeps/powerpc/powerpc32/memset.S (memset): Formatting.
2423 2005-05-19  Richard Henderson  <rth@redhat.com>
2425         * sysdeps/unix/clock_gettime.c (clock_gettime): Fix typo around
2426         CLOCK_REALTIME.
2428         * sysdeps/ia64/bits/atomic.h (__arch_compare_and_exchange_bool_32_acq,
2429         __arch_compare_and_exchange_bool_64_acq,
2430         __arch_compare_and_exchange_val_32_acq,
2431         __arch_compare_and_exchange_val_64_acq, atomic_exchange_and_add):
2432         Use __sync builtin without _si or _di suffix.
2434 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
2436         [BZ #955]
2437         * iconvdata/ibm939.c (BODY): Avoid segfaults with input characters
2438         <UFFFF> and above.
2440 2005-05-17  Andreas Schwab  <schwab@suse.de>
2442         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
2443         (clock_getcpuclockid): Always return a defined value.
2445 2005-05-17  Neal H. Walfield  <neal@gnu.org>
2447         [BZ #1350]
2448         * sysdeps/posix/getaddrinfo.c (gaih_local): Check [_HAVE_SA_LEN]
2449         instead of [SALEN].
2450         (gaih_inet): Likewise.
2452 2005-05-11  Ulrich Drepper  <drepper@redhat.com>
2454         * elf/elf.h (Elf32_auxv_t): Make cross-compile safe.
2455         (Elf64_auxv_t): Likewise.
2456         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Adjust for
2457         removal of a_ptr element in ElfXX_auxv_t.
2458         * elf/dl-support.c (_dl_aux_init): Likewise.
2460 2005-05-09  Daniel Jacobowitz  <dan@codesourcery.com>
2462         * sysdeps/unix/sysv/linux/clock_getres.c: Include <time.h>.
2463         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
2465 2005-05-09  Alan Modra  <amodra@bigpond.net.au>
2467         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
2468         .pushsection/.popsection in place of .section/.previous.
2470 2005-05-08  Ulrich Drepper  <drepper@redhat.com>
2472         * MakeTAGS: Make xgettext not look into test cases.
2474         * MakeTAGS: Make sure translations in error calls are marked with
2475         c-format by xgettext.
2477 2005-05-07  Ulrich Drepper  <drepper@redhat.com>
2479         * intl/libintl.h: Always use __attribute_format_arg__ for gettext
2480         functions since gcc sometimes forgets the attribute for the
2481         standard functions.
2483 2005-05-06  Jakub Jelinek  <jakub@redhat.com>
2485         [BZ #934]
2486         * posix/regex_internal.h: Include bits/libc-lock.h or define dummy
2487         __libc_lock_* macros if not _LIBC.
2488         (struct re_dfa_t): Add lock.
2489         * posix/regcomp.c (re_compile_internal): Add __libc_lock_init.
2490         * posix/regexec.c (regexec, re_search_stub): Add locking.
2492 2005-05-04  Jakub Jelinek  <jakub@redhat.com>
2494         * intl/Makefile (tst-gettext[45].out): Pass also $(run-program-prefix)
2495         as argument to the scripts.
2496         * intl/tst-gettext2.sh: Use mkdir -p instead of test -d + mkdir.
2497         * intl/tst-gettext4.sh: Likewise.  Use run_program_prefix argument.
2498         * intl/tst-gettext5.sh: Likewise.
2500         * intl/tst-translit.sh: Add mkdir -p.
2502         * sysdeps/unix/sysv/linux/i386/sysdep.h (SETUP_PIC_REG): Use
2503         .ifndef/.endif to allow use of this macro more than once per .S
2504         file.
2505         (LOAD_PIC_REG): New macro.
2506         * sysdeps/unix/sysv/linux/i386/makecontext.S: Add call frame
2507         information.
2508         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
2509         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
2510         * sysdeps/i386/fpu/s_asinh.S: Use LOAD_PIC_REG macro.  Add call frame
2511         information.
2512         * sysdeps/i386/fpu/e_log10f.S: Likewise.
2513         * sysdeps/i386/fpu/s_expm1.S: Likewise.
2514         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
2515         * sysdeps/i386/fpu/e_log2l.S: Likewise.
2516         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
2517         * sysdeps/i386/fpu/s_lrint.S: Likewise.
2518         * sysdeps/i386/fpu/s_llrint.S: Likewise.
2519         * sysdeps/i386/fpu/s_ilogbf.S: Likewise.
2520         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
2521         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
2522         * sysdeps/i386/fpu/e_log.S: Likewise.
2523         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
2524         * sysdeps/i386/fpu/s_lrintl.S: Likewise.
2525         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
2526         * sysdeps/i386/fpu/e_scalb.S: Likewise.
2527         * sysdeps/i386/fpu/s_log1p.S: Likewise.
2528         * sysdeps/i386/fpu/s_nearbyintl.S: Likewise.
2529         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
2530         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
2531         * sysdeps/i386/fpu/s_nearbyintf.S: Likewise.
2532         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
2533         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
2534         * sysdeps/i386/fpu/s_lrintf.S: Likewise.
2535         * sysdeps/i386/fpu/e_acosh.S: Likewise.
2536         * sysdeps/i386/fpu/s_cexp.S: Likewise.
2537         * sysdeps/i386/fpu/s_ilogbl.S: Likewise.
2538         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
2539         * sysdeps/i386/fpu/e_powl.S: Likewise.
2540         * sysdeps/i386/fpu/e_powf.S: Likewise.
2541         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
2542         * sysdeps/i386/fpu/e_logl.S: Likewise.
2543         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
2544         * sysdeps/i386/fpu/s_frexp.S: Likewise.
2545         * sysdeps/i386/fpu/e_pow.S: Likewise.
2546         * sysdeps/i386/fpu/e_logf.S: Likewise.
2547         * sysdeps/i386/fpu/e_log2.S: Likewise.
2548         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
2549         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
2550         * sysdeps/i386/fpu/s_llrintf.S: Likewise.
2551         * sysdeps/i386/fpu/s_ilogb.S: Likewise.
2552         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
2553         * sysdeps/i386/fpu/e_atanh.S: Likewise.
2554         * sysdeps/i386/fpu/e_log10.S: Likewise.
2555         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
2556         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
2557         * sysdeps/i386/fpu/s_llrintl.S: Likewise.
2558         * sysdeps/i386/fpu/e_log10l.S: Likewise.
2559         * sysdeps/i386/fpu/s_nearbyint.S: Likewise.
2560         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
2561         * sysdeps/i386/fpu/e_log2f.S: Likewise.
2562         * sysdeps/i386/addmul_1.S: Various fixes to cfi handling.
2563         * sysdeps/i386/mul_1.S: Likewise.
2564         * sysdeps/i386/strtok.S: Likewise.
2565         * sysdeps/i386/sub_n.S: Likewise.
2566         * sysdeps/i386/submul_1.S: Likewise.
2567         * sysdeps/i386/i586/addmul_1.S: Likewise.
2568         * sysdeps/i386/i586/memcpy.S: Likewise.
2569         * sysdeps/i386/i586/mul_1.S: Likewise.
2570         * sysdeps/i386/i586/rshift.S: Likewise.
2571         * sysdeps/i386/i586/sub_n.S: Likewise.
2572         * sysdeps/i386/i586/submul_1.S: Likewise.
2573         * sysdeps/i386/i686/memcmp.S: Likewise.
2574         * sysdeps/i386/i686/memmove.S: Likewise.
2575         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
2576         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
2577         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
2578         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
2580 2005-05-03  Ulrich Drepper  <drepper@redhat.com>
2582         * sysdeps/i386/add_n.S: Add call frame information.
2583         * sysdeps/i386/addmul_1.S: Likewise.
2584         * sysdeps/i386/bsd-setjmp.S: Likewise.
2585         * sysdeps/i386/lshift.S: Likewise.
2586         * sysdeps/i386/memchr.S: Likewise.
2587         * sysdeps/i386/memcmp.S: Likewise.
2588         * sysdeps/i386/mul_1.S: Likewise.
2589         * sysdeps/i386/rawmemchr.S: Likewise.
2590         * sysdeps/i386/rshift.S: Likewise.
2591         * sysdeps/i386/stpncpy.S: Likewise.
2592         * sysdeps/i386/strchr.S: Likewise.
2593         * sysdeps/i386/strchrnul.S: Likewise.
2594         * sysdeps/i386/strcspn.S: Likewise.
2595         * sysdeps/i386/strpbrk.S: Likewise.
2596         * sysdeps/i386/strrchr.S: Likewise.
2597         * sysdeps/i386/strspn.S: Likewise.
2598         * sysdeps/i386/strtok.S: Likewise.
2599         * sysdeps/i386/sub_n.S: Likewise.
2600         * sysdeps/i386/submul_1.S: Likewise.
2601         * sysdeps/i386/elf/bsd-setjmp.S: Likewise.
2602         * sysdeps/i386/i486/strcat.S: Likewise.
2603         * sysdeps/i386/i586/add_n.S: Likewise.
2604         * sysdeps/i386/i586/addmul_1.S: Likewise.
2605         * sysdeps/i386/i586/lshift.S: Likewise.
2606         * sysdeps/i386/i586/memcpy.S: Likewise.
2607         * sysdeps/i386/i586/memset.S: Likewise.
2608         * sysdeps/i386/i586/mul_1.S: Likewise.
2609         * sysdeps/i386/i586/rshift.S: Likewise.
2610         * sysdeps/i386/i586/strchr.S: Likewise.
2611         * sysdeps/i386/i586/strcpy.S: Likewise.
2612         * sysdeps/i386/i586/sub_n.S: Likewise.
2613         * sysdeps/i386/i586/submul_1.S: Likewise.
2614         * sysdeps/i386/i686/add_n.S: Likewise.
2615         * sysdeps/i386/i686/memcmp.S: Likewise.
2616         * sysdeps/i386/i686/memmove.S: Likewise.
2617         * sysdeps/i386/i686/mempcpy.S: Likewise.
2618         * sysdeps/i386/i686/memset.S: Likewise.
2619         * sysdeps/i386/i686/strtok.S: Likewise.
2620         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
2621         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
2622         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
2623         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Likewise.
2624         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
2625         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
2627         * sysdeps/i386/fpu/libm-test-ulps: Adjust for gcc 4.
2629         * sysdeps/unix/sysv/linux/kernel-features.h: waitid is available
2630         on ppc in 2.6.12.
2632 2005-04-29  Jakub Jelinek  <jakub@redhat.com>
2634         [BZ #1083]
2635         * sysdeps/posix/posix_fallocate.c (posix_fallocate): If len == 0,
2636         call ftruncate if offset is bigger than current size.  Make sure
2637         the file is offset + len bytes long if that is more than current size.
2638         Don't overwrite previous content of the file.
2639         * sysdeps/posix/posix_fallocate64.c (__posix_fallocate64_l64):
2640         Likewise.
2642 2005-05-02  Roland McGrath  <roland@redhat.com>
2644         [BZ #924]
2645         * crypt/md5.c [! HAVE_MEMCPY] (memcpy): Yield proper expression value.
2647 2005-04-29  Roland McGrath  <roland@redhat.com>
2649         * timezone/africa: Update from tzdata2005i.
2650         * timezone/asia: Likewise.
2651         * timezone/northamerica: Likewise.
2652         * timezone/yearistype: Likewise.
2654         * sysdeps/i386/sysdep.h (CALL_MCOUNT): Fix typo in last change.
2656 2005-04-29  Ulrich Drepper  <drepper@redhat.com>
2658         [BZ #1093]
2659         * nis/nis_table.c: Fix realloc handling.
2660         * nis/nis_removemember.c: Likewise.
2662 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
2664         [BZ #798]
2665         * nscd/Makefile: Help losers who use --with-headers.
2667 2005-04-28  Roland McGrath  <roland@redhat.com>
2669         [BZ #796]
2670         * sysdeps/unix/sysv/linux/dl-sysdep.h: New file.
2671         Define NEED_DL_SYSINFO_DSO for all platforms.
2673         * sysdeps/generic/dl-sysdep.h: Remove multiple inclusion protection.
2674         * sysdeps/alpha/dl-sysdep.h: Likewise.
2675         Use #include_next instead of duplicating generic file's contents.
2676         * sysdeps/ia64/dl-sysdep.h: Likewise.
2677         * sysdeps/sparc/dl-sysdep.h: Likewise.
2679 2005-03-22  Steven Munroe  <sjmunroe@us.ibm.com>
2681         * sysdeps/powerpc/powerpc64/memset.S (memset): Make ___memset local.
2683 2005-03-07  Steven Munroe  <sjmunroe@us.ibm.com>
2685         [BZ #781]
2686         * sysdeps/unix/sysv/linux/kernel-features.h
2687         (__ASSUME_TGKILL): Define for powerpc32/64 starting with 2.6.1.
2688         (__ASSUME_UTIMES): Define for powerpc32/64 starting with 2.6.1.
2689         (__ASSUME_FADVISE64_64_SYSCALL): Define for powerpc32 only starting
2690         with 2.6.1.
2691         (__ASSUME_WAITID_SYSCALL): Don't define for powerpc32/64.
2693 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
2695         * sysdeps/i386/sysdep.h: Add cfi instrumentation to asm fragments.
2696         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
2697         * sysdeps/unix/sysv/linux/i386/socket.S: Remove now duplicate
2698         cfi_startproc and cfi_endproc.
2700         * configure.in: Remove ultrasparc names.
2702         * sysdeps/i386/i686/memcmp.S: Move misplaced END.
2704 2005-03-27  Bruno Haible  <bruno@clisp.org>
2706         Make it possible for multiple threads to use gettext() in different
2707         locales.
2708         * intl/dcigettext.c (HAVE_PER_THREAD_LOCALE): New macro.
2709         (struct known_translation_t): If HAVE_PER_THREAD_LOCALE, add localename
2710         field.
2711         (transcmp): If HAVE_PER_THREAD_LOCALE, compare localename fields.
2712         (DCIGETTEXT): If HAVE_PER_THREAD_LOCALE, fill the localename field in
2713         search and newp.
2715         * intl/tst-gettext4.c: New file.
2716         * intl/tst-gettext4.sh: New file.
2717         * intl/tst-gettext4-de.po: New file.
2718         * intl/tst-gettext4-fr.po: New file.
2719         * intl/tst-gettext5.c: New file.
2720         * intl/tst-gettext5.sh: New file.
2721         * intl/Makefile (distribute): Add tst-gettext4.sh, tst-gettext4-de.po,
2722         tst-gettext4-fr.po, tst-gettext5.sh.
2723         (multithread-test-srcs): New variable.
2724         (test-srcs): Add its contents.
2725         (tests): Depend on tst-gettext4.out, tst-gettext5.out.
2726         (tst-gettext4.out, tst-gettext5.out): New rules.
2727         (CFLAGS-tst-gettext4.c, CFLAGS-tst-gettext5.c): New variables.
2728         Add rule for linking the multithread-test-srcs with the appropriate
2729         thread-library.
2731 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
2733         * po/rw.po: New file.  From translation team.
2735         * scripts/config.guess: Update from upstream.
2736         * scripts/config.sub: Likewise.
2738 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
2740         [BZ #1094]
2741         * nscd/connections.c (nscd_run): Use time() value in prune_cache
2742         call, not timeout value, since the latter might be from another clock.
2744 2005-04-27  Roland McGrath  <roland@redhat.com>
2746         [BZ #877]
2747         * posix/unistd.h: Remove __nonnull from acct decl.
2749         * rt/tst-cpuclock1.c: New file.
2750         * rt/tst-cpuclock2.c: New file.
2751         * rt/tst-cputimer1.c: New file.
2752         * rt/tst-cputimer2.c: New file.
2753         * rt/tst-cputimer3.c: New file.
2754         * rt/Makefile (tests): Add them.
2756         * sysdeps/unix/sysv/linux/kernel-posix-cpu-timers.h: New file.
2757         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: New file.
2758         * sysdeps/unix/sysv/linux/ia64/clock_getcpuclockid.c
2759         (HAS_CPUCLOCK): New macro.
2760         (clock_getcpuclockid): Function removed.
2761         #include the new linux file to define it instead.
2762         * sysdeps/unix/clock_gettime.c [HP_TIMING_AVAIL] (hp_timing_gettime):
2763         New function, broken out of ...
2764         (clock_gettime) [HP_TIMING_AVAIL]: ... here.  Call it.
2765         (realtime_gettime): New function, broken out of ...
2766         (clock_gettime) [! HANDLED_REALTIME]: ... here.  Call it.
2767         (clock_gettime) [SYSDEP_GETTIME_CPU]: Use new macro in default case.
2768         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): New macro.
2769         (SYSDEP_GETTIME_CPUTIME): New macro.
2770         (SYSDEP_GETTIME): Use both.
2771         [! __ASSUME_POSIX_TIMERS] (maybe_syscall_gettime): New function, broken
2772         out of ...
2773         (SYSDEP_GETTIME): ... here.  Use it.
2774         [__NR_clock_gettime] (HANDLED_CPUTIME): Define it.
2775         (SYSDEP_GETTIME_CPUTIME): New macro.  Handle CPU timers by trying
2776         kernel support and falling back to hp-timing code.
2777         * sysdeps/posix/clock_getres.c
2778         [HP_TIMING_AVAIL] (hp_timing_getres): New function, broken out of ...
2779         (clock_getres) [HP_TIMING_AVAIL]: ... here.  Call it.
2780         (realtime_getres): New function, broken out of ...
2781         (clock_getres) [! HANDLED_REALTIME]: ... here.  Call it.
2782         (clock_getres) [SYSDEP_GETRES_CPU]: Use new macro in default case.
2783         * sysdeps/unix/sysv/linux/clock_getres.c (SYSCALL_GETRES): New macro.
2784         (SYSDEP_GETRES_CPUTIME): New macro.
2785         (SYSDEP_GETRES): Use both.
2786         [! __ASSUME_POSIX_TIMERS] (maybe_syscall_getres): New function, broken
2787         out of ...
2788         (SYSDEP_GETRES): ... here.  Use it.
2789         [__NR_clock_getres] (HANDLED_CPUTIME): Define it.
2790         (SYSDEP_GETRES_CPUTIME): New macro.  Handle CPU timers by trying
2791         kernel support and falling back to hp-timing code.
2792         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Handle
2793         CLOCK_PROCESS_CPUTIME_ID and CLOCK_PROCESS_THREAD_ID specially,
2794         translating to the kernel clockid_t for our own process/thread clock.
2796 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
2798         * stdlib/test-canon.c: Make doesExist a directory and add more tests
2799         for the new error case.
2801 2004-06-02  Dmitry V. Levin  <ldv@altlinux.org>
2802             Ranjani Murthy <ranmur@gmail.com>
2804         * stdlib/canonicalize.c (__realpath): Change realpath(3) to
2805         return NULL and set errno to ENOTDIR for such pathnames like
2806         "/path/to/existing-non-directory/".
2808 2005-04-26  Ulrich Drepper  <drepper@redhat.com>
2810         [BZ #1105]
2811         * time/strptime_l.c (__strptime_internal): Handle 'z' to set
2812         tm_gmtoff.
2813         * time/Makefile (tests): Add tst-strptime2.
2814         * time/tst-strptime2.c: New file.
2816 2005-04-26  Jakub Jelinek  <jakub@redhat.com>
2818         [BZ #1081]
2819         * elf/dl-close.c: Include stddef.h.
2820         (_dl_close): If called recursively, just remember GC needs to be rerun
2821         and decrease l_direct_opencount.  Avoid GC if l_direct_opencount
2822         decreased to 1.  Rerun GC at the end if any destructor unloaded some
2823         additional libraries.
2824         * elf/Makefile: Add rules to build and run unload6 test.
2825         * elf/unload6.c: New test.
2826         * elf/unload6mod1.c: New file.
2827         * elf/unload6mod2.c: New file.
2828         * elf/unload6mod3.c: New file.
2830         * malloc/hooks.c (mem2chunk_check): Add magic_p argument, set *magic_p
2831         if magic_p is not NULL.
2832         (top_check): Invoke MALLOC_FAILURE_ACTION if MORECORE failed.
2833         (malloc_check): Fail if sz == -1.
2834         (free_check): Adjust mem2chunk_check caller.
2835         (realloc_check): Likewise.  Fail if bytes == -1.  If bytes == 0 and
2836         oldmem != NULL, call free_check and return NULL.  If reallocating
2837         and returning NULL, invert magic byte again to make oldmem valid
2838         region for further checking.
2839         (memalign_check): Fail if bytes == -1.
2840         * malloc/Makefile: Add rules to build and run tst-mcheck.
2841         * malloc/tst-mcheck.c: New test.
2843 2005-04-26  Ulrich Drepper  <drepper@redhat.com>
2845         [BZ #1110]
2846         * stdio-common/vfscanf.c: Correctly account for characters of
2847         decimal points right after +-.
2849 2005-04-26  Roland McGrath  <roland@redhat.com>
2851         * elf/rtld-Rules (rtld-all): Test ifndef rtld-modules instead of
2852         ifeq ($(subdir),elf) to distinguish main driver from subdir runs.
2854 2005-04-25  Roland McGrath  <roland@redhat.com>
2856         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
2857         (INTERNAL_SYSCALL_ERROR_P): Fix typo in last change.
2859         * sunrpc/xdr.c (xdr_u_int): Use `long' for L and cast where needed.
2861         * elf/dl-load.c: Revert last change.
2863 2005-04-24  Ulrich Drepper  <drepper@redhat.com>
2865         [BZ #1110]
2866         * stdio-common/vfscanf.c: Fix parsing of decimal point after +-.
2867         Patch by Hamed Malek <hamed@bamdad.org>.
2869 2005-04-21  Roland McGrath  <roland@redhat.com>
2871         * elf/dl-load.c (_dl_map_object_from_fd): Don't use MAP_DENYWRITE,
2872         since Linux ignores it in user mmap calls.
2874 2005-04-17  David S. Miller  <davem@davemloft.net>
2876         * sysdeps/sparc/sparc32/elf/start.S: Define __data_start.
2877         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
2879 2005-04-15  Roland McGrath  <roland@redhat.com>
2881         * timezone/Makefile (zic-deps): New variable.
2882         ($(testdata)/America/New_York): Use it instead of explicit deps.
2883         ($(testdata)/Etc/UTC, $(testdata)/Australia/Melbourne): Likewise.
2884         ($(testdata)/America/Sao_Paulo, $(testdata)/Asia/Tokyo): Likewise.
2885         (%/UTC %/Universal): New pattern rule, replaces ...
2886         ($(testdata)/UTC, $(testdata)/Universal): ... these removed targets.
2887         ($(testdata)/%/Berlin $(testdata)/%/London): New pattern rule.
2888         ($(testdata)/Europe/London, $(testdata)/Europe/Berlin): Removed.
2890 2005-04-14  Roland McGrath  <roland@redhat.com>
2892         * MakeTAGS ($P/$(domain).pot): Depend on distinfo file as well.
2893         (extract): Filter-out distinfo file name.
2895         [BZ #253]
2896         * MakeTAGS (text-srcs): Match %.bash.in files too.
2898         [BZ #253]
2899         * nscd/Makefile (all-nscd-modules): New variable, include selinux
2900         module regardless of configuration.
2901         (distribute): Use that instead of $(nscd-modules).
2903 2005-04-13  David S. Miller  <davem@davemloft.net>
2905         Add sparc64 TLS and NPTL support.
2906         * elf/tls-macros.h: Add Sparc64 defines.
2907         * sysdeps/sparc/sparc64/dl-machine.h (sparc64_fixup_plt): Mark as
2908         always_inline.
2909         (elf_machine_fixup_plt): Likewise.
2910         (elf_machine_rela): Handle TLS relocations.
2911         (elf_machine_type_cleaa): Likewise.
2912         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2913         (SYSCALL_ERROR_HANDLER_ENTRY): Use sethi/or for GOT reloc.
2914         It does not always fit in R_SPARC_GOT13 when building -fPIC.
2915         Also, add TLS handling.
2916         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
2917         Increase it to 2.4.21 for sparc64.
2918         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: NULL terminate
2919         backtrace by zero'ing out %fp.  Store away flags, func_ptr,
2920         and func_arg in global registers not local registers.
2921         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Handle PTID, TLS,
2922         and CTID arguments properly.  Add RESET_PID handling.
2923         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Rework so that we
2924         do not invoke __sigprocmask().  We can always assume rt signals
2925         are present on sparc64, so just do an inline syscall.
2927 2005-04-13  Jakub Jelinek  <jakub@redhat.com>
2929         * sysdeps/sparc/sparc64/dl-machine.h: Add dl_machine_h multiple
2930         inclusion guard for the first half of the header.
2931         (elf_machine_type_class, ELF_MACHINE_JMP_SLOT, ELF_MACHINE_NO_REL,
2932         ELF_MACHINE_PLTREL_OVERLAP, elf_machine_runtime_setup,
2933         elf_machine_relplt, DL_STACK_END, RTLD_START): Move into the
2934         #ifndef dl_machine_h guarded part of the header.
2936 2005-04-14  Ulrich Drepper  <drepper@redhat.com>
2938         [BZ #851]
2939         * posix/execvp.c (execvp): Use file name including path when
2940         trying to run it with shell.
2941         * posix/Makefile: Add rules to build and run tst-execvp3.
2942         * posix/tst-execvp3.c: New file.
2944 2005-04-12  Ulrich Drepper  <drepper@redhat.com>
2946         [BZ #1090]
2947         * stdlib/random_r.c (__initstate_r): Don't use non-existing state.
2948         * string/tst-strfry.c: New file.
2949         * string/Makefile (tests): Add tst-strfry.
2951 2005-04-11  James A. Morrison  <ja2morri@uwaterloo.ca>
2953         * manual/string.texi: Fix typo in wmemcpy decl.
2955 2005-04-10  David S. Miller  <davem@davemloft.net>
2957         * sysdeps/sparc/sparc32/dl-trampoline.S: Use std not stx.
2959 2005-04-08  Carlos O'Donell <carlos@baldric.uwo.ca>
2961         * FAQ.in: Explain why `make' might fail running rpcgen.
2962         * FAQ: Regenerated.
2964 2005-04-07  Roland McGrath  <roland@redhat.com>
2966         * po/libc.pot: Regenerated.
2968 2005-04-07  Roland McGrath  <roland@redhat.com>
2970         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion)
2971         [(NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO) && SHARED]: Scan
2972         GLRO(dl_sysinfo_map) for PT_NOTE giving Linux kernel version,
2973         we can skip the uname call if it's there.
2974         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Don't use
2975         DL_SYSDEP_OSCHECK here.
2976         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]: Do it here instead.
2978         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro):
2979         Add _dl_sysinfo_map.
2980         * elf/rtld.c (dl_main): Don't call _dl_init_paths early in the
2981         rtld_is_main case.  Call it unconditionally later.
2982         Move GLRO(dl_sysinfo_dso) handling earlier, before _dl_init_paths call.
2983         Initialize GLRO(dl_sysinfo_map).
2984         * elf/dl-load.c (open_path): Bail out if _dl_init_paths wasn't called.
2985         * sysdeps/generic/dl-sysdep.c (_DL_FIRST_EXTRA): New macro.
2986         (_dl_important_hwcaps)
2987         [(NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO) && SHARED]: Scan
2988         GLRO(dl_sysinfo_map) for PT_NOTE giving synthetic hwcap names
2989         and bit values.
2990         * elf/ldconfig.c (_DL_FIRST_EXTRA): New macro.
2991         (hwcap_extra): New static variable.
2992         (is_hwcap_platform): Check hwcap_extra for a matching name.
2993         Remove tls special case.
2994         (path_hwcap): Likewise.
2995         (parse_conf): Parse "hwcap" directive to define synthetic hwcap bits
2996         and their names, stored in hwcap_extra.
2997         (main) [USE_TLS]: Initialize final synthetic hwcap bit as "tls".
2999         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Use uint64_t for
3000         _dl_hwcap and _dl_hwcap_mask.
3001         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Cast a_val for
3002         AT_HWCAP to unsigned long int.
3003         * elf/dl-support.c (_dl_aux_init): Likewise.
3004         (_dl_hwcap): Update defn.
3006         * elf/cache.c (print_entry): Pad hwcap value with 0s in diagnostic.
3007         * elf/ldconfig.c (search_dir): Likewise.
3009 2005-04-05  Roland McGrath  <roland@redhat.com>
3011         * NEWS: Copy 2.3.5 section from 2.3 branch.
3013         * intl/tst-codeset.sh: Use mkdir -p.  Put msgfmt output in temporary
3014         file and mv it into place.
3015         * intl/tst-gettext3.sh: Likewise.
3017         * Makefile (glibc-%.tar rule): Use make -q to ensure configure scripts
3018         are up to date in srcdir.  Touch all configure scripts after export.
3020         * iconv/gconv_int.h: Include <ctype.h> and <string.h>.
3022 2005-04-05  H.J. Lu  <hongjiu.lu@intel.com>
3024         [BZ #592]
3025         * sysdeps/ia64/fpu/e_acosh.S: Update from Intel libm 2005-04-05
3026         (comment changes only).
3027         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
3028         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
3029         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
3030         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
3031         * sysdeps/ia64/fpu/e_exp.S: Likewise.
3032         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
3033         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
3034         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
3035         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
3036         * sysdeps/ia64/fpu/e_expf.S: Likewise.
3037         * sysdeps/ia64/fpu/e_log.S: Likewise.
3038         * sysdeps/ia64/fpu/e_logf.S: Likewise.
3039         * sysdeps/ia64/fpu/e_pow.S: Likewise.
3040         * sysdeps/ia64/fpu/e_powf.S: Likewise.
3041         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
3042         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
3043         * sysdeps/ia64/fpu/libm_error.c: Likewise.
3044         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
3045         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
3046         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
3047         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
3048         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
3049         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
3050         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
3051         * sysdeps/ia64/fpu/s_cos.S: Likewise.
3052         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
3053         * sysdeps/ia64/fpu/s_erf.S: Likewise.
3054         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
3055         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
3056         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
3057         * sysdeps/ia64/fpu/s_erff.S: Likewise.
3058         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
3059         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
3060         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
3061         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
3062         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
3063         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
3064         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
3065         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
3066         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
3068 2005-04-05  Roland McGrath  <roland@redhat.com>
3070         * scripts/config.guess: Update from master, timestamp='2005-03-24'.
3071         * scripts/config.sub: Update from master, timestamp='2005-02-10'.
3073 2005-04-04  David S. Miller  <davem@davemloft.net>
3075         * sysdeps/sparc/sparc32/dl-trampoline.S: New file.
3076         * sysdeps/sparc/sparc32/dl-machine.h: Move PLT trampolines there.
3077         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
3078         (elf_machine_runtime_setup): Test for dl_profile non-null.
3079         * sysdeps/sparc/sparc64/dl-trampoline.S: New file.
3080         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
3081         * sysdeps/sparc/sparc64/dl-machine.h: Move PLT trampolines there.
3082         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
3083         (elf_machine_runtime_setup): Test for dl_profile non-null.
3084         * sysdeps/sparc/bits/link.h: New file.
3085         * sysdeps/generic/ldsodefs.h (La_sparc32_regs, La_sparc32_retval,
3086         La_sparc64_regs, La_sparc64_retval): New.
3087         (struct audit_ifaces): Add sparc entries.
3088         * elf/tst-auditmod1.c: Add sparc entries.
3090 2005-03-27  Bruno Haible  <bruno@clisp.org>
3092         * intl/tst-gettext3.c: New file.
3093         * intl/tst-gettext3.sh: New file.
3094         * intl/Makefile (distribute): Add tst-gettext3.sh.
3095         (test-srcs): Add tst-gettext3.
3096         (tests): Depend on tst-gettext3.out.
3097         (tst-gettext3.out): New rule.
3098         (CFLAGS-tst-gettext3.c): New variable.
3100         Fix bug exposed by tst-gettext3.
3101         * intl/gettextP.h (struct converted_domain): New type.
3102         (struct loaded_domain): Remove the conv, conv_tab fields. Add
3103         conversions, nconversions fields.
3104         (_nl_init_domain_conv): Remove declaration.
3105         (_nl_free_domain_conv): Remove declaration.
3106         (_nl_find_msg): Add convert argument.
3107         * intl/dcigettext.c (DCIGETTEXT): Call _nl_find_msg with convert=1.
3108         (_nl_find_msg): Add convert argument. When a conversion to a different
3109         charset is needed, create a new converted_domain element, instead of
3110         throwing away the old converted translations.
3111         (get_output_charset): New function.
3112         * intl/loadmsgcat.c (_nl_init_domain_conv): Remove function.
3113         (_nl_free_domain_conv): Remove function.
3114         (_nl_load_domain): Initialize the conversions array to empty. Use
3115         _nl_find_msg instead of _nl_init_domain_conv to retrieve the header
3116         entry.
3117         (_nl_unload_domain): Free the conversions array and its contents.
3119         * intl/gettextP.h (struct loaded_domain): Remove codeset_cntr field.
3120         (struct binding): Likewise.
3121         * intl/bindtextdom.c (set_binding_values): Drop codeset_cntr
3122         modifications.
3124 2005-04-04  Jakub Jelinek  <jakub@redhat.com>
3126         [BZ #1082]
3127         * sunrpc/pmap_rmt.c (xdr_rmtcall_args): Use a dummy arglen instead
3128         of trying to encode uninitialized arglen.
3130 2005-04-04  Ulrich Drepper  <drepper@redhat.com>
3132         [BZ #825]
3133         * timezone/scheck.c: Update from tzcode2005h.
3134         * timezone/tzfile.h: Likewise.
3135         * timezone/zdump.c: Likewise.
3136         * timezone/zic.c: Likewise.
3138         [BZ #825]
3139         * timezone/antarctica: Update from tzdata2005h.
3140         * timezone/asia: Likewise.
3141         * timezone/australasia: Likewise.
3142         * timezone/etcetera: Likewise.
3143         * timezone/europe: Likewise.
3144         * timezone/northamerica: Likewise.
3145         * timezone/southamerica: Likewise.
3146         * timezone/leapseconds: Likewise.
3147         * timezone/iso3166.tab: Likewise.
3149 2005-03-31  H.J. Lu  <hongjiu.lu@intel.com>
3151         [BZ #592]
3152         * sysdeps/ia64/fpu/libm_cpu_defs.h: Update copyright.
3154 2005-04-01  Ulrich Drepper  <drepper@redhat.com>
3156         * wcsmbs/btowc.c (__btowc): Optimize parameters in ASCII range.
3157         * wcsmbs/wctob.c (wctob): Likewise.
3158         * wcsmbs/wchar.h (btowc): Add optimized inline function.
3159         (wctob): Likewise.
3161 2005-03-31  Jakub Jelinek  <jakub@redhat.com>
3163         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Use functionally
3164         equivalent, but shorter instructions.
3165         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3166         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
3167         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
3168         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
3169         * sysdeps/unix/x86_64/sysdep.S: Likewise.
3170         * sysdeps/x86_64/strchr.S: Likewise.
3171         * sysdeps/x86_64/memset.S: Likewise.
3172         * sysdeps/x86_64/strcspn.S: Likewise.
3173         * sysdeps/x86_64/strcmp.S: Likewise.
3174         * sysdeps/x86_64/elf/start.S: Likewise.
3175         * sysdeps/x86_64/strspn.S: Likewise.
3176         * sysdeps/x86_64/dl-machine.h: Likewise.
3177         * sysdeps/x86_64/bsd-_setjmp.S: Likewise.
3178         * sysdeps/x86_64/bsd-setjmp.S: Likewise.
3179         * sysdeps/x86_64/strtok.S: Likewise.
3181 2005-03-30  H.J. Lu  <hongjiu.lu@intel.com>
3183         [BZ #592]
3184         * sysdeps/ia64/fpu/e_acosf.S: Update from Intel libm 2005-03-21.
3185         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
3186         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
3187         * sysdeps/ia64/fpu/e_acosh.S: Likewise.
3188         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
3189         * sysdeps/ia64/fpu/e_acos.S: Likewise.
3190         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
3191         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
3192         * sysdeps/ia64/fpu/e_asin.S: Likewise.
3193         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
3194         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
3195         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
3196         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
3197         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
3198         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
3199         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
3200         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
3201         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
3202         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
3203         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
3204         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
3205         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
3206         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
3207         * sysdeps/ia64/fpu/e_expf.S: Likewise.
3208         * sysdeps/ia64/fpu/e_exp.S: Likewise.
3209         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
3210         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
3211         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
3212         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
3213         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
3214         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
3215         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
3216         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
3217         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
3218         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
3219         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
3220         * sysdeps/ia64/fpu/e_log2.S: Likewise.
3221         * sysdeps/ia64/fpu/e_logf.S: Likewise.
3222         * sysdeps/ia64/fpu/e_logl.S: Likewise.
3223         * sysdeps/ia64/fpu/e_log.S: Likewise.
3224         * sysdeps/ia64/fpu/e_powf.S: Likewise.
3225         * sysdeps/ia64/fpu/e_powl.S: Likewise.
3226         * sysdeps/ia64/fpu/e_pow.S: Likewise.
3227         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
3228         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
3229         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
3230         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
3231         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
3232         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
3233         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
3234         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
3235         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
3236         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
3237         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
3238         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
3239         * sysdeps/ia64/fpu/libm_error.c: Likewise.
3240         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
3241         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
3242         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
3243         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
3244         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
3245         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
3246         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
3247         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
3248         * sysdeps/ia64/fpu/libm_support.h: Likewise.
3249         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
3250         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
3251         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
3252         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
3253         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
3254         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
3255         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
3256         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
3257         * sysdeps/ia64/fpu/s_cos.S: Likewise.
3258         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
3259         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
3260         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
3261         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
3262         * sysdeps/ia64/fpu/s_erf.S: Likewise.
3263         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
3264         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
3265         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
3266         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
3267         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
3268         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
3269         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
3270         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
3271         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
3272         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
3273         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
3274         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
3275         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
3276         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
3277         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
3278         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
3279         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
3280         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
3281         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
3282         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
3283         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
3284         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
3285         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
3286         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
3287         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
3288         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
3289         * sysdeps/ia64/fpu/s_logb.S: Likewise.
3290         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
3291         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
3292         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
3293         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
3294         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
3295         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
3296         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
3297         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
3298         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
3299         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
3300         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
3301         * sysdeps/ia64/fpu/s_round.S: Likewise.
3302         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
3303         * sysdeps/ia64/fpu/s_scalbn.c: Likewise.
3304         * sysdeps/ia64/fpu/s_scalbnf.c: Likewise.
3305         * sysdeps/ia64/fpu/s_scalbnl.c: Likewise.
3306         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
3307         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
3308         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
3309         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
3310         * sysdeps/ia64/fpu/s_tan.S: Likewise.
3311         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
3312         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
3313         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
3314         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
3315         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
3316         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
3318         [BZ #592]
3319         * sysdeps/ia64/fpu/libm_cpu_defs.h: New file.
3320         * sysdeps/ia64/fpu/libm_error_codes.h: New file.
3322         [BZ #592]
3323         * sysdeps/ia64/fpu/gen_import_file_list: Updated for Intel libm
3324         2005-03-21.
3325         * sysdeps/ia64/fpu/import_file.awk: Likewise.
3326         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
3327         * sysdeps/ia64/fpu/Makefile: Likewise.
3329 2005-03-29  Jakub Jelinek  <jakub@redhat.com>
3331         [BZ #1087]
3332         * posix/fnmatch.c (fnmatch): For short patterns or strings attempt to
3333         avoid calling mbsrtowcs twice.
3335 2005-03-29  Roland McGrath  <roland@redhat.com>
3337         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): New
3338         function, inline broken out of ...
3339         (DL_SYSDEP_OSCHECK): ... here.  Use that.
3340         Do the discovery and set GLRO(dl_osversion) if successful,
3341         if __LINUX_KERNEL_VERSION <= 0.
3342         * elf/dl-load.c: Don't include dl-osinfo.h here.
3344 2005-03-29  Alfred M. Szmidt  <ams@gnu.org>
3346         * manual/install.texi (Tools for Compilation): GNU binutils 2.15
3347         is now needed.
3349 2005-03-19  Bruno Haible  <bruno@clisp.org>
3351         * intl/dcigettext.c (struct known_translation_t): Change type of
3352         domainname field to 'const char *'.
3353         (DCIGETTEXT): Remove const-cast.
3355 2005-03-29  Thorsten Kukuk  <kukuk@suse.de>
3357         [BZ #661]
3358         * grp/initgroups.c (internal_getgrouplist): Check if we have
3359         enough space before adding the primary group to the list.
3361         * posix/tst-execle1.c (do_test): Fix execle arguments.
3362         * posix/tst-execle2.c (do_test): Likewise.
3364 2005-03-28  Roland McGrath  <roland@redhat.com>
3366         * sysdeps/generic/w_exp2.c [NO_LONG_DOUBLE]: Fix typos in alias names.
3367         Reported by Mark Mitchell <mark@codesourcery.com>.
3368         * Versions.def (libm): Define GLIBC_2.4 set.
3369         * math/Versions (libm: GLIBC_2.4): Add this set, with exp2l.
3370         * sysdeps/i386/Versions (libm: GLIBC_2.1): Add this set, with exp2l.
3371         * sysdeps/ia64/Versions: Likewise.
3372         * sysdeps/m68k/Versions: Likewise.
3373         * sysdeps/sparc/sparc64/Versions: Likewise.
3374         * sysdeps/x86_64/Versions: New file.
3375         * sysdeps/mips/mips64/Versions: New file.
3377         * locale/langinfo.h (_NL_LOCALE_NAME): New macro.
3378         [__USE_GNU] (NL_LOCALE_NAME): New macro.
3379         * locale/nl_langinfo.c: Grok special item value for _NL_LOCALE_NAME,
3380         return locale name string for the category.
3382 2005-03-25  Jakub Jelinek  <jakub@redhat.com>
3384         * sysdeps/generic/wcstoul_l.c: Include "wcstol_l.c" rather than
3385         <wcstol_l.c>.
3387 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
3389         * sysdeps/mips/atomicity.h: Remove unused file.
3390         * sysdeps/mips/dl-machine.h (elf_machine_rel): Add TLS relocations.
3391         * sysdeps/mips/dl-tls.h: New file.
3392         * sysdeps/mips/libc-tls.c: New file.
3393         * sysdeps/mips/tls-macros.h: New file.
3394         * sysdeps/mips/bits/atomic.h: New file.
3395         * sysdeps/mips/bits/setjmp.h: Protect against multiple inclusion.
3396         * sysdeps/mips/elf/configure.in: New file.
3397         * sysdeps/mips/elf/configure: Generated.
3398         * sysdeps/mips/sys/asm.h: New file.
3399         * sysdeps/unix/sysv/linux/mips/vfork.S: New file.
3400         * sysdeps/unix/sysv/linux/mips/clone.S: Add NPTL and five-argument
3401         clone support.
3402         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
3403         (INTERNAL_SYSCALL_NCS): New.
3404         (INTERNAL_SYSCALL): Update for non-constant support.
3405         (internal_syscall0): Likewise.
3406         (internal_syscall1): Likewise.
3407         (internal_syscall2): Likewise.
3408         (internal_syscall3): Likewise.
3409         (internal_syscall4): Likewise.
3410         (internal_syscall5): Likewise.
3411         (internal_syscall6): Likewise.
3412         (internal_syscall7): Likewise.
3413         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (SIGEV_THREAD):
3414         Update to match the kernel.
3415         (SIGEV_CALLBACK): Likewise.
3416         (SIGEV_THREAD_ID): Likewise.
3418 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
3420         [BZ #783]
3421         * elf/tst-auditmod1.c: Add MIPS support.
3422         * sysdeps/generic/ldsodefs.h (La_mips_32_regs): New.
3423         (La_mips_32_retval): New.
3424         (La_mips_64_regs): New.
3425         (La_mips_64_retval): New.
3426         (struct audit_ifaces): Add MIPS entries.
3427         * sysdeps/mips/dl-machine.h: Check RESOLVE_MAP instead of RESOLVE.
3428         (elf_machine_runtime_link_map, ELF_DL_FRAME_SIZE,
3429         ELF_DL_SAVE_ARG_REGS, ELF_DL_RESTORE_ARG_REGS,
3430         ELF_MACHINE_RUNTIME_TRAMPOLINE): Move to dl-trampoline.c.
3431         (RTLD_START): Align the stack before calling _dl_init_internal.
3432         Use .ent for _dl_start_user.
3433         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): Define.
3434         (elf_machine_rel, elf_machine_rel_relative, elf_machine_lazy_rel)
3435         (elf_machine_runtime_setup): Use "auto inline".
3436         (elf_machine_rela, elf_machine_rela_relative): Provide empty versions.
3437         (elf_machine_got_rel): Likewise.  Use RESOLVE_MAP.
3438         * sysdeps/mips/dl-trampoline.c: New file.
3439         * sysdeps/mips/bits/link.h: New file.
3440         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
3441         (internal_syscall5): Use register operands instead of non-lvalue
3442         memory operands.
3443         (internal_syscall6): Likewise.
3444         (internal_syscall7): Likewise.
3446 2005-03-27  Andreas Jaeger  <aj@suse.de>
3448         * debug/warning-nop.c (__builtin___memcpy_chk): Define away to
3449         avoid warnings with older compiler.
3450         (__builtin___memcpy_chk): Likewise.
3451         (__builtin___memmove_chk: Likewise.
3452         (__builtin___mempcpy_chk): Likewise.
3453         (__builtin___memset_chk): Likewise.
3454         (__builtin___stpcpy_chk): Likewise.
3455         (__builtin___strcat_chk): Likewise.
3456         (__builtin___strcpy_chk): Likewise.
3457         (__builtin___strncat_chk): Likewise.
3458         (__builtin___strncpy_chk): Likewise.
3459         (__builtin_object_size): Likewise.
3461 2005-03-27  Daniel Jacobowitz  <dan@codesourcery.com>
3463         * elf/tls-macros.h: Correct typo.
3465 2005-03-23  Jakub Jelinek  <jakub@redhat.com>
3467         [BZ #822]
3468         * nis/ypclnt.c (yp_2_yperr): Revert 2004-11-30 patch.
3469         (ypprot_err): Use yp_2_yperr table also for YP_NODOM .. YP_NOMORE.
3471 2005-03-22  Roland McGrath  <roland@redhat.com>
3473         * locale/setlocale.c: Comment typo.
3475         * scripts/versions.awk: No errors for GLIBC_PRIVATE.
3477         * Versions.def (libdl, librt): Add GLIBC_2.3.4 version.
3479         * scripts/versions.awk: Print all errors and die at the end.
3480         Use library name in versions array keys.
3482 2005-03-22  Daniel Jacobowitz  <dan@codesourcery.com>
3484         * elf/elf.h (PT_ARM_EXIDX): New macro.
3486 2005-03-21  Thorsten Kukuk  <kukuk@suse.de>
3488         [BZ #1098]
3489         * sunrpc/xdr_stdio.c (xdrstdio_getlong, xdrstdio_putlong):
3490         Convert correctly between long/int on 64bit big-endian.
3492 2005-03-21  David Mosberger  <davidm@hpl.hp.com>
3494         * sysdeps/ia64/_mcount.S: Newer kernels don't like register-frames
3495         with more than 8 output registers.  Fix this by passing original
3496         ar.pfs to _mcount_ret_helper via r3.
3498 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
3500         [BZ #786]
3501         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Handle
3502         GL(dl_tls_static_nelem) == GL(dl_tls_max_dtv_idx).
3503         * elf/Makefile: Add rules to build and run tst-tls15.
3504         * elf/tst-tls15.c: New test.
3505         * elf/tst-tlsmod15a.c: New file.
3506         * elf/tst-tlsmod15b.c: New file.
3508 2005-03-20  Ulrich Drepper  <drepper@redhat.com>
3510         * elf/rtld.c (dl_main): Always call init_tls if we have audit modules.
3512 2005-03-20  Alfred M. Szmidt  <ams@gnu.org>
3514         * elf/dl-open.c (dl_open_worker): Fix typo.
3516 2005-03-20  Ulrich Drepper  <drepper@redhat.com>
3518         * malloc/malloc.c (public_cALLOc): We cannot skip the memory
3519         clearing if perturb_byte != 0.
3521 2005-03-20  Jakub Jelinek  <jakub@redhat.com>
3523         * posix/bits/unistd.h (pread) [__USE_FILE_OFFSET64]: Use __off64_t
3524         instead of __off_t for last argument.
3525         * debug/Makefile (tests): Add tst-lfschk{1,2,3}.
3526         * debug/tst-lfschk1.c: New test.
3527         * debug/tst-lfschk2.c: New test.
3528         * debug/tst-lfschk3.c: New test.
3530 2005-02-09  Jakub Jelinek  <jakub@redhat.com>
3532         * sysdeps/unix/sysv/linux/bits/termios.h (CMSPAR): Define.
3533         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Add __USE_MISC
3534         and __USE_XOPEN guards to match linux/bits/termios.h.
3535         * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
3536         (CMSPAR): Define.
3537         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
3539 2005-02-10  H.J. Lu  <hongjiu.lu@intel.com>
3541         [BZ #1076]
3542         * sysdeps/ia64/elf/initfini.c: Add local _init and _fini labels.
3544 2005-02-27  Denis Barbier  <barbier@debian.org>
3546         [BZ #549]
3547         * locale/iso-4217.def: Add CSD currency.
3549 2005-03-19  Ulrich Drepper  <drepper@redhat.com>
3551         * inet/test-ifaddrs.c: Use test-skeleton.
3552         * inet/test_ifindex.c: Likewise.
3554         [BZ #821]
3555         * elf/dl-lookup.c (add_dependency): Always search l_initfini if
3556         the list exists.
3558         [BZ #821]
3559         * elf/Makefile: Add rules to build and run order2.
3560         * elf/order2.c: New file.
3561         * elf/order2mod1.c: New file.
3562         * elf/order2mod2.c: New file.
3563         * elf/order2mod3.c: New file.
3564         * elf/order2mod4.c: New file.
3566 2005-03-19  Jakub Jelinek  <jakub@redhat.com>
3568         [BZ #821]
3569         * elf/dl-open.c (dl_open_worker): Print exact l_direct_opencount value,
3570         it has been incremented before.
3572 2005-03-18  Ulrich Drepper  <drepper@redhat.com>
3574         [BZ #821]
3575         * elf/dl-fini.c (_dl_fini): Split sorting of the maps in separate
3576         function _dl_sort_fini.
3577         (_dl_sort_fini): New function.
3578         * sysdeps/generic/ldsodefs.h: Declare _dl_sort_fini.
3579         * elf/dl-close.c (_dl_close): Call _dl_sort_fini before running
3580         destructors to call them in the right order.
3582 2005-02-07  Steven Munroe  <sjmunroe@us.ibm.com>
3584         * sysdeps/powerpc/bits/link.h (La_ppc64_regs): Add lr_vrsave.
3585         (La_ppc64_retval): Correct size of lrc_fp.
3586         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_profile_resolve):
3587         Fix up ABI problems and complete function.
3589 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
3591         * math/test-misc.c (main): Add some more tests.
3593 2005-03-17  Jakub Jelinek  <jakub@redhat.com>
3595         * posix/regcomp.c (re_compile_fastmap_iter): Fix check for failed
3596         __wcrtomb.  Check return values of other __wcrtomb calls.
3597         * posix/regex_internal.c (build_wcs_buffer, re_string_skip_chars):
3598         Change mbclen type to size_t.
3599         (build_wcs_upper_buffer): Change mbclen and mbcdlen type to size_t.
3600         Handle mb chars whose upper case doesn't have multibyte representation
3601         in locale's charset.
3603 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
3605         * malloc/malloc.c (_int_icalloc, _int_icomalloc, iALLOc,
3606         public_iCALLOc, public_iCALLOc, public_iCOMALLOc): Protect with
3607         #ifndef _LIBC.
3609         [BZ #779]
3610         * malloc/malloc.c (public_mTRIm): Initialize malloc if not yet
3611         initialized.
3613 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
3615         * misc/sys/cdefs.h (__always_inline): Define.
3616         * posix/bits/unistd.h (read, pread, pread64, readlink, getcwd, getwd):
3617         Use __always_inline instead of __inline.
3618         * socket/bits/socket2.h (recv, recvfrom): Likewise.
3619         * libio/bits/stdio2.h (gets, fgets, fgets_unlocked): Likewise.
3620         * string/bits/string3.h (__memcpy_ichk, __memmove_ichk, __mempcpy_ichk,
3621         __memset_ichk, __strcpy_ichk, __stpcpy_ichk, __strncpy_ichk,
3622         __strcat_ichk, __strncat_ichk): Use __always_inline instead of
3623         __inline__ __attribute__ ((__always_inline__)).
3625 2005-03-09  Jakub Jelinek  <jakub@redhat.com>
3627         * debug/tst-chk1.c: Include sys/socket.h and sys/un.h.
3628         (do_test): Add new tests for recv, recvfrom, getcwd, getwd and
3629         readlink.  Add some more tests for read, pread, pread64, fgets and
3630         fgets_unlocked.
3632         * posix/bits/unistd.h (read, pread, pread64, readlink,
3633         getcwd, getwd): Change macros into extern inline functions.
3634         (__read_alias, __pread_alias, __pread64_alias, __readlink_alias,
3635         __getcwd_alias, __getwd_alias): New prototypes.
3636         * socket/bits/socket2.h (recv, recvfrom): Change macros into
3637         extern inline functions.
3638         (__recv_alias, __recvfrom_alias): New prototypes.
3639         * libio/bits/stdio2.h (gets, fgets, fgets_unlocked): Change macros
3640         into extern inline functions.
3641         (__gets_alias, __fgets_alias, __fgets_unlocked_alias): New prototypes.
3643         * debug/pread_chk.c (__pread_chk): Fix order of arguments passed
3644         to __pread.
3645         * debug/pread64_chk.c (__pread64_chk): Fix order of arguments passed
3646         to __pread64.
3648 2005-03-18  Daniel Jacobowitz  <dan@codesourcery.com>
3650         * configure.in: Use %function instead of @function.
3652 2005-03-18  Ulrich Drepper  <drepper@redhat.com>
3654         [BZ #821]
3655         * include/link.h (struct link_map): Remove l_opencount.  Add l_removed.
3656         Change type of l_idx to int.
3657         * elf/dl-close.c: Basically rewrite.  Do not use l_opencount to
3658         determine whether a DSO has to be unloaded.  Instead compute this
3659         in this function.
3660         * elf/dl-deps.c: No need to manipulate l_opencount anymore.
3661         * elf/dl-lookup.c: Likewise.
3662         * elf/rtld.c: Likewise
3663         * elf/dl-open.c: Likewise.  Use l_init_called to determine whether
3664         object was just loaded.
3665         * elf/dl-fini.c: Bump l_direct_opencount instead of l_opencount.
3666         * elf/dl-load.c (_dl_map_object_from_fd): Do not recognize DSO which
3667         is about to be unloaded as a match.
3668         (_dl_map_object): Likewise.
3669         * elf/do-lookup.h (do_lookup_x): Do not look into DSO which is about
3670         to be unloaded.
3671         * elf/circleload1.c: Don't use l_opencount anymore.
3672         * elf/neededtest.c: Likewise.
3673         * elf/neededtest2.c: Likewise.
3674         * elf/neededtest3.c: Likewise.
3675         * elf/neededtest4.c: Likewise.
3676         * elf/unload.c: Likewise.
3677         * elf/unload2.c: Likewise.
3678         * elf/loadtest.c: Likewise.
3680         [BZ #821]
3681         * elf/rtld.c: Preloading errors are now never fatal.
3683 2005-03-08  Jakub Jelinek  <jakub@redhat.com>
3685         [BZ #821]
3686         * elf/Makefile: Add rules to build and run unload5 test.
3687         * elf/unload5.c: New file.
3689         [BZ #821]
3690         * elf/Makefile: Add rules to build and run unload4 test.
3691         * elf/unload4.c: New file.
3692         * elf/unload4mod1.c: New file.
3693         * elf/unload4mod2.c: New file.
3694         * elf/unload4mod3.c: New file.
3695         * elf/unload4mod4.c: New file.
3697 2005-03-17  Roland McGrath  <roland@redhat.com>
3699         * nscd/aicache.c (addhstaiX): Tweak type to avoid warning.
3701 2005-03-16  Richard Henderson  <rth@redhat.com>
3703         * include/libc-symbols.h (__hidden_proto): Remove bogus declaration
3704         of internal.
3705         (__hidden_def1, __hidden_dot_def1): Remove.
3706         (__hidden_def2, __hidden_def3): Remove.
3707         (__hidden_ver1): New.
3708         (hidden_ver, hidden_def, hidden_weak): Use it.
3709         (hidden_data_ver, hidden_data_ver, hidden_data_weak): Use non-data
3710         version of the macro.
3712         * include/wchar.h (__wcscoll): Remove.
3713         * wcsmbs/wcscoll.c: Define wcscoll directly instead of via __wcscoll.
3714         * string/strcoll.c: Don't issue libc_hidden_def STRCOLL redefined.
3716 2005-03-16  Daniel Jacobowitz  <dan@codesourcery.com>
3718         * elf/elf.h: Define MIPS TLS relocations.
3720 2005-03-16  Ulrich Drepper  <drepper@redhat.com>
3722         * elf/circleload1.c (main): Pretty printing.
3724 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
3726         * sysdeps/generic/wordexp.c (exec_comm_child): Add inline keyword.
3727         Patch by Dan Kegel <dank@kegel.com>.
3729         * elf/dynamic-link.h (elf_machine_rel, elf_machine_rel_relative,
3730         elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel):
3731         Add inline keyword.
3732         * sysdeps/alpha/dl-machine.h (elf_machine_rela,
3733         elf_machine_rela_relative, elf_machine_lazy_rel): Add always_inline
3734         attribute.
3735         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
3736         elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.  Change
3737         static inline into auto inline.
3738         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
3739         elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
3740         * sysdeps/generic/dl-machine.h (elf_machine_rel, elf_machine_rela):
3741         Likewise.
3742         * sysdeps/arm/dl-machine.h (elf_machine_rel, elf_machine_rel_relative,
3743         elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel):
3744         Likewise.
3746 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
3748         [BZ #789]
3749         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Fix asm constraints.
3750         Remove memory clobber.
3752         * sysdeps/x86_64/hp-timing.h (HP_TIMING_ACCUM): Make the addition
3753         thread-safe.  Subtract GLRO(dl_hp_timing_overhead) from Diff.
3755 2005-03-14  Jakub Jelinek  <jakub@redhat.com>
3757         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Don't include
3758         asm/types.h.
3760 2005-03-10  GOTO Masanori  <gotom@debian.or.jp>
3762         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Define MAP_POPULATE and
3763         MAP_NONBLOCK.
3764         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
3765         Correct MAP_GROWSDOWN value.
3767 2005-03-13  Roland McGrath  <roland@redhat.com>
3769         * elf/tls-macros.h: #include_next <tls-macros.h> to get a sysdeps
3770         version if there is one.  Only #error if macros are then undefined.
3771         * sysdeps/generic/tls-macros.h: New file.
3773 2005-03-10  GOTO Masanori  <gotom@debian.or.jp>
3775         * sysdeps/hppa/configure.in: Remove old Makefile leftovers.
3776         * sysdeps/hppa/configure: Regenerated.
3778 2005-03-08  Roland McGrath  <roland@redhat.com>
3780         * sysdeps/gnu/errlist-compat.awk: Use NERR in all array decls, so
3781         array types match exactly in C alias decls.
3783 2005-03-07  Ulrich Drepper  <drepper@redhat.com>
3785         * malloc/arena.c (ptmalloc_init): Recognize MALLOC_PERTURB_ and call
3786         mallopt appropriately.
3787         * malloc/malloc.h: Define M_PERTURB.
3788         * malloc/malloc.c (perturb_byte): New variable.
3789         (alloc_perturb, free_perturb): New macros.
3790         (_int_malloc): Before returning, overwrite the memory if this is
3791         requested.
3792         (_int_free): Overwrite freed memory if requested.
3793         (mALLOPt): Handle M_PERTURB.
3794         * test-skeleton.c: Add call to mallopt with M_PERTURB command.
3796         * elf/dl-close.c (_dl_close): Decrement l_opencount before
3797         printing debug message.
3798         * elf/dl-open.c (dl_open_worker): Always print the new opencount
3799         in debug messages.
3801 2005-03-06  Ulrich Drepper  <drepper@redhat.com>
3803         * elf/dl-close.c (_dl_close): Unify debug message format.
3805         * elf/dl-close.c (_dl_close): Print debug message just before
3806         destroying a link map.
3808         * elf/do-lookup.h (do_lookup_x): Add namespace info to debug output.
3809         * elf/dl-version.c (match_symbol): Likewise.
3811         * posix/bits/unistd.h (pread): Fix typo in __USE_FILE_OFFSET64 code.
3813         * debug/recv_chk.c (__recv_chk): Always fail if request could
3814         overflow the buffer.
3815         * debug/recvfrom_chk.c (__recvfrom_chk): Likewise.
3816         * socket/bits/socket2.h (recv): Avoid calls to the _chk variant if
3817         we know the call succeeds.
3818         (recvfrom): Likewise.
3820 2005-03-05  Ulrich Drepper  <drepper@redhat.com>
3822         * posix/regexec.c (check_node_accept_bytes): Correct cast to avoid
3823         warning.
3824         * posix/regex_internal.c (re_string_reconstruct): Add cast to
3825         avoid warning.
3826         (build_wcs_upper_buffer): Change type of bug to plain char.
3827         * locale/weightwc.h (findidx): Add casts to avoid warnings.
3828         * time/mktime.c (ranged_convert): Initialize tm to make the
3829         compiler happy.
3830         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Add casts to avoid warnings.
3831         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Add casts to avoid warnings.
3832         * wcsmbs/mbsnrtowcs.c: Add casts to avoid warnings.
3833         * wcsmbs/wcsrtombs.c (__wcsrtombs): Add casts to avoid warnings.
3834         * wcsmbs/wcrtomb.c (__wcrtomb): Add casts to avoid warnings.
3835         * wcsmbs/mbrtowc.c (__mbrtowc): Use unsigned char for outbuf.
3836         * wcsmbs/wctob.c (wctob): Make buf array of unsigned char.
3837         * sysdeps/generic/strchrnul.c: Add cast to avoid warning.
3838         * libio/iofwide.c: Add casts to avoid warnings.
3839         * stdio-common/printf-prs.c (parse_printf_format): Introduce new
3840         variable f to avoid warnings.
3841         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
3842         Fix a few casts to avoid warnings.
3843         * iconv/gconv_simple.c (internal_utf8_loop): Make start unsigned
3844         to avoid warning.
3846         [BZ #1101]
3847         * posix/regex_internal.c [_LIBC] (build_wcs_buffer): Avoid using
3848         dynamically sized array.
3849         (build_wcs_upper_buffer): Likewise.
3851 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
3853         * include/bits/unistd.h: New file.
3854         * include/bits/socket2.h: New file.
3856 2005-03-05  Ulrich Drepper  <drepper@redhat.com>
3858         * sunrpc/key_call.c: Remove doors support.
3859         * sunrpc/Makefile: Remove CPPFLAGS-key_call.c definition.
3860         * configure.in: Remove test for doors support which never existed.
3861         * config.make.in: Remove have_doors entry.
3863         * configure.in: Make sure at least gcc 3.4 is used.  Undo last change.
3864         * config.make.in: Undo last change.
3866         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Unconditionally use
3867         -mtune.
3869 2005-03-05  Roland McGrath  <roland@redhat.com>
3871         * sysdeps/generic/ldsodefs.h (_dl_out_of_memory_internal): Remove decl.
3872         (_dl_out_of_memory): Use rtld_hidden_proto.
3873         * elf/dl-error.c (_dl_out_of_memory): Use rtld_hidden_data_def.
3874         (_dl_signal_error): Don't use INTUSE on _dl_out_of_memory.
3875         * elf/dl-open.c (_dl_open): Likewise.
3876         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
3878         * sunrpc/des_impl.c (des_set_key): Make first argument unsigned char *.
3880         * elf/dl-addr.c (_dl_addr): Add a cast.
3882         [BZ #821]
3883         * elf/unload3mod4.c: Declare foo.
3884         * elf/testobj2.c: Include <stdio.h>.
3886         * sysdeps/gnu/errlist.awk: Emit NERR macro for _sys_nerr_internal
3887         value constant, and use it in the defn.
3888         * sysdeps/gnu/errlist-compat.awk: Use NERR in array decl.
3889         Use actual size for compat array decls.
3891         * config.make.in (cc-mtune): New substituted variable.
3892         * configure.in (libc_cv_cc_mtune): New test for -mtune= switch,
3893         done only if libc_mtune_example is defined.
3894         * sysdeps/i386/configure.in (libc_mtune_example): Set it.
3895         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Use $(cc-mtune).
3897 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
3899         * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define
3900         unconditionally to (defined RTLD_BOOTSTRAP).
3901         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Likewise.
3903 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
3905         * Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of
3906         $(inst_slibdir) in AS_NEEDED directive.
3908 2005-03-03  Jakub Jelinek  <jakub@redhat.com>
3910         * posix/bits/unistd.h (pread, pread64): Don't swap function arguments.
3912 2005-03-01  H.J. Lu  <hongjiu.lu@intel.com>
3914         [BZ #776]
3915         * iconv/iconvconfig.c: Fix comment for the output file.
3916         (write_output): Clear padding in header.
3918 2005-03-03  Ulrich Drepper  <drepper@redhat.com>
3920         [BZ #821]
3921         * elf/dl-close.c (_dl_close): Don't try to set up new searchpath if the
3922         loader is closed.  Fixes unload3.
3923         * elf/tst-global1.c: New file.
3924         * elf/Makefile (tests): Add tst-global1.
3925         * elf/testobj2.c (p): New function.
3927 2005-03-03  Jakub Jelinek  <jakub@redhat.com>
3929         [BZ #821]
3930         * elf/Makefile: Add rules to build and run unload3 test.
3931         * elf/unload3.c: New test.
3932         * elf/unload3mod1.c: New file.
3933         * elf/unload3mod2.c: New file.
3934         * elf/unload3mod3.c: New file.
3935         * elf/unload3mod4.c: New file.
3937 2005-02-21  Alan Modra <amodra@bigpond.net.au>
3939         [BZ #1394]
3940         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Don't
3941         use __uint128_t.
3943 2005-03-01  Jakub Jelinek  <jakub@redhat.com>
3945         * posix/bits/unistd.h (read, pread, pread64): Use __bos0 instead
3946         of __bos.
3947         * socket/bits/socket2.h (recv, recvfrom): Likewise.
3949 2005-03-01  Roland McGrath  <roland@redhat.com>
3951         [BZ #721]
3952         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Define this outside
3953         of [RESOLVE_MAP].
3955 2005-03-01  Alfred M. Szmidt  <ams@gnu.org>
3957         [BZ #777]
3958         * elf/dl-load.c (__stack_prot) [!PROT_GROWSUP && !PROT_GROWSDOWN]:
3959         Add missing initializer.
3961         [BZ #777]
3962         * malloc/arena.c: #include <stdbool.h> outside of [SHARED &&
3963         USE_TLS && !USE___THREAD].
3965 2005-02-26  GOTO Masanori  <gotom@debian.or.jp>
3967         * csu/Makefile: Use printf instead of echo for some shells.
3969 2005-02-28  Roland McGrath  <roland@redhat.com>
3971         * debug/warning-nop.c (__nop): Rename to nop, make it static.
3972         (__warndecl): Use alias attribute directly, instead of strong_alias
3973         macro.  Add attribute_hidden.
3975 2005-02-28  Ulrich Drepper  <drepper@redhat.com>
3977         * posix/bits/unistd.h: Avoid calling __*_chk variants if we can
3978         determine the call will never trigger a failure.
3979         * debug/read_chk.c (__read_chk): Always fail if the buffer is too
3980         small.
3981         * debug/readlink_chk.c (__readlink_chk): Likewise.
3982         * debug/pread64_chk.c (__pread64_chk): Likewise.
3983         * debug/pread_chk.c (__pread_chk): Likewise.
3985         * sysdeps/i386/i686/memset_chk.S: Remove alias and warning.
3986         * sysdeps/x86_64/memset_chk.S: Likewise.
3988 2005-02-24  Roland McGrath  <roland@redhat.com>
3990         * debug/Versions (libc: GLIBC_2.4): Remove
3991         __memset_zero_constant_len_parameter.
3992         * sysdeps/generic/memset_chk.c: Remove alias and warning.
3993         * misc/sys/cdefs.h (__warndecl): New macro.
3994         * debug/warning-nop.c: New file.
3995         * string/bits/string3.h (memset): Call __warn_memset_zero_len with no
3996         arguments, instead of calling __memset_zero_constant_len_parameter.
3997         Use __warndecl for __warn_memset_zero_len.
3998         * debug/Makefile (routines): Add $(static-only-routines).
3999         (static-only-routines): New variable.
4001 2005-02-27  Ulrich Drepper  <drepper@redhat.com>
4003         * po/tr.po: Update from translation team.
4005 2005-02-26  Ulrich Drepper  <drepper@redhat.com>
4007         * elf/dl-addr.c: Cleanups.  Move declaration next to first use.
4009         * dlfcn/dlerror.c (check_free): New function.  Extract common code
4010         from fini and free_key_mem.  Check whether this is libdl in the
4011         base namespace.
4013 2005-02-25  Ulrich Drepper  <drepper@redhat.com>
4015         * elf/dl-lookup.c (_dl_debug_bindings): Add namespace information
4016         to debug output.
4018 2004-11-11  Richard Sandiford  <rsandifo@redhat.com>
4020         [BZ #758]
4021         * sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h): Only
4022         preprocess <asm/unistd.h> if it defines ABI-prefixed syscall names
4023         like __NR_N32_open.  Just include <asm/unistd.h> otherwise.
4024         * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
4025         * sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h: Delete
4026         * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h (SYS_ify): Use the
4027         standard __NR prefix.
4028         * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h (SYS_ify): Likewise.
4029         * sysdeps/unix/sysv/linux/mips/Makefile (syscall-%.h): Rework so that
4030         the output file is compatible with both pre-2.6 and 2.6 kernel headers.
4031         Extract separate syscall lists for each ABI.
4033 2005-02-23  Ulrich Drepper  <drepper@redhat.com>
4035         * Makerules (libc.so): Add AS_NEEDED line for dynamic linker.
4037         [BZ #719]
4038         * elf/Makefile: Run tst-tls9-static again.
4040 2005-02-22  Ulrich Drepper  <drepper@redhat.com>
4042         [BZ #719]
4043         * sysdeps/generic/libc-tls.c (static_dtv): Size the same as the
4044         slotinfo array.
4045         (__libc_setup_tls): Initialize length of DTV based on array length.
4046         * elf/dl-load.c: Revert last change.
4047         * sysdeps/generic/dl-tls.c: Revert last change.
4049         * posix/Makefile (tests): Add tst-execvp1, tst-execvp2, tst-execlp1,
4050         tst-execlp2, tst-execv1, tst-execv2, tst-execl1, tst-execl2,
4051         tst-execve1, tst-execve2, tst-execle1, and tst-execle2.
4052         * posix/tst-execl1.c: New file.
4053         * posix/tst-execl2.c: New file.
4054         * posix/tst-execle1.c: New file.
4055         * posix/tst-execle2.c: New file.
4056         * posix/tst-execlp1.c: New file.
4057         * posix/tst-execlp2.c: New file.
4058         * posix/tst-execv1.c: New file.
4059         * posix/tst-execv2.c: New file.
4060         * posix/tst-execve1.c: New file.
4061         * posix/tst-execve2.c: New file.
4062         * posix/tst-execvp1.c: New file.
4063         * posix/tst-execvp2.c: New file.
4065 2005-02-22  Roland McGrath  <roland@redhat.com>
4067         * include/signal.h: Revert last change.
4068         (__sigemptyset): Use __builtin_memset instead of memset.
4070 2005-02-22  Ulrich Drepper  <drepper@redhat.com>
4072         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Use
4073         non-cancelable I/O functions.
4075 2005-02-22  Jakub Jelinek  <jakub@redhat.com>
4077         [BZ #769]
4078         * nscd/nscd-client.h: Include sys/uio.h.
4079         (__readall, __readvall, writeall): New prototypes.
4080         * nscd/connections.c (writeall): New function.
4081         (handle_request): Use it.
4082         * nscd/aicache.c (addhstaiX): Likewise.
4083         * nscd/initgrcache.c (addinitgroupsX): Likewise.
4084         * nscd/hstcache.c (cache_addhst): Likewise.
4085         * nscd/grpcache.c (cache_addgr): Likewise.
4086         * nscd/pwdcache.c (cache_addpw): Likewise.
4087         * nscd/nscd_helper.c (__readall, __readvall): New functions.
4088         * nscd/nscd_getai.c (__nscd_getai): Use them.
4089         * nscd/nscd_getpw_r.c (__nscd_getpw_r): Likewise.
4090         * nscd/nscd_getgr_r.c (__nscd_getgr_r): Likewise.
4091         * nscd/nscd_gethst_r.c (__nscd_gethst_r): Likewise.
4092         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
4094 2005-02-22  Roland McGrath  <roland@redhat.com>
4096         * include/sys/socket.h: Declare __recv.
4097         * sysdeps/generic/recv.c (recv): Rename to __recv, and add weak alias.
4098         * sysdeps/mach/hurd/recv.c: Likewise.
4100         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <execinfo.h> for
4101         __backtrace_* decls.
4103         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
4104         (INTERNAL_SYSCALL_ERROR_P): Evalute VAL.  Parenthesize ERR.
4105         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
4107         * include/signal.h: Include <string.h> for memset decl.
4109 2005-02-22  Andreas Schwab  <schwab@suse.de>
4111         * posix/execvp.c (execvp): Fix invalid free.
4113 2005-02-22  Jakub Jelinek  <jakub@redhat.com>
4115         [BZ #1095]
4116         * malloc/Makefile (CFLAGS-mcheck-init.c): Add.
4117         * sunrpc/Makefile: Add $(PIC-ccflag) to CFLAGS-x* for
4118         librpcsvc.a objects.
4120 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
4122         [BZ #1107]
4123         * iconvdata/ibm930.h: Correct Yen mapping.
4124         * iconvdata/ibm939.h: Likewise.
4125         * iconvdata/testdata/IBM930..UTF8: Adjust test data.
4126         * iconvdata/testdata/IBM939..UTF8: Likewise.
4127         Patch by Jiro Sekiba <SEKIBA@jp.ibm.com>.
4129         * iconvdata/Makefile (modules): Add IBM1025, IBM1122, IBM1137, IBM1153,
4130         IBM1154, IBM1155, IBM1156, IBM1157, and IBM1158.
4131         (distribute): Add ibm1025.c, ibm1025.h, ibm1122.c, ibm1122.h,
4132         ibm1137.c, ibm1137.h, ibm1153.c, ibm1153.h, ibm1154.c, ibm1154.h,
4133         ibm1155.c, ibm1155.h, ibm1156.c, ibm1156.h, ibm1157.c, ibm1157.h,
4134         ibm1158.c, and ibm1158.h.
4135         * iconvdata/TESTS: Add IBM1025, IBM1122, IBM1137, IBM1153,
4136         IBM1154, IBM1155, IBM1156, IBM1157, and IBM1158.
4137         * iconvdata/gconv-modules: Likewise.
4138         * iconvdata/ibm1025.c: New file.
4139         * iconvdata/ibm1025.h: New file.
4140         * iconvdata/ibm1122.c: New file.
4141         * iconvdata/ibm1122.h: New file.
4142         * iconvdata/ibm1137.c: New file.
4143         * iconvdata/ibm1137.h: New file.
4144         * iconvdata/ibm1153.c: New file.
4145         * iconvdata/ibm1153.h: New file.
4146         * iconvdata/ibm1154.c: New file.
4147         * iconvdata/ibm1154.h: New file.
4148         * iconvdata/ibm1155.c: New file.
4149         * iconvdata/ibm1155.h: New file.
4150         * iconvdata/ibm1156.c: New file.
4151         * iconvdata/ibm1156.h: New file.
4152         * iconvdata/ibm1157.c: New file.
4153         * iconvdata/ibm1157.h: New file.
4154         * iconvdata/ibm1158.c: New file.
4155         * iconvdata/ibm1158.h: New file.
4156         * iconvdata/testdata/IBM1025: New file.
4157         * iconvdata/testdata/IBM1025..UTF8: New file.
4158         * iconvdata/testdata/IBM1122: New file.
4159         * iconvdata/testdata/IBM1122..UTF8: New file.
4160         * iconvdata/testdata/IBM1137: New file.
4161         * iconvdata/testdata/IBM1137..UTF8: New file.
4162         * iconvdata/testdata/IBM1153: New file.
4163         * iconvdata/testdata/IBM1153..UTF8: New file.
4164         * iconvdata/testdata/IBM1154: New file.
4165         * iconvdata/testdata/IBM1154..UTF8: New file.
4166         * iconvdata/testdata/IBM1155: New file.
4167         * iconvdata/testdata/IBM1155..UTF8: New file.
4168         * iconvdata/testdata/IBM1156: New file.
4169         * iconvdata/testdata/IBM1156..UTF8: New file.
4170         * iconvdata/testdata/IBM1157: New file.
4171         * iconvdata/testdata/IBM1157..UTF8: New file.
4172         * iconvdata/testdata/IBM1158: New file.
4173         * iconvdata/testdata/IBM1158..UTF8: New file.
4174         Contributed by Jiro Sekiba <SEKIBA@jp.ibm.com>.
4176 2005-02-10  Paolo Bonzini  <bonzini@gnu.org>
4178         * posix/regcomp.c (lower_subexp): Do not optimize empty
4179         subexpressions even with REG_NOSUB.
4180         * posix/rxspencer/tests: Add a previously failing testcase.
4182 2005-02-21  Alan Modra <amodra@bigpond.net.au>
4184         [BZ #719]
4185         * elf/dl-reloc.c (_dl_nothread_init_static_tls): Assert that dtv
4186         array index is within bounds.
4188 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
4190         [BZ #719]
4191         * elf/dl-load.c: Do not allow PT_TLS in modules loaded in statically
4192         linked code.
4193         * sysdeps/generic/dl-tls.c [!SHARED]: Don't build _dl_next_tls_modid.
4194         * elf/Makefile: Remove rules to build and run tst-tls9-static.
4196         [BZ #719]
4197         * elf/dl-reloc.c (_dl_nothread_init_static_tls): Avoid using
4198         THREAD_DTV multiple times, this minimally reduces code size on
4199         some archs.
4201 2005-02-21  Jakub Jelinek  <jakub@redhat.com>
4203         [BZ #768]
4204         * nscd/nscd_gethst_r.c (nscd_gethst_r): Set *h_errnop to
4205         NETDB_INTERNAL if buffer is too small.
4207         [BZ #768]
4208         * nscd/hstcache.c (INCR): Remove.
4209         (addhstbyX): Double buflen in each iteration rather than add INCR.
4210         * nscd/grpcache.c: Likewise.
4211         * nscd/pwdcache.c: Likewise.
4213 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
4215         * sysdeps/unix/sysv/linux/libc_fatal.c: Print backtrace and memory
4216         map if requested.
4217         * debug/chk_fail.c: Request backtrace and memory map dump.
4219         * Versions.def: Add GLIBC_2.4 for libc.
4220         * debug/fgets_chk.c: New file.
4221         * debug/fgets_u_chk.c: New file.
4222         * debug/getcwd_chk.c: New file.
4223         * debug/getwd_chk.c: New file.
4224         * debug/readlink_chk.c: New file.
4225         * debug/read_chk.c: New file.
4226         * debug/pread_chk.c: New file.
4227         * debug/pread64_chk.c: New file.
4228         * debug/recv_chk.c: New file.
4229         * debug/recvfrom_chk.c: New file.
4230         * debug/Versions: Add all new functions with version GLIBC_2.4.
4231         * debug/Makefile (routines): Add fgets_chk, fgets_u_chk, read_chk,
4232         pread_chk, pread64_chk, recv_chk, recvfrom_chk, readlink_chk,
4233         getwd_chk, and getcwd_chk.  Plus appropriate CFLAGS definitions.
4234         * debug/tst-chk1.c: Add more tests.
4235         * libio/bits/stdio2.h: Add macros for fgets and fgets_unlocked.
4236         * include/stdio.h: Declare __fgets_chk and __fgets_unlocked_chk.
4237         * posix/unistd.h: Include <bits/unistd.h> for fortification.
4238         * posix/bits/unistd.h: New file.
4239         * posix/Makefile (headers): Add bits/unistd.h.
4240         * socket/sys/socket.h: Include <bits/socket2.h> for fortification.
4241         * socket/bits/socket2.h: New file.
4242         * socket/Makefile (headers): Add bits/socket2.h.
4244         * string/bits/string3.h: Extend memset macro to check for zero 3rd
4245         parameter and use __memset_zero_constant_len_parameter in that case.
4246         * sysdeps/generic/memset_chk.c: Add
4247         __memset_zero_constant_len_parameter alias and linker warning.
4248         * debug/Versions: Add __memset_zero_constant_len_parameter to libc
4249         with version GLIBC_2.4.
4251         * sysdeps/generic/bits/types.h: Don't unnecessarily use __extension__
4252         in __STD_TYPE definition.
4254 2005-02-21  Jakub Jelinek  <jakub@redhat.com>
4256         * malloc/malloc.c (malloc_printerr): If MALLOC_CHECK_={5,7}, print
4257         the error message rather than program name.
4259 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
4261         [BZ #767]
4262         * posix/unistd.h: symlink and readlink are unconditionally
4263         available in the 2001 spec.
4265 2005-02-16  Roland McGrath  <roland@redhat.com>
4267         * intl/dcigettext.c (_nl_find_msg): Add a cast.
4269         * nis/nis_clone_dir.c (nis_clone_directory): Use char * for ADDR.
4270         * nis/nis_clone_obj.c (nis_clone_object): Likewise.
4271         * nis/nis_clone_res.c (nis_clone_result): Likewise.
4273         * resolv/nss_dns/dns-network.c (getanswer_r): Use const unsigned char *
4274         for END_OF_MESSAGE and CP.
4276         * resolv/res_send.c (send_dg): Add else branch for case impossible
4277         unless `poll' is buggy.
4279         * crypt/crypt_util.c (__setkey_r): Add a cast.
4281         * locale/programs/linereader.c (get_toplvl_escape): Use size_t for
4282         NBYTES, and unsigned char * for BYTES.
4284         * locale/programs/charmap.c (charmap_new_char): Use size_t and
4285         unsighed char * for NBYTES, BYTES parameters.
4287         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Take const char * argument
4288         and cast it.
4289         * sysdeps/i386/i686/dl-hash.h (_dl_elf_hash): Likewise.
4291         * sunrpc/create_xid.c (_create_xid): Don't use unsigned long for RES.
4293         * sunrpc/svcauth_des.c (_svcauth_des): Fix cast type.
4295         * sunrpc/auth_des.c (authdes_create): Don't use u_char for PKEY_DATA.
4296         (authdes_marshal): Don't use unsigned int for LEN.
4297         * sunrpc/xdr.c (xdr_hyper): Don't use unsigned long for T2.
4298         (xdr_u_hyper): Likewise.
4299         (xdr_u_short): Don't use u_long for L.
4300         * sunrpc/xdr_intXX_t.c (xdr_int64_t): Don't use uint32_t for T2.
4302         * inet/rexec.c (rexec_af): Use socklen_t.
4303         * sunrpc/key_call.c (getkeyserv_handle): Likewise.
4304         * sunrpc/rtime.c (rtime): Likewise.
4305         * resolv/res_send.c (send_vc, send_dg): Likewise.
4306         * nis/nis_callback.c (__nis_create_callback): Likewise.
4308         * sysdeps/generic/libc-start.c: Use unsigned int for nthreads ptr.
4310         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix type of ADDR local.
4312         * libio/libio.h (_IO_BE): Add parenthesis around EXPR.
4314         * intl/dcigettext.c (INTVARDEF, INTUSE): Macros removed.
4315         (_nl_default_dirname): Use libc_hidden_data_def instead of INTVARDEF.
4316         (libc_freeres_fn, DCIGETTEXT): Don't use INTUSE.
4317         * intl/bindtextdom.c (INTUSE): Macro removed.
4318         (_nl_default_dirname): Use libc_hidden_proto.
4319         (set_binding_values): Don't use INTUSE.
4320         * include/libintl.h (_libc_intl_domainname_internal): Decl removed.
4321         (_libc_intl_domainname): Use libc_hidden_proto.
4322         * posix/regex_internal.h (gettext): Remove INTUSE on it.
4323         * locale/SYS_libc.c (_libc_intl_domainname): Use libc_hidden_data_def
4324         rather than INTDEF.
4325         * include/libintl.h (_): Don't use *_internal name.
4327         * ctype/ctype-extn.c (__ctype_tolower, __ctype_toupper): Use int32_t,
4328         not uint32_t.
4329         * locale/lc-ctype.c (_nl_postload_ctype): Likewise for assignments.
4331         * iconv/gconv_open.c (__gconv_open): Remove useless cast.
4333         [BZ #721]
4334         * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define this outside
4335         of [RESOLVE_MAP].
4336         * sysdeps/sh/dl-machine.h (ELF_MACHINE_NO_REL): Likewise.
4337         * sysdeps/powerpc/powerpc32/dl-machine.h
4338         (elf_machine_rel, elf_machine_rel_relative): Removed.
4339         * sysdeps/powerpc/powerpc64/dl-machine.h
4340         (elf_machine_rel, elf_machine_rel_relative): Removed.
4342 2005-02-03  Alexandre Oliva  <aoliva@redhat.com>
4344         [BZ #721]
4345         * elf/dynamic-link.h: Don't declare nested auto functions that are
4346         not going to be defined.
4348 2004-07-23  Jakub Jelinek  <jakub@redhat.com>
4350         [BZ #284]
4351         * include/features.h (_POSIX_SOURCE, _POSIX_C_SOURCE): Define
4352         if _XOPEN_SOURCE >= 500 even if __STRICT_ANSI__ is defined.
4354 2005-02-16  Roland McGrath  <roland@redhat.com>
4356         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Move UBP_EV defn
4357         inside [! SHARED] where it's used.
4359 2005-02-15  Ulrich Drepper  <drepper@redhat.com>
4361         * sysdeps/generic/bits/byteswap.h: Make sure result of all the
4362         functions and macros is unsigned.
4364 2005-02-11  Barry deFrese  <bddebian@comcast.net>
4366         [BZ #722]
4367         * sysdeps/mach/hurd/setresgid.c: Use weak_alias.
4368         * sysdeps/mach/hurd/setresuid.c: Likewise.
4370 2005-02-14  GOTO Masanori  <gotom@debian.or.jp>
4372         * misc/sys/syslog.h: Fix typo in comment.
4374 2005-02-14  Roland McGrath  <roland@redhat.com>
4376         [BZ #720]
4377         * sysdeps/unix/sysv/linux/sys/kd.h: Don't leave _LINUX_TYPES_H defined
4378         if it wasn't originally.
4380 2005-02-14  GOTO Masanori  <gotom@debian.or.jp>
4382         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove the duplicated
4383         getpeername entry.
4384         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
4385         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
4387 2005-02-11  Jakub Jelinek  <jakub@redhat.com>
4389         * scripts/soversions.awk: Only record first WORDSIZE{32,64}
4390         matching line.
4392 2005-02-14  Alan Modra  <amodra@bigpond.net.au>
4394         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Define
4395         with auto inline, and attribute always_inline.
4396         (elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
4397         (elf_machine_rel, elf_machine_rel_relative): Likewise.
4398         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
4399         (elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
4400         (elf_machine_rel, elf_machine_rel_relative): Likewise.
4401         (elf_machine_tprel): Likewise.
4403 2005-02-14  Andreas Schwab  <schwab@suse.de>
4405         * manual/filesys.texi (Random Access Directory): Fix type of file
4406         position value for telldir and seekdir.
4407         (Attribute Meanings): Fix typo.
4409 2005-02-14  H.J. Lu  <hongjiu.lu@intel.com>
4411         * csu/elf-init.c (__libc_csu_fini): Enable if LIBC_NONSHARED
4412         isn't defined.
4413         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Call fini
4414         if SHARED isn't defined.
4415         * elf/Makefile (tests-static): Add tst-array1-static.
4416         ($(objpfx)tst-array1-static.out): New target.
4417         * elf/tst-array1-static.c: New file.
4419 2005-02-11  Jakub Jelinek  <jakub@redhat.com>
4421         [BZ #1100]
4422         * debug/chk_fail.c (__chk_fail): Add a while (1) loop around
4423         __libc_message to kill GCC warning about noreturn function returning.
4425         * elf/rtld.c (dlmain): If LD_TRACE_PRELINKING, clear l_relocated flag
4426         before relocating ld.so again.
4428         * elf/rtld.c (_dl_start): Set bootstrap_map.l_relocated even
4429         for already prelinked ld.so.
4431 2005-02-11  Roland McGrath  <roland@redhat.com>
4433         [BZ #715]
4434         * Makefile (installed-stubs): New variable.
4435         Set to $(inst_includedir)/gnu/stubs.h if $(biarch) is no,
4436         or to $(inst_includedir)/gnu/stubs-$(biarch).h if otherwise.
4437         [$(biarch) != no] (install-others-nosubdir): Add $(installed-stubs).
4438         ($(inst_includedir)/gnu/stubs.h): Use $(installed-stubs) for this
4439         rule's target.
4440         ($(inst_includedir)/gnu/stubs.h): New target, install from ...
4441         * include/stubs-biarch.h: New file.
4443         * shlib-versions (i.86-.*-.*): Add WORDSIZE64 line mapping to x86_64.
4445         * Makeconfig ($(common-objpfx)soversions.mk): Depend on Makeconfig.
4446         Emit defn for variable `biarch'.
4448         * include/stub-tag.h: Update comment.
4450         * scripts/soversions.awk: Fix default version set handling.
4452 2005-02-10  Roland McGrath  <roland@redhat.com>
4454         [BZ #157]
4455         * include/libc-symbols.h (stub_warning): Emit a marker section called
4456         .gnu.glibc-stub.NAME.
4457         * Makerules ($(objpfx)stubs): Depend on object files, not dep files.
4458         Use objdump to collect those marker section names.
4459         ($(common-objpfx)shlib.lds): Discard .gnu.glibc-stub.* sections.
4461         * Rules (subdir_objs, subdir_stubs): New phony targets.
4462         * Makefile (+subdir_targets): Add them.
4464         * Makerules ($(common-objpfx)Versions.all): Grok new leading column in
4465         soversions.i.
4467         * scripts/lib-names.awk: Consider [0-9].* a "number", not just [0-9]+.
4468         Reported by H.J. Lu <hongjiu.lu@intel.com>.
4470         * scripts/lib-names.awk: Always print WORDSIZE32 section first when
4471         doing two.
4473 2005-02-10  Jakub Jelinek  <jakub@redhat.com>
4475         * sysdeps/powerpc/powerpc32/bits/link.h: Removed.
4476         * sysdeps/powerpc/powerpc64/bits/link.h: Moved to...
4477         * sysdeps/powerpc/bits/link.h: ... here.  New file.
4479 2005-02-09  Jakub Jelinek  <jakub@redhat.com>
4481         [BZ #710]
4482         * stdlib/random_r.c (__initstate_r): Save old state.
4483         * stdlib/Makefile (tests): Add tst-random2.
4484         * stdlib/tst-random2.c: New test.
4485         Reported by Peter Bergner <bergner@vnet.ibm.com>.
4487 2005-01-25  H.J. Lu  <hongjiu.lu@intel.com>
4489         * dlfcn/dlfcn.c (init): Put it in .init_array section.
4491 2005-02-10  Roland McGrath  <roland@redhat.com>
4493         [BZ #632]
4494         * scripts/soversions.awk: Expect cpu, vendor, os as separate variables
4495         from command line.
4496         Grok shlib-versions lines with WORDSIZE* in second column.
4497         Add new leading column to output, DEFAULT for existing output lines.
4498         Also emit lines with WORDSIZE* for alternate configurations.
4499         * Makeconfig ($(common-objpfx)soversions.i): Pass those variables.
4500         ($(common-objpfx)soversions.mk): Grok new column, use only DEFAULT.
4501         ($(common-objpfx)gnu/lib-names.stmp): Depend on soversions.i instead
4502         of soversions.mk; replace inline shell script with use of ...
4503         * scripts/lib-names.awk: New file.  If input has non-DEFAULT lines,
4504         emit multiple sets of macros under #if.
4505         * shlib-versions (x86_64-.*-.*): Add WORDSIZE32 line mapping to i686.
4506         (s390x-.*-.*): Likewise for s390.
4507         (powerpc64-.*-.*): Likewise for powerpc.
4508         (sparc64-.*-.*): Likewise for sparc.
4509         (s390-.*-.*, powerpc.*-.*-.*, sparc.*-.*-.*): Add WORDSIZE64 entries
4510         for these mapping back to the above.
4512 2005-02-08  Jakub Jelinek  <jakub@redhat.com>
4514         * elf/dl-load.c (_dl_map_object_from_fd): Fix a typo.
4516 2005-02-08  Andreas Schwab  <schwab@suse.de>
4518         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Remove use of
4519         RESOLVE.
4521 2005-02-07  Richard Henderson  <rth@redhat.com>
4523         * iconvdata/jis0208.h (struct jisx0208_ucs_idx): Move before use.
4525 2005-02-08  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4527         * sysdeps/sh/dl-machine.h (elf_machine_rela): Remove code using
4528         RESOLVE.
4530 2005-02-07  Ulrich Drepper  <drepper@redhat.com>
4532         * elf/dl-load.c (_dl_map_object_from_fd): Make sure registers are
4533         set correctly.
4535 2005-01-07  Richard Henderson  <rth@redhat.com>
4537         * math/math_private.h (__copysign): Define as builtin for gcc 4.
4538         (__copysignf, __copysignl): Likewise.
4539         * sysdeps/alpha/fpu/bits/mathinline.h (copysign): Don't define
4540         for gcc 4.0.
4541         (copysignf, copysignl, fabsf, fabs): Likewise.
4542         (__copysign, __copysignf, __copysignl): Remove.
4543         (__fabs, __fabsf): Remove.
4545 2005-01-07  Jakub Jelinek  <jakub@redhat.com>
4547         [BZ #738]
4548         * elf/dl-load.c (open_path): If rtld_search_dirs is in RELRO segment,
4549         avoid writing to it if none of the standard search directories exist.
4551 2005-02-07  Steven Munroe  <sjmunroe@us.ibm.com>
4553         [BZ #700]
4554         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
4555         (__novec_setcontext, __setcontext): Fix typo so CCR is restored.
4556         Load MSR as a doubleword.
4557         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
4558         (__novec_swapcontext, __swapcontext): Likewise.
4560 2005-02-07  Ulrich Drepper  <drepper@redhat.com>
4562         * iconv/iconv_prog.c (main): Provide more help in case on an error.
4564         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Define.
4566 2005-02-07  Jakub Jelinek  <jakub@redhat.com>
4568         [BZ #741]
4569         * nscd/nscd.c (termination_handler): Avoid segfault if some database
4570         is not enabled.
4572         [BZ #741]
4573         * nscd/nscd_getai.c (__nscd_getai): If ai_resp->found == -1, set
4574         __nss_not_use_nscd_hosts and return -1.
4575         * nscd/nscd_initgroups.c (__nscd_getgrouplist): If
4576         initgr_resp->found == -1, set __nss_not_use_nscd_group and return -1.
4577         Avoid leaking sockets.
4579 2005-01-28  Andreas Schwab  <schwab@suse.de>
4580             H.J. Lu  <hongjiu.lu@intel.com>
4582         [BZ #677]
4583         * elf/dl-runtime.c (fixup): Change return type to
4584         DL_FIXUP_VALUE_TYPE. Use DL_FIXUP_VALUE_TYPE,
4585         DL_FIXUP_MAKE_VALUE and DL_FIXUP_VALUE_CODE_ADDR for relocation
4586         values. Use DL_FIXUP_VALUE_ADDR and DL_FIXUP_ADDR_VALUE to
4587         store and retrieve relocation values.
4588         (profile_fixup): Likewise.
4589         * include/link.h (link_map): Use DL_FIXUP_VALUE_TYPE for
4590         l_reloc_result.
4591         * sysdeps/generic/dl-fptr.h (link_map): Forward declaration.
4592         * sysdeps/generic/dl-lookupcfg.h (DL_FIXUP_VALUE_TYPE): New.
4593         (DL_FIXUP_MAKE_VALUE): Likewise.
4594         (DL_FIXUP_VALUE_CODE_ADDR): Likewise.
4595         (DL_FIXUP_VALUE_ADDR): Likewise.
4596         (DL_FIXUP_ADDR_VALUE): Likewise.
4597         * sysdeps/ia64/dl-lookupcfg.h: Include <dl-fptr.h> for "struct fdesc".
4598         (DL_FIXUP_VALUE_TYPE): New.
4599         (DL_FIXUP_MAKE_VALUE): Likewise.
4600         (DL_FIXUP_VALUE_CODE_ADDR): Likewise.
4601         (DL_FIXUP_VALUE_ADDR): Likewise.
4602         (DL_FIXUP_ADDR_VALUE): Likewise.
4603         * sysdeps/ia64/dl-machine.h (elf_machine_profile_fixup_plt): Removed.
4604         (elf_machine_profile_plt): Removed.
4605         (elf_machine_fixup_plt): Change return type and type of value
4606         parameter to struct fdesc.
4607         (elf_machine_plt_value): Likewise.
4608         (elf_machine_rela): Use DL_FIXUP_MAKE_VALUE to construct
4609         argument for elf_machine_fixup_plt.
4611 2005-02-07  Jakub Jelinek  <jakub@redhat.com>
4613         [BZ #742]
4614         * nscd/nscd.init (reload): Print Reloading nscd: before and a newline
4615         after the status string printed by killproc.
4617 2004-11-18  Alexandre Oliva  <aoliva@redhat.com>
4619         * manual/.cvsignore: Add dir-add.texi.
4621 2005-02-06  Richard Henderson  <rth@redhat.com>
4623         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Use RESOLVE_MAP
4624         all the time.
4626 2004-11-03  Marcus Brinkmann  <marcus@gnu.org>
4628         * configure.in (sysnames): Append sysdeps/generic for each add-on.
4629         * configure: Regenerated.
4631 2005-02-02  Alfred M. Szmidt  <ams@gnu.org>
4633         * sysdeps/mach/hurd/tls.h: Include <stdbool.h>
4634         (dtv_t): Change pointer type to be a struct which also contains
4635         information whether the memory pointed to is static TLS or not.
4637         * sysdeps/generic/syslog.c (send_flags) [!send_flags]: Define it.
4639         * shadow/sgetspent_r.c (FALSE): Macro renamed to ...
4640         (FALSEP): ... this.  Updated all references.
4642         [BZ #765]
4643         * libio/fmemopen.c: Include <stdint.h>.
4645 2005-01-30  Ulrich Drepper  <drepper@redhat.com>
4647         [BZ #1103]
4648         * nscd/nscd_helper.c (get_mapping): Use MSG_NOSIGNAL if available.
4649         * nscd/connections.c (send_ro_fd): Likewise.
4651 2005-01-28  H.J. Lu  <hongjiu.lu@intel.com>
4653         * elf/tst-auditmod1.c: Add ia64 entries.
4654         * sysdeps/generic/ldsodefs.h (La_ia64_regs): New.
4655         (La_ia64_retval): New.
4656         (audit_ifaces): Add ia64 entries.
4657         * sysdeps/ia64/bits/link.h: New file.
4658         * sysdeps/ia64/dl-machine.h (elf_machine_runtime_setup): Test
4659         for dl_profile non-null.
4660         (ARCH_LA_PLTENTER): New.
4661         (ARCH_LA_PLTEXIT): New.
4662         * sysdeps/ia64/dl-trampoline.S (_dl_runtime_resolve): Allocate
4663         only 2 output registers. Allocate stack to save/restore
4664         8 incoming fp registers. Call _dl_fixup instead of fixup.
4665         (_dl_runtime_profile): Rewrite.
4667 2005-01-28  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4669         * sysdeps/s390/bits/link.h: New file.
4670         * sysdeps/s390/s390-32/dl-trampoline.S: New file.
4671         * sysdeps/s390/s390-64/dl-trampoline.S: New file.
4672         * sysdeps/s390/s390-32/dl-machine.h: Move PLT trampolines to
4673         dl-trampoline.S. Use RESOLVE_MAP instead of RESOLVE to protect
4674         relocation code.
4675         (elf_machine_runtime_setup): Test for dl_profile non-null.
4676         (elf_machine_rela): Remove code using RESOLVE.
4677         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
4678         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
4679         * sysdeps/generic/ldsodefs.h (La_s390_32_regs, La_s390_32_retval,
4680         La_s390_64_regs, La_s390_64_retval): New.
4681         * elf/tst-auditmod1.c: Add s390 entries.
4683         [BZ #743]
4684         * sysdeps/s390/bits/string.h (strlen, strncpy, strcat, strncat,
4685         strncat, memchr, strcmp): Add missing memory clobber.
4687 2005-01-27  Ulrich Drepper  <drepper@redhat.com>
4689         * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_globfree): Also
4690         copy gl_offs.  Patch by Sergey Tikhonov <tsv@solvo.ru>.
4692 2005-01-27  Paolo Bonzini  <bonzini@gnu.org>
4694         [BZ #558]
4695         * posix/regcomp.c (calc_inveclosure): Return reg_errcode_t.
4696         Initialize the node sets in dfa->inveclosures.
4697         (analyze): Initialize inveclosures only if it is needed.
4698         Check errors from calc_inveclosure.
4699         * posix/regex_internal.c (re_dfa_add_node): Do not initialize
4700         the inveclosure node set.
4701         * posix/regexec.c (re_search_internal): If nmatch includes unused
4702         subexpressions, reset them to { rm_so: -1, rm_eo: -1 } here.
4704         * posix/regcomp.c (parse_bracket_exp) [!RE_ENABLE_I18N]:
4705         Do build a SIMPLE_BRACKET token.
4707         * posix/regexec.c (transit_state_mb): Do not examine nodes
4708         where ACCEPT_MB is not set.
4710 2005-01-27  Jakub Jelinek  <jakub@redhat.com>
4712         * stdlib/tst-fmtmsg.c: Include stdlib.h.
4713         * stdio-common/tst-fmemopen2.c: Include string.h.
4714         * posix/execvp.c: Include stdbool.h.
4716 2004-12-13  Paolo Bonzini  <bonzini@gnu.org>
4718         Separate parsing and creation of the NFA.  Avoided recursion on
4719         the (very unbalanced) parse tree.
4720         [BZ #611]
4721         * posix/regcomp.c (struct subexp_optimize, analyze_tree, calc_epsdest,
4722         re_dfa_add_tree_node, mark_opt_subexp_iter): Removed.
4723         (optimize_subexps, duplicate_tree, calc_first, calc_next,
4724         mark_opt_subexp): Rewritten.
4725         (preorder, postorder, lower_subexps, lower_subexp, link_nfa_nodes,
4726         create_token_tree, free_tree, free_token): New.
4727         (analyze): Accept a regex_t *.  Invoke the passes via the preorder and
4728         postorder generic visitors.  Do not initialize the fields in the
4729         re_dfa_t that represent the transitions.
4730         (free_dfa_content): Use free_token.
4731         (re_compile_internal): Analyze before UTF-8 optimizations.  Do not
4732         include optimization of subexpressions.
4733         (create_initial_state): Fetch the DFA node index from the first node's
4734         bin_tree_t *.
4735         (optimize_utf8): Abort on unexpected nodes, including OP_DUP_QUESTION.
4736         Return on COMPLEX_BRACKET.
4737         (duplicate_node_closure): Fix comment.
4738         (duplicate_node): Do not initialize the fields in the
4739         re_dfa_t that represent the transitions.
4740         (calc_eclosure, calc_inveclosure): Do not handle OP_DELETED_SUBEXP.
4741         (create_tree): Remove final argument.  All callers adjusted.  Rewritten
4742         to use create_token_tree.
4743         (parse_reg_exp, parse_branch, parse_expression, parse_bracket_exp,
4744         build_charclass_op): Use create_tree or create_token_tree instead
4745         of re_dfa_add_tree_node.
4746         (parse_dup_op): Likewise.  Also free the tree using free_tree for
4747         "<re>{0}", and lower OP_DUP_QUESTION to OP_ALT: "a?" is equivalent
4748         to "a|".  Adjust invocation of mark_opt_subexp.
4749         (parse_sub_exp): Create a single SUBEXP node.
4750         * posix/regex_internal.c (re_dfa_add_node): Remove last parameter,
4751         always perform as if it was 1.  Do not initialize OPT_SUBEXP and
4752         DUPLICATED, and initialize the DFA fields representing the transitions.
4753         * posix/regex_internal.h (re_dfa_add_node): Adjust prototype.
4754         (re_token_type_t): Move OP_DUP_PLUS and OP_DUP_QUESTION to the tokens
4755         section.  Add a tree-only code SUBEXP.  Remove OP_DELETED_SUBEXP.
4756         (bin_tree_t): Include a full re_token_t for TOKEN.  Turn FIRST and
4757         NEXT into pointers to trees.  Remove ECLOSURE.
4759 2004-12-28  Paolo Bonzini  <bonzini@gnu.org >
4761         [BZ #605]
4762         * posix/regcomp.c (parse_bracket_exp): Do not modify DFA nodes
4763         that were already created.
4764         * posix/regex_internal.c (re_dfa_add_node): Set accept_mb field
4765         in the token if needed.
4766         (create_ci_newstate, create_cd_newstate): Set accept_mb field
4767         from the tokens' field.
4768         * posix/regex_internal.h (re_token_t): Add accept_mb field.
4769         (ACCEPT_MB_NODE): Removed.
4770         * posix/regexec.c (proceed_next_node, transit_states_mb,
4771         build_sifted_states, check_arrival_add_next_nodes): Use
4772         accept_mb instead of ACCEPT_MB_NODE.
4774 2005-01-26  Ulrich Drepper  <drepper@redhat.com>
4776         [BZ #1100]
4777         * debug/chk_fail.c (__chk_fail): Print program name in final message.
4779         * sysdeps/unix/sysv/linux/kernel-features.h: Found reference to
4780         MSG_NOSIGNAL being in 2.2 kernels.
4782 2005-01-26  Jakub Jelinek  <jakub@redhat.com>
4784         * sysdeps/unix/sysv/linux/i386/sysdep.h
4785         (SYSCALL_ERROR_HANDLER_TLS_STORE): Remove unnecessary 0 imm.
4787         [BZ #693]
4788         * posix/regex_internal.h (DUMMY_CONSTRAINT): Rename to...
4789         (WORD_DELIM_CONSTRAINT): ...this.
4790         (NOT_WORD_DELIM_CONSTRAINT): Define.
4791         (re_context_type): Add INSIDE_NOTWORD and NOT_WORD_DELIM,
4792         change WORD_DELIM to use WORD_DELIM_CONSTRAINT.
4793         * posix/regcomp.c (peek_token): For \B create NOT_WORD_DELIM
4794         anchor instead of INSIDE_WORD.
4795         (parse_expression): Handle NOT_WORD_DELIM constraint.
4796         * posix/bug-regex19.c (tests): Adjust tests that relied on \B
4797         being inside word instead of not word delim.
4798         * posix/tst-rxspencer.c (mb_frob_pattern): Don't frob escaped
4799         characters.
4800         * posix/rxspencer/tests: Add some new tests.
4802 2005-01-14  GOTO Masanori  <gotom@debian.or.jp>
4804         [BZ #1108]
4805         * sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
4806         irrespective of Cflag.
4808         * manual/memory.texi (sbrk): Fix definition.
4809         * manual/string.texi (strcasestr): Fix example typo.
4811 2005-01-25  Roland McGrath  <roland@redhat.com>
4813         * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
4815 2005-01-23  Roland McGrath  <roland@redhat.com>
4817         [BZ #737]
4818         * sysdeps/i386/Makefile (defines): If -mno-tls-direct-seg-refs appears
4819         in $(CFLAGS), add -DNO_TLS_DIRECT_SEG_REFS.
4820         * sysdeps/unix/sysv/linux/i386/sysdep.h [USE___THREAD]
4821         (SYSCALL_ERROR_HANDLER) [NO_TLS_DIRECT_SEG_REFS]: Load thread pointer
4822         from %gs:0 and add to that value, rather that direct %gs:OFFSET access.
4823         * sysdeps/unix/i386/sysdep.S [NO_TLS_DIRECT_SEG_REFS]: Likewise.
4825 2005-01-25  Jakub Jelinek  <jakub@redhat.com>
4827         [BZ #731]
4828         * stdlib/fmtmsg.c (addseverity): Remove new_string variable.
4829         (free_mem): Don't free string.
4830         * stdlib/tst-fmtmsg.c: Include string.h.
4831         (main): Add some more tests.
4833 2005-01-25  Andreas Schwab  <schwab@suse.de>
4835         [BZ #736]
4836         * timezone/asia: Update from tzdata2005c.
4837         * timezone/backward: Likewise.
4838         * timezone/europe: Likewise.
4839         * timezone/leapseconds: Likewise.
4840         * timezone/northamerica: Likewise.
4841         * timezone/southamerica: Likewise.
4843         [BZ #736]
4844         * timezone/private.h: Update from tzcode2005c.
4845         * timezone/tzfile.h: Likewise.
4846         * timezone/zdump.c: Likewise.
4847         * timezone/zic.c: Likewise.
4849 2005-01-25  Ulrich Drepper  <drepper@redhat.com>
4851         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove code using
4852         RESOLVE.
4853         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Remove code
4854         using RESOLVE.
4855         * elf/rtld.c (_dl_start): Remove RESOLVE definition.
4857 2005-01-25  Alan Modra  <amodra@bigpond.net.au>
4859         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Test
4860         sym_map, not sym, against zero.
4862 2005-01-24  Ulrich Drepper  <drepper@redhat.com>
4864         [BZ #671]
4865         * misc/syslog.c: Moved to...
4866         * sysdeps/generic/syslog.c: ...here.
4867         [NO_SIGIPE]: Don't install SIGPIPE handler.
4868         * sysdeps/unix/sysv/linux/syslog.c: New file.
4869         * sysdeps/unix/sysv/linux/kernel-features.h: Define
4870         __ASSUME_MSG_NOSIGNAL.
4872 2005-01-22  Richard Henderson  <rth@redhat.com>
4874         * sysdeps/alpha/dl-trampoline.S: New file.
4875         * sysdeps/alpha/dl-machine.h: Move PLT trampolines there.
4876         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
4877         (elf_machine_runtime_setup): Test for dl_profile non-null.
4878         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
4879         * sysdeps/alpha/bits/link.h: New file.
4880         * sysdeps/generic/ldsodefs.h (La_alpha_regs, La_alpha_retval): New.
4881         (struct audit_ifaces): Add alpha entries.
4882         * elf/tst-auditmod1.c: Add alpha entries.
4884 2005-01-22  Ulrich Drepper  <drepper@redhat.com>
4886         * sysdeps/ia64/dl-machine.h: Remove PLT trampolines here.
4887         * sysdeps/ia64/dl-trampoline.S: New file.
4889         * sysdeps/x86_64/bits/link.h: Use namespace-safe identifiers in
4890         La_x86_64_xmm definition.
4892         * posix/Makefile: Use CFLAGS-*.os instead of CFLAGS-*.c for frame
4893         pointer option.
4894         * stdlib/Makefile (CFLAGS-system.os): Use this instead of
4895         CFLAGS-system.c for frame pointer option.
4897 2005-01-21  Roland McGrath  <roland@redhat.com>
4899         * elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS.
4900         * sysdeps/i386/dl-machine.h: Update decl.
4902 2005-01-21  Jakub Jelinek  <jakub@redhat.com>
4904         [BZ #735]
4905         * elf/Makefile: Add rules to build and run tst-align2.
4906         * elf/tst-align2.c: New test.
4907         * elf/tst-alignmod2.c: New file.
4908         * sysdeps/powerpc/tst-stack-align.h: New file.
4909         * sysdeps/i386/dl-machine.h (RTLD_START): Align stack and clear frame
4910         pointer before calling _dl_init.
4911         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
4913 2005-01-20  Ulrich Drepper  <drepper@redhat.com>
4915         * posix/execl.c: Do not allocate potentially large buffers on the
4916         stack.
4917         * posix/execle.c: Likewise.
4918         * posix/execlp.c: Likewise.
4919         * posix/execvp.c: Likewise.
4920         (script_execute): Removed.
4921         (allocate_scripts_argv): New function.  Called at most once to
4922         allocate memory, not every time a script is run.  Adjust caller.
4924         * sysdeps/generic/wordexp.c (exec_comm): Add a few
4925         TEMP_FAILURE_RETRY.  Reorganize code to avoid multiple calls to
4926         exec_comm_child.
4927         (exec_comm_child): Can now be inlined.
4929         * posix/Makefile: Add -fomit-frame-pointer for a few more files.
4930         * stdlib/Makefile: Likewise.
4932 2005-01-19  Roland McGrath  <roland@redhat.com>
4934         [BZ #681]
4935         * sunrpc/openchild.c (_openchild): Use NULL instead of 0 for trailing
4936         argument to execlp.
4937         Reported by Marcus Meissner <meissner@suse.de>.
4939 2005-01-19  Jakub Jelinek  <jakub@redhat.com>
4941         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Fix a typo
4942         in assert.
4943         * iconv/strtab.c (strtabfinalize): Likewise.
4945         * libio/iofopncook.c (_IO_cookie_seekoff): Add prototype.
4947 2005-01-17  Roland McGrath  <roland@redhat.com>
4949         [BZ #745]
4950         * nscd/Makefile (LDLIBS-nscd): New variable.
4951         ($(objpfx)nscd): Use that instead of selinux-LIBS.
4953         * Makeconfig (link-extra-libs): Define just as $(LDLIBS-$(@F)).
4954         (link-extra-libs-static): Define to $(link-extra-libs).
4955         (link-extra-libs-bounded): Likewise.
4957 2005-01-17  Ulrich Drepper  <drepper@redhat.com>
4959         * include/link.h: Remove stray definition of pltenter.
4961 2005-01-16  GOTO Masanori  <gotom@debian.or.jp>
4963         [BZ #734]
4964         * sysdeps/unix/rewinddir.c: Reset filepos.
4965         * dirent/tst-seekdir.c: Check telldir value after calling rewinddir.
4967 2005-01-15  Ulrich Drepper  <drepper@redhat.com>
4969         * elf/tst-auditmod1.c: Reduce duplication.
4971 2005-01-16  Andreas Schwab  <schwab@suse.de>
4973         * sysdeps/m68k/dl-machine.h: Remove trampoline code.  Define
4974         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
4975         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
4976         GLRO(dl_profile) != NULL.
4977         * sysdeps/m68k/dl-trampoline.S: New file.
4978         * sysdeps/m68k/bits/link.h: New file.
4979         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add m68k
4980         variants.
4981         * elf/tst-auditmod1.c: Add m68k support.
4983 2005-01-14  Ulrich Drepper  <drepper@redhat.com>
4985         * posix/regcomp.c [!_LIBC] (init_dfa): Fix determining of relevant
4986         LC_* variable.  Patch by Aharon Robbins <arnold@skeeve.com>.
4988         [BZ #731]
4989         * stdlib/fmtmsg.c (internal_addseverity): Remove incorrect free call.
4990         * stdlib/tst-fmtmsg.c (main): Add another addseverity test.
4992 2005-01-12  Ulrich Drepper  <drepper@redhat.com>
4994         * elf/dl-load.c (_dl_map_object_from_fd): We don't have to allow
4995         callers from libc anymore.
4997         * elf/dl-open.c (dl_open_worker): Pass __RTLD_AUDIT flag from caller
4998         to _dl_map_object_deps.
4999         * elf/dl-load.c (_dl_map_object_from_fd): Don't change memory
5000         protections when loading auditing modules.
5002         * dlfcn/dlopen.c (dlopen_doit): Catch invalid mode arguments and fail.
5004         * posix/getconf.c: Update copyright year.
5005         * nss/getent.c: Likewise.
5006         * nscd/nscd_nischeck.c: Likewise.
5007         * iconv/iconvconfig.c: Likewise.
5008         * iconv/iconv_prog.c: Likewise.
5009         * elf/ldconfig.c: Likewise.
5010         * catgets/gencat.c: Likewise.
5011         * csu/version.c: Likewise.
5012         * elf/ldd.bash.in: Likewise.
5013         * elf/sprof.c (print_version): Likewise.
5014         * locale/programs/locale.c: Likewise.
5015         * locale/programs/localedef.c: Likewise.
5016         * nscd/nscd.c (print_version): Likewise.
5017         * debug/xtrace.sh: Likewise.
5018         * malloc/memusage.sh: Likewise.
5019         * malloc/mtrace.pl: Likewise.
5020         * debug/catchsegv.sh: Likewise.
5022 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
5024         [BZ #733]
5025         * sunrpc/svc_tcp.c (svctcp_create): Call listen with SOMAXCONN
5026         as backlog.
5027         * sunrpc/svc_unix.c (svcunix_create): Likewise.
5029         [BZ #1099]
5030         * grp/putgrent.c (putgrent): Don't write 0 as group
5031         ID if groupname starts with + or -.
5032         * pwd/putpwent.c (putpwent): Don't write 0 as user or
5033         group ID if user name starts with + or -.
5035 2005-01-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
5037         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add sh variants.
5038         * sysdeps/elf/tst-auditmod1.c: Add sh support.
5039         * sysdeps/sh/bits/link.h: New.
5040         * sysdeps/sh/dl-machine.h: Remove trampoline code here.  Define
5041         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.  Remove obsolete comments.
5042         (RTLD_START): Define __fpscr_values.
5043         * sysdeps/sh/dl-trampoline.S: New file.
5044         * sysdeps/sh/sh4/dl-trampoline.S: New file.
5045         * sysdeps/sh/sh4/Versions [ld]: Add __fpscr_values.
5046         * sysdeps/sh/sh4/dl-machine.h: Remove.
5048 2005-01-10  Jakub Jelinek  <jakub@redhat.com>
5050         [BZ #732]
5051         * time/tst-strptime.c (day_tests): Add 2 new tests.
5052         (test_tm, main): Issue an error instead of segfaulting if
5053         strptime returns NULL.
5055 2005-01-10  H.J. Lu  <hongjiu.lu@intel.com>
5057         * sysdeps/alpha/libc-tls.c (__tls_get_addr): Updated for dtv_t union.
5058         * sysdeps/ia64/libc-tls.c (__tls_get_addr): Likewise.
5060 2005-01-11  Ulrich Drepper  <drepper@redhat.com>
5062         * malloc/malloc.h: Remove no-glibc support.
5064 2005-01-12  GOTO Masanori  <gotom@debian.or.jp>
5066         [BZ #650]
5067         * malloc/malloc.h: Always include features.h.
5069 2005-01-10  Roland McGrath  <roland@redhat.com>
5071         * sysdeps/ia64/fpu/e_logl.c: File removed.
5073         * dlfcn/dlfcn.c (init): Fix typo in attribute decl.
5075 2005-01-10  Ulrich Drepper  <drepper@redhat.com>
5077         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Fix assertion and
5078         recognition of last entry.
5080 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
5082         * elf/dl-runtime.c: Include <sys/param.h>.
5084         * elf/Makefile (headers): Add bits/link.h.
5086 2005-01-09  Andreas Schwab  <schwab@suse.de>
5088         * elf/rtld.c (dl_main): Create main_map with __RTLD_OPENEXEC.
5090 2005-01-09  Andreas Jaeger  <aj@suse.de>
5092         [BZ #732]
5093         * time/strptime_l.c (__strptime_internal): Add braces to avoid
5094         warning.
5096         * sysdeps/x86_64/bits/link.h: Use vector_size for GCC 4.0.
5098         * elf/rtld.c (dl_main): Call _dl_add_to_slotinfo only if USE_TLS.
5100 2005-01-08  Jakub Jelinek  <jakub@redhat.com>
5102         * elf/Makefile (generated): Add tst-pie1{,.out,.o}.
5104 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
5106         * elf/dl-fini.c (_dl_fini): Call destructors of audit DSOs after
5107         those of all the regular objects.
5109         * elf/dl-debug.c (_dl_debug_initialize): Take extra parameter and
5110         use it to select the r_debug structure for that namespace.
5111         * elf/dl-close.c (_dl_close): Adjust call to _dl_debug_initialize.
5112         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
5113         * elf/dl-open.c (_dl_open): Likewise.
5114         * elf/rtld.c (dl_main): Likewise.
5115         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Add _ns_debug
5116         member.
5117         (_dl_debug_initialize): Add new parameter in declaration.
5119         * elf/dl-close.c (_dl_close): Make sure auditing callbacks are not
5120         called for the auditing objects themselves.
5121         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
5123 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
5125         * sysdeps/powerpc/powerpc64/dl-machine.h
5126         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
5127         GLRO(dl_profile) != NULL.
5128         * sysdeps/powerpc/powerpc64/bits/link.h (struct la_ppc64_regs): Add
5129         padding.
5130         * sysdeps/powerpc/powerpc64/dl-trampoline.S: (_dl_profile_resolve):
5131         Extend _dl_prof_resolve to add pass extra parameters to
5132         _dl_profile_fixup and set up structure with register content.
5134         * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_runtime_setup):
5135         If profile != 0 does not anymore mean GLRO(dl_profile) != NULL.
5136         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_prof_resolve):
5137         Extend _dl_prof_resolve to add pass extra parameters to
5138         _dl_profile_fixup and set up structure with register content.
5139         * sysdeps/powerpc/powerpc32/bits/link.h: Fix types of some fields in
5140         the register and result structures.
5141         * sysdeps/powerpc/powerpc64/bits/link.h: Fix types of some fields
5142         in the 32-bit register and result structures.
5144         * sysdeps/powerpc/powerpc64/dl-trampoline.S: Use register names.
5146         * sysdeps/powerpc/powerpc32/dl-trampoline.S: New file.
5147         * sysdeps/powerpc/powerpc32/dl-machine.h: Remove trampoline code here.
5148         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
5149         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc32 variants.
5150         * elf/tst-auditmod1.c: Add ppc32 support.
5151         * sysdeps/powerpc/powerpc32/bits/link.h: New file.
5152         * sysdeps/powerpc/powerpc64/bits/link.h: Add ppc32 definitions.
5154         * malloc/malloc.c (malloc_printerr): Print program name as part of
5155         error message.
5157         * misc/sys/cdefs.h (__attribute_warn_unused_result__): Define.
5158         * stdlib/stdlib.h: Make realloc with
5159         __attribute_warn_unused_result__ instead of __wur.
5160         * malloc/malloc.h: Add __wur and __attribute_warn_unused_result__
5161         markers as in <stdlib.h>.
5163         * libio/stdio.h: Remove __wur from rename and remove.
5164         * posix/unistd.h: Remove __wur from dup2.
5166 2005-01-03  Andreas Jaeger  <aj@suse.de>
5168         * elf/Makefile (tests): Revert patch from 2005-01-03.
5170 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
5172         * sysdeps/unix/sysv/linux/init-first.c (__libc_init_first): Don't
5173         make __libc_init_first hidden.
5175         * elf/rtld.c [!DONT_USE_BOOTSTRAP_MAP] (_dl_start_final): Initialize
5176         l_relocated of rtld map.
5177         * sysdeps/powerpc/powerpc64/dl-trampoline.S: New file.
5178         * sysdeps/powerpc/powerpc64/dl-machine.h: Remove trampoline code here.
5179         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
5180         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc64 variants.
5181         * elf/tst-auditmod1.c: Add ppc64 support.
5182         * sysdeps/powerpc/powerpc64/bits/link.h: New file.
5184 2005-01-06  Roland McGrath  <roland@redhat.com>
5186         [BZ #633]
5187         * sysdeps/unix/sysv/linux/futimes.c (__futimes): Catch errno values
5188         indicating file-name lookup errors, and return ENOSYS or EBADF instead.
5190 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
5192         * csu/elf-init.c (__libc_csu_fini): Don't do anything here.
5193         * sysdeps/generic/libc-start.c: Don't register program destructor here.
5195         * dlfcn/Makefile: Add rules to build dlfcn.c.
5196         (LDFLAGS-dl.so): Removed.
5197         * dlfcn/dlclose.c: _dl_close is now in ld.so, use function pointer
5198         table.
5199         * dlfcn/dlmopen.c: Likewise for _dl_open.
5200         * dlfcn/dlopen.c: Likewise.
5201         * dlfcn/dlopenold.c: Likewise.
5202         * elf/dl-libc.c: Likewise for _dl_open and _dl_close.
5203         * elf/Makefile (routines): Remove dl-open and dl-close.
5204         (dl-routines): Add dl-open, dl-close, and dl-trampoline.
5205         Add rules to build and run tst-audit1.
5206         * elf/tst-audit1.c: New file.
5207         * elf/tst-auditmod1.c: New file.
5208         * elf/Versions [libc]: Remove _dl_open and _dl_close.
5209         * elf/dl-close.c: Change for use inside ld.so instead of libc.so.
5210         * elf/dl-open.c: Likewise.
5211         * elf/dl-debug.c (_dl_debug_initialize): Allow reinitialization,
5212         signaled by nonzero parameter.
5213         * elf/dl-init.c: Fix use of r_state.
5214         * elf/dl-load.c: Likewise.
5216         * elf/dl-close.c: Add auditing checkpoints.
5217         * elf/dl-open.c: Likewise.
5218         * elf/dl-fini.c: Likewise.
5219         * elf/dl-load.c: Likewise.
5220         * elf/dl-sym.c: Likewise.
5221         * sysdeps/generic/libc-start.c: Likewise.
5222         * elf/dl-object.c: Allocate memory for auditing information.
5223         * elf/dl-reloc.c: Remove RESOLV.  We now always need the map.
5224         Correctly initialize slotinfo.
5225         * elf/dynamic-link.h: Adjust after removal of RESOLV.
5226         * sysdeps/hppa/dl-lookupcfg.h: Likewise.
5227         * sysdeps/ia64/dl-lookupcfg.h: Likewise.
5228         * sysdeps/powerpc/powerpc64/dl-lookupcfg.h: Removed.
5229         * elf/dl-runtime.c (_dl_fixup): Little cleanup.
5230         (_dl_profile_fixup): New parameters to point to register struct and
5231         variable for frame size.
5232         Add auditing checkpoints.
5233         (_dl_call_pltexit): New function.
5234         Don't define trampoline code here.
5235         * elf/rtld.c: Recognize LD_AUDIT.  Load modules on startup.
5236         Remove all the functions from _rtld_global_ro which only _dl_open
5237         and _dl_close needed.
5238         Add auditing checkpoints.
5239         * elf/link.h: Define symbols for auditing interfaces.
5240         * include/link.h: Likewise.
5241         * include/dlfcn.h: Define __RTLD_AUDIT.
5242         Remove prototypes for _dl_open and _dl_close.
5243         Adjust access to argc and argv in libdl.
5244         * dlfcn/dlfcn.c: New file.
5245         * sysdeps/generic/dl-lookupcfg.h: Remove all content now that RESOLVE
5246         is gone.
5247         * sysdeps/generic/ldsodefs.h: Add definitions for auditing interfaces.
5248         * sysdeps/generic/unsecvars.h: Add LD_AUDIT.
5249         * sysdeps/i386/dl-machine.h: Remove trampoline code here.
5250         Adjust for removal of RESOLVE.
5251         * sysdeps/x86_64/dl-machine.h: Likewise.
5252         * sysdeps/generic/dl-trampoline.c: New file.
5253         * sysdeps/i386/dl-trampoline.c: New file.
5254         * sysdeps/x86_64/dl-trampoline.c: New file.
5256         * sysdeps/generic/dl-tls.c: Cleanups.  Fixup for dtv_t change.
5257         Fix updating of DTV.
5258         * sysdeps/generic/libc-tls.c: Likewise.
5260         * sysdeps/arm/bits/link.h: Renamed to ...
5261         * sysdeps/arm/bits/linkmap.h: ...this.
5262         * sysdeps/generic/bits/link.h: Renamed to...
5263         * sysdeps/generic/bits/linkmap.h: ...this.
5264         * sysdeps/hppa/bits/link.h: Renamed to...
5265         * sysdeps/hppa/bits/linkmap.h: ...this.
5266         * sysdeps/i386/bits/link.h: Renamed to...
5267         * sysdeps/i386/bits/linkmap.h: ...this.
5268         * sysdeps/ia64/bits/link.h: Renamed to...
5269         * sysdeps/ia64/bits/linkmap.h: ...this.
5270         * sysdeps/s390/bits/link.h: Renamed to...
5271         * sysdeps/s390/bits/linkmap.h: ...this.
5272         * sysdeps/sh/bits/link.h: Renamed to...
5273         * sysdeps/sh/bits/linkmap.h: ...this.
5274         * sysdeps/x86_64/bits/link.h: Renamed to...
5275         * sysdeps/x86_64/bits/linkmap.h: ...this.
5277         * posix/unistd.h: Declare ftruncate for POSIX 2003.  [BZ #640]
5279 2004-12-22  Steven Munroe  <sjmunroe@us.ibm.com>
5281         [BZ #602]
5282         * math/libm-test.inc (rint_test_tonearest): New test.
5283         (rint_test_towardzero): New test.
5284         (rint_test_downward): New test.
5285         (rint_test_upward): New test.
5286         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Fix -0.0 case.
5287         Remove redundant const values.
5288         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Fix -0.0 case.
5289         Remove redundant const values.  Use float const.
5290         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Fix -0.0 case.
5291         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Fix -0.0 case.
5292         Use float const.
5293         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Fix -0.0 case.
5294         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Fix -0.0 case.
5295         Use float const.
5296         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Fix -0.0 case.
5297         Remove redundant const values.
5298         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Fix -0.0 case.
5299         Remove redundant const values.  Use float const.
5300         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Fix -0.0 case.
5301         Remove redundant const values.
5302         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Fix -0.0 case.
5303         Remove redundant const values.  Use float const.
5304         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Use EALIGN for Quadword
5305         alignment.  Fix -0.0 case.  Remove redundant const values.
5306         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Use EALIGN for Quadword
5307         alignment.  Fix -0.0 case.  Remove redundant const values.
5308         Use float const.
5309         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Use EALIGN for Quadword
5310         alignment.  Fix -0.0 case.
5311         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Use EALIGN for Quadword
5312         alignment.  Fix -0.0 case.  Use float const.
5313         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Use EALIGN for Quadword
5314         alignment.  Fix -0.0 case.
5315         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Use EALIGN for Quadword
5316         alignment.  Fix -0.0 case.  Use float const.
5317         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Use EALIGN for Quadword
5318         alignment.  Fix -0.0 case.  Remove redundant const values.
5319         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Use EALIGN for Quadword
5320         alignment.  Fix -0.0 case.  Remove redundant const values.
5321         Use float const.
5322         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Use EALIGN for Quadword
5323         alignment.  Fix -0.0 case.
5324         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Use EALIGN for Quadword
5325         alignment.  Fix -0.0 case.  Remove redundant const values.
5326         Use float const.
5328 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
5330         * misc/sys/cdefs.h: Define __wur.
5331         * libio/stdio.h: Use __wur for a number of interfaces.
5332         * posix/unistd.h: Likewise.
5333         * stdlib/stdlib.h: Likewise.
5335 2004-12-29  Jakub Jelinek  <jakub@redhat.com>
5337         [BZ #592]
5338         * sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Use
5339         libc_hidden_proto instead of HIDDEN_PROTO.
5340         * sysdeps/ia64/fpu/libm-symbols.h (HIDDEN_PROTO): Remove.
5341         (__libm_error_support): If ASSEMBLER and in libc, define to
5342         HIDDEN_JUMPTARGET(__libm_error_support).
5344 2004-12-28  David Mosberger  <davidm@hpl.hp.com>
5346         [BZ #592]
5347         * sysdeps/ia64/fpu/Makefile (duplicated-routines): New macro.
5348         (sysdep_routines): Replace libm_ldexp{,f,l} and libm_scalbn{,f,l}
5349         with $(duplicated-routines).
5350         (libm-sysdep_routines): Likewise, but substitute "s_" prefix for
5351         "m_" prefix.
5353 2004-12-27  David Mosberger  <davidm@hpl.hp.com>
5355         [BZ #592]
5356         * sysdeps/ia64/fpu/libm-symbols.h: Add include of <sysdep.h> and
5357         undefine "ret" macro.  Add __libm_error_support hidden definitions.
5359         [BZ #592]
5360         * sysdeps/ia64/fpu/e_lgamma_r.c: Remove CVS-id comment.  Add
5361         missing portion of copyright statement.
5362         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
5363         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
5365         [BZ #592]
5366         * sysdeps/ia64/fpu/w_lgamma.c: Remove CVS-id comment.  Add
5367         missing portion of copyright statement.
5368         (__ieee754_lgamma): Rename from lgamma().  Make lgamma() a weak alias.
5369         (__ieee754_gamma): Likewise.
5370         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
5371         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
5373 2004-12-09  H.J. Lu <hjl@lucon.org>
5375         [BZ #592]
5376         * sysdeps/ia64/fpu/s_nextafterl.c: Remove.
5377         * sysdeps/ia64/fpu/s_nexttoward.c: Likewise.
5378         * sysdeps/ia64/fpu/s_nexttowardf.c: Likewise.
5379         * sysdeps/ia64/fpu/e_atan2l.S: Remove (duplicate of e_atan2l.c).
5380         * sysdeps/ia64/fpu/e_expl.S: Likewise.
5381         * sysdeps/ia64/fpu/e_logl.c: Remove (conflicts with e_logl.S).
5383 2004-11-18  David Mosberger  <davidm@hpl.hp.com>
5385         [BZ #592]
5386         * sysdeps/ia64/fpu/README: New file.
5387         * sysdeps/ia64/fpu/gen_import_file_list: New file.
5388         * sysdeps/ia64/fpu/import_check: Likewise.
5389         * sysdeps/ia64/fpu/import_diffs: Likewise.
5390         * sysdeps/ia64/fpu/import_file.awk: Likewise.
5391         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
5392         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
5394         [BZ #592]
5395         * sysdeps/ia64/fpu/e_acos.S: Update from Intel libm v2.1+.
5396         * sysdeps/ia64/fpu/e_acosf.S: Likewise.
5397         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
5398         * sysdeps/ia64/fpu/e_asin.S: Likewise.
5399         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
5400         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
5401         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
5402         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
5403         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
5404         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
5405         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
5406         * sysdeps/ia64/fpu/e_exp.S: Likewise.
5407         * sysdeps/ia64/fpu/e_expf.S: Likewise.
5408         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
5409         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
5410         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
5411         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
5412         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
5413         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
5414         * sysdeps/ia64/fpu/e_log.S: Likewise.
5415         * sysdeps/ia64/fpu/e_log2.S: Likewise.
5416         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
5417         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
5418         * sysdeps/ia64/fpu/e_logf.S: Likewise.
5419         * sysdeps/ia64/fpu/e_pow.S: Likewise.
5420         * sysdeps/ia64/fpu/e_powf.S: Likewise.
5421         * sysdeps/ia64/fpu/e_powl.S: Likewise.
5422         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
5423         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
5424         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
5425         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
5426         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
5427         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
5428         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
5429         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
5430         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
5431         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
5432         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
5433         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
5434         * sysdeps/ia64/fpu/libm_error.c: Likewise.
5435         * sysdeps/ia64/fpu/libm_reduce.c: Likewise.
5436         * sysdeps/ia64/fpu/libm_support.h: Likewise.
5437         * sysdeps/ia64/fpu/s_atan.S: Likewise.
5438         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
5439         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
5440         * sysdeps/ia64/fpu/s_cbrt.S: Likewise.
5441         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
5442         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
5443         * sysdeps/ia64/fpu/s_ceil.S: Likewise.
5444         * sysdeps/ia64/fpu/s_ceilf.S: Likewise.
5445         * sysdeps/ia64/fpu/s_ceill.S: Likewise.
5446         * sysdeps/ia64/fpu/s_cos.S: Likewise.
5447         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
5448         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
5449         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
5450         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
5451         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
5452         * sysdeps/ia64/fpu/s_fabs.S: Likewise.
5453         * sysdeps/ia64/fpu/s_fabsf.S: Likewise.
5454         * sysdeps/ia64/fpu/s_fabsl.S: Likewise.
5455         * sysdeps/ia64/fpu/s_floor.S: Likewise.
5456         * sysdeps/ia64/fpu/s_floorf.S: Likewise.
5457         * sysdeps/ia64/fpu/s_floorl.S: Likewise.
5458         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
5459         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
5460         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
5461         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
5462         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
5463         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
5464         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
5465         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
5466         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
5467         * sysdeps/ia64/fpu/s_logb.S: Likewise.
5468         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
5469         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
5470         * sysdeps/ia64/fpu/s_modf.S: Likewise.
5471         * sysdeps/ia64/fpu/s_modff.S: Likewise.
5472         * sysdeps/ia64/fpu/s_modfl.S: Likewise.
5473         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
5474         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
5475         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
5476         * sysdeps/ia64/fpu/s_rint.S: Likewise.
5477         * sysdeps/ia64/fpu/s_rintf.S: Likewise.
5478         * sysdeps/ia64/fpu/s_rintl.S: Likewise.
5479         * sysdeps/ia64/fpu/s_round.S: Likewise.
5480         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
5481         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
5482         * sysdeps/ia64/fpu/s_significand.S: Likewise.
5483         * sysdeps/ia64/fpu/s_significandf.S: Likewise.
5484         * sysdeps/ia64/fpu/s_significandl.S: Likewise.
5485         * sysdeps/ia64/fpu/s_tan.S: Likewise.
5486         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
5487         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
5488         * sysdeps/ia64/fpu/s_trunc.S: Likewise.
5489         * sysdeps/ia64/fpu/s_truncf.S: Likewise.
5490         * sysdeps/ia64/fpu/s_truncl.S: Likewise.
5492         [BZ #592]
5493         * sysdeps/ia64/fpu/e_acosh.S: New file from Intel libm v2.1+.
5494         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
5495         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
5496         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
5497         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
5498         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
5499         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
5500         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
5501         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
5502         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
5503         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
5504         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
5505         * sysdeps/ia64/fpu/e_lgamma_r.S: Likewise.
5506         * sysdeps/ia64/fpu/e_lgammaf_r.S: Likewise.
5507         * sysdeps/ia64/fpu/e_lgammal_r.S: Likewise.
5508         * sysdeps/ia64/fpu/e_logl.S: Likewise.
5509         * sysdeps/ia64/fpu/libm_frexp.S: Likewise.
5510         * sysdeps/ia64/fpu/libm_frexpf.S: Likewise.
5511         * sysdeps/ia64/fpu/libm_frexpl.S: Likewise.
5512         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
5513         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
5514         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
5515         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
5516         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
5517         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
5518         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
5519         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
5520         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
5521         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
5522         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
5523         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
5524         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
5525         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
5526         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
5527         * sysdeps/ia64/fpu/s_asinhf.S: Likewise.
5528         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
5529         * sysdeps/ia64/fpu/s_erf.S: Likewise.
5530         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
5531         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
5532         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
5533         * sysdeps/ia64/fpu/s_erff.S: Likewise.
5534         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
5535         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
5536         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
5537         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
5538         * sysdeps/ia64/fpu/s_fma.S: Likewise.
5539         * sysdeps/ia64/fpu/s_fmaf.S: Likewise.
5540         * sysdeps/ia64/fpu/s_fmal.S: Likewise.
5541         * sysdeps/ia64/fpu/s_fmax.S: Likewise.
5542         * sysdeps/ia64/fpu/s_fmaxf.S: Likewise.
5543         * sysdeps/ia64/fpu/s_fmaxl.S: Likewise.
5544         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
5545         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
5546         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
5547         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
5548         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
5549         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
5550         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
5551         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
5552         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
5553         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
5554         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
5555         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
5556         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
5557         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
5558         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
5559         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
5560         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
5561         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
5562         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
5564         [BZ #592]
5565         * sysdeps/ia64/fpu/e_gamma_r.c: New empty dummy-file.
5566         * sysdeps/ia64/fpu/e_gammaf_r.c: Likewise.
5567         * sysdeps/ia64/fpu/e_gammal_r.c: Likewise.
5568         * sysdeps/ia64/fpu/w_acosh.c: Likewise.
5569         * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
5570         * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
5571         * sysdeps/ia64/fpu/w_atanh.c: Likewise.
5572         * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
5573         * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
5574         * sysdeps/ia64/fpu/w_exp10.c: Likewise.
5575         * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
5576         * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
5577         * sysdeps/ia64/fpu/w_exp2.c: Likewise.
5578         * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
5579         * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
5580         * sysdeps/ia64/fpu/w_expl.c: Likewise.
5581         * sysdeps/ia64/fpu/e_expl.S: Likewise.
5582         * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
5583         * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
5584         * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
5585         * sysdeps/ia64/fpu/w_log2.c: Likewise.
5586         * sysdeps/ia64/fpu/w_log2f.c: Likewise.
5587         * sysdeps/ia64/fpu/w_log2l.c: Likewise.
5588         * sysdeps/ia64/fpu/w_sinh.c: Likewise.
5589         * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
5590         * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
5592         [BZ #592]
5593         * sysdeps/ia64/fpu/libm_atan2_reg.S: Remove.
5594         * sysdeps/ia64/fpu/s_ldexp.S: Likewise.
5595         * sysdeps/ia64/fpu/s_ldexpf.S: Likewise.
5596         * sysdeps/ia64/fpu/s_ldexpl.S: Likewise.
5597         * sysdeps/ia64/fpu/s_scalbn.S: Likewise.
5598         * sysdeps/ia64/fpu/s_scalbnf.S: Likewise.
5599         * sysdeps/ia64/fpu/s_scalbnl.S: Likewise.
5601         [BZ #592]
5602         * sysdeps/ia64/fpu/s_sincos.c: Make it an empty dummy-file.
5603         * sysdeps/ia64/fpu/s_sincosf.c: Likewise.
5604         * sysdeps/ia64/fpu/s_sincosl.c: Likewise.
5606         [BZ #592]
5607         * sysdeps/ia64/fpu/e_atan2l.S: Add "Not needed" comment.
5609         [BZ #592]
5610         * sysdeps/ia64/fpu/s_copysign.S: Add __libm_copysign{,f,l}
5611         alias for use by libm_error.c
5613         [BZ #592]
5614         * sysdeps/ia64/fpu/Makefile (libm-sysdep_routines): Remove
5615         libm_atan2_reg, libm_tan, libm_frexp4{f,l}.
5616         Mention s_erfc{,f,l}, libm_frexp{,f,l}, libm_ldexp{,f,l},
5617         libm_sincos{,f,l}, libm_sincos_large, libm_lgamma{,f,l},
5618         libm_scalbn{,f,l}, libm_scalblnf.
5619         (sysdep_routines): Remove libm_frexp4{,f,l}.
5620         Mention libm_frexp{,f,l}, libm_ldexp{,f,l}, and libm_scalbn{,f,l}.
5621         (sysdep-CPPFLAGS): Add -include libm-symbols.h, -D__POSIX__,
5622         _D_LIB_VERSIONIMF=_LIB_VERSION, -DSIZE_LONG_INT_64, and
5623         -DSIZE_LONG_LONG_INT_64.
5625 2005-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
5627         [BZ #729]
5628         * elf/rtld.c (dl_main) [NEED_DL_SYSINFO_DSO]: Insure l_map_end and
5629         l_text_end are set for a VDSO with a single PT_LOAD entry.
5631 2005-01-05  Ulrich Drepper  <drepper@redhat.com>
5633         [BZ #730]
5634         * libio/iofopncook.c (_IO_cookie_seekoff): Define.  Mark offset as
5635         invalid to disable optimizations in fileops which won't work here.
5636         (_IO_cookie_jumps): Use it.
5637         (_IO_old_cookie_jumps): Likewise.
5638         * libio/fmemopen.c (fmemopen_seek): Result must be returned in *P,
5639         not the return value.
5640         * stdio-common/Makefile (tests): Add tst-fmemopen2.
5641         * stdio-common/tst-fmemopen2.c: New file.
5643         * sysdeps/unix/sysv/linux/bits/waitflags.h: Define __WNOTHREAD.
5645 2005-01-05  Roland McGrath  <roland@redhat.com>
5647         * configure.in (libc_cv_cpp_asm_debuginfo): Checked moved ...
5648         * sysdeps/i386/configure.in: ... here.  New file.
5650 2005-01-03  Ulrich Drepper  <drepper@redhat.com>
5652         [BZ #727]
5653         * sysdeps/generic/libc-start.c [SHARED] (__libc_start_main): Don't
5654         initialize __environ again.
5655         * stdlib/Makefile: Add rules to build and run tst-putenv.
5656         * stdlib/tst-putenv.c: New file.
5657         * stdlib/tst-putenvmod.c: New file.
5659         * sysdeps/unix/sysv/linux/init-first.c: Clean file up.  Don't
5660         define unnecessary wrappers or aliases of static functions.
5662 2005-01-03  Andreas Jaeger  <aj@suse.de>
5664         * csu/Makefile (generated): Add start.os and start.ob.
5666         * elf/Makefile (tests): Change rule for tst-pie1 so that make
5667         clean works.
5669 2004-12-29  Roland McGrath  <roland@redhat.com>
5671         [BZ #626]
5672         * sysdeps/unix/alarm.c (alarm): Round return value to nearest rather
5673         than always up; when nearest is zero, round up to one.
5675 2004-12-28  Ulrich Drepper  <drepper@redhat.com>
5677         * po/es.po: Update from translation team.
5679         [BZ #726]
5680         * sysdeps/generic/dl-tls.c (__tls_get_addr): Fix typo.
5682 2004-12-27  Ulrich Drepper  <drepper@redhat.com>
5684         [BZ #744]
5685         * include/signal.h: Define __sigemptyset.
5687 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
5689         * posix/regex_internal.h (struct re_dfastate_t): Make
5690         word_trtable a pointer to the 512-item transition table.
5691         * posix/regexec.c (build_trtable): Fill in either state->trtable
5692         or state->word_trtable.  Return a boolean indicating success.
5693         (transit_state): Expect state->trtable to be a 256-item
5694         transition table.  Reorganize code to have less tests in
5695         the common case, and to save an indentation level.
5696         * posix/regex_internal.c (free_state): Free word_trtable.
5698 2004-12-21  Jakub Jelinek  <jakub@redhat.com>
5700         [BZ #723]
5701         * sysdeps/unix/sysv/linux/i386/clone.S (__clone): Make sure %esp when
5702         calling fn is 16 byte aligned.
5703         * sysdeps/i386/tst-stack-align.h: New file.
5705         [BZ #725]
5706         * misc/efgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
5707         (ecvt_r): Special case denormals.
5708         * misc/qefgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
5709         * misc/tst-efgcvt.c: Include float.h.
5710         (ecvt_tests): Add 2 new tests.
5712 2004-12-20  Roland McGrath  <roland@frob.com>
5714         * version.h (RELEASE, VERSION): development, 2.3.90
5715         * include/features.h (__GLIBC_MINOR__): Now 4.
5718 See ChangeLog.15 for earlier changes.