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