]> git.ipfire.org Git - thirdparty/glibc.git/blob - ChangeLog
* elf/rtld.c (_dl_start_final): Move _begin, _end decls outside the fn.
[thirdparty/glibc.git] / ChangeLog
1 2002-09-12 Roland McGrath <roland@redhat.com>
2
3 * elf/rtld.c (_dl_start_final): Move _begin, _end decls outside the fn.
4 (_dl_start) [DONT_USE_BOOTSTRAP_MAP]: Use &_begin instead of l_addr to
5 find the ELF header.
6
7 * elf/rtld.c (dl_main) [USE_TLS]: Adjust l_tls_initimage of main
8 executable if needed, in case it's actually a shared object.
9
10 2002-09-11 Roland McGrath <roland@redhat.com>
11
12 * elf/dl-load.c (_dl_map_object_from_fd): Use l_addr instead of
13 l_map_start to adjust l_tls_initimage.
14
15 * nss/getnssent_r.c (__nss_getent_r): Use EAGAIN instead of errno
16 when using h_errno and it's not set to NETDB_INTERNAL.
17 * nss/getXXbyYY_r.c [NEED_H_ERRNO]: Likewise.
18
19 * Makefile ($(common-objpfx)testrun.sh): New target.
20 (others): Depend on it.
21 (postclean-generated): Append it.
22
23 * nss/bug-erange.c: New file.
24 * nss/Makefile (tests): Add it.
25
26 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Return errno
27 instead of always EAGAIN when status is NSS_STATUS_TRYAGAIN.
28
29 * sysdeps/generic/dl-environ.c (unsetenv): Redo last fix without
30 strncmp, keeps the code smaller for a non-performance-critical case.
31
32 * sysdeps/generic/dl-environ.c (unsetenv): Rewritten using strncmp,
33 no longer wrongly matches arbitrary prefixes of NAME.
34 Reported by Jakub Jelinek <jakub@redhat.com>.
35
36 2002-09-11 Jakub Jelinek <jakub@redhat.com>
37
38 * posix/bug-regex11.c (tests): New array.
39 (main): Rewritten to run more different tests.
40
41 2002-09-10 Roland McGrath <roland@redhat.com>
42
43 * nscd/Makefile (CPPFLAGS-nscd, CPPFLAGS-nscd_conf, CPPFLAGS-dbg_log)
44 (CPPFLAGS-connections, CPPFLAGS-hstcache): Variables removed.
45 Instead, catch all of $(nscd-modules) via cppflags-iterator.mk.
46
47 * sysdeps/powerpc/fpu/s_isnan.c: Do macro hackery on __GI___isnanf as
48 well so we don't get it declared by include/math.h's hidden_proto.
49 Then do hidden_proto for __isnanf locally so hidden_def works right.
50
51 * posix/bug-regex5.c (main): Use `union locale_data_value' rather than
52 a cast to turn nl_langinfo return value into an integer.
53
54 2002-09-10 Isamu Hasegawa <isamu@yamato.ibm.com>
55
56 * posix/regexec.c (build_trtable): Fix the destination of
57 newline to prevent wrong states from overwriting.
58 Append break statements to optimization.
59
60 2002-09-10 Isamu Hasegawa <isamu@yamato.ibm.com>
61
62 * posix/regcomp.c: Wrap #include wchar.h and wctype.h in #if.
63 (build_range_exp): Add castings to strlen invocations.
64 (build_collating_symbol): Restore the type of characters from "char"
65 to "unsigned char", and supplement castings.
66 (build_collating_symbol): Likewise.
67 (build_equiv_class): Likewise.
68 (build_charclass): Likewise.
69 (seek_collating_symbol_entry): Likewise.
70 (parse_bracket_exp): Likewise.
71 (build_word_op): Supplement a casting.
72 * posix/regex_internal.c: Wrap #include wchar.h and wctype.h in #if.
73 (re_string_allocate): Fix castings.
74 (re_string_construct): Likewise.
75 (re_string_construct_common): Likewise.
76 (re_string_realloc_buffers): Likewise.
77 (build_wcs_buffer): Likewise.
78 (build_wcs_upper_buffer): Likewise.
79 (re_string_skip_chars): Likewise.
80 (re_string_reconstruct): Likewise.
81 * posix/regex_internal.h: Restore the type of characters in
82 re_string_t and bracket_elem_t from "char" to "unsigned char".
83 (re_string_elem_size_at): Fix castings.
84 * posix/regexec.c: Wrap #include wchar.h and wctype.h in #if.
85 (transit_state_bkref_loop): Restore the type of characters from
86 "char" to "unsigned char", and append a cast to "char*" pointer in
87 array subscript.
88 (check_node_accept_bytes): Likewise.
89 (find_collation_sequence_value): Likewise.
90
91 2002-09-10 Hartvig Ekner <hartvige@mips.com>
92
93 * sysdeps/mips/memcpy.S: New file.
94 * sysdeps/mips/memset.S: New file.
95 * sysdeps/mips/fpu/e_sqrt.c: New file.
96 * sysdeps/mips/fpu/e_sqrtf.c: New file.
97
98 * fpu/fclrexcpt.c: Cleaned up the FPU exception stuff - was not
99 functional before. Also removed all SHLIB_COMPAT stuff.
100 * fpu/fegetenv.c: Likewise.
101 * fpu/fesetenv.c:: Likewise.
102 * fpu/feupdateenv.c: Likewise.
103 * fpu/fgetexcptflg.c: Likewise.
104 * fpu/fraiseexcpt.c: Likewise.
105
106 * sysdeps/mips/fpu/fsetexcptflg.c: New file.
107
108 2002-09-09 Jakub Jelinek <jakub@redhat.com>
109
110 * include/math.h (__finite_internal, __finitef_internal,
111 __finitel_internal, __isinf_internal, __isnan_internal): Remove.
112 (isfinite): Remove.
113 (__finite, __isinf, __isnan, __finitef, __isinff, __isnanf, __finitel,
114 __isinfl, __isnanl): Add hidden_proto.
115 (__fpclassify, __fpclassifyf, __fpclassifyl, __expm1l): Add
116 libm_hidden_proto.
117 * math/Makefile (libm-calls): Add s_isinf and s_isnan.
118 * stdio-common/printf_fp.c (__printf_fp): Remove INTUSE from
119 __is{inf,nan} calls.
120 * stdio-common/printf_size.c (printf_size): Likewise.
121 * sysdeps/generic/printf_fphex.c (__printf_fphex): Likewise.
122 * sysdeps/generic/s_ldexp.c (__ldexp): Likewise.
123 * sysdeps/generic/s_ldexpf.c (__ldexpf): Likewise.
124 * sysdeps/generic/s_ldexpl.c (__ldexpl): Likewise.
125 * sysdeps/generic/s_expm1l.c (__expm1l): Add libm_hidden_def.
126 * sysdeps/i386/fpu/s_finite.S (__finite_internal): Remove alias.
127 (__finite): Add hidden_def.
128 * sysdeps/i386/fpu/s_finitef.S (__finitef_internal): Remove alias.
129 (__finitef): Add hidden_def.
130 * sysdeps/i386/fpu/s_finitel.S (__finitel_internal): Remove alias.
131 (__finitel): Add hidden_def.
132 * sysdeps/i386/fpu/s_isinfl.c (__isinfl): Remove INTDEF. Add
133 hidden_def.
134 * sysdeps/i386/fpu/s_isnanl.c (__isnanl): Likewise.
135 * sysdeps/i386/fpu/s_fpclassifyl.c (__fpclassifyl): Add
136 libm_hidden_def.
137 * sysdeps/i386/fpu/s_expm1l.S (__expm1l): Likewise.
138 * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Remove INTDEF. Add
139 hidden_def.
140 * sysdeps/ieee754/dbl-64/s_isinf.c (__isinf): Likewise.
141 (__isinfl): Remove INTDEF.
142 * sysdeps/ieee754/dbl-64/s_isnan.c (__isnan): Remove INTDEF. Add
143 hidden_def.
144 (__isnanl): Remove INTDEF.
145 * sysdeps/ieee754/dbl-64/s_fpclassify.c (__fpclassify): Add
146 libm_hidden_def.
147 * sysdeps/ieee754/dbl-64/e_lgamma_r.c (sin_pi): Use __sin and __cos
148 instead of sin and cos.
149 * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Remove INTDEF.
150 Add hidden_def.
151 * sysdeps/ieee754/flt-32/s_isinff.c (__isinff): Likewise.
152 * sysdeps/ieee754/flt-32/s_isnanf.c (__isnanf): Likewise.
153 * sysdeps/ieee754/flt-32/s_fpclassifyf.c (__fpclassifyf): Add
154 libm_hidden_def.
155 * sysdeps/ieee754/ldbl-128/s_finitel.c (__finitel): Remove INTDEF.
156 Add hidden_def.
157 * sysdeps/ieee754/ldbl-128/s_isinfl.c (__isinfl): Likewise.
158 * sysdeps/ieee754/ldbl-128/s_isnanl.c (__isnanl): Likewise.
159 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c (__fpclassifyl): Add
160 libm_hidden_def.
161 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Add
162 libm_hidden_def.
163 * sysdeps/ieee754/ldbl-96/s_finitel.c (__finitel): Remove INTDEF.
164 Add hidden_def.
165 * sysdeps/ieee754/ldbl-96/s_isinfl.c (__isinfl): Likewise.
166 * sysdeps/ieee754/ldbl-96/s_isnanl.c (__isnanl): Likewise.
167 * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c (__fpclassifyl): Add
168 libm_hidden_def.
169 * sysdeps/ia64/fpu/s_finite.S (__finite_internal, __finitef_internal,
170 __finitel_internal): Remove aliases.
171 (__finite, __finitef, __finitel): Add hidden_def.
172 * sysdeps/ia64/fpu/s_isnan.S (__isnan_internal, __isnanf_internal,
173 __isnanl_internal): Remove aliases.
174 (__isnan, __isnanf, __isnanl): Add hidden_def.
175 * sysdeps/ia64/fpu/s_isinf.S (__isinf_internal, __isinff_internal,
176 __isinfl_internal): Remove aliases.
177 (__isinf, __isinff, __isinfl): Add hidden_def.
178 * sysdeps/ia64/fpu/s_fpclassify.S (__fpclassify, __fpclassifyf,
179 __fpclassifyl): Add libm_hidden_def.
180 * sysdeps/ia64/fpu/s_expm1l.S (__expm1l): Likewise.
181 * sysdeps/m68k/s_isinfl.c (__isinfl): Remove INTDEF. Add hidden_def.
182 * sysdeps/m68k/fpu/s_isinf.c (INTDEFX): Remove.
183 (hidden_defx): Define and use.
184 * sysdeps/m68k/fpu/s_fpclassifyl.c (__fpclassifyl): Add
185 libm_hidden_def.
186 * sysdeps/m68k/fpu/s_expm1l.c (__expm1l): Likewise.
187 * sysdeps/m68k/s_isnanl.c (__isnanl): Add hidden_def.
188 * sysdeps/powerpc/fpu/s_isnan.c (__isnan, __isnanf, __isnanl):
189 Remove INTDEF.
190 (__isnan, __isnanf): Add hidden_def.
191 * sysdeps/x86_64/fpu/s_finitel.S (__finitel_internal): Remove alias.
192 (__finitel): Add libm_hidden_def.
193 * sysdeps/x86_64/fpu/s_expm1l.S (__expm1l): Likewise.
194
195 * include/fenv.h (feraiseexcept, fesetenv): Add libm_hidden_proto.
196 * sysdeps/alpha/fpu/fesetenv.c (fesetenv): Add libm_hidden_ver.
197 * sysdeps/alpha/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
198 * sysdeps/arm/fpu/fesetenv.c (fesetenv): Likewise.
199 * sysdeps/arm/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
200 * sysdeps/generic/fesetenv.c (fesetenv): Likewise.
201 * sysdeps/generic/fraiseexcpt.c (feraiseexcept): Likewise.
202 * sysdeps/i386/fpu/fesetenv.c (fesetenv): Likewise.
203 * sysdeps/i386/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
204 * sysdeps/m68k/fpu/fesetenv.c (fesetenv): Likewise.
205 * sysdeps/m68k/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
206 * sysdeps/mips/fpu/fesetenv.c (fesetenv): Likewise.
207 * sysdeps/mips/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
208 * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Likewise.
209 * sysdeps/powerpc/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
210 * sysdeps/sparc/fpu/fesetenv.c (fesetenv): Likewise.
211 * sysdeps/sparc/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
212 * sysdeps/hppa/fpu/fesetenv.c (fesetenv): Add libm_hidden_def.
213 * sysdeps/hppa/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
214 * sysdeps/ia64/fpu/fesetenv.c (fesetenv): Likewise.
215 * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
216 * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
217 * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
218 * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
219 * sysdeps/s390/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
220 * sysdeps/x86_64/fpu/fesetenv.c (fesetenv): Likewise.
221 * sysdeps/x86_64/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
222
223 2002-09-09 Steven Munroe <sjmunroe@us.ibm.com>
224
225 * elf/elf.h: Add powerpc64 specific elf relocation and dynamic types.
226
227 2002-09-09 Jakub Jelinek <jakub@redhat.com>
228
229 * elf/dl-error.c (_dl_signal_cerror): Don't print anything if only
230 LD_DEBUG=statistics or LD_TRACE_PRELINKING.
231
232 2002-09-09 Ulrich Drepper <drepper@redhat.com>
233
234 * string/stratcliff.c: Some more strncpy tests.
235 Patch by Daniel Jacobowitz <drow@mvista.com>.
236
237 2002-09-08 Roland McGrath <roland@redhat.com>
238
239 * resolv/resolv.h: Include <sys/types.h> for u_long even in
240 the [__need_res_state] case.
241 Reported by Bruno Haible <bruno@clisp.org>.
242
243 2002-09-04 Bruno Haible <bruno@clisp.org>
244
245 * sysdeps/generic/bits/ustat.h: Comment fix.
246 * io/sys/sendfile.h: Comment fix.
247 * sysdeps/posix/pread.c: Comment fix.
248 * sysdeps/posix/pread64.c: Comment fix.
249 * sysdeps/posix/pwrite.c: Comment fix.
250 * sysdeps/posix/pwrite64.c: Comment fix.
251
252 2002-09-06 Roland McGrath <roland@redhat.com>
253
254 * posix/sys/utsname.h (_UTSNAME_SYSNAME_LENGTH): New macro, defined
255 to _UTSNAME_LENGTH if not already defined by <bits/utsname.h>.
256 (_UTSNAME_RELEASE_LENGTH, _UTSNAME_VERSION_LENGTH): Likewise.
257 (_UTSNAME_MACHINE_LENGTH): Likewise.
258 (struct utsname): Use new macros instead of _UTSNAME_LENGTH.
259
260 2002-09-06 Ulrich Drepper <drepper@redhat.com>
261
262 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Correct
263 test for filesystem type name of mount points.
264
265 * include/errno.h: Use errno definition with __thread for now only
266 in libc and ld.so.
267
268 * test-skeleton.c (main): Improve error message for unexpected
269 signal case.
270
271 2002-09-05 Roland McGrath <roland@redhat.com>
272
273 * ctype/ctype-info.c: Renamed __ctype_old_* symbols to __ctype_*.
274 * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
275
276 2002-09-05 Jakub Jelinek <jakub@redhat.com>
277
278 * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Unlock and return in
279 case of failure.
280
281 2002-09-04 Bruno Haible <bruno@clisp.org>
282
283 * sysdeps/unix/sysv/linux/sigset-cvt-mask.h (sigset_set_old_mask,
284 sigset_get_old_mask): Turn into inline functions.
285 * sysdeps/unix/sysv/aix/sigset-cvt-mask.h (sigset_set_old_mask,
286 sigset_get_old_mask): Likewise.
287 * sysdeps/unix/sysv/sysv4/sigset-cvt-mask.h (sigset_set_old_mask,
288 sigset_get_old_mask): Likewise.
289 * sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask): Declutter
290 syntax.
291
292 * elf/readlib.c (process_file): Conditionalize check for QMAGIC.
293
294 * sysdeps/generic/_strerror.c (_sys_errlist, _sys_nerr): Remove
295 default definitions.
296 (__strerror_r): Use _sys_errlist_internal instead of _sys_errlist,
297 _sys_nerr_internal instead of _sys_nerr.
298
299 * nscd/connections.c (handle_request): Declare CALLER inside #if.
300
301 2002-07-29 Steven Munroe <sjmunroe@us.ibm.com>
302
303 * sysdeps/powerpc/__longjmp.S: Moved to...
304 * sysdeps/powerpc/powerpc32/__longjmp.S: ...here.
305 * sysdeps/powerpc/add_n.S: Moved to...
306 * sysdeps/powerpc/powerpc32/add_n.S: ...here.
307 * sysdeps/powerpc/addmul_1.S: Moved to...
308 * sysdeps/powerpc/powerpc32/addmul_1.S: ...here.
309 * sysdeps/powerpc/atomicity.h: Moved to...
310 * sysdeps/powerpc/powerpc32/atomicity.h: ...here.
311 * sysdeps/powerpc/backtrace.c: Moved to...
312 * sysdeps/powerpc/powerpc32/backtrace.c: ...here.
313 * sysdeps/powerpc/bp-asm.h: Moved to...
314 * sysdeps/powerpc/powerpc32/bp-asm.h: ...here.
315 * sysdeps/powerpc/bsd-_setjmp.S: Moved to...
316 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: ...here.
317 * sysdeps/powerpc/bsd-setjmp.S: Moved to...
318 * sysdeps/powerpc/powerpc32/bsd-setjmp.S: ...here.
319 * sysdeps/powerpc/dl-machine.c: Moved to...
320 * sysdeps/powerpc/powerpc32/dl-machine.c: ...here.
321 * sysdeps/powerpc/dl-machine.h: Moved to...
322 * sysdeps/powerpc/powerpc32/dl-machine.h: ...here.
323 * sysdeps/powerpc/dl-start.S: Moved to...
324 * sysdeps/powerpc/powerpc32/dl-start.S: ...here.
325 * sysdeps/powerpc/gprrest0.S: Moved to...
326 * sysdeps/powerpc/powerpc32/gprrest0.S: ...here.
327 * sysdeps/powerpc/gprrest1.S: Moved to...
328 * sysdeps/powerpc/powerpc32/gprrest1.S: ...here.
329 * sysdeps/powerpc/gprsave0.S: Moved to...
330 * sysdeps/powerpc/powerpc32/gprsave0.S: ...here.
331 * sysdeps/powerpc/gprsave1.S: Moved to...
332 * sysdeps/powerpc/powerpc32/gprsave1.S: ...here.
333 * sysdeps/powerpc/lshift.S: Moved to...
334 * sysdeps/powerpc/powerpc32/lshift.S: ...here.
335 * sysdeps/powerpc/memset.S: Moved to...
336 * sysdeps/powerpc/powerpc32/memset.S: ...here.
337 * sysdeps/powerpc/mul_1.S: Moved to...
338 * sysdeps/powerpc/powerpc32/mul_1.S: ...here.
339 * sysdeps/powerpc/ppc-mcount.S: Moved to...
340 * sysdeps/powerpc/powerpc32/ppc-mcount.S: ...here.
341 * sysdeps/powerpc/register-dump.h: Moved to...
342 * sysdeps/powerpc/powerpc32/register-dump.h: ...here.
343 * sysdeps/powerpc/rshift.S: Moved to...
344 * sysdeps/powerpc/powerpc32/rshift.S: ...here.
345 * sysdeps/powerpc/setjmp.S: Moved to...
346 * sysdeps/powerpc/powerpc32/setjmp.S: ...here.
347 * sysdeps/powerpc/stpcpy.S: Moved to...
348 * sysdeps/powerpc/powerpc32/stpcpy.S: ...here.
349 * sysdeps/powerpc/strchr.S: Moved to...
350 * sysdeps/powerpc/powerpc32/strchr.S: ...here.
351 * sysdeps/powerpc/strcmp.S: Moved to...
352 * sysdeps/powerpc/powerpc32/strcmp.S: ...here.
353 * sysdeps/powerpc/strcpy.S: Moved to...
354 * sysdeps/powerpc/powerpc32/strcpy.S: ...here.
355 * sysdeps/powerpc/strlen.S: Moved to...
356 * sysdeps/powerpc/powerpc32/strlen.S: ...here.
357 * sysdeps/powerpc/sub_n.S: Moved to...
358 * sysdeps/powerpc/powerpc32/sub_n.S: ...here.
359 * sysdeps/powerpc/submul_1.S: Moved to...
360 * sysdeps/powerpc/powerpc32/submul_1.S: ...here.
361 * sysdeps/powerpc/elf/bzero.S: Moved to...
362 * sysdeps/powerpc/powerpc32/elf/bzero.S: ...here.
363 * sysdeps/powerpc/elf/start.S: Moved to...
364 * sysdeps/powerpc/powerpc32/elf/start.S: ...here.
365 * sysdeps/powerpc/fpu/__longjmp.S: Moved to...
366 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: ...here.
367 * sysdeps/powerpc/fpu/fprrest.S: Moved to...
368 * sysdeps/powerpc/powerpc32/fpu/fprrest.S: ...here.
369 * sysdeps/powerpc/fpu/fprsave.S: Moved to...
370 * sysdeps/powerpc/powerpc32/fpu/fprsave.S: ...here.
371 * sysdeps/powerpc/fpu/setjmp.S: Moved to...
372 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: ...here.
373 * sysdeps/powerpc/fpu/s_copysign.S: Moved to...
374 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: ...here.
375 * sysdeps/powerpc/fpu/s_copysignf.S: Moved to...
376 * sysdeps/powerpc/powerpc32/fpu/s_copysignf.S: ...here.
377 * sysdeps/unix/sysv/linux/powerpc/brk.S: Moved to...
378 * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: ...here.
379 * sysdeps/unix/sysv/linux/powerpc/clone.S: Moved to...
380 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: ...here.
381 * sysdeps/unix/sysv/linux/powerpc/glob64.c: Moved to...
382 * sysdeps/unix/sysv/linux/powerpc/powerpc32/glob64.c: ...here.
383 * sysdeps/unix/sysv/linux/powerpc/kernel_stat.h: Moved to...
384 * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: ...here.
385 * sysdeps/unix/sysv/linux/powerpc/socket.S: Moved to...
386 * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S: ...here.
387 * sysdeps/unix/sysv/linux/powerpc/sysdep.h: Moved to...
388 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: ...here.
389 * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Moved to...
390 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: ...here.
391 Support PowerPC64. Separate powerpc into powerpc/powerpc32 and
392 powerpc/powerpc64.
393
394 2002-07-29 Steven Munroe <sjmunroe@us.ibm.com>
395
396 * FAQ.in: Add powerpc64 to supported targets list. Also state the
397 minimum gcc version is 3.2
398 * README: Add powerpc64 to supported targets list.
399 * configure.in: Change machine=powerpc to machine=powerpc/powerpc32.
400 Add powerpc64 and machine=powerpc/powerpc64.
401 (HAVE_ASM_GLOBAL_DOT_NAME): Define if linux*powerpc/powerpc64*.
402 * shlib-versions: Set DEFAULT version to 2.2.5 for powerpc64.
403 * sysdeps/powerpc/Dist: Remove dl-machine.c, dl-start.S, ppc-mcount.S,
404 gprsave1.S, gprsave0.S, gprrest1.S, and gprrest0.S.
405 * sysdeps/powerpc/powerpc32/Dist: New file.
406 * sysdeps/powerpc/Implies: Remove wordsize-32 and powerpc/soft-fp.
407 * sysdeps/powerpc/powerpc32/Implies: New file.
408 * sysdeps/powerpc/Makefile(cflags): Remove powerpc32 specific cflags.
409 ($(with-fp) = no): Move test to powerpc32/Makefile.
410 ($(subdir) = misc): Move to powerpc32/Makefile.
411 ($(build-shared) = yes): Move to powerpc32/Makefile.
412 ($(subdir) = csu): Move to powerpc32/Makefile.
413 (sysdep-rtld-routines): Remove dl-start. Moved these bits to ...
414 * sysdeps/powerpc/powerpc32/Makefile: New file.
415 * sysdeps/powerpc/Versions: Remove libgcc functions.
416 * sysdeps/powerpc/powerpc32/Versions: New file.
417 * sysdeps/powerpc/fpu/Makefile: Remove fprsave and fprrest.
418 * sysdeps/powerpc/powerpc32/fpu/Makefile: New file.
419 * sysdeps/unix/sysv/linux/configure.in (powerpc*):
420 Set arch_minimum_kernel=2.4.19 for powerpc/powerpc64. Also set
421 libc_cv_gcc_unwind_find_fde=yes only if !powerpc/powerpc64.
422 ($machine): Add powerpc/powerpc64 to if ... | for
423 libc_cv_slibdir=/libc64.
424 (powerpc*): Set ldd_rewrite_script.
425 * sysdeps/unix/sysv/linux/powerpc/ldd-rewrite.sed: New file.
426 * sysdeps/unix/sysv/linux/powerpc/Dist: Remove clone.S.
427 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Dist: New file.
428 Add clone.S.
429 * sysdeps/unix/sysv/linux/powerpc/Makefile: Remove oldgetrlimit64.
430 * sysdeps/unix/sysv/linux/powerpc/Versions: Remove GLIBC_2.0
431 functions. Remove GLIBC_2.2 functions except getrlimit and
432 setrlimit. Moved them to ...
433 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: New file.
434
435 2002-09-04 Ulrich Drepper <drepper@redhat.com>
436
437 * libio/tst-atime.c: Include <errno.h>.
438 (do_test): Only perform fstatvfs check if ST_NOATIME is defined.
439
440 2002-09-03 Isamu Hasegawa <isamu@yamato.ibm.com>
441
442 * posix/regcomp.c (regcomp): Append "__restrict" modifier to avoid
443 warnings of some compilers.
444 (build_collating_symbol): Change the type of characters from
445 "unsigned char" to "char", and append a cast to "char*" pointer in
446 array subscript.
447 (build_collating_symbol): Likewise.
448 (build_equiv_class): Likewise.
449 (build_charclass): Likewise.
450 (re_compile_pattern): Remove incorrect cast.
451 (re_compile_fastmap_iter): Change the type of characters from
452 "unsigned char" to "char", and append a cast to "char*" pointer
453 in array subscript.
454 (parse_bracket_exp): Likewise.
455 * posix/regex_internal.c (re_string_construct_common): Likewise.
456 (re_string_allocate): Likewise.
457 (re_string_construct): Likewise.
458 (re_string_realloc_buffers): Likewise.
459 (build_wcs_buffer): Likewise.
460 (re_string_reconstruct): Likewise.
461 * posix/regex_internal.h: Change the type of characters in
462 re_string_t and bracket_elem_t from "unsigned char" to "char".
463 * posix/regexec.c (regexec): Append "__restrict" modifier to avoid
464 warnings of some compilers.
465 (transit_state_bkref_loop): Change the type of characters from
466 "unsigned char" to "char", and append a cast to "char*" pointer in
467 array subscript.
468 (check_node_accept_bytes): Likewise.
469 (find_collation_sequence_value): Likewise.
470
471 2002-09-04 Roland McGrath <roland@redhat.com>
472
473 * resolv/nss_dns/dns-network.c (MAXPACKET): Increase minimum value
474 from 1024 to 65536, to avoid buffer overrun.
475
476 2002-09-03 Gerhard Tonn <ton@de.ibm.com>
477
478 * sysdeps/s390/s390/fpu/libm-test-ulps: Regenerate.
479
480 2002-09-04 Ulrich Drepper <drepper@redhat.com>
481
482 * libio/tst-atime.c (do_test): Make sure noatime flag isn't set
483 for filesystem.
484
485 2002-09-04 Jakub Jelinek <jakub@redhat.com>
486
487 * posix/bug-regex11.c: New test.
488 * posix/Makefile (tests): Add bug-regex11.
489
490 2002-09-03 Jakub Jelinek <jakub@redhat.com>
491
492 * locale/tst-C_locale.c (run_test): Pass LC_ALL_MASK not LC_ALL to
493 newlocale.
494
495 2002-09-02 Roland McGrath <roland@redhat.com>
496
497 * sysdeps/powerpc/elf/libc-start.c [! SHARED]: Call
498 __pthread_initialize_minimal and __libc_check_standard_fds to
499 match the generic version.
500
501 * sysdeps/unix/sysv/linux/shmat.c (shmat): Add a cast to avoid a
502 warning when INLINE_SYSCALL macro uses the __syscall_ipc function.
503
504 * locale/localeconv.c (__localeconv): Cast -1 to char to avoid
505 warnings on platorms where char is unsigned.
506
507 2002-09-02 Ulrich Drepper <drepper@redhat.com>
508
509 * version.h (VERSION): Bump to 2.2.93.
510
511 * sysdeps/unix/sysv/linux/x86_64/Dist: Add __start_context.S.
512
513 2002-09-02 Jakub Jelinek <jakub@redhat.com>
514
515 * elf/rtld.c (dl_main): If prelinking succeeded, mark all objects
516 as relocated.
517
518 2002-09-02 Jack Howarth <howarth@bromo.msbb.uc.edu>
519
520 * sysdeps/powerpc/fpu/libm-test-ulps: Regenerated.
521
522 2002-09-02 Jakub Jelinek <jakub@redhat.com>
523
524 * locale/localeinfo.h (struct locale_data): Add private.ctype.
525 * wcsmbs/wcsmbsload.h (__wcsmbs_gconv_fcts, __wcsmbs_last_locale,
526 __wcsmbs_to_wc, update_conversion_ptrs): Removed.
527 (__wcsmbs_gconv_fcts_c, _nl_C_LC_CTYPE): New externs.
528 (__wcsmbs_load_conv): Remove const from argument.
529 (_nl_cleanup_ctype): New proto.
530 (get_gconv_fcts): New function.
531 * wcsmbs/wcsmbsload.c (__wcsmbs_last_locale): Removed.
532 (__wcsmbs_to_wc): Rename back to...
533 (to_wc): ... this.
534 (__wcsmbs_gconv_fcts): Rename to...
535 (__wcsmbs_gconv_fcts_c): ... this. Make const. Use to_wc.
536 (lock): Removed.
537 (__libc_setlocale_lock): New extern.
538 (__wcsmbs_load_conv): Remove const from argument.
539 Initialize new_category->private.ctype instead of a global
540 variable.
541 (__wcsmbs_clone_conv): Use get_gconv_fcts instead of
542 update_function_ptrs. No locking is necessary.
543 (_nl_cleanup_ctype): New function.
544 * wcsmbs/btowc.c (__btowc): Use get_gconv_fcts instead of
545 update_function_ptrs and a global __wcsmbs_gconv_fcts variable.
546 * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
547 * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
548 * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
549 * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
550 * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
551 * wcsmbs/wctob.c (wctob): Likewise.
552 * stdlib/mblen.c (mblen): Likewise.
553 * stdlib/mbtowc.c (mbtowc): Likewise.
554 * stdlib/wctomb.c (wctomb): Likewise.
555 * wcsmbs/mbsrtowcs.c (__mbsrtowcs): Likewise.
556 Remove calls to wcsmbs_get_towc_func and wcsmbs_free_funcs.
557 * wcsmbs/mbsrtowcs_l.c (wcsmbs_get_towc_func, wcsmbs_free_funcs):
558 Removed.
559
560 2002-09-02 Roland McGrath <roland@frob.com>
561
562 * sysdeps/mach/hurd/Versions (ld: GLIBC_2.0): Add __fxstat64.
563
564 2002-09-01 Roland McGrath <roland@redhat.com>
565
566 * ctype/ctype.h (__ctype_b, __ctype_toupper, __ctype_tolower):
567 Variable declarations removed.
568 (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): Declare
569 these functions to replace them.
570 (__isctype, tolower, toupper, _tolower, _toupper): Use those accessor
571 functions plus an indirection rather than the old global variables.
572 * include/ctype.h (__isctype, tolower, _tolower, toupper, _toupper):
573 Macros removed.
574 (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): New extern
575 inline functions.
576 * ctype/ctype-info.c: Revert last reversion back the other way.
577 Define tsd vars CTYPE_B, CTYPE_TOLOWER, CTYPE_TOUPPER.
578 Define real function versions of include/ctype.h inlines here.
579 * ctype/Versions (libc: GLIBC_2.3): Add __ctype_b_loc,
580 __ctype_tolower_loc, __ctype_toupper_loc.
581 * locale/lc-ctype.c: Revert last reversion back the other way.
582 (_nl_postload_ctype): If current thread uses the global locale,
583 update its tsd vars.
584 * locale/uselocale.c (__uselocale): Update tsd vars from new locale.
585 * hurd/hurd/threadvar.h (enum __hurd_threadvar_index): Add CTYPE_B,
586 CTYPE_TOLOWER, CTYPE_TOUPPER.
587
588 * sysdeps/generic/bits/libc-tsd.h (__libc_tsd_address): New macro.
589 * sysdeps/mach/hurd/bits/libc-tsd.h (__libc_tsd_address): Renamed
590 from __libc_tsd_threadvar_location.
591 (__libc_tsd_set, __libc_tsd_get): Update uses.
592
593 2002-09-01 Ulrich Drepper <drepper@redhat.com>
594
595 * ctype/ctype.h: Undo the patch before the last one. Put back the
596 macro definitions for the standard functions to access the
597 classification and mapping arrays.
598 * include/ctype.h: Partly revert last patch. Move the macro
599 definitions for the exported functions back to the public header.
600 #undef all the macros defined here before redefining.
601 * ctype/ctype-info.c: Revert last patch.
602 * locale/lc-ctype.c: Revert last patch.
603
604 * ctype/Makefile (routines): Add isctype.
605 * ctype/Versions (libc): Export isctype and __isctype for GLIBC_2.3.
606 * ctype/ctype.h: Add declaration of isctype.
607 * include/ctype.h: Declare __isctype.
608 * ctype/isctype.c: New file.
609
610 2002-09-01 Roland McGrath <roland@redhat.com>
611
612 * sysdeps/generic/libc-tls.c (__pthread_initialize_minimal): Pass
613 TLS_INIT_TCB_SIZE, TLS_INIT_TCB_ALIGN instead of 0, 1.
614
615 * include/getopt.h: Include <features.h> before <posix/getopt.h>.
616
617 * locale/findlocale.c (_nl_remove_locale): Don't search in
618 _nl_locale_file_list if DATA->alloc is ld_archive.
619 Use _nl_unload_locale to do the rest of the work.
620
621 * locale/loadarchive.c (_nl_load_locale_from_archive): Set usage_count
622 of new structure to UNDELETABLE.
623
624 * wctype/wctype.h (iswalnum, iswalpha, iswcntrl, iswdigit, iswlower,
625 iswgraph, iswprint, iswpunct, iswspace, iswupper, iswxdigit, iswblank,
626 towlower, towupper): Macros removed.
627 * ctype/ctype.h (__tobody): Put parens around macro argument.
628 (__isctype): Macro removed.
629 (__ctype_b, __ctype_tolower, __ctype_toupper): Decls removed.
630 (isalnum, isalpha, iscntrl, isdigit, islower, isgraph, isprint,
631 ispunct, isspace, isupper, isxdigit, isblank, _tolower, _toupper,
632 tolower, toupper): Macros and inlines removed.
633 * include/ctype.h [! NOT_IN_libc]
634 (isalnum, isalpha, iscntrl, isdigit, islower, isgraph, isprint,
635 ispunct, isspace, isupper, isxdigit, isblank, _tolower, _toupper,
636 tolower, toupper): Define here instead, using _NL_CURRENT.
637 * ctype/ctype.c (__ctype_tolower, __ctype_toupper): Define as macros
638 using _NL_CURRENT.
639 * ctype/ctype-extn.c (__ctype_tolower, __ctype_toupper): Likewise.
640 * ctype/ctype-info.c (__ctype_b, __ctype_tolower, __ctype_toupper):
641 Renamed these to __ctype_old_*. Define old names only for SHLIB_COMPAT.
642 (__ctype32_b, __ctype32_tolower, __ctype32_toupper): Likewise.
643 (__ctype32_wctrans, __ctype32_wctrans, __ctype32_width): Removed.
644 * locale/lc-ctype.c (_nl_postload_ctype): Use renamed variables,
645 conditional on SHLIB_COMPAT. Don't set removed variables at all.
646 * wctype/wcfuncs.c: Use _NL_CURRENT instead of those globals.
647 * wcsmbs/wcwidth.h (internal_wcwidth): Likewise.
648 * resolv/res_init.c [RESOLVSORT] (sort_mask): Renamed sort_mask_chars.
649 (ISSORTMASK): Update use.
650 * intl/localealias.c [__GNUC__]: #undef alloca before #define.
651 * nss/nss_files/files-XXX.c (last_use): Rename `none' to `nouse'.
652 (_nss_files_getENTNAME_r): Likewise.
653 * nss/nss_files/files-alias.c (last_use, _nss_files_getaliasent_r):
654 Likewise.
655
656 * Makerules (all-nonlib): Renamed from all-tests.
657 Include $(others) here too.
658 * locale/Makefile (CPPFLAGS-locale, CPPFLAGS-localedef,
659 CPPFLAGS-ld-ctype, CPPFLAGS-ld-time, CPPFLAGS-ld-numeric,
660 CPPFLAGS-ld-monetary, CPPFLAGS-ld-collate, CPPFLAGS-ld-identification,
661 CPPFLAGS-charmap, CPPFLAGS-locarchive, CPPFLAGS-linereader,
662 CPPFLAGS-charmap-dir): Variables removed. Instead, catch all
663 the program modules via cppflags-iterator.mk.
664 * sunrpc/Makefile (CPPFLAGS-rpc_main): Variable removed.
665 Instead, catch all rpcgen-objs via cppflags-iterator.mk.
666
667 2002-08-31 Roland McGrath <roland@redhat.com>
668
669 * posix/tst-getconf.sh: If no third arg, work with static linking.
670
671 * locale/categories.def (LC_TIME): No more _nl_postload_time.
672
673 * locale/setlocale.c (_nl_category_postload): Use weak refs only under
674 [_NL_CURRENT_INDIRECT].
675
676 2002-08-31 Ulrich Drepper <drepper@redhat.com>
677
678 * time/tst-ftime_l.c (main): Also test strftime with uselocale.
679
680 2002-08-31 Roland McGrath <roland@redhat.com>
681
682 * locale/newlocale.c (__newlocale): Don't use strdup for names.
683 Instead, make the single allocation of the structure larger to hold
684 the name strings.
685 * locale/duplocale.c (__duplocale): Don't strdup names individually.
686 Instead, calculate size for a single allocation and copy into it.
687 * locale/freelocale.c (__freelocale): Don't free names individually.
688
689 * locale/newlocale.c (__newlocale): Don't leak old data or names.
690
691 * locale/xlocale.h (__locale_struct): Move __names member last,
692 for binary compatibility.
693
694 * locale/duplocale.c (__duplocale): Free names from the right array.
695
696 * locale/uselocale.c (__uselocale): Return previous locale when
697 setting a new one.
698
699 * locale/newlocale.c: Commit changes from 2002-08-30
700 batch where I failed to commit this file:
701 (__newlocale): Fill in __names array.
702
703 2002-08-31 Ulrich Drepper <drepper@redhat.com>
704
705 * sysdeps/gnu/Makefile: Only depend on Versions.v.i for
706 errlist-compat.c if versioning==yes.
707
708 2002-08-31 Andreas Jaeger <aj@suse.de>
709
710 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup): Declare
711 external functions with hidden attribute.
712 (elf_machine_rela): Optimize.
713
714 * sysdeps/x86_64/memset.S: New file.
715 * sysdeps/x86_64/bzero.S: New file.
716 * sysdeps/x86_64/stpcpy.S: New file.
717 * sysdeps/x86_64/strcat.S: New file.
718 * sysdeps/x86_64/strchr.S: New file.
719 * sysdeps/x86_64/strcpy.S: New file.
720 * sysdeps/x86_64/strcspn.S: New file.
721 * sysdeps/x86_64/strlen.S: New file.
722 * sysdeps/x86_64/strpbrk.S: New file.
723 * sysdeps/x86_64/strspn.S: New file.
724 * sysdeps/x86_64/strcmp.S: New file.
725 * sysdeps/x86_64/strtok_r.S: New file.
726 * sysdeps/x86_64/strtok.S: New file.
727 * sysdeps/x86_64/memcpy.S: New file.
728 * sysdeps/x86_64/mempcpy.S: New file.
729
730 * sysdeps/x86_64/fpu/s_copysign.S: Fix algorithm.
731
732 * sysdeps/x86_64/fpu/libm-test-ulps: Add ulps for double tests.
733
734 2002-08-31 Ulrich Drepper <drepper@redhat.com>
735
736 * stdio-common/Makefile (generated): Add errlist-compat.c.
737
738 * locale/Makefile (extra-objs): Add $(localedef-aux:=.o).
739
740 * locale/localeinfo.h: Pretty printing.
741
742 * stdio-common/vfprintf.c (vfprintf): Remove duplicate ifs in
743 form_number handling.
744
745 2002-08-31 Andreas Jaeger <aj@suse.de>
746
747 * sysdeps/x86_64/fpu/libm-test-ulps: Add ulps for float and long
748 double tests.
749
750 * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_routines): Add
751 __start_context.
752
753 * sysdeps/unix/sysv/linux/x86_64/__start_context.S: New file.
754
755 * sysdeps/unix/sysv/linux/x86_64/makecontext.c: New file.
756
757 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Add defines for
758 registers used for passing args.
759
760 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Save and restore
761 all needed registers.
762
763 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Restore all
764 registers.
765
766 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Save all needed
767 registers.
768
769 2002-08-30 Ulrich Drepper <drepper@redhat.com>
770
771 * elf/dynamic-link.h (elf_get_dynamic_info): Mark with
772 always_inline attribute.
773
774 2002-08-30 Roland McGrath <roland@redhat.com>
775
776 * stdlib/tst-setcontext.c (main): If makecontext does nothing,
777 presume it's the stub and bail without error.
778
779 * nss/getnssent_r.c (__nss_getent_r): Return ENOENT if status is
780 neither SUCCESS nor TRYAGAIN (see 2002-08-25 change [PR libc/4259]).
781
782 * nss/getnssent_r.c (__nss_getent_r): Set *H_ERRNOP, not global one.
783
784 * sysdeps/x86_64/hp-timing.h (HP_TIMING_NOW, HP_TIMING_ACCUM): New
785 macros replace the i686 versions for 64-bit mode.
786
787 * locale/duplocale.c: Include <string.h>.
788
789 * intl/dcigettext.c (DCIGETTEXT) [_LIBC]: Check for bogus CATEGORY.
790 [_LIBC] (category_to_name): Don't define the function. Instead
791 define a macro using _nl_category_names.
792
793 * locale/xlocale.h (struct __locale_struct): New member `__names'.
794 * locale/xlocale.c (_nl_C_locobj): Update initializer.
795 * locale/global-locale.c (_nl_global_locale): Likewise.
796 * locale/duplocale.c (__duplocale): strdup __names elements.
797 * locale/freelocale.c (__freelocale): Free __names elements.
798 * locale/localename.c (_nl_current_names): Variable removed.
799 (__current_locale_name): Use _NL_CURRENT_LOCALE->__names instead.
800 * locale/localeinfo.h (_nl_current_names): Removed decl.
801 * locale/setlocale.c: Use _nl_global_locale->__names in place of
802 _nl_current_names throughout.
803
804 * locale/setlocale.c (setlocale): strdup -> __strdup (not ISO C).
805
806 * sysdeps/gnu/errlist-compat.awk: Emit link_warnings for sys_errlist
807 and sys_nerr in the output file.
808
809 * sunrpc/Makefile (rpcgen-cmd): Pass CPP in rpcgen's environment.
810 * scripts/cpp: Just use the environment variable.
811
812 * libio/tst-mmap-setvbuf.c (main): Use 'm' fopen flag.
813 * libio/tst-mmap-offend.c (do_test): Likewise.
814 * libio/tst-mmap-fflushsync.c (do_test): Likewise.
815 * libio/tst-mmap-eofsync.c (do_test): Likewise.
816 * libio/tst-mmap2-eofsync.c (do_test): Likewise.
817
818 * locale/localename.c: If the current locale is the global locale, use
819 _nl_current_names; otherwise use the locale object.
820
821 2002-08-29 Ulrich Drepper <drepper@redhat.com>
822
823 * libio/fileops.c (_IO_new_file_fopen): Recognize new mode specifier
824 'm' to enable mmap I/O.
825 * libio/libio.h (_IO_FILE): Rename _blksize field to _flags2. The
826 former wasn't used (anymore?).
827 (_IO_FLAGS2_MMAP): New define.
828 * libio/genops.c (_IO_no_init): Initialize _flags2 field.
829 * libio/iofopen.c (__fopen_maybe_mmap): Use mmap callbacks only if
830 _IO_FLAGS2_MMAP bit is set.
831 * libio/iofdopen.c (_IO_new_fdopen): Recognize 'm' mode specifier.
832 Enable mmap-using mode only if 'm' was set.
833
834 2002-08-29 Roland McGrath <roland@frob.com>
835
836 * sysdeps/mach/hurd/bits/local_lim.h (NAME_MAX): New macro.
837
838 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup: doinit):
839 Change argument type from int to intptr_t.
840
841 * locale/global-locale.c (__libc_tsd_LOCALE_data): Conditionalize the
842 initializer on [! _HURD_THREADVAR_H] (bad kludge).
843 * sysdeps/mach/hurd/i386/init-first.c (init): Initialize
844 _HURD_THREADVAR_LOCALE slot to &_nl_global_locale.
845 * hurd/hurdsig.c (_hurdsig_init): Likewise. Zero other slots.
846
847 * sysdeps/mach/_strerror.c (__strerror_r): Add libc_hidden_def.
848
849 * sysdeps/mach/hurd/pwrite64.c: No libc_hidden_def (__libc_pwrite64).
850
851 * sysdeps/mach/hurd/dl-sysdep.c (__GI_abort): Define alias for abort.
852
853 * include/assert.h (__assert_perror_fail): Declare it, do hidden_proto.
854 * assert/assert-perr.c: Add libc_hidden_def.
855 * elf/dl-minimal.c [! NDEBUG] (__assert_perror_fail): New function.
856
857 * sysdeps/gnu/errlist-compat.awk: Don't fail if there are no versions
858 found at all.
859 * sysdeps/gnu/Versions: File removed. Moved all #errlist-compat
860 sys_errlist stuff to ...
861 * sysdeps/unix/sysv/linux/Versions: ... here.
862
863 * mach/mach.h: Include <features.h>.
864
865 2002-08-29 Roland McGrath <roland@redhat.com>
866
867 * elf/dl-runtime.c (IN_DL_RUNTIME): Define this macro first thing.
868 * sysdeps/i386/dl-machine.h: Only declare fixup, profile_fixup and
869 define ELF_MACHINE_RUNTIME_TRAMPOLINE under #ifdef IN_DL_RUNTIME.
870
871 * sysdeps/generic/readelflib.c (process_elf_file): Fix typo.
872
873 * iconv/gconv_int.h: Include <stdlib.h> for alloca decl.
874 (norm_add_slashes): alloca -> __alloca
875
876 2002-08-29 Jakub Jelinek <jakub@redhat.com>
877
878 * stdio-common/vfprintf.c (vfprintf): Add builtin_expect for
879 string_malloced, it is unlikely to be set.
880 Only call free with non-NULL workspace.
881 * sysdeps/sparc/sparc32/sparcv9/Makefile (sysdep-CFLAGS): Use
882 -mcpu=ultrasparc, not only tune for it.
883 (ASFLAGS*): Set unconditionally.
884
885 * sysdeps/generic/readelflib.c (process_elf_file): Make LOADADDR
886 ElfW(Addr). Don't mask upper 32-bits and lower 12 bits off from
887 p_vaddr/p_offset when computing LOADADDR.
888
889 2002-08-29 Ulrich Drepper <drepper@redhat.com>
890
891 * version.h (VERSION): Bump to 2.2.92.
892
893 * time/Makefile (tst-ftime_l-ENV): New variable.
894
895 * iconvdata/ibm870.c: All bytes are now used, no holes anymore.
896
897 * localedata/charmaps/IBM870: Add correct mapping for <U017E>,
898 <U017A>, <U017D> and <U0179>. Add missing mappings.
899 Patch by Antonin Kopecky <akopecky@tajmac-zps.cz>.
900
901 * gmon/sys/gmon.h (ARCDENSITY): Bump to 3.
902 Define ARCINDEX. Bump MAXARCS to 1 << 20.
903 (struct tostruct): Use ACRINDEX as type for link field.
904 (statuc gmonparam): Likewise for froms.
905 * gmon/gmon.c (__monstartup): Use currect cast for assignments to
906 kcount and froms.
907 (write_call_graph): Use correct type for from_index and to_index.
908 * gmon/mcount.c: Use correct types for frompcindex and toindex
909 variables.
910 Patches by Dan Kegel <dank@kegel.com>.
911
912 * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix code to determine
913 canonical name.
914
915 * time/strptime.c (ISSPACE): New #define. Use isspace or
916 __isspace_l. Replace calls to isspace.
917 (match_string): Define variant for USE_IN_EXTENDED_LOCALE_MODEL.
918
919 2002-08-29 Roland McGrath <roland@redhat.com>
920
921 * string/tst-strxfrm.c: Remove __ from function names.
922
923 2002-08-28 Ulrich Drepper <drepper@redhat.com>
924
925 * include/wchar.h: Declare __mbsrtowcs_l.
926 * wcsmbs/Makefile (routines): Add mbsrtowcs_l.
927 * wcsmbs/mbsrtowcs.c: Add support for compilation with
928 USE_IN_EXTENDED_LOCALE_MODEL.
929 * wcsmbs/mbsrtowcs_l: New file.
930 * wcsmbs/wcsmbsload.c (__wcsmbs_to_wc): Renamed from to_wc. Don't
931 define as static. Change all uses.
932 (__wcsmbs_getfct): Renamed from getfct. Don't define as static.
933 Change all callers.
934 * wcsmbs/wcsmbsload.h: Declare __wcsmbs_to_wc and __wcsmbs_getfct.
935 * time/strftime.c: When translating for the extended locale model
936 use the _l functions.
937 * time/Makefile (tests): Add tst-ftime_l.
938 * time/tst-ftime_l.c: New file.
939
940 2002-08-28 Roland McGrath <roland@redhat.com>
941
942 * locale/findlocale.c [NL_CURRENT_INDIRECT] (_nl_C): New variable.
943 * locale/setlocale.c (setlocale) [NL_CURRENT_INDIRECT]: Null return
944 from _nl_find_locale ok if for _nl_C_name.
945
946 * locale/nl_langinfo.c [NL_CURRENT_INDIRECT]: Use a categories.def
947 iterator to refer to each category's _nl_current_LC_FOO symbol, so
948 we know they are all linked in.
949
950 * NEWS: Added 2.2.6 text from 2.2 branch version.
951
952 * time/strptime.c (strptime_internal): Remove spurious const.
953
954 * locale/lc-time.c (_nl_init_era_entries, _nl_get_era_entry,
955 _nl_select_era_entry): Moved to ...
956 * time/era.c: ... here, new file.
957 (_nl_init_era_entries, _nl_get_era_entry, _nl_select_era_entry):
958 Add internal_function to definitions. Take an additional argument
959 giving the `struct locale_data *' to use.
960 * locale/lc-time.c (_get_alt_digit, _nl_get_walt_digit,
961 _nl_parse_alt_digit): Moved to ...
962 * time/alt_digit.c: ... here, new file.
963 * time/lc-time-cleanup.c: New file.
964 * locale/lc-time.c (_nl_postload_time, free_mem): Functions removed.
965 * locale/localeinfo.h (_nl_postload_time): Remove decl.
966 (_nl_cleanup_time): Declare it.
967 (_nl_get_era_entry, _nl_select_era_entry): Update decls.
968 (_get_alt_digit, _nl_get_walt_digit, _nl_parse_alt_digit): Likewise.
969 * time/Makefile (aux): New variable: era, alt_digit, lc-time-cleanup.
970 * time/strftime.c: Pass locale data to helper functions.
971 * time/strptime.c: Likewise.
972
973 * locale/localeinfo.h (struct locale_data): New member `private'
974 * locale/loadlocale.c (_nl_intern_locale_data): Initialize it.
975 (_nl_unload_locale): Call LOCALE->private.cleanup if it is set.
976 * locale/C-collate.c: Update initializer.
977 * locale/C-identification.c: Likewise.
978 * locale/C-measurement.c: Likewise.
979 * locale/C-telephone.c: Likewise.
980 * locale/C-address.c: Likewise.
981 * locale/C-name.c: Likewise.
982 * locale/C-paper.c: Likewise.
983 * locale/C-time.c: Likewise.
984 * locale/C-numeric.c: Likewise.
985 * locale/C-monetary.c: Likewise.
986 * locale/C-messages.c : Likewise.
987 * locale/C-ctype.c: Likewise.
988
989 * time/strptime.c [USE_IN_EXTENDED_LOCALE_MODEL] (_NL_CURRENT_WORD):
990 Redefine this too.
991
992 2002-08-28 Jakub Jelinek <jakub@redhat.com>
993
994 * sysdeps/generic/ldsodefs.h (__rtld_global_attribute__): Define.
995 (_rtld_global): Use it.
996
997 * sysdeps/gnu/Dist: Remove errlist-compat.c.
998 * sysdeps/gnu/Makefile (errlist-compat.c): Build this file in the
999 object directory. Pass all Versions files to the awk script.
1000 * sysdeps/gnu/errlist-compat.c: Removed.
1001 * sysdeps/gnu/errlist.awk: Use #errlist-compat comments from the
1002 first Versions file in the search path which has them.
1003 Allow multiple errlist symbol versions to have the same count of
1004 errors.
1005 * sysdeps/gnu/errlist-compat.awk: Include <errlist-compat.c> instead
1006 of "errlist-compat.c".
1007 * sysdeps/gnu/errlist.c: Regenerated.
1008 * sysdeps/unix/sysv/linux/mips/Versions (libc): Add #errlist-compat
1009 comments at GLIBC_2.0, GLIBC_2.1 and GLIBC_2.3.
1010 * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
1011 (librt): Add aio_cancel and aio_cancel64 as GLIBC_2.3.
1012 * sysdeps/unix/sysv/linux/hppa/Versions: Likewise.
1013 * sysdeps/unix/sysv/linux/sparc/Versions: New file.
1014 * sysdeps/unix/sysv/linux/alpha/bits/errno.h: New file.
1015 * sysdeps/unix/sysv/linux/hppa/bits/errno.h (ECANCELED): Define to
1016 ECANCELLED if not defined by kernel headers.
1017 * sysdeps/unix/sysv/linux/bits/errno.h: Don't redefine ECANCELED if
1018 already defined by kernel headers.
1019 * sysdeps/unix/sysv/linux/sparc/bits/errno.h: New file.
1020 * sysdeps/pthread/aio_cancel.c: Don't include aio.h and its
1021 aio_cancel64 renaming hack nor provide weak_alias if aio_cancel
1022 is a macro.
1023 * Versions.def (GLIBC_2.3) [librt]: Add.
1024
1025 * sysdeps/unix/sysv/linux/alpha/pipe.S: New file.
1026
1027 2002-08-28 Ulrich Drepper <drepper@redhat.com>
1028
1029 * include/libc-symbols.h [!__ASSEMBLER__] (declare_symbol_1): Add
1030 missing comma to .type directive.
1031
1032 2002-08-28 Jakub Jelinek <jakub@redhat.com>
1033
1034 * sysdeps/ia64/elf/configure.in (PI_STATIC_AND_HIDDEN): Define
1035 unconditionally.
1036 * sysdeps/alpha/elf/configure.in (libc_cv_alpha_hidden_gprel): New
1037 check.
1038 (PI_STATIC_AND_HIDDEN): Define if check succeeded.
1039
1040 2002-08-28 Jakub Jelinek <jakub@redhat.com>
1041
1042 * locale/loadarchive.c (_nl_load_locale_from_archive): Add fd >= 0
1043 check to close_and_out close. Replace return NULL statements where
1044 fd might be >= 0 with goto close_and_out. Close the file descriptor
1045 when it is no longer needed.
1046
1047 2002-08-28 Ulrich Drepper <drepper@redhat.com>
1048
1049 * sysdeps/s390/s390-64/dl-machine.h: Avoid unescaped newlines in
1050 string constants.
1051 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
1052 * sysdeps/arm/dl-machine.h: Likewise.
1053 * sysdeps/cris/dl-machine.h: Likewise.
1054 * sysdeps/unix/sysv/linux/m68k/register-dump.h: Likewise.
1055 * sysdeps/unix/sysv/aix/gettimeofday.c: Likewise.
1056
1057 2002-08-28 Roland McGrath <roland@redhat.com>
1058
1059 * Makeconfig (default_cflags): Revert unintended change.
1060
1061 2002-08-28 Ulrich Drepper <drepper@redhat.com>
1062
1063 * version.h (VERSION): Bump to 2.2.91.
1064
1065 * configure.in: Disable TLS support by default for now.
1066
1067 * sysdeps/i386/fpu/libm-test-ulps: Adjust ulp for yn for float.
1068
1069 * sysdeps/generic/strtol.c (strtol): Add some more casts to avoid
1070 warnings.
1071
1072 * stdlib/strtod.c (STRTOF): Correct type in cast of last patch.
1073
1074 * stdlib/fmtmsg.c (fmtmsg): Use correct test for failure of
1075 fprintf/fwprintf calls.
1076
1077 2002-08-28 Roland McGrath <roland@redhat.com>
1078
1079 * Makeconfig (run-program-prefix): Fix bogus use of $(findstring ...)
1080 to use $(filter ...) instead. Same bug fixed in aix conditionals.
1081
1082 * locale/setlocale.c: Declare postload functions weak.
1083
1084 * elf/tst-tls1-static.c: New file.
1085 * elf/tst-tls2-static.c: New file.
1086 * elf/Makefile ($(tests-static):%=$(objfpx)%.o): Remove rule.
1087
1088 Make uselocale support static linking.
1089 * locale/xlocale.c: Revert changes putting _nl_global_locale here.
1090 This file again just defines _nl_C_locobj.
1091 (_nl_C_locobj): Use a categories.def iterator in the initializer.
1092 * locale/global-locale.c: New file. Define _nl_global_locale here,
1093 using all weak references in the initializer.
1094 * locale/Makefile (aux): Add global-locale.
1095 * locale/localeinfo.h (_nl_global_locale, _NL_CURRENT_LOCALE): Make
1096 these unconditional, along with the tsd decl.
1097 [!SHARED && HAVE___THREAD && HAVE_WEAK_SYMBOLS] (NL_CURRENT_INDIRECT):
1098 Define it under these conditions.
1099 [NL_CURRENT_INDIRECT]: Test this instead of [! SHARED].
1100 Don't declare _nl_current. Declare _nl_current_LC_FOO as
1101 `extern __thread struct locale_data *const *'.
1102 [NL_CURRENT_INDIRECT]
1103 (_NL_CURRENT_DATA, _NL_CURRENT, _NL_CURRENT_WSTR): Add indirection.
1104 [NL_CURRENT_INDIRECT] (_NL_CURRENT_DEFINE): Rewritten. Define
1105 the thread variable _nl_current_LC_FOO and also a special absolute
1106 symbol _nl_current_LC_FOO_used.
1107 * locale/uselocale.c (__uselocale) [NL_CURRENT_INDIRECT]:
1108 Set each _nl_current_LC_FOO symbol to point into the new locale,
1109 using weak references to test if _nl_current_LC_FOO_used was linked in.
1110 * locale/setlocale.c [! SHARED]: Replace this conditional ...
1111 [NL_CURRENT_INDIRECT]: ... with this one.
1112 (_nl_current, _nl_C): Variables removed.
1113 [NL_CURRENT_INDIRECT] (_nl_current_used): New variable, table of
1114 weak references to _nl_current_LC_FOO_used.
1115 [NL_CURRENT_INDIRECT] (CATEGORY_USED): Define using that table.
1116 (free_category): New function, broken out of ...
1117 (free_mem): ... here. Call that.
1118 (free_mem) [NL_CURRENT_INDIRECT]: Use a categories.def iterator
1119 instead of a loop.
1120
1121 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Don't check for
1122 PT_LOAD program headers and don't try to relocate PT_TLS's p_vaddr;
1123 it is already absolute.
1124
1125 * elf/Makefile (tests): List tst-tls1 and tst-tls2 unconditionally.
1126 [$(build-static) = yes] (tests): Add tst-tls1-static, tst-tls2-static.
1127 [$(build-static) = yes] (tests-static): New variable.
1128 ($(tests-static):%=$(objfpx)%.o)): New static pattern rule.
1129
1130 2002-08-26 Christoph Hellwig <hch@lst.de>
1131
1132 * sysdeps/unix/sysv/linux/sys/personality.h: Remark origin, fix
1133 formating braindamage, add missing PER_HPUX and PER_OSF1 values.
1134
1135 2002-08-28 Ulrich Drepper <drepper@redhat.com>
1136
1137 * sysdeps/x86_64/Dist: Add _mcount.S and bits/link.h.
1138
1139 * sysdeps/s390/Dist: Add bits/link.h.
1140
1141 * sysdeps/sh/Dist: New file.
1142
1143 * sysdeps/ia64/Dist: Add ia64libgcc.S.
1144
1145 * sysdeps/wordsize-32/Dist: New file.
1146
1147 * sysdeps/unix/sysv/linux/alpha/Dist: Add dl-brk.S.
1148 * sysdeps/unix/sysv/linux/powerpc/Dist: Likewise.
1149 * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: Likewise.
1150
1151 * sysdeps/unix/sysv/linux/Dist: Add dl-brk.c, dl-sbrk.c, and
1152 sys/personality.h.
1153
1154 * sysdeps/unix/Dist: Add i386/dl-brk.S, mips/dl-brk.S, and
1155 sparc/dl-brk.S.
1156
1157 * sysdeps/unix/bsd/Dist: Add vax/dl-brk.S.
1158
1159 * sysdeps/unix/bsd/sun/Dist: New file.
1160
1161 * sysdeps/unix/bsd/osf/Dist: New file.
1162
1163 * sysdeps/unix/bsd/hp/Dist: New file.
1164
1165 * sysdeps/unix/arm/Dist: New file.
1166
1167 * sysdeps/powerpc/Dist: Add divdi3.c and libgcc-compat.S.
1168
1169 * sysdeps/mach/hurd/Dist: Add set-init.c.
1170
1171 * sysdeps/i386/Dist: Add bits/link.h.
1172
1173 * sysdeps/gnu/Dist: Add errlist-compat.c errlist-compat.awk.
1174
1175 * sysdeps/generic/Dist: Add dl-brk.c and dl-sbrk.c.
1176
1177 * locale/Makefile (distribute): Add hashval.h.
1178
1179 * iconvdata/Makefile (distribute): Add tcvn5712-1.c and armscii-8.c.
1180
1181 * sysdeps/unix/sysv/linux/Dist: Remove errlist.h.
1182
1183 * misc/sys/cdefs.h: Define __BEGIN_NAMESPACE_STD, __END_NAMESPACE_STD,
1184 __USING_NAMESPACE_STD, __BEGIN_NAMESPACE_C99, __END_NAMESPACE_C99, and
1185 __USING_NAMESPACE_C99 depending on _GLIBCPP_USE_NAMESPACES.
1186 * ctype/ctype.h: Prepare headers for use in ISO C++ compliant
1187 implementations.
1188 * libio/stdio.h: Likewise.
1189 * locale/locale.h: Likewise.
1190 * math/math.h: Likewise.
1191 * math/bits/mathcalls.h: Likewise.
1192 * setjmp/setjmp.h: Likewise.
1193 * signal/signal.h: Likewise.
1194 * stdlib/stdlib.h: Likewise.
1195 * string/string.h: Likewise.
1196 * time/time.h: Likewise.
1197 * wcsmbs/wchar.h: Likewise.
1198 * wctype/wctype.h: Likewise.
1199
1200 2002-08-28 Roland McGrath <roland@redhat.com>
1201
1202 * locale/tst-C-locale.c (run_test): Remove __ from function names.
1203
1204 2002-08-28 Jakub Jelinek <jakub@redhat.com>
1205 Roland McGrath <roland@redhat.com>
1206
1207 * locale/hashval.h (compute_hashval): Use prototype defn.
1208 (hashval_t): New macro, defined to unsigned long int
1209 if not already defined.
1210 (compute_hashval): Return hashval_t instead of unsigned long int.
1211 * locale/loadarchive.c (hashval_t): New macro.
1212 * locale/programs/locarchive.c: Include hashval.h directly instead
1213 of simple-hash.h.
1214 (compute_hashval, hashval_t): Define these macros first.
1215 (insert_name): Use archive_hashval instead of compute_hashval.
1216 (add_locale, delete_locales_from_archive): Likewise.
1217
1218 2002-08-28 Jakub Jelinek <jakub@redhat.com>
1219
1220 * locale/programs/locarchive.c (insert_name): Suppress warnings about
1221 hash collisions if be_quiet.
1222
1223 2002-08-27 Roland McGrath <roland@redhat.com>
1224
1225 * locale/locale.h (__newlocale, __duplocale, __freelocale,
1226 __uselocale): Don't declare these any more.
1227 * include/locale.h (__uselocale): Declare here instead, using __typeof.
1228
1229 * sysdeps/unix/readdir.c: If getdents fails with ENOENT, restore errno
1230 and treat it as an EOF return.
1231 * sysdeps/unix/readdir_r.c: Likewise.
1232
1233 * sysdeps/gnu/errlist-compat.awk: Include <bits/wordsize.h> in output.
1234 From Alexandre Oliva <aoliva@redhat.com>.
1235 * sysdeps/gnu/errlist-compat.c: Regenerated.
1236
1237 2002-08-27 Brian Youmans <3diff@gnu.org>
1238
1239 * sysdeps/ieee754/flt-32/e_asinf.c: Modified copying permission
1240 wording at request of copyright holder Stephen Moshier.
1241 * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
1242 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
1243 * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
1244 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
1245 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
1246 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
1247 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
1248 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
1249 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
1250 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
1251 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
1252 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
1253 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
1254 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
1255
1256 2002-08-28 Jakub Jelinek <jakub@redhat.com>
1257
1258 * ctype/ctype.h (isascii_l, toascii_l): Define to __*_l counterparts.
1259 * ctype/ctype-extn.c (isblank_l): Add weak alias.
1260 * sysdeps/generic/strtol_l.c (strtol_l): Likewise.
1261 * sysdeps/generic/strtoll_l.c (strtoll_l): Likewise.
1262 * sysdeps/generic/strtoul_l.c (strtoul_l): Likewise.
1263 * sysdeps/generic/strtoull_l.c (strtoull_l): Likewise.
1264 * wctype/iswctype_l.c (iswctype_l): Likewise.
1265
1266 2002-08-27 Roland McGrath <roland@redhat.com>
1267
1268 * time/strftime.c [USE_IN_EXTENDED_LOCALE_MODEL]: No libc_hidden_def.
1269
1270 * ctype/ctype.h (__exctype_l): Don't declare __ name.
1271 * stdlib/stdlib.h: Don't declare __*_l names.
1272 * include/stdlib.h: Declare them here instead.
1273 * include/string.h: Don't declare __*_l names.
1274 * string/string.h: Declare them here instead.
1275 * time/time.h: Don't declare __*_l names.
1276 * include/time.h: Declare them here instead.
1277 * wcsmbs/wchar.h: Don't declare __*_l names.
1278 * include/wchar.h: Declare them here instead.
1279 * wctype/wctype.h: Declare iswalnum_l, not __iswalnum_l.
1280 Don't declare __*_l names.
1281 * include/wctype.h: Declare them here instead.
1282 * stdlib/monetary.h: Declare strfmon_l, not __strfmon_l.
1283 * stdlib/strfmon_l.c (strfmon_l): Define as weak alias.
1284 * locale/langinfo.h: Don't declare __nl_langinfo_l.
1285 * include/langinfo.h: Declare it here with __typeof.
1286
1287 * time/strptime.c [USE_IN_EXTENDED_LOCALE_MODEL]: Define __strptime_l
1288 instead, taking an extra __locale_t argument.
1289 * time/Makefile (routines): Add strptime_l.
1290 * time/time.h (__strptime_l, strptime_l): Declare them.
1291 * time/strptime_l.c: New file.
1292
1293 * time/time.h (__strftime_l, strftime_l): Declare them.
1294 * wcsmbs/wchar.h (__wcsftime_l, wcsftime_l): Declare them.
1295 * time/strftime_l.c: New file.
1296 * time/wcsftime_l.c: New file.
1297 * time/Makefile (routines): Add strftime_l, wcsftime_l.
1298 * time/Versions (libc: GLIBC_2.3): Add __strftime_l, __wcsftime_l,
1299 strftime_l, wcsftime_l.
1300 * time/strftime.c [USE_IN_EXTENDED_LOCALE_MODEL]: Define __strftime_l
1301 or __wcsftime_l instead, taking an extra __locale_t argument.
1302
1303 * locale/Versions (libc: GLIBC_PRIVATE): Move __uselocale to ...
1304 (libc: GLIBC_2.3): ... here.
1305
1306 2002-08-27 Ulrich Drepper <drepper@redhat.com>
1307
1308 * stdio-common/Makefile: Fix typo in stdio_lim.h installation rule.
1309
1310 * Makefile (distribute): Add LICENSES.
1311
1312 * sysdeps/unix/sysv/linux/x86_64/Dist: Add ucontext_i.h and
1313 sys/debugreg.h.
1314
1315 * sysdeps/unix/sysv/linux/s390/Dist: Add new/route.h.
1316
1317 * sysdeps/unix/sysv/linux/ia64/Dist: Add dl-brk.S and sys/user.h.
1318
1319 * sysdeps/unix/sysv/linux/mips/Dist: Add sys/user.h.
1320
1321 * sysdeps/unix/sysv/linux/Dist: Add readahead.c.
1322
1323 * sysdeps/mach/hurd/alpha/Dist: New file.
1324
1325 * sysdeps/arm/Dist: Add bits/link.h.
1326
1327 * sunrpc/Makefile: Distribute thrsvc.
1328
1329 * stdio-common/Makefile: Remove more left-overs from old stdio.
1330
1331 * include/linewrap.h: Removed.
1332
1333 * libio/bug-mmap-fflush.c: Rewrite to not touch source directory.
1334
1335 * intl/Makefile (distribute): Add plural-eval.c.
1336
1337 2002-08-27 Roland McGrath <roland@redhat.com>
1338
1339 * manual/sysinfo.texi (Mount Information): Correct file name to macro
1340 assocations for _PATH_MNTTAB, MNTTAB, _PATH_MOUNTED, MOUNTED.
1341 Say mtab is in either /var/run or /etc.
1342
1343 2002-08-26 Roland McGrath <roland@redhat.com>
1344
1345 * manual/errno.texi (Error Codes): Added ECANCELED (118 for Hurd).
1346 * sysdeps/mach/hurd/bits/errno.h: Regenerated.
1347
1348 * sysdeps/gnu/Versions: New file.
1349 * sysdeps/unix/sysv/linux/Versions (libc: GLIBC_2.1): Remove
1350 _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; from here.
1351 * sysdeps/gnu/Makefile ($(..)sysdeps/gnu/errlist-compat.c): New target.
1352 ($(objpfx)errlist.d): Depend on $(..)sysdeps/gnu/errlist-compat.c.
1353 * sysdeps/gnu/errlist.awk: Make output define _sys_errlist_internal
1354 and _sys_nerr_internal instead of anything else. Make it include
1355 "errlist-compat.c" if [!NOT_IN_libc && !ERRLIST_NO_COMPAT].
1356 Make it emit some asm magic if [EMIT_ERR_MAX].
1357 * sysdeps/gnu/errlist.c: Regenerated.
1358 * sysdeps/gnu/errlist-compat.awk: New file.
1359 * sysdeps/gnu/errlist-compat.c: New file (generated).
1360 * sysdeps/mach/hurd/errlist.c (ERRLIST_NO_COMPAT): New macro.
1361 (_sys_errlist_internal): Define this as a macro for _hurd_errlist.
1362 (_sys_nerr_internal): Define this is a macro for _hurd_nerr.
1363 (SYS_ERRLIST, SYS_NERR): Macros removed.
1364 (sys_nerr, _sys_nerr): Remove these weak aliases.
1365 * sysdeps/unix/sysv/linux/errlist.c: File removed.
1366 * sysdeps/unix/sysv/linux/errlist.h: File removed.
1367 * sysdeps/unix/sysv/linux/arm/errlist.c: File removed.
1368
1369 * include/libc-symbols.h (declare_symbol): New macro.
1370 * config.h.in (ASM_TYPE_DIRECTIVE_PREFIX): New #undef.
1371 * configure.in: New check to define it.
1372 * configure: Regenerated.
1373
1374 2002-08-27 Ulrich Drepper <drepper@redhat.com>
1375
1376 * stdio-common/Makefile (headers): Remove bits/stdio_lim.h. This
1377 file isn't distributed. Add special rules to install bits/stdio_lim.h.
1378
1379 * Make-dist: Remove traces of old stdio.
1380 * Makeconfig: Likewise.
1381
1382 * locale/Makefile (localedef-aux): New variable. Only md5
1383 assigned to it. These files are not ddistributed in this directory.
1384
1385 * sysdeps/unix/sysv/linux/s390/Dist: Add sys/procfs.h.
1386 * sysdeps/unix/sysv/linux/s390/s390-64/Dist: Remove sys/procfs.h.
1387 * sysdeps/unix/sysv/linux/s390/s390-32/Dist: Likewise.
1388
1389 * sysdeps/unix/sysv/linux/Dist: Remove sys/sendfile.h.
1390
1391 * nss/getXXbyYY_r.c (REENTRANT_NAME): If no service is available
1392 set h_errno to NO_RECOVERY [PR libc/4360].
1393
1394 2002-08-26 Ulrich Drepper <drepper@redhat.com>
1395
1396 * libio/Makefile (tests): Add bug-fopena+.
1397 * libio/bug-fopena+.c: New file.
1398 * libio/fileops.c (_IO_file_open): Only set file pointer to end of the
1399 file for _IO_IS_APPENDING if file isn't opened for reading, too.
1400
1401 * stdio-common/tst-swprintf.c (main): Add casts to avoid warnings.
1402
1403 * locale/xlocale.c: Fix the last change. The variable still has
1404 to end in _data.
1405 * sysdeps/generic/bits/libc-tsd.h [!(USE_TLS && HAVE___THREAD)]
1406 (__libc_tsd_set): Add _data prefix to variable name.
1407
1408 2002-08-26 Roland McGrath <roland@redhat.com>
1409
1410 * sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask): Replace
1411 macro with inline function.
1412 (sigset_get_old_mask): Likewise.
1413 * sysdeps/posix/sigblock.c (__sigblock): Update callers.
1414 * sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
1415 * sysdeps/posix/sigpause.c (__sigpause): Likewise.
1416 * sysdeps/posix/sigvec.c (__sigvec, sigvec_wrapper_handler): Likewise.
1417 * sysdeps/unix/sysv/aix/sigset-cvt-mask.h
1418 (sigset_set_old_mask, sigset_get_old_mask): Make these macros return
1419 values.
1420 * sysdeps/unix/sysv/linux/sigset-cvt-mask.h: Likewise.
1421 * sysdeps/unix/sysv/sysv4/sigset-cvt-mask.h: Likewise.
1422
1423 2002-07-06 Bruno Haible <bruno@clisp.org>
1424
1425 * sysdeps/generic/sigset-cvt-mask.h (sigset_set_old_mask,
1426 sigset_get_old_mask): Make it work with larger sigset_t.
1427 * sysdeps/posix/sigblock.c (__sigblock): Use those macros.
1428 * sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
1429 * sysdeps/posix/sigpause.c (__sigpause): Likewise.
1430
1431 2002-08-26 Roland McGrath <roland@redhat.com>
1432
1433 * time/sys/time.h [__USE_BSD] (lutimes, futimes): Declare them.
1434 * manual/filesys.texi (File Times): Document lutimes and futimes.
1435 * misc/Makefile (routines): Add them.
1436 * misc/Versions (libc: GLIBC_2.3): Likewise.
1437 * sysdeps/generic/lutimes.c: New file.
1438 * sysdeps/generic/futimes.c: New file.
1439 * sysdeps/mach/hurd/lutimes.c: New file.
1440 * sysdeps/mach/hurd/futimes.c: New file.
1441
1442 * manual/filesys.texi (File Times): Add explicit note about null
1443 pointer argument to utimes.
1444
1445 2002-08-26 Roland McGrath <roland@frob.com>
1446
1447 * sysdeps/mach/hurd/ifreq.h (__if_freereq): Add missing semicolon.
1448 (__ifreq): Add a cast. Remove an unused variable.
1449
1450 * hurd/hurd/threadvar.h (enum __hurd_threadvar_index): Add
1451 _HURD_THREADVAR_LOCALE.
1452
1453 2002-08-26 Jakub Jelinek <jakub@redhat.com>
1454
1455 * posix/regexec.c (re_search_stub): Return correct match length
1456 if start != 0.
1457 * posix/bug-regex10.c: New test.
1458 * posix/Makefile (tests): Add bug-regex10.
1459
1460 2002-08-26 Brian Youmans <3diff@gnu.org>
1461
1462 * COPYING.LIB: Replaced with fresh copy from
1463 ftp://ftp.gnu.org/gnu/Licenses/COPYING.LIB-2.1;
1464 suggested copying permission notice now says version 2.1 instead
1465 of version 2.
1466
1467 * crypt/crypt.c: Changed copying permission notice to Lesser GPL
1468 from Library GPL.
1469 * crypt/crypt_util.c: Likewise.
1470 * crypt/ufc.c: Likewise.
1471 * elf/dl-conflict.c: Likewise.
1472 * elf/dl-iteratephdr.c: Likewise.
1473 * iconv/iconvconfig.h: Likewise.
1474 * malloc/arena.c: Likewise.
1475 * malloc/hooks.c: Likewise.
1476 * malloc/malloc.c: Likewise.
1477 * posix/glob/Makefile.ami: Likewise.
1478 * posix/glob/Makefile.in: Likewise.
1479 * stdlib/gmp-impl.h: Likewise.
1480 * stdlib/gmp.h: Likewise.
1481 * sysdeps/generic/dl-iteratephdr-static.c: Likewise.
1482 * sysdeps/generic/strnlen.c: Likewise.
1483 * sysdeps/mach/hurd/powerpc/bits/sigcontext.h: Likewise.
1484 * sysdeps/mach/hurd/recvmsg.c: Likewise.
1485 * sysdeps/mach/hurd/sendmsg.c: Likewise.
1486 * sysdeps/mach/hurd/spawni.c: Likewise.
1487 * sysdeps/mach/powerpc/machine-sp.h: Likewise.
1488 * sysdeps/mach/powerpc/sysdep.h: Likewise.
1489 * sysdeps/mach/powerpc/thread_state.h: Likewise.
1490 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
1491 * sysdeps/unix/sysv/linux/ia64/dl-iteratephdr-static.c: Likewise.
1492 * sysdeps/x86_64/gmp-mparam.h: Likewise.
1493
1494 * sysdeps/ieee754/dbl-64/MathLib.h: Corrected version number in
1495 Lesser GPL copying permission notice from 2 to 2.1.
1496 * sysdeps/ieee754/dbl-64/asincos.tbl: Likewise.
1497 * sysdeps/ieee754/dbl-64/atnat.h: Likewise.
1498 * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
1499 * sysdeps/ieee754/dbl-64/branred.c: Likewise.
1500 * sysdeps/ieee754/dbl-64/branred.h: Likewise.
1501 * sysdeps/ieee754/dbl-64/dla.h: Likewise.
1502 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
1503 * sysdeps/ieee754/dbl-64/doasin.h: Likewise.
1504 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
1505 * sysdeps/ieee754/dbl-64/dosincos.h: Likewise.
1506 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
1507 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
1508 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
1509 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
1510 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
1511 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
1512 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
1513 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
1514 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
1515 * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
1516 * sysdeps/ieee754/dbl-64/mpa2.h: Likewise.
1517 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
1518 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
1519 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
1520 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
1521 * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
1522 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
1523 * sysdeps/ieee754/dbl-64/mplog.h: Likewise.
1524 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
1525 * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
1526 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
1527 * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
1528 * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
1529 * sysdeps/ieee754/dbl-64/root.tbl: Likewise.
1530 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
1531 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
1532 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
1533 * sysdeps/ieee754/dbl-64/sincos.tbl: Likewise.
1534 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
1535 * sysdeps/ieee754/dbl-64/sincos32.h: Likewise.
1536 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
1537 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
1538 * sysdeps/ieee754/dbl-64/uasncs.h: Likewise.
1539 * sysdeps/ieee754/dbl-64/uatan.tbl: Likewise.
1540 * sysdeps/ieee754/dbl-64/uexp.h: Likewise.
1541 * sysdeps/ieee754/dbl-64/uexp.tbl: Likewise.
1542 * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
1543 * sysdeps/ieee754/dbl-64/ulog.tbl: Likewise.
1544 * sysdeps/ieee754/dbl-64/upow.h: Likewise.
1545 * sysdeps/ieee754/dbl-64/upow.tbl: Likewise.
1546 * sysdeps/ieee754/dbl-64/urem.h: Likewise.
1547 * sysdeps/ieee754/dbl-64/uroot.h: Likewise.
1548 * sysdeps/ieee754/dbl-64/usncs.h: Likewise.
1549 * sysdeps/ieee754/dbl-64/utan.h: Likewise.
1550 * sysdeps/ieee754/dbl-64/utan.tbl: Likewise.
1551
1552 * sysdeps/ieee754/flt-32/e_asinf.c: Added copyright notice for Stephen
1553 Moshier and Lesser GPL copying permission notice, per license from
1554 Moshier.
1555 * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
1556 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
1557 * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
1558 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
1559 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
1560 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
1561 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
1562 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
1563 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
1564 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
1565 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
1566 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
1567 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
1568 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
1569
1570 * sysdeps/ieee754/ldbl-128/e_j0l.c: Added Lesser GPL copying permission
1571 notice, per license from copyright holder Stephen Moshier.
1572 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
1573 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
1574 * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
1575 * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
1576 * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
1577 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
1578 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
1579 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
1580 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
1581
1582 2002-08-26 Kaz Kojima <kkojima@rr.iij4u.or.jp>
1583
1584 * sysdeps/sh/Makefile (sysdeps_routines): Add divdi3 in csu dir.
1585 (shared-only-routines): Likewise.
1586
1587 2002-08-26 Roland McGrath <roland@redhat.com>
1588
1589 * locale/programs/ld-ctype.c (ctype_read): When given a repertoire
1590 name of "", store a null pointer instead.
1591
1592 * configure.in (elf): Set to yes for freebsd*, netbsd*.
1593 * configure: Regenerated.
1594
1595 * locale/xlocale.c [! (USE_TLS && HAVE___THREAD)] (__libc_tsd_LOCALE):
1596 Initialize this instead of __libc_tsd_LOCALE_data.
1597
1598 * sysdeps/unix/grantpt.c (pts_name): Convert ENOTTY return from
1599 ptsname_r to EINVAL.
1600
1601 * sysdeps/generic/ptsname.c (__ptsname_r): Return ENOSYS instead of 0.
1602
1603 * rt/Makefile: Revert last change, it was inappropriate to presume aio
1604 implementations depend on pthreads.
1605 * rt/tst-aio.c (do_test): Exit happy if first failure is ENOSYS.
1606 * rt/tst-aio64.c (do_test): Likewise.
1607 * rt/tst-aio2.c (do_test): Likewise.
1608 * rt/tst-aio3.c (do_test): Likewise.
1609 * rt/tst-aio4.c (do_test): Likewise.
1610 * rt/tst-aio5.c (do_test): Likewise.
1611 * rt/tst-aio6.c (do_test): Likewise.
1612 * rt/tst-aio7.c (do_test): Likewise.
1613
1614 * sysdeps/generic/bits/libc-lock.h (__libc_setspecific): Use a cast to
1615 void so as to avoid compiler warnings.
1616
1617 * libio/oldstdfiles.c [! _IO_MTSAFE_IO] (DEF_STDFILE): Don't define
1618 _IO_wide_data_FD, which is never used here.
1619
1620 * libio/iofread.c
1621 [! _IO_MTSAFE_IO] (fread_unlocked): Add libc_hidden_ver defn.
1622 * libio/iofputs.c [! _IO_MTSAFE_IO] (fputs_unlocked): Likewise.
1623 * libio/iofgets.c [! _IO_MTSAFE_IO] (fgets_unlocked): Likewise.
1624
1625 * include/resolv.h [! _LIBC_REENTRANT] (_res): #undef it before decl.
1626 * include/netdb.h [! _LIBC_REENTRANT] (h_errno): Declare normal extern.
1627
1628 * misc/syslog.c (openlog): Conditionalize locking on [_LIBC_REENTRANT].
1629 (closelog): Likewise.
1630
1631 2002-07-06 Bruno Haible <bruno@clisp.org>
1632
1633 * sysdeps/alpha/fpu/fpu_control.h: Comment fix.
1634
1635 * sysdeps/unix/sysv/linux/alpha/pipe.S: Moved to ...
1636 * sysdeps/unix/alpha/pipe.S: ... here.
1637 * sysdeps/unix/bsd/osf/alpha/pipe.S: File removed.
1638
1639 * sysdeps/unix/i386/brk.S: Rename local label to '.Lhere' in ELF.
1640
1641 * sysdeps/unix/i386/brk.S: Add PSEUDO_END invocation.
1642 * sysdeps/unix/i386/fork.S: Likewise.
1643 * sysdeps/unix/i386/pipe.S: Likewise.
1644 * sysdeps/unix/i386/wait.S: Likewise.
1645
1646 * sysdeps/unix/fork.S: Fix PSEUDO_END argument.
1647 * sysdeps/unix/arm/fork.S: Likewise.
1648
1649 * sysdeps/unix/sysv/linux/arm/sysdep.h (PSEUDO): Swap DO_CALL
1650 arguments.
1651 (DO_CALL): Swap argument order.
1652 * sysdeps/unix/sysv/linux/hppa/sysdep.h (PSEUDO): Swap DO_CALL
1653 arguments.
1654 (DO_CALL): Swap argument order.
1655 * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Swap DO_CALL
1656 arguments.
1657 (DO_CALL): Swap argument order.
1658 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (PSEUDO): Swap DO_CALL
1659 arguments.
1660 (DO_CALL): Swap argument order.
1661 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (PSEUDO): Swap DO_CALL
1662 arguments.
1663 (DO_CALL): Swap argument order.
1664 * sysdeps/unix/sysv/linux/sh/sysdep.h (PSEUDO): Swap DO_CALL
1665 arguments.
1666 (DO_CALL): Swap argument order.
1667 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Swap DO_CALL
1668 arguments.
1669 (DO_CALL): Swap argument order.
1670
1671 * sysdeps/i386/sysdep.h (PSEUDO): Fix syntax error.
1672 (L): Define right for ELF.
1673 * sysdeps/unix/sysv/linux/i386/sysdep.h (L): Remove definition.
1674 Now defined in sysdeps/i386/sysdep.h.
1675
1676 * sysdeps/posix/readv.c: Ansify function definition.
1677 * sysdeps/posix/writev.c: Likewise.
1678
1679 * stdio-common/tst-fseek.c (main): Don't assume that off_t and size_t
1680 have the same size. Avoid direct cast from size_t to off_t.
1681
1682 * login/tst-utmp.c (simulate_login): Don't leave garbage after the
1683 nul byte in entry[n].ut_user.
1684 (simulate_logout): Likewise.
1685
1686 * login/programs/utmpdump.c (print_entry): Test _HAVE_UT_TYPE,
1687 _HAVE_UT_PID, _HAVE_UT_ID, _HAVE_UT_HOST, instead of assuming the
1688 existence of corresponding members of 'struct utmp'.
1689 * login/tst-utmp.c: Trivialize the test if testing 'struct utmp' and
1690 !_HAVE_UT_TYPE.
1691
1692 * sysdeps/unix/opendir.c (__opendir): If st_blksize is 0 or too small,
1693 allocate a buffer of at least BUFSIZ bytes, not just of
1694 sizeof (struct dirent).
1695
1696 * sysdeps/generic/glob.c: Include <limits.h>.
1697 (NAME_MAX): Define a fallback.
1698 (glob_in_dir): Allocate enough room for a 'struct dirent64' on the
1699 stack.
1700 * posix/tst-dir.c: Include <stddef.h>, for offsetof.
1701 (main): Allocate enough room for a 'struct dirent64' on the stack.
1702 * posix/tst-gnuglob.c (my_DIR): Allocate enough room for a
1703 'struct dirent'.
1704
1705 * sysdeps/unix/sysv/linux/init-first.c: Don't include
1706 kernel-features.h.
1707
1708 * inet/htontest.c: Include <sys/types.h>.
1709
1710 * sysdeps/generic/sys/sysinfo.h: Surround with __{BEGIN,END}_DECLS.
1711
1712 * include/sys/sysctl.h: Comment fix.
1713
1714 * elf/rtld.c (_rtld_global) [! _LIBC_REENTRANT]: Don't initialize
1715 _dl_load_lock.
1716 * libio/fileno.c (fileno_unlocked): Define regardless of _IO_MTSAFE_IO.
1717
1718 * sysdeps/unix/bsd/bsd4.4/syscalls.list (__sigaltstack): New alias.
1719
1720 * sysdeps/unix/inet/syscalls.list (__connect_internal): New alias.
1721 (__getpeername): New alias.
1722 (__getsockname): New alias.
1723 (__socket): New alias.
1724
1725 * sysdeps/unix/common/syscalls.list (getpgid): Remove.
1726
1727 * sysdeps/unix/syscalls.list (__chown_internal): New alias.
1728 (__fcntl_internal): New alias.
1729 (__profil): New alias.
1730
1731 2002-08-26 Ulrich Drepper <drepper@redhat.com>
1732
1733 * nscd/hstcache.c (cache_addhst): Add new parameter saying whether
1734 entry was for getaddr* lookup or not. Add only matching cache
1735 entry. Change all callers [PR libc/4317].
1736
1737 * libio/wfileops.c (_IO_wfile_seekoff): Set fp->_offset after
1738 finding the read position [PR libc/4265].
1739 * libio/Makefile (tests): Add bug-rewind2.
1740 * libio/bug-rewind2.c: New file.
1741
1742 * libio/bug-rewind.c: Fix creation of temp file.
1743
1744 2002-08-25 Ulrich Drepper <drepper@redhat.com>
1745
1746 * nss/getXXbyYY_r.c (REENTRANT_NAME): Return ENOENT if status is
1747 neither SUCCESS nor TRYAGAIN [PR libc/4259].
1748 * nss/nss_files/files-XXX.c (internal_getent): Don't set *errnop
1749 to ENOENT if no entry is found.
1750 * nis/nss_compat/compat-grp.c: Don't set errno in case of lookup
1751 failure.
1752 * nis/nss_compat/compat-initgroups.c: Likewise.
1753 * nis/nss_compat/compat-pwd.c: Likewise.
1754 * nis/nss_compat/compat-spwd.c: Likewise.
1755 * nis/nss_nis/nis-alias.c: Likewise.
1756 * nis/nss_nis/nis-ethers.c: Likewise.
1757 * nis/nss_nis/nis-grp.c: Likewise.
1758 * nis/nss_nis/nis-hosts.c: Likewise.
1759 * nis/nss_nis/nis-initgroups.c: Likewise.
1760 * nis/nss_nis/nis-netgrp.c: Likewise.
1761 * nis/nss_nis/nis-network.c: Likewise.
1762 * nis/nss_nis/nis-proto.c: Likewise.
1763 * nis/nss_nis/nis-publickey.c: Likewise.
1764 * nis/nss_nis/nis-pwd.c: Likewise.
1765 * nis/nss_nis/nis-rpc.c: Likewise.
1766 * nis/nss_nis/nis-service.c: Likewise.
1767 * nis/nss_nis/nis-spwd.c: Likewise.
1768 * resolv/nss_dns/dns-host.c: Likewise.
1769 * resolv/nss_dns/dns-network.c: Likewise.
1770 * nis/nss_nisplus/nisplus-alias.c: Save errno around NIS calls.
1771 * nis/nss_nisplus/nisplus-ethers.c: Likewise.
1772 * nis/nss_nisplus/nisplus-grp.c: Likewise.
1773 * nis/nss_nisplus/nisplus-hosts.c: Likewise.
1774 * nis/nss_nisplus/nisplus-network.c: Likewise.
1775 * nis/nss_nisplus/nisplus-proto.c: Likewise.
1776 * nis/nss_nisplus/nisplus-pwd.c: Likewise.
1777 * nis/nss_nisplus/nisplus-rpc.c: Likewise.
1778 * nis/nss_nisplus/nisplus-service.c: Likewise.
1779 * nis/nss_nisplus/nisplus-spwd.c: Likewise.
1780 * hesiod/nss_hesiod/hesiod-pwd.c (lookup): Preserve errno value.
1781 * hesiod/nss_hesiod/hesiod-proto.c (lookup): Likewise.
1782 * hesiod/nss_hesiod/hesiod-grp.c (lookup): Likewise.
1783 * hesiod/nss_hesiod/hesiod-service.c (lookup): Likewise.
1784
1785 * sysdeps/unix/sysv/linux/i386/sigaction.c: Avoid warnings by
1786 declaring __restore and __restore_rt as hidden (if possible).
1787
1788 2002-08-25 Roland McGrath <roland@redhat.com>
1789
1790 * manual/llio.texi (Access Modes): Fix typos in O_READ/O_WRITE defns.
1791
1792 * sysdeps/generic/utmp_file.c (LOCK_FILE): Check for error from fcntl.
1793 (getutent_r_file, internal_getut_r): Updated all callers.
1794 (getutline_r_file, pututline_file, updwtmp_file): Likewise.
1795
1796 2002-08-25 Ulrich Drepper <drepper@redhat.com>
1797
1798 * locale/programs/locale.c: Don't print aliases for non-existing
1799 locales for 'locale -a'.
1800 Patch by Noah Levitt <nlevitt@columbia.edu> [PR libc/4166].
1801
1802 2002-07-19 H.J. Lu <hjl@gnu.org>
1803
1804 * sysdeps/unix/sysv/linux/mips/bits/msq.h: New file.
1805
1806 2002-07-16 H.J. Lu <hjl@gnu.org>
1807
1808 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1809 sys/personality.h.
1810 * sysdeps/unix/sysv/linux/sys/personality.h: New file.
1811
1812 2002-08-25 Ulrich Drepper <drepper@redhat.com>
1813
1814 * elf/tst-tlsmod1.c (in_dso): Make sure the TLS variable access is
1815 not moved ahead of the fputs call.
1816 * elf/tst-tlsmod2.c (in_dso): Likewise.
1817 * elf/tst-tlsmod3.c (in_dso2): Likewise.
1818 * elf/tst-tlsmod4.c (in_dso): Likewise.
1819
1820 2002-08-25 Andreas Schwab <schwab@suse.de>
1821
1822 * elf/dl-reloc.c (_dl_reloc_bad_type): Nul-terminate message.
1823
1824 2002-08-25 Roland McGrath <roland@redhat.com>
1825
1826 * sysdeps/generic/utmp_file.c (UNLOCK_FILE): Clear alarm before
1827 resetting handler, to avoid the possibility of a spurious SIGALRM
1828 delivered to the user's handler.
1829 Reported by Amit D. Chaudhary <amitc@brocade.com>,
1830
1831 * misc/Makefile (CFLAGS-init-misc.c): Variable removed. It served to
1832 set -fkeep-inline-functions, which is not needed for the current file.
1833
1834 * sysdeps/generic/ldsodefs.h: Add attribute_hidden to *_internal decls.
1835 (_dl_setup_hash): Add attribute_hidden.
1836 (_dl_sysdep_start, _dl_sysdep_start_cleanup): Likewise.
1837 (_dl_sysdep_read_whole_file, _dl_dprintf): Likewise.
1838 (_dl_new_object, _dl_map_object_deps): Likewise.
1839 (_dl_map_object_deps_internal): Remove decl.
1840 * elf/rtld.c (__mempcpy, _exit): Redeclare locally as hidden.
1841
1842 * sysdeps/i386/dl-machine.h [PI_STATIC_AND_HIDDEN
1843 && HAVE_VISIBILITY_ATTRIBUTE && HAVE_HIDDEN
1844 && !HAVE_BROKEN_VISIBILITY_ATTRIBUTE]
1845 (elf_machine_dynamic, elf_machine_load_address): Rewritten without asm,
1846 instead relying on the compiler to produce only GOTOFF variable refs.
1847
1848 2002-08-25 Ulrich Drepper <drepper@redhat.com>
1849
1850 * elf/dl-load.c: Fix typo in comment. Add a few more __builtin_expect.
1851
1852 * sysdeps/generic/dl-cache.h (_dl_cache_libcmp): Define as static
1853 inline to avoid defining it in every file which includes this header.
1854
1855 * elf/rtld.c: Also test for HAVE_VISIBILITY_ATTRIBUTE before
1856 defining DONT_USE_BOOTSTRAP_MAP.
1857
1858 * libio/tst-freopen.c (main): Use correct formats for __LINE__.
1859 * libio/tst-mmap-setvbuf.c (main): Likewise.
1860 * libio/tst-widetext.c (main): Likewise.
1861
1862 * libio/tst-mmap-eofsync.c (do_test): Use correct format in error
1863 message.
1864 * libio/tst-mmap-fflushsync.c (do_test): Likewise.
1865 * libio/tst-mmap2-eofsync.c (do_test): Likewise.
1866
1867 * sysdeps/i386/elf/configure.in: Unconditionally define
1868 PI_STATIC_AND_HIDDEN.
1869 * elf/rtld.c (DONT_USE_BOOTSTRAP_MAP): Define only if
1870 PI_STATIC_AND_HIDDEN is defined as well.
1871 * config.h.in: Add PI_STATIC_AND_HIDDEN entry.
1872
1873 2002-08-24 Ulrich Drepper <drepper@redhat.com>
1874
1875 * sysdeps/ia64/bzero.S: Define __bzero as well.
1876
1877 * locale/programs/charmap.c (charmap_new_char): Don't use
1878 ULONG_MAX as maximum UCS4 value.
1879
1880 * sysdeps/unix/sysv/linux/ia64/sys/user.h: New file.
1881
1882 * sysdeps/generic/strtol.c: We don't need the isascii test in glibc.
1883
1884 * malloc/hooks.c (public_sET_STATe): use size_t as type for i.
1885 * malloc/malloc.c (mALLINFo): Likewise.
1886
1887 * libio/wstrops.c (_IO_wstr_pbackfail): Use WEOF in comparison.
1888
1889 * libio/wfileops.c (_IO_wfile_overflow): Use EOF not WEOF when
1890 examining result of _IO_do_flush call.
1891
1892 * stdio-common/vfprintf.c (vfprintf): Use correct type in va_arg.
1893 Use prec not spec when sizing buffers.
1894
1895 * catgets/open_catalog.c (__open_catalog): Add casts to avoid warnings.
1896 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
1897 * locale/loadlocale.c (_nl_intern_locale_data): Likewise.
1898 * stdio-common/vfscanf.c (inchar): Likewise.
1899 * misc/efgcvt_r.c (fcvt_r): Likewise.
1900 * elf/dl-misc.c (_dl_debug_vdprintf): Likewise.
1901 * elf/readlib.c (process_file): Likewise.
1902 * elf/sprof.c (load_profdata): Likewise.
1903 * sysdeps/ia64/hp-timing.h (HP_TIMING_PRINT): Likewise.
1904 * locale/programs/linereader.c (get_toplvl_escape): Likewise.
1905 * locale/programs/charmap.c (charmap_read): Likewise.
1906 * libio/fileops.c: Likewise.
1907 * libio/fmemopen.c: Likewise.
1908 * stdlib/strtod.c: Likewise.
1909 * elf/dl-load.c: Likewise.
1910 * iconv/iconvconfig.c: Likewise.
1911 * iconv/iconv_prog.c (process_block): Likewise.
1912 * elf/rtld.c (dl_main): Likewise.
1913
1914 * sysdeps/unix/sysv/linux/ia64/Makefile: Define _ASM_IA64_CURRENT_H
1915 macro to calm down the compiler.
1916
1917 * iconv/gconv_cache.c (__gconv_load_cache): Add cast to avoid warning.
1918
1919 * sysdeps/ia64/elf/initfini.c: Don't use newlines embedded in string.
1920
1921 * sysdeps/unix/sysv/linux/i386/sysdep.S: Update comment regarding
1922 placement of errno definition.
1923 * sysdeps/unix/sysv/linux/m68k/sysdep.S: Likewise.
1924 * sysdeps/unix/sysv/linux/mips/sysdep.S: Likewise.
1925 * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Likewise.
1926 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
1927 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
1928
1929 * resolv/nss_dns/dns-host.c (MAXPACKET): Increase minimum value
1930 from 1024 to 65536, to avoid buffer overrun.
1931
1932 2002-08-16 Paul Eggert <eggert@twinsun.com>
1933
1934 * resolv/gethnamaddr.c (MAXPACKET): Increase minimum value
1935 from 1024 to 65536, to avoid buffer overrun.
1936 * resolv/res_query.c (MAXPACKET): Likewise.
1937
1938 2002-08-24 Andreas Jaeger <aj@suse.de>
1939
1940 * sysdeps/unix/sysv/linux/i386/Versions: Remove *xattr syscalls.
1941
1942 2002-08-23 Ulrich Drepper <drepper@redhat.com>
1943
1944 * sysdeps/ieee754/dbl-64/e_pow.c (log1): Define and initialize
1945 two52 locally.
1946 (log2): Likewise.
1947 * sysdeps/ieee754/dbl-64/upow.h: Remove definition of two52.
1948 Patch by Simon Gee <simong@agile.tv>.
1949
1950 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf):
1951 Prefer reading /proc/stat since it is more uniform across
1952 architectures.
1953
1954 * manual/texinfo.tex: Update to latest official version.
1955
1956 * sysvipc/sys/shm.h: Remove SHMLBA definition.
1957 * sysdeps/generic/bits/shm.h: Define SHMLBA here.
1958 * sysdeps/gnu/bits/shm.h: Likewise.
1959 * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
1960 * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
1961 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Likewise.
1962 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
1963 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
1964 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
1965 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
1966 * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Define SHMLBA to 2^20
1967 since this is what the kernel says.
1968
1969 * misc/sys/xattr.h: Include <sys/types.h> instead of <stddef.h>
1970 since ssize_t is needed as well. Replace const with __const.
1971
1972 2002-08-23 Roland McGrath <roland@redhat.com>
1973
1974 * malloc/hooks.c (__malloc_initialize_hook, __free_hook,
1975 __malloc_hook, __realloc_hook, __memalign_hook,
1976 __after_morecore_hook): Variable definitions moved to ...
1977 * malloc/malloc.c: ... here, so as to be before all references.
1978
1979 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Add a dummy
1980 global variable reference in an unused asm parameter, to ensure the
1981 compiler has set up the GOT register before we use it.
1982
1983 * malloc/hooks.c: Move variable definitions ahead of uses.
1984 * libio/fileops.c: Move versioned_symbol defns ahead of _IO_jump_t
1985 initializers that make reference to variables they define.
1986
1987 2002-08-23 Andreas Jaeger <aj@suse.de>
1988
1989 * locale/loadarchive.c: Include <stdlib.h> for prototypes of
1990 alloca, free, qsort.
1991
1992 * dlfcn/bug-dlsym1-lib1.c (foo): Add prototype to avoid warning.
1993
1994 * sysdeps/ieee754/flt-32/e_jnf.c: Remove unused variable.
1995 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
1996
1997 * misc/sys/xattr.h: New file, contributed by Christoph Hellwig
1998 <hch@lst.de>.
1999 * sysdeps/generic/fgetxattr.c: New file.
2000 * sysdeps/generic/flistxattr.c: New file.
2001 * sysdeps/generic/fremovexattr.c: New file.
2002 * sysdeps/generic/fsetxattr.c: New file.
2003 * sysdeps/generic/getxattr.c: New file.
2004 * sysdeps/generic/listxattr.c: New file.
2005 * sysdeps/generic/lgetxattr.c: New file.
2006 * sysdeps/generic/llistxattr.c: New file.
2007 * sysdeps/generic/lremovexattr.c: New file.
2008 * sysdeps/generic/lsetxattr.c: New file.
2009 * sysdeps/generic/removexattr.c: New file.
2010 * sysdeps/generic/setxattr.c: New file.
2011 * misc/Makefile (headers): Add sys/xattr.h.
2012 (routines): Add *xattr calls.
2013 * misc/Versions: Add *xattr calls with version 2.3.
2014 * sysdeps/unix/sysv/linux/m68k/Versions: Remove *xattr syscalls.
2015 * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
2016 * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
2017 * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
2018 * sysdeps/unix/sysv/linux/x86_64/Versions: Likewise.
2019 * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
2020 * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
2021 * sysdeps/unix/sysv/linux/arm/Versions: Likewise.
2022
2023 2002-08-22 Steven Munroe <sjmunroe@us.ibm.com>
2024
2025 * sysdeps/powerpc/elf/libc-start.c
2026 (__cache_line_size): Declare.
2027 (__aux_init_cache): New function.
2028 (__libc_start_main): Change type of `auxvec' parameter to
2029 `ElfW(auxv_t) *'. Correct walking of aux vector. Call
2030 __aux_init_cache.
2031 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
2032 (__cache_line_size): Declare.
2033 (__aux_init_cache): New function.
2034 (DL_PLATFORM_INIT): Define.
2035 * sysdeps/powerpc/memset.S: Define __cache_line_size and use its
2036 value to select the correct stride for dcbz.
2037
2038 2002-08-22 Andreas Jaeger <aj@suse.de>
2039
2040 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Fix arguments of
2041 shmat.
2042
2043 2002-08-22 Roland McGrath <roland@redhat.com>
2044
2045 * locale/loadarchive.c (_nl_load_locale_from_archive): Check max file
2046 position indicated by locrectab against file bounds before rounding to
2047 page size. In mapping loop, always set TO before breaking out of
2048 contiguous range coalescing loop.
2049
2050 * locale/loadarchive.c (_nl_load_locale_from_archive): Use MAP_PRIVATE
2051 (or MAP_COPY if available) instead of MAP_SHARED.
2052
2053 * scripts/firstversions.awk: When encountering a version newer than
2054 the specified earliest version, be sure to emit the specified earliest
2055 version first if any renaming of an older version to that has been.
2056
2057 2002-08-21 Roland McGrath <roland@redhat.com>
2058
2059 * configure.in: Make GCC version check require 3.[2-9]* and no others.
2060 * manual/install.texi (Tools for Compilation): Say 3.2 is required.
2061 (Configuring and compiling): Don't mention older GCC versions any more.
2062 * INSTALL: Regenerated.
2063
2064 * manual/install.texi (Configuring and compiling, Installation,
2065 Running make install, Linux): Linux -> GNU/Linux where appropriate.
2066
2067 * elf/rtld.c (_dl_start_final): Move defn before _dl_start so it can
2068 be inlined. Declare it with always_inline if [DONT_USE_BOOTSTRAP_MAP]
2069 and with noinline otherwise. Remove hack alloca use to prevent
2070 inlining, we can ask for it explicitly nowadays.
2071
2072 * dlfcn/bug-dlsym1.c: New file.
2073 * dlfcn/bug-dlsym1-lib1.c, dlfcn/bug-dlsym1-lib2.c: New files.
2074 * dlfcn/Makefile (distribute): Add them.
2075 (tests): Add bug-dlsym1 here.
2076 (modules-names): Add bug-dlsym1-lib1 and bug-dlsym1-lib2 here.
2077 ($(objpfx)bug-dlsym1, $(objpfx)bug-dlsym1.out): New targets.
2078 ($(objpfx)bug-dlsym1-lib1.so, $(objpfx)bug-dlsym1-lib2.so): Likewise.
2079
2080 2002-08-21 Ulrich Drepper <drepper@redhat.com>
2081
2082 * elf/rtld.c (start_time): New global variable. Moved from _dl_start.
2083 (DONT_USE_BOOTSTRAP_MAP): Define if we can use non-exported symbols
2084 before relocation.
2085 (_dl_start): Don't use local bootstrap_map variable if
2086 DONT_USE_BOOTSTRAP_MAP is defined. Use GL(dl_rtld_map). Don't
2087 pass bootstrap_map to _dl_start_final in this case either. Don't
2088 pass start_time to _dl_start_final ever.
2089 (_dl_start_final): Don't copy bootstrap_map if DONT_USE_BOOTSTRAP_MAP.
2090
2091 * elf/dl-deps.c (_dl_map_object_deps): Revert patch from 2002-05-28.
2092 This cripples the scope lists necessary to search for symbols in
2093 dependencies which are not in the global scope.
2094
2095 * include/setjmp.h (__libc_longjmp): Add declaration.
2096
2097 2002-08-21 Andreas Jaeger <aj@suse.de>
2098
2099 * sysdeps/x86_64/_mcount.S: Fix assembler.
2100
2101 * sysdeps/unix/sysv/linux/x86_64/Makefile: Generate bits/syscall.h
2102 with biarch support.
2103
2104 2002-08-21 Andreas Jaeger <aj@suse.de>
2105
2106 * sysdeps/x86_64/sysdep.h (CALL_MCOUNT): Fix it.
2107
2108 * sysdeps/x86_64/Makefile (sysdep_routines): Add _mcount.
2109
2110 * sysdeps/x86_64/machine-gmon.h: New file.
2111 * sysdeps/x86_64/_mcount.S: New file.
2112
2113 2002-08-20 Ulrich Drepper <drepper@redhat.com>
2114
2115 * elf/rtld.c (_dl_start): Pass zero to TLS_INIT_TP. Set
2116 bootstrap_map.l_tls_tp_initialized to 1 if TLS_INIT_TP was called.
2117 (_dl_start_final): Copy l_tls_tp_initialized to GL(dl_rtld_map).
2118 (dl_main): If HAVE___THREAD is not defined pass l_tls_tp_initialized
2119 to TL_INIT_TP. Otherwise pass 1.
2120 * include/link.h (struct link_map): Add l_tls_tp_initialized.
2121 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Pass 0 to TL_INIT_TP.
2122
2123 2002-08-15 Jakub Jelinek <jakub@redhat.com>
2124
2125 * locale/programs/localedef.c (add_to_readlist): Error about
2126 circular dependencies only if the locale in question hasn't
2127 been finished.
2128 * locale/programs/linereader.c (get_string): Pass LC_CTYPE not
2129 CTYPE_LOCALE to load_locale.
2130 * locale/programs/locfile.c (locfile_read): Don't include
2131 unneeded but available locales in locale_mask.
2132
2133 * locale/programs/locarchive.c (enlarge_archive): If quiet, don't
2134 print any messages about enlarging archive.
2135
2136 2002-08-20 Brian Youmans <3diff@gnu.org>
2137
2138 * manual/contrib.texi: Removed licenses, added acknowledgements
2139 for contributions by Intel, IBM, Craig Metz.
2140 * LICENSES: New file, contains the text of all non-FSF licenses in the
2141 distribution that require putting the notice in the accompanying
2142 documentation.
2143 * README.template, README: Mention LICENSES.
2144
2145 * sysdeps/mach/hurd/net/if_ppp.h: Replaced CMU license with a
2146 new one modelled on the modern BSD license, per recent letter
2147 of permission from CMU.
2148 * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
2149
2150 * sysdeps/ieee754/dbl-64/MathLib.h: Changed the copyright holder
2151 from IBM to FSF, per the recent Software Letter. Changed the
2152 distribution terms from GPL to LGPL.
2153
2154 * sysdeps/ieee754/dbl-64/asincos.tbl: Added FSF copyright and
2155 copying permission notice (Lesser GPL), per recent IBM Software Letter.
2156 * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
2157 * sysdeps/ieee754/dbl-64/root.tbl: Likewise.
2158 * sysdeps/ieee754/dbl-64/sincos.tbl: Likewise.
2159 * sysdeps/ieee754/dbl-64/uatan.tbl: Likewise.
2160 * sysdeps/ieee754/dbl-64/uexp.tbl: Likewise.
2161 * sysdeps/ieee754/dbl-64/ulog.tbl: Likewise.
2162 * sysdeps/ieee754/dbl-64/upow.tbl: Likewise.
2163 * sysdeps/ieee754/dbl-64/utan.tbl: Likewise.
2164
2165 * sysdeps/ieee754/dbl-64/atnat.h: Changed the copyright holder
2166 from IBM to FSF, per the recent Software Letter. Corrected the
2167 text of the copying permission notice to say Lesser GPL instead
2168 of GPL in warranty disclaimer paragraph.
2169 * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
2170 * sysdeps/ieee754/dbl-64/branred.h: Likewise.
2171 * sysdeps/ieee754/dbl-64/dla.h: Likewise.
2172 * sysdeps/ieee754/dbl-64/doasin.h: Likewise.
2173 * sysdeps/ieee754/dbl-64/dosincos.h: Likewise.
2174 * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
2175 * sysdeps/ieee754/dbl-64/mpa2.h: Likewise.
2176 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
2177 * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
2178 * sysdeps/ieee754/dbl-64/mplog.h: Likewise.
2179 * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
2180 * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
2181 * sysdeps/ieee754/dbl-64/sincos32.h: Likewise.
2182 * sysdeps/ieee754/dbl-64/uasncs.h: Likewise.
2183 * sysdeps/ieee754/dbl-64/uexp.h: Likewise.
2184 * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
2185 * sysdeps/ieee754/dbl-64/upow.h: Likewise.
2186 * sysdeps/ieee754/dbl-64/urem.h: Likewise.
2187 * sysdeps/ieee754/dbl-64/uroot.h: Likewise.
2188 * sysdeps/ieee754/dbl-64/usncs.h: Likewise.
2189 * sysdeps/ieee754/dbl-64/utan.h: Likewise.
2190
2191 * sysdeps/ieee754/dbl-64/branred.c: Corrected the text of the copying
2192 permission notice to say Lesser GPL instead of GPL in warranty
2193 disclaimer paragraph.
2194 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
2195 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
2196 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
2197 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
2198 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
2199 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
2200 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
2201 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
2202 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
2203 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
2204 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
2205 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
2206 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
2207 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
2208 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
2209 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
2210 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
2211 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
2212 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
2213 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
2214 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
2215 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
2216 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
2217
2218 2002-08-20 Roland McGrath <roland@redhat.com>
2219
2220 Fix ABI compatibility with libc compiled with old tools on powerpc.
2221 Changes contributed by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2222 and Jack Howarth <howarth@bromo.med.uc.edu>.
2223 * sysdeps/powerpc/Makefile [$(have-protected) = yes]
2224 (CPPFLAGS-divdi3.c, CPPFLAGS-libgcc-compat.S): New variables,
2225 pass -DHAVE_DOT_HIDDEN for these files.
2226 * sysdeps/powerpc/Versions (libc: GLIBC_2.0): Added __floatdidf,
2227 __floatdisf.
2228 * sysdeps/powerpc/divdi3.c: New file.
2229 * sysdeps/powerpc/libgcc-compat.S: New file, replacement for ...
2230 * sysdeps/powerpc/libgcc-compat.c: ... this, file removed.
2231
2232 2002-08-20 Jakub Jelinek <jakub@redhat.com>
2233
2234 * locale/loadarchive.c (_nl_load_locale_from_archive): Handle
2235 partially overlapping mappings. Remove unneeded (char *) casts.
2236 Never allow duplication of ranges in mapped areas.
2237
2238 2002-08-20 Roland McGrath <roland@redhat.com>
2239
2240 * elf/Makefile ($(objpfx)ld.so): Separate commands in rule so errors
2241 can be detected by make. Reported by H.J. Lu <hjl@gnu.org>.
2242
2243 2002-08-20 Ulrich Drepper <drepper@redhat.com>
2244
2245 * include/unistd.h: Don't hide _exit.
2246
2247 * elf/rtld.c (_dl_start): Pass extra argument 1 to TLS_INIT_TP.
2248 (dl_main): Pass extra argument 0 to TLS_INIT_TP.
2249 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Pass extra
2250 argument 1 to TLS_INIT_TP.
2251 * sysdeps/generic/tls.h (TLS_INIT_TP): Describe new parameter.
2252
2253 * sysdeps/generic/dl-tls.c (allocate_dtv): Optimize a bit.
2254
2255 * elf/Versions [ld] (GLIBC_PRIVATE): Add _dl_get_tls_static_info.
2256 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage): Move dtv
2257 memory allocation to...
2258 (allocate_dtv): ...here. New function.
2259 (_dl_allocate_tls): Change to take parameter. If parameter is non-NULL
2260 call allocate_dtv instead of _dl_allocate_tls_storage.
2261 (_dl_deallocate_tls): New parameter. Deallocate TCB only if true.
2262 (_dl_get_tls_static_info): New function.
2263 * sysdeps/generic/ldsodefs.h: Adjust prototypes of _dl_allocate_tls
2264 and _dl_deallocate_tls. Add prototype for _dl_get_tls_static_info.
2265
2266 2002-08-19 Ulrich Drepper <drepper@redhat.com>
2267
2268 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Return
2269 immediately if result == NULL.
2270
2271 2002-08-16 Jakub Jelinek <jakub@redhat.com>
2272
2273 * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
2274
2275 2002-08-18 Roland McGrath <roland@frob.com>
2276
2277 * sysdeps/mach/hurd/mkdir.c (__mkdir): Use __directory_name_split
2278 instead of __file_name_split.
2279 * sysdeps/mach/hurd/unlink.c (__unlink): Likewise.
2280
2281 * sysdeps/mach/hurd/dl-sysdep.c
2282 [HP_TIMING_AVAIL] (_dl_cpuclock_offset): New variable.
2283 [HP_TIMING_AVAIL] (_dl_sysdep_start): Set it with HP_TIMING_NOW.
2284
2285 2002-08-16 Jakub Jelinek <jakub@redhat.com>
2286
2287 * locale/loadarchive.c (_nl_load_locale_from_archive): Braino fix
2288 in change before last: MAX -> MIN.
2289
2290 2002-08-15 Roland McGrath <roland@redhat.com>
2291
2292 * libio/fileops.c (_IO_file_seekoff_mmap): Leave read pointers at EOF
2293 if seek would go past it.
2294 (mmap_remap_check): If file position is at or past EOF after check,
2295 leave read pointers at EOF and don't seek.
2296
2297 * libio/tst-mmap-offend.c: New file.
2298 * libio/Makefile (tests): Add it.
2299
2300 * locale/loadarchive.c (_nl_load_locale_from_archive): Store strdup of
2301 the name as passed, rather than the name in the archive dictionary.
2302
2303 2002-08-15 Ulrich Drepper <drepper@redhat.com>
2304
2305 * csu/Makefile: Define elide-routines.os not static-only-routines.
2306
2307 * include/sched.h (__clone): Add varargs at the end.
2308
2309 * elf/rtld.c (_dl_start): Allow TLS_INIT_TP to fail, and stop in that
2310 case.
2311 (TLS_INIT_HELPER): If defined, use it.
2312 * sysdeps/generic/libc-tls.c (TLS_INIT_HELPER): Likewise.
2313
2314 2002-08-15 Roland McGrath <roland@redhat.com>
2315
2316 * elf/dl-load.c (lose): Remove [!SHARED] conditional from null check
2317 on L->l_prev; it can happen under rtld --verify too.
2318
2319 * locale/loadarchive.c (_nl_load_locale_from_archive): Don't read the
2320 header separately, just map an initial window of 2MB from the file
2321 and remap if that is not large enough to cover the whole header.
2322
2323 2002-08-15 Andreas Jaeger <aj@suse.de>
2324
2325 * sysdeps/unix/sysv/linux/m68k/Versions: Add *xattr syscalls with
2326 version 2.3.
2327 * sysdeps/unix/sysv/linux/arm/Versions: Likewise.
2328 * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
2329 * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
2330 * sysdeps/unix/sysv/linux/x86_64/Versions: Likewise.
2331 * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
2332 * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
2333 * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
2334 * sysdeps/unix/sysv/linux/powerpc/Versions: Likewise.
2335 * sysdeps/unix/sysv/linux/mips/Versions: Likewise.
2336 Patch by Andreas Gruenbacher <agruen@suse.de>.
2337
2338 * sysdeps/unix/sysv/linux/syscalls.list: Add *xattr syscalls.
2339
2340 2002-08-14 Roland McGrath <roland@redhat.com>
2341
2342 * locale/locarchive.h (struct locale_category_data): Give this name to
2343 the type of locale_data_t's elements.
2344 * locale/programs/locarchive.c (cmpcategorysize): New static function.
2345 (add_locale): Use that to sort the categories by size and put all
2346 those that fit into two pages into the LC_ALL block, instead of
2347 hard-coding it to do everything but LC_CTYPE and LC_COLLATE.
2348 (show_archive_content): Detect categories inside LC_ALL block
2349 directly, instead of hard-coding.
2350 (oldlocrecentcmp): Compare just on file locations used.
2351
2352 2002-08-14 Jakub Jelinek <jakub@redhat.com>
2353
2354 * locale/programs/locarchive.c (struct oldlocrecent): New type.
2355 (oldlocrecentcmp): New function.
2356 (enlarge_archive): Re-add locales in the order they were added
2357 to the archive.
2358 (add_locale): Put all the small locale files together, if the small
2359 locale file block would occupy less pages if page size aligned, align
2360 it.
2361 (show_archive_content): Adjust for locale archives optimized for speed.
2362
2363 2002-08-14 Roland McGrath <roland@frob.com>
2364
2365 * configure.in: Use "MISSING" as not-found value for MIG.
2366 * sysdeps/mach/configure.in: Fatal if mig not found.
2367 * configure, sysdeps/mach/configure: Regenerated.
2368
2369 2002-08-13 Jakub Jelinek <jakub@redhat.com>
2370
2371 * locale/loadarchive.c (archfname): Add missing slash.
2372
2373 * sysdeps/generic/strtold.c (__strtold_internal): Add libc_hidden_def.
2374 * wcsmbs/wcstold.c (__wcstold_internal): Add libc_hidden_def.
2375
2376 2002-08-12 Roland McGrath <roland@redhat.com>
2377
2378 * include/sys/wait.h (__waitpid): Add libc_hidden_proto.
2379 * sysdeps/unix/sysv/sco3.2.4/waitpid.S: Add libc_hidden_def.
2380 * sysdeps/unix/sysv/sysv4/waitpid.c: Add libc_hidden_weak.
2381 * sysdeps/unix/sysv/linux/waitpid.c: Likewise.
2382 * sysdeps/unix/sysv/aix/waitpid.c: Likewise.
2383 * sysdeps/unix/bsd/bsd4.4/waitpid.c: Likewise.
2384 * sysdeps/generic/waitpid.c: Likewise.
2385
2386 * include/net/if.h: New file. Use libc_hidden_proto
2387 for if_nametoindex and if_indextoname.
2388 * sysdeps/generic/if_index.c: Add libc_hidden_def.
2389 * sysdeps/mach/hurd/if_index.c: Likewise.
2390 * sysdeps/unix/sysv/linux/if_index.c: Likewise.
2391
2392 * include/grp.h (setgroups): Add libc_hidden_proto.
2393 * sysdeps/generic/setgroups.c: Add libc_hidden_def.
2394 * sysdeps/mach/hurd/setgroups.c: Likewise.
2395 * sysdeps/unix/sysv/irix4/setgroups.c: Likewise.
2396 * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
2397
2398 2002-08-13 Jakub Jelinek <jakub@redhat.com>
2399
2400 * include/unistd.h (seteuid, setegid): Add libc_hidden_proto.
2401 * sysdeps/generic/seteuid.c (seteuid): Add libc_hidden_def.
2402 * sysdeps/generic/setegid.c (setegid): Likewise.
2403 * sysdeps/mach/hurd/seteuid.c (seteuid): Likewise.
2404 * sysdeps/mach/hurd/setegid.c (setegid): Likewise.
2405 * sysdeps/unix/bsd/seteuid.c (seteuid): Likewise.
2406 * sysdeps/unix/bsd/setegid.c (setegid): Likewise.
2407 * sysdeps/unix/sysv/aix/seteuid.c (seteuid): Likewise.
2408 * sysdeps/unix/sysv/aix/setegid.c (setegid): Likewise.
2409 * sysdeps/unix/sysv/linux/i386/setegid.c (setegid): Likewise.
2410 * sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c (seteuid): Likewise.
2411 * sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c (setegid): Likewise.
2412 * sysdeps/unix/sysv/linux/seteuid.c (seteuid): Likewise.
2413 * sysdeps/unix/sysv/linux/setegid.c (setegid): Likewise.
2414 * sysdeps/unix/sysv/linux/i386/seteuid.c (seteuid): Likewise.
2415 Remove fallback if __ASSUME_SETRESUID_SYSCALL.
2416
2417 * include/sys/stat.h (__fxstat_internal, __fxstat64_internal,
2418 __lxstat_internal, __lxstat64_internal): Remove.
2419 (__fxstat, __fxstat64, __lxstat, __lxstat64, __xstat, __xstat64):
2420 Add hidden_proto.
2421 * sysdeps/generic/fxstat.c (__fxstat): Add hidden_def.
2422 Remove INTDEF where present, remove #undef at the beginning.
2423 * sysdeps/generic/fxstat64.c (__fxstat64): Likewise.
2424 * sysdeps/generic/lxstat.c (__lxstat): Likewise.
2425 * sysdeps/generic/lxstat64.c (__lxstat64): Likewise.
2426 * sysdeps/generic/xstat.c (__xstat): Likewise.
2427 * sysdeps/generic/xstat64.c (__xstat64): Likewise.
2428 * sysdeps/mach/hurd/dl-sysdep.c (__xstat64, __fxstat64): Likewise.
2429 * sysdeps/mach/hurd/fxstat.c (__fxstat): Likewise.
2430 * sysdeps/mach/hurd/fxstat64.c (__fxstat64): Likewise.
2431 * sysdeps/mach/hurd/lxstat.c (__lxstat): Likewise.
2432 * sysdeps/mach/hurd/lxstat64.c (__lxstat64): Likewise.
2433 * sysdeps/mach/hurd/xstat.c (__xstat): Likewise.
2434 * sysdeps/mach/hurd/xstat64.c (__xstat64): Likewise.
2435 * sysdeps/unix/fxstat.c (__fxstat): Likewise.
2436 * sysdeps/unix/common/lxstat.c (__lxstat): Likewise.
2437 * sysdeps/unix/sysv/aix/fxstat.c (__fxstat): Likewise.
2438 * sysdeps/unix/sysv/aix/fxstat64.c (__fxstat64): Likewise.
2439 * sysdeps/unix/sysv/aix/lxstat.c (__lxstat): Likewise.
2440 * sysdeps/unix/sysv/aix/lxstat64.c (__lxstat64): Likewise.
2441 * sysdeps/unix/sysv/aix/xstat.c (__xstat): Likewise.
2442 * sysdeps/unix/sysv/aix/xstat64.c (__xstat64): Likewise.
2443 * sysdeps/unix/sysv/linux/ia64/fxstat.c (__fxstat): Likewise.
2444 * sysdeps/unix/sysv/linux/ia64/lxstat.c (__lxstat): Likewise.
2445 * sysdeps/unix/sysv/linux/ia64/xstat.c (__xstat): Likewise.
2446 * sysdeps/unix/sysv/linux/s390/s390-64/fxstat.c (__fxstat): Likewise.
2447 * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c (__lxstat): Likewise.
2448 * sysdeps/unix/sysv/linux/s390/s390-64/xstat.c (__xstat): Likewise.
2449 * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
2450 * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
2451 * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
2452 * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
2453 * sysdeps/unix/sysv/linux/xstat64.c (__xstat64): Likewise.
2454 * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
2455 * sysdeps/unix/sysv/linux/fxstat64.c (__fxstat64): Likewise.
2456 * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
2457 * sysdeps/unix/sysv/linux/lxstat64.c (__lxstat64): Likewise.
2458 * sysdeps/unix/xstat.c (__xstat): Likewise.
2459
2460 * include/sys/statvfs.h (statvfs, fstatvfs): Add libc_hidden_proto.
2461 * sysdeps/generic/statvfs.c (statvfs): Add libc_hidden_def.
2462 * sysdeps/generic/fstatvfs.c (fstatvfs): Likewise.
2463 * sysdeps/mach/hurd/statvfs.c (statvfs): Likewise.
2464 * sysdeps/mach/hurd/fstatvfs.c (fstatvfs): Likewise.
2465 * sysdeps/unix/sysv/linux/statvfs.c (statvfs): Likewise.
2466 * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs): Likewise.
2467
2468 * include/unistd.h (tcgetpgrp): Add libc_hidden_proto.
2469 * include/termios.h (tcsetattr, cfsetispeed, cfsetospeed): Likewise.
2470 * sysdeps/generic/tcgetpgrp.c (tcgetpgrp): Add libc_hidden_def.
2471 * sysdeps/generic/tcsetattr.c (tcsetattr): Likewise.
2472 * sysdeps/generic/speed.c (cfsetispeed, cfsetospeed): Likewise.
2473 * sysdeps/unix/bsd/bsd4.4/tcsetattr.c (tcgetpgrp): Likewise.
2474 * sysdeps/unix/bsd/sun/sunos4/tcsetattr.c (tcsetattr): Likewise.
2475 * sysdeps/unix/bsd/sun/sunos4/speed.c (cfsetispeed, cfsetospeed):
2476 Likewise.
2477 * sysdeps/unix/bsd/tcgetpgrp.c (tcgetpgrp): Likewise.
2478 * sysdeps/unix/bsd/tcsetattr.c (tcsetattr): Likewise.
2479 * sysdeps/unix/sysv/aix/tcsetattr.c (tcsetattr): Likewise.
2480 * sysdeps/unix/sysv/aix/speed.c (cfsetispeed, cfsetospeed): Likewise.
2481 * sysdeps/unix/sysv/linux/tcsetattr.c (tcsetattr): Likewise.
2482 * sysdeps/unix/sysv/linux/speed.c (cfsetispeed, cfsetospeed): Likewise.
2483 * sysdeps/unix/sysv/tcgetpgrp.c (tcgetpgrp): Likewise.
2484 * sysdeps/unix/sysv/tcsetattr.c (tcsetattr): Likewise.
2485
2486 * include/string.h (strcoll): Add libc_hidden_proto.
2487 * string/strcoll.c (strcoll): Add libc_hidden_def.
2488
2489 * misc/err.c (vwarn): Fix pasto in libc_hidden_def.
2490
2491 2002-08-11 Philip Blundell <philb@gnu.org>
2492
2493 * sysdeps/arm/Makefile: New file.
2494
2495 2002-08-08 Jakub Jelinek <jakub@redhat.com>
2496
2497 * posix/regcomp.c (parse_reg_exp): If '|' is immediately followed
2498 by another '|', end of regex or enclosing ')', clear branch.
2499 * posix/bug-regex9.c: New test.
2500 * posix/Makefile (tests): Add bug-regex9.
2501
2502 2002-08-12 Roland McGrath <roland@redhat.com>
2503
2504 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Fix inner loop
2505 start count condition, use TOTAL instead of variable that was never
2506 set. Fix outer loop termination condition to TOTAL >= after update.
2507
2508 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Initialize
2509 dl_tls_static_align and dl_tls_static_nelem.
2510
2511 2002-08-11 Roland McGrath <roland@redhat.com>
2512
2513 * elf/tst-tlsmod4.c (in_dso): Insert a random library call before use
2514 of the TLS macros, otherwise the compiler might not have initialized
2515 the PIC register yet when we use the PLT via asm.
2516 * elf/tst-tlsmod3.c (in_dso2): Likewise.
2517 * elf/tst-tlsmod2.c (in_dso): Likewise.
2518
2519 * sunrpc/svc_authux.c (_svcauth_unix): Remove spurious printf (ugh!).
2520
2521 * sysdeps/i386/bits/byteswap.h (__bswap_16, __bswap_32, __bswap_64):
2522 Evaluate argument exactly once. Remove __volatile__ from asm's.
2523
2524 * include/unistd.h: Use libc_hidden_proto for getdomainname
2525 and getlogin_r.
2526 * sysdeps/generic/getdomain.c: Add libc_hidden_def.
2527 * sysdeps/mach/hurd/getdomain.c: Likewise.
2528 * sysdeps/unix/getlogin_r.c: Likewise.
2529 * sysdeps/mach/hurd/getlogin_r.c: Likewise.
2530 * sysdeps/generic/getlogin_r.c: Likewise.
2531
2532 * include/rpc/auth_des.h: Use libc_hidden_proto for rtime.
2533 * sunrpc/rtime.c: Add libc_hidden_def.
2534
2535 * include/string.h: Use libc_hidden_proto for basename.
2536 * string/basename.c [_LIBC]: Add libc_hidden_def.
2537
2538 * sysdeps/unix/sysv/linux/opensock.c (__opensock): socket -> __socket.
2539
2540 * locale/loadarchive.c: munmap -> __munmap throughout.
2541
2542 * include/netdb.h: Use libc_hidden_proto for gai_strerror.
2543 * sysdeps/posix/gai_strerror.c: Add libc_hidden_def.
2544 * sysdeps/generic/gai_strerror.c: Likewise.
2545
2546 * include/sys/errno.h: New file.
2547
2548 * include/signal.h: No libc_hidden_proto for raise,
2549 __libc_current_sigrtmin, __libc_current_sigrtmax.
2550 These need to be overridden by linuxthreads.
2551 * sysdeps/posix/raise.c: Reverted.
2552 * sysdeps/generic/raise.c: Reverted.
2553 * signal/allocrtsig.c: Reverted.
2554
2555 * locale/loadarchive.c (LOCALEDIR): Remove debugging defn. Oops.
2556
2557 2002-08-10 Roland McGrath <roland@redhat.com>
2558
2559 * locale/loadarchive.c (_nl_archive_subfreeres): New function.
2560 * locale/localeinfo.h: Declare it.
2561 * locale/setlocale.c (free_mem): Don't call _nl_unload_locale on the
2562 current locale if it's not in the file list.
2563 Call _nl_archive_subfreeres.
2564
2565 2002-08-10 Andreas Jaeger <aj@suse.de>
2566
2567 * sysdeps/i386/strchr.S: Add comment.
2568
2569 2002-08-10 Roland McGrath <roland@redhat.com>
2570
2571 * include/wchar.h (putwc): Use libc_hidden_proto.
2572 * include/stdio.h (dprintf, fprintf, vfprintf, sprintf,
2573 sscanf, fwrite, perror, remove, rewind, open_memstream): Likewise.
2574 * stdio-common/dprintf.c: Add libc_hidden_def.
2575 * stdio-common/fprintf.c: Likewise.
2576 * stdio-common/sprintf.c: Likewise.
2577 * stdio-common/sscanf.c: Likewise.
2578 * libio/iofwrite.c: Likewise.
2579 * libio/memstream.c: Likewise.
2580 * libio/putwc.c: Likewise.
2581 * stdio-common/perror.c: Likewise.
2582 * sysdeps/posix/remove.c: Likewise.
2583 * sysdeps/generic/remove.c: Likewise.
2584 * libio/rewind.c: Likewise. Use <stdio.h> instead of "stdio.h".
2585 * stdio-common/vfprintf.c: Add libc_hidden_def. Include <stdio.h>.
2586
2587 2002-08-09 Jakub Jelinek <jakub@redhat.com>
2588
2589 * include/wctype.h (iswalpha, iswdigit, iswlower, iswspace, iswxdigit,
2590 towlower, towupper): Add prototypes here too. Add libc_hidden_proto.
2591 * wctype/wcfuncs.c (iswalpha, iswdigit, iswlower, iswspace, iswxdigit,
2592 towlower, towupper): Add libc_hidden_weak.
2593
2594 * include/bits/dlfcn.h: New file.
2595 * elf/dl-profstub.c (_dl_mcount_wrapper_check): Add libc_hidden_def.
2596
2597 * include/grp.h (_nss_files_parse_grent): Add libc_hidden_proto.
2598 * include/netinet/ether.h (_nss_files_parse_etherent): Likewise.
2599 * include/rpc/netdb.h (_nss_files_parse_rpcent): Likewise.
2600 * include/pwd.h (_nss_files_parse_pwent): Likewise.
2601 * include/shadow.h (_nss_files_parse_spent): Likewise.
2602 * include/netdb.h (_nss_files_parse_protoent,
2603 _nss_files_parse_servent, _nss_files_parse_netent): Likewise.
2604 * nss/nss_files/files-parse.c (nss_files_parse_hidden_def): Define.
2605 (LINE_PARSER): Use it.
2606 * nss/nsswitch.h (__nss_hostname_digits_dots): Add libc_hidden_proto.
2607 * nss/digits_dots.c (__nss_hostname_digits_dots): Add libc_hidden_def.
2608
2609 * libio/oldiopopen.c: Move #if SHLIB_COMPAT after _IO_HAVE_SYS_WAIT
2610 #endif.
2611
2612 * manual/debug.texi (%MENU%): Remove trailing dot.
2613 Reported by <hayastan132@hotmail.com>.
2614
2615 * sysdeps/unix/sysv/linux/ia64/syscalls.list (llseek): Add lseek
2616 aliases.
2617 (lseek): Dummy.
2618 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (llseek, lseek):
2619 Likewise.
2620
2621 2002-08-09 Roland McGrath <roland@redhat.com>
2622
2623 * locale/loadarchive.c (_nl_load_locale_from_archive): Parse locale
2624 name to find codeset name (if any) and normalize it. If the
2625 normalized name differs, look up only that in the archive.
2626 * locale/programs/locarchive.c (add_locale_to_archive): If the name
2627 contains a codeset, normalize the codeset store only the normalized
2628 name in the archive. If not, add an alias containing the locale's
2629 normalized codeset name. Apply codeset name normalization when
2630 matching entries in the alias file.
2631
2632 * locale/programs/locarchive.c (delete_locales_from_archive): Don't
2633 decrement HEAD->namehash_used here.
2634 (add_locale): Only need to insert name string when name_offset != 0.
2635
2636 * locale/programs/localedef.c (options): Add -A/--alias-file.
2637 (alias_file): New variable.
2638 (parse_opt): Grok -A, set that.
2639 * locale/programs/localedef.h: Declare it.
2640
2641 * locale/locarchive.h (struct locrecent): Add `refs' member.
2642 * locale/programs/locarchive.c (insert_name): New function, broken out
2643 of ...
2644 (add_locale_to_archive): ... here. Call that.
2645 (add_alias): New function.
2646 (add_locale): New static function, add_locale_to_archive renamed.
2647 (add_locale_to_archive): Call that and use add_alias to add an alias
2648 for the name with codeset if the given name lacks it.
2649 (enlarge_archive): Call add_locale instead of add_locale_to_archive.
2650
2651 * locale/Makefile (routines): Add loadarchive.
2652 * locale/loadarchive.c: New file, started from code by Ulrich Drepper.
2653 (_nl_load_locale_from_archive): New function.
2654 * locale/localeinfo.h: Declare it.
2655 * locale/findlocale.c (_nl_find_locale): If using default locale path,
2656 try _nl_load_locale_from_archive first.
2657
2658 * locale/loadlocale.c (_nl_intern_locale_data): New function,
2659 broken out of _nl_load_locale.
2660 (_nl_load_locale): Call that.
2661 * locale/localeinfo.h: Declare it.
2662 (struct locale_data): Replace member `mmaped' with `alloc', an enum.
2663 (struct locale_data): Remove unused member `options'.
2664 * locale/findlocale.c (_nl_remove_locale): Update uses.
2665 * locale/loadlocale.c (_nl_load_locale, _nl_unload_locale): Likewise.
2666 * locale/C-collate.c: Update initializer.
2667 * locale/C-identification.c: Likewise.
2668 * locale/C-measurement.c: Likewise.
2669 * locale/C-telephone.c: Likewise.
2670 * locale/C-address.c: Likewise.
2671 * locale/C-name.c: Likewise.
2672 * locale/C-paper.c: Likewise.
2673 * locale/C-time.c: Likewise.
2674 * locale/C-numeric.c: Likewise.
2675 * locale/C-monetary.c: Likewise.
2676 * locale/C-messages.c : Likewise.
2677 * locale/C-ctype.c: Likewise.
2678
2679 * locale/hashval.h [! LONGBITS]: Include <limits.h> here and
2680 use CHAR_BIT instead of BITSPERBYTE.
2681
2682 * locale/localeinfo.h (_nl_find_locale, _nl_load_locale,
2683 _nl_unload_locale): Add `internal_function attribute_hidden' to decls.
2684 * locale/findlocale.c (_nl_find_locale): Add internal_function to defn.
2685 (_nl_remove_locale): Likewise.
2686 * locale/loadlocale.c (_nl_load_locale, _nl_unload_locale): Likewise.
2687
2688 * locale/findlocale.c (_nl_default_locale_path): New variable.
2689 (_nl_find_locale): If LOCALE_PATH is null, default to that.
2690 * locale/localeinfo.h: Declare it.
2691 * locale/setlocale.c (setlocale): Use _nl_default_locale_path
2692 in place of LOCALEDIR. If no LOCPATH, pass null to _nl_find_locale.
2693 * locale/newlocale.c (__newlocale): Likewise.
2694
2695 * misc/err.c (vwarnx, vwarn): Fix typos in libc_hidden_def uses.
2696 * inet/rexec.c (rexec_af): Add libc_hidden_def.
2697 * sysdeps/generic/morecore.c: Likewise.
2698 * signal/allocrtsig.c (__libc_current_sigrtmin): Likewise.
2699 (__libc_current_sigrtmax): Likewise.
2700
2701 2002-08-08 Roland McGrath <roland@redhat.com>
2702
2703 * locale/loadlocale.c (_nl_load_locale): Don't use MAP_INHERIT.
2704 * catgets/open_catalog.c (__open_catalog): Likewise.
2705
2706 * locale/programs/locarchive.c (INITIAL_NUM_NAMES): Renamed
2707 from typo INITIAL_NUM_NANES.
2708 (create_archive): Update use.
2709
2710 2002-08-08 Ulrich Drepper <drepper@redhat.com>
2711
2712 * sysdeps/unix/sysv/linux/sigwait.c: New file.
2713
2714 2002-08-08 Roland McGrath <roland@frob.com>
2715
2716 * resolv/netdb.h: Don't declare h_errno as a plain global any more.
2717
2718 2002-08-08 Jakub Jelinek <jakub@redhat.com>
2719
2720 * sysdeps/wordsize-64/wcstol_l.c (wcstoll_l): Define to something
2721 else and undefine after including wcstol_l.c.
2722 * sysdeps/wordsize-64/wcstoul_l.c (wcstoull_l): Similarly.
2723
2724 2002-08-08 Ulrich Drepper <drepper@redhat.com>
2725
2726 * gmon/gmon.c (write_gmon): Use O_NOFOLLOW in open calls if available.
2727
2728 2002-08-08 Alexandre Oliva <aoliva@redhat.com>
2729
2730 * configure.in: Make the test for broken_alias_attribute stricter.
2731
2732 2002-05-24 Robert Love <rml@tech9.net>
2733
2734 * posix/Makefile (routines): Add sched_getaffinity and
2735 sched_setaffinity.
2736 * posix/sched.h: Add declarations for sched_getaffinity and
2737 sched_setaffinity.
2738 * sysdeps/generic/sched_getaffinity.c: New file.
2739 * sysdeps/generic/sched_setaffinity.c: New file.
2740 * sysdeps/unix/sysv/linux/syscalls.list: Add sched_getaffinity and
2741 sched_setaffinity.
2742
2743 2002-08-06 Andreas Schwab <schwab@suse.de>
2744
2745 * sysdeps/unix/utime.c: If TIMES is NULL pass it through to utimes.
2746
2747 2002-08-07 Ulrich Drepper <drepper@redhat.com>
2748
2749 * elf/dl-load.c (_dl_map_object_from_fd): Add missing \n in error
2750 message.
2751
2752 * stdlib/isomac.c (get_null_defines): Treat NOT_IN_libc special.
2753 It is known to be defined.
2754
2755 * include/string.h: Define index and rindex only if _ISOMAC is not
2756 defined.
2757
2758 * elf/rtld.c: Include <errno.h>.
2759 * sysdeps/generic/libc-tls.c: Likewise.
2760
2761 2002-08-07 Roland McGrath <roland@redhat.com>
2762
2763 * resolv/res_debug.c (latlon2ul): Add const to argument type, and use
2764 it internally.
2765 (precsize_aton): Likewise.
2766
2767 * inet/getnetgrent_r.c (endnetgrent, __getnetgrent_r): Actually call
2768 the static symbols added in the last change (doofus is me).
2769
2770 * locale/newlocale.c (__newlocale): Use a bit mask instead of a second
2771 loop to notice missing categories in a composite name.
2772
2773 * locale/locale.h (LC_CTYPE_MASK, LC_NUMERIC_MASK, LC_TIME_MASK,
2774 LC_COLLATE_MASK, LC_MONETARY_MASK, LC_MESSAGES_MASK, LC_ALL_MASK,
2775 LC_PAPER_MASK, LC_NAME_MASK, LC_ADDRESS_MASK, LC_TELEPHONE_MASK,
2776 LC_MEASUREMENT_MASK, LC_IDENTIFICATION_MASK, LC_ALL_MASK): New macros.
2777
2778 2002-08-07 Ulrich Drepper <drepper@redhat.com>
2779
2780 * malloc/tst-calloc.c: Add tests for one or both parameters being zero.
2781
2782 2002-08-07 Roland McGrath <roland@redhat.com>
2783
2784 * sysdeps/i386/dl-machine.h (elf_machine_rel): Add to, don't clobber,
2785 unrelocated initial value for DTPOFF32 and TPOFF32 relocs.
2786 Reported by Jakub Jelinek <jakub@redhat.com>.
2787
2788 2002-08-07 Jakub Jelinek <jakub@redhat.com>
2789
2790 * malloc/malloc.c (public_cALLOc): Check ELEM_SIZE != 0 before
2791 division.
2792
2793 2002-08-06 Roland McGrath <roland@redhat.com>
2794
2795 * include/getopt.h: Put private decls inside [_GETOPT_H].
2796 Use libc_hidden_proto for getopt_long, getopt_long_only.
2797 * posix/getopt1.c [_LIBC]: Include <getopt.h> instead of "getopt.h".
2798 Add libc_hidden_def.
2799
2800 * sysdeps/generic/unwind-dw2-fde-glibc.c [_LIBC] (dl_iterate_phdr):
2801 Define as a macro for __dl_iterate_phdr.
2802
2803 * inet/getnetgrent_r.c (internal_setnetgrent): Renamed from __ name,
2804 made static. Add __ name as a strong alias.
2805 (internal_endnetgrent): Likewise.
2806 (internal_getnetgrent_r): Likewise.
2807
2808 * locale/Versions (libc: GLIBC_2.3): Add all the *_l functions
2809 with no __ prefix.
2810 * locale/langinfo.h [__USE_GNU]: Declare nl_langinfo_l.
2811 * ctype/ctype.h [__USE_GNU]: Add declarations and macros for
2812 all *_l functions with no __ prefix.
2813 * wctype/wcfuncs_l.c: Define weak aliases without __ for all fns.
2814 * ctype/ctype_l.c: Likewise.
2815 * locale/nl_langinfo.c: Likewise.
2816 * string/string.h [__USE_GNU]: Add decls for all *_l fns with no __.
2817 * stdlib/stdlib.h [__USE_GNU]: Likewise.
2818 * wcsmbs/wchar.h [__USE_GNU]: Likewise.
2819 * wctype/wctype.h [__USE_GNU]: Likewise.
2820 * string/strcoll_l.c (strcoll_l): Define as weak alias.
2821 * string/strxfrm_l.c (strxfrm_l): Define as weak alias.
2822 * sysdeps/generic/strcasecmp_l.c (strcasecmp_l): Define as weak alias.
2823 * sysdeps/generic/strncase_l.c (strncasecmp_l): Define as weak alias.
2824 * stdlib/strtod_l.c (strtod_l): Define as weak alias.
2825 * stdlib/strtof_l.c (strtof_l): Define as weak alias.
2826 * stdlib/strtold_l.c (strtold_l): Define as weak alias.
2827 * wcsmbs/wcscasecmp_l.c (wcscasecmp_l): Define as weak alias.
2828 (__wcscasecmp_l): Add libc_hidden_def.
2829 * wcsmbs/wcsncase_l.c (wcsncasecmp_l): Define as weak alias.
2830 (__wcsncasecmp_l): Add libc_hidden_def.
2831 * wcsmbs/wcstof_l.c (wcstof_l): Define as weak alias.
2832 * wcsmbs/wcstod_l.c (wcstod_l): Define as weak alias.
2833 * wcsmbs/wcstold_l.c (wcstold_l): Define as weak alias.
2834 * wcsmbs/wcscoll_l.c (wcscoll_l): Define as weak alias.
2835 * wcsmbs/wcsxfrm_l.c (wcsxfrm_l): Define as weak alias.
2836 * sysdeps/generic/wcstol_l.c (wcstol_l): Define as weak alias.
2837 * sysdeps/generic/wcstoll_l.c (wcstoll_l): Define as weak alias.
2838 * sysdeps/generic/wcstoul_l.c (wcstoul_l): Define as weak alias.
2839 * sysdeps/generic/wcstoull_l.c (wcstoull_l): Define as weak alias.
2840 * sysdeps/wordsize-64/wcstol_l.c (wcstoll_l): Define as weak alias.
2841 * sysdeps/wordsize-64/wcstoul_l.c (wcstoull_l): Define as weak alias.
2842 * wctype/wctrans_l.c (wctrans_l) Define as weak alias.
2843 * wctype/towctrans_l.c (towctrans_l) Define as weak alias.
2844 * wctype/wctype_l.c (wctype_l) Define as weak alias.
2845
2846 2002-08-05 Roland McGrath <roland@redhat.com>
2847
2848 * include/rpc/auth.h: Use libc_hidden_proto for getnetname,
2849 netname2user, host2netname, user2netname, key_gendes.
2850 * sunrpc/netname.c: Add libc_hidden_def.
2851 * sunrpc/key_call.c: Likewise.
2852
2853 * include/netdb.h: Use libc_hidden_proto for getaddrinfo, getnameinfo,
2854 freeaddrinfo.
2855 * inet/getnameinfo.c: Add libc_hidden_def.
2856 * sysdeps/generic/getaddrinfo.c: Likewise.
2857 * sysdeps/posix/getaddrinfo.c: Likewise.
2858
2859 * include/wchar.h: Use libc_hidden_proto for wmemchr, wmemset.
2860 * wcsmbs/wmemchr.c: Add libc_hidden_def.
2861 * wcsmbs/wmemset.c: Add libc_hidden_def.
2862
2863 * include/string.h: Move libc_hidden_proto's inside #ifndef _STRING_H.
2864 (index, rindex): Define as macros for strchr, strrchr.
2865
2866 * string/envz.c (envz_strip): index -> strchr
2867
2868 * include/rpc/rpc_msg.h: Use libc_hidden_proto for _seterr_reply.
2869 * sunrpc/rpc_prot.c: Add libc_hidden_def.
2870
2871 * include/wchar.h: Use libc_hidden_proto for mbrtowc.
2872 * wcsmbs/mbrtowc.c: Add libc_hidden_weak.
2873
2874 * include/stdlib.h: Use libc_hidden_proto for wctomb.
2875 * stdlib/wctomb.c: Add libc_hidden_def.
2876
2877 * include/netdb.h: Use libc_hidden_proto for innetgr, rcmd_af,
2878 rexec_af, rresvport_af, ruserok_af, iruserok_af, ruserpass, hstrerror.
2879 * resolv/herror.c: Likewise.
2880 * inet/rcmd.c: Add libc_hidden_def.
2881 * inet/ruserpass.c: Likewise.
2882 * inet/getnetgrent_r.c: Likewise.
2883
2884 * include/rpc/svc.h: Use libc_hidden_proto for svc_register,
2885 svc_unregister, remove *_internal decls. Use libc_hidden_proto
2886 for svcerr_auth, svcerr_noprog, svcerr_progvers.
2887 * sunrpc/svc.c (svc_register, svc_unregister): Change INTDEF to
2888 libc_hidden_def.
2889 (svcerr_auth, svcerr_noprog, svcerr_progvers): Add libc_hidden_def.
2890 * sunrpc/svc_simple.c (registerrpc): Nix INTUSE for svc_register.
2891
2892 * sysdeps/posix/system.c (do_system): New function, guts broken out of
2893 __libc_system.
2894 (__libc_system): Call it, putting just the line == NULL test here.
2895
2896 * include/libc-symbols.h (__hidden_proto): Add extern keywords so
2897 variables work right.
2898
2899 * elf/dl-open.c (dl_open_worker): Use _ macro instead of gettext.
2900 * elf/dl-close.c (_dl_close): Likewise.
2901
2902 * include/netinet/in.h: Use libc_hidden_proto for bindresvport,
2903 in6addr_any, in6addr_loopback. Remove decls for
2904 bindresvport_internal, in6addr_any_internal, in6addr_loopback_internal.
2905 * sunrpc/svc_udp.c (svcudp_bufcreate): Nix INTUSE for bindresvport.
2906 * sunrpc/svc_tcp.c (svctcp_create): Likewise.
2907 * sunrpc/clnt_udp.c (clntudp_bufcreate): Likewise.
2908 * sunrpc/bindrsvprt.c: Change INTDEF to libc_hidden_def.
2909 * inet/in6_addr.c: Change INTVARDEF to libc_hidden_def.
2910 * sysdeps/posix/getaddrinfo.c (gaih_inet): Nix INTUSE for
2911 in6addr_loopback.
2912 * inet/gethstbyad_r.c (PREPROCESS): Nix INTUSE for in6addr_any.
2913
2914 * include/netinet/ether.h: Use libc_hidden_proto for ether_ntoa_r,
2915 ether_aton_r.
2916 * inet/ether_aton_r.c: Add libc_hidden_def.
2917 * inet/ether_ntoa_r.c: Likewise.
2918
2919 * include/rpc/svc.h: Use libc_hidden_proto for xprt_register,
2920 xprt_unregister.
2921 * sunrpc/svc.c: Add libc_hidden_def.
2922 * include/rpc/pmap_clnt.h: Use libc_hidden_proto for pmap_getport,
2923 pmap_set, pmap_unset.
2924 * sunrpc/pmap_clnt.c: Add libc_hidden_def.
2925 * sunrpc/pm_getport.c: Likewise.
2926 * include/rpc/auth_des.h: Use libc_hidden_proto for getpublickey.
2927 * sunrpc/publickey.c: Add libc_hidden_def.
2928
2929 2002-08-05 Ulrich Drepper <drepper@redhat.com>
2930
2931 * elf/rtld.c (_dl_start): Don't use memset. Use same tricks as for
2932 the other memset call in this function.
2933
2934 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Store dtv pointer
2935 at correct index. Clear BSS region now that memalign is used.
2936
2937 2002-08-05 Roland McGrath <roland@redhat.com>
2938
2939 * include/sys/utsname.h: Use libc_hidden_proto for uname, __uname.
2940 * sysdeps/generic/uname.c: Add libc_hidden_def.
2941 * sysdeps/mach/hurd/uname.c: Likewise.
2942
2943 2002-08-05 Jakub Jelinek <jakub@redhat.com>
2944
2945 * include/wchar.h (wcrtomb, wcscmp, wcsftime, wcsspn, wcschr, wcscoll,
2946 wcspbrk): Add libc_hidden_proto.
2947 * time/strftime.c (my_strftime): Add libc_hidden_def.
2948 (strftime): Remove libc_hidden_def.
2949 * wcsmbs/wcschr.c (wcschr): Add libc_hidden_def.
2950 * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
2951 * wcsmbs/wcsspn.c (wcsspn): Likewise.
2952 * wcsmbs/wcscmp.c (wcscmp): Likewise.
2953 * wcsmbs/wcrtomb.c (wcrtomb): Add libc_hidden_weak.
2954 * wcsmbs/wcscoll.c (wcscoll): Likewise.
2955
2956 * include/rpc/rpc.h (__rpc_thread_svc_max_pollfd,
2957 __rpc_thread_svc_pollfd, __rpc_thread_svc_fdset,
2958 __rpc_thread_createerr): Add libc_hidden_proto.
2959 * sunrpc/rpc_thread.c (__rpc_thread_svc_max_pollfd,
2960 __rpc_thread_svc_pollfd, __rpc_thread_svc_fdset,
2961 __rpc_thread_createerr): Add libc_hidden_def.
2962
2963 * include/rpc/clnt.h (clnt_sperrno, clnt_spcreateerror,
2964 clnt_perror, clnt_sperror, _rpc_dtablesize): Add libc_hidden_proto.
2965 * sunrpc/clnt_perr.c (clnt_sperrno, clnt_spcreateerror,
2966 clnt_perror, clnt_sperror): Add libc_hidden_def.
2967 * sunrpc/rpc_dtable.c (_rpc_dtablesize): Likewise.
2968
2969 * include/rpc/des_crypt.h (des_setparity, ecb_crypt, cbc_crypt): Add
2970 libc_hidden_proto.
2971 * sunrpc/des_crypt.c (ecb_crypt, cbc_crypt): Add libc_hidden_proto.
2972 * sunrpc/des_soft.c (des_setparity): Likewise.
2973
2974 * include/rpc/auth.h (key_encryptsession_pk, key_decryptsession_pk):
2975 Add libc_hidden_proto.
2976 * sunrpc/key_call.c (key_encryptsession_pk, key_decryptsession_pk):
2977 Add libc_hidden_def.
2978
2979 2002-08-05 Roland McGrath <roland@redhat.com>
2980
2981 * sysdeps/generic/ldsodefs.h (struct rtld_global): Replace member
2982 `bool _dl_initial_dtv_malloced' with `void *_dl_initial_dtv'.
2983 * elf/rtld.c (dl_main): Set it to the new dtv for the main thread.
2984 * sysdeps/generic/dl-tls.c (__tls_get_addr): When reallocating the
2985 dtv, check if it matches _dl_initial_dtv; if so, malloc and copy the
2986 old data, abandoning the original memory allocated by rtld at startup,
2987 instead of calling realloc normally.
2988
2989 2002-08-05 Ulrich Drepper <drepper@redhat.com>
2990
2991 * po/fr.po: Update from translation team.
2992
2993 2002-08-04 Roland McGrath <roland@redhat.com>
2994
2995 * sysdeps/unix/make-syscalls.sh: If the syscall name field is -
2996 then generate a dummy module under the given name, obeying the
2997 normal rules for the "caller" field.
2998
2999 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Make the phdr loop
3000 actually iterate over the elements. Fix typo p_type -> p_vaddr.
3001
3002 * include/pthread.h: Don't declare __pthread_initialize_minimal as
3003 weak here; we declare it weak or strong in the one place we use it.
3004 * sysdeps/generic/libc-start.c: ... which is here.
3005 Don't make the decl weak if [USE_TLS], since static programs need TLS
3006 setup even when single-threaded.
3007
3008 * stdlib/isomac.c (fmt): Add -DNOT_IN_libc to the compiler command.
3009
3010 * elf/Makefile (test-srcs): Add $(modules-names) to it.
3011 (CFLAGS-vismod2.c, CFLAGS-failobj.c, CFLAGS-constload2.c,
3012 CFLAGS-reldepmod3.c, CFLAGS-reldepmod4.c, CFLAGS-ltglobmod2.c): Remove
3013 all these variables.
3014
3015 2002-08-04 Ulrich Drepper <drepper@redhat.com>
3016
3017 * include/stdio.h: Don't define macro magic to redirect function
3018 calls if _ISOMAC is defined.
3019
3020 * sysdeps/i386/fpu/libm-test-ulps: Add epsilons for inlined
3021 ldouble asin tests.
3022
3023 2002-08-04 Roland McGrath <roland@redhat.com>
3024
3025 * stdlib/lrand48_r.c: Add libc_hidden_def.
3026
3027 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage): Allocate the
3028 TCB with __libc_memalign instead of mmap.
3029 (_dl_deallocate_tls): Free it with free instead of munmap.
3030
3031 * Makerules (cpp-srcs-left): When setting this to run
3032 cppflags-iterator.mk, must append .c to $(tests) and $(xtests)
3033 words. Combine the two loops into one on the concatenated list,
3034 including those as well as $(test-srcs).
3035
3036 * elf/dl-minimal.c (__libc_memalign): Guts of malloc moved here,
3037 since we align here with optimally minimal waste anyway.
3038 (malloc): Just call that.
3039
3040 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Set l_tls_offset to
3041 the right variable.
3042
3043 * elf/dl-load.c (_dl_map_object_from_fd): Use p_vaddr, not p_offset,
3044 to compute memory location for l_tls_initimage.
3045 * elf/rtld.c (_dl_start): Likewise.
3046 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Likewise.
3047
3048 * libio/oldiopopen.c: Move #include's before #if SHLIB_COMPAT,
3049 because the .d file is generated in the non-shared case and
3050 so fails to catch them otherwise.
3051
3052 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage): New function,
3053 split out of _dl_allocate_tls.
3054 (_dl_allocate_tls_init): Likewise.
3055 (_dl_allocate_tls): Call those.
3056 * sysdeps/generic/ldsodefs.h: Declare them with attribute_hidden.
3057 * elf/rtld.c (dl_main): Call them separately instead of calling
3058 _dl_allocate_tls. Delay _dl_allocate_tls_init until after relocation
3059 is finished, so that the initializer data has been relocated before we
3060 copy it into the main thread's TLS block.
3061
3062 * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Fix off-by-one error in
3063 loop conditions, prevented the last used module from being initialized.
3064
3065 2002-08-04 Jakub Jelinek <jakub@redhat.com>
3066
3067 * sysdeps/generic/glob.c (glob, globfree): Only use libc_hidden_def
3068 if glob resp. globfree are not macros.
3069 * sysdeps/gnu/glob64.c (globfree64): Add libc_hidden_def.
3070 * sysdeps/unix/sysv/linux/alpha/glob.c (glob, globfree, globfree64):
3071 Add libc_hidden_ver.
3072 * sysdeps/unix/sysv/linux/i386/glob64.c (globfree64): Add
3073 libc_hidden_def.
3074 * sysdeps/wordsize-64/glob.c (globfree64): Use libc_hidden_ver
3075 instead of libc_hidden_weak.
3076 * sysdeps/wordsize-64/strtol.c (__strtoll_internal): Use
3077 libc_hidden_ver instead of libc_hidden_def.
3078 * sysdeps/wordsize-64/wcstol.c (__wcstoll_internal): Use
3079 libc_hidden_ver instead of libc_hidden_def.
3080 (wcstoll, wcstoq): Remove libc_hidden_weak.
3081 * sysdeps/wordsize-64/strtol_l.c (____strtoll_l_internal): Add
3082 libc_hidden_ver.
3083 * sysdeps/wordsize-64/strtoul.c (__strtoull_internal): Add
3084 libc_hidden_ver.
3085 * sysdeps/wordsize-64/strtoul_l.c (____strtoull_l_internal): Add
3086 libc_hidden_ver.
3087 * sysdeps/wordsize-64/wcstoul.c (__wcstoull_internal): Add
3088 libc_hidden_ver.
3089
3090 2002-08-04 Ulrich Drepper <drepper@redhat.com>
3091
3092 * stdio-common/psignal.c: Declare _sys_siglist_internal. Use USEINT
3093 to access _sys_siglist.
3094 * string/strsignal.c: Likewise.
3095 * sysdeps/generic/siglist.c: Add _sys_siglist_internal alias.
3096 * sysdeps/gnu/siglist.c: Likewise.
3097 * sysdeps/unix/siglist.c: Likewise.
3098 * sysdeps/unix/sysv/linux/arm/siglist.c: Likewise.
3099
3100 * libio/fileops.c: Add missing INTUSEs for _IO_file_jumps.
3101
3102 * libio/wfileops.c: Add missing INTUSE for _IO_file_close.
3103
3104 * intl/dcigettext.c: Define _nl_default_dirname_internal as hidden
3105 alias and use it.
3106 * intl/bindtextdom.c: Use _nl_default_dirname_internal.
3107
3108 * include/netinet/in.h: Add declaration of in6addr_loopback_internal.
3109 * inet/in6_addr.c: Add INTVARDEF for in6addr_loopback.
3110 * sysdeps/posix/getaddrinfo.c: Use INTUSE for in6addr_loopback access.
3111
3112 * include/time.h: Add libc_hidden_proto for __gmtime_r.
3113 * time/gmtime.c (__gmtime_r): Add libc_hidden_def.
3114
3115 * iconv/Versions: Replace __gconv_alias_db, __gconv_modules_db,
3116 and __gconv_cache with __gconv_get_alias_db, __gconv_get_modules_db,
3117 and __gconv_get_cache respectively.
3118 * iconv/gconv_cache.c (gconv_cache): Renamed for __gconv_cache and
3119 defined static. Change all users.
3120 (__gconv_get_cache): New function.
3121 * iconv/gconv_db.c (__gconv_get_modules_db): New function.
3122 (__gconv_get_alias_db): New function.
3123 * iconv/gconv_int.h (__gconv_alias_db): Declare as hidden.
3124 (__conv_modules_db): Likewise.
3125 Add prototypes for __gconv_get_cache, __gconv_get_modules_db,
3126 and __gconv_get_alias_db.
3127 * iconv/iconv_prog.c: Use the new functions instead of accessing the
3128 variables.
3129
3130 * include/stdlib.h: Add prototype and libc_hidden_proto for
3131 __default_morecore.
3132 * sysdeps/generic/morecore.c: Include <stdlib.h>.
3133
3134 * malloc/obstack.c: Remove fputs macro.
3135
3136 * malloc/mtrace.c: Remove fopen macro.
3137
3138 2002-08-04 Jakub Jelinek <jakub@redhat.com>
3139
3140 * manual/debug.texi: Fix spelling to programmatically.
3141 Reported by <hayastan132@hotmail.com>.
3142
3143 2002-08-04 Ulrich Drepper <drepper@redhat.com>
3144
3145 * include/libio.h: Add libc_hidden_proto for __uflow.
3146 * include/stdio.h: Map fopen, fdopen, fclose, fputs, fsetpos, and
3147 fgetpos to _IO_* names.
3148 Add libc_hidden_proto for fileno, fwrite, fseek, fflush_unlocked,
3149 fread_unlocked, fwrite_unlocked, fgets_unlocked, fputs_unlocked.
3150 * include/wchar.h: Add libc_hidden_proto for fputws_unlocked,
3151 putwc_unlocked, vswscanf.
3152 * libio/iolibio.h: Add libc_hidden_proto for _IO_fputs.
3153 * libio/fileno.c: Use <stdio.h> and libc_hidden_def.
3154 * libio/fseek.c: Likewise.
3155 * libio/fmemopen.c: Include "libioP.h". Call _IO_fopencookie and
3156 not fopencookie.
3157 * libio/genops.c (__uflow): Add libc_hidden_def.
3158 * libio/iofflush_u.c (fflush_unlocked): Likewise.
3159 * libio/iofgets_u.c (fgets_unlocked): Likewise.
3160 * libio/iofputs_u.c (fputs_unlocked): Likewise.
3161 * libio/iofputws_u.c (fputws_unlocked): Likewise.
3162 * libio/iofread_u.c (fread_unlocked): Likewise.
3163 * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
3164 * libio/iovswscanf.c (vswscanf): Likewise.
3165 * libio/putwc_u.c (putwc_unlocked): Likewise.
3166 * libio/iofputs.c: Use libc_hidden_def instead of INTDEF.
3167 * malloc/malloc.c: Redirect fwrite calls to _IO_fwrite.
3168 * malloc/mtrace.c: Likewise.
3169
3170 * sunrpc/clnt_perr.c: Remove fputs macro.
3171 * sunrpc/svc_simple.c: Likewise.
3172 * sunrpc/svc_tcp.c: Likewise.
3173 * sunrpc/svc_udp.c: Likewise.
3174 * sunrpc/xdr_rec.c: Likewise.
3175 * sunrpc/xdr_ref.c: Likewise.
3176
3177 * iconv/Makefile: Add CPPFLAGS definitions with -DNOT_in_libc for
3178 iconv_prog, linereader, and charmap-dir.
3179 * locale/Makefile: Likewise for locale and charmap-dir.
3180 * malloc/Makefile: Likewise for memusagestat.
3181 * nscd/Makefile: Likewise for nscd, nscd_conf, and dbg_log.
3182 * sunrpc/Makefile: Likewise for rpc_main.
3183 * sysdeps/unix/sysv/linux/Makefile: Likewise for lddlibc4.
3184 * timezone/Makefile: Likewise for zic.
3185
3186 * stdio-common/perror.c: Avoid multiple calls to fileno_unlocked.
3187
3188 * elf/dl-addr.c (_dl_addr): Add libc_hidden_def.
3189 * elf/dl-close.c (_dl_close): Add libc_hidden_def.
3190 * elf/dl-open.c (_dl_open): Add libc_hidden_def.
3191 * include/dlfcn.h: Add libc_hidden_proto for _dl_addr, _dl_open,
3192 _dl_close.
3193
3194 * include/libio.h: Add libc_hidden_proto for __underflow, __wuflow,
3195 __wunderflow.
3196 * libio/genops.c (__underflow): Add libc_hidden_def.
3197 * libio/wgenops.c (__wuflow): Likewise.
3198 (__wunderflow): Likewise.
3199
3200 * include/obstack.h: Add libc_hidden_proto for _obstack_newchunk.
3201 * malloc/obstack.c (_obstack_newchunk): Add libc_hidden_def.
3202
3203 * include/stdio.h: Add libc_hidden_proto for __vfscanf.
3204 * stdio-common/vfscanf.c (__vfscanf): Add libc_hidden_def.
3205
3206 * include/string.h: Add libc_hidden_proto for __strverscmp.
3207 * string/strverscmp.c (__strverscmp): Add libc_hidden_def.
3208
3209 * include/unistd.h: Add libc_hidden_proto for __sysconf.
3210 * sysdeps/generic/sysconf.c (__sysconf): Add libc_hidden_def.
3211 * sysdeps/posix/sysconf.c: Likewise.
3212 * sysdeps/unix/sysv/irix4/sysconf.c: Likewise.
3213 * sysdeps/unix/sysv/sysv4/sysconf.c: Likewise.
3214
3215 * include/wctype.h: Use libc_hidden_proto for __iswctype, __iswalnum_l,
3216 __iswalpha_l, __iswblank_l, __iswcntrl_l, __iswdigit_l, __iswlower_l,
3217 __iswgraph_l, __iswprint_l, __iswpunct_l, __iswspace_l, __iswupper_l,
3218 __iswxdigit_l, __towlower_l, __towupper_l.
3219 * wcsmbs/wcstype.c (__iswctype): Use libc_hidden_def.
3220 * wcsmbs/wcfuncs_l.c: Use libc_hidden_def for all functions.
3221
3222 * include/sys/wait.h: Add libc_hidden_proto for __xmknod.
3223 * sysdeps/generic/xmknod.c (__xmknod): Add libc_hidden_def.
3224 * sysdeps/mach/hurd/xmknod.c: Likewise.
3225 * sysdeps/unix/xmknod.c: Likewise.
3226 * sysdeps/unix/sysv/linux/xmknod.c: Likewise.
3227 * sysdeps/unix/sysv/linux/alpha/xmknod.c: Likewise.
3228 * sysdeps/unix/sysv/linux/mips/xmknod.c: Likewise.
3229
3230 * sunrpc/svc.c: Add missing INTUSE for _authenticate.
3231
3232 2002-08-03 Roland McGrath <roland@redhat.com>
3233
3234 * include/sys/resource.h: Use libc_hidden_proto for getpriority,
3235 setpriority.
3236 * sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
3237 * sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
3238 * sysdeps/unix/sysv/irix4/setpriority.c: Likewise.
3239 * sysdeps/mach/hurd/setpriority.c: Likewise.
3240 * sysdeps/mach/hurd/getpriority.c: Likewise.
3241 * sysdeps/generic/setpriority.c: Likewise.
3242 * sysdeps/generic/getpriority.c: Likewise.
3243
3244 * include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
3245 * malloc/mcheck.c: Add libc_hidden_def.
3246
3247 * include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
3248 * misc/hsearch_r.c: Add libc_hidden_def.
3249
3250 * include/fnmatch.h: Use libc_hidden_proto for fnmatch.
3251 * posix/fnmatch.c: Add libc_hidden_weak.
3252
3253 * include/unistd.h: Use libc_hidden_proto for _exit, alarm, confstr,
3254 execl, execle, execlp, execvp, getpid, getsid.
3255 * sysdeps/generic/alarm.c: Add libc_hidden_def.
3256 * sysdeps/unix/alarm.c: Likewise.
3257 * posix/confstr.c: Likewise.
3258 * posix/execvp.c: Likewise.
3259 * posix/execlp.c: Likewise.
3260 * posix/execle.c: Likewise.
3261 * posix/execl.c: Likewise.
3262 * sysdeps/generic/getsid.c: Likewise.
3263 * sysdeps/mach/hurd/getsid.c: Likewise.
3264 * sysdeps/generic/getpid.c: Add libc_hidden_weak.
3265 * sysdeps/mach/hurd/getpid.c: Likewise.
3266
3267 * include/stdlib.h: Use libc_hidden_proto for ecvt_r, fcvt_r,
3268 qecvt_r, qfcvt_r, lrand48_r.
3269 * misc/efgcvt_r.c: Add libc_hidden_def.
3270
3271 * include/wordexp.h: Use libc_hidden_proto for wordfree.
3272 * sysdeps/generic/wordexp.c: Add libc_hidden_def.
3273
3274 * include/langinfo.h: Use libc_hidden_proto for nl_langinfo.
3275 * locale/nl_langinfo.c: Add libc_hidden_def.
3276
3277 * include/glob.h: Use libc_hidden_proto for glob, globfree, globfree64.
3278 * sysdeps/generic/glob.c: Add libc_hidden_def.
3279 * sysdeps/generic/glob64.c: Likewise.
3280 * sysdeps/wordsize-64/glob.c (globfree64): Add libc_hidden_weak.
3281
3282 * locale/nl_langinfo.c: Use _NL_CURRENT_DATA.
3283
3284 * elf/Makefile (CFLAGS-vismod2.c): New variable.
3285
3286 * locale/setlocale.c (_nl_current_names): Variable moved ...
3287 * locale/localename.c (_nl_current_names): ... here, new file.
3288 Make it global, with attribute_hidden.
3289 * locale/localeinfo.h: Declare it.
3290 * locale/Makefile (aux): Add localename.
3291 * locale/localename.c (__current_locale_name): New function.
3292 * include/locale.h (__current_locale_name): Declare it.
3293 * intl/dcigettext.c (guess_category_value): Use that instead of
3294 calling setlocale.
3295
3296 * locale/locale.h [__USE_GNU] (locale_t): New type alias of __locale_t.
3297 [__USE_GNU] (newlocale, duplocale, freelocale, uselocale): New decls.
3298 [__USE_GNU] (LC_GLOBAL_LOCALE): New macro.
3299 * locale/newlocale.c: Add alias to __ name.
3300 * locale/duplocale.c: Likewise.
3301 * locale/freelocale.c: Likewise.
3302 * locale/uselocale.c: New file.
3303 * locale/Makefile (routines): Add it.
3304 * locale/Versions (libc: GLIBC_2.3): New set.
3305 Add newlocale, duplocale, freelocale, uselocale.
3306 (libc: GLIBC_PRIVATE): Add __uselocale.
3307
3308 * locale/localeinfo.h [SHARED]
3309 (_NL_CURRENT_LOCALE): New macro, defined to fetch a tsd value.
3310 (_NL_CURRENT_DATA): Define using that.
3311 (_NL_CURRENT, _NL_CURRENT_WSTR, _NL_CURRENT_WORD): Define using that.
3312 (_NL_CURRENT_DEFINE): Define to empty.
3313 [! SHARED]: Decls of _nl_current_CATEGORY and _nl_current
3314 conditionalized on this.
3315 * locale/xlocale.c (NL_C_INTIIALIZER): New macro,
3316 taking initializer of _nl_C_locobj.
3317 [SHARED] (_nl_global_locale): New variable, using that initializer.
3318 (_nl_C_locobj): Use new macro for initialzier.
3319 * locale/setlocale.c [! SHARED] (_nl_current): Conditionalize on this.
3320 [! SHARED] (CATEGORY_USED): New macro.
3321 [SHARED] (CATEGORY_USED, _nl_C): New macros.
3322 (setdata, setlocale): Use that macro instead of examining _nl_current.
3323 (setdata): Set the slot in _nl_global_locale.
3324 Conditionalize setting of _nl_current on [! SHARED].
3325 * locale/findlocale.c [SHARED] (_nl_C): Define as a macro instead of
3326 declaration as an extern.
3327 * locale/newlocale.c (__newlocale): Use _nl_C_locobj instead of _nl_C.
3328
3329 * include/locale.h: Use libc_hidden_proto for setlocale.
3330 * locale/setlocale.c: Add libc_hidden_def.
3331
3332 * locale/setlocale.c (free_mem): Use _NL_CURRENT_DATA.
3333
3334 * include/search.h: Use libc_hidden_proto for hsearch_r, lfind.
3335 * misc/hsearch_r.c: Add libc_hidden_def.
3336 * misc/lsearch.c: Likewise.
3337
3338 * include/ttyent.h: Use libc_hidden_proto for getttyent, setttyent,
3339 endttyent.
3340 * misc/getttyent.c: Add libc_hidden_def.
3341
3342 * include/mcheck.h: Use libc_hidden_proto for mcheck.
3343 * malloc/mcheck.c: Add libc_hidden_def.
3344
3345 * include/envz.h: Use libc_hidden_proto for envz_entry, enz_remove.
3346 * include/argz.h: Use libc_hidden_proto for argz_delete.
3347 * string/argz-delete.c: Add libc_hidden_def.
3348 * string/envz.c: Likewise. Use <envz.h>, not "envz.h".
3349
3350 * sysdeps/unix/sysv/linux/x86_64/clone.S (thread_start): Use
3351 HIDDEN_JUMPTARGET for _exit.
3352 * sysdeps/unix/sysv/linux/m68k/clone.S (thread_start): Likewise.
3353 * sysdeps/unix/sysv/linux/i386/clone.S (thread_start): Likewise.
3354 * sysdeps/unix/sysv/linux/powerpc/clone.S: Likewise.
3355 * sysdeps/unix/_exit.S (_exit): Add libc_hidden_def.
3356
3357 * include/libc-symbols.h: Fix [__ASSEMBLY__] -> [__ASSEMBLER__].
3358 [__ASSEMBLER__] (hidden_weak): Define using hidden_def, or to empty.
3359 [__ASSEMBLER__] (HIDDEN_JUMPTARGET): New macro.
3360 * sysdeps/unix/sysv/linux/i386/makecontext.S: Use it for exit.
3361
3362 * include/stdlib.h: Use libc_hidden_proto for abort,
3363 __strtof_internal, __strtod_internal, __strtold_internal,
3364 __strtol_internal, __strtoll_internal, __strtoul_internal,
3365 __strtoull_internal. __strtof_l_internal, __strtod_l_internal,
3366 __strtold_l_internal, __strtol_l_internal, __strtoll_l_internal,
3367 __strtoul_l_internal, __strtoull_l_internal.
3368 * include/wchar.h: Use libc_hidden_proto for __wcstof_internal,
3369 __wcstod_internal, __wcstold_internal, __wcstol_internal,
3370 __wcstoll_internal, __wcstoul_internal, ____wcstof_l_internal,
3371 ____wcstod_l_internal, ____wcstold_l_internal, ____wcstol_l_internal,
3372 ____wcstoll_l_internal, ____wcstoul_l_internal, __wcscasecmp_l,
3373 __wcsncasecmp_l.
3374 * sysdeps/generic/abort.c: Add libc_hidden_def.
3375 * stdlib/strtod.c: Likewise.
3376 * sysdeps/generic/strtol.c: Likewise.
3377 * sysdeps/wordsize-64/strtol.c: Likewise.
3378 * sysdeps/wordsize-64/wcstol.c: Likewise.
3379 * sysdeps/wordsize-64/wcstol_l.c: Likewise.
3380
3381 * include/stdlib.h: Use libc_hidden_proto for qsort.
3382 * stdlib/msort.c: Add libc_hidden_def.
3383
3384 * include/utime.h: Use libc_hidden_proto for utime.
3385 * sysdeps/generic/utime.c: Add libc_hidden_def.
3386 * sysdeps/unix/utime.c: Likewise.
3387
3388 * sysdeps/generic/utmp_file.c (LOCK_FILE): sigemptyset -> __sigemptyset
3389 * sysdeps/posix/profil.c (__profil): sigfillset -> __sigfillset
3390 * sysdeps/posix/sprofil.c (__sprofil): Likewise.
3391 * shadow/lckpwdf.c (__lckpwdf): Likewise (both).
3392 * sysdeps/posix/spawni.c (__spawni): sigismember -> __sigismember
3393
3394 * include/signal.h: Use libc_hidden_proto for raise, sigemptyset,
3395 sigfillset, sigismember, __sigpause, __libc_current_sigrtmin,
3396 and __libc_current_sigrtmax.
3397 * signal/sigismem.c: Add libc_hidden_def.
3398 * signal/sigfillset.c: Likewise.
3399 * signal/sigempty.c: Likewise.
3400 * sysdeps/generic/sigpause.c (__sigpause): Likewise.
3401 * sysdeps/posix/sigpause.c (__sigpause): Likewise.
3402 * sysdeps/unix/bsd/osf/alpha/sigpause.S: Likewise.
3403 * sysdeps/posix/raise.c: Likewise.
3404 * sysdeps/generic/raise.c: Likewise.
3405
3406 2002-08-03 Ulrich Drepper <drepper@redhat.com>
3407
3408 * include/string.h: Use libc_hidden_proto for __stpcpy.
3409 * sysdeps/alpha/stpcpy.S (__stpcpy): Add libc_hidden_def.
3410 * sysdeps/alpha/alphaev67/stpcpy.S: Likewise.
3411 * sysdeps/generic/stpcpy.c: Likewise.
3412 * sysdeps/i386/stpcpy.S: Likewise.
3413 * sysdeps/i386/i586/stpcpy.S: Likewise.
3414 * sysdeps/powerpc/stpcpy.S: Likewise.
3415 * sysdeps/sparc/sparc32/stpcpy.S: Likewise.
3416 * sysdeps/sparc/sparc64/stpcpy.S: Likewise.
3417
3418 * include/string.h: Use libc_hidden_proto for __strcasecmp_l,
3419 __strncasecmp_l, __strdup, __strndup, __strerror_r.
3420 * sysdeps/generic/strcasecmp_l.c (__strcasecmp_l): Add
3421 libc_hidden_def.
3422 * string/strdup.c (__strdup): Likewise.
3423 * string/strndup.c (__strndup): Likewise.
3424 * sysdeps/generic/_strerror.c (__strerror_r): Likewise.
3425 * sysdeps/generic/strncase_l.c (__strncasecmp_l): Likewise.
3426
3427 2002-08-03 Jakub Jelinek <jakub@redhat.com>
3428
3429 * include/libio.h: New file.
3430 * libio/libioP.h (__overflow, __woverflow): Remove libc_hidden_proto.
3431 * libio/iolibio.h: #include <libio.h>, not "libio.h".
3432 * sysdeps/generic/morecore.c (__sbrk): Add libc_hidden_proto.
3433 * sysdeps/unix/bsd/syscalls.list: Remove all __GI_* aliases.
3434 * sysdeps/unix/common/syscalls.list: Likewise.
3435 * sysdeps/unix/inet/syscalls.list: Likewise.
3436 * sysdeps/unix/sysv/irix4/syscalls.list: Likewise.
3437 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Likewise.
3438 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
3439 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
3440 * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
3441 * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
3442 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
3443 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
3444 * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
3445 * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list: Likewise.
3446 * sysdeps/unix/syscalls.list: Likewise.
3447
3448 2002-08-03 Jakub Jelinek <jakub@redhat.com>
3449 Ulrich Drepper <drepper@redhat.com>
3450
3451 * malloc/malloc.c (public_cALLOc): Only divide if at least one of
3452 the arguments is big enough to cause an overflow.
3453
3454 2002-08-03 Ulrich Drepper <drepper@redhat.com>
3455
3456 * assert/assert.c: Use hidden_def not INTDEF.
3457
3458 2002-08-03 Jakub Jelinek <jakub@redhat.com>
3459
3460 * include/libc-symbols.h: Optimize if HAVE_BROKEN_ALIAS_ATTRIBUTE is
3461 not defined.
3462
3463 2002-08-03 Roland McGrath <roland@redhat.com>
3464
3465 * include/sys/syslog.h: Use libc_hidden_proto for syslog, vsyslog.
3466 * include/err.h: Use libc_hidden_proto for warn, warnx, vwarn, vwarn,
3467 verr, verrx.
3468 * include/stdlib.h: Use libc_hidden_proto for exit, getenv, bsearch.
3469 * misc/syslog.c: Add libc_hidden_def.
3470 * misc/err.c: Likewise.
3471 * stdlib/exit.c: Likewise.
3472 * stdlib/bsearch.c: Likewise.
3473 * sysdeps/generic/getenv.c: Likewise.
3474
3475 * include/libc-symbols.h (hidden_weak): Define it for [__ASSEMBLER__].
3476
3477 * sysdeps/unix/make-syscalls.sh: Generate libc_hidden_def or
3478 libc_hidden_weak for every system call symbol defined.
3479
3480 * include/time.h: Use libc_hidden_proto for time, asctime, mktime,
3481 timelocal, localtime, strftime.
3482 * time/asctime.c: Add libc_hidden_def.
3483 * time/mktime.c: Likewise.
3484 * time/localtime.c: Likewise.
3485 * time/strftime.c: Likewise.
3486 * time/strptime.c: Likewise.
3487 * sysdeps/generic/time.c: Likewise.
3488 * sysdeps/unix/time.c: Likewise.
3489 * sysdeps/unix/sysv/i386/time.S: Likewise.
3490 * sysdeps/unix/sysv/linux/x86_64/time.S: Likewise.
3491
3492 * include/arpa/inet.h: Use libc_hidden_proto for inet_ntop, inet_pton.
3493 inet_makeaddr, inet_netof, inet_addr, __inet_addr.
3494 * resolv/inet_ntop.c: Likewise.
3495 * resolv/inet_pton.c: Likewise.
3496 * inet/inet_mkadr.c: Add libc_hidden_def.
3497 * inet/inet_netof.c: Likewise.
3498 * resolv/inet_addr.c: Likewise.
3499
3500 * include/libc-symbols.h: Remove `defined HAVE_BROKEN_ALIAS_ATTRIBUTE'
3501 clauses from conditionals for now. Will have to be fixed later
3502 for older compilers.
3503
3504 * sysdeps/generic/mempcpy.c (__mempcpy): #undef it before defn.
3505
3506 2002-08-02 Ulrich Drepper <drepper@redhat.com>
3507
3508 * configure.in (HAVE_BROKEN_ALIAS_ATTRIBUTE): Add check for
3509 broken alias attribute handling.
3510 * config.h.in (HAVE_BROKEN_ALIAS_ATTRIBUTE): Add.
3511
3512 2002-08-02 Roland McGrath <roland@frob.com>
3513
3514 * elf/Makefile ($(objpfx)interp.os): Depend on config.make,
3515 since it sets the variables we use in a -D switch.
3516
3517 2002-08-02 Roland McGrath <roland@redhat.com>
3518
3519 * posix/bits/posix1_lim.h (SSIZE_MAX): Define to LONG_MAX, not INT_MAX.
3520 On 32-bit platforms they are the same; on 64-bit platforms ssize_t
3521 matches long int, not int.
3522
3523 * locale/localeinfo.h (_NL_CURRENT_DATA): New macro.
3524 * wcsmbs/wcsmbsload.h (update_conversion_ptrs): Use it.
3525 * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
3526 * wctype/wctrans.c (wctrans): Likewise.
3527 * wctype/wctype.c (__wctype): Likewise.
3528 * intl/loadmsgcat.c (_nl_init_domain_conv): Use _NL_CURRENT.
3529
3530 2002-08-02 Ulrich Drepper <drepper@redhat.com>
3531
3532 * assert/assert.c (__assert_fail): Fix typo in comment.
3533
3534 * include/rpc/rpc.h: Declare RPC_VARS tsd as extern.
3535 * sunrpc/rpc_thread.c: Define it without static.
3536 * sunrpc/Versions [libc] (GLIBC_PRIVATE): Export __libc_tsd_RPC_VARS.
3537
3538 2002-08-02 Jakub Jelinek <jakub@redhat.com>
3539
3540 * assert/assert.c (__assert_fail): Remove undef.
3541 Replace INTDEF with libc_hidden_def.
3542 * assert/__assert.c (__assert): Remove INTUSE.
3543 * elf/dl-minimal.c (__assert_fail): Replace INTDEF with
3544 libc_hidden_weak.
3545 * include/libc-symbols.h (hidden_proto, hidden_def, hidden_weak,
3546 hidden_ver, libc_hidden_proto, libc_hidden_def, libc_hidden_weak,
3547 libc_hidden_ver, rtld_hidden_proto, rtld_hidden_def, rtld_hidden_weak,
3548 rltd_hidden_ver, libm_hidden_proto, libm_hidden_def, libm_hidden_weak,
3549 libm_hiden_ver): Define.
3550 * include/assert.h (__assert_fail_internal): Remove.
3551 (__assert_fail): Add prototype. Add hidden_proto.
3552 * include/libc-internal.h (__libc_freeres, __profile_frequency): Add
3553 libc_hidden_proto.
3554 * include/wchar.h (__mbrtowc_internal, __mbrlen_internal): Remove.
3555 (__mbrtowc, __mbrlen): Use libc_hidden_proto. Remove macros.
3556 * include/string.h (__mempcpy, __stpncpy, __rawmemchr, __strcasecmp):
3557 Add libc_hidden_proto.
3558 * include/fcntl.h (__open64, __libc_open, __libc_fcntl, __open,
3559 __fcntl): Add libc_hidden_proto. Remove macros.
3560 (__open_internal, __fcntl_internal): Remove.
3561 * libio/iofdopen.c (_IO_fcntl): Remove INTUSE from __fcntl.
3562 * malloc/set-freeres.c (__libc_freeres): Add libc_hidden_def.
3563 * nss/nsswitch.h (__nss_database_lookup, __nss_next): Add
3564 libc_hiden_proto.
3565 * nss/nsswitch.c (__nss_database_lookup, __nss_next): Add
3566 libc_hidden_def.
3567 * sysdeps/generic/mempcpy.c (__mempcpy): Remove undef.
3568 Add libc_hidden_def.
3569 * sysdeps/generic/open64.c (__open64): Add libc_hidden_def.
3570 * sysdeps/generic/open.c (__open): Remove undef.
3571 Add libc_hidden_def. Remove INTDEF.
3572 * sysdeps/generic/fcntl.c (__fcntl): Remove undef.
3573 Add libc_hidden_def.
3574 * sysdeps/mach/hurd/fcntl.c (__fcntl): Likewise.
3575 * sysdeps/i386/i586/mempcpy.S (__mempcpy): Add libc_hidden_def.
3576 * sysdeps/i386/i686/mempcpy.S (__mempcpy): Likewise.
3577 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl, __fcntl): Remove undef.
3578 (__fcntl): Remove INTDEF2. Add libc_hidden_weak.
3579 (__libc_fcntl): Add libc_hidden_def.
3580 * sysdeps/mach/hurd/open.c (__libc_open, __open): Remove undef.
3581 (__open): Remove INTDEF2. Add libc_hidden_weak.
3582 (__libc_open): Add libc_hidden_def.
3583 * sysdeps/posix/open64.c (__open64): Add libc_hidden_weak.
3584 * sysdeps/standalone/open.c (__open): Add libc_hidden_def.
3585 * sysdeps/unix/sysv/aix/fcntl.c (__libc_fcntl, __fcntl): Remove undef.
3586 Add libc_hidden_def.
3587 * sysdeps/unix/sysv/aix/open.c (__libc_open, __open): Remove undef.
3588 Add libc_hidden_def.
3589 * sysdeps/unix/sysv/linux/i386/fcntl.c (__libc_fcntl, __fcntl): Remove
3590 undef.
3591 (__fcntl): Remove INTDEF2. Add libc_hidden_weak.
3592 (__libc_fcntl): Add libc_hidden_def.
3593 * sysdeps/unix/sysv/linux/syscalls.list (__fcntl_internal,
3594 __getpgid_internal, __chown_internal): Remove.
3595 (__GI___fcntl, __GI___libc_fcntl, __GI___getpgid, __GI___pipe,
3596 __GI___sched_setscheduler, __GI___select, __GI___setpgid,
3597 __GI___chown): Add.
3598 * sysdeps/unix/syscalls.list (__close_internal, __dup2_internal,
3599 __getpid_internal, __open_internal, __write_internal): Remove.
3600 (__GI___fcntl, __GI___libc_fcntl, __GI___open, __GI___libc_open,
3601 __GI___chown, __GI___close, __GI___dup2, __GI___getpid,
3602 __GI___libc_open, __GI___open, __GI___read, __GI___libc_read,
3603 __GI___select, __GI___statfs, __GI___write, __GI___libc_write): Add.
3604 * wcsmbs/mbrlen.c (__mbrlen): Remove undef.
3605 Replace INTDEF with libc_hidden_def.
3606 * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
3607 * catgets/catgetsinfo.h (__open_catalog): Add libc_hidden_proto.
3608 * catgets/open_catalog.c (__open_catalog): Add libc_hidden_def.
3609 * elf/dl-profile.c (__profile_frequency): Add libc_hidden_proto.
3610 * include/rpc/rpc.h (__rpc_thread_svc_fdset, __rpc_thread_createerr):
3611 Add libc_hidden_proto.
3612 * include/sys/poll.h (__poll): Add libc_hidden_proto.
3613 * include/sys/select.h (__select): Likewise.
3614 * include/sys/socket.h (__send): Likewise.
3615 * include/sys/statfs.h (__statfs): Likewise.
3616 * include/unistd.h (__pwrite64, __libc_read, __pipe, __chown, __dup2,
3617 __getpid, __getpgid, __setpgid, __close, __read, __write,
3618 __getpagesize, __sbrk): Likewise.
3619 (__chown_internal, __dup2_internal, __getpid_internal,
3620 __getpgid_internal, __close_internal, __write_internal,
3621 __getpagesize_internal): Remove.
3622 (__close, __dup2, __getpagesize, __getpgid, __getpid, __libc_write):
3623 Remove macros.
3624 * include/printf.h (__printf_fp): Add libc_hidden_proto.
3625 * include/sched.h (__sched_setscheduler): Likewise.
3626 * include/resolv.h (__res_ninit, __res_randomid): Likewise.
3627 * include/stdlib.h (__secure_getenv): Likewise.
3628 * include/signal.h (__sigaction, __sigsuspend): Likewise.
3629 * inet/getaliasent_r.c (NSS_attribute_hidden): Remove.
3630 * inet/getaliasname_r.c (NSS_attribute_hidden): Remove.
3631 * inet/getnetbyad_r.c (NSS_attribute_hidden): Remove.
3632 * inet/getnetbynm_r.c (NSS_attribute_hidden): Remove.
3633 * inet/getnetent_r.c (NSS_attribute_hidden): Remove.
3634 * inet/getproto_r.c (NSS_attribute_hidden): Remove.
3635 * inet/getprtent_r.c (NSS_attribute_hidden): Remove.
3636 * inet/getprtname_r.c (NSS_attribute_hidden): Remove.
3637 * inet/getrpcbyname_r.c (NSS_attribute_hidden): Remove.
3638 * inet/getrpcbynumber_r.c (NSS_attribute_hidden): Remove.
3639 * inet/getrpcent_r.c (NSS_attribute_hidden): Remove.
3640 * inet/getservent_r.c (NSS_attribute_hidden): Remove.
3641 * inet/getsrvbynm_r.c (NSS_attribute_hidden): Remove.
3642 * inet/getsrvbypt_r.c (NSS_attribute_hidden): Remove.
3643 * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Remove INTUSE.
3644 * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
3645 * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
3646 * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
3647 * libio/genops.c (__overflow): Add libc_hidden_def.
3648 * libio/iovdprintf.c: Remove libio.h include.
3649 * libio/libioP.h (libc_hidden_proto, libc_hidden_def,
3650 libc_hidden_weak): Define to nothing if not defined.
3651 (__overflow, __woverflow): Add libc_hidden_proto.
3652 * libio/wgenops.c (__woverflow): Add libc_hidden_def.
3653 * nss/getXXent_r.c (NSS_attribute_hidden): Remove.
3654 (DB_LOOKUP_FCT): Add libc_hidden_proto.
3655 * nss/getXXbyYY_r.c (NSS_attribute_hidden): Remove.
3656 (DB_LOOKUP_FCT): Add libc_hidden_proto.
3657 * nss/XXX-lookup.c (DB_LOOKUP_FCT): Add libc_hidden_proto
3658 and libc_hidden_def.
3659 * nss/hosts-lookup.c (__nss_hosts_lookup): Remove INTDEF.
3660 * posix/bsd-getpgrp.c (__getpgid_internal): Remove.
3661 (__getpgid): Add libc_hidden_proto.
3662 (__bsd_getpgrp): Remove INTUSE.
3663 * resolv/res_init.c (__res_ninit, __res_randomid): Add
3664 libc_hidden_def.
3665 * shadow/getspent_r.c (NSS_attribute_hidden): Remove.
3666 * shadow/getspnam_r.c (NSS_attribute_hidden): Remove.
3667 * stdio-common/printf_fp.c (__printf_fp): Add libc_hidden_def.
3668 * stdlib/strfmon.c (__printf_fp): Add libc_hidden_proto.
3669 * stdlib/secure-getenv.c (__secure_getenv): Add libc_hidden_def.
3670 * sunrpc/rpc_thread.c (__rpc_thread_svc_fdset,
3671 __rpc_thread_createerr): Add libc_hidden_def.
3672 * sysdeps/alpha/alphaev67/rawmemchr.S (__rawmemchr): Add
3673 libc_hidden_def.
3674 * sysdeps/alpha/alphaev67/stpncpy.S (__stpncpy): Likewise.
3675 * sysdeps/alpha/rawmemchr.S (__rawmemchr): Likewise.
3676 * sysdeps/alpha/stpncpy.S (__stpncpy): Likewise.
3677 * sysdeps/generic/chown.c (__chown): Likewise.
3678 * sysdeps/generic/close.c (__close): Likewise.
3679 * sysdeps/generic/dup2.c (__dup2): Likewise.
3680 * sysdeps/generic/pipe.c (__pipe): Likewise.
3681 * sysdeps/generic/prof-freq.c (__profile_frequency): Likewise.
3682 * sysdeps/generic/pwrite64.c (__pwrite64): Likewise.
3683 * sysdeps/generic/rawmemchr.c (__rawmemchr): Likewise.
3684 * sysdeps/generic/read.c (__libc_read): Likewise.
3685 (__read): Add libc_hidden_weak.
3686 * sysdeps/generic/sbrk.c (__sbrk): Add libc_hidden_def.
3687 * sysdeps/generic/sched_sets.c (__sched_setscheduler): Likewise.
3688 * sysdeps/generic/select.c (__select): Likewise.
3689 * sysdeps/generic/send.c (__send): Likewise.
3690 * sysdeps/generic/setpgid.c (__setpgid): Likewise.
3691 * sysdeps/generic/sigaction.c (__sigaction): Likewise.
3692 * sysdeps/generic/sigsuspend.c (__sigsuspend): Likewise.
3693 * sysdeps/generic/statfs.c (__statfs): Likewise.
3694 * sysdeps/generic/stpncpy.c (__stpncpy): Likewise.
3695 * sysdeps/generic/strcasecmp.c (__strcasecmp): Likewise.
3696 * sysdeps/generic/getpagesize.c (__getpagesize): Likewise.
3697 Remove undef and INTDEF.
3698 * sysdeps/generic/getpgid.c (__getpgid): Likewise.
3699 * sysdeps/generic/getpid.c (__getpid): Likewise.
3700 * sysdeps/generic/write.c (__libc_write): Likewise.
3701 (__write): Add libc_hidden_weak. Remove undef and INTDEF.
3702 * sysdeps/i386/rawmemchr.S (__rawmemchr): Add libc_hidden_def.
3703 * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
3704 * sysdeps/m68k/rawmemchr.S (__rawmemchr): Likewise.
3705 * sysdeps/mach/hurd/chown.c (__chown): Likewise. Remove INTDEF.
3706 * sysdeps/mach/hurd/close.c (__close): Add libc_hidden_def.
3707 Remove undef and INTDEF.
3708 * sysdeps/mach/hurd/dup2.c (__dup2): Likewise.
3709 * sysdeps/mach/hurd/getpgid.c (__getpgid): Likewise.
3710 * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
3711 * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
3712 * sysdeps/mach/hurd/write.c (__libc_write): Likewise.
3713 (__write): Add libc_hidden_weak. Remove undef and INTDEF.
3714 * sysdeps/mach/hurd/pipe.c: Include unistd.h.
3715 (__pipe): Add libc_hidden_def.
3716 * sysdeps/mach/hurd/dl-sysdep.c (__libc_read, __libc_write): Add
3717 libc_hidden_weak.
3718 * sysdeps/mach/hurd/poll.c (__poll): Add libc_hidden_def.
3719 * sysdeps/mach/hurd/profil.c (__profile_frequency): Likewise.
3720 * sysdeps/mach/hurd/read.c (__libc_read): Likewise.
3721 (__read): Add libc_hidden_weak.
3722 * sysdeps/mach/hurd/pwrite64.c (__pwrite64): Likewise.
3723 (__libc_pwrite64): Add libc_hidden_def.
3724 * sysdeps/mach/hurd/sbrk.c (__sbrk): Likewise.
3725 * sysdeps/mach/hurd/select.c (__select): Likewise.
3726 * sysdeps/mach/hurd/send.c (__send): Likewise.
3727 * sysdeps/mach/hurd/setpgid.c (__setpgid): Likewise.
3728 * sysdeps/mach/hurd/sigaction.c (__sigaction): Likewise.
3729 * sysdeps/mach/hurd/sigsuspend.c (__sigsuspend): Likewise.
3730 * sysdeps/mach/hurd/statfs.c (__statfs): Likewise.
3731 * sysdeps/posix/dup2.c: Likewise.
3732 Remove undef and INTDEF.
3733 * sysdeps/posix/getpagesize.c (__getpagesize): Likewise.
3734 * sysdeps/posix/pwrite64.c (__libc_pwrite64): Add libc_hidden_def.
3735 (__pwrite64): Add libc_hidden_weak.
3736 * sysdeps/posix/sigsuspend.c (__sigsuspend): Add libc_hidden_def.
3737 * sysdeps/sparc/sparc64/rawmemchr.S (__rawmemchr): Likewise.
3738 * sysdeps/sparc/sparc64/stpncpy.S (__stpncpy): Likewise.
3739 * sysdeps/standalone/close.c (__close): Likewise.
3740 * sysdeps/standalone/write.c (__libc_write): Likewise.
3741 (__write): Add libc_hidden_weak.
3742 * sysdeps/standalone/read.c (__read): Likewise.
3743 (__libc_read): Add libc_hidden_def.
3744 * sysdeps/unix/grantpt.c (grantpt): Remove INTUSE.
3745 * sysdeps/unix/bsd/m68k/pipe.S (__pipe): Add libc_hidden_def.
3746 * sysdeps/unix/bsd/osf/alpha/pipe.S (__pipe): Likewise.
3747 * sysdeps/unix/bsd/vax/pipe.S (__pipe): Likewise.
3748 * sysdeps/unix/bsd/syscalls.list (__GI___getpagesize): Likewise.
3749 * sysdeps/unix/bsd/poll.c (__poll): Likewise.
3750 * sysdeps/unix/bsd/sigaction.c (__sigaction): Likewise.
3751 * sysdeps/unix/bsd/sigsuspend.c (__sigsuspend): Likewise.
3752 * sysdeps/unix/common/syscalls.list (__GI___getpgid, __GI___setpgid,
3753 __GI___sigaction): Add.
3754 * sysdeps/unix/i386/pipe.S (__pipe): Add libc_hidden_def.
3755 * sysdeps/unix/inet/syscalls.list (__GI___send): Add.
3756 * sysdeps/unix/mips/pipe.S (__pipe): Add libc_hidden_def.
3757 * sysdeps/unix/sparc/pipe.S (__pipe): Likewise.
3758 * sysdeps/unix/sysv/irix4/syscalls.list (__GI___getpgid,
3759 __GI___setpgid): Add.
3760 * sysdeps/unix/sysv/aix/chown.c (__chown): Add libc_hidden_def.
3761 Remove undef and INTDEF.
3762 * sysdeps/unix/sysv/aix/getpgid.c (__getpgid): Likewise.
3763 * sysdeps/unix/sysv/aix/write.c (__write, __libc_write): Likewise.
3764 * sysdeps/unix/sysv/aix/close.c (__close): Add libc_hidden_def.
3765 * sysdeps/unix/sysv/aix/getpid.c (__getpid): Likewise.
3766 * sysdeps/unix/sysv/aix/pipe.c (__pipe): Likewise.
3767 * sysdeps/unix/sysv/aix/read.c (__read, __libc_read): Likewise.
3768 * sysdeps/unix/sysv/aix/poll.c (__poll): Likewise.
3769 * sysdeps/unix/sysv/aix/sbrk.c (__sbrk): Likewise.
3770 * sysdeps/unix/sysv/aix/sigaction.c (__sigaction): Likewise.
3771 * sysdeps/unix/sysv/aix/sigsuspend.c (__sigsuspend): Likewise.
3772 * sysdeps/unix/sysv/aix/statfs.c (__statfs): Likewise.
3773 * sysdeps/unix/sysv/aix/select.c (__select): Likewise.
3774 * sysdeps/unix/sysv/aix/setpgid.c (__setpgid): Likewise.
3775 * sysdeps/unix/sysv/linux/alpha/pipe.S (__pipe): Likewise.
3776 * sysdeps/unix/sysv/linux/alpha/syscalls.list (__GI___pwrite64,
3777 __GI___statfs, __GI___send): Add.
3778 * sysdeps/unix/sysv/linux/alpha/select.S (__select): Add
3779 libc_hidden_ver resp. libc_hidden_def.
3780 * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend): Add
3781 libc_hidden_def.
3782 * sysdeps/unix/sysv/linux/ia64/getpagesize.c (__getpagesize):
3783 Likewise. Remove undef and INTDEF.
3784 * sysdeps/unix/sysv/linux/ia64/pipe.S (__pipe): Add libc_hidden_def.
3785 * sysdeps/unix/sysv/linux/ia64/syscalls.list (__GI___pwrite64,
3786 __GI___statfs, __GI___send): Add.
3787 * sysdeps/unix/sysv/linux/ia64/sigaction.c (__sigaction): Add
3788 libc_hidden_def.
3789 * sysdeps/unix/sysv/linux/ia64/sigsuspend.c (__sigsuspend):
3790 Likewise.
3791 * sysdeps/unix/sysv/linux/sh/pipe.S (__pipe): Likewise.
3792 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c (__chown): Add
3793 libc_hidden_ver resp. libc_hidden_def.
3794 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (__GI___pwrite64,
3795 __GI___send): Add.
3796 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c (__sigaction):
3797 Add libc_hidden_weak.
3798 * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c (__sigsuspend):
3799 Add libc_hidden_def.
3800 * sysdeps/unix/sysv/linux/hppa/syscalls.list (__GI___send): Add.
3801 * sysdeps/unix/sysv/linux/arm/sigaction.c (__sigaction): Add
3802 libc_hidden_weak.
3803 * sysdeps/unix/sysv/linux/i386/chown.c (__chown): Add libc_hidden_ver
3804 resp. libc_hidden_def.
3805 * sysdeps/unix/sysv/linux/i386/sigaction.c (__sigaction): Add
3806 libc_hidden_weak.
3807 * sysdeps/unix/sysv/linux/m68k/chown.c (__chown): Likewise. Remove
3808 INTDEF.
3809 * sysdeps/unix/sysv/linux/m68k/getpagesize.c (__getpagesize):
3810 Likewise. Remove undef.
3811 * sysdeps/unix/sysv/linux/mips/pwrite64.c (__pwrite64): Add
3812 libc_hidden_weak.
3813 * sysdeps/unix/sysv/linux/mips/syscalls.list (__GI___send): Add.
3814 * sysdeps/unix/sysv/linux/mips/sigaction.c (__sigaction): Add
3815 libc_hidden_weak.
3816 * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown): Add
3817 libc_hidden_def.
3818 * sysdeps/unix/sysv/linux/powerpc/pwrite64.c (__pwrite64): Likewise.
3819 * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c (__getpagesize):
3820 Likewise. Remove undef and INTDEF.
3821 * sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S (__pipe): Add
3822 libc_hidden_def.
3823 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (__sigaction): Add
3824 libc_hidden_weak.
3825 * sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S (__pipe): Add
3826 libc_hidden_def.
3827 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list
3828 (__GI___pwrite64, __GI___statfs, __GI___select, __GI___send): Add.
3829 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (__sigaction): Add
3830 libc_hidden_weak.
3831 * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c (__sigsuspend):
3832 Add libc_hidden_def.
3833 * sysdeps/unix/sysv/linux/x86_64/syscalls.list (__GI___pwrite64,
3834 __GI___statfs): Add.
3835 * sysdeps/unix/sysv/linux/x86_64/send.c (__send): Add
3836 libc_hidden_weak.
3837 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__sigaction): Likewise.
3838 * sysdeps/unix/sysv/linux/getpagesize.c: Add libc_hidden_def.
3839 Remove undef and INTDEF.
3840 * sysdeps/unix/sysv/linux/poll.c (__poll): Add libc_hidden_def.
3841 * sysdeps/unix/sysv/linux/pwrite64.c (__pwrite64): Add
3842 libc_hidden_def.
3843 * sysdeps/unix/sysv/linux/send.S (__send): Likewise.
3844 * sysdeps/unix/sysv/linux/sigaction.c (__sigaction): Add
3845 libc_hidden_weak.
3846 * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Add
3847 libc_hidden_def.
3848 * sysdeps/unix/sysv/sco3.2.4/__setpgid.c (__setpgid): Likewise.
3849 * sysdeps/unix/sysv/sco3.2.4/sigaction.S (__sigaction): Likewise.
3850 * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list (__GI___sigaction):
3851 Add.
3852 * sysdeps/unix/sysv/sysv4/__getpgid.c (__getpgid): Add
3853 libc_hidden_def. Remove undef and INTDEF.
3854 * sysdeps/unix/sysv/sysv4/getpgid.c (__getpgid): Likewise.
3855 * sysdeps/unix/sysv/sysv4/__setpgid.c (__setpgid): Add
3856 libc_hidden_def.
3857 * sysdeps/unix/sysv/sysv4/setpgid.c (__setpgid): Likewise.
3858 * sysdeps/unix/sysv/sysv4/sigaction.c (__sigaction): Likewise.
3859 * sysdeps/unix/sysv/sigaction.c (__sigaction): Likewise.
3860 * sysdeps/unix/getpagesize.c (__getpagesize): Add libc_hidden_def.
3861 Remove undef and INTDEF.
3862 * configure.in (HAVE_BROKEN_VISIBILITY_ATTRIBUTE): Add check for
3863 broken visibility attribute handling.
3864 * config.h.in (HAVE_BROKEN_VISIBILITY_ATTRIBUTE): Add.
3865
3866 2002-08-02 Ulrich Drepper <drepper@redhat.com>
3867
3868 * locale/iso-639.def: Add entries for Venda and Nothern Sotho.
3869 Reported by Dwayne Bailey <dwayne@obsidian.co.za>.
3870
3871 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Adapt
3872 previous patch.
3873
3874 2002-06-29 Todd Fries <todd@openbsd.org>
3875
3876 * resolv/gethnamaddr.c (gethostbyaddr): Try ip6.int if ip6.arpa fails.
3877
3878 2002-08-02 Jakub Jelinek <jakub@redhat.com>
3879
3880 * include/errno.h: Don't include tls.h if _ISOMAC is defined.
3881
3882 2002-07-30 Roland McGrath <roland@redhat.com>
3883
3884 * resolv/resolv.h (_res): Define macro unconditionally.
3885 [! _LIBC_REENTRANT] (_res): Move this conditional decl to ...
3886 * include/resolv.h: ... here.
3887 [USE_TLS && HAVE___THREAD] (_res): #undef it and declare
3888 as a __thread variable.
3889 * resolv/res_libc.c [USE_TLS && HAVE___THREAD] (_res): Define it as
3890 a __thread variable instead of a global.
3891 * resolv/res_data.c [_LIBC]: Don't #undef _res.
3892
3893 * include/errno.h: Include <tls.h> to make sure USE_TLS defined by the
3894 time we test it.
3895
3896 * intl/loadmsgcat.c [__GNUC__]: #undef alloca before defining it.
3897
3898 * malloc/malloc.c [_LIBC]: Include <string.h> instead of using local
3899 decls of memset and memcpy.
3900
3901 * sysdeps/generic/sysdep.h (END): Conditionalize on [__ASSEMBLER__].
3902 * sysdeps/unix/sysv/linux/i386/sysdep.h (L): Likewise.
3903
3904 * elf/dl-load.c (_dl_map_object_from_fd): Comment fix.
3905
3906 * sysdeps/generic/bits/libc-tsd.h [USE_TLS && HAVE___THREAD]
3907 (__libc_tsd_define): Define using __thread.
3908
3909 * sunrpc/rpc_thread.c: Use __libc_tsd_define.
3910 (__rpc_thread_variables): Use __libc_tsd_get.
3911 (__rpc_thread_destroy): Use __libc_tsd_get instead of calling
3912 __rpc_thread_variables, which might allocate what we're about to free.
3913
3914 * inet/herrno.c [USE_TLS && HAVE___THREAD] (h_errno): Define as a
3915 thread-local variable.
3916 * resolv/netdb.h (h_errno): Define macro unconditionally.
3917 [_LIBC] (__set_h_errno): Macro moved to ...
3918 * include/netdb.h: ... here.
3919 [USE_TLS && HAVE___THREAD] (h_errno): Declare __thread variable.
3920 [USE_TLS && HAVE___THREAD] (__set_h_errno): Define using that.
3921 [! _LIBC_REENTRANT]: #undef h_errno here.
3922
3923 * include/errno.h: Protect from multiple inclusion.
3924
3925 * misc/sys/select.h (__NFDBITS, __FDELT, __FDMASK): #undef these
3926 before defining them, since Linux's <linux/posix_types.h> might have
3927 defined them.
3928
3929 2002-08-02 Jakub Jelinek <jakub@redhat.com>
3930
3931 * malloc/malloc.c (public_cALLOc): Check for overflow on
3932 multiplication.
3933 * sunrpc/xdr_array.c (xdr_array): Likewise.
3934 * sunrpc/rpc/types.h (mem_free): Add comment.
3935 Patch by Solar Designer <solar@openwall.com>.
3936
3937 2002-08-02 Jakub Jelinek <jakub@redhat.com>
3938
3939 * sysdeps/unix/sysv/linux/kernel-features.h
3940 (__ASSUME_SET_THREAD_AREA_SYSCALL): Define.
3941
3942 2002-08-01 Roland McGrath <roland@redhat.com>
3943
3944 * libio/fileops.c (_IO_file_sync_mmap): New function.
3945 (_IO_file_jumps_mmap): Use it.
3946 (_IO_file_underflow_mmap): Rewritten. If after EOF or fflush,
3947 repeat the stat check and resize the mapped buffer as necessary.
3948
3949 2002-07-31 Roland McGrath <roland@redhat.com>
3950
3951 * libio/fileops.c (decide_maybe_mmap): New static function.
3952 Code taken from libio/iofopen.c:__fopen_maybe_mmap to try to
3953 mmap the file contents. Then switch the jump tables to the mmap
3954 tables if it worked, or the vanilla file tables if not.
3955 (_IO_file_underflow_maybe_mmap): New function.
3956 (_IO_file_seekoff_maybe_mmap): New function.
3957 (_IO_file_xsgetn_maybe_mmap): New function.
3958 (_IO_file_jumps_maybe_mmap): New variable, jump table using those.
3959 * libio/libioP.h: Declare those.
3960 * libio/wfileops.c (_IO_wfile_underflow_maybe_mmap): New function.
3961 (_IO_wfile_jumps_maybe_mmap): New variable, jump table using that.
3962 * libio/iofopen.c (__fopen_maybe_mmap): Don't try to mmap here.
3963 If the stream is read-only, set its jump tables to those new ones.
3964 * libio/iofdopen.c (_IO_new_fdopen) [_G_HAVE_MMAP]: Set the initial
3965 jump tables to the maybe_mmap ones, and don't call __fopen_maybe_mmap.
3966 We need the tables set before _IO_file_attach.
3967
3968 * libio/tst-mmap-eofsync.c: New file.
3969 * libio/tst-mmap-fflushsync.c: New file.
3970 * libio/bug-mmap-fflush.c: New file.
3971 * libio/tst-mmap2-eofsync.c: New file.
3972 * libio/Makefile (tests): Add them.
3973
3974 * libio/wfileops.c (_IO_wfile_underflow_mmap): Don't set EOF bit when
3975 _IO_file_underflow_mmap fails, it already set the appropriate bit.
3976
3977 2002-07-31 Jeff Bailey <jbailey@gnu.org>
3978
3979 * libio/stdio.h (sys_errlist, sys_nerr, _sys_errlist, _sys_nerr):
3980 Declarations moved to <bits/sys_errlist.h>. Include that file.
3981 * libio/Makefile (headers): Add bits/sys_errlist.h to the list.
3982 * sysdeps/generic/bits/sys_errlist.h: New file. This does *not*
3983 declare sys_errlist and sys_nerr.
3984 * sysdeps/unix/sysv/linux/bits/sys_errlist.h: New file. Does
3985 provide declarations.
3986
3987 2002-07-31 Roland McGrath <roland@redhat.com>
3988
3989 * elf/rtld.c (dl_main): Fix typo in error message.
3990
3991 2002-07-31 Roland McGrath <roland@frob.com>
3992
3993 * sysdeps/mach/hurd/Versions (ld: GLIBC_2.0): __fxstat -> __fxstat64,
3994 __xstat -> __xstat64, __lseek -> __libc_lseek64. Completes 2002-06-09
3995 sysdeps/mach/hurd/dl-sysdep.c change.
3996
3997 2002-07-28 Ulrich Drepper <drepper@redhat.com>
3998
3999 * sysdeps/unix/sysv/linux/configure.in: Check /lib/modules/`uname
4000 -r`/build/include for kernel headers.
4001
4002 * po/fi.po: New file.
4003
4004 2002-07-15 Alexandre Oliva <aoliva@redhat.com>
4005
4006 * configure.in (static_nss): Set to `yes' if --disable-shared.
4007
4008 2002-07-23 Bruno Haible <bruno@clisp.org>
4009
4010 * intl/loadmsgcat.c (PRI*): Redefine the macros if PRI_MACROS_BROKEN
4011 is set.
4012
4013 2002-07-25 Jakub Jelinek <jakub@redhat.com>
4014
4015 * sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h: New file.
4016 * sysdeps/unix/sysv/linux/ia64/profil-counter.h: Fix profil_counter
4017 arguments.
4018
4019 2002-07-25 Jakub Jelinek <jakub@redhat.com>
4020
4021 * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal): Add
4022 alias.
4023
4024 2002-07-21 Bruno Haible <bruno@clisp.org>
4025
4026 * intl/libintl.h (__GNU_GETTEXT_SUPPORTED_REVISION): New macro.
4027 * intl/gettext.h (struct mo_file_header): New fields n_sysdep_segments,
4028 sysdep_segments_offset, n_sysdep_strings, orig_sysdep_tab_offset,
4029 trans_sysdep_tab_offset.
4030 (struct sysdep_segment): New type.
4031 (struct sysdep_string): New type.
4032 (SEGMENTS_END): New macro.
4033 * intl/gettextP.h (struct sysdep_string_desc): New type.
4034 (struct loaded_domain): New fields malloced, n_sysdep_strings,
4035 orig_sysdep_tab, trans_sysdep_tab, must_swap_hash_tab. Make fields
4036 orig_tab, trans_tab, hash_tab to const pointers because they point
4037 into read-only memory.
4038 * intl/loadmsgcat.c: Include stdint.h, inttypes.h, hash-string.h.
4039 (PRI*): Define fallback values.
4040 (get_sysdep_segment_value): New function.
4041 (_nl_load_domain): Distinguish major and minor revision parts. Add
4042 support for minor revision 1 with system dependent strings.
4043 (_nl_unload_domain): Also free the 'malloced' field.
4044 * intl/dcigettext.c (_nl_find_msg): Remove test for domain->hash_size,
4045 now done in loadmsgcat.c. Add support for system dependent strings.
4046
4047 2002-07-16 Stepan Kasal <kasal@math.cas.cz>
4048
4049 * posix/bug-regex7.c: New file.
4050 * posix/bug-regex8.c: New file.
4051 * posix/Makefile (tests): Add bug-regex7 and bug-regex8.
4052
4053 2002-07-16 Stepan Kasal <kasal@math.cas.cz>
4054
4055 * posix/bug-regex4.c (main): Fix typos.
4056 * posix/bug-regex6.c (main): Likewise.
4057
4058 2002-07-27 Ulrich Drepper <drepper@redhat.com>
4059
4060 * posix/bug-regex6.c (main): Fix warnings.
4061
4062 * iconvdata/Makefile (CPPFLAGS): Add NOT_IN_libc.
4063
4064 * iconv/iconv_prog.c (main): Improve error message for the cases
4065 where -t and/or -f parameter are missing.
4066
4067 2002-07-10 Stepan Kasal <kasal@math.cas.cz>
4068
4069 * posix/regexec.c (re_match): Reorganize to remove duplicate code.
4070 (re_search): Likewise.
4071 (re_match_2): Likewise.
4072 (re_search_2): Likewise.
4073 (re_search_stub): New function.
4074 (re_search_2_stub): New function.
4075 * regcomp.c (re_compile_pattern): Typo in a comment fixed.
4076
4077 2002-07-10 Isamu Hasegawa <isamu@yamato.ibm.com>
4078
4079 * posix/regex_internal.h: Add new member STOP to struct re_string_t.
4080 (re_string_eoi): Use STOP instead of LEN.
4081 * posix/regex_internal.c (re_string_allocate): Initialize pstr->len.
4082 (re_string_construct): Likewise.
4083 (re_string_reconstruct): Adjust pstr->stop like pstr->len.
4084 * posix/regexec.c (re_search_internal): Add a new argument STOP
4085 so that it can handle the argument STOP of re_search_2 and re_match_2
4086 correctly.
4087 (regexec): Adapt to new I/F of re_search_internal.
4088 (re_search_stub): Likewise.
4089
4090 2002-07-25 Ulrich Drepper <drepper@redhat.com>
4091
4092 * sunrpc/clnt_gen.c: Don't include <sys/errno.h>.
4093
4094 * elf/dl-minimal.c: Remove definition of __assert_perror_fail.
4095
4096 * sysdeps/wordsize-32/divdi3.c: Define __divdi3_internal.
4097 * sysdeps/wordsize-32/lldiv.c: Make gcc use __divdi3_internal instead
4098 of __divdi3.
4099
4100 * sysdeps/unix/sysv/linux/adjtime.c: Use __adjtimex_internal.
4101 * sysdeps/unix/sysv/linux/ntp_gettime.c: Likewise.
4102 * sysdeps/unix/sysv/linux/syscalls.list: Add __adjtimex_internal
4103 alias for adjtimex syscall.
4104
4105 * elf/dl-minimal.c: Define __assert_fail_internal.
4106 * assert/assert.c: Likewise.
4107 * include/assert.h: Define __assert_file macro if !SHARED and not
4108 NOT_IN_libc.
4109
4110 * iconv/Makefile: Define NOT_IN_libc for objects in standalone
4111 programs.
4112 * locale/Makefile: Likewise.
4113 * nscd/Makefile: Likewise.
4114 * catgets/Makefile: Likewise.
4115
4116 2002-07-24 Ulrich Drepper <drepper@redhat.com>
4117
4118 * libio/fileops.c (_IO_file_seekoff_mmap): Do use fp->_offset to
4119 compute current position.
4120
4121 * stdio-common/tst-fseek.c (main): Improve error messages.
4122
4123 * libio/tst-freopen.c (main): Remove unused variable.
4124
4125 * libio/fileops.c (_IO_file_seekoff_mmap): Set fp->_offset after
4126 succesful seek call. Simplify error checking.
4127
4128 2002-07-25 Jakub Jelinek <jakub@redhat.com>
4129
4130 * config.h.in: Use __ASSEMBLER__ test macro not ASSEMBLER.
4131 * sysdeps/ia64/fpu/libm_support.h: Likewise.
4132
4133 2002-07-19 Roland McGrath <roland@frob.com>
4134
4135 * hurd/hurdsig.c (_hurdsig_getenv): Always return null if
4136 __libc_enable_secure is set.
4137
4138 2002-07-24 Roland McGrath <roland@frob.com>
4139
4140 Added <ifaddrs.h> interface with functions `getifaddrs', `freeifaddrs'.
4141 This implementation supports only IPv4.
4142 * inet/ifaddrs.h: New file.
4143 * sysdeps/generic/ifaddrs.c: New file.
4144 * sysdeps/gnu/ifaddrs.c: New file.
4145 * inet/test-ifaddrs.c: New file.
4146 * inet/Makefile (routines): Add ifaddrs.
4147 (headers): Add ifaddrs.h here.
4148 (tests): Add test-ifaddrs.
4149 * inet/Versions (GLIBC_2.3): New set, add getifaddrs and freeifaddrs.
4150
4151 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Use an explicit
4152 socket call to get an AF_INET socket, instead of using __opensock.
4153 The SIOCGIFNETMASK ioctl will work only with a PF_INET socket.
4154
4155 * sysdeps/generic/ifreq.h (__ifreq): Take third argument SOCKFD,
4156 if not -1 use it instead of calling __opensock.
4157 * sysdeps/unix/sysv/linux/ifreq.h (__ifreq): Likewise.
4158 * sysdeps/mach/hurd/ifreq.h (__ifreq): Take new argument and ignore it.
4159 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Pass new argument.
4160
4161 * sysdeps/mach/hurd/ifreq.h: New file.
4162 * sysdeps/generic/ifreq.h (__if_freereq): Take second argument NUM_IFS.
4163 * sysdeps/unix/sysv/linux/ifreq.h (__if_freereq): Likewise.
4164 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Update caller.
4165
4166 * libio/fileops.c (_IO_file_seekoff_mmap): Don't rely on FP->_offset,
4167 which gets moved around. Calculate size of mmap'd buffer instead.
4168
4169 2002-07-24 Philip Blundell <philb@gnu.org>
4170
4171 * sysdeps/unix/arm/brk.S: Improve schedule.
4172 * sysdeps/unix/sysv/linux/arm/socket.S (PUSHARGS_1): Use more
4173 efficient instruction.
4174 (__socket): Optimize return sequence.
4175
4176 2002-07-24 Ulrich Drepper <drepper@redhat.com>
4177
4178 * sysdeps/unix/sysv/linux/opensock.c (__opensock): Prefer inet
4179 sockets on old kernels.
4180
4181 2002-07-22 Philip Blundell <philb@gnu.org>
4182
4183 * sysdeps/unix/sysv/linux/arm/errlist.c: Remove extra weak alias
4184 definiton of _old_sys_nerr. Define _old_sys_errlist as strong
4185 alias.
4186
4187 2002-07-24 Ulrich Drepper <drepper@redhat.com>
4188
4189 * locale/hashval.h: Make more self-contained by defining LONG_BITS.
4190 * locale/programs/simple-hash.c: Remove LONG_BITS definition.
4191
4192 * locale/programs/locarchive.c (add_locale_to_archive): Correct
4193 test to detect duplicate locales.
4194
4195 * libio/fileops.c (_IO_new_file_seekoff): Fail if relative
4196 position would be before beginning of file.
4197 (_IO_file_seekoff_mmap): Likewise.
4198 * libio/Makefile (tests): Add bug-fseek.
4199 * libio/bug-fseek.c: New file.
4200
4201 * intl/explodename.c: Remove support for CEN-style locale variables.
4202 It was never used and shouldn't be since it's not portable.
4203 * intl/finddomain.c: Likewise.
4204 * intl/l10nflist.c: Likewise.
4205 * intl/loadinfo.h: Likewise.
4206 * locale/findlocale.c: Likewise.
4207
4208 2002-07-24 Roland McGrath <roland@frob.com>
4209
4210 * libio/fileops.c (_IO_file_seekoff_mmap): When just examining the
4211 position, calculate it to take into account an active pushback buffer.
4212
4213 * libio/Makefile (tests): Add bug-ungetc.
4214 * libio/bug-ungetc.c: New file.
4215
4216 2002-07-23 Ulrich Drepper <drepper@redhat.com>
4217
4218 * sysdeps/generic/libc-tls.c: New file.
4219 * csu/Makefile (routines): Add libc-tls.
4220 (static-only-routines): Add libc-tls.
4221 * elf/dl-support.c (_dl_phdr): New variable.
4222 (_dl_phnum): New variable.
4223 (_dl_aux_init): Initialize _dl_phdr and _dl_phnum from aux vector.
4224 * sysdeps/generic/libc-start.c (__libc_start_main): Reorganize code
4225 for !SHARED. First look through auxiliary vector. If TLS always
4226 call __pthread_initialize_minimal.
4227
4228 * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Make sure size argument
4229 in mmap call is never zero.
4230
4231 2002-07-23 Andreas Jaeger <aj@suse.de>
4232
4233 * sysdeps/x86_64/fpu/s_copysign.S: Use optimized version.
4234 * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
4235
4236 2002-07-22 Ulrich Drepper <drepper@redhat.com>
4237
4238 * libio/tst-eof.c: Rewrite to let test-skeleton.c deal with
4239 creation and removal of the temp file.
4240
4241 * libio/bug-rewind.c: Use test skeleton. Use create_temp_file for
4242 file creation.
4243 * test-skeleton.c (create_temp_file): New function.
4244
4245 2002-07-22 Andreas Jaeger <aj@suse.de>
4246
4247 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Use
4248 local label.
4249
4250 2002-07-21 Roland McGrath <roland@frob.com>
4251
4252 * wcsmbs/Makefile (strtox-CFLAGS): New variable,
4253 put -I../include before -I../stdlib so we get the right errno.h et al.
4254 (CFLAGS-wcstod.c): Use that variable instead of -I../stdlib.
4255 (CFLAGS-wcstof.c): Likewise.
4256 (CFLAGS-wcstold.c): Likewise.
4257 (CFLAGS-wcstod_l.c): Likewise.
4258 (CFLAGS-wcstof_l.c): Likewise.
4259 (CFLAGS-wcstold_l.c): Likewise.
4260
4261 2002-07-19 Roland McGrath <roland@frob.com>
4262
4263 * sysdeps/mach/hurd/errnos.awk: Remove __set_errno defn from output.
4264
4265 2002-07-20 Ulrich Drepper <drepper@redhat.com>
4266
4267 * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define if
4268 __ASSUME_AT_XID is defined.
4269 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_XID): Define
4270 for 2.4.1 and up.
4271 * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Optimize handling
4272 of AT_UID, AT_EUID, AT_GID, and AT_EGID.
4273
4274 * wcsmbs/Makefile (CFLAGS-wcstod.c): Add -I../stdlib.
4275 (CFLAGS-wcstof.c): Likewise.
4276 (CFLAGS-wcstold.c): Likewise.
4277 (CFLAGS-wcstod_l.c): Likewise.
4278 (CFLAGS-wcstof_l.c): Likewise.
4279 (CFLAGS-wcstold_l.c): Likewise.
4280
4281 2002-07-18 Jakub Jelinek <jakub@redhat.com>
4282
4283 * resource/sys/resource.h (__rlimit_resource_t, __rusage_who_t,
4284 __priority_which_t): Always typedef to int for C++.
4285
4286 2002-07-19 Ulrich Drepper <drepper@redhat.com>
4287
4288 * configure.in: Add test for __thread support in compiler.
4289 * config.h.in: Add HAVE___THREAD.
4290 * Makefile (headers): Remove errno.h, sys/errno.h, and bits/errno.h.
4291 * include/sys/errno.h: Moved to...
4292 * stdlib/sys/errno.h: ...here. New file.
4293 * stdlib/errno.h: New file. Moved from...
4294 * include/errno.h: ...here. Changed into an internal header defining
4295 libc-local things like __set_errno.
4296 * stdlib/Makefile (headers): Add errno.h, sys/errno.h, and
4297 bits/errno.h.
4298 * elf/dl-minimal.c: Include <tls.h>. Define errno as thread-local
4299 variable if USE_TLS && HAVE___THREAD. Don't define __errno_location
4300 either.
4301 * elf/rtld.c (_dl_start): Add code to initialize TLS for ld.so
4302 from...
4303 (_dl_start_final): ...here. Add code to initialize tls elements from
4304 bootstrap_map.
4305 * sysdeps/generic/errno-loc.c: Define errno as thread-local variable
4306 if USE_TLS && HAVE___THREAD.
4307 * sysdeps/generic/bits/errno.h: Remove __set_errno definition.
4308 * sysdeps/mach/hurd/bits/errno.h: Likewise.
4309 * sysdeps/standalone/arm/bits/errno.h: Likewise.
4310 * sysdeps/standalone/bits/errno.h: Likewise.
4311 * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Likewise.
4312 * sysdeps/unix/sysv/aix/bits/errno.h: Likewise.
4313 * sysdeps/unix/sysv/hpux/bits/errno.h: Likewise.
4314 * sysdeps/unix/sysv/linux/bits/errno.h: Likewise.
4315 * sysdeps/unix/sysv/linux/hppa/bits/errno.h: Likewise.
4316 * sysdeps/unix/sysv/linux/mips/bits/errno.h: Likewise.
4317 * sysdeps/unix/sysv/sysv4/solaris2/bits/errno.h: Likewise.
4318 * sysdeps/i386/dl-machine.c (elf_machine_rel) [RTLD_BOOTSTRAP]: Don't
4319 use GL(dl_rtld_map), use map parameter.
4320 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
4321 * sysdeps/unix/sysv/linux/i386/sysdep.S: Define errno in .tbss if
4322 USE_TLS && HAVE___THREAD.
4323 * sysdeps/unix/sysv/linux/i386/sysdep.h: Unify SETUP_PIC_REG
4324 definitions. If USE_TLS && HAVE___THREAD store errooor value using
4325 TLS code sequence.
4326 * sysdeps/unix/sysv/linux/i386/i686/sysdep.h: Likewise.
4327
4328 * sysdeps/unix/sysv/linux/getcwd.c: No real need to restore errno.
4329 * sysdeps/unix/sysv/linux/grantpt.c: Likewise.
4330 * sysdeps/unix/sysv/linux/internal_statvfs.c: Likewise.
4331 * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
4332 * sysdeps/unix/sysv/linux/readv.c: Likewise.
4333 * sysdeps/unix/sysv/linux/writev.c: Likewise.
4334
4335 2002-07-17 Ulrich Drepper <drepper@redhat.com>
4336
4337 * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Fix MS_SYNC and
4338 MS_INVALIDATE values.
4339
4340 2002-07-17 Andreas Schwab <schwab@suse.de>
4341 Ulrich Drepper <drepper@redhat.com>
4342
4343 * sysdeps/unix/sysv/linux/pread.c: Sign extend offset.
4344 * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
4345 * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
4346 * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
4347
4348 2002-07-01 H.J. Lu <hjl@gnu.org>
4349
4350 * elf/circleload1.c (load_dso): Call "circlemod1" and check
4351 return value.
4352
4353 * elf/circlemod1.c (circlemod1): Return int.
4354 * elf/circlemod2.c (circlemod2): Likewise.
4355 * elf/circlemod2a.c (circlemod2): Likewise.
4356 * elf/circlemod3.c (circlemod3): Likewise.
4357 (circlemod3a): A new function.
4358
4359 2002-07-16 Ulrich Drepper <drepper@redhat.com>
4360
4361 * catgets/tst-catgets.c (main): Don't expect results for
4362 untranslated messages.
4363
4364 * glibcbug.in: Fix little typo. Remove STDIO.
4365
4366 * config.h.in: Fail if __FAST_MATH__ is defined.
4367 * math/Makefile (CPPFLAGS-test-ifloat.c): Also define TEST_FAST_MATH.
4368 (CPPFLAGS-test-idouble.c): Likewise.
4369 (CPPFLAGS-test-ildouble.c): Likewise.
4370
4371 2002-07-15 Ulrich Drepper <drepper@redhat.com>
4372
4373 * intl/tst-gettext.sh: Pass -f option to msgfmt.
4374 * intl/tst-gettext.c: Correctly handle untranslated messages in
4375 positive tests.
4376
4377 * po/de.po: Update from translation team.
4378
4379 2002-07-02 H.J. Lu <hjl@gnu.org>
4380
4381 * sysdeps/mips/atomicity.h: Don't include <sgidefs.h>. Always
4382 use ll/sc.
4383 * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
4384
4385 * sysdeps/unix/sysv/linux/configure.in: Set arch_minimum_kernel
4386 to 2.4.0 for mips.
4387
4388 2002-07-15 Ulrich Drepper <drepper@redhat.com>
4389
4390 * elf/dl-load.c (_dl_map_object_from_fd): If loaded object uses
4391 TLS fail if USE_TLS is not defined.
4392
4393 * libio/wfileops.c (_IO_wfile_seekoff): Reposition wide pointers
4394 and adjust state for seek position. [PR libc/4070]
4395 * libio/Makefile (tests): Add bug-rewind.
4396 * libio/bug-rewind.c: New file.
4397
4398 2002-07-12 Philip Blundell <philb@gnu.org>
4399
4400 * sysdeps/generic/backtrace.c (FIRST_FRAME_POINTER): New macro.
4401 (__backtrace): Use it.
4402 * sysdeps/arm/frame.h (FIRST_FRAME_POINTER): Define. [PR libc/2632]
4403
4404 2002-07-12 Philip Blundell <philb@gnu.org>
4405
4406 * sysdeps/arm/dl-machine.h (elf_machine_rel): Don't handle
4407 R_ARM_RELATIVE if RTLD_BOOTSTRAP and HAVE_Z_COMBRELOC. Only check
4408 for rtld map if neither RTLD_BOOTSTRAP nor HAVE_Z_COMBRELOC is defined.
4409 (elf_machine_rela): Remove unused variable.
4410
4411 * sysdeps/unix/sysv/linux/arm/Makefile [subdir=elf]
4412 (sysdep-rtld-routines, sysdep_routines, sysdep-dl-routines): Don't
4413 define.
4414
4415 2002-07-12 Ulrich Drepper <drepper@redhat.com>
4416
4417 * iconvdata/gconv-modules: Add aliases for ISO-8859-11.
4418
4419 2002-07-14 Andreas Jaeger <aj@suse.de>
4420
4421 * sysdeps/x86_64/bits/link.h: Add biarch support.
4422
4423 2002-07-13 Andreas Jaeger <aj@suse.de>
4424
4425 * sysdeps/unix/sysv/linux/mips/register-dump.h (register_dump):
4426 Use correct indices.
4427 Patch by Eliot Dresselhaus <eliot@ayrnetworks.com>.
4428
4429 2002-07-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
4430
4431 * sysdeps/s390/bits/byteswap.h: Unified 31/64 bit byteswap.h.
4432 * sysdeps/s390/s390-32/bits/byteswap.h: Remove.
4433 * sysdeps/s390/s390-64/bits/byteswap.h: Remove.
4434 * sysdeps/s390/bits/link.h: Unified 31/64 bit link.h.
4435 * sysdeps/s390/s390-32/bits/link.h: Remove.
4436 * sysdeps/s390/s390-64/bits/link.h: Remove.
4437 * sysdeps/s390/bits/setjmp.h: Unified 31/64 bit setjmp.h.
4438 * sysdeps/s390/s390-32/bits/setjmp.h: Remove.
4439 * sysdeps/s390/s390-64/bits/setjmp.h: Remove.
4440 * sysdeps/s390/bits/wordsize.h: New file.
4441 * sysdeps/unix/sysv/linux/s390/bits/elfclass.h: Unified 31/64 bit
4442 elfclass.h.
4443 * sysdeps/unix/sysv/linux/s390/s390-64/bits/elfclass.h: Remove.
4444 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Unified 31/64 bit fcntl.h.
4445 * sysdeps/unix/sysv/linux/s390/s390-32/bits/fcntl.h: Remove.
4446 * sysdeps/unix/sysv/linux/s390/s390-64/bits/fcntl.h: Remove.
4447 * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Unified 31/64 bit ipc.h.
4448 * sysdeps/unix/sysv/linux/s390/s390-64/bits/ipc.h: Remove.
4449 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Unified 31/64 bit mman.h.
4450 * sysdeps/unix/sysv/linux/s390/s390-32/bits/mman.h: Remove.
4451 * sysdeps/unix/sysv/linux/s390/s390-64/bits/mman.h: Remove.
4452 * sysdeps/unix/sysv/linux/s390/bits/msq.h: Unified 31/64 bit msq.h.
4453 * ysdeps/unix/sysv/linux/s390/s390-64/bits/msq.h: Remove.
4454 * sysdeps/unix/sysv/linux/s390/bits/resource.h: Unified 31/64 bit
4455 resource.h.
4456 * sysdeps/unix/sysv/linux/s390/s390-32/bits/resource.h: Remove.
4457 * sysdeps/unix/sysv/linux/s390/s390-64/bits/resource.h: Remove.
4458 * sysdeps/unix/sysv/linux/s390/bits/sem.h: Unified 31/64 bit sem.h.
4459 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sem.h: Remove.
4460 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Unified 31/64 bit shm.h.
4461 * sysdeps/unix/sysv/linux/s390/s390-64/bits/shm.h: Remove.
4462 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h: Unified 31/64 bit
4463 sigaction.h.
4464 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigaction.h: Remove.
4465 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Unified 31/64 bit
4466 siginfo.h.
4467 * sysdeps/unix/sysv/linux/s390/s390-64/bits/siginfo.h: Remove.
4468 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigstack.h: Remove.
4469 * sysdeps/unix/sysv/linux/s390/bits/socket.h: Unified 31/64 bit
4470 socket.h.
4471 * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h: Remove.
4472 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Unified 31/64 bit stat.h.
4473 * sysdeps/unix/sysv/linux/s390/s390-32/bits/stat.h: Remove.
4474 * sysdeps/unix/sysv/linux/s390/s390-64/bits/stat.h: Remove.
4475 * sysdeps/unix/sysv/linux/s390/bits/types.h: Unified 31/64 bit types.h.
4476 * sysdeps/unix/sysv/linux/s390/s390-64/bits/types.h: Remove.
4477 * sysdeps/unix/sysv/linux/s390/net/route.h: New file.
4478 * sysdeps/unix/sysv/linux/s390/sys/procfs.h: Unified 31/64 bit
4479 procfs.h.
4480 * sysdeps/unix/sysv/linux/s390/s390-32/sys/procfs.h: Remove.
4481 * sysdeps/unix/sysv/linux/s390/s390-64/sys/procfs.h: Remove.
4482 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Unified 31/64 bit
4483 ucontext.h.
4484 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Remove.
4485 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Remove.
4486
4487 2002-07-11 Ulrich Drepper <drepper@redhat.com>
4488
4489 * Versions.def (libc): Add GLIBC_2.3.
4490 * stdlib/Versions [libc] (GLIBC_2.3): Add realpath.
4491 * stdlib/canonicalize.c: Add compatibility version for realpath
4492 and make new code available in GLIBC_2.3.
4493
4494 2002-07-06 Bruno Haible <bruno@clisp.org>
4495
4496 * malloc/hooks.c (public_gET_STATe): Access max_total_mem in mp_.
4497
4498 2002-07-11 Ulrich Drepper <drepper@redhat.com>
4499
4500 * resolv/res_hconf.c (_res_hconf_init): Move code into new
4501 function do_init. Use __libc_once.
4502 (do_init): New function.
4503
4504 * iconvdata/iso8859-11.h: Removed.
4505 * iconvdata/Makefile (gen-8bit-gap-modules): Add iso8859-11.
4506 (distribute): Remove iso8859-11.h.
4507 * iconvdata/tst-tables.sh: Add ISO-8859-11.
4508
4509 * stdio-common/vfscanf.c (inchar): Restore errno from previous
4510 underflow operation if c == (W)EOF.
4511
4512 2002-07-03 Jakub Jelinek <jakub@redhat.com>
4513
4514 * stdio-common/printf_fp.c (__printf_fp): If _FPIO_CONST_SHIFT is
4515 non-zero, adjust exponent.
4516 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl, erfl, __erfcl, erfcl):
4517 Remove NO_LONG_DOUBLE aliases.
4518 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l, expm1l): Likewise.
4519 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl, log1pl): Likewise.
4520 (__log1pl): Raise divide by zero and invalid exceptions when needed.
4521 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Special case
4522 1**y and -1**+-Inf.
4523 * sysdeps/ieee754/ldbl-128/ldbl2mpn.c (__mpn_extract_long_double):
4524 Fix BITS_PER_MP_LIMB 32 extraction.
4525 * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Don't raise
4526 exceptions for qNaNs.
4527 * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Likewise.
4528 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgamma_r):
4529 Raise exceptions when needed. Don't recurse unnecessarily.
4530 Special case 1.0L and 2.0L arguments to avoid -0.0L as result.
4531 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_y0l): Don't raise
4532 exceptions for qNaNs.
4533 * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Make qs 64-bit
4534 to fix *quo return value sign.
4535 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gamma_r): Special
4536 case -Inf argument.
4537 * soft-fp/op-4.h (_FP_FRAC_CLZ_4): Fix a pasto.
4538
4539 2002-07-01 Jakub Jelinek <jakub@redhat.com>
4540
4541 * libio/tst-eof.c (do_test): Remove unused ch and tm variables.
4542 * iconvdata/iso-2022-jp-3.c (EMIT_SHIFT_TO_INIT): Kill warnings if
4543 -DNDEBUG.
4544
4545 2002-07-10 Ulrich Drepper <drepper@redhat.com>
4546
4547 * malloc/hooks.c (realloc_check): If mremap succeeds actually use
4548 the result.
4549
4550 * sysdeps/i386/i486/bits/string.h: Add early clobber for "a"
4551 output parameter. Reported by Denis Zaitsev <zzz@cd-club.ru>.
4552
4553 * Versions.def (libthread_db): Add GLIBC_2.3.
4554
4555 2002-07-09 Jakub Jelinek <jakub@redhat.com>
4556
4557 * libio/freopen.c (freopen): Reset jump tables, use mmap stdio for the
4558 new stream if possible.
4559 * libio/freopen64.c (freopen64): Likewise.
4560 * libio/Makefile (tests): Add tst-freopen.
4561 * libio/tst-freopen.c: New file.
4562
4563 2002-07-03 Jakub Jelinek <jakub@redhat.com>
4564
4565 * libio/stdio.h (obstack_printf): Add format attribute.
4566 (obstack_vprintf): Likewise.
4567
4568 2002-07-04 Jakub Jelinek <jakub@redhat.com>
4569
4570 * posix/regex_internal.h (re_token_t): Shrink the structure to 8
4571 resp. 16 bytes on 32-bit resp. 64-bit platforms.
4572 (re_charset_t, re_string_t): Reorder structure members for 64-bit
4573 architectures.
4574
4575 2002-07-04 Jakub Jelinek <jakub@redhat.com>
4576
4577 * posix/regcomp.c (re_compile_internal): Move clearing of dfa...
4578 (init_dfa): ...here.
4579
4580 2002-07-05 Isamu Hasegawa <isamu@yamato.ibm.com>
4581
4582 * posix/regcomp.c (parse_sub_exp): Add nodes OP_OPEN_SUBEXP and
4583 OP_CLOSE_SUBEXP at both ends of sub expressions instead of SUBEXP
4584 nodes in parse trees.
4585 (calc_first): Fix the Definition of `firsts' of OP_OPEN_SUBEXP
4586 and OP_CLOSE_SUBEXP, and remove the definition of SUBEXP.
4587 (calc_epsdest): Treat OP_OPEN_SUBEXP and OP_CLOSE_SUBEXP as the
4588 nodes which can epsilon transit.
4589 * posix/regex_internal.h: Add OP_OPEN_SUBEXP and OP_CLOSE_SUBEXP
4590 to IS_EPSILON_NODE macro.
4591 * posix/regexec.c (update_regs): New function to update registers
4592 by refering OP_OPEN_SUBEXP and OP_CLOSE_SUBEXP nodes.
4593 (proceed_next_node): Use the entities of the nodes to determine
4594 whether the node can transit to.
4595 (set_regs): Use update_regs function to update registers.
4596
4597 2002-07-03 Jakub Jelinek <jakub@redhat.com>
4598
4599 * posix/bug-regex4.c (main): Remove duplicate setlocale.
4600 * posix/bug-regex6.c: New file.
4601 * posix/Makefile (tests): Add bug-regex6.
4602 (bug-regex6-ENV): Set LOCPATH.
4603
4604 2002-07-10 Ulrich Drepper <drepper@redhat.com>
4605
4606 * Versions.def [libpthread]: Add GLIBC_2.2.6.
4607 * posix/Versions [libc] (GLIBC_2.2.6): Add __nanosleep.
4608
4609 2002-07-06 Bruno Haible <bruno@clisp.org>
4610
4611 * sysdeps/unix/sysv/sysv4/bits/sigset.h (__NSSBITS): Correct value.
4612
4613 2002-07-06 Bruno Haible <bruno@clisp.org>
4614
4615 * include/sys/socket.h (__libc_sendto, __libc_recvfrom): New
4616 declarations.
4617
4618 * sysdeps/i386/fpu/libm-test-ulps: Add some ulps for AMD K7.
4619
4620 * rt/Makefile (tests): Don't add tst-aio* in a single-threaded build.
4621
4622 * sysdeps/unix/bsd/sun/sunos4/bits/utsname.h: Test for _SYS_UTSNAME_H,
4623 not _UTSNAME_H.
4624 * sysdeps/unix/bsd/ultrix4/bits/utsname.h: Likewise.
4625
4626 * sysdeps/generic/bits/stropts.h: Protect against direct inclusion.
4627 * sysdeps/generic/bits/ustat.h: Likewise.
4628
4629 * sysdeps/unix/sysv/linux/bits/statvfs.h (ST_NODIRATIME): Set to 2048.
4630
4631 2002-07-08 Andreas Jaeger <aj@suse.de>
4632
4633 * sysdeps/x86_64/elf/initfini.c (__asm__): Call call_gmon_start.
4634
4635 2002-07-08 Andreas Jaeger <aj@suse.de>
4636
4637 * sysdeps/x86_64/fpu/s_fdiml.S: Fix wrong register name.
4638
4639 2002-07-06 Andreas Jaeger <aj@suse.de>
4640
4641 * sysdeps/x86_64/fpu/bits/mathinline.h: New file.
4642 * sysdeps/x86_64/fpu/s_copysign.S: New file.
4643 * sysdeps/x86_64/fpu/s_copysignf.S: New file.
4644 * sysdeps/x86_64/fpu/s_copysignl.S: New file.
4645 * sysdeps/x86_64/fpu/s_finitel.S: New file.
4646 * sysdeps/x86_64/fpu/s_fmax.S: New file.
4647 * sysdeps/x86_64/fpu/s_fmaxf.S: New file.
4648 * sysdeps/x86_64/fpu/s_fmaxl.S: New file.
4649 * sysdeps/x86_64/fpu/s_fmin.S: New file.
4650 * sysdeps/x86_64/fpu/s_fminf.S: New file.
4651 * sysdeps/x86_64/fpu/s_fminl.S: New file.
4652
4653 2002-06-05 Brian Youmans <3diff@gnu.org>
4654
4655 * sysdeps/ia64/fpu/e_acos.S: Added text of Intel license.
4656 * sysdeps/ia64/fpu/e_acosf.S: Likewise.
4657 * sysdeps/ia64/fpu/e_acosl.S: Likewise.
4658 * sysdeps/ia64/fpu/e_asin.S: Likewise.
4659 * sysdeps/ia64/fpu/e_asinf.S: Likewise.
4660 * sysdeps/ia64/fpu/e_asinl.S: Likewise.
4661 * sysdeps/ia64/fpu/e_atan2.S: Likewise.
4662 * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
4663 * sysdeps/ia64/fpu/e_cosh.S: Likewise.
4664 * sysdeps/ia64/fpu/e_coshf.S: Likewise.
4665 * sysdeps/ia64/fpu/e_coshl.S: Likewise.
4666 * sysdeps/ia64/fpu/e_exp.S: Likewise.
4667 * sysdeps/ia64/fpu/e_expf.S: Likewise.
4668 * sysdeps/ia64/fpu/e_fmod.S: Likewise.
4669 * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
4670 * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
4671 * sysdeps/ia64/fpu/e_hypot.S: Likewise.
4672 * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
4673 * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
4674 * sysdeps/ia64/fpu/e_log.S: Likewise.
4675 * sysdeps/ia64/fpu/e_logf.S: Likewise.
4676 * sysdeps/ia64/fpu/e_pow.S: Likewise.
4677 * sysdeps/ia64/fpu/e_powf.S: Likewise.
4678 * sysdeps/ia64/fpu/e_powl.S: Likewise.
4679 * sysdeps/ia64/fpu/e_remainder.S: Likewise.
4680 * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
4681 * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
4682 * sysdeps/ia64/fpu/e_scalb.S: Likewise.
4683 * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
4684 * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
4685 * sysdeps/ia64/fpu/e_sinh.S: Likewise.
4686 * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
4687 * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
4688 * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
4689 * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
4690 * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
4691 * sysdeps/ia64/fpu/libm_atan2_req.S: Likewise.
4692 * sysdeps/ia64/fpu/libm_error.c: Likewise.
4693 * sysdeps/ia64/fpu/libm_frexp4.S: Likewise.
4694 * sysdeps/ia64/fpu/libm_frexp4f.S: Likewise.
4695 * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
4696 * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
4697 * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
4698 * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
4699 * sysdeps/ia64/fpu/s_ldexp.S: Likewise.
4700 * sysdeps/ia64/fpu/s_ldexpf.S: Likewise.
4701 * sysdeps/ia64/fpu/s_ldexpl.S: Likewise.
4702 * sysdeps/ia64/fpu/s_log1p.S: Likewise.
4703 * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
4704 * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
4705 * sysdeps/ia64/fpu/s_logb.S: Likewise.
4706 * sysdeps/ia64/fpu/s_logbf.S: Likewise.
4707 * sysdeps/ia64/fpu/s_logbl.S: Likewise.
4708 * sysdeps/ia64/fpu/s_modf.S: Likewise.
4709 * sysdeps/ia64/fpu/s_modff.S: Likewise.
4710 * sysdeps/ia64/fpu/s_modfl.S: Likewise.
4711 * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
4712 * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
4713 * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
4714 * sysdeps/ia64/fpu/s_rint.S: Likewise.
4715 * sysdeps/ia64/fpu/s_rintf.S: Likewise.
4716 * sysdeps/ia64/fpu/s_rintl.S: Likewise.
4717 * sysdeps/ia64/fpu/s_round.S: Likewise.
4718 * sysdeps/ia64/fpu/s_roundf.S: Likewise.
4719 * sysdeps/ia64/fpu/s_roundl.S: Likewise.
4720 * sysdeps/ia64/fpu/s_scalbn.S: Likewise.
4721 * sysdeps/ia64/fpu/s_scalbnf.S: Likewise.
4722 * sysdeps/ia64/fpu/s_scalbnl.S: Likewise.
4723 * sysdeps/ia64/fpu/s_significand.S: Likewise.
4724 * sysdeps/ia64/fpu/s_significandf.S: Likewise.
4725 * sysdeps/ia64/fpu/s_significandl.S: Likewise.
4726 * sysdeps/ia64/fpu/s_tan.S: Likewise.
4727 * sysdeps/ia64/fpu/s_tanf.S: Likewise.
4728 * sysdeps/ia64/fpu/s_tanl.S: Likewise.
4729 * sysdeps/ia64/fpu/s_trunc.S: Likewise.
4730 * sysdeps/ia64/fpu/s_truncf.S: Likewise.
4731 * sysdeps/ia64/fpu/s_truncl.S: Likewise.
4732 * sysdeps/ieee754/dbl-64/doasin.c: Changed copyright notice to
4733 reflect IBM donation of math library to FSF
4734 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
4735 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
4736 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
4737 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
4738 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
4739 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
4740 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
4741 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
4742 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
4743 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
4744 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
4745 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
4746 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
4747 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
4748 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
4749 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
4750 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
4751 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
4752 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
4753 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
4754 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
4755 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
4756 * sysdeps/gnu/netinet/udp.h: Added BSD copying permission notice
4757 * sysdeps/vax/__longjmp.c: Likewise.
4758 * sysdeps/vax/setjmp.c: Likewise.
4759 * libio/filedoalloc.c: Fixed BSD copying permission notice to
4760 remove advertising clause
4761 * sysdeps/vax/htonl.s: Likewise.
4762 * sysdeps/vax/htons.s: Likewise.
4763 * libio/wfiledoalloc.c: Likewise.
4764 * stdlib/random.c: Likewise.
4765 * stdlib/random_r.c: Likewise.
4766 * sysdeps/mach/sys/reboot.h: Likewise.
4767 * inet/getnameinfo.c: Deleted advertising clause from Inner Net License
4768 * sysdeps/posix/getaddrinfo.c: Likewise.
4769 * sunrpc/des_impl.c: Updated license permission notice to Lesser
4770 GPL and corrected pointer to point to the correct license.
4771
4772 2002-07-04 Andreas Jaeger <aj@suse.de>
4773
4774 * scripts/config.guess: New upstream version.
4775 * scripts/config.sub: Likewise.
4776
4777 2002-07-02 Andreas Schwab <schwab@suse.de>
4778
4779 * resolv/nss_dns/dns-network.c (getanswer_r): Reduce linebuflen
4780 in parallel to bumping up the buffer pointer.
4781
4782 2002-07-01 Jakub Jelinek <jakub@redhat.com>
4783
4784 * math/libm-test.inc (acos_test): Add missing L suffix for
4785 expected result.
4786 (cpow_test): Likewise.
4787 * sysdeps/i386/fpu/libm-test-ulps: Adjust errors for cpow, remove
4788 error for acos (0.0625).
4789
4790 2002-06-30 Ulrich Drepper <drepper@redhat.com>
4791
4792 * locale/iso-639.def: Add entry for Ganda.
4793 * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE3): New
4794 definition.
4795 (address_finish): Handle entries with two letter ISO 639 code.
4796
4797 * iconvdata/Makefile: Recreate gconv-modules.cache file in target
4798 directory if it existed before.
4799 * iconv/iconvconfig.c: Implement --prefix option.
4800
4801 * math/libm-test.inc (cexp_test): Add missing L suffix for
4802 expected result. Reported by Stephen L Moshier <steve@moshier.net>.
4803 * sysdeps/i386/fpu/libm-test-ulps: Adjust error for cexp (0.75 +
4804 1.25 i).
4805
4806 2002-05-29 H.J. Lu <hjl@gnu.org>
4807
4808 * elf/dl-error.c (_dl_signal_cerror): Report error if ld.so debug
4809 is turned on.
4810
4811 2002-05-28 H.J. Lu <hjl@gnu.org>
4812
4813 * elf/dl-deps.c (_dl_map_object_deps): Don't add objects which
4814 are not dlopened on the dependency list of a dlopened object.
4815
4816 2002-06-30 Ulrich Drepper <drepper@redhat.com>
4817
4818 * elf/dl-lookup.c (add_dependency): It is not necessary to add
4819 dependencies if they are created between objects which are created
4820 while processing RTLD_NOW for objects loaded as part of the same
4821 dlopen call.
4822
4823 2002-06-14 H.J. Lu <hjl@gnu.org>
4824
4825 * elf/Makefile (tests): Add circleload1.
4826 (modules-names): Add circlemod1, circlemod2, circlemod3,
4827 circlemod1a, circlemod2a and circlemod3a.
4828 ($(objpfx)circleload1): New target.
4829 ($(objpfx)circleload1.out): Likewise.
4830 ($(objpfx)circlemod1.so): Likewise.
4831 ($(objpfx)circlemod2.so): Likewise.
4832 ($(objpfx)circlemod1a.so): Likewise.
4833 ($(objpfx)circlemod2a.so): Likewise.
4834 * elf/circleload1.c: New file.
4835 * elf/circlemod1.c: New file.
4836 * elf/circlemod1a.c: New file.
4837 * elf/circlemod2.c: New file.
4838 * elf/circlemod2a.c: New file.
4839 * elf/circlemod3.c: New file.
4840 * elf/circlemod3a.c: New file.
4841
4842 2002-06-18 Amos Waterland <apw@us.ibm.com>
4843
4844 * sysdeps/pthread/aio_cancel.c (aio_cancel): Add check for invalid
4845 file descriptor.
4846 * sysdeps/pthread/aio_fsync.c (aio_fsync): Add check for invalid fd;
4847 add check for fd not open for writing.
4848
4849 * sysdeps/pthread/aio_suspend.c (aio_suspend): Add check for
4850 completed element(s) and do not suspend thread if so. Patch
4851 heavily modified by drepper.
4852
4853 * rt/tst-aio7.c: New file. Regression test for problems which the
4854 above three changes fix.
4855 * rt/Makefile (tests): Add tst-aio7.
4856
4857 2002-06-29 Ulrich Drepper <drepper@redhat.com>
4858
4859 * rt/tst-aio6.c: Fix comment.
4860
4861 * catgets/gencat.c (read_input_file): Handle more than one slash
4862 at end of line correctly [PR libc/3926].
4863 Based on a patch by Steven Kim <steven.kim@peregrine.com>.
4864
4865 * catgets/sample.SJIS: Add test case for above bug.
4866 * catgets/test-gencat.c: Adjust test code.
4867 * catgets/test-gencat.sh: Adjust expected results.
4868
4869 * elf/do-rel.h (elf_dynamic_do_rel): Avoid overflow in computation
4870 to skip relative relocations.
4871 Patch by Geoff Keating <geoffk@redhat.com>.
4872
4873 2002-05-26 Bruno Haible <bruno@clisp.org>
4874
4875 * iconv/loop.c (STANDARD_FROM_LOOP_ERR_HANDLER): New macro.
4876 (STANDARD_TO_LOOP_ERR_HANDLER): Renamed from STANDARD_ERR_HANDLER.
4877 All callers changed.
4878 * iconv/gconv_simple.c (ascii_internal_loop): For error handling use
4879 STANDARD_FROM_LOOP_ERR_HANDLER.
4880 (utf8_internal_loop): Likewise.
4881 (ucs2_internal_loop): Likewise.
4882 (internal_ucs2_loop): Perform error handling like in
4883 STANDARD_FROM_LOOP_ERR_HANDLER.
4884 * iconvdata/unicode.c (BODY for TO_LOOP): Perform error handling like
4885 in STANDARD_FROM_LOOP_ERR_HANDLER.
4886 (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4887 handling.
4888 * iconvdata/utf-16.c (BODY for TO_LOOP): Perform error handling like
4889 in STANDARD_FROM_LOOP_ERR_HANDLER.
4890 (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4891 handling.
4892 * iconvdata/utf-32.c (BODY for TO_LOOP): Perform error handling like
4893 in STANDARD_FROM_LOOP_ERR_HANDLER.
4894 (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4895 handling.
4896 * iconvdata/big5.c (BODY for FROM_LOOP): For error handling use
4897 STANDARD_FROM_LOOP_ERR_HANDLER.
4898 * iconvdata/iso-2022-jp.c (BODY for FROM_LOOP): Likewise.
4899 * iconvdata/8bit-gap.c (BODY for FROM_LOOP): Likewise.
4900 * iconvdata/8bit-generic.c (BODY for FROM_LOOP): Likewise.
4901 * iconvdata/ansi_x3.110.c (BODY for FROM_LOOP): Likewise.
4902 * iconvdata/armscii-8.c (BODY for FROM_LOOP): Likewise.
4903 * iconvdata/cp1255.c (BODY for FROM_LOOP): Likewise.
4904 * iconvdata/cp1258.c (BODY for FROM_LOOP): Likewise.
4905 * iconvdata/euc-cn.c (BODY for FROM_LOOP): Likewise.
4906 * iconvdata/euc-jisx0213.c (BODY for FROM_LOOP): Likewise.
4907 * iconvdata/euc-jp.c (BODY for FROM_LOOP): Likewise.
4908 * iconvdata/euc-kr.c (BODY for FROM_LOOP): Likewise.
4909 * iconvdata/euc-tw.c (BODY for FROM_LOOP): Likewise.
4910 * iconvdata/big5hkscs.c (BODY for FROM_LOOP): Likewise.
4911 * iconvdata/gb18030.c (BODY for FROM_LOOP): Likewise.
4912 * iconvdata/gbk.c (BODY for FROM_LOOP): Likewise.
4913 * iconvdata/iso-2022-cn-ext.c (BODY for FROM_LOOP): Likewise.
4914 * iconvdata/iso-2022-cn.c (BODY for FROM_LOOP): Likewise.
4915 * iconvdata/iso-2022-jp-3.c (BODY for FROM_LOOP): Likewise.
4916 * iconvdata/iso-2022-kr.c (BODY for FROM_LOOP): Likewise.
4917 * iconvdata/iso646.c (BODY for FROM_LOOP): Likewise.
4918 * iconvdata/iso_6937-2.c (BODY for FROM_LOOP): Likewise.
4919 * iconvdata/iso_6937.c (BODY for FROM_LOOP): Likewise.
4920 * iconvdata/johab.c (BODY for FROM_LOOP): Likewise.
4921 * iconvdata/shift_jisx0213.c (BODY for FROM_LOOP): Likewise.
4922 * iconvdata/sjis.c (BODY for FROM_LOOP): Likewise.
4923 * iconvdata/t.61.c (BODY for FROM_LOOP): Likewise.
4924 * iconvdata/uhc.c (BODY for FROM_LOOP): Likewise.
4925 * iconvdata/utf-7.c (BODY for FROM_LOOP): Likewise.
4926 * iconvdata/gbbig5.c (BODY for FROM_LOOP): Likewise. When ignoring
4927 an error, still set result = __GCONV_ILLEGAL_INPUT.
4928 (BODY for TO_LOOP): Likewise.
4929 * iconvdata/ibm930.c (BODY for FROM_LOOP): For error handling use
4930 STANDARD_FROM_LOOP_ERR_HANDLER.
4931 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4932 * iconvdata/ibm932.c: Include <dlfcn.h> and <stdint.h>.
4933 (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4934 handling.
4935 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4936 * iconvdata/ibm933.c (BODY for FROM_LOOP): For error handling use
4937 STANDARD_FROM_LOOP_ERR_HANDLER.
4938 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4939 * iconvdata/ibm935.c (BODY for FROM_LOOP): For error handling use
4940 STANDARD_FROM_LOOP_ERR_HANDLER.
4941 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4942 * iconvdata/ibm937.c (BODY for FROM_LOOP): For error handling use
4943 STANDARD_FROM_LOOP_ERR_HANDLER.
4944 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4945 * iconvdata/ibm939.c (BODY for FROM_LOOP): For error handling use
4946 STANDARD_FROM_LOOP_ERR_HANDLER.
4947 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4948 * iconvdata/ibm943.c: Include <dlfcn.h> and <stdint.h>.
4949 (BODY for FROM_LOOP): Use STANDARD_FROM_LOOP_ERR_HANDLER for error
4950 handling.
4951 (BODY for TO_LOOP): Here use STANDARD_TO_LOOP_ERR_HANDLER.
4952 * iconvdata/gbgbk.c (BODY for FROM_LOOP): Update.
4953 * iconvdata/iso8859-1.c (BODY for TO_LOOP): Update.
4954 * iconvdata/tcvn5712-1.c (BODY for TO_LOOP): Update.
4955
4956 2002-06-28 Kaz Kojima <kkojima@rr.iij4u.or.jp>
4957
4958 * sysdeps/sh/dl-machine.h (elf_machine_load_address): Use local
4959 labels in assembler instructions.
4960
4961 2002-06-25 Ulrich Drepper <drepper@redhat.com>
4962
4963 * libio/fileops.c (_IO_file_xsgetn_mmap): Always set EOF flag if
4964 not enough content is available.
4965 * libio/tst-eof.c: New file.
4966 * libio/Makefile (tests): Add tst-eof.
4967
4968 * libio/fileops.c (_IO_file_underflow_mmap): Read a single byte to
4969 update atime.
4970 * libio/tst-atime.c: New file.
4971 * libio/Makefile (tests): Add tst-atime.
4972
4973 * argp/argp-fmtstream.c (__argp_fmtstream_update): Avoid crash in
4974 handling of overly long words.
4975
4976 2002-06-25 Andreas Jaeger <aj@suse.de>
4977
4978 * sysdeps/x86-64/dl-machine.h (elf_machine_load_address): Rewrite
4979 to not use 32-bit pc relative relocations.
4980 (elf_machine_dynamic): Likewise.
4981
4982 2002-06-21 Ulrich Drepper <drepper@redhat.com>
4983
4984 * sysdeps/unix/sysv/linux/getdents.c [__ASSUME_GETDENTS64_SYSCALL]
4985 (__GETDENTS): Check for failed getdents64 syscall.
4986 * dirent/Makefile (tests): Add bug-readdir1.
4987 * dirent/bug-readdir1.c: New file.
4988
4989 2002-06-17 Jakub Jelinek <jakub@redhat.com>
4990
4991 * elf/dl-lookup.c (_dl_debug_bindings): Use type_class 4 for TLS
4992 lookups.
4993 * elf/rtld.c (dl_main): Move TLS setup code before LD_TRACE_PRELINKING
4994 code. Print TLS modid and offset for modules containing PT_TLS
4995 segments.
4996
4997 2002-06-09 Jakub Jelinek <jakub@redhat.com>
4998
4999 * sysdeps/unix/sysv/linux/i386/dl-brk.c: Move...
5000 * sysdeps/unix/sysv/linux/dl-brk.c: ...here.
5001 * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: Move...
5002 * sysdeps/unix/sysv/linux/dl-sbrk.c: ...here.
5003
5004 2002-06-07 Jakub Jelinek <jakub@redhat.com>
5005
5006 * nss/getXXbyYY_r.c (NEW, NEW1): Define.
5007 (NEW (REENTRANT_NAME)): Strong alias to INTERNAL (REENTRANT_NAME).
5008 (REENTRANT_NAME@@GLIBC_2.1.2): Use NEW (REENTRANT_NAME).
5009 * nss/getXXent_r.c (NEW, NEW1): Define.
5010 (NEW (REENTRANT_GETNAME)): Strong alias to
5011 INTERNAL (REENTRANT_GETNAME).
5012 (REENTRANT_GETNAME@@GLIBC_2.1.2): Use NEW (REENTRANT_GETNAME).
5013
5014 2002-06-21 Ulrich Drepper <drepper@redhat.com>
5015
5016 * libio/fileops.c (_IO_file_setbuf_mmap): New function.
5017 (_IO_file_jumps_mmap): Use it.
5018 * libio/iosetvbuf.c: Don't call _IO_WSETBUF.
5019 * libio/libioP.h: Remove _IO_wdefault_setbuf and
5020 _IO_wdefault_setbuf_internal prorotypes. Add _IO_file_setbuf_mmap
5021 prototype.
5022 * libio/wfileops.c (_IO_wfile_setbuf): Removed.
5023 (_IO_wfile_jumps_mmap): Don't use it anymore.
5024 * libio/wgenops.c (_IO_wdefault_setbuf): Removed.
5025 * libio/memstream.c (_IO_wmem_jumps): Use _IO_default_setbuf not
5026 _IO_wdefault_setbuf.
5027 * libio/vswprintf.c (_IO_wstrn_jumps): Likewise.
5028 * libio/wstrops.c (_IO_wstr_jumps): Likewise.
5029 * stdio-common/vfprintf.c (_IO_helper_jumps): Likewise.
5030
5031 2002-06-05 Jakub Jelinek <jakub@redhat.com>
5032
5033 * libio/Makefile (tests): Add tst-mmap-setvbuf.
5034 * libio/tst-mmap-setvbuf.c: New test.
5035
5036 2002-06-21 Andreas Jaeger <aj@suse.de>
5037
5038 * sysdeps/i386/fpu/libm-test-ulps: Add some ulps from my P3.
5039
5040 2002-06-18 Jakub Jelinek <jakub@redhat.com>
5041
5042 * include/unistd.h (__fork_internal): Remove.
5043 (__fork): Don't define to __fork_internal.
5044 * sysdeps/mach/hurd/fork.c (__fork): Remove INTDEF.
5045 * sysdeps/unix/sysv/aix/fork.c (__fork): Likewise.
5046 * sysdeps/unix/sysv/linux/ia64/fork.S (__fork_internal): Remove alias.
5047 * sysdeps/unix/sysv/linux/sparc/fork.S (__fork_internal): Likewise.
5048 * sysdeps/unix/sysv/linux/syscalls.list (__fork_internal): Likewise.
5049
5050 2002-06-20 Ulrich Drepper <drepper@redhat.com>
5051
5052 * po/hr.po: New file.
5053
5054 2002-06-11 Wolfram Gloger <wg@malloc.de>
5055
5056 * malloc/malloc.c: Fix error path when new_heap() returns NULL.
5057 Reported by Michael Meissner <meissner@redhat.com>.
5058
5059 2002-06-20 Ulrich Drepper <drepper@redhat.com>
5060
5061 * sysdeps/unix/sysv/linux/ia64/getcontext.S: Fix typo.
5062 Patch by Hans Boehm <hans_boehm@hp.com>.
5063
5064 2002-06-20 Andreas Jaeger <aj@suse.de>
5065
5066 * math/libm-test.inc: Use exact values as input parameters,
5067 compute output parameters with 36 digits for 128-bit long doubles.
5068 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
5069 * sysdeps/x86-64/fpu/libm-test-ulps: Regenerated.
5070 * sysdeps/ia64/fpu/libm-test-ulps: Regenerated.
5071
5072 2002-06-13 Stephen L Moshier <steve@moshier.net>
5073
5074 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Fix cases in which
5075 argument or result is subnormal.
5076
5077 2002-06-19 Ulrich Drepper <drepper@redhat.com>
5078
5079 * sysdeps/i386/fpu/s_remquo.S: Fix three mistakes in computing the
5080 quotient.
5081 * sysdeps/i386/fpu/s_remquof.S: Likewise.
5082 * sysdeps/i386/fpu/s_remquol.S: Likewise.
5083
5084 * sysdeps/hppa/dl-machine.h: Don't use multi-line string literals.
5085
5086 2002-06-17 David Mosberger <davidm@hpl.hp.com>
5087
5088 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h (uc_sigmask): Fix
5089 typo: corresponding sigcontext field is called sc_mask, not sc_sigmask.
5090 Reported by Peter A. Buhr.
5091
5092 2002-06-15 Roland McGrath <roland@frob.com>
5093
5094 * sysdeps/mach/hurd/mmap.c (__mmap): Add a dead case that quiets a
5095 warning.
5096
5097 * sysdeps/mach/hurd/getcwd.c
5098 (_hurd_canonicalize_directory_name_internal): unsigned int -> size_t
5099
5100 * sysdeps/unix/sysv/linux/bits/ustat.h: Moved to ...
5101 * sysdeps/generic/bits/ustat.h: ... here (was almost identical).
5102
5103 * sysdeps/alpha/divrem.h: Use local label instead of global one for
5104 jump to local subroutine.
5105
5106 2002-06-14 Roland McGrath <roland@frob.com>
5107
5108 * sysdeps/mach/hurd/i386/Makeconfig: File moved to ...
5109 * sysdeps/mach/hurd/Makeconfig: ... here.
5110
5111 2002-06-13 Andreas Schwab <schwab@suse.de>
5112
5113 * sysdeps/m68k/fpu/s_finite.c: Remove INTDEF.
5114 * sysdeps/m68k/fpu/s_finitef.c: Likewise.
5115 * sysdeps/m68k/fpu/s_finitel.c: Likewise.
5116
5117 2002-06-13 Roland McGrath <roland@frob.com>
5118
5119 * hurd/hurdstartup.h (_hurd_startup): int -> intptr_t in MAIN arg type.
5120 * hurd/hurdstartup.c (_hurd_startup): Likewise.
5121 Use intptr_t instead of int for argc in stack layout.
5122 * sysdeps/mach/hurd/alpha/init-first.c (init): Fix argument type.
5123 (_dl_init_first): Likewise.
5124 (_hurd_stack_setup): Likewise.
5125 (init1): Add a cast.
5126 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start: go): Fix arg type.
5127
5128 * sysdeps/mach/hurd/if_index.c (if_nameindex): Use size_t for AMOUNT
5129 argument to pfinet_siocgifconf RPC.
5130
5131 2002-06-13 Andreas Schwab <schwab@suse.de>
5132
5133 * sysdeps/m68k/fpu/s_isinf.c (INTDEFX): Define to get correct
5134 expansion order.
5135
5136 2002-06-12 Roland McGrath <roland@frob.com>
5137
5138 * sysdeps/generic/tmpfile.c [USE_IN_LIBIO] (tmpfile): Don't #define
5139 if already defined.
5140 [USE_IN_LIBIO]: Conditionalize versioned_symbol use on
5141 [GEN_THIS == __GT_FILE] so that tmpfile64.c's inclusion doesn't get it.
5142
5143 2002-06-11 Roland McGrath <roland@frob.com>
5144
5145 * sysdeps/mach/hurd/xstat64.c: Conditionalize entire contents of the
5146 file on [!RTLD_STAT64].
5147 * sysdeps/mach/hurd/fxstat64.c: Likewise.
5148
5149 * sysdeps/mach/hurd/tmpfile.c (tmpfile64): Define as alias of tmpfile.
5150 (__fdopen): Use INTUSE.
5151 * sysdeps/mach/hurd/tmpfile64.c: New file, empty placeholder.
5152
5153 * stdio-common/tmpfile64.c: File removed.
5154 * sysdeps/generic/tmpfile64.c: New file.
5155 * sysdeps/generic/tmpfile.c (GEN_THIS): New macro, define to __GT_FILE
5156 if not already defined.
5157 (tmpfile): Use it in place of __GT_FILE.
5158
5159 * include/unistd.h: Declare __chown_internal.
5160
5161 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Do real work here.
5162 * sysdeps/mach/hurd/sendfile.c (sendfile): Call that.
5163
5164 2002-06-09 Roland McGrath <roland@frob.com>
5165
5166 Update to new Hurd RPC interfaces supporting 64-bit file sizes.
5167 * sysdeps/mach/hurd/configure.in: Check for <hurd/version.h> with
5168 value of HURD_INTERFACE_VERSION >= 20020609.
5169 * sysdeps/mach/hurd/configure: Regenerated.
5170 * shlib-versions (.*-.*-gnu-gnu.*): Set libhurduser=0.3.
5171 * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Rewritten to
5172 convert a struct stat64 into a struct stat and return 0 or -1
5173 with errno set to EOVERFLOW.
5174 * sysdeps/mach/hurd/statfsconv.c (statfs64_conv): Likewise
5175 for struct statfs64 to struct statfs.
5176 * sysdeps/mach/hurd/xstat.c (__xstat): Use converter and call ...
5177 * sysdeps/mach/hurd/xstat64.c (__xstat64): ... this, real work here.
5178 * sysdeps/mach/hurd/fxstat.c (__fxstat): Likewise.
5179 * sysdeps/mach/hurd/fxstat64.c (__fxstat64): Likewise.
5180 * sysdeps/mach/hurd/lxstat.c (__lxstat): Likewise.
5181 * sysdeps/mach/hurd/lxstat64.c (__lxstat64): Likewise.
5182 * sysdeps/mach/hurd/statfs.c (__statfs): Likewise.
5183 * sysdeps/mach/hurd/statfs64.c (__statfs64): Likewise.
5184 * sysdeps/mach/hurd/fstatfs.c (__fstatfs): Likewise.
5185 * sysdeps/mach/hurd/fstatfs64.c (__fstatfs64): Likewise.
5186 * sysdeps/mach/hurd/pwrite64.c (__libc_pwrite64): Do real work here.
5187 * sysdeps/mach/hurd/pwrite.c (__libc_pwrite): Call that.
5188 * sysdeps/mach/hurd/pread64.c (__libc_pread64): Do real work here.
5189 * sysdeps/mach/hurd/pread.c (__libc_pread): Call that.
5190 * sysdeps/mach/hurd/lseek64.c (__libc_lseek64): Do real work here.
5191 * sysdeps/mach/hurd/lseek.c (__libc_lseek): Call that.
5192 * sysdeps/mach/hurd/readdir64.c (__readdir64): Do real work here.
5193 * sysdeps/mach/hurd/readdir.c (__readdir): Call that.
5194 * sysdeps/mach/hurd/readdir64_r.c (__readdir64_r): Do real work here.
5195 * sysdeps/mach/hurd/readdir_r.c (__readdir64_r): Call that.
5196 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry):
5197 Use struct stat64 for io_stat argument.
5198 * sysdeps/mach/hurd/readlink.c (__readlink): Likewise.
5199 * hurd/fopenport.c (seekio): Remove EOVERFLOW check, pass POS directly
5200 to io_seek.
5201 * hurd/fd-read.c (_hurd_fd_read): Use loff_t for OFFSET argument.
5202 * hurd/fd-write.c (_hurd_fd_write): Likewise.
5203 * hurd/hurd/fd.h: Update decls.
5204 * sysdeps/mach/hurd/getcwd.c
5205 (_hurd_canonicalize_directory_name_internal): Use ino64_t
5206 and struct dirent64.
5207 * sysdeps/mach/hurd/dl-sysdep.c (open_file): Use struct stat64.
5208 (__xstat): Renamed to __xstat64, use struct stat64 for argument.
5209 (__fxstat): Renamed to __fxstat64, use struct stat64 for argument.
5210 (__lseek): Renamed to __libc_lseek64, use off64_t for argument.
5211
5212 2002-06-08 Roland McGrath <roland@frob.com>
5213
5214 * sysdeps/mach/hurd/dirstream.h (struct __dirstream): Use size_t
5215 instead of unsigned long int for __allocation and __size members.
5216
5217 2002-06-09 Jakub Jelinek <jakub@redhat.com>
5218
5219 * sysdeps/unix/sysv/linux/i386/dl-brk.c: Move...
5220 * sysdeps/unix/sysv/linux/dl-brk.c: ...here.
5221 * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: Move...
5222 * sysdeps/unix/sysv/linux/dl-sbrk.c: ...here.
5223
5224 2002-06-07 Roland McGrath <roland@frob.com>
5225
5226 * sysdeps/mach/hurd/bits/environments.h: File removed.
5227
5228 2002-06-07 Jakub Jelinek <jakub@redhat.com>
5229
5230 * sysdeps/unix/sysv/linux/alpha/sendfile64.c: New file.
5231 * sysdeps/unix/sysv/linux/ia64/sendfile64.c: New file.
5232 * sysdeps/unix/sysv/linux/sparc/sparc64/sendfile64.c: New file.
5233 * sysdeps/unix/sysv/linux/x86_64/sendfile64.c: New file.
5234 * sysdeps/unix/sysv/linux/syscalls.list (sendfile): Remove EXTRA.
5235 (sendfile64): Likewise.
5236 * sysdeps/unix/sysv/linux/alpha/syscalls.list (sendfile): Likewise.
5237 * sysdeps/unix/sysv/linux/ia64/syscalls.list (sendfile): Likewise.
5238 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (sendfile):
5239 Likewise.
5240 * sysdeps/unix/sysv/linux/x86_64/syscalls.list (sendfile): Likewise.
5241
5242 * include/sys/stat.h (__fxstat64, __lxstat64): Only define if not
5243 already defined.
5244
5245 2002-06-04 Bruno Haible <bruno@clisp.org>
5246
5247 * sysdeps/cris/stackinfo.h: New file.
5248
5249 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Cast reloc_addr
5250 to an integer type before performing bit operations on it.
5251
5252 2002-06-05 Roland McGrath <roland@frob.com>
5253
5254 * sysdeps/generic/sendfile.c: Include <errno.h>.
5255 * sysdeps/generic/sendfile64.c: Likewise.
5256
5257 * io/Makefile (routines): Add sendfile and sendfile64.
5258 (headers): Add sys/sendfile.h to the list.
5259 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add it here.
5260 * sysdeps/unix/sysv/linux/sys/sendfile.h: Moved to ...
5261 * io/sys/sendfile.h: ... here.
5262 * sysdeps/generic/sendfile.c: New file.
5263 * sysdeps/generic/sendfile64.c: New file.
5264
5265 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.1, GLIBC_2.3):
5266 Move sendfile, sendfile64 to ...
5267 * io/Versions (GLIBC_2.1, GLIBC_2.3): ... here.
5268 * sysdeps/mach/hurd/sendfile.c: New file.
5269 * sysdeps/mach/hurd/sendfile64.c: New file.
5270
5271 * sysdeps/mach/nanosleep.c: New file.
5272
5273 2002-06-04 Roland McGrath <roland@frob.com>
5274
5275 * sysdeps/alpha/elf/configure.in: New file. Check for TLS support.
5276 * sysdeps/alpha/elf/configure: New file (generated).
5277
5278 2002-06-02 Roland McGrath <roland@frob.com>
5279
5280 * include/link.h: Include <tls.h> to make sure USE_TLS is defined.
5281
5282 2002-06-01 Roland McGrath <roland@frob.com>
5283
5284 * sysdeps/mach/hurd/alpha/init-first.c: New file, modified from
5285 i386/init-first.c by Andrew M. Miklic <miklic@attglobal.net>.
5286
5287 2002-05-19 Ulrich Drepper <drepper@redhat.com>
5288
5289 * resolv/resolv.h (struct __res_state): Remove unused nstimes.
5290 Add nsmap.
5291 * resolv/res_init.c (__res_vinit): Initialize nsmap array.
5292 Remove nstimes setting.
5293 (res_nclose): Check all MAXNS nameservers with non-NULL nsaddrs.
5294 * resolv/res_send.c (res_nsend): Don't close unconditionally if
5295 there is mix of IPv6 and IPv4 nameservers.
5296 Use nsmap array to find free slots and preserve nameserver ordering.
5297 Fix RES_ROTATE.
5298
5299 2002-05-30 Ulrich Drepper <drepper@redhat.com>
5300
5301 * sysdeps/unix/sysv/linux/sys/sendfile.h: It is now possible to
5302 use this header with LFS.
5303
5304 * po/sk.po: Update from translation team.
5305
5306 2002-05-28 Andreas Schwab <schwab@suse.de>
5307
5308 * sysdeps/generic/readelflib.c (process_elf_file): Give correct
5309 message when finding object of wrong class.
5310
5311 2002-05-28 Jakub Jelinek <jakub@redhat.com>
5312
5313 * sysdeps/wordsize-32/divdi3.c (__moddi3): Fix pasto.
5314 Patch by <radu@netsoft.ro>.
5315
5316 2002-05-30 Ulrich Drepper <drepper@redhat.com>
5317
5318 * sysdeps/unix/sysv/linux/Makefile [$(subdir)==misc] (sysdep_routines):
5319 Add readahead.
5320 * sysdeps/unix/sysv/linux/readahead.c: New file.
5321 * sysdeps/unix/sysv/linux/syscalls.list: Add sendfile64 syscall.
5322 * sysdeps/unix/sysv/linux/Versions: Export readahead and sendfile64.
5323 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add readahead syscall.
5324 Add sendfile64 alias to sendfile syscall.
5325 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
5326 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
5327 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
5328 * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add s_readahead
5329 syscall.
5330
5331 * sysdeps/unix/sysv/linux/i386/sysdep.h: Use __i686.get_pc_thunk.XX
5332 special section for PIC register loading.
5333 * sysdeps/unix/sysv/linux/i386/i686/sysdep.h: Likewise.
5334
5335 * config.h.in: Define HAVE_HIDDEN.
5336 * configure.in: Also define HAVE_HIDDEN if HAVE_PROTECTED is defined.
5337
5338 * elf/elf.h: Correct Alpha TLS relocations according to last spec.
5339
5340 2002-05-28 Roland McGrath <roland@frob.com>
5341
5342 * sysdeps/mach/alpha/setfpucw.c: New file.
5343
5344 2002-05-26 Roland McGrath <roland@frob.com>
5345
5346 * sysdeps/mach/hurd/ioctl.c (__ioctl): Don't use sizeof in _IOTS.
5347 Use integer_t instead of int for IOC_VOID case.
5348
5349 2002-05-27 Alexandre Oliva <aoliva@redhat.com>
5350
5351 * configure.in (DO_STATIC_NSS): Define if --disable-shared.
5352
5353 2002-05-26 Bruno Haible <bruno@clisp.org>
5354
5355 * iconvdata/iso-2022-jp.c (BODY for TO_LOOP): Avoid running off the
5356 end of the ISO-8859-7 from idx table.
5357
5358 2002-05-27 Ulrich Drepper <drepper@redhat.com>
5359
5360 * manual/lang.texi: Fix FLT_EPSILON description [PR libc/3649].
5361
5362 2002-05-24 David S. Miller <davem@redhat.com>
5363
5364 * string/bits/string2.h (memset): Do not try to optimize when
5365 not _STRING_ARCH_unaligned if GCC will do the right thing.
5366
5367 2002-05-21 Isamu Hasegawa <isamu@yamato.ibm.com>
5368
5369 * posix/regex.c: Define `inline' as a macro into nothing for the
5370 compilers which lack the keyword.
5371 * posix/regex.h: (RE_SYNTAX_GNU_AWK): Remove RE_CONTEXT_INVALID_OPS
5372 for the compatibility of gawk.
5373 * posix/regcomp.c: Add fake implementation of isblank() for the
5374 environments which lack the function.
5375 Don't use free_charset() in case of non-i18n envs.
5376 (build_range_exp): Don't use i18n related code in case of non-i18n
5377 envs.
5378 (build_collating_symbol): Likewise.
5379 (build_equiv_class): Likewise.
5380 (build_charclass): Likewise.
5381 (re_compile_fastmap_iter): Likewise.
5382 (parse_bracket_exp): Likewise.
5383 (build_word_op): Likewise.
5384 (regfree): Don't use free_charset() in case of non-i18n envs.
5385 * posix/regex_internal.h: Remove COMPLEX_BRACKET from
5386 re_token_type_t in case of non-i18n envs.
5387 Don't define re_charset_t in case of non-i18n envs.
5388 Change the type of wcs of re_string_t from wchar_t to wint_t,
5389 since we store also WEOF.
5390 * posix/regex_internal.c: (re_string_realloc_buffers): Change
5391 the type of wcs of re_string_t from wchar_t to wint_t.
5392 (re_string_reconstruct): Likewise.
5393 (create_ci_newstate): Don't use i18n related code in case of
5394 non-i18n envs.
5395 (create_cd_newstate): Likewise.
5396
5397 2002-05-24 Ulrich Drepper <drepper@redhat.com>
5398
5399 * iconv/loop.c: Fix typo.
5400
5401 2002-05-23 Jakub Jelinek <jakub@redhat.com>
5402
5403 * inet/ether_line.c (ether_line): Fix a typo causing only
5404 lower 4 bits of each ethernet address byte being assigned.
5405 Don't modify what line points to.
5406 * inet/tst-ether_aton.c (main): Add ether_line tests.
5407
5408 2002-05-23 Marcus Brinkmann <marcus@gnu.org>
5409
5410 * manual/filesys.texi: Don't make readlink example leak memory
5411 when readlink fails.
5412
5413 2002-05-20 Ulrich Drepper <drepper@redhat.com>
5414
5415 * iconv/loop.c: Fix condition for defining unaligned loop. Add
5416 some more security checks.
5417
5418 2002-05-17 David S. Miller <davem@redhat.com>
5419
5420 * sysdeps/unix/sysv/linux/sparc/fork.S: Define _internal aliases.
5421
5422 2002-05-16 David S. Miller <davem@redhat.com>
5423
5424 * sysdeps/sparc/sparc32/dl-machine.h (LOAD_PIC_REG): Define.
5425 (elf_machine_dynamic): Use it to force PIC register to be loaded.
5426 (elf_machine_load_address): Likewise.
5427 * sysdeps/sparc/sparc64/dl-machine.h: Mirror sparc32 changes.
5428
5429 * sysdeps/sparc/sparc64/strncmp.S: When second argument pointer
5430 is unaligned, do not forget to fully initialize %g1 magic value.
5431
5432 * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Fix 64-bit elf
5433 register definitions and provide 32-bit variants of structures
5434 during 64-bit builds.
5435
5436 * soft-fp/op-1.h (_FP_FRAC_CLEAR_OVERP_1): Define.
5437 * soft-fp/op-2.h (_FP_FRAC_CLEAR_OVERP_2): Define.
5438 * soft-fp/op-4.h (_FP_FRAC_CLEAR_OVERP_4): Define.
5439 * soft-fp/op-common.h (_FP_PACK_CANONICAL): After rounding, if
5440 _FP_FRAC_OVERP_X is set, use _FP_FRAC_CLEAR_OVERP_X to clear it.
5441 (_FP_FROM_INT): Perform right shifts on unsigned integer type.
5442 Do not clear implicit one bit here, it must be done post-rounding.
5443 Only pad to the left using left shift if value uses less than the
5444 available fractional bits.
5445
5446 2002-05-20 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
5447
5448 * sysdeps/powerpc/Makefile (sysdeps_routines): Use libgcc-compat
5449 instead of cmpdi2, shdi3, fixdfdi, fixsfdi in csu dir.
5450 (shared-only-routines): Likewise.
5451 * sysdeps/powerpc/libgcc-compat.c: New file.
5452 * sysdeps/wordsize-32/cmpdi2.c: Removed.
5453 * sysdeps/wordsize-32/fixdfdi.c: Removed.
5454 * sysdeps/wordsize-32/fixsfdi.c: Removed.
5455 * sysdeps/wordsize-32/shdi3.c: Removed.
5456
5457 2002-05-16 Bruno Haible <bruno@clisp.org>
5458
5459 * MakeTAGS (libc.pot): Don't sort the output.
5460 * po/header.pot: Update to match xgettext 0.11 output.
5461
5462 2002-05-16 Bruno Haible <bruno@clisp.org>
5463
5464 * MakeTAGS (subdirs): Remove duplicates.
5465
5466 2002-05-19 Ulrich Drepper <drepper@redhat.com>
5467
5468 * sysdeps/unix/sysv/linux/errlist.c: Remove extra weak alias
5469 definiton of _old_sys_nerr. Define _old_sys_errlist as strong
5470 alias.
5471
5472 2002-05-19 Andreas Jaeger <aj@suse.de>
5473
5474 * sysdeps/unix/sysv/linux/configure.in: Warn against an
5475 installation in /usr/local.
5476
5477 2002-05-16 Bruno Haible <bruno@clisp.org>
5478
5479 * sysdeps/unix/sysv/aix/bits/ioctl-types.h: Don't use multiline
5480 string as argument of #error.
5481
5482 2002-05-15 Ulrich Drepper <drepper@redhat.com>
5483
5484 * stdlib/canonicalize.c (canonicalize): Rename to __realpath and
5485 don't define static. Remove old __realpath function. TC1 of
5486 POSIX 2001 will allow the second parameter to be NULL.
5487 * stdlib/test-canon.c: Comment out test for NULL as second
5488 parameter of realpath.
5489
5490 * time/offtime.c (__offtime): Set errno if overflow is detected.
5491
5492 * elf/Makefile (rtld-routines): Remove dl-brk and dl-sbrk.
5493 * sysdeps/unix/sysv/linux/Makefile (sysdep-rtld-routines): Add
5494 dl-brk and dl-sbrk.
5495
5496 * sysdeps/sparc/fpu/bits/mathinline.h (fdim): Add __THROW.
5497 (fdimf): Likewise.
5498
5499 2002-05-15 Roland McGrath <roland@frob.com>
5500
5501 * hurd/report-wait.c (_S_msg_report_wait): Use mach_msg_id_t for arg.
5502
5503 2002-05-12 Bruno Haible <bruno@clisp.org>
5504
5505 * iconvdata/testdata/EUC-JISX0213: New file.
5506 * iconvdata/testdata/EUC-JISX0213..UTF8: New file.
5507 * iconvdata/testdata/SHIFT_JISX0213: New file.
5508 * iconvdata/testdata/SHIFT_JISX0213..UTF8: New file.
5509 * iconvdata/testdata/ISO-2022-JP-3: New file.
5510 * iconvdata/testdata/ISO-2022-JP-3..UTF8: New file.
5511 * iconvdata/TESTS: Add EUC-JISX0213, SHIFT_JISX0213, ISO-2022-JP-3.
5512 * iconvdata/run-iconv-test.sh: Skip the charmap test if the charmap
5513 contains comments indicating precomposed characters.
5514
5515 2002-04-21 Bruno Haible <bruno@clisp.org>
5516
5517 * iconvdata/iso-2022-jp-3.c: New file.
5518 * iconvdata/gconv-modules (ISO-2022-JP-3): New module.
5519 * iconvdata/Makefile (modules): Add ISO-2022-JP-3.
5520 (LDFLAGS-ISO-2022-JP-3.so): New variable.
5521 (ISO-2022-JP-3.so): Depend on libJIS.so and libJISX0213.so.
5522 (distribute): Add iso-2022-jp-3.c.
5523
5524 2002-05-12 Bruno Haible <bruno@clisp.org>
5525
5526 * iconvdata/tst-table-to.c (main): Restore handling of
5527 transliterations, broken by last patch.
5528
5529 2002-05-12 Bruno Haible <bruno@clisp.org>
5530
5531 * iconvdata/TESTS: Add IBM922, IBM1124, IBM1129.
5532
5533 2002-05-12 Bruno Haible <bruno@clisp.org>
5534
5535 * iconvdata/euc-jisx0213.c (BODY for FROM_LOOP): Don't advance inptr
5536 when there is not enough room in the output buffer.
5537 * iconvdata/shift_jisx0213.c (BODY for FROM_LOOP): Likewise.
5538
5539 2002-04-20 Bruno Haible <bruno@clisp.org>
5540
5541 * iconv/skeleton.c ({FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO}): New
5542 macros.
5543 (RESET_INPUT_BUFFER): Use them instead of {MIN,MAX}_NEEDED_{FROM,TO}.
5544 Also make this macro work if FROM_DIRECTION evaluates to 0.
5545 (gconv_init): Use the new macros instead of {MIN,MAX}_NEEDED_{FROM,TO}.
5546 (FUNCTION_NAME): Likewise, in the handling of unaligned accesses and
5547 of consume_incomplete.
5548 * iconvdata/cp1255.c: Define {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO}
5549 instead of {MIN,MAX}_NEEDED_{FROM,TO}. Set FROM_LOOP_MAX_NEEDED_TO to
5550 4, not 8.
5551 * iconvdata/cp1258.c: Likewise.
5552 * iconvdata/ibm930.c: Define {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO}
5553 instead of {MIN,MAX}_NEEDED_{FROM,TO}. Set TO_LOOP_MAX_NEEDED_TO to 3,
5554 not 2.
5555 * iconvdata/ibm933.c: Likewise.
5556 * iconvdata/ibm935.c: Likewise.
5557 * iconvdata/ibm937.c: Likewise.
5558 * iconvdata/ibm939.c: Likewise.
5559 * iconvdata/iso-2022-cn.c: Define
5560 {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
5561 {MIN,MAX}_NEEDED_{FROM,TO}. Set TO_LOOP_MAX_NEEDED_TO to 6, not 4.
5562 * iconvdata/iso-2022-cn-ext.c: Likewise.
5563 * iconvdata/iso-2022-jp.c: Define
5564 {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
5565 {MIN,MAX}_NEEDED_{FROM,TO}.
5566 * iconvdata/tcvn5712-1.c: Define
5567 {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
5568 {MIN,MAX}_NEEDED_{FROM,TO}. Set FROM_LOOP_MAX_NEEDED_FROM to 1, not 2.
5569 * iconvdata/euc-jisx0213.c: Define
5570 {FROM,TO}_LOOP_{MIN,MAX}_NEEDED_{FROM,TO} instead of
5571 {MIN,MAX}_NEEDED_{FROM,TO}. Set FROM_LOOP_MAX_NEEDED_TO to 8, not 4.
5572 * iconvdata/shift_jisx0213.c: Likewise.
5573
5574 2002-05-14 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
5575
5576 * sysdeps/powerpc/Makefile (sysdeps_routines): Add divdi3, cmpdi2,
5577 shdi3, fixdfdi, fixsfdi in csu dir.
5578 (shared-only-routines): Likewise.
5579 * sysdeps/wordsize-32/cmpdi2.c: New file.
5580 * sysdeps/wordsize-32/shdi3.c: New file.
5581 * sysdeps/wordsize-32/fixdfdi.c: New file.
5582 * sysdeps/wordsize-32/fixsfdi.c: New file.
5583 * sysdeps/powerpc/Versions (__divdi3, __moddi3, __udivdi3, __umoddi3,
5584 __ashldi3, __ashrdi3, __lshrdi3, __cmpdi2, __ucmpdi2, __fixdfdi,
5585 __fixsfdi, __fixunsdfdi, __fixunssfdi): Export at GLIBC_2.0.
5586
5587 * sysdeps/unix/sysv/linux/semctl.c (__old_semctl, __new_semctl):
5588 Only use va_arg if the argument will be used [PR libc/3259].
5589
5590 2002-05-06 Michael A. Schmidt <mmaass@us.ibm.com>
5591
5592 * catgets/catgets.c (catopen): Free buffer if internal catalog
5593 open fails.
5594
5595 2002-05-14 Ulrich Drepper <drepper@redhat.com>
5596
5597 * debug/xtrace.sh: Make more robust. For realtime tracking use
5598 non-buffering methods.
5599 * debug/pcprofiledump.c: Implement -u option.
5600 Patch by Roger Luethi <rl@hellgate.ch>.
5601
5602 2002-05-11 Jakub Jelinek <jakub@redhat.com>
5603
5604 * include/netinet/in.h (bindresvport_internal): Add prototype.
5605 * include/rpc/auth.h (authunix_create_internal,
5606 authunix_create_default_internal, authnone_create_internal,
5607 authdes_pk_create_internal): Add prototypes.
5608 * include/rpc/clnt.h (clnt_create_internal, clnttcp_create_internal,
5609 clntudp_create_internal, clntudp_bufcreate_internal,
5610 clntunix_create_internal): Add prototypes.
5611 * include/rpc/svc.h (svc_sendreply_internal, svcerr_decode_internal,
5612 svc_getreq_internal, svc_getreq_common_internal,
5613 svc_getreqset_internal, svc_getreq_poll_internal,
5614 svc_register_internal, svc_unregister_internal,
5615 svcudp_create_internal, svcudp_bufcreate_internal): Add prototypes.
5616 * include/rpc/svc_auth.h (_authenticate_internal): Add prototype.
5617 * include/sys/socket.h (__sendto, __recvfrom, __sendmsg, __recvmsg,
5618 __setsockopt, __getsockname, __bind, __listen): Add prototypes.
5619 * inet/rexec.c (rexec_af): Use __listen and __getsockname.
5620 * inet/rcmd.c (rcmd_af): Use __listen.
5621 (rresvport_af): Use __bind.
5622 * sunrpc/clnt_udp.c: Use INTUSE calls to bindresvport,
5623 authunix_create, authunix_create_default, authnone_create,
5624 authdes_pk_create, clnt_create, clnttcp_create, clntudp_create,
5625 clntudp_bufcreate, clntunix_create svc_sendreply, svcerr_decode,
5626 svc_getreq, svc_getreq_common, svc_getreqset, svc_getreq_poll,
5627 svc_register, svc_unregister, svcudp_create, svcudp_bufcreate,
5628 _authenticate, add INTDEF after such function definitions.
5629 Use __listen, __bind, __sendto, __recvfrom, __sendmsg, __recvmsg,
5630 __setsockopt, __getsockname instead of non-__ variants.
5631 * sunrpc/pmap_rmt.c: Likewise.
5632 * sunrpc/rtime.c: Likewise.
5633 * sunrpc/svc_udp.c: Likewise.
5634 * sunrpc/clnt_unix.c: Likewise.
5635 * sunrpc/svc_unix.c: Likewise.
5636 * sunrpc/bindrsvprt.c: Likewise.
5637 * sunrpc/svc_tcp.c: Likewise.
5638 * sunrpc/auth_none.c: Likewise.
5639 * sunrpc/clnt_raw.c: Likewise.
5640 * sunrpc/clnt_tcp.c: Likewise.
5641 * sunrpc/auth_unix.c: Likewise.
5642 * sunrpc/key_call.c: Likewise.
5643 * sunrpc/clnt_gen.c: Likewise.
5644 * sunrpc/pm_getmaps.c: Likewise.
5645 * sunrpc/clnt_simp.c: Likewise.
5646 * sunrpc/pmap_clnt.c: Likewise.
5647 * sunrpc/svc_run.c: Likewise.
5648 * sunrpc/svc.c: Likewise.
5649 * sunrpc/svc_simple.c: Likewise.
5650 * sunrpc/pm_getport.c: Likewise.
5651 * sunrpc/auth_des.c: Likewise.
5652 * sunrpc/svc_auth.c: Likewise.
5653 * sysdeps/generic/unwind-dw2-fde.c (__register_frame_info_bases,
5654 __register_frame_info_table_bases, __deregister_frame_info_bases):
5655 Add INTDEF.
5656 (__register_frame_info_bases_internal,
5657 __register_frame_info_table_bases_internal,
5658 __deregister_frame_info_bases_internal): Add prototypes.
5659 (__register_frame_info, __register_frame): Use INTUSE in call to
5660 __register_frame_info_bases.
5661 (__register_frame_info_table): Similarly.
5662 (__deregister_frame_info, __deregister_frame): Similarly.
5663 * sysdeps/generic/sendto.c (__sendto): Renamed from sendto, add
5664 sendto as weak alias.
5665 * sysdeps/mach/hurd/sendto.c: Likewise.
5666 * sysdeps/generic/recvfrom.c (__recvfrom): Renamed from recvfrom, add
5667 recvfrom as weak alias.
5668 * sysdeps/mach/hurd/recvfrom.c: Likewise.
5669 * sysdeps/unix/sysv/aix/recvfrom.c: Likewise.
5670 * sysdeps/generic/recvmsg.c (__recvmsg): Renamed from recvmsg, add
5671 recvmsg as weak alias.
5672 * sysdeps/unix/sysv/aix/recvmsg.c: Likewise.
5673 * sysdeps/generic/sendmsg.c (__sendmsg): Renamed from sendmsg, add
5674 sendmsg as weak alias.
5675 * sysdeps/unix/sysv/aix/sendmsg.c: Likewise.
5676 * sysdeps/generic/setsockopt.c (__setsockopt): Renamed from
5677 setsockopt, add setsockopt as weak alias.
5678 * sysdeps/mach/hurd/setsockopt.c: Likewise.
5679 * sysdeps/generic/bind.c (__bind): Renamed from bind, add bind as
5680 weak alias.
5681 * sysdeps/mach/hurd/bind.c: Likewise.
5682 * sysdeps/generic/listen.c (__listen): Renamed from listen, add listen
5683 as weak alias.
5684 * sysdeps/mach/hurd/listen.c: Likewise.
5685 * sysdeps/generic/getsockname.c (__getsockname): Renamed from
5686 getsockname, add getsockname as weak alias.
5687 * sysdeps/mach/hurd/getsockname.c: Likewise.
5688 * sysdeps/unix/sysv/aix/getsockname.c: Likewise.
5689 * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Add weak alias.
5690 * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Add weak alias.
5691 * sysdeps/unix/inet/syscalls.list (__bind, __listen, __recvmsg,
5692 __recvfrom, __sendmsg, __sendto, __setsockopt): Add aliases.
5693 * sysdeps/unix/sysv/linux/alpha/syscalls.list (__recvmsg, __sendmsg):
5694 Add aliases.
5695 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
5696 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
5697 * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
5698 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
5699 * sysdeps/unix/sysv/linux/recvfrom.S (__recvfrom): Add weak alias.
5700 * sysdeps/unix/sysv/linux/recvmsg.S (__recvmsg): Likewise.
5701 * sysdeps/unix/sysv/linux/sendmsg.S (__sendmsg): Likewise.
5702 * sysdeps/unix/sysv/linux/sendto.S (__sendto): Likewise.
5703 * sysdeps/unix/sysv/linux/setsockopt.S (__setsockopt): Likewise.
5704 * sysdeps/unix/sysv/linux/bind.S (__bind): Likewise.
5705 * sysdeps/unix/sysv/linux/listen.S (__listen): Likewise.
5706 * sysdeps/unix/sysv/linux/getsockname.S (__getsockname): Likewise.
5707
5708 2002-05-10 Jakub Jelinek <jakub@redhat.com>
5709
5710 * locale/programs/localedef.h (show_archive_content): Add verbose
5711 argument.
5712 * locale/programs/localedef.c (main): Adjust caller.
5713 * locale/programs/locarchive.c (struct nameent, struct dataent): New
5714 types.
5715 (nameentcmp, dataentcmp): New functions.
5716 (xstrcmp): Remove.
5717 (show_archive_content): Print verbose listing with --list-archive -v.
5718
5719 2002-05-14 Ulrich Drepper <drepper@redhat.com>
5720
5721 * locale/programs/locarchive.c (open_archive): Take extra argument
5722 readonly. If true open file with O_RDONLY and don't create the
5723 archive if it doesn't exist.
5724 Adapt all callers.
5725 (close_archive): Don't do anything if fd element is -1.
5726 * locale/programs/localedef.h (open_archive): Adjust prototype.
5727 * locale/programs/locfile.c (write_all_categories): Adjust open_archive
5728 call.
5729
5730 * malloc/malloc.c (__posix_memalign): Correct check for size of
5731 alignment value [PR libc/3444].
5732
5733 * include/stdio.h: Remove references to old stdio implementation.
5734
5735 * libio/Makefile (bug-ungetwc2-ENV): Define.
5736
5737 2002-05-13 Roland McGrath <roland@frob.com>
5738
5739 * iconv/gconv_charset.h (upstr): Add inline keyword, quiets warning.
5740
5741 * hurd/hurdinit.c (_hurd_init): Use internal name _hurd_new_proc_init.
5742
5743 2002-05-13 Marcus Brinkmann <marcus@gnu.org>
5744
5745 * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
5746 Allocate three, not two, more than LEN when appending '/.'.
5747 * sysdeps/mach/hurd/chroot.c (chroot): Likewise. Don't check
5748 if NAME ends with '/.' if it is shorter than 2 chars.
5749
5750 2002-05-12 Roland McGrath <roland@frob.com>
5751
5752 * mach/Makefile ($(mach-syscalls:%=$(objpfx)%.S)): Make the generated
5753 files #include <sysdep.h> instead of <mach/machine/syscall_sw.h>.
5754
5755 * hurd/hurdexec.c (_hurd_exec): Reauthenticate ports/dtable used in
5756 file_exec to effect svuid=euid, svgid=egid if that is not a no-op.
5757
5758 2002-05-10 Jakub Jelinek <jakub@redhat.com>
5759
5760 * sysdeps/ia64/Makefile: Remove extra endif.
5761 * sysdeps/ia64/ia64libgcc.S (__divsf3): Fix typo in symbol version.
5762
5763 2002-05-10 Andreas Schwab <schwab@suse.de>
5764
5765 * sysdeps/powerpc/fpu/w_sqrt.c: Add sqrtl alias.
5766
5767 2002-05-09 Andreas Jaeger <aj@suse.de>
5768
5769 * sysdeps/unix/sysv/linux/x86_64/sys/io.h: New file.
5770 * sysdeps/unix/sysv/linux/x86_64/Dist: Add it.
5771 * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers): Add it.
5772
5773 * sysdeps/unix/sysv/linux/ia64/glob.c: Move to ...
5774 * sysdeps/wordsize-64/glob.c: ...here.
5775 * sysdeps/unix/sysv/linux/x86_64/glob.c: Remove.
5776 * sysdeps/unix/sysv/linux/s390/s390-64/glob.c: Remove.
5777 * sysdeps/unix/sysv/linux/sparc/sparc64/glob.c: Remove.
5778
5779 2002-05-08 Roland McGrath <roland@frob.com>
5780
5781 * hurd/hurdfchdir.c (_hurd_change_directory_port_from_fd): Use
5782 O_NOTRANS flag in "." lookup.
5783
5784 2002-05-05 Ulrich Drepper <drepper@redhat.com>
5785
5786 * malloc/mtrace.c: Comment out use of _mtrace_file and _mtrace_len.
5787
5788 2002-05-04 Ulrich Drepper <drepper@redhat.com>
5789
5790 * locale/duplocale.c (__duplocale): Update special members only
5791 when allocation succeeded.
5792
5793 2002-05-03 Roland McGrath <roland@frob.com>
5794
5795 * shlib-versions (.*-.*-gnu-gnu.*): Remove USE_IN_LIBIO conditionals;
5796 we can only build libc.so.0.3(GLIBC_2.2.6) now.
5797
5798 2002-05-02 Jakub Jelinek <jakub@redhat.com>
5799
5800 * sysdeps/ia64/Makefile: Add ia64libgcc in csu subdir.
5801 * sysdeps/ia64/Versions (__divtf3, __divdf3, __divsf3, __divdi3,
5802 __moddi3, __udivdi3, __umoddi3, __multi3): Export at GLIBC_2.0.
5803 * sysdeps/ia64/ia64libgcc.S: New file.
5804
5805 2002-05-02 Ulrich Drepper <drepper@redhat.com>
5806
5807 * sysdeps/generic/dl-tls.c (oom): Implement using _dl_fatal_printf.
5808
5809 * malloc/memusage.c: Distinguish anonymous mmap.
5810
5811 2002-05-01 Roland McGrath <roland@frob.com>
5812
5813 * sysdeps/mach/hurd/close.c: #undef __close before function defn,
5814 and use INTDEF on it.
5815 * sysdeps/mach/hurd/fcntl.c: Use INTDEF2.
5816
5817 * sysdeps/mach/hurd/dl-sysdep.c (errno): New variable.
5818
5819 * sysdeps/mach/hurd/alpha/static-start.S: New file (unfinished).
5820
5821 2002-05-01 Ulrich Drepper <drepper@redhat.com>
5822
5823 * malloc/memusage.c: Add support for tracking mmap & friends.
5824 * malloc/memusage.sh: Implement -m/--mmap option.
5825
5826 2002-04-30 Jakub Jelinek <jakub@redhat.com>
5827
5828 * locale/programs/locarchive.c (create_archive): Add archivefname
5829 argument, create fname from it.
5830 (enlarge_archive): Honour output_prefix.
5831 (open_archive): Likewise.
5832
5833 2002-04-30 Jakub Jelinek <jakub@redhat.com>
5834
5835 * locale/programs/locarchive.c (add_locales_to_archive): Don't nest
5836 too many stpcpy macros.
5837
5838 2002-04-26 Bruno Haible <bruno@clisp.org>
5839
5840 * locale/programs/ld-collate.c (collate_read): Cast first argument
5841 for "%.*s" to int.
5842
5843 2002-04-26 Bruno Haible <bruno@clisp.org>
5844
5845 * include/libintl.h (__ngettext, __dngettext, __dcngettext,
5846 __dcngettext_internal): New declarations.
5847 (__gettext, __dgettext, __dcgettext, __dcgettext_internal): Add
5848 attribute declarations.
5849
5850 2002-04-30 Roland McGrath <roland@frob.com>
5851
5852 Removed old GNU stdio implementation; GNU libio is now the only option.
5853 * configure.in: Removed --enable-libio option and @stdio@ subst var.
5854 Define USE_IN_LIBIO unconditionally.
5855 * configure: Regenerated.
5856 * Makeconfig (stdio): Set to libio by default.
5857 * config.make.in (stdio): Variable removed.
5858 * sysdeps/unix/sysv/linux/configure.in: Don't set $stdio.
5859 * sysdeps/unix/sysv/linux/configure: Regenerated.
5860 * sysdeps/mach/hurd/configure.in: Don't test $stdio.
5861 * sysdeps/mach/hurd/configure: Regenerated.
5862 * stdio/.cvsignore: File removed.
5863 * stdio/Makefile: File removed.
5864 * stdio/Versions: File removed.
5865 * stdio/__fbufsize.c: File removed.
5866 * stdio/__flbf.c: File removed.
5867 * stdio/__fpending.c: File removed.
5868 * stdio/__fpurge.c: File removed.
5869 * stdio/__freadable.c: File removed.
5870 * stdio/__freading.c: File removed.
5871 * stdio/__fsetlocking.c: File removed.
5872 * stdio/__fwritable.c: File removed.
5873 * stdio/__fwriting.c: File removed.
5874 * stdio/clearerr.c: File removed.
5875 * stdio/fclose.c: File removed.
5876 * stdio/fcloseall.c: File removed.
5877 * stdio/feof.c: File removed.
5878 * stdio/ferror.c: File removed.
5879 * stdio/fflush.c: File removed.
5880 * stdio/fgetc.c: File removed.
5881 * stdio/fgetpos.c: File removed.
5882 * stdio/fgets.c: File removed.
5883 * stdio/fileno.c: File removed.
5884 * stdio/fmemopen.c: File removed.
5885 * stdio/fopen.c: File removed.
5886 * stdio/fopncook.c: File removed.
5887 * stdio/fputc.c: File removed.
5888 * stdio/fputs.c: File removed.
5889 * stdio/fread.c: File removed.
5890 * stdio/freopen.c: File removed.
5891 * stdio/fseek.c: File removed.
5892 * stdio/fsetpos.c: File removed.
5893 * stdio/ftell.c: File removed.
5894 * stdio/fwrite.c: File removed.
5895 * stdio/getc.c: File removed.
5896 * stdio/getchar.c: File removed.
5897 * stdio/getdelim.c: File removed.
5898 * stdio/gets.c: File removed.
5899 * stdio/glue.c: File removed.
5900 * stdio/internals.c: File removed.
5901 * stdio/linewrap.c: File removed.
5902 * stdio/linewrap.h: File removed.
5903 * stdio/memstream.c: File removed.
5904 * stdio/newstream.c: File removed.
5905 * stdio/obstream.c: File removed.
5906 * stdio/putc.c: File removed.
5907 * stdio/putchar.c: File removed.
5908 * stdio/puts.c: File removed.
5909 * stdio/rewind.c: File removed.
5910 * stdio/setbuf.c: File removed.
5911 * stdio/setbuffer.c: File removed.
5912 * stdio/setlinebuf.c: File removed.
5913 * stdio/setvbuf.c: File removed.
5914 * stdio/stdio.h: File removed.
5915 * stdio/ungetc.c: File removed.
5916 * stdio/vasprintf.c: File removed.
5917 * stdio/vscanf.c: File removed.
5918 * stdio/vsnprintf.c: File removed.
5919 * stdio/vsprintf.c: File removed.
5920 * stdio/vsscanf.c: File removed.
5921 * sysdeps/generic/defs.c: File removed.
5922 * sysdeps/generic/fdopen.c: File removed.
5923 * sysdeps/generic/pipestream.c: File removed.
5924 * sysdeps/generic/stdio_init.c: File removed.
5925 * sysdeps/generic/sysd-stdio.c: File removed.
5926 * sysdeps/generic/vdprintf.c: File removed.
5927 * sysdeps/mach/hurd/defs.c: File removed.
5928 * sysdeps/mach/hurd/fdopen.c: File removed.
5929 * sysdeps/mach/hurd/pipestream.c: File removed.
5930 * sysdeps/mach/hurd/stdio_init.c: File removed.
5931 * sysdeps/mach/hurd/sysd-stdio.c: File removed.
5932 * sysdeps/mach/hurd/vdprintf.c: File removed.
5933 * sysdeps/posix/defs.c: File removed.
5934 * sysdeps/posix/fdopen.c: File removed.
5935 * sysdeps/posix/pipestream.c: File removed.
5936 * sysdeps/posix/stdio_init.c: File removed.
5937 * sysdeps/posix/vdprintf.c: File removed.
5938 * sysdeps/unix/pipestream.c: File removed.
5939 * sysdeps/unix/sysv/sysd-stdio.c: File removed.
5940 * sysdeps/unix/sysv/sco3.2.4/pipestream.c: File removed.
5941 * sysdeps/unix/sysv/sysv4/pipestream.c: File removed.
5942
5943 2002-04-29 Roland McGrath <roland@frob.com>
5944
5945 * include/libc-symbols.h (link_warning): Use `unused' attribute.
5946
5947 2002-04-28 Ulrich Drepper <drepper@redhat.com>
5948
5949 * sysdeps/generic/tls.h: Describe what must be defined.
5950
5951 * sysdeps/generic/glob.c (glob): Don't pass GLOB_NOMAGIC flag to
5952 glob_in_dir [PR libc/3385].
5953 * posix/globtest.sh: Add test case.
5954
5955 * intl/loadmsgcat.c [!_LIBC] (_nl_init_domain_conv): Don't add
5956 //TRANSLIT twice.
5957
5958 2002-04-27 Ulrich Drepper <drepper@redhat.com>
5959
5960 * sysdeps/unix/sysv/linux/ia64/fxstat.c: Fix a few issues with the
5961 _internal symbol handling.
5962 * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.
5963
5964 2002-04-26 Ulrich Drepper <drepper@redhat.com>
5965
5966 * sysdeps/ia64/fpu/s_finite.S: Define _internal aliases.
5967 * sysdeps/unix/sysv/linux/ia64/fork.S: Likewise.
5968
5969 2002-04-26 Isamu Hasegawa <isamu@yamato.ibm.com>
5970
5971 * posix/regcomp.c (re_compile_fastmap_iter): Fix fastmap in case of
5972 not _LIBC and RE_ENABLE_I18N.
5973 (build_range_exp): Implement for not _LIBC.
5974 (build_collating_symbol): Likewise.
5975 (parse_bracket_exp): Unify redundant error handlings.
5976 Don't erase mbcset for non matching list in multibyte envs.
5977 (build_word_op): Add '_' to matching list for \w operator.
5978 * posix/regex_internal.c (re_string_construct): Invoke
5979 build_upper_buffer in case of not RE_ENABLE_I18N.
5980 (re_string_reconstruct): Don't touch cur_state in case of not
5981 RE_ENABLE_I18N.
5982 * posix/regex_internal.h (attribute_hidden): New macro in case of
5983 not _LIBC.
5984 (re_charset_t): Define range_starts/ends in case of not _LIBC.
5985 * posix/regexec.c (sift_states_iter_mb): Hide in case of not
5986 RE_ENABLE_I18N.
5987 (transit_state_mb): Likewise.
5988 (check_node_accept_bytes): Implement the code evaluating range
5989 expression in case of not _LIBC.
5990 (find_collation_sequence_value): Hide in case of not _LIBC.
5991
5992 2002-04-26 Jakub Jelinek <jakub@redhat.com>
5993
5994 * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Copied from
5995 i386/semctl.c.
5996 (__old_semctl, __new_semctl): Only use va_arg if the argument will
5997 be used.
5998
5999 2002-04-26 Ulrich Drepper <drepper@redhat.com>
6000
6001 * sysdeps/ia64/fpu/s_isinf.S: Fix definition of _internal names.
6002
6003 * sysdeps/ia64/strncpy.S: Fix recovery code.
6004 Patch by David Mosberger <davidm@hpl.hp.com>.
6005
6006 2002-04-24 Ulrich Drepper <drepper@redhat.com>
6007
6008 * sysdeps/unix/sysv/linux/ia64/Versions [libc]: Add getunwind for
6009 GLIBC_2.2.6.
6010
6011 2002-04-14 Bruno Haible <bruno@clisp.org>
6012
6013 * posix/regex.c (re_max_failures): Add back symbol for binary
6014 compatibility.
6015
6016 2002-04-22 Isamu Hasegawa <isamu@yamato.ibm.com>
6017
6018 * posix/regcomp.c (re_compile_internal): Adapt it to new interface
6019 of buffer building functions.
6020 * posix/regex_internal.c (re_string_allocate): New function.
6021 (re_string_realloc_buffers): New function.
6022 (re_string_skip_chars): New function.
6023 (re_string_reconstruct): New function.
6024 (re_string_construct): Adapt it to new interface of buffer building
6025 functions.
6026 (re_string_construct_common): Likewise.
6027 (build_wcs_buffer): Likewise.
6028 (build_wcs_upper_buffer): Likewise.
6029 (build_upper_buffer): Likewise.
6030 (re_string_translate_buffer): Likewise.
6031 (re_string_context_at): Adapt it to variable length buffers.
6032 * posix/regex_internal.h (re_string_t): Add new fields to handle
6033 variable length buffers.
6034 (re_match_context_t): Likewise.
6035 * posix/regexec.c (re_search_internal): Adapt it to new interface
6036 of re_string_t and re_match_context_t.
6037 (acquire_init_state_context): Likewise.
6038 (check_matching): Likewise.
6039 (check_halt_state_context): Likewise.
6040 (proceed_next_node): Likewise.
6041 (set_regs): Likewise.
6042 (sift_states_backward): Likewise.
6043 (clean_state_log_if_need): Likewise.
6044 (sift_states_iter_mb): Likewise.
6045 (sift_states_iter_bkref): Likewise.
6046 (add_epsilon_backreference): Likewise.
6047 (transit_state): Likewise.
6048 (transit_state_sb): Likewise.
6049 (transit_state_mb): Likewise.
6050 (transit_state_bkref): Likewise.
6051 (transit_state_bkref_loop): Likewise.
6052 (check_node_accept): Likewise.
6053 (match_ctx_init): Likewise.
6054 (extend_buffers): New function.
6055
6056 2002-04-21 Bruno Haible <bruno@clisp.org>
6057
6058 * iconvdata/tst-table.sh: For the second check, use the truncated
6059 GB18030 charmap table, like for the first check.
6060
6061 2002-04-24 Ulrich Drepper <drepper@redhat.com>
6062
6063 * elf/dl-load.c (open_verify): Correct __lseek parameters.
6064 Patch by Simon Hildrew <simon@hildrew.net> [PR libc/3354].
6065
6066 2002-04-23 H.J. Lu <hjl@gnu.org>
6067
6068 * include/math.h (isfinite): Fix a typo.
6069
6070 2002-04-24 Ulrich Drepper <drepper@redhat.com>
6071
6072 * libio/bug-ungetwc2.c (test_locale): Use the de_DE.UTF-8 locale
6073 which is created by the test suite.
6074
6075 2002-04-20 Bruno Haible <bruno@clisp.org>
6076
6077 * iconvdata/iso-2002-kr.c (MAX_NEEDED_FROM): Set to 4.
6078 (BODY for FROM_LOOP): Fix comparisons between inptr and inend.
6079
6080 2002-04-20 Bruno Haible <bruno@clisp.org>
6081
6082 * iconvdata/johab.c (BODY for FROM_LOOP): Change type of i, m, f,
6083 to avoid gcc warning.
6084
6085 2002-04-20 Bruno Haible <bruno@clisp.org>
6086
6087 * iconvdata/iso-2022-jp.c (EMIT_SHIFT_TO_INIT): Fix modification mask
6088 of data->__statep->__count.
6089
6090 2002-04-20 Bruno Haible <bruno@clisp.org>
6091
6092 * iconvdata/euc-jisx0213.c (BODY for TO_LOOP): Really ignore Unicode
6093 tag characters.
6094 * iconvdata/shift_jisx0213.c (BODY for TO_LOOP): Likewise.
6095
6096 2002-04-24 Roland McGrath <roland@frob.com>
6097
6098 * sysdeps/mach/alpha/syscall.S: Don't use .frame, ENTRY will have it;
6099 use END macro instead of our own .end directive.
6100 Use `callsys' insn mnemonic instead of `call_pal'.
6101
6102 * sysdeps/mach/alpha/sysdep.h (ENTRY): New macro.
6103
6104 * sysdeps/alpha/dl-machine.h (ELF_MACHINE_USER_ADDRESS_MASK): New
6105 macro; we need this for Hurd.
6106
6107 Log entry was missing for 2002/03/24 commit of rev 1.8,
6108 goes with 2002-03-17 changes.
6109 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = misc]
6110 (sysdep_routines): Append ioperm here.
6111 (sysdep_headers): Append sys/io.h here.
6112
6113 2002-04-23 Roland McGrath <roland@frob.com>
6114
6115 * sysdeps/mach/hurd/send.c: int -> size_t for WROTE.
6116 * sysdeps/mach/hurd/sendto.c: Likewise.
6117 * hurd/hurdioctl.c (siocgifconf): int -> size_t for DATA_LEN.
6118 * sysdeps/mach/hurd/wait4.c (__wait4): natural_t -> int for SIGCODE.
6119 * sysdeps/mach/hurd/getpriority.c: unsigned int -> size_t for PISIZE.
6120
6121 2002-04-22 Roland McGrath <roland@frob.com>
6122
6123 * sysdeps/mach/hurd/i386/ioperm.c (ioperm): Translate MIG_BAD_ID
6124 failure from i386_io_perm_* RPCs to ENOSYS.
6125
6126 2002-04-22 Andreas Jaeger <aj@suse.de>
6127
6128 * sysdeps/unix/sysv/linux/x86_64/ldconfig.h: New file.
6129
6130 * sysdeps/unix/sysv/linux/x86_64/dl-cache.h: New file.
6131
6132 * sysdeps/unix/sysv/linux/x86_64/vfork.S: Use %rdi as temp
6133 register instead of destroying %rbx.
6134
6135 2002-04-21 Ulrich Drepper <drepper@redhat.com>
6136
6137 * string/string.h: Declare strerror_r also for XPG6.
6138
6139 2002-04-19 Roland McGrath <roland@frob.com>
6140
6141 * sysdeps/mach/hurd/tmpfile.c: Create a file descriptor and use fdopen.
6142
6143 2002-04-20 Ulrich Drepper <drepper@redhat.com>
6144
6145 * Makefile: Add handling of xtests and xcheck targets.
6146 * MakeTAGS: Likewise.
6147 * Makeconfig: Likewise.
6148 * Makerules: Likewise.
6149 * Rules: Likewise.
6150 * manual/Makefile: Likewise.
6151 * sunrpc/Makefile (xtests): Add thrsvc if thread library available.
6152 * sunrpc/thrsvc.c: New file. By Zack Weinberg.
6153
6154 2002-04-11 Zack Weinberg <zack@codesourcery.com>
6155
6156 * include/rpc/rpc.h (struct rpc_thread_variables): Remove
6157 authnone_private_s.
6158 * sunrpc/auth_none.c: Include bits/libc-lock.h.
6159 Delete #ifdef _RPC_THREAD_SAFE_ block.
6160 (authnone_private): Make a struct, not a pointer to struct.
6161 (authnone_private_guard): New once-control variable.
6162 (authnone_create_once): New function, split out of
6163 authnone_create. No need to allocate memory.
6164 (authnone_create): Just call authnone_create_once via
6165 __libc_once, then return &authnone_private->no_client.
6166 (authnone_marshal): Access private data via CLIENT argument,
6167 not authnone_private pointer.
6168 Fix typo (MAX_MARSHEL_SIZE -> MAX_MARSHAL_SIZE).
6169 * sunrpc/rpc_thread.c (__rpc_thread_destroy): No need to free
6170 authnone_private_s.
6171
6172 2002-04-12 H.J. Lu <hjl@gnu.org>
6173
6174 * sunrpc/clnt_raw.c (clntraw_create): Properly set xdrs and client.
6175
6176 2002-04-18 Bruno Haible <bruno@clisp.org>
6177
6178 * iconvdata/euc-jisx0213.c (EMIT_SHIFT_TO_INIT, BODY for
6179 FROM_DIRECTION): Make the FROM direction stateless.
6180 * iconvdata/shift_jisx0213.c (EMIT_SHIFT_TO_INIT, BODY for
6181 FROM_DIRECTION): Likewise.
6182
6183 2002-04-15 Bruno Haible <bruno@clisp.org>
6184
6185 * iconvdata/JISX0213.TXT: New file.
6186 * iconvdata/jisx0213.h: New file.
6187 * iconvdata/jisx0213.c: New file.
6188 * iconvdata/euc-jisx0213.c: New file.
6189 * iconvdata/shift_jisx0213.c: New file.
6190 * iconvdata/gconv-modules (EUC-JISX0213, SHIFT_JISX0213): New modules.
6191 * iconvdata/EUC-JISX0213.precomposed: New file.
6192 * iconvdata/SHIFT_JISX0213.precomposed: New file.
6193 * iconvdata/SHIFT_JISX0213.irreversible: New file.
6194 * iconvdata/tst-table-to.c (main): Make it work for encodings for
6195 which the "to" direction is stateful.
6196 * iconvdata/tst-tables.sh: Add EUC-JISX0213, SHIFT_JISX0213.
6197 * iconvdata/Makefile (modules): Add libJISX0213, EUC-JISX0213,
6198 SHIFT_JISX0213.
6199 (libJISX0213-routines): New variable.
6200 (LDFLAGS-EUC-JISX0213.so, LDFLAGS-SHIFT_JISX0213.so): New variables.
6201 (EUC-JISX0213.so, SHIFT_JISX0213.so): Depend on libJISX0213.so.
6202 (LDFLAGS-libJISX0213.so): New variable.
6203 (distribute): Add JISX0213.TXT, EUC-JISX0213.precomposed,
6204 SHIFT_JISX0213.precomposed, SHIFT_JISX0213.irreversible,
6205 jisx0213.c, jisx0213.h, euc-jisx0213.c, shift_jisx0213.c.
6206
6207 2002-04-15 Bruno Haible <bruno@clisp.org>
6208
6209 * iconvdata/big5hkscs.c (big5hkscs_to_ucs): Change element type to
6210 uint32_t. Update to Unicode 3.2.
6211 (from_ucs4, from_ucs4_idx): Update to Unicode 3.2.
6212 (BODY for TO_LOOP): Handle the ASCII range specially.
6213 * iconvdata/BIG5HKSCS.irreversible: Add one more entry.
6214 * iconvdata/testdata/BIG5HKSCS: Remove a character.
6215 * iconvdata/testdata/BIG5HKSCS..UTF-8: Regenerated.
6216
6217 2002-04-15 Bruno Haible <bruno@clisp.org>
6218
6219 * iconvdata/gb18030.c (__twobyte_to_ucs, __fourbyte_to_ucs,
6220 __ucs_to_gb18030_tab1, __ucs_to_gb18030_tab2): Update to Unicode 3.2.
6221
6222 2002-04-15 Bruno Haible <bruno@clisp.org>
6223
6224 * iconvdata/cns11643.h (__cns11643_from_ucs4p2c_tab): New declaration.
6225 (ucs4_to_cns11643): Update.
6226 * iconvdata/cns11643.c: Update to Unicode 3.2.
6227 (__cns11643l2*_to_ucs4_tab, __cns11643_from_ucs4p0_tab,
6228 __cns11643_from_ucs4p2_tab): Regenerated.
6229 (__cns11643_from_ucs4p2c_tab): New array.
6230 * iconvdata/cvs11643l1.c: Update comments.
6231 * iconvdata/EUC-TW.irreversible: Remove two entries.
6232
6233 2002-04-15 Bruno Haible <bruno@clisp.org>
6234
6235 * locale/C-translit.h.in: Update to Unicode 3.2.
6236 Add <U2047>, <U205F>..<U2063>, <U2145>..<U2149>, <U2A74>..<U2A76>,
6237 <U30A0>, <U3251>..<U325F>, <U32B1>..<U32BF>, <UFE00>..<UFE0F>.
6238
6239 2002-04-15 Bruno Haible <bruno@clisp.org>
6240
6241 * iconvdata/sjis.c (halfkana_to_ucs4): Remove array.
6242 (BODY for FROM_LOOP): Optimize the JISX0201:GR to Unicode conversion.
6243
6244 2002-04-15 Bruno Haible <bruno@clisp.org>
6245
6246 * iconvdata/euc-jp.c (BODY for FROM_LOOP): When encountering an
6247 invalid input (e.g. a byte > 0x80 followed by a byte < 0x80), skip
6248 always one byte, not 0 bytes in some cases and 2 bytes in others.
6249
6250 * iconvdata/tst-table-from.c (main): Correct the usage message.
6251
6252 2002-04-19 Isamu Hasegawa <isamu@yamato.ibm.com>
6253
6254 * posix/regcomp.c (parse_expression): Fix incorrect error code.
6255 (parse_dup_op): Fix error handling like "a{}".
6256 (parse_bracket_exp): Add error handling.
6257 (fetch_number): Add error handling for "a{<very_large_number>}".
6258
6259 2002-04-19 Isamu Hasegawa <isamu@yamato.ibm.com>
6260
6261 * posix/regcomp.c (parse_bracket_symbol): Add error handling
6262 in case that the symbol name is too long.
6263 (build_charclass): Handle [:lower:]/[:uppper:] correctly
6264 in case of REG_ICASE.
6265
6266 2002-04-19 Andreas Jaeger <aj@suse.de>
6267
6268 * math/libm-test.inc: Fix comment, suggested by Hartvig Ekner
6269 <hartvige@mips.com>.
6270
6271 2002-04-15 H.J. Lu <hjl@gnu.org>
6272
6273 * include/math.h (__finitel_internal): Declare only if
6274 __NO_LONG_DOUBLE_MATH is not defined.
6275 (__isinfl_internal): Likewise.
6276 (__isnanl_internal): Likewise.
6277
6278 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add __connect_internal.
6279 * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
6280 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
6281 * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
6282 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
6283 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
6284 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
6285
6286 * sysdeps/unix/sysv/linux/syscalls.list: Add __chown_internal and
6287 __fcntl_internal.
6288
6289 * sysdeps/unix/sysv/linux/fxstat.c (__fxstat64_internal): Added.
6290 * sysdeps/unix/sysv/linux/lxstat.c (__lxstat64_internal): Added.
6291
6292 2002-04-15 Bruno Haible <bruno@clisp.org>
6293
6294 * iconvdata/armscii-8.c (BODY for FROM_LOOP): Fix array access.
6295 (BODY for TO_LOOP): Likewise.
6296 * iconvdata/tcvn5712-1.c (from_ucs4): Map U+0309 to 0xB1.
6297 * iconvdata/tst-table.sh: Add support for encodings which contain
6298 precomposed Unicode characters, known to the iconv converter in both
6299 directions but not listed in the charmap.
6300 * iconvdata/IBM856.irreversible: New file.
6301 * iconvdata/IBM922.irreversible: New file.
6302 * iconvdata/IBM1132.irreversible: New file.
6303 * iconvdata/IBM1133.irreversible: New file.
6304 * iconvdata/IBM1160.irreversible: New file.
6305 * iconvdata/IBM1161.irreversible: New file.
6306 * iconvdata/IBM1163.irreversible: New file.
6307 * iconvdata/IBM1164.irreversible: New file.
6308 * iconvdata/ARMSCII-8.irreversible: New file.
6309 * iconvdata/TCVN5712-1.precomposed: New file.
6310 * iconvdata/tst-tables.sh: Add IBM856, IBM922, IBM1124, IBM1129,
6311 IBM1160, IBM1161, IBM1132, IBM1133, IBM1162, IBM1163, IBM1164,
6312 ARMSCII-8, TCVN5712-1.
6313 * iconvdata/Makefile (distribute): Add IBM856.irreversible,
6314 IBM922.irreversible, IBM1132.irreversible, IBM1133.irreversible,
6315 IBM1160.irreversible, IBM1161.irreversible, IBM1163.irreversible,
6316 IBM1164.irreversible, ARMSCII-8.irreversible, TCVN5712-1.precomposed.
6317
6318 2002-04-17 Jakub Jelinek <jakub@redhat.com>
6319
6320 * time/tst-mktime.c: Include <stdlib.h>. Use %d, not %ld format
6321 for EVENING69. Include offsets in TZ environment variable.
6322
6323 2002-04-18 Ulrich Drepper <drepper@redhat.com>
6324
6325 * iconv/skeleton.c (RESET_INPUT_BUFFER): Replace ifs with #ifs to
6326 avoid compiler warnings.
6327
6328 * locale/programs/localedef.c (main): Always call
6329 construct_output_path.
6330
6331 * iconv/Makefile (CFLAGS-simple-hash.c): Define to find hashval.h.
6332
6333 * locale/programs/locfile.c (to_archive): New variable. To collect
6334 data which has to be added to the locale archive.
6335 (write_all_categories): Take new third parameter with locale name.
6336 Unless no_archive flag set add new locale data to the archive
6337 (write_locale_data): Unless no-archive flag set store generated data
6338 in to_archive data structure instead of generation output file.
6339 Add new parameter with locale category index.
6340 * locale/programs/locfile.h: Add new parameters in declaractions of
6341 write_all_categories and write_locale_data.
6342 * locale/programs/localedef.c: Recognize --no-archive, --list-archive,
6343 --add-to-archive, and --delete-from-archive options. Pass extra
6344 parameter to write_all_categories.
6345 * locale/programs/localedef.h: Add prototypes for functions in
6346 locarchive.c.
6347 * locale/locarchive.h: New file.
6348 * locale/programs/locarchive.c: New file.
6349 * locale/Makefile (distribute): Add programs/locarchive.c and
6350 locarchive.h.
6351 (localedef-modules): Add md5 and locarchive.
6352 Add vpath to crypt subdir for md5.c.
6353
6354 * locale/programs/ld-address.c: Pass locale category ID as new second
6355 parameter to write_locale_data.
6356 * locale/programs/ld-collate.c: Likewise.
6357 * locale/programs/ld-ctype.c: Likewise.
6358 * locale/programs/ld-identification.c: Likewise.
6359 * locale/programs/ld-measurement.c: Likewise.
6360 * locale/programs/ld-messages.c: Likewise.
6361 * locale/programs/ld-monetary.c: Likewise.
6362 * locale/programs/ld-name.c: Likewise.
6363 * locale/programs/ld-numeric.c: Likewise.
6364 * locale/programs/ld-paper.c: Likewise.
6365 * locale/programs/ld-telephone.c: Likewise.
6366 * locale/programs/ld-time.c: Likewise.
6367
6368 * locale/simple-hash.c: Move compute_hashval function from here...
6369 * locale/hashval.h: ...to here. New file.
6370 * locale/simple-hash.h: Add prototype for compute_hashval.
6371
6372 * include/libintl.h: Minor cleanups.
6373
6374 2002-04-16 Ulrich Drepper <drepper@redhat.com>
6375
6376 * posix/regcomp.c (gettext): Use INTUSE for _libc_intl_domainname.
6377
6378 2002-04-15 Ulrich Drepper <drepper@redhat.com>
6379
6380 * include/sys/stat.h: Fix typo. Patch by HJ Lu.
6381
6382 2002-04-14 Bruno Haible <bruno@clisp.org>
6383
6384 * locale/programs/charmap.c (charmap_read): Don't access result if
6385 result == NULL.
6386
6387 2002-02-17 Andreas Schwab <schwab@suse.de>
6388
6389 * elf/reldep7.c: New file.
6390 * elf/reldep7mod1.c: New file.
6391 * elf/reldep7mod2.c: New file.
6392 * elf/Makefile: Add rules to build and run reldep7.
6393
6394 2002-04-14 Jakub Jelinek <jakub@redhat.com>
6395
6396 * elf/dl-lookup.c (_dl_lookup_symbol): Move add_dependency call to
6397 the end of the function. Pass original flags to recursive call if
6398 add_dependency failed.
6399 (_dl_lookup_versioned_symbol): Likewise.
6400
6401 2002-04-13 Jakub Jelinek <jakub@redhat.com>
6402
6403 * time/mktime.c (__mktime_internal): If year is 69, don't bail out
6404 early, but check whether it overflowed afterwards.
6405 * time/tst-mktime.c (main): Add new tests.
6406
6407 2002-04-14 Ulrich Drepper <drepper@redhat.com>
6408
6409 * debug/xtrace.sh: Fix program name in help message.
6410 Patch by Roger Luethi <rl@hellgate.ch>.
6411
6412 * include/sys/stat.h: Add prototypes for __lxstat_internal and
6413 __lxstat64_internal. Add macros __lxstat and __lxstat64 if not
6414 NOT_IN_libc.
6415 * sysdeps/generic/lxstat.c: Use INTDEF for __lxstat.
6416 * sysdeps/mach/hurd/lxstat.c: Likewise.
6417 * sysdeps/unix/common/lxstat.c: Likewise.
6418 * sysdeps/unix/sysv/aix/lxstat.c: Likewise.
6419 * sysdeps/unix/sysv/linux/lxstat.c: Likewise.
6420 * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
6421 * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.
6422 * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c: Likewise.
6423 * sysdeps/generic/lxstat64.c: Use INTDEF for __lxstat64.
6424 * sysdeps/mach/hurd/lxstat64.c: Likewise.
6425 * sysdeps/unix/sysv/aix/lxstat64.c: Likewise.
6426 * sysdeps/unix/sysv/linux/lxstat64.c: Likewise.
6427
6428 * include/wchar.h: Declare __mbrtowc_internal and __mbrlen_internal
6429 prototypes. Add __mbrlen and __mbrtowc macros.
6430 * wcsmbs/mbrlen.c: Use INTDEF for __mbrlen.
6431 * wcsmbs/mbrtowc.c: Use INTDEF for __mbrtowc.
6432
6433 * include/unistd.h: Add prototype for __write_internal and add
6434 __libc_write macro is SHARED.
6435 * sysdeps/generic/write.c: Use INTDEF for __write.
6436 * sysdeps/mach/hurd/write.c: Likewise.
6437 * sysdeps/unix/sysv/aix/write.c: Likewise.
6438 * sysdeps/unix/syscalls.list: Add __libc_write alias.
6439
6440 * assert/assert.c: Replace STR_N_SIZE with something usable in
6441 macro arguments.
6442 * assert/assert-perr.c: Likewise.
6443
6444 * include/sys/socket.h: Declare __libc_sa_len_internal and define
6445 SA_LEN macro to use it if not NOT_IN_libc.
6446 * sysdeps/unix/sysv/linux/sa_len.c: Use INTDEF for __libc_sa_len.
6447
6448 * include/fcntl.h: Declare __open_internal and define __open and
6449 __libc_open macros if not NOT_IN_libc.
6450 * sysdeps/generic/open.c: Use INTDEF for __open.
6451 * sysdeps/mach/hurd/open.c: Likewise.
6452 * sysdeps/unix/sysv/aix/open.c: Likewise.
6453 * sysdeps/unix/syscalls.list: Add __open_internal alias.
6454
6455 * sysdeps/generic/check_fds.c: Make sure newly opened file descriptor
6456 has correct number.
6457
6458 * include/fcntl.h: Define __libc_fcntl macro if not NOT_IN_libc.
6459 * sysdeps/mach/hurd/fcntl.c: Undefine __libc_fcntl as well.
6460 * sysdeps/unix/sysv/aix/fcntl.c: Likewise.
6461 * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
6462
6463 * include/wctype.h: Declare __iswalpha_l_internal,
6464 __iswdigit_l_internal, __iswspace_l_internal,
6465 __iswxdigit_l_internal, and __iswctype_internal. Define
6466 __iswalpha_l, __iswctype, __iswdigit_l, __iswspace_l, and
6467 __iswxdigit_l macros if not NOT_IN_libc.
6468 * wctype/iswctype.c: Use INTDEF for __iswctype.
6469 * wctype/wcfuncs_l.c: Use INTDEF for all __iswXXX_l.
6470
6471 * include/math.h: Declare __isinf_internal, __isinfl_internal,
6472 __isnan_internal, and __isnanl_internal.
6473 * stdio-common/printf_fp.c: Use INTUSE for calls to __isinf, __isinfl,
6474 __isnan, and __isnanl.
6475 * stdio-common/printf_size.c: Likewise.
6476 * sysdeps/generic/printf_fphex.c: Likewise.
6477 * sysdeps/i386/fpu/s_isinfl.c: Also define _internal alias.
6478 * sysdeps/i386/fpu/s_isnanl.c: Likewise.
6479 * sysdeps/ia64/fpu/s_isinf.S: Likewise.
6480 * sysdeps/ia64/fpu/s_isnan.S: Likewise.
6481 * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
6482 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
6483 * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
6484 * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
6485 * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
6486 * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
6487 * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
6488 * sysdeps/m68k/s_isinfl.c: Likewise.
6489 * sysdeps/m68k/fpu/s_isinf.c: Likewise.
6490 * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
6491
6492 * include/sys/time.h: Declare __gettimeofday_internal and define
6493 __gettimeofday macro if not NOT_IN_libc.
6494 * sysdeps/generic/gettimeofday.c: Use INTEDEF for __gettimeofday.
6495 * sysdeps/mach/gettimeofday.c: Likewise.
6496 * sysdeps/posix/gettimeofday.c: Likewise.
6497 * sysdeps/unix/sysv/aix/gettimeofday.c: Likewise.
6498 * sysdeps/unix/common/syscalls.list: Define __gettimeofday alias.
6499 * sysdeps/unix/sysv/linux/alpha/gettimeofday.S: Likewise.
6500 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Likewise.
6501
6502 * include/sys/stat.h: Declare __fxstat_internal and __fxstat64_internal
6503 and define __fxstate and __fxstat64 macros if not NOT_IN_libc.
6504 Remove __lstat and __fstat inline functions.
6505 * sysdeps/generic/fxstat.c: Use INTDEF for __fxstat.
6506 * sysdeps/mach/hurd/fxstat.c: Likewise.
6507 * sysdeps/unix/fxstat.c: Likewise.
6508 * sysdeps/unix/sysv/aix/fxstat.c: Likewise.
6509 * sysdeps/unix/sysv/linux/fxstat.c: Likewise.
6510 * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
6511 * sysdeps/unix/sysv/linux/ia64/fxstat.c: Likewise.
6512 * sysdeps/unix/sysv/linux/s390/s390-64/fxstat.c: Likewise.
6513 * sysdeps/generic/fxstat64.c: Use INTDEF for __fxstat64.
6514 * sysdeps/mach/hurd/fxstat64.c: Likewise.
6515 * sysdeps/unix/sysv/aix/fxstat64.c: Likewise.
6516 * sysdeps/unix/sysv/linux/fxstat64.c: Likewise.
6517
6518 * include/unistd.h: Declare __getpid_internal and define
6519 __getpid macro if not NOT_IN_libc.
6520 * sysdeps/mach/hurd/getpid.c: Use INTDEF for __getpid.
6521 * sysdeps/generic/getpid.c: Likewise.
6522 * sysdeps/unix/syscalls.list: Add __getpid_internal alias.
6523 * posix/bsd-getpgrp.c: Use INTUSE for __getpgid call.
6524
6525 * include/unistd.h: Declare __getpgid_internal and define
6526 __getpgid macro if not NOT_IN_libc.
6527 * sysdeps/generic/getpgid.c: Use INTDEF for __getpgid.
6528 * sysdeps/mach/hurd/getpgid.c: Likewise.
6529 * sysdeps/unix/sysv/aix/getpgid.c: Likewise.
6530 * sysdeps/unix/sysv/sysv4/__getpgid.c: Likewise.
6531 * sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
6532 * sysdeps/unix/sysv/linux/syscalls.list: Add _getpgid_internal alias.
6533
6534 * include/unistd.h: Declare __getpagesize_internal and define
6535 __getpagesize macro if not NOT_IN_libc.
6536 * sysdeps/unix/sysv/linux/shmat.c: Include <unistd.h> for
6537 __getpagesize.
6538 * sysdeps/generic/getpagesize.c: Use INTDEF for __getpagesize.
6539 * sysdeps/mach/getpagesize.c: Likewise.
6540 * sysdeps/posix/getpagesize.c: Likewise.
6541 * sysdeps/unix/getpagesize.c: Likewise.
6542 * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
6543 * sysdeps/unix/sysv/linux/ia64/getpagesize.c: Likewise.
6544 * sysdeps/unix/sysv/linux/m68k/getpagesize.c: Likewise.
6545 * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Likewise.
6546
6547 2002-04-13 Andreas Jaeger <aj@suse.de>
6548
6549 * sysdeps/i386/i486/bits/string.h (__strcspn_cg): Use only memory
6550 as clobber to reduce register pressure.
6551 (__strpbrk_cg): Likewise.
6552 (__mempcpy_by4): Likewise.
6553 (__strstr_cg): Likewise.
6554 Add prototype for __memrchr.
6555
6556 2002-04-13 Andreas Schwab <schwab@suse.de>
6557
6558 * sysdeps/m68k/fpu/s_finite.c: Add internal alias.
6559 * sysdeps/m68k/fpu/s_finitef.c: Likewise.
6560 * sysdeps/m68k/fpu/s_finitel.c: Likewise.
6561
6562 2002-04-13 Ulrich Drepper <drepper@redhat.com>
6563
6564 * elf/do-lookup.h [!VERSIONED]: Add new parameter flags. Use it to
6565 check whether the caller prefers getting the most recent version of
6566 a symbol of the earliest version.
6567 * elf/dl-lookup.c: Adjust all callers of do_lookup. Change
6568 _dl_do_lookup to also take the new parameter and pass it on.
6569 Change 'explicit' parameter of _dl_lookup_symbol and
6570 _dl_lookup_versioned_symbol to flags. Adjust tests.
6571 * sysdeps/generic/ldsodefs.h: Adjust prototypes.
6572 * elf/dl-libc.c: Adjust all callers of _dl_lookup_symbol and
6573 _dl_lookup_versioned_symbol.
6574 * elf/dl-reloc.c: Likewise.
6575 * elf/dl-runtime.c: Likewise.
6576 * elf/dl-sym.c: Likewise.
6577 * sysdeps/mips/dl-machine.h: Likewise.
6578
6579 2002-04-11 Jakub Jelinek <jakub@redhat.com>
6580
6581 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (LOC): Don't paste
6582 in a token.
6583 * sysdeps/unix/sysv/sysv4/solaris2/sparc/sysdep.h (LOC): Likewise.
6584
6585 2002-04-10 Andreas Jaeger <aj@suse.de>
6586
6587 * sysdeps/unix/sysv/linux/x86_64/glob.c: New file.
6588
6589 * include/argz.h: Remove extra char from last patch.
6590
6591 2002-04-09 Ulrich Drepper <drepper@redhat.com>
6592
6593 * sysdeps/mach/hurd/chown.c: Use INTDEF for __chown.
6594 * sysdeps/unix/sysv/aix/chown.c: Likewise.
6595 * sysdeps/unix/grantpt.c: Use INTUSE for __chown calls.
6596 * sysdeps/unix/sysv/linux/m68k/chown.c: Likewise.
6597 * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
6598 * sysdeps/unix/sysv/linux/i386/chown.c: Use INTDEF2 to define
6599 __chown_internal.
6600 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
6601
6602 * intl/dcngettext.c [_LIBC]: Use INTUSE for __dcngettext.
6603 * intl/dngettext.c [_LIBC] (DCNGETTEXT): Use INTUSE.
6604 * intl/ngettext.c: Likewise.
6605
6606 * include/sys/socket.h: Declare __connect_internal and define
6607 __connect macro if not NOT_IN_libc.
6608 * sysdeps/mach/hurd/connect.c: Use INTDEF for __connect.
6609 * sysdeps/unix/sysv/aix/connect.c: Likewise.
6610 * sysdeps/unix/sysv/linux/connect.S: Add __connect_internal alias.
6611
6612 * include/unistd.h: Declare __close_internal and define __close macro
6613 if not NOT_IN_libc.
6614 * libio/libioP.h (JUMO0, JUMP1, JUMP2, JUMP3, WJUMP0, WJUMP1, WJUMP2,
6615 WJUMP3): Add extra parenthesis to avoid expanding element names with
6616 macors like __close.
6617 * sysdeps/unix/syscalls.list: Add __close_internal alias.
6618
6619 * include/unistd.h: Declare __dup2_internal and define __dup2 macro
6620 if not NOT_IN_libc.
6621 * sysdeps/mach/hurd/dup2.c: Use INTDEF for __dup2.
6622 * sysdeps/posix/dup2.c: Use INTDEF for __dup2.
6623 * sysdeps/unix/syscalls.list: Add __dup2_internal alias.
6624
6625 * include/unistd.h: Declare __fork_internal and define __fork macro
6626 if not NOT_IN_libc.
6627 * sysdeps/mach/hurd/fork.c: Use INTDEF for __fork.
6628 * sysdeps/unix/sysv/aix/fork.c: Likewise.
6629 * sysdeps/unix/sysv/linux/syscalls.list: Add __fork_internal alias.
6630
6631 * include/stdio_ext.h: Declare __fsetlocking_internal and define
6632 __fsetlocking macro to use it if not NOT_IN_libc.
6633 * libio/__fsetlocking.c: Use INTDEF for __fsetlocking.
6634
6635 * libio/__fbufsize.c: Correct copyright.
6636 * libio/__flbf.c: Likewise.
6637 * libio/__fpending.c: Likewise.
6638 * libio/__fpurge.c: Likewise.
6639 * libio/__freadable.c: Likewise.
6640 * libio/__freading.c: Likewise.
6641 * libio/__fsetlocking.c: Likewise.
6642 * libio/__fwritable.c: Likewise.
6643 * libio/__fwriting.c: Likewise.
6644
6645 * include/stdio.h: Declare __asprintf_internal and define __asprintf
6646 macro to use it if not NOT_IN_libc.
6647 * stdio-common/asprintf.c: Use INTDEF for __asprintf.
6648
6649 * include/mntent.h: Declare __setmntent_internal,
6650 __getmntent_r_internal, __endmntent_internal. Define __setmntent,
6651 __getmntent_r, and __endmntent macros to use these functions if not
6652 NOT_IN_libc.
6653 * misc/mntent_r.c: Use INTDEF for __setmntent, __getmntent_r, and
6654 __endmntent.
6655
6656 * include/math.h: Declare __finite_internal, __finitef_internal, and
6657 __finitel_internal. Redefine isfinite macro if in libc or libm using
6658 these functions.
6659 * sysdeps/generic/s_ldexp.c: Use INTUSE for __finite calls.
6660 * sysdeps/generic/s_ldexpf.c: Use INTUSE for __finitef calls.
6661 * sysdeps/generic/s_ldexpl.c: Use INTUSE for __finitel calls.
6662 * sysdeps/i386/fpu/s_finite.S: Define _internal alias.
6663 * sysdeps/i386/fpu/s_finitef.S: Likewise.
6664 * sysdeps/i386/fpu/s_finitel.S: Likewise.
6665 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
6666 * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
6667 * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
6668 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
6669
6670 * include/fcntl.h: Declare __fcntl_internal. Define __fcntl macro
6671 to use this function if not NOT_IN_libc.
6672 * libio/iofdopen.c (_IO_fcntl): Use INTUSE.
6673 * sysdeps/generic/fcntl.c: Use INTDEF for __fcntl.
6674 * sysdeps/mach/hurd/fcntl.c: Likewise.
6675 * sysdeps/unix/sysv/aix/fcntl.c: Likewise.
6676 * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
6677
6678 * include/argz.h: Declare __argz_count_internal and
6679 __argz_stringify_internal.
6680 * intl/l10nflist.c [_LIBC]: Use INTUSE for __argz_count and
6681 __argz_stringify.
6682 * string/argz-count.c: Use INTDEF for __argz_count.
6683 * string/argz-stringify.c: Use INTDEF for __argz_stringify.
6684
6685 * include/stdlib.h: Declare __cxa_atexit_internal and define
6686 __cxa_atexit macro if not NOT_IN_libc.
6687 * stdlib/cxa_atexit.c: Use INTDEF for __cxa_atexit.
6688 * dlfcn/Makefile: Define NOT_IN_libc when compiling modcxaatexit.c.
6689
6690 * assert/assert.c: Use INTDEF for __assert_fail.
6691 * assert/__assert.c: Use INTUSE for call to __assert_fail.
6692 * include/assert.h: Declare __assert_fail_internal.
6693
6694 * extra-lib.mk: Mark assignment to lib with override.
6695
6696 2002-04-08 Ulrich Drepper <drepper@redhat.com>
6697
6698 * Makerules: Use cppflags-iterator.mk to add defines for all test
6699 source files.
6700
6701 2002-04-08 kaz Kojima <kkojima@rr.iij4u.or.jp>
6702
6703 * elf/elf.h: Define R_SH_TLS_xxx macros.
6704 * elf/rtld.c: Remove an extra parenthesis.
6705 * elf/tls-macros.h: Define SH version TLS_LE, TLS_IE, TLS_LD and
6706 TLS_GD macros.
6707 * sysdeps/generic/dl-tls.c: Add a missing semi-colon.
6708 * sysdeps/sh/dl-lookupcfg.h: New file.
6709 * sysdeps/sh/dl-tls.h: New file.
6710 * sysdeps/sh/dl-machine.h (elf_machine_type_class): Set
6711 ELF_RTYPE_CLASS_PLT also for the three TLS relocations.
6712 (elf_machine_rela): Handle R_SH_TLS_DTPMOD32, R_SH_TLS_DTPOFF32 and
6713 R_SH_TLS_TPOFF32 relocations.
6714
6715 2002-04-08 Ulrich Drepper <drepper@redhat.com>
6716
6717 * cppflags-iterator.mk (cpp-srcs-left): Define NOT_IN_libc instead
6718 of NOT_IN_LIBC.
6719 * include/libintl.h: Test for NOT_IN_libc not NOT_IN_LIBC.
6720 * include/stdlib.h: Likewise.
6721
6722 2002-04-08 Jakub Jelinek <jakub@redhat.com>
6723
6724 * elf/Makefile (CFLAGS-.os): Define NOT_IN_libc and IS_IN_rtld
6725 instead of _RTLD_LOCAL.
6726 * elf/dl-dst.h: Use IS_IN_rtld instead of _RTLD_LOCAL.
6727 * include/unistd.h: Likewise.
6728 * sysdeps/generic/ldsodefs.h: Likewise.
6729
6730 * stdio-common/_itoa.h (_itoa_word): Only use internal digit arrays
6731 if in libc or ld.so.
6732
6733 2002-04-08 Andreas Jaeger <aj@suse.de>
6734
6735 * elf/cache.c (print_entry): Support x86-64.
6736
6737 2002-04-08 Ulrich Drepper <drepper@redhat.com>
6738
6739 * include/stdlib.h: For libc itself replace MB_CUR_MAX definition
6740 with one accessing the locale data structures directly.
6741 * stdio-common/printf-prs.c: Include localeinfo.h for new
6742 MB_CUR_MAX definition.
6743
6744 * Makeconfig (CPPFLAGS): Also add CPPFLAGS-<basename> where <basename>
6745 is the name of the source file without extension.
6746 * Makefile (distribute): Add cppflags-iterator.mk.
6747 * cppflags-iterator.mk: New file.
6748 * extra-lib.mk: For the sources of the library run
6749 cppflags-iterator.mk.
6750
6751 * include/libintl.h: Declare __dcgettext_internal and
6752 _libc_intl_domainname_internal. Define __dcgettext using these
6753 two symbols if used in libc itself.
6754 * argp/argp-help.c: Define dgettext using __dcgettext_internal and
6755 _libc_intl_domainname_internal.
6756 * argp/argp-parse.c: Likewise.
6757 * intl/dcgettext.c (__dcgettext): Use INTDEF to define alias.
6758 * intl/dgettext.c: Call __dcgettext_internal instead of __dcgettext.
6759 * intl/gettext.c: Likewise.
6760 * locale/SYS_libc.c (_libc_intl_domainname): Use INTDEF to define
6761 alias.
6762 * posix/regcomp.c (gettext): Use __dcgettext_internal instead of
6763 __dcgettext.
6764 * posix/regex_internal.c (gettext): Likewise.
6765
6766 2002-04-08 Andreas Jaeger <aj@suse.de>
6767
6768 * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Fix rewrite rule.
6769
6770 * sysdeps/x86_64/fpu/s_llrint.S: New file.
6771 * sysdeps/x86_64/fpu/s_llrintf.S: New file.
6772 * sysdeps/x86_64/fpu/s_llrintl.S: New file.
6773 * sysdeps/x86_64/fpu/s_lrint.S: New file.
6774 * sysdeps/x86_64/fpu/s_lrintf.S: New file.
6775 * sysdeps/x86_64/fpu/s_lrintl.S: New file.
6776
6777 2002-04-08 Roland McGrath <roland@frob.com>
6778
6779 * sysdeps/mach/hurd/dl-sysdep.c (__mmap): Use MAP_FAILED instead of
6780 widening __hurd_fail value.
6781
6782 2002-04-07 Roland McGrath <roland@frob.com>
6783
6784 * sysdeps/mach/hurd/alpha/trampoline.c: Don't include
6785 <mach/machine/alpha_instruction.h>.
6786 (_hurd_setup_sighandler): Take proper arguments for current decls.
6787 Update code to use _hurdsig_catch_fault.
6788 Use `callsys' instruction instead of `call_pal'.
6789 * sysdeps/mach/hurd/alpha/intr-msg.h: New file.
6790
6791 * sysdeps/mach/alpha/sysdep.h: Include <mach/alpha/asm.h>.
6792 (ALIGN, at, AT, fp): New macros.
6793
6794 2002-04-06 Roland McGrath <roland@frob.com>
6795
6796 * mach/setup-thread.c (__mach_setup_thread): int -> natural_t
6797
6798 * sysdeps/mach/hurd/dl-sysdep.c: Use ElfW(TYPE) in place of Elf32_TYPE.
6799 (__mmap): Use MAP_FAILED instead of widening __hurd_fail value.
6800
6801 * sysdeps/mach/hurd/bind.c: Use prototype definition.
6802 * sysdeps/mach/hurd/connect.c: Likewise.
6803 * sysdeps/mach/hurd/getsockopt.c: Likewise.
6804 * sysdeps/mach/hurd/setsockopt.c: Likewise.
6805
6806 * sysdeps/mach/hurd/alpha/sigreturn.c: Pass missing argument to
6807 __msg_sig_post RPC.
6808
6809 * hurd/catch-exc.c: Use integer_t instead of int.
6810 * hurd/hurdfault.c: Likewise.
6811
6812 * sysdeps/mach/hurd/alpha/exc2signal.c
6813 (_hurd_exception2signal): Rewritten.
6814 * sysdeps/mach/hurd/alpha/longjmp-ts.c
6815 (_hurd_longjmp_thread_state): Rewritten.
6816
6817 2002-04-07 Ulrich Drepper <drepper@redhat.com>
6818
6819 * nss/getXXbyYY_r.c: If NSS_attribute_hidden is defined use it with the
6820 DB_LOOKUP_FCT prototype.
6821 * nss/getXXent_r.c: Likewise.
6822 * inet/getaliasent_r.c: Define NSS_attribute_hidden.
6823 * inet/getaliasname_r.c: Likewise.
6824 * inet/getnetbyad_r.c: Likewise.
6825 * inet/getnetbynm_r.c: Likewise.
6826 * inet/getnetent_r.c: Likewise.
6827 * inet/getproto_r.c: Likewise.
6828 * inet/getprtent_r.c: Likewise.
6829 * inet/getprtname_r.c: Likewise.
6830 * inet/getrpcbyname_r.c: Likewise.
6831 * inet/getrpcbynumber_r.c: Likewise.
6832 * inet/getrpcent_r.c: Likewise.
6833 * inet/getservent_r.c: Likewise.
6834 * inet/getsrvbynm_r.c: Likewise.
6835 * inet/getsrvbypt_r.c: Likewise.
6836 * shadow/getspent_r.c: Likewise.
6837 * shadow/getspnam_r.c: Likewise.
6838
6839 * malloc/thread-m.h: Define __libc_tsd_MALLOC_data as static.
6840
6841 * sysdeps/i386/elf/bsd-setjmp.S: Use GOTOFF for __sigjmp_save access.
6842 Use i686-friendly PIC code.
6843 * sysdeps/i386/elf/setjmp.S: Likewise.
6844
6845 * sysdeps/unix/sysv/linux/i386/sysdep.h: Use i686-friendly PIC code.
6846
6847 * sysdeps/mach/hurd/Versions: Add _dl_init_first to libc and ld export
6848 list.
6849 * elf/Versions: Remove it here.
6850
6851 2002-04-06 Ulrich Drepper <drepper@redhat.com>
6852
6853 * iconvdata/tcvn5712-1.c (MAX_NEEDED_INPUT): Define for from
6854 direction. Reported by H . J . Lu <hjl@lucon.org>.
6855
6856 2002-04-05 Ulrich Drepper <drepper@redhat.com>
6857
6858 * intl/tst-gettext.sh: Set GCONV_PATH and LOCPATH to values for the
6859 test just before the test runs.
6860 * intl/tst-translit.sh: Likewise.
6861 * intl/tst-codeset.sh: Likewise.
6862
6863 * timezone/zic.c: Update from tzcode2002c.
6864 * timezone/asia: Update from tzdata2002c.
6865 * timezone/backward: Likewise.
6866 * timezone/europe: Likewise.
6867 * timezone/northamerica: Likewise.
6868 * timezone/northamerica: Likewise.
6869 * timezone/northamerica: Likewise.
6870 * timezone/southamerica: Likewise.
6871 * timezone/zone.tab: Likewise.
6872
6873 2002-03-23 Jakub Jelinek <jakub@redhat.com>
6874
6875 * sysdeps/generic/brk.c (__curbrk): Declare.
6876 * sysdeps/generic/dl-brk.c: Add attribute_hidden to __curbrk.
6877 * sysdeps/generic/dl-sbrk.c: Likewise.
6878 * sysdeps/unix/arm/dl-brk.S: New file.
6879 * sysdeps/unix/bsd/hp/m68k/dl-brk.S: New file.
6880 * sysdeps/unix/bsd/osf/alpha/dl-brk.S: New file.
6881 * sysdeps/unix/bsd/sun/m68k/dl-brk.S: New file.
6882 * sysdeps/unix/bsd/vax/dl-brk.S: New file.
6883 * sysdeps/unix/i386/dl-brk.S: New file.
6884 * sysdeps/unix/mips/dl-brk.S: New file.
6885 * sysdeps/unix/sparc/dl-brk.S: New file.
6886 * sysdeps/unix/sysv/linux/alpha/dl-brk.S: New file.
6887 * sysdeps/unix/sysv/linux/ia64/dl-brk.S: New file.
6888 * sysdeps/unix/sysv/linux/powerpc/dl-brk.S: New file.
6889 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-brk.S: New file.
6890
6891 2002-04-03 Andreas Schwab <schwab@suse.de>
6892
6893 * Makefile (headers): Add gnu/lib-names.h here instead of
6894 install-others.
6895 ($(inst_includedir)/gnu/lib-names.h): Remove explicit
6896 installation rule.
6897 (install-headers): Add dependency on install-headers-nosubdir.
6898 * stdio-common/Makefile (headers): Add bits/stdio_lim.h here
6899 instead of install-others.
6900 ($(inst_includedir)/bits/stdio_lim.h): Remove explicit
6901 installation rule.
6902
6903 2002-04-05 Ulrich Drepper <drepper@redhat.com>
6904
6905 * manual/users.tex (Enable/Disable Setuid): Fix typo in example.
6906 Reported by Sam Roberts <sroberts@uniserve.com>.
6907
6908 2002-04-03 Jakub Jelinek <jakub@redhat.com>
6909
6910 * elf/do-rel.h (elf_dynamic_do_rel): Skip relative relocs if
6911 l_addr == 0 and ELF_MACHINE_REL_RELATIVE.
6912 * sysdeps/alpha/dl-machine.h (ELF_MACHINE_REL_RELATIVE): Define.
6913 * sysdeps/ia64/dl-machine.h (ELF_MACHINE_REL_RELATIVE): Define.
6914
6915 2002-04-03 David Mosberger <davidm@hpl.hp.com>
6916
6917 * sysdeps/ia64/dl-machine.h (TRAMPOLINE_TEMPLATE): Add unwind info.
6918 (RTLD_START): Ditto.
6919 (__ia64_init_bootstrap_fdesc_table): Insert stop bit to avoid RAW
6920 dependency violation.
6921
6922 2002-04-05 Jakub Jelinek <jakub@redhat.com>
6923
6924 * time/mktime.c (__mktime_internal): Move check for year < 70 below
6925 all variable declarations.
6926
6927 2002-04-04 Andreas Schwab <schwab@suse.de>
6928
6929 * sysdeps/unix/sysv/linux/ia64/pipe.S: Don't overwrite r8 on error.
6930
6931 2002-04-04 Andreas Jaeger <aj@suse.de>
6932
6933 * sysdeps/x86_64/fpu/e_sqrt.c: New file.
6934 * sysdeps/x86_64/fpu/e_sqrtf.c: New file.
6935
6936 * sysdeps/x86_64/fpu/s_fabs.c: New file.
6937 * sysdeps/x86_64/fpu/s_fabsf.c: New file.
6938 * sysdeps/x86_64/fpu/s_fabsl.c: New file.
6939
6940 * sysdeps/unix/sysv/linux/x86_64/time.S: New file.
6941
6942 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: New file.
6943
6944 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: Removed.
6945 * sysdeps/unix/sysv/linux/x86_64/time.c: Removed.
6946
6947 * configure.in: Handle all mips entries the same.
6948
6949 * sysdeps/mips/dec/bits/endian.h: Removed since arch is not supported.
6950 * sysdeps/mips/mips3/*: Likewise.
6951 * sysdeps/mips/p40/bits/endian.h: Likewise.
6952
6953 2002-04-04 Ulrich Drepper <drepper@redhat.com>
6954
6955 * misc/dirname.c (dirname): Ignore trailing slashes at end of
6956 non-null result [PR libc/2600].
6957
6958 * misc/tst-dirname.c: Add more tests.
6959
6960 2002-04-03 Ulrich Drepper <drepper@redhat.com>
6961
6962 * locale/programs/charmap.c (charmap_read): If the charmap doesn't
6963 define a code_set_name provide one based on the filename.
6964
6965 * malloc/hooks.c: Define weak_variable correctly for _LIBC.
6966
6967 2001-12-28 Andreas Jaeger <aj@suse.de>
6968
6969 * time/mktime.c (__mktime_internal): Check for year < 70
6970 [PR libc/2738].
6971
6972 2002-04-03 Andreas Jaeger <aj@suse.de>
6973
6974 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Fix arguments for
6975 shmat.
6976 Reported by Andi Kleen <ak@suse.de>.
6977
6978 2002-04-03 Ulrich Drepper <drepper@redhat.com>
6979
6980 * sysdeps/generic/w_lgamma.c: Initialized local_signgam.
6981 * sysdeps/generic/w_lgammaf.c: Likewise.
6982 * sysdeps/generic/w_lgammal.c: Likewise [PR libc/2854].
6983
6984 * debug/catchsegv.sh (exval): Quote [ in pattern [PR libc/2902].
6985 Adjust for new output format of the backtrace functions.
6986
6987 * misc/syslog.c (vsyslog): Only use cleanup handler if
6988 _LIBC_REENTRANT is defined [PR libc/2924].
6989
6990 * libio/Makefile (tests): Add bug-ungetwc2.
6991 * libio/bug-ungetwc2.c: New file.
6992
6993 * manual/install.texi: Typographical and grammatical cleanup.
6994 Patch by Dennis Grace <dgrace@us.ibm.com>.
6995
6996 * sunrpc/rpc_svcout.c (write_real_program): Write "result, "
6997 parameter if mtflag. Patch by <jeongyun@innovay.com>.
6998
6999 * sunrpc/rpc_svcout.c (printif): Remove third parameter. It was
7000 always "&". Adjust callers.
7001 Add "_" prefix to several generated definitions.
7002 Patch by paul@serice.net [PR libc/3158].
7003
7004 2002-04-02 Ulrich Drepper <drepper@redhat.com>
7005
7006 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c: Completely specify
7007 size of _dl_arm_cap_flags.
7008 Patch by enrico.scholz@informatik.tu-chemnitz.de [PR libc/3155].
7009
7010 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
7011 Define as 8.
7012
7013 2002-03-22 H.J. Lu <hjl@gnu.org>
7014
7015 * scripts/firstversions.awk: Check the first version.
7016
7017 2002-04-02 Ulrich Drepper <drepper@redhat.com>
7018
7019 * elf/dl-deps.c (_dl_map_object_deps): The sorting of the
7020 dependencies must be stable to work correctly.
7021 Reported by martin.lubich@datacon.at.
7022
7023 * libio/bug-ungetwc1.c: New file.
7024 * libio/Makefile (tests): Add bug-ungetwc1.
7025
7026 * libio/fileops.c (_IO_new_file_close_it): Only call _IO_do_flush
7027 if stream was last used for writing.
7028
7029 * elf/do-lookup.h (do_lookup): 2 is the first user-defined version
7030 number [PR libc/3111].
7031
7032 * libio/iofclose.c (_IO_new_fclose): Move freeing of backup buffer
7033 to ...
7034 * libio/fileops.c (_IO_new_file_close_it): ...here [PR libc/3190].
7035
7036 2002-04-02 Jakub Jelinek <jakub@redhat.com>
7037
7038 * inet/ether_ntoh.c (__nss_ethers_lookup): Add internal_function.
7039 * inet/ether_hton.c (__nss_ethers_lookup): Likewise.
7040 * inet/getnetgrent_r.c (__nss_netgroup_lookup): Likewise.
7041 * sunrpc/netname.c (__nss_publickey_lookup): Likewise.
7042 * sunrpc/publickey.c (__nss_publickey_lookup): Likewise.
7043
7044 2002-03-30 Jakub Jelinek <jakub@redhat.com>
7045
7046 * elf/dynamic-link.h (elf_get_dynamic_info): Don't abort on unknown
7047 dynamic tags.
7048
7049 2002-03-29 Jakub Jelinek <jakub@redhat.com>
7050
7051 * sysdeps/i386/fpu/s_fabs.S: New file.
7052 * sysdeps/i386/fpu/s_fabsf.S: New file.
7053 * sysdeps/i386/fpu/s_fabsl.S: New file.
7054 * sysdeps/sparc/sparc64/fpu/s_fabs.c: New file.
7055 * sysdeps/sparc/sparc64/fpu/s_fabsf.c: New file.
7056 * sysdeps/sparc/sparc64/fpu/s_fabsl.c: New file.
7057
7058 2002-04-02 Ulrich Drepper <drepper@redhat.com>
7059
7060 * rt/tst-shm.c (do_test): Add one more test for size of shared
7061 memory object.
7062
7063 2002-03-29 Wolfram Gloger <wg@malloc.de>
7064
7065 * malloc/malloc.c: Add short description and prototypes for
7066 malloc_get_state, malloc_set_state and posix_memalign, for
7067 consistency and to avoid warnings with -Wstrict-prototypes.
7068 Reported by Andreas Jaeger <aj@suse.de>.
7069
7070 2002-04-02 Ulrich Drepper <drepper@redhat.com>
7071
7072 * po/gl.po: Update from translation team.
7073
7074 2002-03-31 Roland McGrath <roland@frob.com>
7075
7076 * hurd/hurdselect.c (_hurd_select): Fix
7077 MACH_MSG_TYPE_INTEGER_T -> integer_t in sizeof.
7078 Use a union rather than casts to compare mach_msg_type_t as int.
7079
7080 2002-03-25 Roland McGrath <roland@frob.com>
7081
7082 * hurd/hurdchdir.c (_hurd_change_directory_port_from_name): Don't
7083 check off the end of NAME when it's shorter than 2 chars.
7084 Reported by Ognyan Kulev <ogi@fmi.uni-sofia.bg>.
7085
7086 2002-03-17 Roland McGrath <roland@frob.com>
7087
7088 * sysdeps/mach/hurd/i386/sys/io.h: New file.
7089 * sysdeps/mach/hurd/i386/ioperm.c: New file.
7090 * sysdeps/mach/hurd/i386/Dist: Add them.
7091 * sysdeps/mach/hurd/i386/Versions
7092 (libc: GLIBC_2.2.6): New set, add ioperm.
7093 * sysdeps/mach/configure.in: New check to set HAVE_I386_IO_PERM_MODIFY.
7094 (mach_interface_list): Check for mach_i386.defs.
7095 * config.h.in (HAVE_I386_IO_PERM_MODIFY): #undef it.
7096 * sysdeps/mach/configure: Regenerated.
7097
7098 2002-03-22 Ulrich Drepper <drepper@redhat.com>
7099
7100 * po/fr.po: Update from translation team.
7101
7102 2002-03-21 Martin Schwidefsky <schwidefsky@de.ibm.com>
7103
7104 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Remove
7105 getpriority from syscalls list.
7106
7107 2002-03-28 Andreas Jaeger <aj@suse.de>
7108
7109 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: New file.
7110 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: New file.
7111 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: New file.
7112 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: New file.
7113
7114 2002-03-27 Andreas Jaeger <aj@suse.de>
7115
7116 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
7117 sigcontext): Follow further kernel change.
7118
7119 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Follow further
7120 kernel change.
7121
7122 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h (GET_STACK):
7123 Change for struct sigcontext change.
7124
7125 * sysdeps/unix/sysv/linux/x86_64/register-dump.h (register_dump):
7126 Follow changes in struct sigcontext.
7127
7128 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Remove ptrace
7129 sysycall, use wrapper instead.
7130
7131 2002-03-26 Andreas Jaeger <aj@suse.de>
7132
7133 * sysdeps/i386/i486/bits/string.h (__memcpy_by4): Describe memory
7134 read and write accesses as detailed as possible.
7135 (__memcpy_by2): Likewise.
7136 (__memcpy_g): Likewise.
7137 (memmove): Likewise.
7138 (memcmp): Likewise.
7139 (__memset_ccn_by4): Likewise.
7140 (__memset_ccn_by2): Likewise.
7141 (__memset_gcn_by4): Likewise.
7142 (__memset_gcn_by2): Likewise.
7143 (memchr): Likewise.
7144 (__memrchr): Likewise.
7145 (rawmemchr): Likewise.
7146 (__strlen_g): Likewise.
7147 (__strcpy_g): Likewise.
7148 (__mempcpy_by4): Likewise.
7149 (__mempcpy_by2): Likewise.
7150 (__mempcpy_byn): Likewise.
7151 (__stpcpy_g): Likewise.
7152 (__strncpy_by4): Likewise.
7153 (__strncpy_by2): Likewise.
7154 (__strncpy_byn): Likewise.
7155 (__strncpy_gg): Likewise.
7156 (__strcat_c): Likewise.
7157 (__strcat_g): Likewise.
7158 (__strncat_g): Likewise.
7159 (__strcmp_gg): Likewise.
7160 (__strncmp_g): Likewise.
7161 (__strchr_c): Likewise.
7162 (__strchr_g): Likewise.
7163 (__strchrnul_c): Likewise.
7164 (__strchrnul_g): Likewise.
7165 (__strrchr_c): Likewise.
7166 (__strrchr_g): Likewise.
7167 (__strrchr_c): Likewise.
7168 (__strrchr_g): Likewise.
7169 (__strcspn_c1): Likewise.
7170 (__strcspn_cg): Likewise.
7171 (__strcspn_g): Likewise.
7172 (__strcspn_g): Likewise.
7173 (__strspn_c1): Likewise.
7174 (__strspn_cg): Likewise.
7175 (__strspn_g): Likewise.
7176 (__strspn_g): Likewise.
7177 (__strpbrk_cg): Likewise.
7178 (__strpbrk_g): Likewise.
7179 (__strstr_cg): Likewise.
7180 (__strstr_g): Likewise.
7181
7182 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Fix typo. Reported by
7183 Michal Ludvig <mludvig@suse.cz>.
7184
7185 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Add 32-bit
7186 compatibilty, adjust for kernel changes.
7187
7188 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
7189 sigcontext): Adjust for kernel changes.
7190
7191 2002-03-25 Andreas Jaeger <aj@suse.de>
7192
7193 * iconv/gconv_simple.c (ucs4le_internal_loop_single): Handle
7194 little endian.
7195 Reported by Artur Zaprzala <zybi@talex.com.pl>.
7196
7197 2002-03-24 Andreas Jaeger <aj@suse.de>
7198
7199 * manual/memory.texi (Aligned Memory Blocks): Fix typo.
7200
7201 * stdio-common/tst-fdopen.c (main): Remove unused variable.
7202
7203 * iconv/tst-iconv3.c (main): Use correct printf strings.
7204
7205 2002-03-18 Roland McGrath <roland@frob.com>
7206
7207 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (struct cmsgcred): New type.
7208 (CMGROUP_MAX): New macro.
7209
7210 2002-03-23 Roland McGrath <roland@frob.com>
7211
7212 * sysdeps/posix/shm_open.c (SHMDIR): /var/run/shm -> /dev/shm
7213 * sysdeps/posix/shm_unlink.c: Likewise.
7214
7215 2002-03-22 Roland McGrath <roland@frob.com>
7216
7217 * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu.*): Make 2.2.6 default.
7218 * sysdeps/mach/hurd/configure.in: Default oldest ABI is 2.2.6
7219 under --enable-libio.
7220 * sysdeps/mach/hurd/configure: Regenerated.
7221
7222 2002-03-23 Roland McGrath <roland@frob.com>
7223
7224 * sysdeps/mach/hurd/i386/Makefile
7225 (sysdep_routines, shared-only-routines): Don't add framestate,
7226 reverting 2001-10-02 change.
7227 * sysdeps/unix/sysv/linux/arm/Makefile: Likewise.
7228 * sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
7229 * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
7230 * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
7231 * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
7232 * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
7233 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Likewise.
7234 * sysdeps/unix/sysv/linux/sparc/Makefile: Likewise.
7235 * sysdeps/generic/Makefile (sysdep_routines, shared-only-routines):
7236 Do it here instead, only if [$(unwind-find-fde) = yes].
7237
7238 2002-03-23 Andreas Jaeger <aj@suse.de>
7239
7240 * signal/signal.h: Fix typo. Patch by Steve Kemp
7241 <skx@tardis.ed.ac.uk>.
7242
7243 2002-03-22 Andreas Jaeger <aj@suse.de>
7244
7245 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add getresgid and
7246 getresuid.
7247
7248 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
7249 _fpstate): Rename fwd to ftw, use _fpxreg and _xmmreg.
7250 * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
7251 user_fpregs_struct): Rename fwd.
7252
7253 * sysdeps/unix/sysv/linux/x86_64/register-dump.h (register_dump):
7254 Follow sigcontext changes.
7255
7256 2002-03-22 Andreas Jaeger <aj@suse.de>
7257
7258 * sysdeps/mips/bits/nan.h: New file. Copy from generic one with
7259 changes for NaNs on MIPS.
7260 Patch by Hartvig Ekner <hartvige@mips.com>.
7261
7262 2002-03-21 Ulrich Drepper <drepper@redhat.com>
7263
7264 * nscd/grpcache.c (addgrbyname): Improve buffer allocate with alloca.
7265 Use realloc if too large.
7266 (addgrbyid): Likewise.
7267 * nscd/hstcache.c (addhstbyname): Likewise.
7268 (addhstbyaddr): Likewise.
7269 (addhstbynamev6): Likewise.
7270 (addhstbyaddrv6): Likewise.
7271 * nscd/pwdcache.c (addpwbyname): Likewise.
7272 (addpwbyuid): Likewise.
7273
7274 2002-03-21 Andreas Jaeger <aj@suse.de>
7275
7276 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
7277 _fpstate): Add separate struct for x86-64.
7278
7279 * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
7280 user_fpregs_struct): Change member names to follow kernel.
7281
7282 2002-03-20 Ulrich Drepper <drepper@redhat.com>
7283
7284 * nis/ypclnt.c (yp_all): Remove the hack introduced on 1998-09-29.
7285 Correctly close the UDP connection right away [PR libc/3120].
7286
7287 2002-03-20 Andreas Jaeger <aj@suse.de>
7288
7289 * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
7290 user_fpregs_struct): Fix for changed kernel struct.
7291 (struct user_regs_struct): Likewise.
7292 (struct user): Likewise.
7293 Add 32-bit x86 compatibility.
7294
7295 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Add more registers.
7296
7297 2002-03-19 Andreas Jaeger <aj@suse.de>
7298
7299 * sysdeps/unix/sysv/linux/x86_64/bits/types.h: Cleanup x86 types.
7300
7301 2002-03-18 Andreas Jaeger <aj@suse.de>
7302
7303 * iconvdata/Makefile: Only run tests when shared libs are
7304 available.
7305
7306 2002-03-17 Andreas Jaeger <aj@suse.de>
7307
7308 * sysdeps/mips/fpu/fraiseexcpt.c (__feraiseexcept): Set cause bits.
7309
7310 * sysdeps/mips/fpu/fgetexcptflg.c (__fegetexceptflag): Add comment.
7311
7312 * sysdeps/mips/fpu/fclrexcpt.c (__feclearexcept): Clear also cause
7313 bits.
7314
7315 * sysdeps/mips/fpu/fenv_libc.h (CAUSE_MASK): New macro.
7316 (CAUSE_SHIFT): New macro.
7317 Patch by Hartvig Ekner <hartvige@mips.com>.
7318
7319 * sysdeps/generic/unwind-dw2-fde-glibc.c: Add prototypes.
7320 * sysdeps/generic/unwind-pe.h: Likewise.
7321
7322 * libio/iofdopen.c (_IO_new_fdopen): Pass parameter of correct
7323 type to _IO_setb.
7324
7325 * libio/stdio.c (AL2): Define variant when visibility attribute is
7326 not supported.
7327
7328 * include/libc-symbols.h (_INTVARDEF): Define variant when
7329 visibility attribute is not supported.
7330
7331 2002-03-16 Ulrich Drepper <drepper@redhat.com>
7332
7333 * po/fr.po: Update from translation team.
7334
7335 2002-02-25 Bruno Haible <bruno@clisp.org>
7336
7337 * MakeTAGS (extract): Use --sort-by-file instead of --sort-output.
7338
7339 2002-03-15 Ulrich Drepper <drepper@redhat.com>
7340
7341 * libio/iofdopen.c (_IO_new_fdopen): Call _IO_setb to deallocate
7342 buffers if _IO_file_attach failed.
7343
7344 * libio/fileops.c (_IO_file_open): Close file descriptor if
7345 _IO_SEEKOFF call failed.
7346
7347 2002-03-15 H.J. Lu <hjl@gnu.org>
7348 Ulrich Drepper <drepper@redhat.com>
7349
7350 * configure.in: Check for availability of
7351 init_array/fini_array/preinit_array handling in binutils.
7352 * config.h.in (HAVE_INITFINI_ARRAY): New macro.
7353 * config.make.in (have-initfini-array): New variable.
7354
7355 2002-03-15 Ulrich Drepper <drepper@redhat.com>
7356
7357 * stdio-common/tst-printf.c (main): Comment out one test which
7358 checked the compiler's ability to fold floating-point constants
7359 but not really printf.
7360 (rfg3): Make s const.
7361 * stdio-common/tst-printf.sh: Adjust for removed test.
7362
7363 * sysdeps/i386/i386-mcount.S: Just call __mcount_internal, it is an
7364 internal function. Adjust for internal_function calling convention.
7365 * sysdeps/i386/machine-gmon.h: Declare and define __mcount_internal
7366 as internal_function.
7367
7368 * sysdeps/generic/framestate.c: Declare fallback_frame_state_for as
7369 hidden.
7370
7371 * nss/XXX-lookup.c (DB_LOOKUP_FCT): Add internal_function to
7372 declaration and definition.
7373 * nss/getXXbyYY_r.c (DB_LOOKUP_FCT): Add internal_function to
7374 declaration.
7375 * nss/getXXent_r.c: Likewise.
7376 * nss/nsswitch.h (db_lookup_function): Add internal_function to
7377 definition.
7378
7379 * include/time.h: Declare __localtime_r as hidden.
7380
7381 * include/aliases.h: Declare __getaliasent_r as hidden.
7382 * include/grp.h: Declare __getgrent_r as hidden.
7383 * include/netdb.h: Declare __gethostent_r, __getnetent_r,
7384 __getservent_r, and __getprotoent_r as hidden.
7385 * include/pwd.h: Declare __getpwent_r as hidden.
7386 * include/shadow.h: Declare __getspent_r as hidden.
7387 * include/rpc/netdb.h: Declare __getrpcent_r as hidden.
7388
7389 * iconv/gconv_int.h: Declare __gconv_read_conf, __gconv_alias_compare,
7390 and __gconv_transliterate as hidden.
7391 Add internal_function to __gconv_get_path declaration.
7392 * iconv/gconv_conf.c: Add internal_function to __gconv_get_path
7393 definition. Add attribute_hidden to __gconv_read_conf definition.
7394
7395 2002-03-14 Ulrich Drepper <drepper@redhat.com>
7396
7397 * elf/rtld.c: Declare _environ as hidden.
7398 * sysdeps/generic/dl-environ.c: Likewise.
7399 * sysdeps/generic/dl-sysdep.c: Likewise.
7400
7401 * sysdeps/generic/ldsodefs.h: Declare _dl_debug_state_internal and
7402 _dl_mcount_internal as hidden.
7403
7404 * elf/Makefile (rtld-routines): Add dl-sbrk and dl-brk.
7405 * sysdeps/generic/dl-brk.c: New file.
7406 * sysdeps/generic/dl-sbrk.c: New file.
7407 * sysdeps/unix/sysv/linux/i386/dl-brk.c: New file.
7408 * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: New file.
7409
7410 * elf/dl-minimal.c (malloc): Declare _end as hidden.
7411 (__errno_location): New function. Declare errno as hidden.
7412 * elf/rtld.c (_dl_argc): Define as hidden.
7413 (_dl_skip_args): Define as hidden.
7414 (_begin, _end): Declare as hidden.
7415 * sysdeps/generic/dl-sysdep.c (_end): Declare as hidden.
7416 * sysdeps/generic/entry.h (_start): Declare as hidden.
7417 * sysdeps/generic/ldsodefs.h (_dl_argc): Declare as hidden.
7418 * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Declare
7419 _dl_runtime_resolve and _dl_runtime_profile as hidden.
7420 (RTLD_START): Use GOTOFF to access _dl_skip_args and _dl_fini.
7421
7422 2002-03-14 Roland McGrath <roland@frob.com>
7423
7424 * Makerules ($(common-objpfx)Versions.v.i): Depend on abi-versions.h.
7425
7426 * Makeconfig (%.v.i, %.v): New implicit rules.
7427 (preprocess-versions): Variable removed.
7428 ($(common-objpfx)shlib-versions.v.i): New target giving just the
7429 shlib-versions input files as dependencies.
7430 ($(common-objpfx)soversions.i): Depend on that instead of the input
7431 files. Use it as input instead of using a pipeline.
7432 (postclean-generated): Append soversions.i, shlib-versions.v, and
7433 shlib-versions.v.i here.
7434 * Makerules ($(common-objpfx)Versions.def.v.i): New target giving just
7435 the Versions.def input files as dependencies.
7436 ($(common-objpfx)Versions.v.i): Likewise for Versions files.
7437 ($(common-objpfx)Versions.all): Depend on that instead of the input
7438 files. Use it as input instead of using a pipeline.
7439 ($(common-objpfx)sysd-versions): Likewise with Versions.v.i.
7440 (postclean-generated): Append those .v and .v.i files here.
7441
7442 2002-03-14 Jakub Jelinek <jakub@redhat.com>
7443
7444 * locale/broken_cur_max.c (__ctype_get_mb_cur_max): Use nl_langinfo.
7445 * locale/Versions (_nl_current_LC_COLLATE, _nl_current_LC_CTYPE):
7446 Remove.
7447
7448 2002-03-14 Jakub Jelinek <jakub@redhat.com>
7449
7450 * sysdeps/generic/mp_clz_tab.c: New file.
7451 * sysdeps/i386/mp_clz_tab.c: New file.
7452 * sysdeps/hppa/mp_clz_tab.c: New file.
7453 * sysdeps/powerpc/mp_clz_tab.c: New file.
7454 * stdlib/Makefile (aux): Revert last patch.
7455 * math/Makefile (gmp-objs): Likewise.
7456
7457 2002-03-13 Paul Eggert <eggert@twinsun.com>
7458
7459 * time/strftime.c: Comment fixes for references to obsolescent
7460 standards, In most cases the simplest fix is to remove the
7461 confusing comments. Cross-referencing all the standards properly
7462 is a bit of a pain, and it should be enough to put that info in
7463 the documentation as I did in my recent time.texi patch.
7464
7465 2002-03-13 Paul Eggert <eggert@twinsun.com>
7466
7467 * manual/time.texi (Formatting Calendar Time):
7468 ISO C99 also specifies the E and O modifiers.
7469 %P is a GNU extension, and is not in ISO C99.
7470 Mention that %r is equivalent to %I:%M:%S %p in the POSIX locale.
7471 %T is also in ISO C99.
7472 The RFC 822 example is not valid in arbitrary locales.
7473 Reword the POSIX.2 wording slightly, to make it a bit clearer
7474 that POSIX.2 formats are also supported by later POSIX versions.
7475 If a format was introduced in ISO C99 it is also required by
7476 POSIX.1-2001.
7477
7478 2002-03-13 Ulrich Drepper <drepper@redhat.com>
7479
7480 * sysdeps/gnu/errlist.awk: Define _sys_errlist_internal and
7481 _sys_nerr_internal with INTVARDEF2.
7482 * include/libc-symbols.h (INTVARDEF2): New macro.
7483 * include/stdio.h (_sys_errlist_internal): Declare as hidden.
7484 (_sys_nerr_internal): Library.
7485
7486 * sysdeps/posix/signal.c (_sigintr): Define as hidden.
7487 * sysdeps/posix/sigintr.c (_sigintr): Declare as hidden.
7488
7489 * stdio-common/tst-printf.sh: Adjust for last change in tst-printf.c.
7490
7491 2002-03-13 Wolfram Gloger <wg@malloc.de>
7492
7493 * malloc/malloc.c (sYSMALLOc): Don't change brk if mmap failed.
7494
7495 2002-03-02 Andreas Schwab <schwab@suse.de>
7496
7497 * stdio-common/vfprintf.c (process_arg): Fix decimal format with
7498 'h' flag and positional arg.
7499 * stdio-common/tst-printf.c (rfg3): New function to test
7500 positional arguments.
7501 (main): Fix some warnings.
7502
7503 2002-03-13 Jakub Jelinek <jakub@redhat.com>
7504
7505 * elf/dl-minimal.c (_itoa): Use _itoa_lower_digits_internal if SHARED.
7506 * elf/dl-reloc.c (_dl_reloc_bad_type): Likewise.
7507
7508 2002-03-13 Ulrich Drepper <drepper@redhat.com>
7509
7510 * grp/initgroups.c (__nss_group_data): Declare as hidden.
7511
7512 * include/locale.h (_nl_C_locobj): Declare as hidden.
7513
7514 * time/asctime.c (_nl_C_LC_TIME): Declare as hidden.
7515 * time/strptime.c (_nl_C_LC_TIME): Likewise.
7516
7517 * include/netinet/in.h (in6addr_any_internal): Mark as hidden.
7518
7519 * include/sys/gmon.h: Declare _gmonparam as hidden.
7520
7521 * locale/lc-ctype.c (__ctype32_wctype): Declare as hidden.
7522 (__ctype32_wctrans): Likewise.
7523 (__ctype32_width): Likewise.
7524
7525 * sysdeps/unix/sysv/linux/ttyname.c: Comment out definition and
7526 use of __ttyname.
7527
7528 * posix/regcomp.c (__re_error_msgid): Renamed from re_error_msgid.
7529 Define as hidden.
7530 (__re_error_msgid_idx): Renamed from re_error_msgid_idx. Define as
7531 hidden. Change all users of these variables.
7532
7533 * posix/regex_internal.h (__re_error_msgid): Renamed from
7534 re_error_msgid. Declare as hidden.
7535 (__re_error_msgid_idx): Renamed from re_error_msgid_idx. Declare as
7536 hidden.
7537
7538 * stdio-common/reg-printf.c (__printf_arginfo_table): Define as hidden.
7539 (__printf_function_table): Likewise.
7540 * stdio-common/printf-parse.h (__printf_arginfo_table): Declare as
7541 hidden.
7542 (__printf_function_table): Likewise.
7543
7544 * nscd/nscd_proto.h: Declare __nss_not_use_nscd_passwd,
7545 __nss_not_use_nscd_group, and __nss_not_use_nscd_hosts as hidden.
7546
7547 * nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Define as hidden.
7548 * nss/nsswitch.c: Declare _nss_*_database as hidden.
7549
7550 * stdlib/wctomb.c (__no_r_state): Declare as hidden.
7551 * stdlib/mbtowc.c (__no_r_state): Define as hidden.
7552
7553 2002-03-12 Ulrich Drepper <drepper@redhat.com>
7554
7555 * ctype/ctype-info.c: Declare _nl_C_LC_CTYPE_class,
7556 _nl_C_LC_CTYPE_class32, _nl_C_LC_CTYPE_toupper, _nl_C_LC_CTYPE_tolower,
7557 _nl_C_LC_CTYPE_class_upper, _nl_C_LC_CTYPE_class_lower,
7558 _nl_C_LC_CTYPE_class_alpha, _nl_C_LC_CTYPE_class_digit,
7559 _nl_C_LC_CTYPE_class_xdigit, _nl_C_LC_CTYPE_class_space,
7560 _nl_C_LC_CTYPE_class_print, _nl_C_LC_CTYPE_class_graph,
7561 _nl_C_LC_CTYPE_class_blank, _nl_C_LC_CTYPE_class_cntrl,
7562 _nl_C_LC_CTYPE_class_punct, _nl_C_LC_CTYPE_class_alnum,
7563 _nl_C_LC_CTYPE_map_toupper, _nl_C_LC_CTYPE_map_tolower, and
7564 _nl_C_LC_CTYPE_width: Declare as hidden.
7565 * include/locale.h: Declare _nl_locale_file_list.
7566 * locale/C-address.c: Define _nl_C_LC_ADDRESS as hidden.
7567 * locale/C-collate.c: Define _nl_C_LC_COLLATE as hidden.
7568 * locale/C-identification.c: Define _nl_C_LC_IDENTIFICATION as hidden.
7569 * locale/C-measurement.c: Define _nl_C_LC_MEASUREMENT as hidden.
7570 * locale/C-messages.c: Define _nl_C_LC_MESSAGES as hidden.
7571 * locale/C-monetary.c: Define _nl_C_LC_MONETARY as hidden.
7572 * locale/C-name.c: Define _nl_C_LC_NAME as hidden.
7573 * locale/C-numeric.c: Define _nl_C_LC_NUMERIC as hidden.
7574 * locale/C-paper.c: Define _nl_C_LC_PAPER as hidden.
7575 * locale/C-telephone.c: Define _nl_C_LC_TELEPHONE as hidden.
7576 * locale/C-time.c: Define _nl_C_LC_TIME as hidden.
7577 * locale/C-ctype.c: Define _nl_C_LC_CTYPE_class,
7578 _nl_C_LC_CTYPE_class32, _nl_C_LC_CTYPE_toupper, _nl_C_LC_CTYPE_tolower,
7579 _nl_C_LC_CTYPE_class_upper, _nl_C_LC_CTYPE_class_lower,
7580 _nl_C_LC_CTYPE_class_alpha, _nl_C_LC_CTYPE_class_digit,
7581 _nl_C_LC_CTYPE_class_xdigit, _nl_C_LC_CTYPE_class_space,
7582 _nl_C_LC_CTYPE_class_print, _nl_C_LC_CTYPE_class_graph,
7583 _nl_C_LC_CTYPE_class_blank, _nl_C_LC_CTYPE_class_cntrl,
7584 _nl_C_LC_CTYPE_class_punct, _nl_C_LC_CTYPE_class_alnum,
7585 _nl_C_LC_CTYPE_map_toupper, _nl_C_LC_CTYPE_map_tolower,
7586 _nl_C_LC_CTYPE_width, and as hidden.
7587 * locale/findlocale.c: Declare _nl_C as hidden.
7588 * locale/newlocale.c: Likewise.
7589 * locale/setlocale.c: Define _nl_C as hidden. Remove declaration of
7590 _nl_locale_file_list.
7591 * locale/xlocale.c: Declare _nl_C_LC_CTYPE_class,
7592 _nl_C_LC_CTYPE_toupper, and _nl_C_LC_CTYPE_tolower as hidden.
7593 Define _nl_C_locobj as hidden.
7594
7595 * malloc/mtrace.c (_mtrace_file): Define as hidden.
7596 (_mtrace_line): Likewise.
7597
7598 * include/time.h: Declare __mon_yday as hidden.
7599 * time/strptime.c [_LIBC] (__mon_yday): Remove declaration.
7600
7601 * libio/libioP.h: Declare __libio_codecvt as hidden.
7602 * libio/fileops.c: Declare __libio_translit as hidden.
7603 * libio/iofwide.c: Define __libio_translit as hidden.
7604
7605 * login/getutent_r.c: Define __libc_utmp_lock as hidden.
7606 * login/getutid_r.c: Declare __libc_utmp_lock as hidden.
7607 * login/getutline_r.c: Likewise.
7608 * login/utmpname.c: Likewise.
7609
7610 * login/utmp-private.h: Declare __libc_utmp_file_functions,
7611 __libc_utmp_unknown_functions, __libc_utmp_jump_table, and
7612 __libc_utmp_file_name as hidden.
7613
7614 * locale/setlocale.c (__libc_setlocale_lock): Define as hidden.
7615 * locale/duplocale.c (__libc_setlocale_lock): Declare as hidden.
7616 * locale/freelocale.c: Likewise.
7617 * locale/lc-time.c: Likewise.
7618
7619 * sysdeps/unix/bsd/getpt.c (__libc_ptyname1): Define as hidden.
7620 (__libc_ptyname2): Likewise.
7621 * sysdeps/unix/sysv/linux/ptsname.c (__libc_ptyname1): Declare as
7622 hidden.
7623 (__libc_ptyname2): Likewise.
7624
7625 * sysdeps/generic/sbrk.c: Declare __libc_multiple_libcs as hidden.
7626 * sysdeps/arm/init-first.c (__libc_multiple_libcs): Define as hidden.
7627 * sysdeps/generic/init-first.c: Likewise.
7628 * sysdeps/i386/init-first.c: Likewise.
7629 * sysdeps/mach/hurd/i386/init-first.c: Likewise.
7630 * sysdeps/mach/hurd/mips/init-first.c: Likewise.
7631 * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
7632 * sysdeps/sh/init-first.c: Likewise.
7633 * sysdeps/unix/sysv/aix/init-first.c: Likewise.
7634 * sysdeps/unix/sysv/linux/init-first.c: Likewise.
7635
7636 * stdio-common/itowa-digits.c (_itowa_lower_digits): Define as hidden.
7637 (_itowa_upper_digits): Likewise.
7638
7639 * libio/stdio.c (_IO_stdin, _IO_stdout, _IO_stderr): Define as hidden.
7640 * libio/libio.h [_LIBC] (_IO_stdin, _IO_stdout, _IO_stderr): Declare
7641 as hidden.
7642
7643 * libio/libioP.h: Declare _IO_file_jumps_mmap, _IO_wfile_jumps,
7644 _IO_wfile_jumps_mmap, _IO_proc_jumps, _IO_old_proc_jumps,
7645 _IO_str_jumps, _IO_wstr_jumps, _IO_file_jumps_internal,
7646 _IO_wfile_jumps_internal, and _IO_list_all_internal as hidden.
7647
7648 * gmon/gmon.c (__bb_head): Define as hidden.
7649 * gmon/bb_exit_func.c (__bb_head): Declare as hidden.
7650
7651 * argp/argp-parse.c (_argp_hang): Define as static.
7652
7653 * include/libc-symbols.h (_INTVARDEF): Adjust for visibility
7654 handling in latest compilers.
7655
7656 * inet/in6_addr.c (in6addr_any): Use INTVARDEF not INTDEF to
7657 define alias.
7658 * libio/fileops.c (_IO_file_jumps): Likewise.
7659 * libio/stdfiles.c (_IO_list_all): Likewise.
7660 * libio/wfileops.c (_IO_wfile_jumps): Likewise.
7661
7662 * malloc/malloc.h: Move __libc_malloc_initialized declaration to
7663 include/malloc.h.
7664 * include/malloc.h: Add __libc_malloc_initialized declaration
7665 here. Mark variable hidden.
7666 * malloc/malloc.c: Include <malloc.h> not "malloc.h".
7667
7668 * elf/dl-open.c (__libc_argc): Declare as hidden.
7669 (__libc_argv): Likewise.
7670 * sysdeps/generic/wordexp.c (__libc_argc): Declare as hidden.
7671 (__libc_argv): Likewise.
7672 * sysdeps/mach/hurd/i386/init-first.c: Define __libc_argc and
7673 __libc_argv as hidden.
7674 * sysdeps/mach/hurd/mips/init-first.c: Likewise.
7675 * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
7676 * sysdeps/unix/sysv/aix/init-first.c: Likewise.
7677 * sysdeps/unix/sysv/linux/init-first.c: Likewise.
7678
7679 * include/stdlib.h (__libc_drand48_data): Declare as hidden.
7680 * stdlib/drand48.c: Remove declaration of __libc_drand48_data here.
7681 * stdlib/erand48.c: Likewise.
7682 * stdlib/jrand48.c: Likewise.
7683 * stdlib/lcong48.c: Likewise.
7684 * stdlib/lrand48.c: Likewise.
7685 * stdlib/mrand48.c: Likewise.
7686 * stdlib/nrand48.c: Likewise.
7687 * stdlib/seed48.c: Likewise.
7688 * stdlib/srand48.c: Likewise.
7689
7690 * stdio-common/_itoa.c (_itoa_base_table): Declare as hidden.
7691 (_itoa_lower_digits_internal): New declaration.
7692 (_itoa_upper_digits_internal): New declaration.
7693 (_itoa): Use INTUSE to acces _itoa_upper_digits and _itoa_lower_digits.
7694 * stdio-common.h (_itoa_lower_digits_internal): New declaration.
7695 (_itoa_upper_digits_internal): New declaration.
7696 (_itoa_word): Use INTUSE to acces _itoa_upper_digits and
7697 _itoa_lower_digits.
7698 * stdio-common/itoa-digits.c: Use INTVARDEF with _itoa_lower_digits.
7699 * stdio-common/itoa-udigits.c: Use INTVARDEF with _itoa_upper_digits.
7700
7701 * elf/dl-minimal.c (_itoa): Declare _itoa_lower_digits as hidden.
7702 * elf/dl-reloc.c (_dl_reloc_bad_type): Likewise.
7703
7704 * stdio-common/_itowa.c (_itoa_base_table): Declare as hidden.
7705 (_itowa_lower_digits): Likewise.
7706 (_itowa_upper_digits): Likewise.
7707 * stdio-common/_itowa.h (_itowa_lower_digits): Likewise.
7708 (_itowa_upper_digits): Likewise.
7709
7710 * intl/plural-exp.h (attribute_hidden): Define as empty macro if
7711 not already defined.
7712 (GERMANIC_PLURAL): Declare as hidden.
7713
7714 * posix/getopt.c (__getopt_initialized): Declare as hidden.
7715 (attribute_hidden): Define as empty macro if not already defined.
7716
7717 * iconv/gconv_int.h (__gconv_path_elem): Declare hidden.
7718 (__gconv_max_path_elem_len): Likewise.
7719 (__gconv_path_envvar): Likewise.
7720
7721 * math/Makefile (gmp-objs): Remove mp_clz_tab.
7722 * stdlib/Makefile (aux): Remove mp_clz_tab.
7723 * stdlib/mp_clz_tab.c: Removed. Not needed anywhere.
7724
7725 * stdlib/exit.h (__exit_funcs): Declare as hidden.
7726
7727 * posix/bug-regex5.c (main): Use nl_langinfo instead of _NL_CURRENT.
7728
7729 * locale/localeinfo.h: Add attribute_hidden to _nl_current_LC_XXX,
7730 _nl_category_names, _nl_category_name_sizes, _nl_current,
7731 _nl_C_name, _nl_POSIX_name, _nl_C_codeset, and _nl_C_LC_XXX.
7732
7733 * intl/dcigettext.c (_nl_default_default_domain): Define as hidden.
7734 (_nl_current_default_domain): Likewise
7735 (_nl_state_lock): Likewise.
7736 * intl/textdomain.c (_nl_default_default_domain): Declare as hidden.
7737 (_nl_current_default_domain): Likewise
7738 (_nl_state_lock): Likewise.
7739 * intl/bindtextdom.c (_nl_state_lock): Likewise.
7740
7741 * stdlib/fpioconst.h (__tens): Add attribute_hidden.
7742 (_fpioconst_pow10): Likewise.
7743
7744 * include/time.h (_tmbuf): Add attribute_hidden.
7745
7746 * time/tzset.c (tzstring_list): Define as static.
7747
7748 * include/time.h: Add attribute_hidden to __tzname_cur_max and
7749 __use_tzfile declaration.
7750
7751 * wcsmbs/wcsmbsload.h: Add attribute_hidden to __wcsmbs_gconv_fcts
7752 and __wcsmbs_last_locale declaration.
7753
7754 2002-02-25 Paul Eggert <eggert@twinsun.com>
7755
7756 * timezone/Makefile (tzbases): Move systemv from here...
7757 (tzlinks): to here, since the entries in systemv were all changed
7758 from Zone to Link lines in tz-2001a. Bug reported (and patch
7759 tested) by Peter Breitenlohner.
7760
7761 2002-03-07 Jakub Jelinek <jakub@redhat.com>
7762
7763 * time/tst-posixtz.c (tests): Add new tests.
7764 (main): Test whether tzset() sets daylight properly.
7765
7766 2002-03-06 Jakub Jelinek <jakub@redhat.com>
7767
7768 * time/tzset.c (tz_compute): Move __daylight, __tzname and
7769 __tzname_cur_max setting...
7770 (tzset_internal): ...here.
7771
7772 2002-03-06 Jakub Jelinek <jakub@redhat.com>
7773
7774 * time/tzset.c (compute_change): Don't return any value.
7775 (tz_compute): Likewise. Don't handle southern hemisphere here.
7776 (__tz_convert): But here.
7777
7778 2002-03-11 Ulrich Drepper <drepper@redhat.com>
7779
7780 * manual/examples/mkfsock.c: Include <string.h> as well.
7781 Patch by Alain De Carolis <alaind@wseurope.com>.
7782
7783 2002-03-06 Isamu Hasegawa <isamu@yamato.ibm.com>
7784
7785 * posix/regexec.c (re_match): Fix incorrect register sizes.
7786 (re_search): Likewise.
7787
7788 2002-03-05 Isamu Hasegawa <isamu@yamato.ibm.com>
7789
7790 * posix/regcomp.c (regfree): Remove a disused condition.
7791 * posix/regex_internal.c (re_acquire_state): Likewise.
7792 (re_acquire_state_context): Likewise.
7793 (register_state): Remove a redundant malloc invocation.
7794 * posix/regex_internal.h: (re_state_table_entry): Simplify
7795 the structure.
7796
7797 2002-03-05 Isamu Hasegawa <isamu@yamato.ibm.com>
7798
7799 * posix/regcomp.c (regcomp): Add __builtin_expect to error
7800 handling conditions.
7801 (regerror): Likewise.
7802 (regfree): Likewise.
7803 (re_compile_internal): Likewise.
7804 (init_dfa): Likewise.
7805 (init_word_char): Likewise.
7806 (create_initial_state): Likewise.
7807 (analyze): Likewise.
7808 (analyze_tree): Likewise.
7809 (duplicate_node): Likewise.
7810 (calc_eclosure): Likewise.
7811 (calc_eclosure_iter): Likewise.
7812 (parse): Likewise.
7813 (parse_reg_exp): Likewise.
7814 (parse_branch): Likewise.
7815 (parse_expression): Likewise.
7816 (parse_subexp): Likewise.
7817 (parse_dup_op): Likewise.
7818 (parse_bracket_exp): Likewise.
7819 (build_equiv_class): Likewise.
7820 (build_charclass): Likewise.
7821 (build_word_op): Likewise.
7822 (fetch_number): Likewise.
7823 (create_tree): Likewise.
7824 (duplicate_tree): Likewise.
7825 * posix/regex.c (BE): New macro.
7826 * posix/regexec.c (re_match): Add __builtin_expect to error
7827 handling conditions.
7828 (re_match_2): Likewise.
7829 (re_search): Likewise.
7830 (re_search_internal): Likewise.
7831 (check_matching): Likewise.
7832 (proceed_next_node): Likewise.
7833 (set_regs): Likewise.
7834 (sift_states_backward): Likewise.
7835 (add_epsilon_backreference): Likewise.
7836 (transit_state): Likewise.
7837 (transit_state_sb): Likewise.
7838 (transit_state_mb): Likewise.
7839 (transit_state_bkref): Likewise.
7840 (transit_state_bkref_loop): Likewise.
7841 (build_trtable): Likewise.
7842 (group_nodes_into_DFAstates): Likewise.
7843 (match_ctx_init): Likewise.
7844 (match_ctx_add_entry): Likewise.
7845 * posix/regex_internal.c (re_string_construct): Add __builtin_expect
7846 to error handling conditions.
7847 (re_string_construct_toupper): Likewise.
7848 (build_wcs_buffer): Likewise.
7849 (build_wcs_upper_buffer): Likewise.
7850 (build_upper_buffer): Likewise.
7851 (re_string_translate_buffer): Likewise.
7852 (re_node_set_alloc): Likewise.
7853 (re_node_set_init_1): Likewise.
7854 (re_node_set_init_2): Likewise.
7855 (re_node_set_init_copy): Likewise.
7856 (re_node_set_intersect): Likewise.
7857 (re_node_set_init_union): Likewise.
7858 (re_node_set_merge): Likewise.
7859 (re_node_set_insert): Likewise.
7860 (re_dfa_add_node): Likewise.
7861 (re_acquire_state): Likewise.
7862 (re_acquire_state_context): Likewise.
7863 (create_new_state_common): Likewise.
7864 (register_state): Likewise.
7865 (create_ci_new_state): Likewise.
7866 (create_cd_new_state): Likewise.
7867 (re_string_context_at): Remove redundant condition.
7868
7869 2002-01-16 Roger Sayle <roger@eyesopen.com>
7870
7871 * sysdeps/i386/i686/strcmp.S: Avoid unconditional jump to a ret.
7872
7873 * sysdeps/i386/i586/strlen.S: Fix typo in comment.
7874
7875 2002-03-11 Jakub Jelinek <jakub@redhat.com>
7876
7877 * sysdeps/i386/elf/configure.in: Fix comment.
7878
7879 * sysdeps/sparc/sparc64/configure.in: New file.
7880 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_load_address): Fix
7881 if .dynamic comes before .got.
7882 * config.h.in (SPARC64_DYNAMIC_BEFORE_GOT): Add.
7883
7884 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF,
7885 HP_TIMING_ACCUM): Fix typos.
7886
7887 2002-03-11 Ulrich Drepper <drepper@redhat.com>
7888
7889 * string/strfry.c: Add some more randomness to the seed.
7890 Patch by James A Morrison <ja2morri@student.math.uwaterloo.ca>.
7891
7892 * po/es.po: Update from translation team.
7893 * po/fr.po: Likewise.
7894
7895 * stdio-common/tfformat.c (sprint_doubles): A test for %F format.
7896
7897 * stdio-common/printf_fp.c (__printf_fp): Correct check for %F format
7898 when determining type of format.
7899 Patch by James Antill <james@anqd.org> [PR libc/2787].
7900
7901 2002-03-04 Jakub Jelinek <jakub@redhat.com>
7902
7903 * sysdeps/unix/bsd/ftime.c (ftime): Don't return 1000 in millitm.
7904
7905 2002-03-11 Roland McGrath <roland@frob.com>
7906
7907 * hurd/hurd/threadvar.h: Include <features.h> for __THROW macro.
7908
7909 * Versions.def (libc): Add GLIBC_2.2.6.
7910 * hurd/Versions (libc: GLIBC_2.2.6): Add __errno_location.
7911 * sysdeps/mach/hurd/errnos.awk: In generated macro, use
7912 __errno_location instead of __hurd_errno_location, and don't inline it.
7913 * sysdeps/mach/hurd/bits/errno.h: Regenerated.
7914 * hurd/errno.c: New file.
7915 * hurd/Makefile (routines): Add errno.
7916
7917 2002-03-11 Ulrich Drepper <drepper@redhat.com>
7918
7919 * stdio-common/vfprintf.c (vfprintf): Avoid crashing for
7920 ridiculously large widths and precisions [PR libc/3026].
7921
7922 2002-03-11 Andreas Jaeger <aj@suse.de>
7923
7924 * sysdeps/unix/sysv/linux/s390/ldd-rewrite.sed: Fix for bi-arch
7925 support.
7926 Patch by Susanne Oberhauser <froh@SuSE.de>.
7927
7928 2002-03-11 Ulrich Drepper <drepper@redhat.com>
7929
7930 * inet/rexec.c (ahostbuf): Define as static.
7931
7932 * wctype/wcfuncs.c (__ctype32_wctype): Declare as hidden.
7933 (__ctype32_wctrans): Likewise.
7934 * wcsmbs/wcwidth.h (__ctype32_width): Declare as hidden.
7935 * ctype/ctype-info.c (__ctype32_wctype): Add attribute_hidden.
7936 (__ctype32_wctrans): Likewise.
7937 (__ctype32_width): Likewise.
7938
7939 * gmon/Makefile (elide-routines.os): Add bb_init_func and bb_exit_func.
7940 They were never exported anyway.
7941
7942 * gmon/gmon.c (_gmonparam): Add attribute_hidden.
7943 * gmon/sys/gmon.h: Remove declaration of _gmonparam. It wasn't
7944 exported.
7945 * include/sys/gmon.h: Declare _gmonparam.
7946
7947 * sysdeps/unix/sysv/linux/i386/getdents64.c: Don't define compatibility
7948 symbols for getdents64. They were never exported.
7949
7950 2002-03-09 Roland McGrath <roland@frob.com>
7951
7952 * hurd/hurdsig.c (write_corefile): Fix swapped arguments to __dir_link.
7953 Reported by Jon Arney <jarney1@cox.net>.
7954
7955 2002-02-23 Roland McGrath <roland@frob.com>
7956
7957 * hurd/hurd/threadvar.h (__hurd_threadvar_location): Add __THROW to
7958 declaration.
7959 (__hurd_errno_location): Function removed.
7960
7961 2002-03-06 Andreas Jaeger <aj@suse.de>
7962
7963 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Add compatibility for
7964 32-bit.
7965
7966 2002-03-04 Andreas Jaeger <aj@suse.de>
7967
7968 * sysdeps/unix/sysv/linux/x86_64/readelflib.c: New file.
7969
7970 * sysdeps/unix/sysv/linux/kernel-features.h: Add defines for
7971 x86-64.
7972
7973 * sysdeps/unix/sysv/linux/x86_64/bits/socket.h: New file.
7974
7975 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: New file.
7976
7977 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: New file.
7978
7979 * sysdeps/x86_64/bits/setjmp.h: New file.
7980
7981 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: New file.
7982
7983 * sysdeps/unix/sysv/linux/x86_64/bits/resource.h: New file.
7984
7985 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Add compatibilty
7986 for x86.
7987 * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Likewise.
7988 * sysdeps/unix/sysv/linux/x86_64/bits/types.h: Likewise.
7989
7990 2002-02-28 Bo Thorsen <bo@suse.de>
7991
7992 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Merge with i386
7993 version.
7994
7995 2002-03-03 Andreas Jaeger <aj@suse.de>
7996
7997 * sysdeps/x86_64/bits/wordsize.h: New file.
7998
7999 * elf/nodlopenmod2.c: Provide prototype to avoid warning.
8000 * elf/tst-tlsmod1.c: Likewise.
8001
8002 * posix/regcomp.c: Get regex.h from include dir for internal
8003 prototypes.
8004
8005 * sysdeps/unix/sysv/linux/init-first.c: Move __init_misc prototype
8006 to libc-internal.h and include it.
8007 * include/libc-internal.h: Add __init_misc.
8008
8009 * misc/init-misc.c: Include libc-internal.h for prototypes.
8010
8011 * sysdeps/wordsize-32/divdi3.c: Add prototypes to avoid warnings.
8012
8013 * misc/error.c [_LIBC]: Include libioP.h for prototype of
8014 _IO_putc_internal.
8015
8016 2002-03-03 Ulrich Drepper <drepper@redhat.com>
8017
8018 * posix/regcomp.c: Compatibility changes to allow using the code
8019 outside glibc.
8020
8021 2002-02-28 Hartvig Ekner <hartvige@mips.com>
8022
8023 * sysdeps/mips/elf/start.S: Added initialization of GP (to _gp) if
8024 compiled non-PIC.
8025
8026 2002-03-02 Ulrich Drepper <drepper@redhat.com>
8027
8028 * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Fix creation
8029 of .str elements in the returned data structure.
8030
8031 * elf/elf.h: Add Alpha TLS bits.
8032
8033 2002-02-28 Jakub Jelinek <jakub@redhat.com>
8034
8035 * sysdeps/unix/sysv/linux/nice.c: New file.
8036
8037 2002-03-01 Ulrich Drepper <drepper@redhat.com>
8038
8039 * elf/Makefile (dl-routines): Add dl-origin.
8040 (elide-routines.os): Add dl-origin.
8041 * elf/Versions [ld] (GLIBC_PRIVATE): Add _dl_get_origin.
8042 * elf/dl-debug.c (_dl_debug_initialize): Add missing INTUSE around
8043 _dl_debug_state.
8044 * include/libc-symbols.c: Define attribute_hidden depending on
8045 HAVE_VISIBILITY_ATTRIBUTE. Add definition of INTVARDEF.
8046
8047 * elf/dl-deps.c: Use INTUSE with __libc_enable_secure.
8048 * elf/dl-load.c: Likewise.
8049 * elf/rtld.c: Likewise.
8050 * include/unistd.h: Declare __libc_enable_secure_internal.
8051 * sysdeps/generic/dl-sysdep.c: Use INTVARDEF with __libc_enable_secure.
8052 Use INTUSE with __libc_enable_secure.
8053 * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
8054
8055 * elf/dl-deps.c: Use INTUSE with _dl_out_of_memory.
8056 * elf/dl-error.c: Likewise,
8057 * sysdeps/generic/ldsodefs.h: Declare _dl_out_of_memory_internal.
8058
8059 * elf/dl-dst.h [_RTLD_GLOBAL]: Define _dl_get_origin to use INTUSE.
8060 * sysdeps/generic/dl-origin.c: Undefine _dl_get_origin macro before
8061 function definition. Use INTDEF with _dl_get_origin.
8062 * sysdeps/unix/sysv/linux/dl-origin.c: Likewise.
8063
8064 * elf/dl-init.c: Use INTUSE with _dl_starting_up.
8065 * elf/rtld.c: Likewise. Use INTVARDEF for _dl_starting_up.
8066
8067 * elf/dl-profile.c: Use INTDEF for _dl_mcount.
8068 * elf/dl-runtime.c: Use INTUSE with _dl_mcount.
8069 * sysdeps/generic/ldsodefs.h: Declare _dl_mcount_internal.
8070
8071 * elf/dl-conflict.c: Use rtld_progrname instead of _dl_argv[0].
8072 * elf/dl-deps.c: Likewise.
8073 * elf/dl-error.c: Likewise.
8074 * elf/dl-fini.c: Likewise.
8075 * elf/dl-init.c: Likewise.
8076 * elf/dl-load.c: Likewise.
8077 * elf/dl-lookup.c: Likewise.
8078 * elf/dl-reloc.c: Likewise.
8079 * elf/dl-version.c: Likewise.
8080 * elf/do-lookup.h: Likewise.
8081 * sysdeps/arm/dl-machine.h: Likewise.
8082 * sysdeps/cris/dl-machine.h: Likewise.
8083 * sysdeps/hppa/dl-machine.h: Likewise.
8084 * sysdeps/i386/dl-machine.h: Likewise.
8085 * sysdeps/m68k/dl-machine.h: Likewise.
8086 * sysdeps/powerpc/dl-machine.h: Likewise.
8087 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
8088 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
8089 * sysdeps/sh/dl-machine.h: Likewise.
8090 * sysdeps/sparc/sparc-32/dl-machine.h: Likewise.
8091 * sysdeps/sparc/sparc-64/dl-machine.h: Likewise.
8092 * sysdeps/x86_64/dl-machine.h: Likewise.
8093 * elf/rtld.c: Use INTDEF for _dl_argv. Use rtld_progrname instead of
8094 _dl_argv[0]. Use INTUSE with _dl_argv.
8095 * sysdeps/generic/dl-sysdep.c: Use INTUSE with _dl_argv.
8096 * sysdeps/generic/ldsodefs.h: Define rtld_progname macro.
8097
8098 2002-02-28 Jakub Jelinek <jakub@redhat.com>
8099
8100 * elf/rtld.c (_rtld_global): Remove .protected.
8101 (_rtld_local): Strong alias to _rtld_global.
8102 * elf/Makefile (CFLAGS-.os): Add -D_RTLD_LOCAL if compiling rtld
8103 only .os object.
8104 * sysdeps/generic/ldsodefs.h (GL): If SHARED and _RTLD_LOCAL, use
8105 _rtld_local instead of _rtld_global.
8106 (_rtld_local): Add hidden extern, possibly in .sdata section.
8107 * configure.in: Add tests for visibility attribute and .sdata.
8108 * config.h.in: Add HAVE_VISIBILITY_ATTRIBUTE and HAVE_SDATA_SECTION.
8109 * sysdeps/alpha/dl-machine.h: Use _rtld_local instead of _rtld_global.
8110 * sysdeps/arm/dl-machine.h: Likewise.
8111 * sysdeps/generic/ldsodefs.h: Likewise.
8112 * sysdeps/hppa/dl-machine.h: Likewise.
8113 * sysdeps/cris/dl-machine.h: Likewise.
8114 * sysdeps/i386/dl-machine.h: Likewise.
8115 * sysdeps/ia64/dl-machine.h: Likewise.
8116 * sysdeps/m68k/dl-machine.h: Likewise.
8117 * sysdeps/mips/mips64/dl-machine.h: Likewise.
8118 * sysdeps/mips/dl-machine.h: Likewise.
8119 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
8120 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
8121 * sysdeps/sh/dl-machine.h: Likewise.
8122 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
8123 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
8124 * sysdeps/x86_64/dl-machine.h: Likewise.
8125
8126 2002-02-28 Ulrich Drepper <drepper@redhat.com>
8127
8128 * login/login.c (login): Always initialize ut_line field
8129 [PR libc/2991].
8130
8131 2002-02-28 Jakub Jelinek <jakub@redhat.com>
8132
8133 * sysdeps/i386/Makefile (sysdep_routines): Add
8134 divdi3 in csu dir.
8135 (shared-only-routines): Likewise.
8136 * sysdeps/m68k/Makefile (sysdep_routines): Likewise.
8137 (shared-only-routines): Likewise.
8138 * sysdeps/s390/s390-32/Makefile (sysdep_routines): Likewise.
8139 (shared-only-routines): Likewise.
8140 * sysdeps/wordsize-32/divdi3.c: New file.
8141
8142 2002-02-28 Ulrich Drepper <drepper@redhat.com>
8143
8144 * locale/iso-4217.def: Remove obsolete currencies for countries
8145 with Euro.
8146
8147 2002-02-28 Isamu Hasegawa <isamu@yamato.ibm.com>
8148
8149 * posix/regcomp.c (regcomp): Remove a redundant condition.
8150 (init_word_char): Add a check on malloc failure.
8151 (create_initial_state): Likewise.
8152 (duplicate_node): Likewise.
8153 (calc_eclosure): Likewise.
8154 (calc_eclosure_iter): Likewise.
8155 (parse_expression): Likewise.
8156 (parse_bracket_exp): Remove unnecessary malloc invocations.
8157 (build_equiv_class): Likewise.
8158 (build_charclass): Likewise.
8159 * posix/regex_internal.c (re_node_set_intersect): Add a check
8160 on malloc failure.
8161 (re_node_set_add_intersect): Likewise.
8162 (re_node_set_merge): Likewise.
8163 (re_acquire_state): Likewise.
8164 (re_acquire_state_context): Likewise.
8165 (create_newstate_common): Likewise.
8166 (register_state): Likewise.
8167 (create_ci_newstate): Likewise.
8168 (create_cd_newstate): Likewise.
8169 * posix/regex_internal.h: Fix prototypes of re_acquire_state
8170 and re_acquire_state_context.
8171 * posix/regexec.c (regexec): Suit it to the error handling of
8172 re_search_internal.
8173 (re_match): Likewise.
8174 (re_search): Likewise.
8175 (re_search_internal): Add a check on malloc failure.
8176 (acquire_init_state_context): Likewise.
8177 (check_matching): Likewise.
8178 (proceed_next_node): Likewise.
8179 (set_regs): Likewise.
8180 (sift_states_backward): Likewise.
8181 (sift_states_iter_bkref): Likewise.
8182 (add_epsilon_backreference): Likewise.
8183 (transit_state): Likewise.
8184 (transit_state_sb): Likewise.
8185 (transit_state_mb): Likewise.
8186 (transit_state_bkref_loop): Likewise.
8187 (build_trtable): Likewise.
8188 (group_nodes_into_DFAstates): Likewise.
8189 (match_ctx_init): Likewise.
8190 (match_ctx_add_entry): Likewise.
8191
8192 2002-02-27 Ulrich Drepper <drepper@redhat.com>
8193
8194 * elf/dl-load.c (_dl_map_object_from_fd): Always add SONAME to
8195 l_libname if profiling is enabled [PR libc/2916].
8196
8197 * sysdeps/ia64/dl-tls.h: New file.
8198
8199 2002-02-27 Jakub Jelinek <jakub@redhat.com>
8200
8201 * sysdeps/alpha/dl-machine.h (elf_machine_load_address, RTLD_START):
8202 Work around an Alpha gas bug.
8203
8204 2002-02-27 Ulrich Drepper <drepper@redhat.com>
8205
8206 * catgets/open_catalog.c (__open_catalog): Fix typo in code which
8207 uses read to load the catalog.
8208 Patch by Andy Isaacson <adi@unlimitedscale.com> [PR libc/3011].
8209
8210 2002-02-26 Ulrich Drepper <drepper@redhat.com>
8211
8212 * posix/Makefile (distribute): Add regcomp.c, regexec.c,
8213 regex_internal.c, and regex_internal.h.
8214 (CFLAGS-regex.c): Replace -DMBS_SUPPORT with -DRE_ENABLE_I18N.
8215 * posix/regex.c: Complete rewrite.
8216 * posix/regexec.c: New file.
8217 * posix/regcomp.c: New file.
8218 * posix/regex_internal.c: New file.
8219 * posix/regex_internal.h: New file.
8220 * posix/regex.h (RE_ICASE): New macro.
8221 Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
8222
8223 * stdio-common/vfscanf.c (_IO_vfwscanf): Always use ungetc, never
8224 ungetwc. It's a macro.
8225 * libio/tst-swscanf.c (do_test): Adjust for now fixed wscanf
8226 implementation.
8227 Reported by Jason Merrill <jason@redhat.com>.
8228
8229 2002-02-25 Jakub Jelinek <jakub@redhat.com>
8230
8231 * libio/iofopen.c (__fopen_maybe_mmap): Set the initial
8232 position to fp->_offset if it is set.
8233 * stdio-common/Makefile (tests): Add tst-fdopen.
8234 * stdio-common/tst-fdopen.c: New test.
8235
8236 2002-02-25 Jakub Jelinek <jakub@redhat.com>
8237
8238 * libio/fileops.c (_IO_file_xsgetn_mmap): Handle reading from backup.
8239 * stdio-common/tst-ungetc.c (main): Add another test.
8240
8241 2002-02-25 Ulrich Drepper <drepper@redhat.com>
8242
8243 * assert/assert-perr.c: Use INTUSE to reference functions and variables
8244 inside libc itself. Use INTDEF and INTDEF2 to define appropriate
8245 aliases. Add prototypes for the new aliases.
8246 * assert/assert.c: Likewise.
8247 * include/libc-symbols.h: Likewise.
8248 * include/stdio.h: Likewise.
8249 * include/netinet/in.h: Likewise.
8250 * include/rpc/auth.h: Likewise.
8251 * include/rpc/auth_unix.h: Likewise.
8252 * include/rpc/key_prot.h: Likewise.
8253 * include/rpc/pmap_prot.h: Likewise.
8254 * include/rpc/pmap_rmt.h: Likewise.
8255 * include/rpc/rpc_msg.h: Likewise.
8256 * include/rpc/xdr.h: Likewise.
8257 * inet/gethstbyad_r.c: Likewise.
8258 * inet/gethstbynm2_r.c: Likewise.
8259 * inet/gethstbynm_r.c: Likewise.
8260 * inet/gethstent_r.c: Likewise.
8261 * inet/in6_addr.c: Likewise.
8262 * libio/__fpurge.c: Likewise.
8263 * libio/filedoalloc.c: Likewise.
8264 * libio/fileops.c: Likewise.
8265 * libio/ftello.c: Likewise.
8266 * libio/ftello64.c: Likewise.
8267 * libio/genops.c: Likewise.
8268 * libio/iofclose.c: Likewise.
8269 * libio/iofdopen.c: Likewise.
8270 * libio/iofflush.c: Likewise.
8271 * libio/iofflush_u.c: Likewise.
8272 * libio/iofgetpos.c: Likewise.
8273 * libio/iofgetpos64.c: Likewise.
8274 * libio/iofgets.c: Likewise.
8275 * libio/iofgets_u.c: Likewise.
8276 * libio/iofopen.c: Likewise.
8277 * libio/iofopncook.c: Likewise.
8278 * libio/iofputs.c: Likewise.
8279 * libio/iofread.c: Likewise.
8280 * libio/iofread_u.c: Likewise.
8281 * libio/iofsetpos.c: Likewise.
8282 * libio/iofsetpos64.c: Likewise.
8283 * libio/ioftell.c: Likewise.
8284 * libio/iofwrite.c: Likewise.
8285 * libio/iogetline.c: Likewise.
8286 * libio/iogets.c: Likewise.
8287 * libio/iogetwline.c: Likewise.
8288 * libio/iolibio.h: Likewise.
8289 * libio/iopadn.c: Likewise.
8290 * libio/iopopen.c: Likewise.
8291 * libio/ioseekoff.c: Likewise.
8292 * libio/ioseekpos.c: Likewise.
8293 * libio/iosetbuffer.c: Likewise.
8294 * libio/iosetvbuf.c: Likewise.
8295 * libio/ioungetc.c: Likewise.
8296 * libio/ioungetwc.c: Likewise.
8297 * libio/iovdprintf.c: Likewise.
8298 * libio/iovsprintf.c: Likewise.
8299 * libio/iovsscanf.c: Likewise.
8300 * libio/libioP.h: Likewise.
8301 * libio/memstream.c: Likewise.
8302 * libio/obprintf.c: Likewise.
8303 * libio/oldfileops.c: Likewise.
8304 * libio/oldiofclose.c: Likewise.
8305 * libio/oldiofdopen.c: Likewise.
8306 * libio/oldiofgetpos.c: Likewise.
8307 * libio/oldiofgetpos64.c: Likewise.
8308 * libio/oldiofopen.c: Likewise.
8309 * libio/oldiofsetpos.c: Likewise.
8310 * libio/oldiofsetpos64.c: Likewise.
8311 * libio/oldiopopen.c: Likewise.
8312 * libio/oldstdfiles.c: Likewise.
8313 * libio/putc.c: Likewise.
8314 * libio/setbuf.c: Likewise.
8315 * libio/setlinebuf.c: Likewise.
8316 * libio/stdfiles.c: Likewise.
8317 * libio/stdio.c: Likewise.
8318 * libio/strops.c: Likewise.
8319 * libio/vasprintf.c: Likewise.
8320 * libio/vscanf.c: Likewise.
8321 * libio/vsnprintf.c: Likewise.
8322 * libio/vswprintf.c: Likewise.
8323 * libio/wfiledoalloc.c: Likewise.
8324 * libio/wfileops.c: Likewise.
8325 * libio/wgenops.c: Likewise.
8326 * libio/wstrops.c: Likewise.
8327 * malloc/mtrace.c: Likewise.
8328 * misc/error.c: Likewise.
8329 * misc/syslog.c: Likewise.
8330 * nss/getXXbyYY_r.c: Likewise.
8331 * nss/getXXent_r.c: Likewise.
8332 * nss/hosts-lookup.c: Likewise.
8333 * stdio-common/getw.c
8334 * stdio-common/printf-prs.c: Likewise.
8335 * stdio-common/printf_fp.c: Likewise.
8336 * stdio-common/printf_size.c: Likewise.
8337 * stdio-common/putw.c: Likewise.
8338 * stdio-common/scanf.c: Likewise.
8339 * stdio-common/sprintf.c: Likewise.
8340 * stdio-common/tmpfile64.c: Likewise.
8341 * stdio-common/vfprintf.c: Likewise.
8342 * stdio-common/vfscanf.c: Likewise.
8343 * stdlib/strfmon.c: Likewise.
8344 * sunrpc/auth_des.c: Likewise.
8345 * sunrpc/auth_none.c: Likewise.
8346 * sunrpc/auth_unix.c: Likewise.
8347 * sunrpc/authdes_prot.c: Likewise.
8348 * sunrpc/authuxprot.c: Likewise.
8349 * sunrpc/clnt_perr.c: Likewise.
8350 * sunrpc/clnt_raw.c: Likewise.
8351 * sunrpc/clnt_tcp.c: Likewise.
8352 * sunrpc/clnt_udp.c: Likewise.
8353 * sunrpc/clnt_unix.c: Likewise.
8354 * sunrpc/key_call.c: Likewise.
8355 * sunrpc/key_prot.c: Likewise.
8356 * sunrpc/openchild.c: Likewise.
8357 * sunrpc/pm_getmaps.c: Likewise.
8358 * sunrpc/pm_getport.c: Likewise.
8359 * sunrpc/pmap_clnt.c: Likewise.
8360 * sunrpc/pmap_prot.c: Likewise.
8361 * sunrpc/pmap_prot2.c: Likewise.
8362 * sunrpc/pmap_rmt.c: Likewise.
8363 * sunrpc/rpc_cmsg.c: Likewise.
8364 * sunrpc/rpc_prot.c: Likewise.
8365 * sunrpc/svc_authux.c: Likewise.
8366 * sunrpc/svc_raw.c: Likewise.
8367 * sunrpc/svc_simple.c: Likewise.
8368 * sunrpc/svc_tcp.c: Likewise.
8369 * sunrpc/svc_udp.c: Likewise.
8370 * sunrpc/svc_unix.c: Likewise.
8371 * sunrpc/xdr.c: Likewise.
8372 * sunrpc/xdr_array.c: Likewise.
8373 * sunrpc/xdr_mem.c: Likewise.
8374 * sunrpc/xdr_rec.c: Likewise.
8375 * sunrpc/xdr_ref.c: Likewise.
8376 * sunrpc/xdr_stdio.c: Likewise.
8377 * sysdeps/generic/_strerror.c: Likewise.
8378 * sysdeps/generic/printf_fphex.c: Likewise.
8379 * sysdeps/generic/tmpfile.c: Likewise.
8380 * sysdeps/gnu/errlist.awk: Likewise.
8381 * sysdeps/gnu/errlist.c: Likewise.
8382
8383 * libio/Makefile (routines): Remove iosprint.
8384 * libio/iosprintf.c: Removed
8385
8386
8387 2002-02-24 Ulrich Drepper <drepper@redhat.com>
8388
8389 * elf/dl-support.c (_dl_non_dynamic_init): Renamed from
8390 non_dynamic_init and exported now.
8391 * sysdeps/unix/sysv/linux/ldsodefs.h: Declare _dl_non_dynamic_init.
8392 * sysdeps/unix/sysv/linux/init-first.c: Call _dl_non_dynamic_init for
8393 !SHARED.
8394 * sysdeps/mach/hurd/i386/init-first.c: Likewise.
8395 * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
8396 * sysdeps/mach/hurd/mips/init-first.c: Likewise.
8397
8398 2002-02-23 Ulrich Drepper <drepper@redhat.com>
8399
8400 * elf/dl-close.c (free_slotinfo): Check for end of list and return
8401 true in this case.
8402
8403 * locale/iso-639.def: Add language codes for Walloon.
8404
8405 * elf/dl-fini.c (_dl_fini): Print some final statistics on the
8406 total number of relocations performed.
8407
8408 * elf/sprof.c (load_profdata): If do_test provide information as
8409 to why loading failed.
8410 * elf/dl-profile.c (_dl_start_profile): Initialize all of
8411 hist_hdr.dimen.
8412
8413 * csu/set-init.c: Moved to...
8414 * sysdeps/mach/hurd/set-init.c: ...here. New file.
8415 * csu/Makefile: Don't compile set-init.
8416 * sysdeps/mach/hurd/Makefile: Compile set-init for subdir csu.
8417 * sysdeps/mach/hurd/i386/init-first.c: Call __init_misc in addition
8418 to __libc_init.
8419 * sysdeps/mach/hurd/mips/init-first.c: Likewise.
8420 * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
8421 * sysdeps/unix/sysv/linux/init-first.c: Call __init_misc instead of
8422 __libc_init.
8423 * misc/init-misc.c: Always export __init_misc. Don't define hooks for
8424 __libc_subinit.
8425
8426 2002-02-22 Ulrich Drepper <drepper@redhat.com>
8427
8428 * elf/Versions: Add _dl_allocate_tls and _dl_deallocate_tls.
8429 * elf/rtld.c (dl_main): Use _dl_allocate_tls with INTUSE.
8430 * sysdeps/generic/dl-tls.c: Add INTDEF for _dl_allocate_tls.
8431 (_dl_deallocate_tls): New function.
8432 * sysdeps/generic/ldsodefs.h: Declare _dl_allocate_tls_internal and
8433 _dl_deallocate_tls.
8434
8435 2002-02-21 Jakub Jelinek <jakub@redhat.com>
8436
8437 * libio/fileops.c (_IO_file_seekoff_mmap): Fix fseek SEEK_END.
8438 * stdio-common/tst-fseek.c (main): Add test for this.
8439
8440 2002-02-19 Ulrich Drepper <drepper@redhat.com.>
8441
8442 * stdlib/Versions: Move __on_exit to GLIBC_PRIVATE.
8443
8444 2002-02-19 Jakub Jelinek <jakub@redhat.com>
8445
8446 * libio/fileops.c (_IO_file_underflow_mmap): Cast to unsigned char
8447 pointer before dereferencing.
8448
8449 2002-02-18 Roland McGrath <roland@frob.com>
8450
8451 * sysdeps/mach/hurd/times.c: Fix typo in last change.
8452
8453 * sysdeps/mach/hurd/setpriority.c [POLICY_TIMESHARE_BASE_COUNT]:
8454 Use task_policy in place of task_priority.
8455
8456 * sysdeps/generic/bits/mman.h
8457 (MS_ASYNC, MS_SYNC, MS_INVALIDATE): New macros.
8458 * sysdeps/mach/msync.c: New file.
8459
8460 * sysdeps/mach/powerpc/syscall.S: New file.
8461
8462 * mach/msg.c [MACH_MSG_OVERWRITE]
8463 (__mach_msg_trap, __mach_msg_overwrite): New functions.
8464 * mach/Versions (libc: GLIBC_2.0): Add mach_msg_overwrite and __ name.
8465
8466 * sysdeps/mach/configure.in: Check for clock.defs to put into
8467 mach_interface_list.
8468 * sysdeps/mach/configure: Regenerated.
8469
8470 * mach/Makefile (mach-machine): New variable, set from $(base-machine).
8471 ($(objpfx)mach-syscalls.mk): Use it in place of $(base-machine).
8472 ($(mach-syscalls:%=$(objpfx)%.S) static pattern rule):
8473 Use <mach/machine/syscall_sw.h> instead of <sysdep.h>.
8474 (mach-shortcuts): Add device_read_overwrite_request,
8475 device_read_overwrite, vm_read_overwrite, thread_switch.
8476
8477 * configure.in (base_machine): Set to $machine by default.
8478 * configure: Regenerated.
8479
8480 * sysdeps/mach/configure.in: Check for <mach/machine/ndr_def.h>
8481 or <machine/ndr_def.h> and add -DNDR_DEF_HEADER=... to DEFINES.
8482 * sysdeps/mach/configure: Regenerated.
8483 * mach/mach_init.c [NDR_DEF_HEADER]: #include it.
8484
8485 * hurd/hurdfault.c (_hurdsig_fault_init): Add a cast.
8486
8487 * hurd/hurd/signal.h: Include <setjmp.h> for `jmp_buf' decl.
8488
8489 * mach/msgserver.c (__mach_msg_server_timeout) [! MACH_RCV_LARGE]:
8490 Double MAX_SIZE and don't retry on MACH_RCV_TOO_LARGE.
8491
8492 2002-02-17 Roland McGrath <roland@frob.com>
8493
8494 * sysdeps/mach/hurd/times.c
8495 [NO_CREATION_TIME] (startup_time): New static variable.
8496 [NO_CREATION_TIME] (times_init): New static function in __libc_subinit.
8497 (__times) [NO_CREATION_TIME]: Use startup_time in lieu of task
8498 creation_time from task_basic_info.
8499 (__times): Use __gettimeofday instead of __host_get_time.
8500
8501 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg) [! MACH_MSG_TYPE_BIT]:
8502 Use untyped Mach IPC message format.
8503
8504 * hurd/catch-exc.c: Include <assert.h>, missing from last change.
8505
8506 * hurd/Versions (libc: GLIBC_2.0): Add _S_catch_exception_raise_state,
8507 _S_catch_exception_raise_state_identity,
8508 _hurdsig_fault_catch_exception_raise_state,
8509 _hurdsig_fault_catch_exception_raise_state_identity.
8510
8511 * mach/shortcut.awk: Don't apply the /^}$/ rule when $proto == "".
8512
8513 * sysdeps/mach/getsysstats.c (__get_avphys_pages) [HOST_VM_INFO]: Use
8514 __host_info with HOST_VM_INFO flavor instead of __vm_statistics.
8515
8516 * sysdeps/mach/hurd/getpriority.c [TASK_SCHED_TIMESHARE_INFO]: Find
8517 `base_priority' in PIP->timeshare_base_info instead of PIP->taskinfo.
8518
8519 * sysdeps/mach/hurd/dl-sysdep.c [FMH]: Define for i386 only.
8520 (fmh, unfmh): Define these functions only #if FMH. Otherwise define
8521 them as no-op macros.
8522 [FMH] (ELF_MACHINE_USER_ADDRESS_MASK): Redefine it to zero.
8523 (__mmap): Uncomment uses of ELF_MACHINE_USER_ADDRESS_MASK.
8524
8525 * sysdeps/powerpc/dl-machine.h
8526 (ELF_MACHINE_USER_ADDRESS_MASK): New macro.
8527
8528 * hurd/hurdselect.c (_hurd_select) [MACH_MSG_TRAILER_MINIMUM_SIZE]:
8529 Use untyped Mach IPC message format.
8530
8531 * sysdeps/mach/hurd/ioctl.c (__ioctl) [! MACH_MSG_TYPE_BIT]:
8532 Handle untyped Mach IPC message formats.
8533
8534 * hurd/catch-exc.c (_S_catch_exception_raise) [EXC_MASK_ALL]:
8535 Expect different argument conventions when this is defined.
8536 [EXC_MASK_ALL] (_S_catch_exception_raise_state): New stub function.
8537 [EXC_MASK_ALL] (_S_catch_exception_raise_state_identity): Likewise.
8538 * hurd/hurdfault.c: Likewise for _hurdsig_fault_catch_exception_*.
8539 [NDR_CHAR_ASCII] (mig_reply_header_t): #define as mig_reply_error_t
8540 for OSF Mach variant.
8541 (faulted): Use mig_reply_error_t for REPLY.
8542 (_hurdsig_fault_init) [EXC_MASK_ALL]: Use EXCEPTION_STATE_IDENTITY
8543 in __thread_set_exception_ports call.
8544 (_hurdsig_fault_init) [MACH_PORT_RECEIVE_STATUS]: Use
8545 __mach_port_set_attributes in place of __mach_port_set_qlimit.
8546
8547 * sysdeps/mach/powerpc/sysdep.h (_MACH_MACHINE_ASM_H): Define this
8548 before include <sysdeps/mach/sysdep.h>, to inhibit <mach/machine/asm.h>
8549 on Darwin, which includes bogons.
8550
8551 * sysdeps/powerpc/dl-machine.h (elf_machine_rela): Move local
8552 variable LOADBASE so it's not declared when it's not used.
8553
8554 2002-02-16 Roland McGrath <roland@frob.com>
8555
8556 * sysdeps/mach/hurd/times.c (__times) [NO_CREATION_TIME]: Don't try
8557 to use BI.creation_time.
8558
8559 * mach/Machrules (MIG): Add -x c to CPP value passed down.
8560
8561 * config.h.in: Add #undef HAVE_HOST_PAGE_SIZE.
8562 * sysdeps/mach/configure.in: Check for host_page_size RPC to define it.
8563 * mach/mach_init.c (__mach_init) [HAVE_HOST_PAGE_SIZE]: Use
8564 host_page_size instead of vm_statistics.
8565
8566 * sysdeps/mach/Makefile (mach-before-compile): Don't include
8567 mach_interface.h here, since not all variants use that name.
8568
8569 * sysdeps/mach/configure.in: Add some checks for Mach headers
8570 to ensure a sane installation.
8571 (mach_interface_list): Define this variable by checking for .defs
8572 files found in various variants.
8573 * configure.in (mach_interface_list): AC_SUBST this.
8574 * config.make.in (mach-interface-list): New substituted variable.
8575 * mach/Makefile (user-interfaces): Define this using the value
8576 of $(mach-interface-list) instead of mach, mach4.
8577 Updated other references to mach_interface to use it as well.
8578
8579 * sysdeps/mach/powerpc/machine-lock.h: Avoid multi-line strings.
8580
8581 * mach/msgserver.c [NDR_CHAR_ASCII] (mig_reply_header_t): #define as
8582 mig_reply_error_t for OSF Mach variant.
8583
8584 * mach/Makefile (routines): Remove bootprivport.
8585 * mach/bootprivport.c: File removed. It has never been used.
8586
8587 * mach/msg-destroy.c (__mach_msg_destroy) [MACH_MSG_PORT_DESCRIPTOR]:
8588 Grok the OSF flavor of message format.
8589 (mach_msg_destroy_port): For MAKE_SEND and
8590 MAKE_SEND_ONCE rights, create an destroy a right to ensure proper
8591 no-senders notification.
8592
8593 2002-02-06 Roland McGrath <roland@frob.com>
8594
8595 * hurd/Versions (libc: GLIBC_2.0): Move cthread_fork, cthread_detach
8596 to here if 2.0 compatibility enabled ...
8597 (libc: GLIBC_2.1.3): ... from here.
8598
8599 2002-02-15 Ulrich Drepper <drepper@redhat.com>
8600
8601 * elf/dl-open.c (dl_open_worker): Catch wrap-around of TLS
8602 generation counter.
8603 * elf/dl-close.c (_dl_close): Likewise.
8604
8605 2002-02-14 Ulrich Drepper <drepper@redhat.com>
8606
8607 * elf/Makefile: Add rules to build and run tst-tls8.
8608 * elf/tst-tls8.c: New file.
8609 * elf/tst-tlsmod4.c: New file.
8610
8611 * stdlib/test-a64l.c (tests): Add more test cases.
8612
8613 * sunrpc/rtime.c (rtime): Change type of thetime to uint32_t.
8614 Reported by Walter Harms <WHarms@bfs.de>.
8615
8616 2002-02-11 Jes Sorensen <jes@trained-monkey.org>
8617
8618 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Add sc_flag bit
8619 definitions for struct sigcontext.
8620 Suggested by David Mosberger-Tang.
8621
8622 2002-02-13 Ulrich Drepper <drepper@redhat.com>
8623
8624 * elf/dl-close.c (remove_slotinfo): New function. Handles everything
8625 for removing reference of module in slotinfo list.
8626 (_dl_close): Use remove_slotinfo.
8627 * sysdeps/generic/dl-tls.c: General pretty printing.
8628 (oom): Define only if SHARED.
8629 (_dl_next_tls_modid): Correct starting point for the case we assume
8630 there is a gap. Add missing instruction grouping (doh!). Correct
8631 tests for reaching maximum index.
8632 * elf/Makefile: Add rules to build and run tst-tls7.
8633 * elf/tst-tls7.c: New file.
8634 * elf/tst-tlsmod3.c: New file.
8635
8636 * elf/tst-tlsmod1.c: Move #include "tls-macros.h" instead #ifdef
8637 USE_TLS.
8638 * elf/tst-tlsmod2.c: Likewise.
8639
8640 * elf/dl-close.c (_dl_close): When closing an object using TLS
8641 either decrement dl_tls_max_dtv_idx or set dl_tls_dtv_gaps to
8642 true. Increment dl_tls_generation only if we closed any TLS-using
8643 object.
8644 * elf/tst-tls6.c: New file.
8645 * elf/Makefile: Add rules to build and run tst-tls6.
8646
8647 * po/da.po: Update from translation team.
8648
8649 * locale/categories.def: Fix typo [PR libc/2948].
8650 * po/Makefile (BROKEN_LINGUAS): Works with current gettext
8651 [PR libc/2949].
8652 * locale/iso-4217.def: Update from official version [PR libc/2950].
8653 * glibcbug.in: Honor TMPDIR [PR libc/2951].
8654 * locale/programs/ld-collate.c (collate_finish): Bail out with a
8655 message if input is too confusion instead of using assert.
8656 (collate_read): Don't crash on unknown symbol [PR libc/2952].
8657 Patches by Alastair McKinstry <alastair@pdd.3com.com>.
8658
8659 * elf/tst-tls1.c: Move #include "tls-macros.h" inside #ifdef USE_TLS.
8660 * elf/tst-tls2.c: Likewise.
8661 * elf/tst-tls3.c: Likewise.
8662
8663 2002-02-13 Jakub Jelinek <jakub@redhat.com>
8664
8665 * elf/dl-close.c (free_slotinfo): Only define if TLS supported.
8666
8667 2002-02-13 Ulrich Drepper <drepper@redhat.com>
8668
8669 * elf/dl-open.c (dl_open_worker): Only bump the generation counter
8670 if this is really necessary.
8671
8672 * elf/dl-close.c (_dl_close): Implement freeing entries in the
8673 slotinfo array.
8674 (free_mem): Free memory for the slotinfo array if possible.
8675
8676 2002-02-12 Andreas Schwab <schwab@suse.de>
8677
8678 * csu/gmon-start.c (__gmon_start__): Remove '&' from ENTRY_POINT.
8679
8680 2002-02-12 Ulrich Drepper <drepper@redhat.com>
8681
8682 * sysdeps/generic/dl-tls.c (TLS_DTV_UNALLOCATED): Renamed from
8683 TLS_DTV_UNALLOCATE.
8684 (oom): New function.
8685 (_dl_next_tls_modid): Rewrite to handle dl_tls_dtv_slotinfo_list.
8686 (_dl_determine_tlsoffset): Likewise.
8687 (_dl_allocate_tls): Likewise.
8688 (__TLS_GET_ADDR): Define if not already defined.
8689 (_dl_tls_symaddr): New function.
8690 (allocate_and_init): New function.
8691 (__tls_get_addr): Actually implement handling of generation counter
8692 and deferred allocation.
8693 * sysdeps/generic/ldsodefs.h (_rtld_global): Remove _dl_initimage_list,
8694 add _dl_tls_dtv_slotinfo_list, _dl_tls_static_nelem, and
8695 _dl_tls_generation.
8696 Define TLS_SLOTINFO_SURPLUS and DTV_SURPLUS.
8697 Declare _dl_tls_symaddr.
8698 * sysdeps/i386/dl-tls.h: Disable __tls_get_addr handling unless
8699 SHARED.
8700 * include/link.h (struct link_map): Remove l_tls_nextimage and
8701 l_tls_previmage.
8702 * elf/dl-sym.c (_dl_sym): After successful lookup call _dl_tls_symaddr
8703 instead of DL_SYMBOL_ADDRESS for STT_TLS symbols.
8704 (_dl_vsym): Likewise.
8705 * elf/rtld.c (_dl_start_final): Adjust initdtv initialization for new
8706 layout.
8707 (dl_main): Allow PT_TLS be present for empty segment. Remove
8708 nextimage list handling. Instead add all modules using TLS to
8709 dl_tls_dtv_slotinfo_list.
8710 * elf/dl-open.c (dl_open_worker): After successfully loading all
8711 objects add those with TLS to the dl_tls_dtv_slotinfo_list list.
8712 * elf/dl-load.c (_dl_map_object_from_fd): If PT_TLS entry is for an
8713 empty segment don't do anything. Remove handling of initimage list.
8714 * elf/Versions [ld] (GLIBC_2.0): Add __libc_memalign.
8715 (GLIBC_PRIVATE): Add _dl_tls_symaddr.
8716 * elf/dl-minimal.c: Define __libc_memalign.
8717 * elf/dl-support.c: Remove _dl_initimage_list. Add
8718 _dl_tls_dtv_slotinfo_list, _dl_tls_static_nelem, and
8719 _dl_tls_generation.
8720 * include/stdlib.h: Declare __libc_memalign.
8721
8722 * elf/Makefile: Add rules to build and run tst-tls4 and tst-tls5.
8723 * elf/tst-tls4.c: New file.
8724 * elf/tst-tls5.c: New file.
8725 * elf/tst-tlsmod2.c: New file.
8726
8727 * elf/tls-macros.h: asms using ___tls_get_addr destroy %ecx and %edx.
8728
8729 * elf/tst-tlsmod1.c: Don't define variables unles USE_TLS.
8730
8731 * elf/tst-tls1.c: Use test-skeleton.c.
8732 * elf/tst-tls2.c: Likewise.
8733 * elf/tst-tls3.c: Likewise.
8734
8735 * elf/dl-conflict.c (RESOLVE_MAP): Return NULL not 0.
8736
8737 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
8738
8739 * sysdeps/mips/machine-gmon.h: Update MCOUNT for current GCC behavior.
8740
8741 2002-02-10 Ulrich Drepper <drepper@redhat.com>
8742
8743 * elf/elf.h: Define R_386_TLS_GD and R_386_TLS_LDM.
8744
8745 * elf/tst-tls3.c: New file.
8746 * elf/tst-tlsmod1.c: New file.
8747 * elf/Makefile: Add rules to build and run tst-tls3.
8748
8749 * sysdeps/i386/dl-machine.h: Include <tls.h>.
8750 (elf_machine_type_class): Set ELF_RTYPE_CLASS_PLT also for the three
8751 TLS relocations.
8752
8753 * elf/do-lookup.h (FCT): st_value can be zero for STT_TLS symbols.
8754
8755 * po/fr.po: Update from translation team.
8756
8757 * elf/tls-macros.h: Add alternative macros for use in PIC.
8758
8759 * elf/dl-lookup.c: Include <tls.h>.
8760 * elf/do-lookup.h (FCT): Don't discard STT_TLS symbols.
8761
8762 * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): More changes
8763 required by passing pointer to last element of the list.
8764
8765 * elf/dl-load.c (_dl_map_object_from_fd): Move adjustment of
8766 l_tls_initimage to a place where it actually is performed.
8767
8768 * sysdeps/generic/glob.c (glob): Explicitly set gl_pathc to zero
8769 after globfree() calls.
8770
8771 * elf/dl-deps.c (struct openaux_args): Add open_mode element.
8772 (openaux): Pass open_mode as new last argument to _dl_map_object.
8773 (_dl_map_object_deps): Add new argument open_mode. Initialize
8774 open_mode element of args variable with it.
8775 * elf/dl-open.c (dl_open_worker): Pass __RTLD_DLOPEN flag is set to
8776 _dl_map_object_deps.
8777 * elf/rtld.c (dl_main): Add zero as last parameter to
8778 _dl_map_object_deps call.
8779 * sysdeps/generic/ldsodefs.h: Adjust prototype of _dl_map_object_deps.
8780 * elf/nodlopen2.c: New file.
8781 * elf/nodlopenmod2.c: New file.
8782 * elf/Makefile: Add rules to build and run nodlopen2.
8783
8784 * elf/tst-tls1.c: Move TLS helper macros to...
8785 * elf/tls-macros.h: ...here. New file.
8786 * elf/tst-tls2.c: New file.
8787 * elf/Makefile (tests): Add tst-tls2.
8788 (distribute): Add tls-macros.h.
8789
8790 * po/sv.po: Update from translation team.
8791
8792 * elf/tst-tls1.c (main): Add complete set of tests. Split
8793 architecture specific definitions from the actual test code.
8794
8795 * po/tr.po: Update from translation team.
8796
8797 2002-02-09 Ulrich Drepper <drepper@redhat.com>
8798
8799 * elf/Makefile (tests): Add tst-tls1.
8800 * elf/tst-tls1.c: New file.
8801
8802 * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Don't handle
8803 alignment of TCB for now.
8804
8805 * elf/rtld.c (dl_main): Use p_vaddr as address of TLS
8806 initialization image for the application itself.
8807
8808 * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Correctly terminate
8809 loop to initialize TLS block.
8810
8811 2002-02-08 Richard Henderson <rth@redhat.com>
8812
8813 * sysdeps/generic/ldsodefs.h (struct rtld_global): Also include
8814 _dl_cpuclock_offset if HP_SMALL_TIMING_AVAIL.
8815
8816 * sysdeps/alpha/elf/initfini.c: Use \n\ for multiline string.
8817
8818 2002-02-09 Jakub Jelinek <jakub@redhat.com>
8819
8820 * sysdeps/generic/dl-environ.c (unsetenv): Clear cnt before use.
8821
8822 2002-02-08 Ulrich Drepper <drepper@redhat.com>
8823
8824 * po/ca.po: Update from translation team.
8825 * po/sk.po: Likewise.
8826
8827 * elf/rtld.c (_dl_start_final): Install DTV explicitly.
8828 (dl_main): Move dtv/static TLS handling before relocation.
8829 Unconditionally call _dl_tlsoffset. Call _dl_allocate_tls and
8830 TLS_INIT_TP to allocate and install the dtv/static TLS block.
8831 * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): If no object
8832 so far uses TLS initialize GL(dl_tls_static_size) and
8833 GL(dl_tls_static_align) to account for the TCB.
8834 (_dl_allocate_tls): New function.
8835 * sysdeps/generic/ldsodefs.h (rtld_global): Add
8836 _dl_initial_dtv_malloced.
8837
8838 * configure.in: Test for __builtin_memset more realistically.
8839
8840 * csu/version.c (banner): If TLS support is available say so.
8841
8842 2002-02-04 H.J. Lu <hjl@gnu.org>
8843
8844 * sysdeps/mips/dl-machine.h (elf_machine_matches_host): Use
8845 __attribute_used__.
8846 (__dl_runtime_resolve): Likewise.
8847
8848 * sysdeps/mips/machine-gmon.h (_MCOUNT_DECL): Make it a real
8849 declaration.
8850
8851 2001-11-15 H.J. Lu <hjl@gnu.org>
8852
8853 * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Don't include
8854 <signal.h>, <sys/ucontext.h> nor <asm/elf.h>. Updated for gdb.
8855
8856 * sysdeps/unix/sysv/linux/mips/sys/user.h: New file.
8857
8858 2002-02-07 H.J. Lu <hjl@gnu.org>
8859
8860 * sysdeps/mips/atomicity.h (compare_and_swap): Remove
8861 ".set noreorder".
8862 * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set):
8863 Likewise.
8864
8865 2002-02-07 Ulrich Drepper <drepper@redhat.com>
8866
8867 * sysdeps/unix/sysv/linux/bits/stat.h: Undo last patch.
8868
8869 * sysdeps/i386/dl-tls.h (__tls_get_addr): Call
8870 ___tls_get_addr_internal.
8871 (___tls_get_addr_internal): Define as alias for ___tls_get_addr.
8872
8873 * po/ko.po: Update from translation team.
8874
8875 2002-02-07 Jakub Jelinek <jakub@redhat.com>
8876
8877 * sysdeps/unix/sysv/linux/bits/stat.h (struct stat): Remove packed
8878 attribute, change __pad{1,2} type to unsigned int.
8879 (struct stat64): Remove packed attribute.
8880
8881 2002-02-07 Ulrich Drepper <drepper@redhat.com>
8882
8883 * sysdeps/i386/dl-tls.h: No need for #ifdef USE_TLS.
8884
8885 2002-02-07 Andreas Schwab <schwab@suse.de>
8886
8887 * configure.in: Fix check for -zcombreloc.
8888
8889 2002-02-06 H.J. Lu <hjl@gnu.org>
8890
8891 * config.h.in (HAVE_BUILTIN_MEMSET): New macro.
8892 * configure.in: Check if __builtin_memset really works.
8893 * elf/rtld.c (_dl_start): Check HAVE_BUILTIN_MEMSET instead of
8894 __GNUC_PREREQ (2, 96) before using __builtin_memset.
8895
8896 2002-02-06 Jakub Jelinek <jakub@redhat.com>
8897
8898 * io/bug-ftw3.c (main): Don't try the test if root.
8899
8900 2002-02-06 Martin Schwidefsky <schwidefsky@de.ibm.com>
8901
8902 * sysdeps/unix/sysv/linux/s390/brk.c (__brk): Correct inline assembly
8903 constraints.
8904 * sysdeps/unix/sysv/linux/s390/s390-32/bits/resource.h (RLIMIT_LOCKS):
8905 Add RLIMIT_LOCKS and adjust RLIMIT_NLIMITS.
8906 * sysdeps/unix/sysv/linux/s390/s390-64/bits/resource.h (RLIMIT_LOCKS):
8907 Likewise.
8908 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S (clone): Make clone
8909 a weak alias for __clone.
8910 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S (clone): Likewise.
8911 * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h: Fix typo.
8912 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add framestate.
8913 * sysdeps/unix/sysv/linux/s390/s390-64/Versions: New file.
8914 * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S (__mmap64): Make __mmap
8915 a weak alias for __mmap64.
8916
8917 2002-02-05 H.J. Lu <hjl@gnu.org>
8918
8919 * sysdeps/mips/atomicity.h (exchange_and_add): Not use branch likely.
8920 (atomic_add): Likewise.
8921 (compare_and_swap): Likewise.
8922 * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Likewise.
8923
8924 2002-02-07 Ulrich Drepper <drepper@redhat.com>
8925
8926 * sysdeps/generic/dl-tls.c: Don't read TLS header if TLS is not needed.
8927
8928 * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Account for
8929 alignment of the TCB and store total size and alignment of static
8930 TLS block in _dl_tls_static_size and _dl_tls_static_align.
8931 tls_index is a typedef.
8932 * sysdeps/generic/ldsodefs.h: Declare _dl_tls_static_size and
8933 _dl_tls_static_align.
8934 * sysdeps/i386/dl-tls.h: tls_index is a typedef.
8935 * elf/dl-support.c: Define _dl_tls_static_size and
8936 _dl_tls_static_align.
8937
8938 2002-02-06 Ulrich Drepper <drepper@redhat.com>
8939
8940 * configure.in: Add --without-tls option.
8941 * sysdeps/i386/elf/configure.in: Don't check for TLS support if
8942 --without-tls is given.
8943
8944 * sysdeps/generic/dl-tls.c: Include <tls.h>.
8945
8946 * sysdeps/i386/dl-tls.h: Don't define anything if !USE_TLS.
8947
8948 2002-02-06 Roland McGrath <roland@frob.com>
8949
8950 * malloc/hooks.c [! HAVE_MREMAP]: Conditionalize unused decls.
8951 * malloc/malloc.c [! HAVE_MREMAP]: Likewise.
8952
8953 * scripts/versions.awk: Improve error message for missing version.
8954 Each version inherits from the last one only if they have the same
8955 nonnumeric prefix, i.e. GLIBC_x.y and GLIBC_x.z or FOO_x and FOO_y
8956 but not GLIBC_x and FOO_y.
8957
8958 * scripts/firstversions.awk: Handle libraries that don't have each
8959 particular version named in the third column of shlib-versions.
8960
8961 * scripts/firstversions.awk: Don't mess with GLIBC_PRIVATE.
8962
8963 2002-02-06 Ulrich Drepper <drepper@redhat.com>
8964
8965 * Versions.def [ld]: Add GLIBC_2.3.
8966 * elf/Versions [ld]: Add __tls_get_addr to GLIBC_2.3.
8967 * elf/Makefile (dl-routines): Add dl-tls.
8968 (distribute): Add dl-tls.h.
8969 * sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
8970 _dl_tls_module_cnt, add _dl_tls_max_dtv_idx and _dl_tls_dtv_gaps.
8971 Add prototypes for _dl_next_tls_modid and _dl_determine_tlsoffset.
8972 * elf/dl-load.c (_dl_map_object_from_fd): Store alignment requirement
8973 along with the other info in the link map. Change queueing of init
8974 images for double linked list. Use _dl_next_tls_modid to compute
8975 l_tls_modid.
8976 * elf/rtld.c (_dl_start_final): Store alignment requirement
8977 along with the other info in rtld map and executable map.
8978 (dl_main): Add ld.so to the init image list if necessary. Compute
8979 final module ID with _dl_next_tls_modid.
8980 * include/link.h (struct link_map): Add l_tls_previmage and
8981 l_tls_align.
8982 * eld/dl-support.c: Define _dl_tls_max_dtv_idx and _dl_tls_dtv_gaps.
8983 * sysdeps/i386/elf/Versions: New file.
8984 * sysdeps/generic/dl-tls.c: New file.
8985 * sysdeps/generic/dl-tls.h: New file.
8986 * sysdeps/i386/dl-tls.h: New file.
8987
8988 2002-02-06 Roland McGrath <roland@frob.com>
8989
8990 * sysdeps/unix/sysv/linux/netinet/ip.h: Moved to ...
8991 * sysdeps/generic/netinet/ip.h: ... here, replacing old file.
8992
8993 2002-01-05 Roland McGrath <roland@frob.com>
8994
8995 * sysdeps/mach/configure.in: New file.
8996 * sysdeps/mach/configure: New generated file.
8997
8998 * mach/Makefile (user-interfaces): Remove default_pager_helper.
8999 It has never been used by anything.
9000
9001 2002-02-06 H.J. Lu <hjl@gnu.org>
9002
9003 * sysdeps/mips/elf/ldsodefs.h: Make sure the right <ldsodefs.h>
9004 is included.
9005
9006 2002-02-06 Ulrich Drepper <drepper@redhat.com>
9007
9008 * sysdeps/unix/sysv/linux/bits/stat.h (struct stat): Add
9009 attribute((packed)) to counter stupid people misusing gcc options.
9010 (struct stat64): Likewise.
9011
9012 2002-02-05 Ulrich Drepper <drepper@redhat.com>
9013
9014 * elf/rtld.c (dl_main): Correct indentation. Use bool as type for
9015 the variables which are used as booleans.
9016
9017 2002-02-06 Andreas Jaeger <aj@suse.de>
9018
9019 * include/libc-symbols.h (INTUSE): Renamed from INT.
9020 * elf/dl-deps.c: Change users.
9021 * sysdeps/generic/dl-sysdep.c: Likewise.
9022 * sysdeps/generic/dl-cache.c: Likewise.
9023 * elf/dl-reloc.c: Likewise.
9024 * elf/rtld.c: Likewise.
9025 * elf/dl-version.c: Likewise.
9026 * elf/dl-load.c: Likewise.
9027 * elf/dl-dst.h: Likewise.
9028 * elf/dl-init.c: Likewise.
9029 * elf/dl-error.c: Likewise.
9030 * elf/dl-fini.c: Likewise.
9031 * elf/dl-runtime.c: Likewise.
9032 * elf/do-lookup.h: Likewise.
9033
9034 * stdio-common/_itoa.h: Undefine SPECIAL to avoid duplicate
9035 definition.
9036 * stdio-common/_itowa.h: Likewise.
9037
9038 2002-02-05 Ulrich Drepper <drepper@redhat.com>
9039
9040 * elf/dl-minimal.c: Define _itoa_lower_digits.
9041
9042 * elf/dynamic-link.h (elf_get_dynamic_info): ld.so can have
9043 DT_FLAGS set.
9044
9045 * elf/dl-load.c (_dl_map_object_from_fd): Prevent dynamically
9046 loading modules with the DF_STATIC_TLS flag set.
9047 * elf/dynamic-link.h (elf_get_dynamic_info): Initialize l_flags
9048 element.
9049 * include/link.h (struct link_map): Add l_flags field.
9050 * elf/elf.h (DF_STATIC_TLS): New definition.
9051
9052 * dlfcn/Makefile: Add rules to build and run bug-dlopen1.
9053 * dlfcn/bug-dlopen1.c: New file. By Bruno Haible.
9054
9055 * elf/rtld.c (process_dl_debug): Correct printing help message.
9056 * elf/dl-misc.c (_dl_debug_vdprintf): Implement precision handling
9057 for %s.
9058
9059 * inet/getnetgrent_r.c (innetgr): Add int* parameter to getfct
9060 definition and pass &errno in use of this variable.
9061 Reported by Simon Wilkinson <simon@sxw.org.uk> [PR libc/2911].
9062
9063 2002-02-04 Andreas Schwab <schwab@suse.de>
9064
9065 * locale/programs/localedef.h (WITH_CUR_LOCALE): Define.
9066 * locale/programs/charmap-dir.c: Wrap calls that output messages
9067 with WITH_CUR_LOCALE. Include "localedef.h" first.
9068 * locale/programs/charmap.c: Likewise.
9069 * locale/programs/ld-address.c: Likewise.
9070 * locale/programs/ld-collate.c: Likewise.
9071 * locale/programs/ld-ctype.c: Likewise.
9072 * locale/programs/ld-identification.c: Likewise.
9073 * locale/programs/ld-measurement.c: Likewise.
9074 * locale/programs/ld-messages.c: Likewise.
9075 * locale/programs/ld-monetary.c: Likewise.
9076 * locale/programs/ld-name.c: Likewise.
9077 * locale/programs/ld-numeric.c: Likewise.
9078 * locale/programs/ld-paper.c: Likewise.
9079 * locale/programs/ld-telephone.c: Likewise.
9080 * locale/programs/ld-time.c: Likewise.
9081 * locale/programs/linereader.c: Likewise.
9082 * locale/programs/linereader.h: Likewise.
9083 * locale/programs/localedef.c: Likewise.
9084 * locale/programs/locfile.c: Likewise.
9085 * locale/programs/repertoire.c: Likewise.
9086
9087 2002-02-05 Ulrich Drepper <drepper@redhat.com>
9088
9089 * elf/rtld.c (_dl_start_final): Determine load address to locate
9090 ehdr with GL(dl_rtld_map).l_map_start.
9091
9092 * po/ca.po: Update from translation team.
9093
9094 * elf/rtld.c (dl_main): Read PT_TLS entry of the executable.
9095 * elf/dl-load.c (_dl_map_object_from_fd): Handle PT_TLS program
9096 header entry.
9097 * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
9098 _dl_tls_module_cnt.
9099 * elf/dl-support.c: Define _dl_initimage_list and _dl_tls_module_cnt.
9100
9101 2002-02-04 Ulrich Drepper <drepper@redhat.com>
9102
9103 * elf/rtld.c (_dl_start): Fill TLS values in link map for rtld.
9104 * include/link.h (struct link_map): Add various members for TLS
9105 information.
9106 * sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
9107 _rtld_tlsoffset, add _dl_initimage_list.
9108 * sysdeps/i386/dl-lookupcfg.h: New file.
9109 * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement missing
9110 TLS relocation. When using TLS we now use RESOLVE_MAP.
9111 (elf_machine_rela): Use RESOLVE_MAP instead of RESOLVE_MAP if TLS
9112 is used.
9113
9114 * sysdeps/generic/dl-cache.c (_dl_cache_libcmp): Mark as possibly
9115 unused.
9116
9117 * elf/rtld.c (_dl_start_final): Allocate TLS and initialize
9118 thread-pointer as soon as possible.
9119 * sysdeps/generic/ldsodefs.h: Include <tls.h>. Define first TLS
9120 elements in rtld_global.
9121 * sysdeps/generic/tls.h: New file.
9122 * elf/Makefile (distribute): Add tls.h.
9123 * sysdeps/i386/dl-machine.h (elf_machine_rel): Add support for TLS
9124 relocations. Not complete yet.
9125
9126 * resolv/resolv.h: Allow user to define __need_res_state and only
9127 define __res_start structure then.
9128 * include/resolv.h: Only declare functions if _RESOLV_H_ is defined.
9129
9130 * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Move
9131 dl_cpuclock_offset initialization to _dl_start_final.
9132 (_dl_show_auxv): Avoid unnecessary sign extension.
9133 * elf/rtld.c (_dl_start_final): Initialize dl_cpuclock_offset.
9134
9135 2002-02-03 Ulrich Drepper <drepper@redhat.com>
9136
9137 * config.h.in: Add HAVE_TLS_SUPPORT.
9138 * sysdeps/i386/elf/configure.in: New file.
9139
9140 2002-02-03 Andreas Schwab <schwab@suse.de>
9141
9142 * sysdeps/posix/readv.c: Use ssize_t for bytes_read.
9143 * sysdeps/posix/writev.c: Use ssize_t for bytes_written. Fix comment.
9144
9145 2002-02-03 Thorsten Kukuk <kukuk@suse.de>
9146
9147 * sysdeps/posix/writev.c: Check for ssize_t overflow, don't use
9148 alloca if the memory reqirements are too high.
9149
9150 2002-02-03 Ulrich Drepper <drepper@redhat.com>
9151
9152 * elf/dl-load.c (decompose_rpath): Avoid using strstr.
9153 * elf/dl-minimal.c (_strerror_r): Use _itoa instead of _itoa_word since
9154 the former is available anyway and speed isn't important here.
9155 * elf/dl-misc.c (_dl_debug_vdprintf): Likewise.
9156 * elf/dl-version.c (match_symbol): Likewise.
9157 (_dl_check_map_versions): Likewise.
9158 * elf/rtld.c (process_envvars): Likewise.
9159 (print_statistics): Likewise.
9160 * sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Likewise.
9161 * elf/dl-minimal.c (_itoa): Always define it. Make it work for all
9162 bases. Add assert to catch uses of unimplemented features.
9163 (__strsep): Add assert to catch uses of unimplemented features.
9164 * elf/dl-object.c (_dl_new_object): Don't use rawmemchr. Use strchr
9165 and avoid inline optimization.
9166 * elf/rtld.c (process_envvars): Likewise.
9167 * elf/dl-open.c: Don't include <stdio-common/_itoa.h>.
9168 * elf/dl-profile.c (_dl_start_profile): Help compiler to avoid ffs.
9169 * elf/rtld.c (dl_main): Avoid strsep inline optimization.
9170
9171 2002-02-02 Ulrich Drepper <drepper@redhat.com>
9172
9173 * stdio-common/_itoa.h: Minor simplifications of the code.
9174 * stdio-common/_itoa.c: Likewise.
9175
9176 * elf/dl-reloc.c (_dl_relocate_object): Use _dl_debug_printf
9177 instead of _dl_printf for debugging info output.
9178
9179 * manual/examples/mkfsock.c (make_named_socket): Make sure name is
9180 always NUL-terminated. Patch by Chris D. Sloan <cds@cs.hmc.edu>.
9181
9182 2002-02-01 H.J. Lu <hjl@gnu.org>
9183
9184 * sysdeps/mips/atomicity.h (exchange_and_add): Use branch likely.
9185 (atomic_add): Likewise.
9186 (compare_and_swap): Return 0 only when failed to compare. Use
9187 branch likely.
9188
9189 * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Use
9190 branch likely.
9191
9192 2002-02-03 kaz Kojima <kkojima@rr.iij4u.or.jp>
9193
9194 * sysdeps/sh/dl-machine.h (elf_machine_rela): Fix a typo.
9195
9196 2002-02-02 Ulrich Drepper <drepper@redhat.com>
9197
9198 * elf/dl-minimal.c (__strsep): New minimal implementation.
9199
9200 2002-02-02 Paul Eggert <eggert@twinsun.com>
9201
9202 * src/mktime.c [defined DEBUG && STDC_HEADERS]: Include <string.h>.
9203 (__mktime_internal): If no tm_isdst is requested, prefer solutions
9204 with tm_isdst > 0 when the requested time falls within a
9205 spring-forward gap [PR libc/2894].
9206
9207 2002-02-03 Andreas Schwab <schwab@suse.de>
9208
9209 * stdio-common/tst-rndseek.c: Increase timeout.
9210
9211 2002-02-02 Ulrich Drepper <drepper@redhat.com>
9212
9213 Change ld.so to not use functions which are exported. One cannot
9214 interpose them anyway. Use INT() to mark uses, INTDEF() to mark
9215 definitions.
9216 * include/libc-symbols.h: Define INT and INTDEF.
9217 * sysdeps/generic/ldsodefs.h: Declare _dl_debug_printf_internal,
9218 _dl_signal_error_internal, _dl_map_object_internal,
9219 _dl_map_object_deps_internal, _dl_lookup_symbol_internal,
9220 _dl_lookup_versioned_symbol_internal,
9221 _dl_relocate_object_internal, _dl_debug_state_internal,
9222 _dl_start_profile_internal, and _dl_unload_cache_internal.
9223 * include/dlfcn.h: Declare _dl_catch_error_internal.
9224 * elf/rtld.c: Use INT for calls to any of the *_internal functions
9225 above. Add INTDEF to function definitions.
9226 * elf/dl-debug.c: Likewise.
9227 * elf/dl-deps.c: Likewise.
9228 * elf/dl-dst.h: Likewise.
9229 * elf/dl-error.c: Likewise.
9230 * elf/dl-fini.c: Likewise.
9231 * elf/dl-init.c: Likewise.
9232 * elf/dl-load.c: Likewise.
9233 * elf/dl-lookup.c: Likewise.
9234 * elf/dl-misc.c: Likewise.
9235 * elf/dl-open.c: Likewise.
9236 * elf/dl-profile.c: Likewise.
9237 * elf/dl-reloc.c: Likewise.
9238 * elf/dl-runtime.c: Likewise.
9239 * elf/dl-version.c: Likewise.
9240 * elf/do-lookup.h: Likewise.
9241 * sysdeps/generic/dl-cache.c: Likewise.
9242 * sysdeps/generic/dl-sysdep.c: Likewise.
9243 * sysdeps/alpha/dl-machine.h (RTLD_START): Call _dl_init_internal
9244 instead of _dl_init.
9245 * sysdeps/arm/dl-machine.h: Likewise.
9246 * sysdeps/cris/dl-machine.h: Likewise.
9247 * sysdeps/hppa/dl-machine.h: Likewise.
9248 * sysdeps/i386/dl-machine.h: Likewise.
9249 * sysdeps/ia64/dl-machine.h: Likewise.
9250 * sysdeps/m68k/dl-machine.h: Likewise.
9251 * sysdeps/mips/dl-machine.h: Likewise.
9252 * sysdeps/mips/mips64/dl-machine.h: Likewise.
9253 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
9254 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
9255 * sysdeps/sh/dl-machine.h: Likewise.
9256 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
9257 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
9258 * sysdeps/x86_64/dl-machine.h: Likewise.
9259 * sysdeps/powerpc/dl-start.S (_dl_start_user): Likewise.
9260
9261 * elf/Versions: Don't export _dl_check_all_versions, _dl_sysdep_start,
9262 and _dl_debug_initialize.
9263
9264 * elf/dl-object.c (_dl_new_object): Avoid using strrchr. We have
9265 more information.
9266 * elf/rtld.c (dl_main): Avoid strrchr.
9267 * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use the
9268 result of readlink. Search from the back for '/'.
9269
9270 * elf/dl-profile.c (_dl_start_profile): Help the compiler to avoid
9271 strncpy if possible.
9272
9273 * sysdeps/generic/dl-environ.c (unsetenv): Optimize. Don't use
9274 strncmp.
9275 * elf/dl-load.c (is_dst): Optimize. Don't call strncmp twice.
9276 * elf/rtld.c (process_dl_debug): Optimize. Avoid calls to strncmp,
9277 strspn, and strcspn.
9278 (process_envvars): Don't use strcspn.
9279
9280 * elf/dl-load.c (_dl_dst_count): Fix possible endless loop.
9281 (_dl_dst_substitute): Likewise.
9282
9283 2002-02-01 Ulrich Drepper <drepper@redhat.com>
9284
9285 * elf/do-rel.h (elf_dynamic_do_rel): Help the compiler recognize
9286 code which is never used when relocating ld.so itself.
9287
9288 * elf/dynamic-link.h (elf_get_dynamic_info): Optimize a bit for
9289 starting ld.so itself. Move l_addr variable initialization closer
9290 to use.
9291 (_ELF_DYNAMIC_DO_RELOC): Help the compiler optimize a bit.
9292
9293 2002-02-01 Jakub Jelinek <jakub@redhat.com>
9294
9295 * Versions.def (libc): Add GLIBC_PRIVATE.
9296 (libdb, libnss_db, libdb1): Remove.
9297 (libnss_compat, libnss_dns, libnss_files, libnss_hesiod, libnss_nis,
9298 libnss_nisplus): Move all symbols to GLIBC_PRIVATE.
9299 (libpthread): Add GLIBC_PRIVATE.
9300 (libresolv): Likewise, remove GLIBC_2.1.
9301 (ld): Add GLIBC_PRIVATE, remove GLIBC_2.1.1, GLIBC_2.2, GLIBC_2.2.1,
9302 GLIBC_2.2.3, GLIBC_2.3.
9303 * catgets/Versions (__open_catalog): Move to GLIBC_PRIVATE.
9304 * elf/Versions (_dl_open, _dl_close, _dl_addr, _dl_init_first,
9305 _dl_sym, _dl_vsym): Likewise.
9306 (__libc_enable_secure, __libc_stack_end, _dl_argv, _dl_catch_error,
9307 _dl_check_all_versions, _dl_check_map_versions, _dl_debug_initialize,
9308 _dl_debug_printf, _dl_debug_state, _dl_dst_count, _dl_dst_substitute,
9309 _dl_init, _dl_lookup_symbol, _dl_lookup_symbol_skip,
9310 _dl_lookup_versioned_symbol, _dl_lookup_versioned_symbol_skip,
9311 _dl_map_object, _dl_map_object_deps, _dl_out_of_memory,
9312 _dl_relocate_object, _dl_signal_error, _dl_start_profile,
9313 _dl_starting_up, _dl_sysdep_start, _dl_unload_cache, _rtld_global):
9314 Likewise.
9315 (_dl_object_relocation_scope): Remove.
9316 * hesiod/Versions: Move all symbols to GLIBC_PRIVATE.
9317 * iconv/Versions (__gconv_alias_db, __gconv_modules_db,
9318 __gconv_cache): Move to GLIBC_PRIVATE.
9319 * inet/Versions (__internal_endnetgrent, __internal_getnetgrent_r,
9320 __internal_setnetgrent): Likewise.
9321 * io/Versions (__libc_open, __libc_close, __libc_read, __libc_write,
9322 __libc_lseek, __libc_fcntl, __libc_open64, __libc_lseek64): Likewise.
9323 * locale/Versions (__collate_element_hash, __collate_element_strings,
9324 __collate_symbol_classes, __collate_symbol_hash,
9325 __collate_symbol_strings, _nl_current_LC_COLLATE,
9326 _nl_current_LC_CTYPE): Likewise.
9327 * misc/Versions (__libc_fsync, __libc_msync): Likewise.
9328 * nis/Versions (libnss_compat): Move all symbols to GLIBC_PRIVATE.
9329 (libnss_nis, libnss_nisplus): Likewise.
9330 * nss/Versions (_nss_files_parse_grent, _nss_files_parse_pwent,
9331 _nss_files_parse_spent): Move to GLIBC_PRIVATE.
9332 (libnss_files): Move all symbols to GLIBC_PRIVATE.
9333 * posix/Versions (__libc_wait, __libc_waitpid, __libc_pause,
9334 __libc_nanosleep, __libc_fork, __libc_pread, __libc_pread64,
9335 __libc_pwrite, __libc_pwrite64): Move to GLIBC_PRIVATE.
9336 * resolv/Versions (__gai_sigqueue, __ns_name_unpack, __ns_name_ntop,
9337 __ns_get16, __ns_samename): Likewise.
9338 (libnss_dns): Move all symbols to GLIBC_PRIVATE.
9339 * setjmp/Versions (__libc_longjmp, __libc_siglongjmp): Move to
9340 GLIBC_PRIVATE.
9341 * socket/Versions (__libc_accept, __libc_send, __libc_recvfrom,
9342 __libc_recvmsg, __libc_sendmsg, __libc_recv, __libc_sendto,
9343 __libc_connect): Likewise.
9344 * stdio-common/Versions (_itoa_lower_digits, _itoa_upper_digits):
9345 Likewise.
9346 * stdlib/Versions (__libc_system): Likewise.
9347 * sunrpc/Versions (__rpc_thread_destroy): Likewise.
9348 * sysdeps/hppa/Versions: Move all symbols to GLIBC_PRIVATE.
9349 * sysdeps/ia64/fpu/Versions: Likewise.
9350 * sysdeps/ia64/Versions: Likewise.
9351 * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
9352 * sysdeps/unix/sysv/linux/i386/Versions (__modify_ldt): Move
9353 to GLIBC_PRIVATE.
9354 * sysdeps/unix/sysv/linux/x86_64/Versions (__modify_ldt): Likewise.
9355 * sysdeps/unix/sysv/linux/Versions (__syscall_rt_sigqueueinfo,
9356 __libc_sigaction): Likewise.
9357 * termios/Versions (__libc_tcdrain): Likewise.
9358
9359 * misc/sys/cdefs (__attribute_noinline__): Define.
9360 * elf/dl-lookup.c (_dl_do_lookup, _dl_do_lookup_versioned): Add
9361 __attribute_noinline__.
9362
9363 * elf/Makefile (rtld-routines): Add dl-xstat64, dl-fxstat64.
9364 * elf/dl-xstat64.c: New file.
9365 * elf/dl-fxstat64.c: New file.
9366 * sysdeps/unix/sysv/linux/fxstat64.c: If RTLD_STAT64 is defined,
9367 don't export __fxstat64 at multiple versions.
9368 * sysdeps/unix/sysv/linux/lxstat64.c: Similarly.
9369 * sysdeps/unix/sysv/linux/xstat64.c: Similarly.
9370
9371 2002-01-18 Isamu Hasegawa <isamu@yamato.ibm.com>
9372
9373 * locale/program/ld-collate.c (collate_finish): Assign a wide
9374 char collation sequence value to multi character collating
9375 elements, and avoid over writing by non-character elements.
9376
9377 2002-02-01 Ulrich Drepper <drepper@redhat.com>
9378
9379 * elf/Makefile (distribute): Add dl-procinfo.c.
9380 * sysdeps/unix/sysv/linux/i386/Dist: Remove dl-procinfo.c.
9381 * sysdeps/unix/sysv/linux/arm/Dist: Likewise.
9382
9383 2002-02-01 Jakub Jelinek <jakub@redhat.com>
9384
9385 * sysdeps/generic/ldsodefs.h (_dl_load_lock): Remove duplicate
9386 definition.
9387 * sysdeps/ia64/hp-timing.h: Move _dl_hp_timing_overhead in
9388 _rtld_global struct.
9389 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
9390 * sysdeps/sparc/sparc64/hp-timing.c: Likewise.
9391 * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
9392 * sysdeps/sparc/sparc64/Makefile: Make hp-timing static only.
9393 * sysdeps/unix/sysv/aix/init-first.c (_dl_fpu_control,
9394 _dl_fpu_control_set): Remove unused externs.
9395 * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: New file.
9396 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: New file.
9397 * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: Move procinfo
9398 related variables in _rtld_global struct.
9399 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Likewise.
9400 * sysdeps/unix/sysv/linux/init-first.c (_dl_fpu_control_set): Remove
9401 unused extern.
9402
9403 2002-02-01 Ulrich Drepper <drepper@redhat.com>
9404
9405 * sysdeps/generic/dl-procinfo.c: New file.
9406
9407 2002-02-01 Andreas Schwab <schwab@suse.de>
9408
9409 * sysdeps/m68k/dl-machine.h: Don't use multi-line string literals.
9410
9411 2002-02-01 Ulrich Drepper <drepper@redhat.com>
9412
9413 * elf/rtld.c (_dl_start): Mark as internal_function.
9414 * sysdeps/i386/dl-machine.h (RTLD_START): Pass parameter for _dl_start
9415 in register.
9416 (elf_machine_rel): Cleanup and minor optimization for RTLD_BOOTSTRAP.
9417 General pretty printing.
9418
9419 2002-01-31 Ulrich Drepper <drepper@redhat.com>
9420
9421 * elf/dl-minimal.c: Define _itoa for 32-bit machines with HP timing.
9422 * elf/dl-reloc.c: Pretty printing.
9423 * sysdeps/generic/ldsodefs.h: Move _dl_hp_timing_overhead and
9424 procinfo-related variables in rtld_global struct.
9425 * elf/dl-support.c: Likewise.
9426 * elf/rtld.c: Likewise.
9427 * sysdeps/i386/i686/Makefile: Likewise.
9428 * sysdeps/i386/i686/hp-timing.c: Likewise.
9429 * sysdeps/i386/i686/hp-timing.h: Likewise.
9430 * sysdeps/ia64/Makefile: Likewise.
9431 * sysdeps/ia64/hp-timing.c: Likewise.
9432 * sysdeps/sparc/sparc32/sparcv9/Makefile: Likewise.
9433 * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
9434 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c: Likewise.
9435 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h: Likewise.
9436 * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
9437 * sysdeps/unix/sysv/linux/i386/dl-procinfo.c: Likewise.
9438 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
9439 * sysdeps/x86_64/Makefile: Likewise.
9440
9441 * sysdeps/generic/ldsodefs.h: Add _dl_load_lock, _dl_lazy,
9442 _dl_dynamic_weak, _dl_fpu_control, _dl_cpuclock_offset, and
9443 _dl_debug_fd to rtld_global.
9444 * elf/Versions: Likewise.
9445 * elf/dl-close.c: Likewise.
9446 * elf/dl-iteratephdr.c: Likewise.
9447 * elf/dl-lookup.c: Likewise.
9448 * elf/dl-misc.c: Likewise.
9449 * elf/dl-open.c: Likewise.
9450 * elf/dl-support.c: Likewise.
9451 * elf/do-lookup.h: Likewise.
9452 * elf/rtld.c: Likewise.
9453 * sysdeps/generic/dl-cache.c: Likewise.
9454 * sysdeps/generic/dl-sysdep.c: Likewise.
9455 * sysdeps/ia64/Versions: Likewise.
9456 * sysdeps/unix/clock_gettime.c: Likewise.
9457 * sysdeps/unix/clock_settime.c: Likewise.
9458 * sysdeps/unix/sysv/linux/init-first.c: Likewise.
9459 * sysdeps/sparc/Versions: Removed.
9460 * sysdeps/i386/i686/Versions : Removed.
9461 * sysdeps/x86_64/Versions: Removed.
9462 * configure.in: Define HAVE_PROTECTED if .protected is available.
9463 * config.h.in: Add entry for HAVE_PROTECTED.
9464
9465 2002-01-31 Jakub Jelinek <jakub@redhat.com.
9466
9467 * sysdeps/alpha/dl-machine.h: Move global variables for SHARED
9468 code in struct _rtld_global. Export this struct, remove all
9469 exports for the signal variables.
9470 * sysdeps/arm/dl-machine: Likewise.
9471 * sysdeps/generic/dl-origin: Likewise.
9472 * sysdeps/generic/dl-sysdep: Likewise.
9473 * sysdeps/generic/dl-cache: Likewise.
9474 * sysdeps/hppa/dl-fptr: Likewise.
9475 * sysdeps/hppa/dl-machine: Likewise.
9476 * sysdeps/cris/dl-machine: Likewise.
9477 * sysdeps/i386/dl-machine: Likewise.
9478 * sysdeps/ia64/dl-machine: Likewise.
9479 * sysdeps/m68k/dl-machine: Likewise.
9480 * sysdeps/mach/hurd/dl-sysdep: Likewise.
9481 * sysdeps/mips/mips64/dl-machine: Likewise.
9482 * sysdeps/mips/dl-machine: Likewise.
9483 * sysdeps/powerpc/elf/libc-start: Likewise.
9484 * sysdeps/powerpc/dl-machine: Likewise.
9485 * sysdeps/powerpc/dl-start: Likewise.
9486 * sysdeps/sparc/sparc32/dl-machine: Likewise.
9487 * sysdeps/sparc/sparc64/dl-machine: Likewise.
9488 * sysdeps/sh/dl-machine: Likewise.
9489 * sysdeps/s390/s390-32/dl-machine: Likewise.
9490 * sysdeps/s390/s390-64/dl-machine: Likewise.
9491 * sysdeps/unix/sysv/aix/libc-start: Likewise.
9492 * sysdeps/unix/sysv/aix/start-libc: Likewise.
9493 * sysdeps/unix/sysv/linux/ia64/dl-static: Likewise.
9494 * sysdeps/unix/sysv/linux/m68k/getpagesize: Likewise.
9495 * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize: Likewise.
9496 * sysdeps/x86_64/dl-machine: Likewise.
9497
9498 2002-01-31 Ulrich Drepper <drepper@redhat.com>
9499
9500 * sysdeps/posix/readv.c: Don't use alloca if the memory requirements
9501 are too high.
9502
9503 2002-01-31 Andreas Schwab <schwab@suse.de>
9504
9505 * sysdeps/posix/readv.c: Check for ssize_t overflow.
9506
9507 2002-01-31 Andreas Schwab <schwab@suse.de>
9508
9509 * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Fix leftover
9510 reference to _dl_pagesize.
9511
9512 2002-01-30 Ulrich Drepper <drepper@redhat.com>
9513
9514 * Versions.def [ld]: Add GLIBC_2.3.
9515 * elf/dl-addr.c: Move global variables for SHARED code in struct
9516 _rtld_global. Export this struct, remove all exports for the
9517 signal variables.
9518 * elf/dl-close.c: Likewise.
9519 * elf/dl-conflict.c: Likewise.
9520 * elf/dl-debug.c: Likewise.
9521 * elf/dl-deps.c: Likewise.
9522 * elf/dl-dst.h: Likewise.
9523 * elf/dl-error.c: Likewise.
9524 * elf/dl-fini.c: Likewise.
9525 * elf/dl-init.c: Likewise.
9526 * elf/dl-iteratephdr.c: Likewise.
9527 * elf/dl-libc.c: Likewise.
9528 * elf/dl-load.c: Likewise.
9529 * elf/dl-lookup.c: Likewise.
9530 * elf/dl-minimal.c: Likewise.
9531 * elf/dl-object.c: Likewise.
9532 * elf/dl-open.c: Likewise.
9533 * elf/dl-profile.c: Likewise.
9534 * elf/dl-profstub.c: Likewise.
9535 * elf/dl-reloc.c: Likewise.
9536 * elf/dl-runtime.c: Likewise.
9537 * elf/dl-support.c: Likewise.
9538 * elf/dl-sym.c: Likewise.
9539 * elf/dl-version.c: Likewise.
9540 * elf/do-lookup.h: Likewise.
9541 * elf/do-rel.h: Likewise.
9542 * elf/dynamic-link.h: Likewise.
9543 * elf/rtld.c: Likewise.
9544 * sysdeps/generic/dl-cache.c: Likewise.
9545 * sysdeps/generic/dl-sysdep.c: Likewise.
9546 * sysdeps/generic/ldsodefs.h: Likewise.
9547 * sysdeps/generic/libc-start.c: Likewise.
9548 * sysdeps/i386/dl-machine.h: Likewise.
9549 * sysdeps/ia64/dl-fptr.c: Likewise.
9550 * sysdeps/ia64/dl-machine.h: Likewise.
9551 * sysdeps/unix/sysv/linux/dl-librecon.h: Likewise.
9552 * sysdeps/unix/sysv/linux/dl-origin.c: Likewise.
9553 * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
9554 * sysdeps/unix/sysv/linux/getclktck.c: Likewise.
9555 * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
9556 * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
9557 * sysdeps/unix/sysv/linux/ia64/dl-static.c: Likewise.
9558 * sysdeps/unix/sysv/linux/ia64/getpagesize.c: Likewise.
9559
9560 2002-01-29 Ulrich Drepper <drepper@redhat.com>
9561
9562 * sysdeps/ia64/dl-lookupcfg.h (DL_AUTO_FUNCTION_ADDRESS): Add cast
9563 to avoid warning
9564 (DL_STATIC_FUNCTION_ADDRESS): Likewise.
9565
9566 * elf/dl-lookup.c: Only define or handle _dl_num_relocations for the
9567 SHARED version.
9568 * elf/dl-reloc.c: Likewise for _dl_num_cache_relocations.
9569
9570 * elf/rtld.c (_dl_start): Use __builtin_memset if available.
9571
9572 2002-01-29 Ben Collins <bcollins@debian.org>
9573
9574 * string/bits/string2.h (__mempcpy): Protect size arg for
9575 addition when using __builtin_memcpy.
9576
9577 2002-01-29 Ulrich Drepper <drepper@redhat.com>
9578
9579 * stdlib/Makefile (tests): Add tst-qsort.
9580 * stdlib/tst-qsort.c: New file. Written by Paul Eggert.
9581
9582 * manual/signal.texi (Process Signal Mask): Document that
9583 pthread_sigmask, not sigprocmask, must be used in MT programs.
9584 Patch by Bertold Kolics <Bertold.Kolics@Sun.COM>.
9585
9586 * misc/hsearch_r.c (hsearch_r): Don't insert anything if entry is
9587 found.
9588 * misc/Makefile (tests): Add tst-hsearch.
9589 * misc/tst-hsearch.c: New file.
9590
9591 2002-01-18 Wolfram Gloger <wg@malloc.de>
9592
9593 * malloc/malloc.c: Rewrite, adapted from Doug Lea's malloc-2.7.0.c.
9594 * malloc/malloc.h: Likewise.
9595 * malloc/thread-m.h: Spinlock definitions for x86/x86_64.
9596 * malloc/arena.c: New file.
9597 * malloc/hooks.c: New file.
9598 * malloc/tst-mallocstate.c: New file.
9599 * malloc/Makefile: Add new testcase tst-mallocstate.
9600 Add arena.c and hooks.c to distribute. Fix commented CPPFLAGS.
9601
9602 2002-01-28 Ulrich Drepper <drepper@redhat.com>
9603
9604 * stdlib/msort.c: Remove last patch. The optimization violates the
9605 same rule which qsort.c had problems with.
9606
9607 2002-01-27 Paul Eggert <eggert@twinsun.com>
9608
9609 * stdlib/qsort.c (_quicksort): Do not apply the comparison function
9610 to a pivot element that lies outside the array to be sorted, as
9611 ISO C99 requires that the comparison function be called only with
9612 addresses of array elements [PR libc/2880].
9613
9614 2002-01-28 Ulrich Drepper <drepper@redhat.com>
9615
9616 * elf/dl-load.c (_dl_map_object): Remove incorrect optimization
9617 for SHARED code. Reported by Ben Collins <bcollins@debian.org>.
9618
9619 * timezone/asia: Update from tzdata2002b.
9620 * timezone/australasia: Likewise.
9621 * timezone/backward: Likewise.
9622 * timezone/europe: Likewise.
9623 * timezone/leapseconds: Likewise.
9624 * timezone/iso3166.tab: Likewise.
9625 * timezone/zone.tab: Likewise.
9626
9627 2002-01-23 Richard Henderson <rth@redhat.com>
9628
9629 * sysdeps/alpha/Makefile (pic-ccflag): New variable.
9630
9631 2002-01-28 Ulrich Drepper <drepper@redhat.com>
9632
9633 * string/strxfrm.c: Allocate one more byte for rulearr and clear
9634 this element [PR libc/2855].
9635
9636 * string/strcoll.c: Handle zero-length arguments specially
9637 [PR libc/2856].
9638
9639 2002-01-23 Jakub Jelinek <jakub@redhat.com>
9640
9641 * string/bits/string2.h (__mempcpy): For gcc 3.0+, don't use
9642 __mempcpy_small but instead use __builtin_memcpy ( , , n) + n for
9643 short lengths and constant src.
9644 (strcpy): Don't optimize for gcc 3.0+.
9645 (__stpcpy): For gcc 3.0+, don't use
9646 __stpcpy_small but instead use __builtin_strcpy (, src) + strlen (src)
9647 for short string literal src.
9648
9649 2002-01-23 Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
9650
9651 * sysdeps/unix/sysv/linux/configure.in (libc_cv_gcc_unwind_find_fde):
9652 Set for arm, too.
9653
9654 2001-01-22 Paul Eggert <eggert@twinsun.com>
9655
9656 * manual/llio.texi (Linked Channels, Cleaning Streams):
9657 Make it clearer that a just-opened input stream might need cleaning.
9658
9659 2002-01-21 H.J. Lu <hjl@gnu.org>
9660
9661 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
9662 Don't use label at end of compound statement.
9663
9664 2002-01-28 Stephen L Moshier <moshier@mediaone.net>
9665
9666 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (__ieee754_lgammal_r):
9667 Remove test for negative integer arg; sin_pi does it correctly.
9668
9669 2002-01-20 Ulrich Drepper <drepper@redhat.com>
9670
9671 * nscd/Makefile (distribute): Filter out xmalloc.c.
9672
9673 2002-01-19 Ulrich Drepper <drepper@redhat.com>
9674
9675 * libio/fileops.c (_IO_file_underflow_mmap): Don't define as static.
9676 Set offset if read end wasn't the buffer end.
9677 (_IO_file_seekoff_mmap): New function.
9678 (_IO_file_xsgetn_mmap): New function.
9679 (_IO_file_jumps_mmap): Use the two new functions.
9680 * libio/wfileops.c (_IO_wfile_underflow_mmap): Handle end read buffer
9681 != end buffer.
9682 * libio/libioP.h: Declare _IO_file_seekoff_mmap and
9683 _IO_file_underflow_mmap.
9684 * libio/iofopen.c: Don't position file descriptor at end of file.
9685 * libio/tst-widetext.c: Improve error messages.
9686 * stdio-common/tst-rndseek.c: Likewise.
9687
9688 2002-01-18 Ulrich Drepper <drepper@redhat.com>
9689
9690 * sysdeps/unix/sysv/linux/bits/statvfs.h: Avoid warning about comma at
9691 end of enum for !_GNU_SOURCE.
9692 * sysdeps/unix/sysv/linux/alpha/bits/statvfs.h: Likewise.
9693 * sysdeps/unix/sysv/linux/ia64/bits/statvfs.h: Likewise.
9694 * sysdeps/unix/sysv/linux/sparc/bits/statvfs.h: Likewise.
9695 * sysdeps/mach/hurd/bits/statvfs.h: Don't define non-standard ST_*
9696 values unless _GNU_SOURCE.
9697
9698 * iconvdata/tcvn5712-1.c: Minor cleanups.
9699
9700 2002-01-18 Andreas Schwab <schwab@suse.de>
9701
9702 * sysdeps/unix/sysv/linux/configure.in
9703 (libc_cv_gcc_unwind_find_fde): Set for m68k, too.
9704
9705 2002-01-16 Roger Sayle <roger@eyesopen.com>
9706
9707 * stdlib/msort.c (msort_with_tmp): Replace implementation with
9708 more efficient "Towers of Hanoi" mergesort.
9709 (hanoi_sort, hanoi_sort_int, hanoi_sort_long): New functions,
9710 for generic, sizeof(int) and sizeof(long) variants respectively.
9711
9712 2002-01-17 Ulrich Drepper <drepper@redhat.com>
9713
9714 * manual/syslog.texi (openlog): Describe possible problems with
9715 first parameter.
9716 Patch by Christopher Allen Wing <wingc@engin.umich.edu>.
9717
9718 * nscd/nscd.c (drop_privileges): Removed. Adjust caller.
9719 * nscd/connections.c (begin_drop_privileges): New function.
9720 (finish_drop_privileges): New function.
9721 (nscd_init): Call the new functions which also install all groups
9722 for the server user.
9723 * nscd/Makefile (nscd-modules): Add xmalloc for nscd.
9724 Patch by Christopher Allen Wing <wingc@engin.umich.edu>.
9725
9726 2002-01-17 H.J. Lu <hjl@gnu.org>
9727
9728 * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Remove
9729 `const' from `got'.
9730
9731 2002-01-17 Martin Schwidefsky <schwidefsky@de.ibm.com>
9732
9733 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Use 64 bit
9734 instructions for pointer operations.
9735 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
9736
9737 2002-01-17 Andreas Jaeger <aj@suse.de>
9738
9739 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: GCC 3.1 has
9740 __uint128_t build-in.
9741
9742 * sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and
9743 PowerPC, sync with 2.2 branch.
9744
9745 2002-01-16 Ulrich Drepper <drepper@redhat.com>
9746
9747 * posix/getconf.c: Update copyright year.
9748 * nss/getent.c: Likewise.
9749 * nscd/nscd_nischeck.c: Likewise.
9750 * iconv/iconvconfig.c: Likewise.
9751 * iconv/iconv_prog.c: Likewise.
9752 * elf/ldconfig.c: Likewise.
9753 * catgets/gencat.c: Likewise.
9754 * csu/version.c: Likewise.
9755 * elf/ldd.bash.in: Likewise.
9756 * elf/sprof.c (print_version): Likewise.
9757 * locale/programs/locale.c: Likewise.
9758 * locale/programs/localedef.c: Likewise.
9759 * nscd/nscd.c (print_version): Likewise.
9760 * debug/xtrace.sh: Likewise.
9761 * malloc/memusage.sh: Likewise.
9762 * malloc/mtrace.pl: Likewise.
9763
9764 2002-01-16 Andreas Schwab <schwab@suse.de>
9765
9766 * sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed: Fix regexp to
9767 reliably remove "-ia64" from rtld name.
9768
9769 2002-01-16 Ulrich Drepper <drepper@redhat.com>
9770
9771 * iconvdata/gb18030.c: Bug fixes and support for more characters.
9772 Patch by Yu Shao <yshao@redhat.com>.
9773
9774 2002-01-16 Martin Schwidefsky <schwidefsky@de.ibm.com>
9775
9776 * sysdeps/unix/sysv/linux/s390/swapcontext.c: Remove.
9777 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: New file.
9778 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: New file.
9779
9780 2002-01-14 Martin Schwidefsky <schwidefsky@de.ibm.com>
9781
9782 * sysdeps/s390/fpu/libm-test-ulps: Update.
9783
9784 2002-01-11 Ulrich Drepper <drepper@redhat.com>
9785
9786 * elf/elf.h: Update x86 relocations.
9787
9788 2002-01-10 Ulrich Drepper <drepper@redhat.com>
9789
9790 * locale/programs/charmap.c (new_width): Check whether byte
9791 sequences for both ends of range have the same length.
9792
9793 2002-01-09 Jakub Jelinek <jakub@redhat.com>
9794
9795 * elf/elf.h (SHN_UNDEF): Remove duplicate definition.
9796
9797 2002-01-09 Jakub Jelinek <jakub@redhat.com>
9798
9799 * sysdeps/alpha/fpu/e_sqrt.c (__ieee754_sqrt): Don't use multi-line
9800 string literals.
9801 (__full_ieee754_sqrt): Add __attribute_used__.
9802
9803 2002-01-10 Ulrich Drepper <drepper@redhat.com>
9804
9805 * sysdeps/generic/group_member.c (__group_member): Also check
9806 groups[0] [PR libc/2781].
9807
9808 2002-01-08 Ulrich Drepper <drepper@redhat.com>
9809
9810 * Makefile (distribute): Add scripts/cpp.
9811 * elf/Makefile (distribute): Add reldep6mod[01234].c,
9812 unwind-dw2.c, unwind-dw2-fde.c, unwind.h, unwind-pe.h,
9813 unwind-dw2-fde.h, and dwarf2.h.
9814 * sysdeps/unix/bsd/bsd4.4/Dist: New file.
9815 * sysdeps/unix/sysv/aix/Dist: Add sysv_termio.h and start-libc.c.
9816 * sysdeps/unix/sysv/linux/ia64/Dist: Add ldd-rewrite.sed.
9817 * sysdeps/unix/sysv/linux/s390/Dist: Likewise.
9818
9819 2002-01-07 Roland McGrath <roland@frob.com>
9820
9821 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Use
9822 volatile on type of ARGC so the compiler doesn't get clever.
9823
9824 2002-01-07 Andreas Jaeger <aj@suse.de>
9825
9826 * sysdeps/generic/bits/byteswap.h: Prevent double inclusion.
9827 * sysdeps/i386/bits/byteswap.h: Likewise.
9828 * sysdeps/ia64/bits/byteswap.h: Likewise.
9829 * sysdeps/m68k/bits/byteswap.h: Likewise.
9830 * sysdeps/s390/s390-32/bits/byteswap.h: Likewise.
9831 * sysdeps/s390/s390-64/bits/byteswap.h: Likewise [PR libc/2757].
9832
9833 2002-01-02 Bruno Haible <bruno@clisp.org>
9834
9835 * intl/plural.y: Fix %expect count.
9836
9837 2002-01-03 Jakub Jelinek <jakub@redhat.com>
9838
9839 * elf/Makefile (routines, shared-only-routines): Add
9840 unwind-dw2-fde-glibc instead of unwind-dw2-fde.
9841 * elf/elf.h (PT_GNU_EH_FRAME): Define.
9842 * sysdeps/generic/unwind-dw2-fde-glibc.c: New file.
9843 * sysdeps/generic/unwind-dw2-fde.c (__register_frame_info_bases):
9844 Optimize if .eh_frame section contains no FDEs.
9845 (__register_frame, __deregister_frame_info_bases,
9846 __deregister_frame): Likewise.
9847 * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Fix
9848 DW_CFA_restore handling.
9849
9850 2002-01-07 Stephen L Moshier <moshier@mediaone.net>
9851
9852 * sysdeps/ieee754/ldbl-96/s_erfl.c (erfcl): Fix K&R header.
9853
9854 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Fix typo in test
9855 for x < 0.25 and restore original range reduction method.
9856 (__ieee754_lgammal_r): Make sure signgam is set before returning.
9857
9858 2002-01-07 Ulrich Drepper <drepper@redhat.com>
9859
9860 * libio/fileops.c (_IO_file_underflow_mmap): New function.
9861 (_IO_file_close_mmap): New function.
9862 (_IO_file_jumps_mmap): New variable.
9863 * libio/wfileops.c (_IO_wfile_underflow): Reset read pointer before
9864 trying to convert rest of byte buffer.
9865 (_IO_wfile_underflow_mmap): New function.
9866 (_IO_wfile_jumps_mmap): New variable.
9867 * libio/iofopen.c (__fopen_maybe_mmap): New function.
9868 (__fopen_internal): New function. Split out from _IO_new_fopen.
9869 (_IO_new_fopen): Call __fopen_internal.
9870 * libio/iofopen64.c: Just call __fopen_internal.
9871 * libio/iofdopen.c: Call __fopen_maybe_mmap before returning
9872 successfully.
9873 * libio/iolibio.h: Declare __fopen_internal and __fopen_maybe_mmap.
9874 * libio/libioP.h: Declare _IO_file_jumps_mmap, _IO_wfile_jumps_mmap,
9875 _IO_file_close_mmap.
9876
9877 * sysdeps/gnu/_G_config.h: Define _G_MMAP64.
9878 * sysdeps/unix/sysv/linux/cris/_G_config.h: Likewise.
9879
9880 * stdio-common/Makefile (tests): Add tst-rndseek.
9881 * stdio-common/tst-rndseek.c: New file.
9882
9883 2002-01-05 Roland McGrath <roland@frob.com>
9884
9885 * config.h.in (HAVE_MIG_RETCODE): New #undef.
9886 * sysdeps/mach/hurd/configure.in (hurd_MIG_RETCODE: New macro
9887 swiped from hurd package's aclocal.m4; use it to set HAVE_MIG_RETCODE.
9888 * sysdeps/mach/hurd/configure: Regenerated.
9889
9890 2002-01-03 Ulrich Drepper <drepper@redhat.com>
9891
9892 * elf/elf.h: Add more TLS definitions.
9893
9894 2002-01-02 Ulrich Drepper <drepper@redhat.com>
9895
9896 * include/features.h (__GLIBC_MINOR__): Bump to 3.
9897
9898 2002-01-02 Roland McGrath <roland@frob.com>
9899
9900 * sysdeps/mach/hurd/sigwait.c (__sigwait): Use __sigandset,
9901 __sigisemptyset. Don't use MASK uninitialized.
9902
9903 * sysdeps/mach/hurd/sigprocmask.c (__sigprocmask): Use __sigorset.
9904 * hurd/hurdinit.c (_hurd_new_proc_init): Use __sigisemptyset.
9905 * hurd/hurdsig.c (_hurd_internal_post_signal): Use __sigismember,
9906 __sigdelset, __sigaddset, __sigorset.
9907
9908 * sysdeps/generic/htonl.c: Use uint32_t instead of u_int32_t.
9909 * sysdeps/generic/htons.c: Use uint16_t instead of u_int16_t.
9910
9911 * hurd/hurdinit.c (_hurd_ports_use): Return EGRATUITOUS when
9912 _hurd_ports is null.
9913
9914 * hurd/hurdsig.c (_hurdsig_init): Conditionalize exception port setup
9915 for old CMU and new OSF Mach interface flavors.
9916 * hurd/hurdfault.c (_hurdsig_fault_init): Likewise.
9917 * sysdeps/mach/hurd/fork.c (__fork): Likewise.
9918
9919 * hurd/hurdsig.c (_hurd_internal_post_signal): Leave msgh_seqno unset.
9920
9921 * sysdeps/mach/hurd/spawni.c (__spawni) [KERN_INVALID_LEDGER]:
9922 Pass extra arguments to task_create for OSF variant.
9923 * sysdeps/mach/hurd/fork.c (__fork): Likewise.
9924
9925 * sysdeps/powerpc/elf/libc-start.c: Make AUXVEC diddling code
9926 conditional on [HAVE_AUX_VECTOR].
9927
9928 * mach/mach/mach_traps.h (thread_switch, __thread_switch): Use
9929 mach_msg_timeout_t as type of final argument.
9930
9931 * hurd/privports.c (__get_privileged_ports):
9932 Change host_priv_t to mach_port_t in argument type.
9933 * hurd/hurd.h (get_privileged_ports, __get_privileged_ports):
9934 Update decls.
9935
9936 * sysdeps/mach/hurd/i386/bits/sigcontext.h: Protect from
9937 multiple inclusion. Inhibit #error under [_SYS_UCONTEXT_H].
9938 * sysdeps/mach/hurd/alpha/bits/sigcontext.h: Likewise.
9939 * sysdeps/mach/hurd/hppa/bits/sigcontext.h: Likewise.
9940 * sysdeps/mach/hurd/mips/bits/sigcontext.h: Likewise.
9941 * sysdeps/mach/hurd/powerpc/bits/sigcontext.h: Likewise.
9942
9943 2002-01-01 Roland McGrath <roland@frob.com>
9944
9945 * sysdeps/mach/hurd/errnos.awk: Tighten up device_types.h matching.
9946
9947 2002-01-01 Ulrich Drepper <drepper@redhat.com>
9948
9949 * include/stdlib.h: Define inlines for the _l variants of the strto*
9950 functions.
9951
9952 2002-01-01 Roland McGrath <roland@frob.com>
9953
9954 * sysdeps/mach/hurd/powerpc/intr-msg.h: Remove extraneous backslash.
9955
9956 * mach/Machrules (MIG): Set CPP as well as CC.
9957
9958 2001-12-31 Ulrich Drepper <drepper@redhat.com>
9959
9960 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Always use C
9961 locale to parse /proc/loadavg [PR libc/2760].
9962
9963 2001-12-31 Jakub Jelinek <jakub@redhat.com>
9964
9965 * elf/dl-conflict.c: Include sys/param.h.
9966 (RESOLVE_CONFLICT_FIND_MAP): Cast r_offset to ElfW(Addr).
9967 * sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Avoid
9968 warning.
9969 (TRAMPOLINE_TEMPLATE, RTLD_START): Don't use multi-line string
9970 literals to avoid warnings.
9971
9972 2001-12-31 Andreas Jaeger <aj@suse.de>
9973
9974 * configure.in: Don't check for gsed since we do not use it anywhere.
9975
9976 2001-12-25 Dmitry V. Levin <ldv@alt-linux.org>
9977
9978 * io/fts.c: Update from BSD to fix memory leaks.
9979
9980 2001-12-25 Dmitry V. Levin <ldv@alt-linux.org>
9981
9982 * crypt/md5-crypt.c: Realloc error handling memory leak fix.
9983 * elf/chroot_canon.c: Likewise.
9984 * elf/dl-object.c: Likewise.
9985 * iconv/iconv_charmap.c: Likewise.
9986 * iconv/iconv_prog.c: Likewise.
9987 * libio/iogetdelim.c: Likewise.
9988 * locale/lc-time.c: Likewise.
9989 * stdlib/canonicalize.c: Likewise.
9990 * sunrpc/svc.c: Likewise.
9991 * sysdeps/generic/glob.c: Likewise.
9992
9993 2001-12-19 Martin Schwidefsky <schwidefsky@de.ibm.com>
9994
9995 * sysdeps/unix/sysv/linux/s390/profil-counter.h: Move/copy to ...
9996 * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h: ... here,
9997 remove high order bit from the program counter.
9998 * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h: ... and here.
9999
10000 2001-12-19 Martin Schwidefsky <schwidefsky@de.ibm.com>
10001
10002 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Remove
10003 unnecessary code and add missing reloc types.
10004 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Add empty
10005 case for reloc type R_390_NONE.
10006
10007 2001-12-28 Andreas Jaeger <aj@suse.de>
10008
10009 * io/bug-ftw3.c: Include string.h for prototypes.
10010
10011 * crypt/md5test.c (main): Remove unused variable.
10012
10013 * dlfcn/modstatic.c: Add prototype to avoid warning.
10014
10015 2001-12-26 Roland McGrath <roland@frob.com>
10016
10017 * sysdeps/mach/hurd/sigwait.c (__sigwait): When returning immediately,
10018 check only (SS->pending & MASK) for the signal to return.
10019 From Jeroen Dekkers <jeroen@dekkers.cx>.
10020
10021 2001-12-22 Roland McGrath <roland@frob.com>
10022
10023 * iconv/skeleton.c [!RESET_INPUT_BUFFER && !SAVE_RESET_STATE]:
10024 Use preprocessor #if conditionals instead of `if' to avoid
10025 warnings about divide by zero in dead code.
10026
10027 * hurd/Versions (libc: GLIBC_2.2.5): Add _hurd_port_set,
10028 _hurd_port_init, and __hurd_self_sigstate.
10029
10030 * mach/Versions (libc: GLIBC_2.2.5): Add mig_strncpy.
10031
10032 2001-12-21 Andreas Jaeger <aj@suse.de>
10033
10034 * elf/dblloadmod1.c: Add prototype to avoid warning.
10035 * elf/dblloadmod2.c: Likewise.
10036 * elf/dblloadmod3.c: Likewise.
10037 * elf/reldepmod5.c: Likewise.
10038 * elf/reldepmod6.c: Likewise.
10039
10040 * elf/dl-conflict.c (_dl_resolve_conflicts): Add unused attribute
10041 for resolve_conflict_map since RESOLVE_CONFLICT_FIND_MAP is not
10042 used on all architectures.
10043
10044 * sunrpc/svc_tcp.c: Add noreturn attribute for
10045 svctcp_rendezvous_abort.
10046 * sunrpc/svc_unix.c: Likewise for svcunix_rendezvous_abort.
10047
10048 * sysdeps/generic/strstr.c (strstr): Add paranthese for assignment
10049 to avoid warning.
10050
10051 2001-12-19 Jakub Jelinek <jakub@redhat.com>
10052
10053 * manual/llio.texi (aio_fsync): Fix a typo.
10054 Patch by Tammy Fox <tfox@redhat.com>.
10055
10056 2001-12-18 Jakub Jelinek <jakub@redhat.com>
10057
10058 * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (clone): Subtract
10059 stack bias from child stack pointer before passing it to clone syscall.
10060
10061 2001-12-18 Ulrich Drepper <drepper@redhat.com>
10062
10063 * sysdeps/posix/sysconf.c (__sysconf): Respect POSIX minimum for
10064 _SC_TZNAME_MAX.
10065 * sysdeps/generic/sysconf.c (__sysconf): Likewise.
10066 Reported by Thorsten Kukuk <kukuk@suse.de>.
10067
10068 * sysdeps/unix/grantpt.c (grantpt): Correct typo in comment and
10069 add some casts.
10070
10071 * sysdeps/unix/sysv/linux/grantpt.c: Make __unix_grantpt static.
10072
10073 2001-12-18 Thorsten Kukuk <kukuk@suse.de>
10074
10075 * sysdeps/unix/sysv/linux/grantpt.c: Make errno results standard
10076 conforming: return EBADF if file descriptor is invalid and EINVAL
10077 if file descriptor is no valid tty.
10078 * login/tst-grantpt.c: New file.
10079 * login/Makefile (tests): Add tst-grantpt.
10080
10081 2001-12-17 Ulrich Drepper <drepper@redhat.com>
10082
10083 * io/ftw.c (ftw_dir): Handle inaccessibility of toplevel dir
10084 different than implemented in last patch.
10085 * io/bug-ftw3.c: Adjust test for changed handling of
10086 inaccessibility of toplevel dir.
10087
10088 2001-12-16 Roland McGrath <roland@frob.com>
10089
10090 * nss/nsswitch.c (__nss_next): Don't use __FUNCTION__ as literal.
10091 * grp/initgroups.c (internal_getgrouplist): Likewise.
10092
10093 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Add `break' after
10094 `default:' to silence new GCC warning.
10095 Rewrite cast of lvalue to silence new GCC warning.
10096
10097 * sysdeps/mach/hurd/i386/init-first.c: Avoid multi-line strings in asm.
10098
10099 * sysdeps/mach/hurd/spawni.c: New file, by me with a
10100 couple fixes by Neal H Walfield <neal@cs.uml.edu>.
10101
10102 2001-12-14 Ulrich Drepper <drepper@redhat.com>
10103
10104 * sysdeps/generic/strstr.c (strstr): Update. New optimized version.
10105 Patch by Stephen R. van den Berg.
10106
10107 * crypt/md5.h: Define md5_uintptr.
10108
10109 2001-12-13 Ulrich Drepper <drepper@redhat.com>
10110
10111 * libio/tst_swprintf.c (main): Add test for string argument with
10112 zero precision.
10113 * stdio-common/Makefile (tests): Add tst-sprintf.
10114 * stdio-common/tst-sprintf.c: New file.
10115
10116 2001-12-13 Andreas Schwab <schwab@suse.de>
10117
10118 * stdio-common/vfprintf.c (process_string_arg): Correctly handle
10119 zero precision with wide character string format.
10120
10121 2001-12-13 Thorsten Kukuk <kukuk@suse.de>
10122
10123 * sysdeps/posix/cuserid.c (cuserid): If we don't find the UID,
10124 but have a user supplied buffer, return the empty buffer, not NULL.
10125
10126 2001-12-13 Ulrich Drepper <drepper@redhat.com>
10127
10128 * crypt/md5.c (md5_process_bytes): Correct handling of alignment.
10129 Patch by Eric Sharkey <sharkey@netrics.com>.
10130
10131 * crypt/md5test.c (main): Add test for multiple calls to
10132 __md5_process_bytes to itererate over input string.
10133
10134 2001-12-12 Ulrich Drepper <drepper@redhat.com>
10135
10136 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Mostly the code
10137 from __nis_findfastest. Take timeout value from parameter.
10138 (__nis_findfastest): Call __nis_findfastest_with_timeout repeatedly.
10139 * nis/nis_intern.h: Define parameters controlling __nis_findfastest
10140 [PR libc/2520]. Patch by Alexander Belopolsky <alexb@rentec.com>.
10141
10142 2001-12-12 Andreas Jaeger <aj@suse.de>
10143
10144 * configure.in: Use -nostartfiles -nostdlib for linker tests, fix
10145 combreloc test so that it works in this case.
10146
10147 * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix typo in last patch.
10148
10149 2001-12-12 NIIBE Yutaka <gniibe@m17n.org>
10150
10151 * sysdeps/sh/Makefile: New file.
10152 * sysdeps/sh/_mcount.S: New file.
10153 * sysdeps/sh/sysdep.h (CALL_MCOUNT): Implemented.
10154 * sysdeps/sh/machine-gmon.h: Remove "NOTYET" comment, as we are ready.
10155
10156 2001-12-11 Ulrich Drepper <drepper@redhat.com>
10157
10158 * resolv/nss_dns/dns-host.c (getanswer_r): Remove MAX_NR_ADDRS
10159 limitation [PR libc/2564].
10160
10161 2001-12-11 Jakub Jelinek <jakub@redhat.com>
10162
10163 * elf/Makefile (dl-routines): Add conflict.
10164 (rtld-ldscript-in, rtld-ldscript, rtld-parms): Remove.
10165 (ld.so): Add _begin local symbol.
10166 * elf/elf.h (DT_VALTAGIDX, DT_VALNUM, DT_ADDRTAGIDX, DT_ADDRNUM):
10167 Define.
10168 * elf/dl-deps.c (_dl_build_local_scope): New function.
10169 (_dl_map_object_deps): If LD_TRACE_PRELINKING, compute local scopes
10170 of all libraries.
10171 * elf/do-rel.h (VALIDX): Define.
10172 (elf_dynamic_do_rel): If ELF_MACHINE_PLT_REL is defined, don't do
10173 lazy binding for RELA. If DT_GNU_PRELINKED, DT_RELACOUNT relocations
10174 can be skipped.
10175 * elf/dl-conflict.c: New file.
10176 * elf/dl-lookup.c (_dl_debug_bindings): New function.
10177 (_dl_lookup_symbol): Use _dl_debug_bindings. Reference_name is always
10178 non-NULL.
10179 (_dl_lookup_symbol_skip): Likewise.
10180 (_dl_lookup_versioned_symbol): Likewise.
10181 (_dl_lookup_versioned_symbol_skip): Likewise.
10182 * elf/dl-runtime.c (PLTREL): If ELF_MACHINE_PLT_REL is defined,
10183 define to ElfW(Rel).
10184 * elf/dynamic-link.h (elf_get_dynamic_info): Record selected dynamic
10185 tags in the DT_VALRNGLO..DT_VALRNGHI and DT_ADDRRNGLO..DT_ADDRRNGHI
10186 ranges.
10187 Don't adjust address dynamic tags if l_addr is 0.
10188 * elf/rtld.c (_dl_trace_prelink, _dl_trace_prelink_map): New variables.
10189 (_dl_start): Skip ELF_DYNAMIC_RELOCATE if ld.so is prelinked.
10190 (VALIDX, ADDRIDX): Define.
10191 (_dl_start_final): Initialize _dl_rtld_map's l_map_start and l_map_end.
10192 (dl_main): Print library list for LD_TRACE_PRELINKING.
10193 If prelinking information can be used, skip relocating libraries and
10194 call _dl_resolve_conflicts instead.
10195 (process_envvars): Handle LD_TRACE_PRELINKING envvar.
10196 * elf/dl-load.c (_dl_map_object): Don't create fake libs
10197 if LD_TRACE_PRELINKING.
10198 * include/link.h (struct link_map) [l_info]: Add DT_VALNUM
10199 + DT_ADDRNUM.
10200 * sysdeps/generic/ldsodefs.h (_dl_trace_prelink_map): New declaration.
10201 (DL_DEBUG_PRELINK): Define.
10202 (_dl_resolve_conflicts): Add prototype.
10203
10204 * sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Reinitialize
10205 .plt for prelinked libraries where prelinking info cannot be used.
10206 (elf_machine_rela): If relocating R_ALPHA_JMP_SLOT in .gnu.conflict
10207 section, use RESOLVE_CONFLICT_FIND_MAP to find out reloc's link_map.
10208 * sysdeps/arm/bits/link.h: New file.
10209 * sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): Save original
10210 content of .got[1].
10211 (ELF_MACHINE_NO_RELA): Only define if RTLD_BOOTSTRAP.
10212 (ELF_MACHINE_PLT_REL): Define.
10213 (elf_machine_rela, elf_machine_rela_relative): New functions.
10214 (elf_machine_lazy_rel): Reinitialize R_ARM_JUMP_SLOT address instead
10215 of adjusting it if prelinked and prelinking cannot be used.
10216 * sysdeps/i386/bits/link.h: New file.
10217 * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Save original
10218 content of .got[1].
10219 (ELF_MACHINE_NO_RELA): Only define if RTLD_BOOTSTRAP.
10220 (ELF_MACHINE_PLT_REL): Define.
10221 (elf_machine_rela, elf_machine_rela_relative): New functions.
10222 (elf_machine_lazy_rel): Reinitialize R_386_JUMP_SLOT address instead
10223 of adjusting it if prelinked and prelinking cannot be used.
10224 * sysdeps/powerpc/dl-machine.h (elf_machine_rela): If relocating
10225 conflicts, skip finaladdr computation. Use RESOLVE_CONFLICT_FIND_MAP
10226 to find out map for R_PPC_JMP_SLOT relocs.
10227 * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Define.
10228 (OPCODE_BA): Define.
10229 (elf_machine_runtime_setup): Reinitialize .plt for prelinked
10230 libraries where prelinking info cannot be used.
10231 (sparc_fixup_plt): Renamed from elf_machine_fixup_plt.
10232 (elf_machine_fixup_plt): Call sparc_fixup_plt.
10233 (elf_machine_rela): Set value to 0 if relocating conflicts.
10234 Call sparc_fixup_plt for R_SPARC_JMP_SLOT.
10235 * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Define.
10236 (sparc64_fixup_plt): Fix a typo.
10237 (elf_machine_rela): Set value to 0 if relocating conflicts.
10238 Handle R_SPARC_JMP_SLOT relocs when relocating conflicts.
10239 (elf_machine_runtime_setup): Reinitialize .plt for prelinked
10240 libraries where prelinking info cannot be used.
10241 * sysdeps/sh/bits/link.h: New file.
10242 * sysdeps/sh/dl-machine.h (elf_machine_runtime_setup): Save original
10243 content of .got[1].
10244 (elf_machine_lazy_rel): Reinitialize R_SH_JMP_SLOT address instead
10245 of adjusting it if prelinked and prelinking cannot be used.
10246 * sysdeps/s390/s390-32/bits/link.h: New file.
10247 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup):
10248 Save original content of .got[1].
10249 (elf_machine_lazy_rel): Reinitialize R_390_JMP_SLOT address instead
10250 of adjusting it if prelinked and prelinking cannot be used.
10251 * sysdeps/s390/s390-64/bits/link.h: New file.
10252 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup):
10253 Save original content of .got[1].
10254 (elf_machine_lazy_rel): Reinitialize R_390_JMP_SLOT address instead
10255 of adjusting it if prelinked and prelinking cannot be used.
10256 * sysdeps/x86_64/bits/link.h: New file.
10257 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup):
10258 Save original content of .got[1].
10259 (elf_machine_lazy_rel): Reinitialize R_X86_64_JMP_SLOT address instead
10260 of adjusting it if prelinked and prelinking cannot be used.
10261
10262 2001-12-11 Ulrich Drepper <drepper@redhat.com>
10263
10264 * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_r): Use sizeof
10265 where appropriate instead of numbers. Little optimizations.
10266
10267 2001-12-10 Roland McGrath <roland@frob.com>
10268
10269 * sysdeps/mach/hurd/bind.c (bind): Don't deallocate IFSOCK if we never
10270 set it.
10271
10272 * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu.*): Set default
10273 set to GLIBC_2.2.5, not GLIBC_2.2.4.
10274
10275 * sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde):
10276 Fix conditionals so this is set by default for stdio and not for libio.
10277 * sysdeps/mach/hurd/configure: Regenerated.
10278
10279 2001-12-10 Thorsten Kukuk <kukuk@suse.de>
10280
10281 * io/ftw.c (ftw_startup): Check, if the path is search and readable.
10282
10283 2001-12-10 Ulrich Drepper <drepper@redhat.com>
10284
10285 * io/Makefile (tests): Add bug-ftw3.
10286 * io/bug-ftw3.c: New file.
10287
10288 * sysdeps/generic/glob.c (glob): Return only pattern if nothing
10289 matches and GLOB_NOCHECK is set.
10290 * posix/globtest.sh: Correct expected result for NOCHECK test.
10291
10292 * po/ca.po: Update from translation team.
10293
10294 2001-12-09 Ulrich Drepper <drepper@redhat.com>
10295
10296 Implement transliteration of characters in strings of the locale
10297 definitions.
10298 * locale/programs/linereader.c: Adjust for additional parameter to
10299 lr_token.
10300 (get_string): If character <Uxxxx> is not found try to transliterate
10301 it.
10302 * locale/programs/ld-ctype.c: Adjust for additional parameter to
10303 lr_token. Add const to charmap parameter of all functions.
10304 (find_translit, find_translit2): New functions.
10305 * locale/programs/charmap.c: Adjust for additional parameter to
10306 lr_token.
10307 * locale/programs/repertoire.c: Likewise.
10308 * locale/programs/linereader.h: Likewise.
10309 * locale/programs/ld-address.c: Likewise. Add const to charmap
10310 parameter of all functions.
10311 * locale/programs/ld-collate.c: Likewise.
10312 * locale/programs/ld-identification.c: Likewise.
10313 * locale/programs/ld-measurement.c: Likewise.
10314 * locale/programs/ld-messages.c: Likewise.
10315 * locale/programs/ld-monetary.c: Likewise.
10316 * locale/programs/ld-name.c: Likewise.
10317 * locale/programs/ld-numeric.c: Likewise.
10318 * locale/programs/ld-paper.c: Likewise.
10319 * locale/programs/ld-paper.c: Likewise.
10320 * locale/programs/ld-telephone.c: Likewise.
10321 * locale/programs/ld-time.c: Likewise.
10322 * locale/programs/locfile.c: Likewise.
10323 * locale/programs/localedef.c: Likewise.
10324 * locale/programs/localedef.h: Likewise.
10325 * locale/programs/locfile.h: Likewise. Add declaration for
10326 find_translit.
10327 * locale/programs/simple-hash.c: Add const to first parameter of
10328 find_entry, iterate_table, and lookup.
10329 * locale/programs/simple-hash.h: Likewise.
10330 * locale/localeinfo.h: Don't define __LC_LAST here. Include <locale.h>
10331 instead.
10332 * include/locale.h: Define __LC_LAST.
10333 * iconv/Makefile (CFLAGS-linereader.c): Define to -DNO_TRANSLITERATION.
10334
10335 2001-12-07 Geoff Keating <geoffk@redhat.com>
10336
10337 * sysdeps/powerpc/Dist: Update for recent FP changes.
10338 * sysdeps/powerpc/fpu/Dist: Likewise.
10339
10340 2001-12-07 Andreas Schwab <schwab@suse.de>
10341
10342 * sysdeps/unix/sysv/linux/opensock.c: Include <string.h>.
10343
10344 2001-12-06 Geoff Keating <geoffk@redhat.com>
10345
10346 * sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr
10347 save/restore functions here.
10348 (libm-support): Don't define these functions here.
10349 * sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore
10350 functions here.
10351 * sysdeps/powerpc/fe_nomask.c: Move to...
10352 * sysdeps/powerpc/fpu/fe_nomask.c: ... here.
10353 * sysdeps/powerpc/fprrest.S: Move to...
10354 * sysdeps/powerpc/fpu/fprrest.S: ... here.
10355 * sysdeps/powerpc/fprsave.S: Move to...
10356 * sysdeps/powerpc/fpu/fprsave.S: ... here.
10357
10358 2001-12-06 Ulrich Drepper <drepper@redhat.com>
10359
10360 * sysdeps/unix/sysv/linux/opensock.c: New file.
10361
10362 2001-12-06 Geoff Keating <geoffk@redhat.com>
10363
10364 * config.make.in (with-fp): Define from configure.
10365 * configure.in: Substitute with_fp.
10366 * configure: Regenerate.
10367 * sysdeps/powerpc/Makefile: Set -msoft-float when --without-fp is
10368 specified, and don't change FPU environment.
10369
10370 2001-12-06 Ulrich Drepper <drepper@redhat.com>
10371
10372 * libio/vasprintf.c (_IO_vasprintf): Free buffer on failure.
10373 * assert/assert.c: Check result of __asprintf call and don't use
10374 string if it failed.
10375 * assert/assert-perr.c: Likewise.
10376 * inet/rcmd.c: Likewise.
10377 * locale/programs/localedef.c (main): Check result of
10378 construct_output_path and exit if it failed.
10379 (construct_output_path): Check result of asprintf and mkdir calls and
10380 fail if they failed.
10381 * posix/getopt.c: Check result of __asprintf calls and fail if
10382 they failed.
10383 Patch by Dmitry V. Levin <ldv@alt-linux.org>.
10384
10385 2001-12-05 Ulrich Drepper <drepper@redhat.com>
10386
10387 * sysdeps/generic/strcasecmp.c (__strcasecmp): Little performance
10388 patch.
10389 * sysdeps/generic/strncase.c: Likewise.
10390 * string/tester.c: Add tests for strcasecmp and strncasecmp.
10391
10392 2001-12-05 Geoff Keating <geoffk@redhat.com>
10393
10394 * scripts/cpp: Test the exit status from 'type', not 'awk'.
10395
10396 * sysdeps/powerpc/__longjmp.S: Don't restore FP registers.
10397 * sysdeps/powerpc/fpu/__longjmp.S: Do restore FP registers.
10398 * sysdeps/powerpc/setjmp.S: Don't save FP registers.
10399 * sysdeps/powerpc/fpu/setjmp.S: Do save FP registers.
10400 * sysdeps/powerpc/fclrexcpt.c: Move to...
10401 * sysdeps/powerpc/fpu/fclrexcpt.c: ... here.
10402 * sysdeps/powerpc/fpu_control.h: Move to...
10403 * sysdeps/powerpc/fpu/fpu_control.h: ... here.
10404
10405 2001-12-05 Ulrich Drepper <drepper@redhat.com>
10406
10407 * iconvdata/ibm1129.h: Remove duplicate mappings.
10408 * iconvdata/ibm937.c: Handle overflow errors. Handle new tables.
10409 * iconvdata/ibm937.h: Reorganize table to safe a lot of space.
10410 Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
10411
10412 * timezone/zic.c: Fix handling of turnaround times.
10413 Patch by Arthur David Olson <olsona@dc37a.nci.nih.gov>.
10414
10415 2001-12-02 Moshe Olshansky <OLSHANSK@il.ibm.com>
10416
10417 * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): Fix
10418 overflow problem.
10419
10420 2001-12-05 Ulrich Drepper <drepper@redhat.com>
10421
10422 * posix/regex.c: For use outside glibc defined bounded pointer
10423 macros here. Patch by Jim Meyering <jim@meyering.net>.
10424
10425 * iconvdata/Makefile (modules): Add TCVN5712-1.
10426 * iconvdata/TESTS: Add TCVN5712-1.
10427 * iconvdata/gconv-modules: Likewise.
10428 * iconvdata/tcvn5712-1.c: New file.
10429 * iconvdata/testdata/TCVN-5712: New file.
10430 * iconvdata/testdata/TCVN-5712..UTF8: New file.
10431
10432 2001-12-04 Ulrich Drepper <drepper@redhat.com>
10433
10434 * iconvdata/cp1258.c: Optimize conversion from UCS4.
10435
10436 2001-12-02 Roland McGrath <roland@frob.com>
10437
10438 * mach/Makefile, mach/Machrules: Move comments out of \ continuations.
10439
10440 * hurd/hurd.h (__hurd_fail): Add `break;' to silence new gcc-3 warning.
10441 Reported by Jeff Bailey <jbailey@nisa.net>.
10442
10443 * hurd/hurd.h (_hurd_umask): Remove volatile qualifier from decl.
10444 Reported by Jeff Bailey <jbailey@nisa.net>.
10445
10446 * mach/Makefile ($(objpfx)mach-syscalls.mk): Pass $(CFLAGS) to $(CC).
10447 * mach/Machrules ($(objpfx)%.udeps static pattern rule): Likewise.
10448 Reported by Jeff Bailey <jbailey@nisa.net>.
10449
10450 2001-12-01 Roland McGrath <roland@frob.com>
10451
10452 * sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde): Add
10453 missing backslash in test arguments.
10454 * sysdeps/mach/hurd/configure: Regenerated.
10455
10456 2001-11-26 Roland McGrath <roland@frob.com>
10457
10458 * hurd/hurdinit.c (_hurd_ports_use): Check if _hurd_ports is null.
10459 Reported by John Tobey <jtobey@john-edwin-tobey.org>.
10460
10461 2001-11-30 Ulrich Drepper <drepper@redhat.com>
10462
10463 * iconvdata/Makefile (modules): Add ARMSCII-8.
10464 * iconvdata/gconv-modules: Add entries for ARMSCII-8.
10465 * iconvdata/armscii-8.c: New file.
10466
10467 2001-11-29 Jakub Jelinek <jakub@redhat.com>
10468
10469 * sysdeps/generic/glob.c (next_brace_sub): Return NULL if braces
10470 don't match, fix {{a,b},c} globbing, clean up.
10471 Patch by Flavio Veloso <flaviovs@magnux.com>.
10472 * posix/globtest.sh: Add new tests.
10473
10474 2001-11-29 Andreas Jaeger <aj@suse.de>
10475
10476 * sysdeps/unix/sysv/linux/x86_64/Versions: Add arch_prctl.
10477 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add arch_prctl call.
10478
10479 * sysdeps/generic/abort.c: Include libioP.h for
10480 _IO_flush_all_lockp prototype.
10481
10482 2001-11-29 Ulrich Drepper <drepper@redhat.com>
10483
10484 * posix/regex.h: Define __restrict_arr correctly.
10485
10486 2001-11-28 Ulrich Drepper <drepper@redhat.com>
10487
10488 * iconvdata/ibm1163.c: New file.
10489 * iconvdata/ibm1163.h: New file.
10490 * iconvdata/ibm1164.c: New file.
10491 * iconvdata/ibm1164.h: New file.
10492 * iconvdata/TESTS: Add entries for IBM1163 and IBM1164.
10493 * iconvdata/Makefile: Likewise.
10494 * iconvdata/testdata/IBM1163: New file.
10495 * iconvdata/testdata/IBM1163..UTF8: New file.
10496 * iconvdata/testdata/IBM1164: New file.
10497 * iconvdata/testdata/IBM1164..UTF8: New file.
10498 Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
10499
10500 * iconvdata/ibm1046.h: Optimize. Remove duplicate mappings.
10501 * iconvdata/ibm1124.h: Likewise.
10502 * iconvdata/ibm1132.h: Likewise.
10503 * iconvdata/ibm1133.h: Likewise.
10504 * iconvdata/ibm1160.h: Likewise.
10505 * iconvdata/ibm1161.h: Likewise.
10506 * iconvdata/ibm1162.h: Likewise.
10507 * iconvdata/ibm856.h: Likewise.
10508 * iconvdata/ibm922.h: Likewise.
10509 * iconvdata/ibm930.h: Likewise.
10510 * iconvdata/ibm932.h: Likewise.
10511 * iconvdata/ibm933.h: Likewise.
10512 * iconvdata/ibm935.h: Likewise.
10513 * iconvdata/ibm937.h: Likewise.
10514 * iconvdata/ibm939.h: Likewise.
10515 * iconvdata/ibm943.h: Likewise.
10516 * iconvdata/ibm930.c: Pretty printing.
10517 * iconvdata/ibm937.c: Avoid access accross array boundary.
10518
10519 * iconv/gconv_open.c (__gconv_open): Empty codeset name now means using
10520 the current locale's codeset.
10521 * iconv/iconv_open.c (iconv_open): Don't strip out everything for
10522 empty input string.
10523 * iconv/iconv_prog.c: Pass empty strings as default value for to-
10524 and from-charset. Don't determine locale's charset here.
10525
10526 * libio/genops.c (_IO_flush_all_lockp): New function. The same code
10527 as the old _IO_flush_all but lock only if parameter is nonzero.
10528 (_IO_flush_all): Call _IO_flush_all_lockp with 1 as parameter.
10529 * libio/libioP.h: Add prototype for _IO_flush_all_lockp.
10530 * sysdeps/generic/abort.c (fflush): Define to _IO_flush_all_lockp(0)
10531 if libio is used [PR libc/2575].
10532
10533 2001-11-28 Jakub Jelinek <jakub@redhat.com>
10534
10535 * sysdeps/sparc/fpu/bits/mathinline.h (__signbitf, __signbit,
10536 __signbitl): Only define for ISO C99.
10537
10538 2001-11-22 Thorsten Kukuk <kukuk@suse.de>
10539
10540 * nss/nss_files/files-hosts.c (_nss_files_get##name##_r): Set
10541 herrnop to NETDB_INTERNAL if we run out of buffer space.
10542
10543 2001-11-28 Ulrich Drepper <drepper@redhat.com>
10544
10545 * nss/nss_files/files-XXX.c (internal_getent): Correct input
10546 overflow test for platforms with signed char.
10547 Reported by Andrew Haley <aph@cambridge.redhat.com>.
10548
10549 2001-11-28 Bruno Haible <bruno@clisp.org>
10550
10551 * locale/programs/simple-hash.c (lookup_2): Remove function.
10552 (insert_entry_2): Call lookup instead of lookup_2.
10553
10554 2001-03-04 Bruno Haible <bruno@clisp.org>
10555
10556 * intl/dcigettext.c (DCIGETTEXT): Increment path_max proportionally.
10557
10558 2001-10-31 Bruno Haible <bruno@clisp.org>
10559
10560 * intl/plural.y: Include <stddef.h>, needed for NULL with SunOS 4 cc.
10561
10562 2001-03-21 Bruno Haible <bruno@clisp.org>
10563
10564 * intl/dcigettext.c (_nl_state_lock): Mark as #ifdef _LIBC. AIX 3 xlc
10565 chokes on empty macro arguments.
10566 * intl/plural.y: Add #pragma for alloca on AIX 3.
10567
10568 2001-11-27 Ulrich Drepper <drepper@redhat.com>
10569
10570 * intl/dcigettext.c (guess_category_value): Only implement for
10571 glibc. Otherwise rely on function _nl_locale_name which isn't
10572 present in the glibc sources.
10573
10574 2001-09-24 Bruno Haible <bruno@clisp.org>
10575
10576 * intl/loadmsgcat.c (_nl_init_domain_conv): Also enable
10577 transliteration when building on a glibc system but outside glibc.
10578
10579 2001-09-22 Bruno Haible <bruno@clisp.org>
10580
10581 * intl/plural-eval.c: New file, extracted from dcigettext.c.
10582 * intl/dcigettext.c (plural_eval): Remove function, moved to
10583 intl/plural-eval.c.
10584 (plural_lookup): Call PLURAL_EVAL instead of plural_eval.
10585 Include plural-eval.c.
10586
10587 2001-09-22 Bruno Haible <bruno@clisp.org>
10588
10589 * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Reject numbers that
10590 don't start with a digit; nplurals must be positive.
10591
10592 2001-09-02 Bruno Haible <bruno@clisp.org>
10593
10594 * intl/plural-exp.h: New file, extracted from gettextP.h.
10595 * intl/plural-exp.c: New file, extracted from loadmsgcat.c.
10596 * intl/gettextP.h (struct expression, struct parse_args,
10597 __gettext_free_exp, __gettextparse): Move to plural-exp.h.
10598 * intl/loadmsgcat.c: Include plural-exp.h.
10599 (PLURAL_PARSE): Move macro to plural-exp.h.
10600 (plvar, plone, germanic_plural, INIT_GERMANIC_PLURAL): Move to
10601 plural-exp.c.
10602 (_nl_load_domain): Move plural handling code to plural-exp.c. Call
10603 EXTRACT_PLURAL_EXPRESSION.
10604 (_nl_unload_domain): Update.
10605 * intl/dcigettext.c: Include plural-exp.h.
10606 * intl/plural.y: Include plural-exp.h, not gettextP.h.
10607 (FREE_EXPRESSION): Move macro to plural-exp.h.
10608 * intl/Makefile (routines): Add plural-exp.
10609 (distribute): Add plural-exp.h.
10610
10611 2001-07-28 Bruno Haible <bruno@clisp.org>
10612
10613 * intl/l10nflist.c (_nl_normalize_codeset): Cast isalnum, isalpha,
10614 isdigit, tolower argument to 'unsigned char'.
10615 * intl/loadmsgcat.c (_nl_load_domain): Cast isspace argument to
10616 'unsigned char'.
10617 * intl/localealias.c (read_alias_file): Cast isspace argument to
10618 'unsigned char'.
10619
10620 2001-10-20 Bruno Haible <bruno@clisp.org>
10621
10622 Assume strchr() exists. (Without it, intl/explodename.c wouldn't link
10623 anyway.)
10624 * intl/dcigettext.c (strchr): Remove fallback definition; it conflicts
10625 with the variable 'index' in plural_lookup.
10626 * intl/l10nflist.c (strchr): Likewise.
10627 * intl/localealias.c (strchr): Likewise.
10628
10629 Assume <stddef.h>, <stdlib.h>, <string.h>, <locale.h> exist.
10630 * intl/bindtextdom.c: Likewise.
10631 * intl/dcigettext.c: Likewise.
10632 * intl/dgettext.c: Likewise.
10633 * intl/dngettext.c: Likewise.
10634 * intl/explodename.c: Likewise.
10635 * intl/finddomain.c: Likewise.
10636 * intl/gettext.c: Likewise.
10637 * intl/l10nflist.c: Likewise.
10638 * intl/loadmsgcat.c: Likewise.
10639 * intl/localealias.c: Likewise.
10640 * intl/ngettext.c: Likewise.
10641 * intl/textdomain.c: Likewise.
10642 * intl/gettext.h: Assume <limits.h> exists.
10643
10644 2001-11-27 Ulrich Drepper <drepper@redhat.com>
10645
10646 * stdio-common/Makefile (tests): Add scanf11.
10647 * stdio-common/scanf11.c: New file.
10648
10649 2001-11-26 Ulrich Drepper <drepper@redhat.com>
10650
10651 * version.h (RELEASE): Define as development.
10652 (VERSION): Set to 2.2.90.
10653
10654 2001-11-22 Thorsten Kukuk <kukuk@suse.de>
10655
10656 * nis/nss_compat/compat-grp.c: Print group id as unsigned long.
10657 * nis/nss_nis/nis-grp.c: Likewise.
10658 * nis/nss_nisplus/nisplus-grp.c: Likewise.
10659
10660 * nis/nss_compat/compat-pwd.c: Print user id as unsigned long.
10661 * nis/nss_nis/nis-pwd.c: Likewise.
10662 * nis/nss_nisplus/nisplus-pwd.c: Likewise.
10663
10664 * nis/nss_nis/nis-publickey.c: Use strtoul instead of atoi.
10665 * nis/nss_nisplus/nisplus-parser.c: Likewise.
10666 * nis/nss_nisplus/nisplus-publickey.c: Likewise.
10667
10668 * nscd/grpcache.c: Use strtoul instead of atol.
10669 * nscd/pwdcache.c: Likewise.
10670 * nss/getent.c: Likewise.
10671
10672 2001-11-27 Paul Eggert <eggert@twinsun.com>
10673
10674 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
10675 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
10676
10677 2001-11-19 Bruno Haible <bruno@clisp.org>
10678
10679 * locale/programs/simple-hash.c (insert_entry_2): Resize at 75%, not
10680 90%.
10681 (compute_hashval): Shift by 9 bits, not by 4 bits. This drastically
10682 improves the quality of the hash function, especially for short
10683 strings.
10684
10685 2001-11-26 Ulrich Drepper <drepper@redhat.com>
10686
10687 * stdio-common/vfscanf.c: If incomplete nan of inf(inity) strings
10688 are found call conv_error and not input_error [PR libc/2669].
10689
10690 * math/bits/mathcalls.h: Mark ceil and floor as const.
10691 Reported by David Mosberger.
10692
10693 2001-11-21 Jim Meyering <meyering@lucent.com>
10694
10695 * posix/regex.c (iswctype, mbrtowc, wcslen, wcscoll, wcrtomb) [_LIBC]:
10696 Define to be __-prefixed.
10697 Remove unnecessary duplication in `#ifdef _LIBC' blocks.
10698
10699 2001-11-26 Andreas Jaeger <aj@suse.de>
10700
10701 * sysdeps/unix/sysv/linux/hppa/brk.c: Remove __brk_addr alias,
10702 avoid warning.
10703
10704 2001-11-26 Stephen L Moshier <moshier@mediaone.net>
10705
10706 * sysdeps/ieee754/ldbl-128/e_log10l.c (L102B): Fix typo in
10707 initialization.
10708
10709 * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Remove
10710 unused variables. Fix threshold for returning 1.0.
10711
10712 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (neval, deval): Constify
10713 argument.
10714
10715 * sysdeps/ieee754/ldbl-128/s_erfl.c (neval, deval): Likewise, and
10716 remove unused variables.
10717
10718 * sysdeps/ieee754/ldbl-128/e_j0l.c (neval, deval): Likewise.
10719
10720 * sysdeps/ieee754/ldbl-128/e_j1l.c (neval, deval): Likewise, and
10721 include local math header files.
10722
10723 2001-11-22 Andreas Jaeger <aj@suse.de>
10724
10725 * sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Add brace to
10726 avoid warning.
10727
10728 2001-11-21 Andreas Jaeger <aj@suse.de>
10729
10730 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: New file.
10731
10732 * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers): Add
10733 sys/debugreg.h
10734
10735 2001-11-15 Andreas Jaeger <aj@suse.de>
10736
10737 * include/features.h (__GLIBC_HAVE_LONG_LONG): Define for
10738 compilers that support it.
10739
10740 * posix/sys/types.h: Use __GLIBC_HAVE_LONG_LONG.
10741 * sysdeps/unix/sysv/linux/bits/types.h: Likewise.
10742 * stdlib/stdlib.h: Likewise.
10743
10744 2001-11-17 Ulrich Drepper <drepper@redhat.com>
10745
10746 * posix/regex.c (byte_re_match_2_internal): For gcc replace switch
10747 statement with gotos.
10748 Based on a patch by Paolo Bonzini <bonzini@pc-amo3.elet.polimi.it>.
10749
10750 2001-11-16 Stephen L Moshier <moshier@mediaone.net>
10751
10752 * sysdeps/ieee754/ldbl-96/s_erfl.c (__erfcl): Fix K&R header.
10753
10754 2001-11-15 Ulrich Drepper <drepper@redhat.com>
10755
10756 * sysdeps/generic/unwind-dw2-fde.c: Don't use recursive mutexes.
10757
10758 2001-10-02 Jakub Jelinek <jakub@redhat.com>
10759 H.J. Lu <hjl@gnu.org>
10760
10761 * Versions.def (libc): Add GCC_3.0.
10762 * configure.in (libc_cv_gcc_static_libgcc): Set to -static-libgcc
10763 if gcc supports this flag.
10764 (EXPORT_UNWIND_FIND_FDE): Define unless target configure disables it.
10765 (gcc3): Allow glibc to be compiled with gcc 3.x.
10766 * config.h.in (EXPORT_UNWIND_FIND_FDE): Add.
10767 * config.make.in (static-libgcc, unwind-find-fde): Add.
10768 * Makerules (build-shlib-helper, build-module-helper): Use it.
10769 * scripts/versions.awk: Make sure GLIBC_ versions come first.
10770 * elf/soinit.c (__libc_global_ctors): Set tbases and dbases if
10771 necessary.
10772 (_fini): Call __deregister_frame_info_bases if
10773 __register_frame_info_bases was used to register.
10774 * elf/Versions (__register_frame_info, __deregister_frame_info): Add
10775 for GLIBC_2.0.
10776 (__register_frame_info_bases, __register_frame_info_table_bases,
10777 __deregister_frame_info_bases, _Unwind_Find_FDE): Add for GCC_3.0.
10778 * elf/Makefile (routines): Add unwind-dw2-fde.
10779 (shared-only-routines): Add unwind-dw2-fde.
10780 * sysdeps/alpha/gccframe.h: New file.
10781 * sysdeps/arm/gccframe.h: New file.
10782 * sysdeps/generic/framestate.c: New file.
10783 * sysdeps/generic/dwarf2.h: New file.
10784 * sysdeps/generic/gccframe.h (struct object): Update from gcc 3.0.
10785 * sysdeps/generic/unwind-dw2-fde.c: New file.
10786 * sysdeps/unix/sysv/linux/ia64/unwind-dw2-fde.c: New file.
10787 * sysdeps/generic/unwind-dw2-fde.h: New file.
10788 * sysdeps/generic/unwind-dw2.c: New file.
10789 * sysdeps/generic/unwind-pe.h: New file.
10790 * sysdeps/generic/unwind.h: New file.
10791 * sysdeps/hppa/gccframe.h: New file.
10792 * sysdeps/i386/gccframe.h: New file.
10793 * sysdeps/m68k/gccframe.h: New file.
10794 * sysdeps/mips/gccframe.h: New file.
10795 * sysdeps/powerpc/gccframe.h: New file.
10796 * sysdeps/s390/gccframe.h: New file.
10797 * sysdeps/sh/gccframe.h: New file.
10798 * sysdeps/sparc/gccframe.h: New file.
10799 * sysdeps/vax/gccframe.h: New file.
10800 * sysdeps/unix/sysv/linux/configure.in (libc_cv_gcc_unwind_find_fde):
10801 Set on all architectures except ia64.
10802 * sysdeps/mach/hurd/configure.in (libc_cv_gcc_unwind_find_fde): Set
10803 for i386.
10804 * sysdeps/mach/hurd/i386/Versions (__register_frame_info,
10805 __deregister_frame_info): Move to elf/Versions.
10806 * sysdeps/unix/sysv/linux/m68k/Versions: Likewise.
10807 * sysdeps/unix/sysv/linux/arm/Versions: Likewise.
10808 * sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
10809 * sysdeps/unix/sysv/linux/i386/Versions: Likewise.
10810 * sysdeps/unix/sysv/linux/mips/Versions: Likewise.
10811 * sysdeps/unix/sysv/linux/powerpc/Versions: Likewise.
10812 * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
10813 * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
10814 * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
10815 * sysdeps/mach/hurd/i386/Makefile (sysdep-routines): Add framestate.
10816 * sysdeps/unix/sysv/linux/arm/Makefile: Likewise.
10817 * sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
10818 * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
10819 * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
10820 * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
10821 * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
10822 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Likewise.
10823 * sysdeps/unix/sysv/linux/sparc/Makefile: Likewise.
10824
10825 2001-11-15 Jeff Law <law@redhat.com>
10826
10827 * posix/regex.c (uintptr_t): Do not provide a definition if the
10828 system provided one.
10829
10830 2001-11-13 Roland McGrath <roland@frob.com>
10831
10832 * stdio-common/tmpfile.c: Moved to ...
10833 * sysdeps/generic/tmpfile.c: ... here.
10834 * sysdeps/mach/hurd/tmpfile.c: New file.
10835
10836 * hurd/fopenport.c (__fopenport): Renamed from fopenport.
10837 [USE_IN_LIBIO] (fopencookie): #define as _IO_fopencookie.
10838 (fopenport): Define as weak alias.
10839
10840 * libio/iofopncook.c (_IO_fopencookie): Move forward declaration ...
10841 * libio/libioP.h: ... to here.
10842
10843 2001-11-12 Ulrich Drepper <drepper@redhat.com>
10844
10845 * elf/dl-reloc.c (_dl_relocate_object): Avoid iterating over
10846 program header twice. Construct list with the needed information.
10847
10848 2001-11-10 Ulrich Drepper <drepper@redhat.com>
10849
10850 * po/ca.po: Update from translation team.
10851
10852 * elf/dl-load.c (_dl_map_object_from_fd): Remove use of
10853 _dl_pf_to_prot. Use arithmetic operation using PF_TO_PROT macro.
10854 * sysdeps/generic/ldsodefs.h (PF_TO_PROT): New macro.
10855 * elf/dl-reloc.c (_dl_relocate_object): Likewise.
10856
10857 2001-11-10 Andreas Jaeger <aj@suse.de>
10858
10859 * sysdeps/ieee754/ldbl-128/e_log2l.c: New file.
10860 * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
10861 Contributed by Stephen L Moshier <moshier@mediaone.net>.
10862
10863 2001-11-09 Ulrich Drepper <drepper@redhat.com>
10864
10865 * elf/dl-minimal.c (realloc): Handle NULL for first parameter
10866 correctly.
10867 * elf/dl-load.c (is_dst): New function.
10868 (_dl_dst_count): Use is_dst to check for DST variable.
10869 (_dl_dst_substitute): Likewise.
10870
10871 2001-11-09 Roland McGrath <roland@frob.com>
10872
10873 Hurd/PowerPC port contributed by Peter Bruin <pjbruin@dds.nl>.
10874 * sysdeps/mach/hurd/powerpc/exc2signal.c: New file.
10875 * sysdeps/mach/hurd/powerpc/init-first.c: New file.
10876 * sysdeps/mach/hurd/powerpc/intr-msg.h: New file.
10877 * sysdeps/mach/hurd/powerpc/longjmp-ts.c: New file.
10878 * sysdeps/mach/hurd/powerpc/register-dump.h: New file.
10879 * sysdeps/mach/hurd/powerpc/sigreturn.c: New file.
10880 * sysdeps/mach/hurd/powerpc/static-start.S: New file.
10881 * sysdeps/mach/hurd/powerpc/trampoline.c: New file.
10882 * sysdeps/mach/hurd/powerpc/bits/sigcontext.h: New file.
10883 * sysdeps/mach/hurd/powerpc/Dist: New file.
10884
10885 * hurd/privports.c (__get_privileged_ports):
10886 Only contact the proc server if necessary for this call.
10887 Suggested by Neal H Walfield <neal@cs.uml.edu>.
10888 Check error return for mach_port_mod_refs.
10889
10890 2001-11-09 Andreas Schwab <schwab@suse.de>
10891
10892 * sysdeps/unix/sysv/linux/m68k/bits/resource.h: New file.
10893
10894 2001-11-09 Ulrich Drepper <drepper@redhat.com>
10895
10896 * elf/dl-load.c (lose): Remove some unnecessary code. The new
10897 object is always the last in the list.
10898 (_dl_map_object_from_fd): Delete code to remove from object list
10899 when DF_1_NOOPEN is seen. This is done in lose.
10900
10901 2001-11-08 Ulrich Drepper <drepper@redhat.com>
10902
10903 * elf/dl-object.c (_dl_new_object): Various small optimizations.
10904
10905 2001-11-07 Ulrich Drepper <drepper@redhat.com>
10906
10907 * sysdeps/generic/dl-cache.c: Optimize SEARCH_CACHE and
10908 HWCAP_CHECK macro code.
10909
10910 * elf/dl-misc.c (_dl_sysdep_read_whole_file): Optimize code a bit.
10911 Now returns MAP_FAILED on error.
10912 * elf/rtld.c: Adjust caller.
10913 * sysdeps/generic/dl-cache.c: Likewise.
10914 * sysdeps/generic/ldsodefs.h: Adjust description.
10915
10916 * elf/dl-version.c (match_symbol): Optimize error handling for size.
10917 (_dl_check_map_versions): Likewise.
10918
10919 2001-11-06 Ulrich Drepper <drepper@redhat.com>
10920
10921 * elf/dl-load.c (_dl_map_object_from_fd): Don't call
10922 _dl_signal_error directly, always use lose. Set fd to -1 after
10923 file is closed.
10924 (lose): Don't call close if fd == -1.
10925
10926 2001-11-07 Kaoru Fukui <k_fukui@highway.ne.jp>
10927
10928 * manual/charset.texi: Fix typo @w[ISO 6937] to @w{ISO 6937}.
10929 Also fix typo @code {mbsinit} to @code{mbsinit}.
10930
10931 2001-11-06 Ulrich Drepper <drepper@redhat.com>
10932
10933 * elf/dl-profile.c: Replace state variable with simple flag named
10934 running. Remove commented-out code.
10935
10936 * elf/dl-load.c (decompose_rpath): Optimize error handling for size.
10937 (_dl_init_paths): Likewise.
10938 (_dl_map_object_from_fd): Likewise.
10939 * elf/dl-reloc.c (_dl_relocate_object): Likewise.
10940
10941 2001-11-06 Roland McGrath <roland@frob.com>
10942
10943 * sysdeps/mach/powerpc/sysdep.h: Include sysdeps/unix/powerpc/sysdep.h
10944 instead of sysdeps/powerpc/elf/sysdep.h and sysdeps/unix/sysdep.h.
10945
10946 * sysdeps/unix/sysv/linux/powerpc/sysdep.h: Don't include
10947 sysdeps/powerpc/elf/sysdep.h.
10948 Reported by Kaoru Fukui <k_fukui@highway.ne.jp>.
10949
10950 2001-11-05 Ulrich Drepper <drepper@redhat.com>
10951
10952 * elf/rtld.c (process_dl_debug): Rewritten. Optimized for size not
10953 speed.
10954 (process_envvars): Some more optimizations.
10955 * sysdeps/generic/ldsodefs.h (DL_DEBUG_HELP): New macro.
10956
10957 * elf/elf.h: Add dynamic tag definitions for prelinking.
10958
10959 * elf/rtld.c (process_envvars): Avoid using array of string pointers.
10960 Rewrite code to remove environment varables for SUID binaries.
10961 Small optimization in LD_PROFILE handling.
10962 * sysdeps/generic/unsecvars.h: Adjust format for process_envvars
10963 changes.
10964 * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
10965
10966 * sysdeps/generic/dl-sysdep.c: Don't initialize _dl_cpuclock_offset.
10967
10968 * elf/dl-reloc.c (_dl_reloc_bad_type): Rewrite to not use writable
10969 strings. Change type of second parameter.
10970 * sysdeps/generic/ldsodefs.h: Adjust _dl_reloc_bad_type prototype
10971 for last change.
10972
10973 * io/fts.h: Prevent using <fts.h> with _FILE_OFFSET_BITS=64.
10974
10975 2001-11-04 Joseph S. Myers <jsm28@cam.ac.uk>
10976
10977 * manual/string.texi: Fix typos.
10978 * manual/examples/argp-ex2.c: Likewise.
10979
10980 2001-11-05 Roland McGrath <roland@frob.com>
10981
10982 * sysdeps/powerpc/elf/sysdep.h: Remove this file, because it overrides
10983 the more-specific unix/sysv/linux/powerpc file and breaks everything.
10984 * sysdeps/powerpc/sysdep.h (ALIGNARG, ASM_TYPE_DIRECTIVE,
10985 ASM_SIZE_DIRECTIVE, CALL_MCOUNT, ENTRY, EALIGN, DO_CALL, JUMPTARGET,
10986 PSEUDO, PSEUDO_RET, PSEUDO_END, L, C_TEXT): These macros moved here
10987 here, put under [__ELF__].
10988
10989 2001-11-05 Ulrich Drepper <drepper@redhat.com>
10990
10991 * manual/charset.texi: Extensive editing work.
10992 * manual/nss.texi: Likewise.
10993 Changes by Dennis Grace <dgrace@us.ibm.com>.
10994
10995 2001-11-04 Roland McGrath <roland@frob.com>
10996
10997 * hurd/set-host.c (_hurd_set_host_config): Use O_WRONLY in flags
10998 parameter to dir_mkfile.
10999
11000 2001-11-02 Jakub Jelinek <jakub@redhat.com>
11001
11002 * string/bits/string2.h (__strndup): If n is smaller than len, set
11003 len to n + 1.
11004 * string/tester.c (test_strndup): New function.
11005 (main): Call it.
11006
11007 2001-11-01 Ulrich Drepper <drepper@redhat.com>
11008
11009 * sunrpc/rpc_main.c: Optimize variable definitions a bit.
11010
11011 * sunrpc/Makefile (rpcgen-cmd): Use ../scripts/cpp in rpcgen calls.
11012 * scripts/cpp: New file.
11013
11014 * elf/dl-load.c (_dl_map_object): Correct test of DF_1_NODEFLIB
11015 for rtld_search_dirs content. Minor optimizations.
11016
11017 2001-10-31 Ulrich Drepper <drepper@redhat.com>
11018
11019 * elf/dl-load.c (_dl_map_object): Make code a bit more compact by
11020 avoiding unnecessary duplication.
11021
11022 2001-10-31 Jakub Jelinek <jakub@redhat.com>
11023
11024 * elf/dl-load.c (_dl_map_object): If library was found using
11025 LD_LIBRARY_PATH, don't try RUNPATH list.
11026
11027 2001-10-31 Martin Schwidefsky <schwidefsky@de.ibm.com>
11028
11029 * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h (REGISTER_DUMP):
11030 Correct second argument of register_dump call.
11031 * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h (REGISTER_DUMP):
11032 Likewise.
11033
11034 2001-10-31 Ulrich Drepper <drepper@redhat.com>
11035
11036 * iconvdata/Makefile: Add support for IBM1132, IBM1133, and IBM1162
11037 modules.
11038 * iconvdata/TESTS: Likewise.
11039 * iconvdata/gconv-modules: Likewise.
11040 * iconvdata/ibm1132.c: New file.
11041 * iconvdata/ibm1132.h: New file.
11042 * iconvdata/ibm1133.c: New file.
11043 * iconvdata/ibm1133.h: New file.
11044 * iconvdata/ibm1162.c: New file.
11045 * iconvdata/ibm1162.h: New file.
11046 * iconvdata/testdata/IBM1132: New file.
11047 * iconvdata/testdata/IBM1132..UTF8: New file.
11048 * iconvdata/testdata/IBM1133: New file.
11049 * iconvdata/testdata/IBM1133..UTF8: New file.
11050 * iconvdata/testdata/IBM1162: New file.
11051 * iconvdata/testdata/IBM1162..UTF8: New file.
11052 Patches by Masahide Washizawa <WASHI@jp.ibm.com>.
11053
11054 * string/string.h: Fix typo in comment.
11055 * wcsmbs/wchar.h: Likewise.
11056
11057 2001-10-30 Joseph S. Myers <jsm28@cam.ac.uk>
11058
11059 * manual/getopt.texi (getopt_long, getopt_long_only): Include
11060 const in type of longopts parameter.
11061
11062 2001-10-29 Andreas Jaeger <aj@suse.de>
11063
11064 * sysdeps/ieee754/dbl-64/mpa.h: Add prototypes for internal functions.
11065
11066 2001-10-29 Kevin Ryde <user42@zip.com.au>
11067
11068 * manual/stdio.texi (Integer Conversions): Corrections to sample printf
11069 output, clarify `#' behaviour on 0.
11070 (Floating-Point Conversions): Clarify that %g only uses %e when
11071 the exponent would be greater than 1.
11072
11073 2001-10-28 Roland McGrath <roland@frob.com>
11074
11075 Support for Mach/PowerPC contributed by Peter Bruin <pjbruin@dds.nl>.
11076 * sysdeps/mach/powerpc/machine-sp.h: New file.
11077 * sysdeps/mach/powerpc/sysdep.h: New file.
11078 * sysdeps/mach/powerpc/thread_state.h: New file.
11079
11080 * sysdeps/mach/hurd/i386/Makefile: File removed; crt0.o rules moved ...
11081 * sysdeps/mach/hurd/Makefile: ... to here. For the time being, we can
11082 expect to need the same thing on every platform.
11083
11084 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: File moved ...
11085 * sysdeps/generic/sys/ucontext.h: ... to replace this one.
11086
11087 * sysdeps/unix/sysv/linux/powerpc/sysdep.h (ALIGNARG,
11088 ASM_TYPE_DIRECTIVE, ASM_SIZE_DIRECTIVE, CALL_MCOUNT, ENTRY, EALIGN,
11089 DO_CALL, JUMPTARGET, PSEUDO, PSEUDO_RET, PSEUDO_END, L, C_TEXT):
11090 Move all these assembly-related definitions to ...
11091 * sysdeps/powerpc/elf/sysdep.h: ... this new file.
11092
11093 * sysdeps/mach/powerpc/machine-lock.h: Assembly code rewritten
11094 by Peter Bruin <pjbruin@dds.nl>.
11095
11096 * hurd/hurdselect.c (_hurd_select): Check SELECT_RETURNED bit when
11097 packing results for a `poll' call.
11098
11099 2001-10-26 Ulrich Drepper <drepper@redhat.com>
11100
11101 * posix/fnmatch_loop.c: Recognize - at end of bracket expression
11102 correctly.
11103 * posix/tst-fnmatch.input: Add tests for - at beginning and end of
11104 bracket expression.
11105
11106 * string/strxfrm.c [USE_IN_EXTENDED_LOCALE_MODEL]: Correctly get
11107 nrules value.
11108 * string/tst-strxfrm.c (test): Also test __strxfrm_l.
11109
11110 2001-10-24 H.J. Lu <hjl@gnu.org>
11111
11112 * sysdeps/generic/bits/dlfcn.h (DL_CALL_FCT): Cast to void *.
11113 Use __BEGIN_DECLS/__END_DECLS around prototypes.
11114 * sysdeps/mips/bits/dlfcn.h (DL_CALL_FCT): Likewise.
11115
11116 2001-10-21 Jim Meyering <meyering@lucent.com>
11117
11118 * malloc/obstack.c (_): Honor the setting of ENABLE_NLS. Otherwise,
11119 this code would end up calling gettext even in packages built
11120 with --disable-nls.
11121 * posix/getopt.c (_): Likewise.
11122 * posix/regex.c (_): Likewise.
11123
11124 2001-10-26 Ulrich Drepper <drepper@redhat.com>
11125
11126 * resolv/gethnamaddr.c (gethostbyaddr): Use ip6.addr for reverse
11127 lookup not ip6.int.
11128 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
11129 Reported by Martin.v.Loewis@t-online.de [PR libc/2598].
11130
11131 2001-10-19 Jakub Jelinek <jakub@redhat.com>
11132
11133 * misc/sys/cdefs.h (__attribute_used__): Define.
11134 * elf/rtld.c (_dl_start): Add __attribute_used__.
11135 * elf/dl-runtime.c (fixup, profile_fixup): Likewise.
11136
11137 2001-10-25 Andreas Schwab <schwab@suse.de>
11138
11139 * stdlib/a64l.c: Expect least significant digit first.
11140 * stdlib/l64a.c: Produce least significant digit first.
11141 * stdlib/Makefile (tests): Add test-a64l.
11142 * stdlib/test-a64l.c: New file.
11143 Reported by Masaki Hasegawa <masaki-h@pp.iij4u.or.jp>.
11144
11145 2001-10-21 Ulrich Drepper <drepper@redhat.com>
11146
11147 * po/sk.po: Update from translation team.
11148
11149 2001-10-18 Ulrich Drepper <drepper@redhat.com>
11150
11151 * sysdeps/i386/elf/start.S (_fp_hw): Define object type.
11152
11153 2001-10-18 Andreas Schwab <schwab@suse.de>
11154
11155 * math/libm-test.inc (print_ulps): Print ulp values rounded to
11156 next whole number.
11157 (print_function_ulps): Likewise.
11158 (print_complex_function_ulps): Likewise.
11159 (print_max_error): Likewise.
11160 (print_complex_max_error): Likewise. Handle ignore_max_ulp.
11161
11162 2001-10-16 Andreas Schwab <schwab@suse.de>
11163
11164 * sysdeps/m68k/fpu/libm-test-ulps: Updated for fixed cbrtl
11165 implementation.
11166
11167 * sysdeps/m68k/setjmp.c: Also define setjmp and _setjmp if
11168 BSD_SETJMP or BSD__SETJMP is defined, resp.
11169 * sysdeps/m68k/bsd-setjmp.c: Inline setjmp code instead of making
11170 a tail call to __sigsetjmp that would require extending the
11171 caller's frame.
11172 * sysdeps/m68k/bsd-_setjmp.c: Likewise.
11173 * sysdeps/m68k/bsd-setjmp.S: Deleted.
11174 * sysdeps/m68k/bsd-_setjmp.S: Deleted.
11175 Reported by Jes Sorensen <jes@trained-monkey.org>.
11176
11177 2001-10-16 Andreas Jaeger <aj@suse.de>
11178
11179 * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Fix
11180 parentheses. Reported by David Byron <dbyron@porto.coactive.com>,
11181 close PR libc/2589.
11182
11183 2001-10-15 Ulrich Drepper <drepper@redhat.com>
11184
11185 * po/ca.po: New file. Contributed by the translation team.
11186
11187 2001-10-15 Ralf Baechle <ralf@gnu.org>
11188
11189 * sysdeps/unix/sysv/linux/mips/sys/sysmips.h: Make sysmips() prototype
11190 a varargs prototype. Remove dependency from kernel header files.
11191
11192 * sysdeps/unix/sysv/linux/mips/bits/termios.h: General cleanup, use
11193 __USE_MISC / __USE_XOPEN not __USE_BSD where appropriate.
11194
11195 2001-10-14 Ulrich Drepper <drepper@redhat.com>
11196
11197 * locale/programs/ld-collate.c (handle_ellipsis): Use %lX not %lx
11198 to generate hexadecimal identifier.
11199 Patch by Jungshik Shin <jungshik.shin@yale.edu>.
11200
11201 2001-10-09 Stephen L Moshier <moshier@mediaone.net>
11202
11203 * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Fix algorithm.
11204
11205 2001-10-14 Ulrich Drepper <drepper@redhat.com>
11206
11207 * sysdeps/ieee754/ldbl-128/e_powl.c: New file.
11208 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: New file.
11209 Contributed by Stephen L Moshier <moshier@mediaone.net>.
11210
11211 * sysdeps/ieee754/ldbl-128/e_j0l.c: Constify float variables.
11212 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
11213 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise
11214 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise
11215 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise
11216 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise
11217
11218 * timezone/africa: Update from tzdata2001d.
11219 * timezone/asia: Likewise.
11220 * timezone/australasia: Likewise.
11221 * timezone/backward: Likewise.
11222 * timezone/europe: Likewise.
11223 * timezone/leapseconds: Likewise.
11224 * timezone/northamerica: Likewise.
11225 * timezone/southamerica: Likewise.
11226 * timezone/zone.tab: Likewise.
11227
11228 2001-10-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
11229
11230 * sysdeps/s390/s390-32/sys/ucontext.h: Correct __psw_t typedef.
11231 * sysdeps/s390/s390-64/sys/ucontext.h: Likewise.
11232
11233 2001-10-12 Ulrich Drepper <drepper@redhat.com>
11234
11235 * elf/elf.h (PT_TLS): New definition.
11236
11237 2001-10-10 Jeff Bailey <jbailey@nisa.net>
11238
11239 * sysdeps/mach/hurd/Makefile: Add $(CFLAGS) for generation of
11240 bits/errno.h
11241
11242 2001-10-07 Roland McGrath <roland@frob.com>
11243
11244 * sysdeps/mach/hurd/setrlimit.c (__setrlimit): Never return ENOSYS.
11245
11246 2001-10-10 Ulrich Drepper <drepper@redhat.com>
11247
11248 * elf/elf.h: Add more ELFOSABI_* constants.
11249
11250 2001-10-04 Ben Collins <bcollins@debian.org>
11251
11252 * sysdeps/generic/inttypes.h: Fix typo (define, not defined) in
11253 decleration of __need_wchar_t.
11254
11255 2001-10-03 Jakub Jelinek <jakub@redhat.com>
11256
11257 * string/bits/string2.h (__strsep_g): Add prototype.
11258 (__strsep): Use it.
11259 * string/Versions (__strsep): Remove.
11260 * sysdeps/generic/strsep.c (__strsep_g): Add alias to __strsep.
11261
11262 2001-10-07 Ulrich Drepper <drepper@redhat.com>
11263
11264 * manua/llio.texi: Clarify file references added by mmap.
11265 Patch by Marcus Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de>.
11266
11267 2001-09-29 Jes Sorensen <jes@trained-monkey.org>
11268
11269 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h (struct sigcontext):
11270 Add sc_loadrs and sc_rbs_bas to match current kernel.
11271
11272 2001-09-27 Jakub Jelinek <jakub@redhat.com>
11273
11274 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Update.
11275
11276 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfcl): Fix erfc(-inf).
11277
11278 2001-09-27 Jakub Jelinek <jakub@redhat.com>
11279
11280 * elf/dl-open.c (dl_open_worker): If l_opencount of freshly loaded
11281 object has been bumped because of relocation dependency, avoid
11282 duplicates in l_scope.
11283 (show_scope): Fix typos.
11284 * elf/Makefile: Add rules to build and run reldep6.
11285 * elf/reldep6.c: New file.
11286 * elf/reldep6mod0.c: New file.
11287 * elf/reldep6mod1.c: New file.
11288 * elf/reldep6mod2.c: New file.
11289 * elf/reldep6mod3.c: New file.
11290 * elf/reldep6mod4.c: New file.
11291
11292 2001-09-26 Jakub Jelinek <jakub@redhat.com>
11293
11294 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_fixup_plt): Call
11295 sparc64_fixup_plt.
11296 (sparc64_fixup_plt): Moved from elf_machine_fixup_plt. Optimize
11297 near jumps and 0xfffff800XXXXXXXX target addresses, no thread safety
11298 for non-lazy binding. Fix .plt[32768+] handling.
11299 (elf_machine_plt_value): Don't add addend.
11300 (elf_machine_rela): Call sparc64_fixup_plt instead of
11301 elf_machine_fixup_plt.
11302 (elf_machine_runtime_setup, TRAMPOLINE_TEMPLATE): Optimize for
11303 dynamic linker at 0xfffff800XXXXXXXX.
11304
11305 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Update.
11306
11307 2001-09-28 Ulrich Drepper <drepper@redhat.com>
11308
11309 * elf/elf.h: Define SHF_GROUP and SHF_TLS.
11310
11311 2001-09-25 Jakub Jelinek <jakub@redhat.com>
11312
11313 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (struct cmsghdr): Don't
11314 declare __cmsg_data field if its size would be bigger than 0.
11315 (CMSG_DATA): Adjust accordingly.
11316 * sysdeps/unix/sysv/aix/bits/socket.h: Likewise.
11317 * sysdeps/unix/sysv/linux/alpha/bits/socket.h: Likewise.
11318 * sysdeps/unix/sysv/linux/ia64/bits/socket.h: Likewise.
11319 * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h: Likewise.
11320 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
11321 * sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise.
11322 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
11323
11324 2001-09-25 Ulrich Drepper <drepper@redhat.com>
11325
11326 * iconvdata/TESTS: Add entries for IBM1160 and IBM1161.
11327 * iconvdata/testdata/IBM1160: New file.
11328 * iconvdata/testdata/IBM1160..UTF8: New file.
11329 * iconvdata/testdata/IBM1161: New file.
11330 * iconvdata/testdata/IBM1161..UTF8: New file.
11331 Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
11332
11333 2001-09-24 Ulrich Drepper <drepper@redhat.com>
11334
11335 * sysdeps/unix/bsd/ulimit.c (ulimit): Handle overflow in
11336 UL_SETFSIZE computations better.
11337
11338 * rt/Makefile: Remove use of filter for librt again.
11339
11340 * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle overflow in
11341 UL_SETFSIZE computations better.
11342
11343 * string/Versions: Export __strsep for GLIBC_2.2.5.
11344 * string/bits/string2.h: Define all __STRING_INLINE functions if
11345 _FORCE_INLINES is defined.
11346 Use int instead of char of parameter types.
11347 (__strsep): Don't use __strsep_g. Don't define it.
11348 (__strsep_1c, __strsep_2c, __strsep_3c): Optimize.
11349 * sysdeps/i386/i486/string.h (__strcpy_a_small): Renamed from
11350 __strcpy_small.
11351 (__stpcpy_a_small): Renamed from __stpcpy_small.
11352 (__strcspn_c1): Don't define if _FORCE_INLINES.
11353 (__strspn_c1): Likewise.
11354
11355 2001-09-22 Ben Collins <bcollins@debian.org>
11356
11357 * sysdeps/sparc/bits/sigaction.h: Define SA_RESTART and friends when
11358 _UNIX98_SOURCE is defined too. Matches generic/bits/sigaction.h.
11359 * sysdeps/ia64/bits/sigaction.h: Likewise.
11360 * sysdeps/s390/s390-64/bits/sigaction.h: Likewise.
11361
11362 2001-09-24 Andrew Haley <aph@cambridge.redhat.com>
11363
11364 * sysdeps/unix/sysv/linux/sh/Makefile (sysdep_headers): Add sys/io.h.
11365
11366 2001-09-24 Jakub Jelinek <jakub@redhat.com>
11367
11368 * elf/dl-open.c (dl_open_worker): Update l_scope_max.
11369
11370 2001-09-24 Ulrich Drepper <drepper@redhat.com>
11371
11372 * wcsmbs/wchar.h: Add __attribute_pure__ to mbsinit prototype.
11373
11374 2001-09-20 H.J. Lu <hjl@gnu.org>
11375
11376 * include/dlfcn.h (__RTLD_SPROF): New definiton.
11377 * elf/dl-open.c (dl_open_worker): Return immediately after loading
11378 for __RTLD_SPROF.
11379 * elf/sprof.c (main): Default to the filename if soname doesn't exist.
11380 (load_shobj): Call dlopen with `RTLD_LAZY | __RTLD_SPROF'.
11381
11382 2001-09-20 H.J. Lu <hjl@gnu.org>
11383
11384 * elf/dl-profile.c (_dl_mcount): Use old *narcsp value for newarc,
11385 don't add 1.
11386
11387 2001-09-22 Ulrich Drepper <drepper@redhat.com>
11388
11389 * nss/getent.c: Accept -s parameter to overwrite rules in
11390 nsswitch.conf. Patch by Nalin Dahyabhai <nalin@redhat.com>.
11391
11392 * nss/nss_files/files-network.c (LINE_PARSER): Pad addr string
11393 with as many ".0" as necessary to form a complete address
11394 inet_network understands.
11395
11396 * nss/getent.c: Various cleanups. Use simpler and fewer function
11397 calls.
11398
11399 2001-09-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
11400
11401 * sysdeps/s390/s390-32/bits/setjmp.h: Correct pointer comparison in
11402 _JMPBUF_UNWINDS.
11403 * sysdeps/s390/s390-64/bits/setjmp.h: Likewise.
11404
11405 2001-09-22 Ulrich Drepper <drepper@redhat.com>
11406
11407 * iconvdata/Makefile: Add rules to build and distribute IBM1160 and
11408 IBM1161.
11409 * iconvdata/gconv-modules: Add entries for IBM1160 and IBM1161.
11410 * iconvdata/ibm1160.c: New file.
11411 * iconvdata/ibm1160.h: New file.
11412 * iconvdata/ibm1161.c: New file.
11413 * iconvdata/ibm1161.h: New file.
11414 Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
11415
11416 2001-09-19 Jakub Jelinek <jakub@redhat.com>
11417
11418 * sysdeps/alpha/dl-machine.h (elf_machine_load_address): Compute the
11419 difference between base address and first PT_LOAD's virtual address,
11420 not the base address.
11421
11422 2001-09-11 Tom Rix <trix@redhat.com>
11423
11424 * sysdeps/unix/sysv/aix/init-first.c (init): Use USE_NONONPTION_FLAG
11425 ifdef for __getopt_clean_environment.
11426 * sysdeps/unix/sysv/aix/libc-start.c: Add real implementation.
11427
11428 2001-09-22 Andreas Jaeger <aj@suse.de>
11429
11430 * elf/reldep4.c (main): Add proper prototype to fix warning.
11431
11432 * elf/reldep5.c (main): Remove unused variable.
11433
11434 * math/math_private.h: Add prototypes.
11435
11436 2001-09-21 Andreas Jaeger <aj@suse.de>
11437
11438 * sysdeps/unix/sysv/linux/x86_64/Dist: New file.
11439 * sysdeps/x86_64/Dist: New file.
11440 * sysdeps/x86_64/soft-fp/Dist: New file.
11441
11442 * sysdeps/gnu/Dist: Remove eval.c.
11443
11444 2001-09-20 Ulrich Drepper <drepper@redhat.com>
11445
11446 * malloc/memusage.c (realloc): Don't count already allocated
11447 memory in the sums.
11448 (me): Always use dlsym() to find the real implementations.
11449
11450 * malloc/memusage.sh: Make -n option actually do something.
11451
11452 2001-09-20 Andreas Jaeger <aj@suse.de>
11453
11454 * elf/elf.h (R_390_NUM): Correct value.
11455
11456 * Versions.def: Add missing versions 2.2.3 for libthread_db and
11457 libpthread.
11458
11459 * sysdeps/unix/sysv/linux/configure.in: Add minimal kernel version
11460 for x86-64, install x86-64 into */lib64.
11461
11462 * shlib-versions: Add x86-64.
11463
11464 * elf/elf.h: Add x86-64 relocations.
11465
11466 2001-09-19 Ulrich Drepper <drepper@redhat.com>
11467
11468 * po/fr.po: Update from translation team.
11469
11470 2001-09-19 Andreas Jaeger <aj@suse.de>
11471
11472 * sysdeps/unix/sysv/linux/x86_64/Makefile: New file.
11473 * sysdeps/unix/sysv/linux/x86_64/Versions: New file.
11474 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: New file.
11475 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: New file.
11476 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: New file.
11477 * sysdeps/unix/sysv/linux/x86_64/bits/statfs.h: New file.
11478 * sysdeps/unix/sysv/linux/x86_64/bits/time.h: New file.
11479 * sysdeps/unix/sysv/linux/x86_64/bits/types.h: New file.
11480 * sysdeps/unix/sysv/linux/x86_64/brk.c: New file.
11481 * sysdeps/unix/sysv/linux/x86_64/clone.S: New file.
11482 * sysdeps/unix/sysv/linux/x86_64/fstatfs64.c: New file.
11483 * sysdeps/unix/sysv/linux/x86_64/ftruncate64.c: New file.
11484 * sysdeps/unix/sysv/linux/x86_64/fxstat.c: New file.
11485 * sysdeps/unix/sysv/linux/x86_64/fxstat64.c: New file.
11486 * sysdeps/unix/sysv/linux/x86_64/getdents.c: New file.
11487 * sysdeps/unix/sysv/linux/x86_64/getdents64.c: New file.
11488 * sysdeps/unix/sysv/linux/x86_64/getrlimit64.c: New file.
11489 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
11490 * sysdeps/unix/sysv/linux/x86_64/glob64.c: New file.
11491 * sysdeps/unix/sysv/linux/x86_64/lxstat.c: New file.
11492 * sysdeps/unix/sysv/linux/x86_64/lxstat64.c: New file.
11493 * sysdeps/unix/sysv/linux/x86_64/mmap64.c: New file.
11494 * sysdeps/unix/sysv/linux/x86_64/pread64.c: New file.
11495 * sysdeps/unix/sysv/linux/x86_64/profil-counter.h: New file.
11496 * sysdeps/unix/sysv/linux/x86_64/pwrite64.c: New file.
11497 * sysdeps/unix/sysv/linux/x86_64/readdir.c: New file.
11498 * sysdeps/unix/sysv/linux/x86_64/readdir64.c: New file.
11499 * sysdeps/unix/sysv/linux/x86_64/readdir64_r.c: New file.
11500 * sysdeps/unix/sysv/linux/x86_64/readdir_r.c: New file.
11501 * sysdeps/unix/sysv/linux/x86_64/recv.c: New file.
11502 * sysdeps/unix/sysv/linux/x86_64/register-dump.h: New file.
11503 * sysdeps/unix/sysv/linux/x86_64/send.c: New file.
11504 * sysdeps/unix/sysv/linux/x86_64/setrlimit64.c: New file.
11505 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: New file.
11506 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: New file.
11507 * sysdeps/unix/sysv/linux/x86_64/sigpending.c: New file.
11508 * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: New file.
11509 * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: New file.
11510 * sysdeps/unix/sysv/linux/x86_64/statfs64.c: New file.
11511 * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: New file.
11512 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: New file.
11513 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: New file.
11514 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: New file.
11515 * sysdeps/unix/sysv/linux/x86_64/sys/user.h: New file.
11516 * sysdeps/unix/sysv/linux/x86_64/syscall.S: New file.
11517 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: New file.
11518 * sysdeps/unix/sysv/linux/x86_64/sysdep.S: New file.
11519 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: New file.
11520 * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
11521 * sysdeps/unix/sysv/linux/x86_64/truncate64.c: New file.
11522 * sysdeps/unix/sysv/linux/x86_64/umount.c: New file.
11523 * sysdeps/unix/sysv/linux/x86_64/vfork.S: New file.
11524 * sysdeps/unix/sysv/linux/x86_64/xstat.c: New file.
11525 * sysdeps/unix/sysv/linux/x86_64/xstat64.c: New file.
11526 * sysdeps/unix/x86_64/sysdep.S: New file.
11527 * sysdeps/unix/x86_64/sysdep.h: New file.
11528 * sysdeps/x86_64/Implies: New file.
11529 * sysdeps/x86_64/Makefile: New file.
11530 * sysdeps/x86_64/Versions: New file.
11531 * sysdeps/x86_64/__longjmp.S: New file.
11532 * sysdeps/x86_64/abort-instr.h: New file.
11533 * sysdeps/x86_64/atomicity.h: New file.
11534 * sysdeps/x86_64/bits/endian.h: New file.
11535 * sysdeps/x86_64/bits/setjmp.h: New file.
11536 * sysdeps/x86_64/bits/string.h: New file.
11537 * sysdeps/x86_64/bp-asm.h: New file.
11538 * sysdeps/x86_64/bsd-_setjmp.S: New file.
11539 * sysdeps/x86_64/bsd-setjmp.S: New file.
11540 * sysdeps/x86_64/dl-machine.h: New file.
11541 * sysdeps/x86_64/elf/initfini.c: New file.
11542 * sysdeps/x86_64/elf/start.S: New file.
11543 * sysdeps/x86_64/ffs.c: New file.
11544 * sysdeps/x86_64/ffsll.c: New file.
11545 * sysdeps/x86_64/fpu/bits/fenv.h: New file.
11546 * sysdeps/x86_64/fpu/bits/mathdef.h: New file.
11547 * sysdeps/x86_64/fpu/e_acosl.c: New file.
11548 * sysdeps/x86_64/fpu/e_atan2l.c: New file.
11549 * sysdeps/x86_64/fpu/e_exp2l.S: New file.
11550 * sysdeps/x86_64/fpu/e_expl.c: New file.
11551 * sysdeps/x86_64/fpu/e_fmodl.S: New file.
11552 * sysdeps/x86_64/fpu/e_log10l.S: New file.
11553 * sysdeps/x86_64/fpu/e_log2l.S: New file.
11554 * sysdeps/x86_64/fpu/e_logl.S: New file.
11555 * sysdeps/x86_64/fpu/e_powl.S: New file.
11556 * sysdeps/x86_64/fpu/e_rem_pio2l.c: New file.
11557 * sysdeps/x86_64/fpu/e_scalbl.S: New file.
11558 * sysdeps/x86_64/fpu/e_sqrtl.c: New file.
11559 * sysdeps/x86_64/fpu/fclrexcpt.c: New file.
11560 * sysdeps/x86_64/fpu/fedisblxcpt.c: New file.
11561 * sysdeps/x86_64/fpu/feenablxcpt.c: New file.
11562 * sysdeps/x86_64/fpu/fegetenv.c: New file.
11563 * sysdeps/x86_64/fpu/fegetexcept.c: New file.
11564 * sysdeps/x86_64/fpu/fegetround.c: New file.
11565 * sysdeps/x86_64/fpu/feholdexcpt.c: New file.
11566 * sysdeps/x86_64/fpu/fesetenv.c: New file.
11567 * sysdeps/x86_64/fpu/fesetround.c: New file.
11568 * sysdeps/x86_64/fpu/fgetexcptflg.c: New file.
11569 * sysdeps/x86_64/fpu/fraiseexcpt.c: New file.
11570 * sysdeps/x86_64/fpu/fsetexcptflg.c: New file.
11571 * sysdeps/x86_64/fpu/ftestexcept.c: New file.
11572 * sysdeps/x86_64/fpu/libm-test-ulps: New file.
11573 * sysdeps/x86_64/fpu/math_ldbl.h: New file.
11574 * sysdeps/x86_64/fpu/printf_fphex.c: New file.
11575 * sysdeps/x86_64/fpu/s_atanl.c: New file.
11576 * sysdeps/x86_64/fpu/s_cosl.S: New file.
11577 * sysdeps/x86_64/fpu/s_expm1l.S: New file.
11578 * sysdeps/x86_64/fpu/s_fpclassifyl.c: New file.
11579 * sysdeps/x86_64/fpu/s_isinfl.c: New file.
11580 * sysdeps/x86_64/fpu/s_isnanl.c: New file.
11581 * sysdeps/x86_64/fpu/s_log1pl.S: New file.
11582 * sysdeps/x86_64/fpu/s_logbl.c: New file.
11583 * sysdeps/x86_64/fpu/s_nextafterl.c: New file.
11584 * sysdeps/x86_64/fpu/s_nexttoward.c: New file.
11585 * sysdeps/x86_64/fpu/s_nexttowardf.c: New file.
11586 * sysdeps/x86_64/fpu/s_rintl.c: New file.
11587 * sysdeps/x86_64/fpu/s_significandl.c: New file.
11588 * sysdeps/x86_64/fpu/s_sincosl.S: New file.
11589 * sysdeps/x86_64/fpu/s_sinl.S: New file.
11590 * sysdeps/x86_64/fpu/s_tanl.S: New file.
11591 * sysdeps/x86_64/gmp-mparam.h: New file.
11592 * sysdeps/x86_64/hp-timing.c: New file.
11593 * sysdeps/x86_64/hp-timing.h: New file.
11594 * sysdeps/x86_64/htonl.S: New file.
11595 * sysdeps/x86_64/memusage.h: New file.
11596 * sysdeps/x86_64/setjmp.S: New file.
11597 * sysdeps/x86_64/soft-fp/sfp-machine.h: New file.
11598 * sysdeps/x86_64/stackinfo.h: New file.
11599 * sysdeps/x86_64/sysdep.h: New file.
11600 * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: New file.
11601
11602 * sysdeps/ieee754/ldbl-128/s_erfl.c: New file, contributed Stephen
11603 L Moshier.
11604
11605 2001-09-18 Ulrich Drepper <drepper@redhat.com>
11606
11607 * malloc/malloc.c (ptmalloc_init): Handle _environ==NULL.
11608 Reported by B. D. Elliott <bde@nwlink.com> [PR libc/2541].
11609
11610 2001-09-18 Andreas Schwab <schwab@suse.de>
11611
11612 * elf/dl-load.c (_dl_map_object_from_fd): Update handling of scope
11613 list, now that l_scope is a pointer.
11614
11615 * elf/dl-open.c (dl_open_worker): Fix thinko when enlarging the
11616 scope list.
11617
11618 2001-09-18 kaz Kojima <kkojima@rr.iij4u.or.jp>
11619
11620 * sysdeps/sh/dl-machine.h (elf_machine_rela): Fix reverse condition.
11621 (elf_machine_rela_relative): Add a missing declaration.
11622
11623 2001-09-18 Jakub Jelinek <jakub@redhat.com>
11624
11625 * sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed: New file.
11626 * sysdeps/unix/sysv/linux/s390/ldd-rewrite.sed: New file.
11627 * sysdeps/unix/sysv/linux/configure.in: Add ia64 and s390
11628 ldd-rewrite scripts.
11629
11630 2001-09-18 Ulrich Drepper <drepper@redhat.com>
11631
11632 * elf/ldd.bash.in: Update copyright message.
11633
11634 2001-09-17 H.J. Lu <hjl@gnu.org>
11635
11636 * hurd/hurdmalloc.c (bcopy): Removed.
11637 (realloc): Replace bcopy with memcpy.
11638 * hurd/path-lookup.c (file_name_path_scan): Likewise.
11639 * resolv/gethnamaddr.c (map_v4v6_address): Likewise.
11640 * sunrpc/rpcinfo.c (pmapdump): Likewise.
11641
11642 * resolv/gethnamaddr.c (getanswer): Replace bcopy with memmove.
11643 (gethostbyaddr): Likewise.
11644 * sunrpc/rpcinfo.c (get_inet_address): Likewise.
11645
11646 2001-09-18 Ulrich Drepper <drepper@redhat.com>
11647
11648 * sysdeps/gnu/eval.c: Removed.
11649
11650 2001-09-18 Andreas Jaeger <aj@suse.de>
11651
11652 * sysdeps/i386/fpu/s_logbl.S: Move to ...
11653 * sysdeps/i386/fpu/s_logbl.c: ...here, use inline assembler.
11654
11655 * sysdeps/i386/fpu/s_rintl.S: Move to ...
11656 * sysdeps/i386/fpu/s_rintl.c: ...here, use inline assembler.
11657
11658 * sysdeps/i386/fpu/s_significandl.S: Move to ...
11659 * sysdeps/i386/fpu/s_significandl.c: ...here, use inline assembler.
11660
11661 2001-09-16 Ulrich Drepper <drepper@redhat.com>
11662
11663 * string/strcoll.c [USE_IN_EXTENDED_LOCALE_MODEL]: Correctly get
11664 nrules value.
11665
11666 2001-09-14 H.J. Lu <hjl@gnu.org>
11667
11668 * sysdeps/mips/fpu/libm-test-ulps: Updated.
11669
11670 2001-09-14 Ulrich Drepper <drepper@redhat.com>
11671
11672 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Fix a typo.
11673 Patch by Florian La Roche <laroche@redhat.com>.
11674
11675 * string/bits/string2.h (__strtok_r_1c): Optimize a bit.
11676
11677 * sysdeps/unix/sysv/linux/net/ethernet.h: Correct references to
11678 ETHER_CRC_LEN.
11679
11680 2001-09-14 Andreas Schwab <schwab@suse.de>
11681
11682 * posix/execl.c: Fix last argument of memcpy. Reported by Brian
11683 Sumner <bls@sgi.com>.
11684 * posix/execlp.c: Likewise.
11685
11686 2001-09-13 Jakub Jelinek <jakub@redhat.com>
11687
11688 * elf/dl-deps.c (_dl_map_object_deps): Fix filter handling if filter
11689 is already found earlier in the search scope.
11690
11691 2001-09-12 Jakub Jelinek <jakub@redhat.com>
11692
11693 * rt/Makefile (LDFLAGS-rt.so): Use shared thread library as librt's
11694 filter.
11695
11696 2001-09-13 Ulrich Drepper <drepper@redhat.com>
11697
11698 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust expected errors for j0.
11699
11700 2001-09-12 Ulrich Drepper <drepper@redhat.com>
11701
11702 * config.h.in: Enforce optimization to be used.
11703 * Makeconfig (preprocess-versions): Define ASSEMBLER.
11704 * stdlib/Makefile (isomac-CFLAGS): Define to -O.
11705 * posix/Makefile (annexc-CFLAGS): Define to -O.
11706 * sysdeps/unix/make-syscalls.sh: Define __OPTIMIZE__ in use of asm_CPP.
11707
11708 2001-09-11 Ulrich Drepper <drepper@redhat.com>
11709
11710 * nscd/nscd_gethst_r.c: Don't expect IPv6 addresses for IPv4 lookup.
11711 Patch by Stephan Kulow.
11712
11713 2001-09-08 Ben Collins <bcollins@debian.org>
11714
11715 * sysdeps/arm/dl-machine.h (elf_machine_rel): Fix thinko in
11716 usage of RESOLVE() (r_type, not reloc->r_type).
11717
11718 2001-09-08 Ulrich Drepper <drepper@redhat.com>
11719
11720 * elf/dl-object.c: Avoid allocating extra memory block for name.
11721 * elf/dl-close.c (_dl_close): Don't free l_libname if it is not
11722 allocated separately.
11723 * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
11724
11725 2001-09-08 H.J. Lu <hjl@gnu.org>
11726
11727 * po/zh_TW.po: Fix a typo.
11728
11729 2001-09-07 Tom Rix <trix@redhat.com>
11730
11731 * sysdeps/unix/sysv/aix/sysv_termio.h: New file.
11732
11733 2001-08-26 Tom Rix <trix@redhat.com>
11734
11735 * sysdeps/unix/sysv/aix/Makefile (aix-syscalls.o): More linker
11736 command line options.
11737 * sysdeps/unix/sysv/aix/start.s: New file, rework of start.c
11738 * sysdeps/unix/sysv/aix/start.c: Removed.
11739 * sysdeps/unix/sysv/aix/start-libc.c: New file.
11740 * sysdeps/unix/sysv/aix/init-first.c: New file.
11741 * sysdeps/unix/sysv/aix/fcntl.c: Alias __libc_fcntl to __fcntl.
11742
11743 2001-09-08 Ben Collins <bcollins@debian.org>
11744
11745 * sysdeps/arm/dl-machine.h: Fix usage of new _dl_signal_error() format.
11746 * sysdeps/generic/dl-machine.h: Likewise.
11747 * sysdeps/hppa/dl-fptr.c: Likewise.
11748 * sysdeps/ia64/dl-fptr.c: Likewise.
11749 * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
11750 * sysdeps/mips/dl-machine.h: Likewise.
11751 * sysdeps/mips/mips64/dl-machine.h: Likewise.
11752 * sysdeps/powerpc/dl-machine.c: Likewise.
11753
11754 2001-09-07 Ben Collins <bcollins@debian.org>
11755
11756 * sysdeps/sparc/sparc32/dl-machine.h: Fix typo.
11757
11758 * sysdeps/hppa/dl-lookupcfg.h: Forward declare struct link_map.
11759
11760 2001-09-08 Ulrich Drepper <drepper@redhat.com>
11761
11762 * elf/dl-lookup.c (add_dependency): Bump l_opencount of all
11763 dependencies if necessary.
11764
11765 * elf/dl-close.c (_dl_close): If object has no r_list (i.e., wasn't
11766 loaded directly) determine length if l_initfini list by iterating
11767 over its elements. Minor optimizations.
11768 * elf/dl-deps.c (_dl_map_object_deps): Always add own map to l_initfini
11769 for dependency objects.
11770 If object was already loaded check whether any of the dependencies
11771 is already on the relocation dependency list. If yes, remove the
11772 latter. Minor optimizations.
11773 * elf/dl-lookup.c (add_dependency): Add check for self reference of
11774 maps here. Search l_initfini list only if the object was loaded
11775 directly and not only as a dependency.
11776 (_dl_lookup_symbol): Add relocation dependency also if object
11777 is not in global scope. Remove test for self-reference here.
11778 (_dl_lookup_versioned_symbol): Likewise.
11779 * elf/dl-object (_dl_new_object): Cleanup. Initialize dont_free
11780 element of first name record.
11781 * elf/loadtest.c: Add some more test to recognize early if an object
11782 wasn't unloaded.
11783 * elf/Makefile: Add rules to build and run reldep5.
11784 * elf/reldep5.c: New file.
11785 * elf/reldepmod5.c: New file.
11786 * elf/reldepmod6.c: New file.
11787
11788 * elf/reldep2.c: Fix typo.
11789
11790 2001-09-07 Ulrich Drepper <drepper@redhat.com>
11791
11792 * include/link.h (struct link_map): Add l_scope_mem and l_scope_max
11793 elements. Change l_scope to be a pointer only.
11794 * elf/dl-object.c (_dl_new_object): Initialize l_scope and l_scope_max.
11795 * elf/dl-open.c (dl_open_worker): If dependency wasn't just opened
11796 here add searchlist of newly open file to the dependency's scope.
11797 * elf/dl-close.c (_dl_close): If dependency is used otherwise remove
11798 only searchlist from its scope. Free own scope array if necessary.
11799 * elf/Makefile (tests): Add dblload and dblunload now.
11800
11801 2001-09-06 Andreas Jaeger <aj@suse.de>
11802
11803 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: New file, contributed
11804 Stephen L Moshier.
11805
11806 2001-09-05 Ulrich Drepper <drepper@redhat.com>
11807
11808 * elf/Makefile: Add rules to build new tests. Don't run them yet since
11809 they both fail.
11810 * elf/dblload.c: New file.
11811 * elf/dblloadmod1.c: New file.
11812 * elf/dblloadmod2.c: New file.
11813 * elf/dblloadmod3.c: New file.
11814 * elf/dblunload.c: New file.
11815
11816 2001-09-04 Richard Henderson <rth@redhat.com>
11817
11818 * elf/elf.h (R_ALPHA_OP_*, R_ALPHA_IMMED_*): Remove.
11819 (R_ALPHA_GPREL16): Rename from R_ALPHA_IMMED_GP_16.
11820
11821 2001-09-04 Ulrich Drepper <drepper@redhat.com>
11822
11823 Correct very misleading message for error in failed runtime relocation.
11824 * elf/dl-error.c (_dl_signal_error): Take extra parameter to describe
11825 place of the error.
11826 (_dl_signal_cerror): Likewise.
11827 * sysdeps/generic/ldsodefs.h: Adjust prototypes.
11828 * elf/dl-close.c: Likewise.
11829 * elf/dl-deps.c: Likewise.
11830 * elf/dl-load.c: Likewise.
11831 * elf/dl-lookup.c: Likewise.
11832 * elf/dl-open.c: Likewise.
11833 * elf/dl-reloc.c: Likewise.
11834 * elf/dl-sym.c: Likewise.
11835 * elf/dl-version.c: Likewise.
11836 * sysdeps/generic/dl-sysdep.c: Likewise.
11837
11838 2001-09-04 Jakub Jelinek <jakub@redhat.com>
11839
11840 * iconv/strtab.c (strtabinit): Initialize null Strent.
11841 (newstring): Move len == 0 handling...
11842 (strtabadd): ...here.
11843 If len == 1, return null Strent.
11844 When inserting a suffix of an existing string, check if
11845 it is not equal to some suffix already recorded.
11846 Copy left and right members over if adding longer string.
11847
11848 2001-09-04 Jakub Jelinek <jakub@redhat.com>
11849
11850 * sunrpc/rpc_cout.c (upcase): Account for trailing '\0'.
11851
11852 * sysdeps/unix/sysv/linux/alpha/gethostname.c: Include <errno.h>.
11853 (__syscall_gethostname): Add prototype.
11854
11855 2001-09-04 Ulrich Drepper <drepper@redhat.com>
11856
11857 * elf/dl-object.c (_dl_new_object): Remove unnecessary if.
11858
11859 2001-09-02 Ulrich Drepper <drepper@redhat.com>
11860
11861 * elf/rtld.c (dl_main): Increment l_opencount for main binary.
11862
11863 2001-08-27 Roland McGrath <roland@frob.com>
11864
11865 * sysdeps/unix/sysv/gethostname.c (__gethostname): When LEN is too
11866 short, copy that much into NAME anyway before returning error.
11867
11868 2001-09-01 Richard Henderson <rth@redhat.com>
11869
11870 * sysdeps/alpha/elf/Dist: Remove file.
11871 * sysdeps/alpha/elf/Makefile: Remove file.
11872 * sysdeps/alpha/elf/crtbegin.S: Remove file.
11873 * sysdeps/alpha/elf/crtend.S: Remove file.
11874 * sysdeps/alpha/elf/initfini.c: New file.
11875
11876 2001-09-01 Mark Kettenis <kettenis@gnu.org>
11877
11878 * iconv/tst-iconv1.c: Include <stddef.h> for wchar_t.
11879 * iconv/tst-iconv3.c: Likewise.
11880
11881 2001-09-01 Jakub Jelinek <jakub@redhat.com>
11882
11883 * sysdeps/generic/inttypes.h (__gwchar_t): Define to wchar_t for C++.
11884
11885 2001-09-01 Ulrich Drepper <drepper@redhat.com>
11886
11887 * iconv/gconv_cache.c: Rename variable cache to __gconv_cache and
11888 export it.
11889 * iconv/Versions (libc) [GLIBC_2.2.5]: Export __gconv_cache.
11890 * iconv/iconv_prog.c (insert_cache): New function.
11891 (print_known_names): If cache is used call insert_cache to use the
11892 information from the cache [PR libc/2509].
11893
11894 2001-08-31 Ulrich Drepper <drepper@redhat.com>
11895
11896 * time/strptime.c (strptime_internal): Recognize 'l' format and
11897 handle it like 'I' for symmetry with strftime.
11898
11899 2001-08-31 Richard Henderson <rth@redhat.com>
11900
11901 * elf/dl-support.c (_dl_cpuclock_offset): Protect with NONAVAIL.
11902 (HP_TIMING_AVAIL): Set to HP_SMALL_TIMING_AVAIL if present.
11903 * elf/rtld.c (HP_TIMING_AVAIL): Likewise.
11904 (print_statistics): Make scalar unsigned long long.
11905 * sysdeps/alpha/hp-timing.h: New file.
11906
11907 2001-08-31 Jakub Jelinek <jakub@redhat.com>
11908
11909 * stdio-common/perror.c (perror): Save errno early, pass it
11910 down to perror_internal.
11911 (perror_internal): Add errnum argument.
11912
11913 2001-08-31 Jakub Jelinek <jakub@redhat.com>
11914
11915 * sysdeps/alpha/dl-machine.h (elf_machine_rela): Remove unused code.
11916 Don't add old memory content for R_ALPHA_REFQUAD.
11917
11918 2001-08-30 Ulrich Drepper <drepper@redhat.com>
11919
11920 * crypt/md5-crypt.c (__md5_crypt_r): Compute used and required
11921 memory correctly.
11922
11923 * sysdeps/unix/sysv/linux/ia64/ioperm.c (_ioperm): Use __open
11924 instead of open, __close instead of close, __getpagesize instead
11925 of getpagesize.
11926
11927 * string/argz-stringify.c (__argz_stringify): Use __strnlen
11928 instead of strnlen.
11929 * include/string.h (strndupa): Redefine here to use __strnlen
11930 instead of strnlen.
11931 * string/strndup.c (__strndup): Use __strnlen not strnlen.
11932
11933 * misc/syslog.c (vsyslog): Fix typo in last change (connect ->
11934 connected).
11935
11936 2001-08-30 Jakub Jelinek <jakub@redhat.com>
11937
11938 * sysdeps/alpha/dl-machine.h (elf_machine_rela): Don't handle
11939 R_ALPHA_RELATIVE if RTLD_BOOTSTRAP and HAVE_Z_COMBRELOC. Only check
11940 for rtld map if neither RTLD_BOOTSTRAP nor HAVE_Z_COMBRELOC is defined.
11941 * sysdeps/i386/dl-machine.h (elf_machine_rel): Similarly.
11942 * sysdeps/ia64/dl-machine.h (elf_machine_rel): Similarly.
11943 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rel): Similarly.
11944 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rel): Similarly.
11945
11946 2001-08-30 Ulrich Drepper <drepper@redhat.com>
11947
11948 * sysdeps/alpha/fpu/libm-test-ulps: Adjust j0 ULPs.
11949
11950 2001-08-30 Andreas Jaeger <aj@suse.de>
11951
11952 * sysdeps/ieee754/ldbl-128/e_jnl.c: New file,
11953 contributed Stephen L Moshier.
11954
11955 2001-08-30 Jakub Jelinek <jakub@redhat.com>
11956
11957 * sunrpc/etc.rpc (sgi_fam): Add.
11958
11959 2001-08-30 Ulrich Drepper <drepper@redhat.com>
11960
11961 * sysdeps/unix/sysv/linux/alpha/gethostname.c: New file.
11962
11963 2001-08-29 Ulrich Drepper <drepper@redhat.com>
11964
11965 * nis/nis_findserv.c (__nis_findfastest): Don't fail if reply received
11966 first is from a previous call.
11967 Patch by Alexander Belopolsky <alexb@rentec.com> for [PR libc/3670].
11968
11969 2001-08-29 Andreas Schwab <schwab@suse.de>
11970
11971 * sysdeps/ia64/fpu/libm-test-ulps: Updated.
11972
11973 2001-08-25 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
11974
11975 * config.make.in (INSTALL_SCRIPT): Define.
11976 * Makeconfig (INSTALL_SCRIPT): Define.
11977 * Makerules (do-install-script): New macro to install scripts using
11978 INSTALL_SCRIPT.
11979 (install-bin-script): New rule to install scripts with
11980 do-install-script.
11981 (install-bin-script-nosubdir): New rule.
11982 (install-no-libc.a-nosubdir): Add install-bin-script-nosubdir.
11983 (distinfo-vars): Add $(install-bin-script).
11984 * Rules (others): Likewise.
11985 * Makefile (glibcbug): Install with install-bin-script.
11986 * debug/Makefile (xtrace): Likewise.
11987 (catchsegv): Likewise.
11988 * elf/Makefile (ldd): Likewise.
11989 * malloc/Makefile (mtrace): Likewise.
11990 * timezone/Makefile (tzselect): Likewise.
11991
11992 2001-08-29 H.J. Lu <hjl@gnu.org>
11993
11994 * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Pass
11995 ELF_RTYPE_CLASS_PLT, instead of R_MIPS_REL32, to
11996 _dl_lookup_versioned_symbol () and _dl_lookup_symbol ().
11997
11998 2001-08-29 Andreas Schwab <schwab@suse.de>
11999
12000 * sysdeps/m68k/fpu/libm-test-ulps: Updated.
12001
12002 2001-08-28 H.J. Lu <hjl@gnu.org>
12003
12004 * Makeconfig (combreloc-LDFLAGS): New variable.
12005 Add it to LDFLAGS.so, LDFLAGS-rtld, and +link.
12006 * config.make.in (have-z-combreloc): New variable.
12007 * configure.in: Substitute libc_cv_z_combreloc.
12008
12009 2001-08-29 Ulrich Drepper <drepper@redhat.com>
12010
12011 * po/sv.po: Update from translation team.
12012 * po/fr.po: Likewise.
12013 * po/da.po: Likewise.
12014
12015 2001-08-28 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
12016
12017 * Makerules: Fix a typo: MD% -> MD5.
12018
12019 2001-08-28 Ulrich Drepper <drepper@redhat.com>
12020
12021 * sunrpc/rpc_hout.c (pargdef): Function must take pointer to object.
12022 Patch by Patrick Duval <Patrick.Duval@devinci.fr>.
12023
12024 2001-08-28 Andreas Jaeger <aj@suse.de>
12025
12026 * manual/libc-texinfo.sh: Add entry about free manuals.
12027
12028 * manual/contrib.texi (Contributors): Fix cross reference.
12029
12030 * manual/libc.texinfo (Copying): Include freemanuals.
12031
12032 * manual/Makefile (appendices): Add freemanuals.
12033
12034 * manual/freemanuals.texi: New file.
12035 Patch by Brian Youmans <3diff@gnu.org>.
12036
12037 * manual/libm-err-tab.pl: Pretty print more platforms, print a
12038 smaller table.
12039
12040 * manual/math.texi (Errors in Math Functions): Fix grammar, start
12041 table on separate page.
12042 Patch by Brian Youmans <3diff@gnu.org>.
12043
12044 2001-08-27 Ulrich Drepper <drepper@redhat.com>
12045
12046 * misc/syslog.c (vsyslog): Try a bit harder to use syslogd. If
12047 the connection went down after we first used it try to connect
12048 again and resend the message before printing to the console.
12049 Reported by Coserea Gh. Tudor <tudore@tudore.gecadsoftware.com>.
12050
12051 2001-08-27 Jakub Jelinek <jakub@redhat.com>
12052
12053 * string/tst-strlen.c (main): Test strnlen (, -1) too.
12054 * sysdeps/generic/strnlen.c (__strnlen): Fix for maxlens with top
12055 bit set.
12056
12057 2001-08-27 Ulrich Drepper <drepper@redhat.com>
12058
12059 * iconv/strtab.c (searchstring): Use correct length for comparison.
12060 (strtabadd): Account total size correct if new string has old string as
12061 substring.
12062
12063 2001-08-27 Jakub Jelinek <jakub@redhat.com>
12064
12065 * elf/rtld.c (dl_main): Update call to _dl_lookup_symbol.
12066
12067 2001-08-27 Andreas Jaeger <aj@suse.de>
12068
12069 * sysdeps/i386/fpu/libm-test-ulps (float): Add ulps for new tests.
12070
12071 * math/libm-test.inc (j0_test): Add extra tests.
12072 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Use |x|,
12073 not x, in Hankel approximation.
12074 Patches by Stephen L Moshier.
12075
12076 2001-08-26 Ulrich Drepper <drepper@redhat.com>
12077
12078 * sysdeps/ia64/dl-lookupcfg.h: Add forward declaration for struct
12079 link_map.
12080
12081 * configure.in: Fix test for .rela.dyn section.
12082
12083 * elf/dl-runtime.c: Update calls to _dl_lookup_*.
12084
12085 2001-08-26 Jakub Jelinek <jakub@redhat.com>
12086
12087 * elf/dl-reloc.c (RESOLVE_MAP, RESOLVE): Use elf_machine_type_class
12088 instead of elf_machine_lookup_noexec_p and elf_machine_lookup_noplt_p.
12089 Pass type_class to _dl_lookup_*.
12090 * elf/dl-lookup.c (_dl_lookup_symbol): Take type_class parameter now.
12091 Pass around just type_class instead of noexec, noplt pair.
12092 (_dl_lookup_versioned_symbol): Likewise.
12093 (_dl_lookup_symbol_skip): Pass around just type_class instead of
12094 noexec, noplt pair.
12095 (_dl_lookup_versioned_symbol_skip): Likewise.
12096 (_dl_do_lookup, _dl_do_lookup_versioned): Likewise.
12097 * elf/do-lookup.h (do_lookup): Likewise.
12098 * include/link.h (struct link_map): Replace noexec and noplt fields
12099 in l_lookup_cache with type_class field.
12100 * sysdeps/generic/ldsodefs.h (ELF_RTYPE_CLASS_PLT,
12101 ELF_RTYPE_CLASS_COPY): Define.
12102 Adjust prototypes for _dl_lookup_symbol and
12103 _dl_lookup_versioned_symbol.
12104 * sysdeps/alpha/dl-machine.h (elf_machine_lookup_noplt_p,
12105 elf_machine_lookup_noexec_p): Remove.
12106 (elf_machine_type_class): Define.
12107 * sysdeps/arm/dl-machine.h: Likewise.
12108 * sysdeps/hppa/dl-machine.h: Likewise.
12109 * sysdeps/cris/dl-machine.h: Likewise.
12110 * sysdeps/i386/dl-machine.h: Likewise.
12111 * sysdeps/ia64/dl-machine.h: Likewise.
12112 * sysdeps/m68k/dl-machine.h: Likewise.
12113 * sysdeps/mips/mips64/dl-machine.h: Likewise.
12114 * sysdeps/mips/dl-machine.h: Likewise.
12115 * sysdeps/powerpc/dl-machine.h: Likewise.
12116 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
12117 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
12118 * sysdeps/sh/dl-machine.h: Likewise.
12119 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
12120 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
12121
12122 2001-08-26 Ulrich Drepper <drepper@redhat.com>
12123
12124 * manual/message.texi (Advanced gettext functions): Change
12125 description of plural forms for Slovak.
12126 Reported by Marcel Telka <marcel@telka.sk>.
12127
12128 * manuaL/time.texi (Low-Level Time String Parsing): Fix description of
12129 %z. Reported by C. Scott Ananian <cananian@lesser-magoo.lcs.mit.edu>.
12130
12131 2001-08-26 Jakub Jelinek <jakub@redhat.com>
12132
12133 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_lazy_rel): Fix a
12134 typo. Patch by Florian La Roche <laroche@redhat.com>.
12135
12136 2001-08-26 Ulrich Drepper <drepper@redhat.com>
12137
12138 * include/link.h (struct link_map): Add l_lookup_cache element.
12139 * elf/dl-reloc.c (RESOLVE): Add symbol caching here.
12140 (RESOLVE_MAP): Likewise.
12141 (_dl_relocate_object): Remove cache initialization.
12142 * elf/dl-lookup.c: Rip out cache handling code.
12143 * sysdeps/generic/ldsodefs.h: Remove lookup_cache struct and variable
12144 declarations.
12145
12146 * elf/dl-lookup.c (_dl_lookup_symbol): Reorder some conditions and
12147 remove some __builtin_expect.
12148 (_dl_lookup_versioned_symbol): Likewise.
12149
12150 * config.h.in: Add HAVE_Z_COMBRELOC.
12151 * configure.in: Add test for -z combreloc.
12152
12153 * sysdeps/i386/dl-machine.h (elf_machine_rel): Minor cleanups and
12154 optimizations. Use HAVE_Z_COMBRELOC to avoid generaton of
12155 R_386_RELATIVE handling for ld.so startup. Reduce RTLD_BOOTSTRAP
12156 case to almost no code.
12157
12158 2001-08-25 Ulrich Drepper <drepper@redhat.com>
12159
12160 * po/tr.po: Update from translation team.
12161
12162 2001-08-24 Andreas Jaeger <aj@suse.de>
12163
12164 * iconv/Makefile (extra-objs): Add iconvconfig-modules so that
12165 make clean works.
12166
12167 2001-08-24 Ulrich Drepper <drepper@redhat.com>
12168
12169 * elf/rtld.c (print_statistics): Printf % after percent values.
12170 * elf/dl-misc.c (_dl_debug_vdprintf): Implement %%.
12171
12172 * elf/dl-lookup.c (_dl_lookup_symbol): If we use the cache we
12173 don't have to compute the hash value and initialize current_value.
12174 Move reference_name variable to where it is needed.
12175 (_dl_lookup_versioned_symbol): Likewise.
12176
12177 2001-08-24 Roland McGrath <roland@frob.com>
12178
12179 * string/tester.c (test_strerror): Don't use _sys_errlist/_sys_nerr.
12180 Just test that strerror returns non-null for a few errno codes.
12181
12182 2001-08-23 Roland McGrath <roland@frob.com>
12183
12184 * hurd/Versions (libc: GLIBC_2.2.5): New set; add _hurd_raise_signal,
12185 _hurdsig_interrupt_timeout, _hurdsig_fault_preemptor.
12186
12187 * sysdeps/posix/shm_unlink.c (shm_unlink): __unlink -> unlink.
12188
12189 * mach/Versions (libc: GLIBC_2.2.5): New set; add __mach_msg_destroy,
12190 __mach_reply_port.
12191
12192 2001-08-24 Ulrich Drepper <drepper@redhat.com>
12193
12194 * nss/test-netdb.c (test_hosts): Don't segfault if gethostname
12195 returns NULL.
12196
12197 * elf/do-rel.h (elf_dynamic_do_rel): Fix problem with ld.so
12198 startup. Explicitly remove lazy part for RTLD_BOOTSTRAP since gcc
12199 doesn't do it.
12200 * elf/rtld.c: Include <sys/param.h>.
12201 * elf/dl-reloc.c: Likewise.
12202
12203 2001-08-24 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
12204
12205 * sysdeps/unix/sysv/linux/mips/configure.in: Define AC_SUBST to
12206 empty to prevent junk from being generated.
12207 * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
12208
12209 2001-08-24 Jakub Jelinek <jakub@redhat.com>
12210
12211 * elf/do-rel.h (elf_dynamic_do_rel): If l_addr is 0, skip relative
12212 records. Rename endrel to relative, initialize it to r, and use it
12213 in elf_machine_rel_relative calls. Point r after relative relocs.
12214
12215 2001-08-24 Ulrich Drepper <drepper@redhat.com>
12216
12217 * sysdeps/i386/dl-machine.h (elf_machine_rel): Correct prediction
12218 of R_386_NONE.
12219
12220 2001-08-24 Jakub Jelinek <jakub@redhat.com>
12221
12222 * elf/do-rel.h (elf_machine_rel_relative): Define for rela if
12223 necessary. Undefine newly defined macros at the end.
12224 * sysdeps/hppa/dl-machine.h (elf_machine_rela_relative):
12225 Rename from elf_machine_rel_relative.
12226 * sysdeps/cris/dl-machine.h (elf_machine_rela_relative): Likewise.
12227 * sysdeps/m68k/dl-machine.h (elf_machine_rela_relative): Likewise.
12228 * sysdeps/powerpc/dl-machine.h (elf_machine_rela_relative): Likewise.
12229 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela_relative):
12230 Likewise.
12231 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela_relative):
12232 Likewise.
12233 * sysdeps/ia64/dl-machine.h (elf_machine_rela_relative): Likewise.
12234 Fix argument types.
12235 * sysdeps/alpha/dl-machine.h (elf_machine_rela_relative): Likewise.
12236 Fix argument types.
12237 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela_relative):
12238 Likewise. Fix argument types.
12239 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela_relative):
12240 Likewise. Fix argument types.
12241 * sysdeps/sh/dl-machine.h (elf_machine_rela_relative): Likewise.
12242 Fix argument types.
12243 * sysdeps/mips/dl-machine.h (elf_machine_rel_relative): Use
12244 ElfW(Rel) in argument.
12245 * sysdeps/mips/mips64/dl-machine.h (elf_machine_rel_relative): New
12246 function.
12247
12248 2001-08-24 Alexandre Oliva <aoliva@redhat.com>
12249
12250 * sysdeps/sh/dl-machine.h (elf_machine_rela): Fix typo.
12251
12252 2001-08-24 Andreas Jaeger <aj@suse.de>
12253
12254 * sysdeps/ieee754/ldbl-128/e_j1l.c: New file, contributed by
12255 Stephen L Moshier <moshier@mediaone.net>.
12256
12257 2001-08-24 Ulrich Drepper <drepper@redhat.com>
12258
12259 * elf/do-rel.h (elf_dynamic_do_rel): RELATIVE relocations comes
12260 first if RELCOUNT is set.
12261
12262 * elf/do-rel.h (elf_dynamic_do_rel): If not relocating lazily, don't
12263 call elf_machine_rel for the last DT_RELCOUNT relocations but instead
12264 elf_machine_rel_relative.
12265 * sysdeps/alpha/dl-machine.h: Define elf_machine_rel_relative.
12266 Minor optimizations.
12267 * sysdeps/arm/dl-machine.h: Likewise.
12268 * sysdeps/cris/dl-machine.h: Likewise.
12269 * sysdeps/hppa/dl-machine.h: Likewise.
12270 * sysdeps/i386/dl-machine.h: Likewise.
12271 * sysdeps/ia64/dl-machine.h: Likewise.
12272 * sysdeps/m68k/dl-machine.h: Likewise.
12273 * sysdeps/mips/dl-machine.h: Likewise.
12274 * sysdeps/powerpc/dl-machine.h: Likewise.
12275 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
12276 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
12277 * sysdeps/sh/dl-machine.h: Likewise.
12278 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
12279 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
12280
12281 2001-08-23 Roland McGrath <roland@frob.com>
12282
12283 * rt/tst-aio4.c [! SIGRTMIN] (SIGRTMIN, SIGRTMAX): Define as -1.
12284
12285 * sysdeps/mach/hurd/bits/libc-lock.h: New file, initially copied from
12286 sysdeps/mach version. Implement counting ("recursive") mutexes
12287 on top of cthreads mutexes.
12288 * sysdeps/mach/hurd/bits/stdio-lock.h: File removed; generic now works.
12289
12290 * sysdeps/generic/bits/stdio-lock.h (_IO_lock_initializer): Define to
12291 _LIBC_LOCK_RECURSIVE_INITIALIZER if defined, else do an #error.
12292 (__libc_cleanup_region_start, __libc_cleanup_region_end,
12293 __libc_clean_end): Define these to call the cleanup function after
12294 normal exit when they're supposed to.
12295
12296 * sysdeps/mach/bits/libc-lock.h (__libc_cleanup_region_start):
12297 Take new first arg DOIT, a boolean saying whether to really install
12298 any cleanup handler.
12299 (__libc_cleanup_region_end): Do nothing if start's DOIT arg was zero.
12300 (__libc_cleanup_end): Likewise.
12301 * sysdeps/generic/bits/libc-lock.h: Same changes.
12302 * stdio-common/vfscanf.c (LOCK_STREAM): Pass new arg.
12303 * stdio-common/vfprintf.c (buffered_vfprintf, vfprintf): Likewise.
12304 * sysdeps/mach/hurd/bits/stdio-lock.h (_IO_cleanup_region_start):
12305 Likewise.
12306 * misc/syslog.c (vsyslog, openlog, closelog): Likewise.
12307 * sysdeps/generic/bits/stdio-lock.h
12308 (_IO_cleanup_region_start, _IO_cleanup_region_start_noarg): Likewise.
12309
12310 2001-08-23 Jakub Jelinek <jakub@redhat.com>
12311
12312 * elf/ldconfig.c (search_dir): Remove stale symlinks.
12313
12314 2001-08-23 Jakub Jelinek <jakub@redhat.com>
12315
12316 * elf/dl-lookup.c (lookup_cache, lookup_cache_versioned): New
12317 functions.
12318 (_dl_lookup_symbol): Lookup relocations in cache and store successfull
12319 lookups in cache.
12320 (_dl_lookup_versioned_symbol): Likewise.
12321 * elf/dl-reloc.c (_dl_relocate_object): Initialize cache for
12322 relocation lookup.
12323 * elf/rtld.c (print_statistics): Output _dl_num_cache_relocations.
12324 * sysdeps/generic/ldsodefs.h (struct lookup_cache): New definition.
12325 (lookup_cache, lookup_cache_versioned): Add declarations.
12326
12327 2001-08-23 Ulrich Drepper <drepper@redhat.com>
12328
12329 * stdlib/tst-random.c (main): Swap parameters in fail call.
12330 Patch by Pete Bevin <pete@petebevin.com>.
12331
12332 2001-08-23 Jakub Jelinek <jakub@redhat.com>
12333
12334 * sysdeps/generic/inttypes.h: Use __gwchar_t instead of __wchar_t.
12335
12336 2001-08-23 Ulrich Drepper <drepper@redhat.com>
12337
12338 * malloc/obstack.c: Indent preprocessor directives.
12339 Patch by Jim Meyering <meyering@ascend.com>.
12340
12341 * po/ja.po: Update from translation team.
12342
12343 2001-08-23 Roland McGrath <roland@frob.com>
12344
12345 * libio/tst-ungetwc1.c (main): Add a const to quiet a warning.
12346
12347 * nss/test-netdb.c (test_hosts): Don't use MAXHOSTNAMELEN.
12348 Instead, use dynamic buffer to test gethostname's ENAMETOOLONG error.
12349
12350 2001-08-22 Roland McGrath <roland@frob.com>
12351
12352 * sysdeps/generic/ldsodefs.h (_dl_load_lock): Declare it here with
12353 __libc_lock_define_recursive.
12354 * elf/dl-open.c: Don't declare it here any more.
12355 * elf/dl-close.c: Likewise.
12356 * elf/dl-lookup.c: Likewise.
12357 * elf/dl-iteratephdr.c: Likewise.
12358 * elf/dl-lookup.c (add_dependency): Use __libc_lock_lock_recursive and
12359 __libc_lock_unlock_recursive.
12360 * elf/dl-close.c (_dl_close): Likewise
12361 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise
12362 * elf/dl-open.c (_dl_open): Likewise
12363
12364 * sysdeps/generic/bits/libc-lock.h
12365 (__libc_lock_define_recursive): New macro.
12366 * sysdeps/generic/bits/stdio-lock.h (_IO_lock_t): Use it.
12367 (_IO_lock_lock): Use __libc_lock_lock_recursive.
12368 (_IO_lock_unlock): Use __libc_lock_unlock_recursive.
12369
12370 * conform/conformtest.pl (checknamespace): Sort the output list.
12371
12372 * sysdeps/generic/bits/poll.h (POLLWRBAND): New alias for POLLOUT.
12373 (POLLRDNORM, POLLRDBAND, POLLWRNORM, POLLWRBAND): Make these
12374 definitions conditional on [__USE_XOPEN].
12375
12376 * sysdeps/mach/hurd/bits/fcntl.h (O_ASYNC, O_FSYNC, O_SYNC): Define
12377 these unconditionally, not only use [__USE_BSD], so as to match
12378 the sysdeps/unix/sysv/linux files.
12379
12380 2001-08-22 Ulrich Drepper <drepper@redhat.com>
12381
12382 * test-skeleton.c (add_temp_file): Add __attribute__ ((unused)) to
12383 avoid warnings.
12384
12385 * dlfcn/tst-dladdr.c (do_test): Get address of ref1 using
12386 DL_LOOKUP_ADDRESS.
12387
12388 2001-08-22 Roland McGrath <roland@frob.com>
12389
12390 * sysdeps/generic/bits/sigaction.h (struct sigaction): Fix up
12391 conditionalization of sa_handler/sa_sigaction member types to
12392 match the sysdeps/unix/sysv/linux file.
12393
12394 2001-08-22 Ulrich Drepper <drepper@redhat.com>
12395
12396 * elf/dl-addr.c (_dl_addr): Handle broken binaries with zero
12397 symbol sizes a bit better.
12398
12399 * sysdeps/ia64/strncpy.S: Complete rewrite.
12400 Contributed by Jakub Jelinek <jakub@redhat.com>.
12401
12402 * string/stratcliff.c (main): Add strncpy test.
12403
12404 2001-08-22 Roland McGrath <roland@frob.com>
12405
12406 * sysdeps/generic/dl-environ.c: Include <stdlib.h> and <unistd.h>,
12407 and don't declare unsetenv or _environ directly.
12408 (unsetenv): Return int, not void. Use __environ instead of _environ.
12409
12410 2001-08-01 Mark Kettenis <kettenis@gnu.org>
12411
12412 * sysdeps/unix/bsd/bsd4.4/Makefile: New file.
12413 * sysdeps/unix/bsd/bsd4.4/Versions: New file.
12414 * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: New file.
12415 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Correct
12416 test for cmsg struct size.
12417
12418 2001-04-23 Paul Eggert <eggert@twinsun.com>
12419
12420 * posix/getopt.h (getopt_long, getopt_long_only, _getopt_internal):
12421 Rename __argc to ___argc in prototypes to avoid compatibility
12422 problems with systems that reserve the identifier "__argc".
12423 Similarly for __argv.
12424
12425 2001-08-21 Roland McGrath <roland@frob.com>
12426
12427 * stdio-common/tst-fseek.c: Include <time.h> for `time' declaration.
12428
12429 * mach/Makefile (tests): Removed.
12430 * mach/hello.c: File removed.
12431
12432 2001-08-22 Ulrich Drepper <drepper@redhat.com>
12433
12434 * po/sv.po: Update from translation team.
12435
12436 * stdio-common/vfscanf.c: Fix handling of %l[].
12437 Reported by Mitsuru Chinen <mchinen@yamato.ibm.com>.
12438
12439 * libio/Makefile (tests): Add tst-sscanf.
12440 * libio/tst-sscanf.c: New file.
12441
12442 * elf/dl-addr.c (_dl_addr): Fix tests to determine dli_sname.
12443 * malloc/mtrace.c (tr_where): dli_sname always points to a
12444 non-empty string if != NULL.
12445 Reported by Tim Janik <timj@gtk.org>.
12446
12447 2001-08-22 Jakub Jelinek <jakub@redhat.com>
12448
12449 * sunrpc/xdr_rec.c (xdrrec_create): Fix buf sizes before allocating
12450 buf. Free resources on failure.
12451 * sunrpc/svc_unix.c (svcunix_create): Free resources on failure.
12452 (makefd_xprt): Likewise.
12453 * sunrpc/svc_udp.c (svcudp_bufcreate): Likewise.
12454 * sunrpc/svc_tcp.c (svctcp_create, makefd_xprt): Likewise.
12455 * sunrpc/auth_unix.c (authunix_create): Likewise.
12456
12457 2001-08-21 Jakub Jelinek <jakub@redhat.com>
12458
12459 * string/strnlen.c: Remove.
12460 * sysdeps/generic/strnlen.c: New file.
12461 * sysdeps/i386/i486/bits/string.h (strnlen): Remove.
12462
12463 2001-08-21 Roland McGrath <roland@frob.com>
12464
12465 * sysdeps/mach/i386/machine-sp.h (__thread_stack_pointer): Define this
12466 as a macro, not an extern inline function.
12467
12468 * hurd/Versions (GLIBC_2.2.5): New set, define __hurd_fail here.
12469 * Versions.def (libc): Add GLIBC_2.2.5 set.
12470 * hurd/hurd.h (_HURD_H_EXTERN_INLINE): New macro.
12471 (__hurd_fail): Use that instead of _EXTERN_INLINE in decl.
12472
12473 2001-08-20 Roland McGrath <roland@frob.com>
12474
12475 * hurd/hurdlookup.c (__hurd_file_name_lookup): Fail with ENOENT for "".
12476 (__hurd_file_name_split, __hurd_directory_name_split): Likewise.
12477
12478 2001-08-21 Ulrich Drepper <drepper@redhat.com>
12479
12480 * string/bits/string2.h: Remove strnlen optimization here.
12481 * sysdeps/i386/i486/bits/string.h: Add it here.
12482
12483 2001-08-21 Wolfram Gloger <wg@malloc.de>
12484
12485 * malloc/malloc.c: Make access to ..._hook pointers thread-safe.
12486
12487 2001-08-21 Ulrich Drepper <drepper@redhat.com>
12488
12489 * po/gl.po: Update from translation team.
12490
12491 2001-08-20 Ulrich Drepper <drepper@redhat.com>
12492
12493 * misc/error.c (error_tail): Use fputws_unlocked instead of fputws.
12494 * misc/err.c (convert_and_print): Likewise.
12495
12496 * malloc/obstack.c (print_and_abort): Use fprintf instead of two
12497 function calls.
12498
12499 2001-08-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
12500
12501 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Revert the
12502 change of the gregset_t type.
12503 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
12504
12505 2001-08-20 kaz Kojima <kkojima@rr.iij4u.or.jp>
12506
12507 * sysdeps/unix/sysv/linux/sh/sysdep.S: Align errno.
12508
12509 2001-08-20 Ulrich Drepper <drepper@redhat.com>
12510
12511 * posix/regex.c (truncate_wchar): Use wcrtomb not wctomb.
12512
12513 * string/strnlen.c: Fix the implementation. We cannot use memchr.
12514
12515 2001-08-18 Mark Kettenis <kettenis@gnu.org>
12516
12517 * sysdeps/mach/hurd/i386/init-first.c (init): Initialize __environ
12518 before calling the cthreads initialization code.
12519
12520 2001-08-20 Ulrich Drepper <drepper@redhat.com>
12521
12522 * argp/argp-help.c: Fix two problems introduced in last change.
12523
12524 * include/dirent.h: Include <dirstream.h> first.
12525
12526 2001-08-19 Ulrich Drepper <drepper@redhat.com>
12527
12528 * io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat.
12529
12530 * sunrpc/svcauth_des.c (_svcauth_des): Avoid using bcopy.
12531 * sunrpc/xdr_rec.c: Likewise.
12532 * sunrpc/xdr_mem.c: Likewise.
12533 * sunrpc/svc_authux.c (_svcauth_unix): Likewise.
12534 * sunrpc/rpc_cmsg.c: Likewise.
12535 * sunrpc/getrpcport.c (getrpcport): Likewise.
12536 * sunrpc/clnt_simp.c (callrpc): Likewise.
12537 * sunrpc/clnt_gen.c (clnt_create): Likewise.
12538 * string/envz.c: Likewise.
12539
12540 * po/ko.po: Update from translation team.
12541
12542 * argp/argp-help.c: Handle wide oriented stderr stream.
12543
12544 2001-08-18 Ulrich Drepper <drepper@redhat.com>
12545
12546 * sysdeps/generic/strtol.c: Little optimizations. Add some
12547 __builtin_expect.
12548
12549 * conform/conformtest.pl: <inttypes.h> test requires <stddef.h>.
12550
12551 * wcsmbs/wchar.h (wcwdith): Change parameter type to wchar_t.
12552 * wcsmbs/wcwidth.c (wcwdith): Likewise.
12553 * wcsmbs/wcwidth.h (internal_wcwdith): Likewise.
12554
12555 * conform/data/unistd.h-data: Remove _SC_MULTIPLE_PROCESS.
12556
12557 * conform/data/ucontext.h-data: Fix typos in ucontext_t element tests.
12558
12559 * time/time.h (struct timespec): Use __time_t for tv_sec element.
12560
12561 * sysdeps/generic/inttypes.h: Define __wchar_t. Use it instead of
12562 wchar_t for function declarations and defintions.
12563
12564 * misc/sys/select.h: Define __need_time_t before including <time.h>.
12565 Define suseconds_t if it hasn't happened yet.
12566
12567 * iconv/gconv.h: Define __need_wchar_t before including <stddef.h>.
12568
12569 * conform/data/sys/uio.h-data: Allow UIO_MAXIOV to be defined.
12570
12571 * sysdeps/generic/stdint.h: Don't get definition of wchar_t from
12572 <stddef.h>.
12573
12574 * conform/data/stddef.h-data: Remove wint_t.
12575
12576 * conform/conformtest.pl: Change namespace test to take #undef
12577 lines into account.
12578
12579 * conform/data/netinet/in.h-data: Fix typo in allow-header line.
12580
12581 * conform/data/sys/socket.h-data: Add sockatmark.
12582
12583 2001-08-17 Ulrich Drepper <drepper@redhat.com>
12584
12585 * io/fts.c: Update from recent BSD source.
12586
12587 2001-08-17 Roland McGrath <roland@frob.com>
12588
12589 * stdio-common/perror.c (perror) [! USE_IN_LIBIO]: Don't use _IO_fwide.
12590 * misc/error.c (error_tail, error, error_at_line) [! USE_IN_LIBIO]:
12591 Likewise.
12592
12593 2001-08-17 Ulrich Drepper <drepper@redhat.com>
12594
12595 * locale/duplocale.c (__duplocale): Also initialize the special
12596 __ctype_* elements.
12597
12598 * conform/data/netdb.h-data: Adjust gai_strerror return type.
12599
12600 2001-08-17 Andreas Jaeger <aj@suse.de>
12601
12602 * misc/getpass.c: Include wchar.h for prototypes.
12603 * malloc/obstack.c: Likewise.
12604
12605 2001-08-17 Ulrich Drepper <drepper@redhat.com>
12606
12607 * sunrpc/svc_simple.c (universal): Use __write instead of write.
12608
12609 * wcsmbs/wcscoll.c: Also define __wcscoll.
12610 * include/wchar.h: Declare __wcscoll.
12611
12612 * libio/fwprintf.c: Use __vfwprintf instead of vfwprintf.
12613 * libio/vwprintf.c: Likewise.
12614 * libio/wprintf.c: Likewise.
12615
12616 * iconv/gconv_cache.c: Use __munmap instead of munmap.
12617
12618 2001-08-16 Ulrich Drepper <drepper@redhat.com>
12619
12620 * posix/regex.c [_LIBC] (convert_mbs_to_wcs): Use __mbrtowc
12621 instead of mbrtowc.
12622 [_LIBC]: Use __iswctype instead of iswctype, __wcslen instead of
12623 wcslen, and __wcscoll instead of wcscoll.
12624
12625 * sysdeps/unix/sockatmark.c (sockatmark): Use __ioctl instead of ioctl.
12626
12627 * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue): Use
12628 __getuid instead of getuid.
12629
12630 * stdio-common/perror.c (perror): Use __close instead of close.
12631 * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
12632 * libio/freopen.c (freopen): Likewise.
12633 * libio/freopen64.c (freopen64): Likewise.
12634
12635 * libio/tst-ungetwc2.c (main): Define str const.
12636
12637 * include/wchar.h: Add prototypes for __fwprintf and __vfwprintf.
12638 * libio/fwprintf.c: Also define __fwprintf.
12639 * stdio-common/vfprintf.c [COMPILE_WPRINTF]: Also define __vfwprintf.
12640 * argp/argp-fmtstream.c: Handle wide oriented stderr stream.
12641 * assert/assert-perr.c: Likewise.
12642 * assert/assert.c: Likewise.
12643 * gmon/gmon.c: Likewise.
12644 * inet/rcmd.c: Likewise.
12645 * malloc/obstack.c: Likewise.
12646 * misc/err.c: Likewise.
12647 * misc/error.c: Likewise.
12648 * misc/getpass.c: Likewise.
12649 * posix/getopt.c: Likewise.
12650 * resolv/res_hconf.c: Likewise.
12651 * stdio-common/perror.c: Likewise.
12652 * stdio-common/psignal.c: Likewise.
12653 * stdlib/fmtmsg.c: Likewise.
12654 * sunrpc/auth_unix.c: Likewise.
12655 * sunrpc/clnt_perr.c: Likewise.
12656 * sunrpc/clnt_tcp.c: Likewise.
12657 * sunrpc/clnt_udp.c: Likewise.
12658 * sunrpc/clnt_unix.c: Likewise.
12659 * sunrpc/svc_simple.c: Likewise.
12660 * sunrpc/svc_tcp.c: Likewise.
12661 * sunrpc/svc_udp.c: Likewise.
12662 * sunrpc/svc_unix.c: Likewise.
12663 * sunrpc/xdr.c: Likewise.
12664 * sunrpc/xdr_array.c: Likewise.
12665 * sunrpc/xdr_rec.c: Likewise.
12666 * sunrpc/xdr_ref.c: Likewise.
12667 * sysdeps/generic/wordexp.c: Likewise.
12668
12669 * po/it.po: Update from translation team.
12670
12671 * misc/err.c: Handle wide oriented stderr stream.
12672
12673 2001-08-14 Tom Rix <trix@redhat.com>
12674
12675 * iconv/gconv_cache.c (find_module): Add #ifndef STATIC_GCONV.
12676 * iconv/Makefile: Fix gconv_cache.c CFLAGS.
12677
12678 2001-08-13 Tom Rix <trix@redhat.com>
12679
12680 * sysdeps/unix/sysv/aix/Makefile: Add rule to import kernel symbols.
12681 * sysdeps/unix/sysv/aix/bits/types.h: Fix type of __id_t, __useconds_t
12682 and __intptr_t.
12683
12684 2001-08-15 Martin Schwidefsky <schwidefsky@de.ibm.com>
12685
12686 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S (__getcontext):
12687 Store the access registers to the ucontext structure.
12688 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S (__getcontext):
12689 Likewise.
12690
12691 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S (__setcontext):
12692 Load the access registers from the ucontext structure.
12693 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S (__setcontext):
12694 Likewise.
12695
12696 * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h: Adjust the SC_xxx
12697 offsets to the new ucontext layout.
12698 * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.h: Likewise.
12699
12700 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Fix the layout
12701 of the ucontext structure.
12702 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
12703
12704 2001-08-15 Ulrich Drepper <drepper@redhat.com>
12705
12706 * misc/error.c (error): Handle wide oriented stderr stream correctly.
12707 (error_at_line): Likewise.
12708
12709 * stdio-common/perror.c (perror): Implement according to standard.
12710 The stream orientation must not be changed if the stream was not
12711 oriented before the call.
12712 * stdio-common/Makefile (tests): Add tst-perror.
12713 * stdio-common/tst-perror.c: New file.
12714
12715
12716 See ChangeLog.12 for earlier changes.