1 2002-11-01 Roland McGrath <roland@redhat.com>
3 * sysdeps/generic/errno-loc.c [! USE___THREAD]: Use this conditional
4 in place of [!(USE_TLS && HAVE___THREAD)].
5 (__errno_location) [! USE___THREAD]: Define as strong, not weak.
7 2002-10-31 Roger Sayle <roger@eyesopen.com>
9 * sysdeps/i386/soft-fp/sfp-machine.h (_FP_NANFRAC_Q, _FP_NANSIGN_Q):
11 * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
13 * soft-fp/soft-fp.h: Allow sfp-machine.h to define FP_RND_NEAREST
14 without defining FP_ROUNDMODE.
16 2002-10-29 Jakub Jelinek <jakub@redhat.com>
18 * sysdeps/gnu/siglist.c (PTR_SIZE_STR): Remove.
19 (__old_sys_siglist, __old_sys_sigabbrev): Use strong_alias and
21 * sysdeps/mach/hurd/siglist.h (OLD_SIGLIST_SIZE_STR): Remove.
22 (OLD_SIGLIST_SIZE): Define.
23 * sysdeps/unix/sysv/linux/siglist.h (OLD_SIGLIST_SIZE_STR): Remove.
24 (OLD_SIGLIST_SIZE): Define.
25 * sysdeps/unix/sysv/linux/arm/siglist.c: Remove.
27 2002-11-01 Jakub Jelinek <jakub@redhat.com>
29 * sysdeps/ia64/strncpy.S: Fix recovery code.
31 2002-10-30 Jakub Jelinek <jakub@redhat.com>
33 * include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn):
35 * elf/dl-close.c (free_mem): Use libc_freeres_fn macro, remove
37 * elf/dl-libc.c (free_mem): Likewise.
38 * iconv/gconv_conf.c (free_mem): Likewise.
39 * iconv/gconv_db.c (free_mem): Likewise.
40 * iconv/gconv_dl.c (free_mem): Likewise.
41 * iconv/gconv_cache.c (free_mem): Likewise.
42 * intl/finddomain.c (free_mem): Likewise.
43 * intl/dcigettext.c (free_mem): Likewise.
44 * locale/setlocale.c (free_mem): Likewise.
45 * misc/fstab.c (fstab_free): Likewise.
46 * nss/nsswitch.c (free_mem): Likewise.
47 * posix/regcomp.c (free_mem): Likewise.
48 * resolv/gai_misc.c (free_res): Likewise.
49 * stdlib/fmtmsg.c (free_mem): Likewise.
50 * sunrpc/clnt_perr.c (free_mem): Likewise.
51 * sysdeps/generic/setenv.c (free_mem): Likewise.
52 * sysdeps/unix/sysv/linux/shm_open.c (freeit): Likewise.
53 * sysdeps/pthread/aio_misc.c (free_res): Likewise.
54 * time/tzset.c (free_mem): Likewise.
55 * malloc/mtrace.c (release_libc_mem): Add __libc_freeres_fn_section.
56 * locale/loadarchive.c (_nl_archive_subfreeres): Likewise.
57 * malloc/set-freeres.c (__libc_freeres): Likewise.
59 * login/getutent.c: Include stdlib.h instead of stddef.h.
60 (buffer): Change into pointer to utmp, add libc_freeres_ptr.
61 (__getutent): Allocate buffer the first time it is run.
62 * login/getutid.c: Include stdlib.h instead of stddef.h.
63 (buffer): Change into pointer to utmp, add libc_freeres_ptr.
64 (__getutid): Allocate buffer the first time it is run.
65 * login/getutline.c: Include stdlib.h instead of stddef.h.
66 (buffer): Change into pointer to utmp, add libc_freeres_ptr.
67 (__getutline): Allocate buffer the first time it is run.
68 * malloc/mtrace.c (malloc_trace_buffer): Change into char *.
69 (mtrace): Allocate malloc_trace_buffer.
70 * resolv/nsap_addr.c (inet_nsap_ntoa): Decrease size of tmpbuf.
71 * resolv/ns_print.c (ns_sprintrrf): Decrease size of t.
72 * string/strerror.c: Include libintl.h and errno.h.
74 (strerror): Only allocate buffer if actually needed (unknown error).
75 * time/tzfile.c (transitions): Add libc_freeres_ptr.
78 2002-10-25 Jakub Jelinek <jakub@redhat.com>
80 * include/libc-symbols.h (libc_freeres_ptr): New macro.
81 * malloc/set-freeres.c (__libc_freeres_ptrs): Define using
83 (__libc_freeres): Free all pointers in that section.
84 * Makerules (build-shlib): Add $(LDSEDCMD-$(@F:lib%.so=%).so) to sed
85 commands when creating .lds script.
86 (LDSEDCMD-c.so): New variable.
87 * inet/rcmd.c (ahostbuf): Change into char *. Add libc_freeres_ptr.
88 (rcmd_af): Use strdup to allocate ahostbuf.
89 * inet/rexec.c (ahostbuf): Change into char *. Add libc_freeres_ptr.
90 (rexec_af): Use strdup to allocate ahostbuf.
91 * stdio-common/reg-printf.c (printf_funcs): Remove.
92 (__printf_arginfo_table): Change into printf_arginfo_function **.
94 (__register_printf_function): Allocate __printf_arginfo_table
95 and __printf_function_table the first time it is called.
96 * stdio-common/printf-parse.h (__printf_arginfo_table): Change into
97 printf_arginfo_function **.
98 (parse_one_spec): Add __builtin_expect.
99 * grp/fgetgrent.c (buffer): Add libc_freeres_ptr.
101 * inet/getnetgrent.c (buffer): Add libc_freeres_ptr.
103 * intl/localealias.c (libc_freeres_ptr): Define if !_LIBC.
104 (string_space, map): Add libc_freeres_ptr.
106 * misc/efgcvt.c (FCVT_BUFPTR): Add libc_freeres_ptr.
108 * misc/mntent.c (getmntent_buffer): Add libc_freeres_ptr.
110 * crypt/md5-crypt.c (libc_freeres_ptr): Define if !_LIBC.
111 (buffer): Add libc_freeres_ptr.
112 (free_mem): Remove for _LIBC.
113 * nss/getXXbyYY.c (buffer): Add libc_freeres_ptr.
115 * nss/getXXent.c (buffer): Add libc_freeres_ptr.
117 * pwd/fgetpwent.c (buffer): Add libc_freeres_ptr.
119 * resolv/res_hconf.c (ifaddrs): Add libc_freeres_ptr.
121 * shadow/fgetspent.c (buffer): Add libc_freeres_ptr.
123 * sysdeps/posix/ttyname.c (getttyname_name): Add libc_freeres_ptr.
125 * sysdeps/unix/sysv/linux/getsysstats.c (mount_proc): Add
128 * sysdeps/unix/sysv/linux/ttyname.c (getttyname_name, ttyname_buf): Add
132 2002-10-30 Jakub Jelinek <jakub@redhat.com>
134 * malloc/obstack.c [_LIBC] (obstack_free): Change into strong_alias
135 instead of duplicating the whole function in libc.
137 2002-10-31 Roland McGrath <roland@redhat.com>
139 * sysdeps/i386/bits/byteswap.h [__GNUC__ < 2] (__bswap_32):
140 Renamed from __bswap_16 (typo fix). Reported by <dens@stl.sarov.ru>.
142 2002-10-30 Jakub Jelinek <jakub@redhat.com>
144 * sysdeps/unix/sysv/linux/Makefile (syscall-%.h): Add -D for each
145 32bit-predefine when creating .new32 list and -U for each
146 32bit-predefine when creating .new64 list.
147 * sysdeps/unix/sysv/linux/x86_64/Makefile (32bit-predefine): New.
149 2002-10-29 Andreas Schwab <schwab@suse.de>
151 * sysdeps/generic/allocrtsig.c: Include <testrtsig.h>, not
152 "testrtsig.h". Reported by Daniel Jacobowitz <dan@debian.org>.
154 2002-10-25 Roland McGrath <roland@redhat.com>
156 * sysdeps/unix/sysv/linux/configure.in: Fix typo in last change.
157 * sysdeps/unix/sysv/linux/configure: Regenerated.
159 * sysdeps/generic/ldsodefs.h: Remove [! SHARED] conditional from
160 _dl_starting_up decl.
162 2002-10-20 H.J. Lu <hjl@gnu.org>
164 * sysdeps/unix/sysv/linux/configure.in: Don't check
165 /lib/modules/`uname -r`/build/include for kernel headers if
167 * sysdeps/unix/sysv/linux/configure: Regenerated.
169 2002-10-25 Roland McGrath <roland@redhat.com>
171 * math/math.h (M_LOG2El): Correct the value.
172 From Stephen L Moshier <steve@moshier.net>.
174 * sysdeps/unix/sysv/linux/init-first.c (init): Remove [! SHARED]
175 conditional from __libc_multiple_libcs access. Remove kludge for weak
176 symbol access with old compilers we no longer support.
177 * sysdeps/unix/sysv/aix/init-first.c (init): Likewise.
178 * sysdeps/generic/libc-start.c (__libc_start_main): Likewise.
180 2002-10-25 Roland McGrath <roland@redhat.com>
182 * sysdeps/posix/sigvec.c [SA_RESETHAND]: Disable wrapper hacks and
183 implement SV_RESETHAND by translating it to SA_RESETHAND.
185 2002-10-23 Alexandre Oliva <aoliva@redhat.com>
187 * elf/dl-reloc.c (_dl_reloc_bad_use): Print the full 32-bit relocation
188 type on ELF64 platforms.
190 2002-10-24 Ulrich Drepper <drepper@redhat.com>
192 * elf/elf.h (R_X86_64_GOTTPOFF): Renamed from r_x86_64_GOTTPOFF.
194 * elf/elf.h: Define ELF_NOTE_OS_FREEBSD and NT_TASKSTRUCT.
196 2002-10-24 Jakub Jelinek <jakub@redhat.com>
198 * elf/dl-misc.c: Include <sysdep.h>.
199 (_dl_debug_vdprintf): Only take dl_load_lock if not _dl_starting_up.
201 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INTERNAL_SYSCALL,
202 INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
203 (INLINE_SYSCALL): Use that.
204 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (INTERNAL_SYSCALL,
205 INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
206 (INLINE_SYSCALL): Use that.
207 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL,
208 INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): New macros.
209 (INLINE_SYSCALL): Use that.
210 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Include
212 (SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
213 (__INTERNAL_SYSCALL_STRING): Define.
214 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
216 (SYSCALL_ERROR_HANDLER): Define RTLD_PRIVATE_ERRNO variant.
217 (__INTERNAL_SYSCALL_STRING): Define.
218 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL): Pass
219 __SYSCALL_STRING to inline_syscall*.
220 (INTERNAL_SYSCALL, INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO):
222 (inline_syscall0, inline_syscall1, inline_syscall2, inline_syscall3,
223 inline_syscall4, inline_syscall5, inline_syscall6): Add string
226 2002-10-24 Roland McGrath <roland@redhat.com>
228 * sysdeps/generic/ldsodefs.h (_dl_starting_up): Declare it here.
229 * sysdeps/unix/sysv/linux/init-first.c: Not here.
230 * sysdeps/powerpc/elf/libc-start.c: Or here.
231 * sysdeps/unix/sysv/aix/libc-start.c: Or here.
232 * sysdeps/unix/sysv/aix/start-libc.c: Or here.
233 * sysdeps/unix/sysv/aix/init-first.c: Or here.
234 * sysdeps/generic/libc-start.c: Or here.
235 * sysdeps/unix/sysv/linux/init-first.c (init): Protect _dl_starting_up
236 access with [! SHARED].
237 * sysdeps/unix/sysv/aix/init-first.c (init): Likewise.
239 * libio/bug-wfflush.c: New file.
240 * libio/Makefile (tests): Add bug-wfflush.
242 2002-10-23 Roland McGrath <roland@redhat.com>
244 * stdio-common/tst-fphex.c: New file.
245 * stdio-common/Makefile (tests): Add tst-fphex.
246 * sysdeps/generic/printf_fphex.c (__printf_fphex): Fix initialization
247 of WNUMEND. Fix counting of decimal point in WIDTH. Print '0' pad
248 chars always before the value digits.
249 Reported by James Antill <james.antill@redhat.com>.
251 2002-10-24 Jakub Jelinek <jakub@redhat.com>
253 * posix/regcomp.c (re_comp): Call __regfree on re_comp_buf.
254 (free_mem): New function.
255 * posix/Makefile (tests): Add bug-regex14. Add bug-regex14-mem
256 if not cross compiling.
257 (generated): Add bug-regex14-mem and bug-regex14.mtrace.
258 (bug-regex14-ENV): Set.
259 (bug-regex14-mem): New target.
260 * posix/bug-regex14.c: New file.
262 2002-10-23 Roland McGrath <roland@redhat.com>
264 * elf/Makefile ($(objpfx)librtld.map): Use temporary file for output
265 target, so we don't touch it when the link fails.
267 * libio/ftello.c (ftello): Use _IO_off64_t for type of POS.
268 Check for the result overflowing off_t and fail with EOVERFLOW.
269 * libio/ioftell.c (_IO_ftell): Likewise.
270 * libio/iofgetpos.c (_IO_new_fgetpos): Likewise.
272 * login/logwtmp.c (logwtmp): If sizeof ut_tv != sizeof struct timeval,
273 use a temporary timeval on the stack for gettimeofday and copy it.
274 * login/logout.c (logout): Likewise.
275 Reported by Steven Munroe <sjmunroe@us.ibm.com>.
277 * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs):
278 Use __SWORD_TYPE instead of int for member types.
279 (struct statfs64): Likewise.
280 * sysdeps/unix/sysv/linux/alpha/bits/statfs.h: New file.
281 * sysdeps/unix/sysv/linux/s390/bits/statfs.h: New file.
282 * sysdeps/unix/sysv/linux/ia64/bits/statfs.h: File removed.
283 * sysdeps/unix/sysv/linux/sparc/bits/statfs.h: File removed.
284 * sysdeps/unix/sysv/linux/x86_64/bits/statfs.h: File removed.
286 * sysdeps/unix/sysv/linux/sparc/bits/statvfs.h: Moved to ...
287 * sysdeps/unix/sysv/linux/bits/statvfs.h: ... here.
288 (ST_NODIRATIME): Restore fixed value of 2048.
289 * sysdeps/unix/sysv/linux/alpha/bits/statvfs.h: File removed.
290 * sysdeps/unix/sysv/linux/ia64/bits/statvfs.h: File removed.
292 Rearranged <bits/types.h> definitions to reduce duplication.
293 * sysdeps/generic/bits/types.h: Rewritten, using macros from
294 <bits/wordsize.h> and new header <bits/typesizes.h>.
295 * posix/Makefile (headers): Add bits/typesizes.h here.
296 * sysdeps/generic/bits/typesizes.h: New file.
297 * sysdeps/unix/sysv/linux/alpha/bits/typesizes.h: New file.
298 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: New file.
299 * sysdeps/mach/hurd/bits/typesizes.h: New file.
300 * sysdeps/unix/sysv/linux/alpha/bits/types.h: File removed.
301 * sysdeps/unix/sysv/linux/bits/types.h: File removed.
302 * sysdeps/unix/sysv/linux/ia64/bits/types.h: File removed.
303 * sysdeps/unix/sysv/linux/mips/bits/types.h: File removed.
304 * sysdeps/unix/sysv/linux/s390/bits/types.h: File removed.
305 * sysdeps/unix/sysv/linux/sparc/bits/types.h: File removed.
306 * sysdeps/unix/sysv/linux/x86_64/bits/types.h: File removed.
307 * posix/sys/types.h [__USE_POSIX199506 || __USE_UNIX98]: Include
308 <bits/pthreadtypes.h> here, not in <bits/types.h>.
309 * signal/signal.h: Likewise.
311 * streams/stropts.h: Include <bits/xtitypes.h>.
312 * streams/Makefile (headers): Add bits/xtitypes.h here.
313 * sysdeps/generic/bits/xtitypes.h: New file.
314 * sysdeps/s390/bits/xtitypes.h: New file.
315 * sysdeps/ia64/bits/xtitypes.h: New file.
316 * sysdeps/x86_64/bits/xtitypes.h: New file.
318 * sysvipc/Makefile (headers): Add bits/ipctypes.h here.
319 * sysdeps/generic/bits/ipctypes.h: New file.
320 * sysdeps/mips/bits/ipctypes.h: New file.
321 * sysdeps/gnu/bits/shm.h: Include <bits/ipctypes.h>.
322 * sysdeps/gnu/bits/msq.h: Likewise.
323 * sysvipc/sys/ipc.h: Likewise.
325 2002-10-22 Ulrich Drepper <drepper@redhat.com>
327 * elf/dl-load.c (struct filebuf): For buf element to have the
328 alignment of ElfXX_Ehdr since this is what will be stored in it.
330 2002-10-22 Jakub Jelinek <jakub@redhat.com>
332 * locale/programs/locarchive.c (add_alias): Change locrec_offset arg
333 into pointer to locrec_offset.
334 (add_locale_to_archive): Adjust callers. Free normalized_name right
335 before returning, not immediately after add_locale, pass it to
336 add_alias if not NULL instead of name. Rename second normalized_name
337 occurence to nnormalized_codeset_name.
339 * locale/programs/locarchive.c (enlarge_archive): Make sure
340 string_size is always a multiple of 4.
341 Reported by Andreas Schwab <schwab@suse.de>.
343 2002-10-21 Andreas Schwab <schwab@suse.de>
345 * sysdeps/unix/sysv/linux/ia64/syscalls.list (s_execve): Set
346 caller to EXTRA instead of execve, since the latter has a
347 higher-priority implementation in linuxthreads.
349 2002-10-21 Roland McGrath <roland@redhat.com>
351 * sysdeps/generic/libc-tls.c (__libc_setup_tls): Initialize the static
352 slotinfo list's len member to the proper size, not just 1.
353 Initialize static_map.l_tls_initimage.
355 * elf/dl-open.c (dl_open_worker): Fix loop searching for
356 dtv_slotinfo_list element containing new modules' l_tls_modid.
358 * elf/tst-tls9.c, elf/tst-tls9-static.c: New files.
359 * elf/tst-tlsmod5.c, elf/tst-tlsmod6.c: New files.
360 * elf/Makefile (tests): Add tst-tls9.
361 (tests-static): Add tst-tls9-static.
362 (tst-tls9-static-ENV): New variable.
363 ($(objpfx)tst-tls9-static, $(objpfx)tst-tls9-static.out): New targets.
365 * elf/dl-close.c (remove_slotinfo): Remove an assert; the number of
366 modids used by partially loaded modules being closed can't be known.
368 2002-10-21 Isamu Hasegawa <isamu@yamato.ibm.com>
370 * posix/Makefile: Add a test case for the bug reported by Aharon
371 Robbins <arnold@skeeve.com>.
372 * posix/bug-regex13.c: New file.
373 * posix/regcomp.c (peek_token_bracket): Skip the byte already read.
375 2002-10-21 Ulrich Drepper <drepper@redhat.com>
377 * csu/gmon-start.c: Pretty printing.
379 2002-10-19 Art Haas <ahaas@neosoft.com>
381 * configure.in: Replace AC_CONFIG_HEADER with AC_CONFIG_HEADERS,
382 add AC_HELP_STRING to all AC_ARG_WITH and AC_ARG_ENABLE macros,
383 add autoconf quotes to the AC_CONFIG_AUX_DIR macro.
384 * configure: Regenerated.
386 2002-10-19 Roland McGrath <roland@redhat.com>
388 * configure.in: Call AC_CONFIG_SUBDIRS with empty argument
389 and then set $subdirs directly, because the new Autoconf breaks
390 compatibility in every way imaginable and insists on whining
391 about usage that worked since the dawn of time.
392 * configure: Regenerated.
394 * configure: Regenerated (using Autoconf 2.54).
395 * sysdeps/alpha/elf/configure: Likewise.
396 * sysdeps/generic/configure: Likewise.
397 * sysdeps/i386/elf/configure: Likewise.
398 * sysdeps/ia64/elf/configure: Likewise.
399 * sysdeps/mach/hurd/configure: Likewise.
400 * sysdeps/mach/configure: Likewise.
401 * sysdeps/unix/configure: Likewise.
402 * sysdeps/unix/common/configure: Likewise.
403 * sysdeps/unix/sysv/aix/configure: Likewise.
404 * sysdeps/unix/sysv/linux/configure: Likewise.
405 * sysdeps/unix/sysv/linux/mips/configure: Likewise.
406 * sysdeps/x86_64/elf/configure: Likewise.
408 * config.make.in: Nix completely-soft nonsense.
409 * configure.in: Likewise. Under --without-fp, use nofpu subdirectory
410 of machine directories instead of fpu subdirectory.
411 * sysdeps/powerpc/soft-fp/Makefile: Remove cruft added in last change.
412 * sysdeps/powerpc/nofpu/Makefile: Put it in this new file instead.
413 * sysdeps/powerpc/soft-fp/sim-full.c: Moved to ...
414 * sysdeps/powerpc/nofpu/sim-full.c: ... here.
415 * sysdeps/powerpc/soft-fp/fraiseexcpt.c: Moved to ...
416 * sysdeps/powerpc/nofpu/fraiseexcpt.c: ... here.
417 * sysdeps/powerpc/soft-fp/fegetexcept.c: Moved to ...
418 * sysdeps/powerpc/nofpu/fegetexcept.c: ... here.
419 * sysdeps/powerpc/soft-fp/fclrexcpt.c: Moved to ...
420 * sysdeps/powerpc/nofpu/fclrexcpt.c: ... here.
421 * sysdeps/powerpc/soft-fp/ftestexcept.c: Moved to ...
422 * sysdeps/powerpc/nofpu/ftestexcept.c: ... here.
423 * sysdeps/powerpc/soft-fp/fgetexcptflg.c: Moved to ...
424 * sysdeps/powerpc/nofpu/fgetexcptflg.c: ... here.
425 * sysdeps/powerpc/soft-fp/fsetexcptflg.c: Moved to ...
426 * sysdeps/powerpc/nofpu/fsetexcptflg.c: ... here.
427 * sysdeps/powerpc/soft-fp/fedisblxcpt.c: Moved to ...
428 * sysdeps/powerpc/nofpu/fedisblxcpt.c: ... here.
429 * sysdeps/powerpc/soft-fp/feenablxcpt.c: Moved to ...
430 * sysdeps/powerpc/nofpu/feenablxcpt.c: ... here.
431 * sysdeps/powerpc/soft-fp/fegetenv.c: Moved to ...
432 * sysdeps/powerpc/nofpu/fegetenv.c: ... here.
433 * sysdeps/powerpc/soft-fp/fesetenv.c: Moved to ...
434 * sysdeps/powerpc/nofpu/fesetenv.c: ... here.
435 * sysdeps/powerpc/soft-fp/fegetround.c: Moved to ...
436 * sysdeps/powerpc/nofpu/fegetround.c: ... here.
437 * sysdeps/powerpc/soft-fp/fesetround.c: Moved to ...
438 * sysdeps/powerpc/nofpu/fesetround.c: ... here.
439 * sysdeps/powerpc/soft-fp/feupdateenv.c: Moved to ...
440 * sysdeps/powerpc/nofpu/feupdateenv.c: ... here.
441 * sysdeps/powerpc/soft-fp/feholdexcpt.c: Moved to ...
442 * sysdeps/powerpc/nofpu/feholdexcpt.c: ... here.
443 * sysdeps/powerpc/soft-fp/fenv_const.c: Moved to ...
444 * sysdeps/powerpc/nofpu/fenv_const.c: ... here.
445 * sysdeps/powerpc/soft-fp/libm-test-ulps: Moved to ...
446 * sysdeps/powerpc/nofpu/libm-test-ulps: ... here.
447 * sysdeps/powerpc/soft-fp/soft-supp.h: Moved to ...
448 * sysdeps/powerpc/nofpu/soft-supp.h: ... here.
449 * sysdeps/powerpc/soft-fp/Versions (libc: GLIBC_2.3.2): Moved to ...
450 * sysdeps/powerpc/nofpu/Versions: ... here, new file.
452 2002-10-19 Bruno Haible <bruno@clisp.org>
454 * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: New file.
456 2002-10-18 Roland McGrath <roland@redhat.com>
458 * io/Makefile (routines): Add lchmod.
459 * io/sys/stat.h [__USE_BSD] (lchmod): Declare it.
460 * sysdeps/generic/lchmod.c: New file.
461 * sysdeps/mach/hurd/lchmod.c: New file.
462 * io/Versions (libc: GLIBC_2.3.2): New set, add lchmod.
464 2002-10-18 Art Haas <ahaas@neosoft.com>
466 * configure.in: Remove remaining AC_FD_CC macros, and replace
467 AC_FD_MSG with AS_MESSAGE_FD.
469 2002-10-18 Roland McGrath <roland@redhat.com>
471 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela): Fix
472 typos: VALUE -> FINALADDR.
474 * sysdeps/unix/alpha/sysdep.h (INLINE_SYSCALL, INLINE_SYSCALL1)
475 (inline_syscall_clobbers, inline_syscall0, inline_syscall1)
476 (inline_syscall2, inline_syscall3, inline_syscall4, inline_syscall5)
477 (inline_syscall6): Move these macros ...
478 * sysdeps/unix/sysv/linux/alpha/sysdep.h: ... to here.
480 * configure.in (libc_link_dests, libc_link_sources): Remove these
481 variables and the AC_LINK_FILES call.
483 * sysdeps/powerpc/soft-fp/Versions (libc: GLIBC_2.3.2): Fix last
484 change to put new symbols here instead of in GLIBC_2.2.
485 * sysdeps/powerpc/Subdirs: Move this file ...
486 * sysdeps/powerpc/soft-fp/Subdirs: ... here.
488 2002-10-07 Roland McGrath <roland@redhat.com>
490 * sysdeps/generic/bits/time.h: Replaced with contents of the
491 sysdeps/unix/sysv/linux/i386/bits/time.h file. All the following
492 files were identical except for the absence of CLOCK_THREAD_CPUTIME_ID
493 and CLOCK_PROCESS_CPUTIME_ID in .../linux/bits/time.h; adding these
494 macros is ok even for architectures that don't now implement them.
495 * sysdeps/mach/hurd/bits/time.h: File removed.
496 * sysdeps/unix/sysv/linux/bits/time.h: File removed.
497 * sysdeps/unix/sysv/linux/i386/bits/time.h: File removed.
498 * sysdeps/unix/sysv/linux/ia64/bits/time.h: File removed.
499 * sysdeps/unix/sysv/linux/sparc/bits/time.h: File removed.
500 * sysdeps/unix/sysv/linux/x86_64/bits/time.h: File removed.
502 2002-10-18 Jeff Bailey <jbailey@gnu.org>
504 * configure.in: Replace obsolete AC_OUTPUT syntax with
505 AC_CONFIG_FILES, AC_CONFIG_COMMANDS, and new-type AC_OUTPUT trio.
507 * aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDEs for
508 _AS_PATH_SEPARATOR_PREPARE and _AS_TEST_PREPARE.
510 * configure.in: Replace AC_FD_CC with AS_MESSAGE_LOG_FD.
511 * sysdeps/alpha/elf/configure.in: Likewise.
512 * sysdeps/i386/elf/configure.in: Likewise.
513 * sysdeps/mach/hurd/configure.in: Likewise.
514 * sysdeps/x86_64/elf/configure.in: Likewise.
516 * configure.in: Use AC_CONFIG_SRCDIR and new AC_INIT syntax.
518 * sysdeps/alpha/elf/configure.in: Remove unneeded sinclude statement.
519 * sysdeps/generic/configure.in: Likewise.
520 * sysdeps/i386/elf/configure.in: Likewise.
521 * sysdeps/ia64/elf/configure.in: Likewise.
522 * sysdeps/mach/configure.in: Likewise.
523 * sysdeps/mach/hurd/configure.in: Likewise.
524 * sysdeps/unix/configure.in: Likewise.
525 * sysdeps/unix/common/configure.in: Likewise.
526 * sysdeps/unix/sysv/aix/configure.in: Likewise.
527 * sysdeps/unix/sysv/linux/configure.in: Likewise.
528 * sysdeps/unix/sysv/linux/mips/configure.in: Likewise.
529 * sysdeps/x86_64/elf/configure.in: Likewise.
531 * aclocal.m4: Use just the bits from AS_INIT that are needed for the
532 GLIBC_PROVIDES. Use plain comment instead of HEADER-COMMENT so
533 that it's obvious when extra autoconf machinery is being dragged in.
535 2002-10-18 Roland McGrath <roland@redhat.com>
537 * configure.in: Remove bogus echo included in
538 2002-10-08 Aldy Hernandez <aldyh@redhat.com> change.
539 * configure: Regenerated.
541 2002-10-18 Jakub Jelinek <jakub@redhat.com>
543 * sysdeps/unix/sysv/linux/pathconf.h (statfs_link_max): Add inline.
544 (statfs_filesize_max): New function.
545 * sysdeps/unix/sysv/linux/linux_fsinfo.h (JFFS_SUPER_MAGIC,
546 JFFS2_SUPER_MAGIC, JFS_SUPER_MAGIC, NTFS_SUPER_MAGIC,
547 ROMFS_SUPER_MAGIC, UDF_SUPER_MAGIC): Define.
548 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use
550 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
551 * sysdeps/unix/sysv/linux/alpha/fpathconf.c: Removed.
552 * sysdeps/unix/sysv/linux/alpha/pathconf.c: Removed.
554 2002-10-17 Roland McGrath <roland@redhat.com>
556 * configure.in (MIG): Just AC_SUBST it here.
557 * configure: Regenerated.
558 * sysdeps/mach/configure.in (MIG): Do the AC_CHECK_TOOL here.
559 Adding final - argument to all AC_CHECK_HEADER uses for .defs files.
560 * sysdeps/mach/configure: Regenerated.
562 * aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDE([_AS_TR_SH_PREPARE])
563 and AC_PROVIDE([_AS_CR_PREPARE]).
565 * aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDE([_AS_ECHO_N_PREPARE]).
566 Remove AC_LANG(C) call, instead just define([_AC_LANG], [C]).
568 * elf/dl-support.c: Move _dl_tls_* variables to ...
569 * sysdeps/generic/libc-tls.c: ... here.
571 * elf/dl-close.c (remove_slotinfo): Take new argument. If false,
572 allow IDX to be one past the current last slotinfo entry.
573 (_dl_close): Pass IMAP->l_init_called for that parameter.
575 2002-10-07 Andreas Schwab <schwab@suse.de>
577 * aclocal.m4: Fix for autoconf 2.53.
578 * configure.in: Likewise. Require autoconf 2.53.
580 2002-10-08 Richard Henderson <rth@redhat.com>
582 * soft-fp/op-4.h: Handle carry correctly in
583 __FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
584 __FP_FRAC_SUB_4, __FP_FRAC_DEC_3, __FP_FRAC_DEC_4.
585 * soft-fp/op-common.h: New macros _FP_DIV_MEAT_N_loop.
587 2002-10-08 Aldy Hernandez <aldyh@redhat.com>
589 * configure.in: Compute completely-soft.
590 * config.make.in: Make completely-soft available to sub-makes.
591 * sysdeps/powerpc/soft-fp/Makefile: Add gcc-single-routines and
592 gcc-double-routines. Add sim-full.c. Add fenv_const and
593 fe_nomask to libm-support.
594 * sysdeps/powerpc/soft-fp/sim-full.c: New file.
595 * sysdeps/powerpc/soft-fp/fraiseexcpt.c: New file.
596 * sysdeps/powerpc/soft-fp/fegetexcept.c: New file.
597 * sysdeps/powerpc/soft-fp/fclrexcpt.c: New file.
598 * sysdeps/powerpc/soft-fp/ftestexcept.c: New file.
599 * sysdeps/powerpc/soft-fp/fgetexcptflg.c: New file.
600 * sysdeps/powerpc/soft-fp/fsetexcptflg.c: New file.
601 * sysdeps/powerpc/soft-fp/fedisblxcpt.c: New file.
602 * sysdeps/powerpc/soft-fp/feenablxcpt.c: New file.
603 * sysdeps/powerpc/soft-fp/fegetenv.c: New file.
604 * sysdeps/powerpc/soft-fp/fesetenv.c: New file.
605 * sysdeps/powerpc/soft-fp/fegetround.c: New file.
606 * sysdeps/powerpc/soft-fp/fesetround.c: New file.
607 * sysdeps/powerpc/soft-fp/feupdateenv.c: New file.
608 * sysdeps/powerpc/soft-fp/feholdexcpt.c: New file.
609 * sysdeps/powerpc/soft-fp/fenv_const.c: New file.
610 * sysdeps/powerpc/soft-fp/libm-test-ulps: New file.
611 * sysdeps/powerpc/soft-fp/soft-supp.h: New file.
612 * sysdeps/powerpc/soft-fp/Versions: Add libgcc soft-float
613 symbols. Add __sim_disabled_exceptions, __sim_exceptions,
615 * sysdeps/powerpc/soft-float/Dist: Add sim-full.c, fenv_const.c.
616 * sysdeps/powerpc/soft-float/sfp-machine.h: Define
617 FP_HANDLE_EXCEPTIONS.
619 Redefine FP_* macros to correspond to the FE_* bit positions.
620 Define FP_DIV_MEAT_S to _FP_DIV_MEAT_1_loop.
621 Define externs for __sim_exceptions, __sim_disabled_exceptions,
622 __sim_round_mode, __simulate_exceptions.
623 * sysdeps/powerpc/fpu/bits/fenv.h: Move file from here...
624 * sysdeps/powerpc/bits/fenv.h: ...to here.
626 2002-10-06 Jakub Jelinek <jakub@redhat.com>
628 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
629 Store R_PPC_UADDR32 and R_PPC_UADDR16 one byte at a time.
630 Use __builtin_expect for R_PPC_ADDR24 overflow check. Fix
631 R_PPC_ADDR16, R_PPC_UADDR16 and R_PPC_ADDR14* overflow check, use
634 2002-10-15 Jakub Jelinek <jakub@redhat.com>
636 * include/resolv.h (__libc_res_nquery, __libc_res_nsearch,
637 __libc_res_nsend): New prototypes.
638 * resolv/res_query.c (QUERYSIZE): Define.
639 (__libc_res_nquery): Renamed from res_nquery. Added answerp
640 argument. Allocate only QUERYSIZE bytes first, if res_nmkquery
641 fails use MAXPACKET buffer. Call __libc_res_nsend instead of
642 res_nsend, pass answerp.
643 (res_nquery): Changed into wrapper around __libc_res_nquery.
644 (__libc_res_nsearch): Renamed from res_nsearch. Added answerp
645 argument. Call __libc_res_nquerydomain and __libc_res_nquery
646 instead of the non-__libc_ variants, pass them answerp.
647 (res_nsearch): Changed into wrapper around __libc_res_nsearch.
648 (__libc_res_nquerydomain): Renamed from res_nquerydomain.
649 Added answerp argument. Call __libc_res_nquery instead of
650 res_nquery, pass answerp.
651 (res_nquerydomain): Changed into wrapper around
652 __libc_res_nquerydomain.
653 * resolv/res_send.c: Include sys/ioctl.h.
655 (send_vc): Change arguments. Reallocate answer buffer if it is
658 (__libc_res_nsend): Renamed from res_nsend. Added ansp argument.
659 Reallocate answer buffer if it is too small and hooks are in use.
660 Adjust calls to send_vc and send_dg.
661 (res_nsend): Changed into wrapper around __libc_res_nsend.
662 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname2_r): Allocate
663 just 1K answer buffer on the stack, use __libc_res_nsearch instead
665 (_nss_dns_gethostbyaddr_r): Similarly with __libc_res_nquery.
666 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r): Likewise.
667 (_nss_dns_getnetbyname_r): Similarly with __libc_res_nsearch.
668 * resolv/gethnamaddr.c (gethostbyname2): Likewise.
669 (gethostbyaddr): Similarly with __libc_res_nquery.
670 * resolv/Versions (libresolv): Export __libc_res_nquery and
671 __libc_res_nsearch at GLIBC_PRIVATE.
673 2002-10-17 Roland McGrath <roland@redhat.com>
675 * configure.in: Grok --without-__thread and disable HAVE___THREAD.
676 * configure: Regenerated.
678 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Do CHECK_STATIC_TLS
679 before performing the reloc, not after.
680 * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
682 2002-10-17 Ulrich Drepper <drepper@redhat.com>
684 * locale/programs/locale.c (write_locales): Use 'm' flag in fopen call.
685 * locale/programs/linereader.c (lr_open): Likewise.
686 * locale/programs/charmap-dir.c (charmap_open): Likewise.
687 * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
689 2002-10-17 Isamu Hasegawa <isamu@yamato.ibm.com>
691 * posix/bug-regex11.c: Add a test case for the bug reported by
692 Paolo Bonzini <bonzini@gnu.org>.
693 * posix/regexec.c (sift_states_bkref): Use correct destination of
696 2002-10-17 Roland McGrath <roland@redhat.com>
698 * elf/dl-load.c (_dl_map_object_from_fd): Don't check DF_STATIC_TLS.
699 * elf/dl-reloc.c (_dl_relocate_object: CHECK_STATIC_TLS): New macro
700 to signal error if an IE-model TLS reloc resolved to a dlopen'd module.
701 * sysdeps/i386/dl-machine.h (elf_machine_rel, elf_machine_rela):
702 Call it after performing TPOFF relocs.
703 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
704 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
705 * elf/dl-conflict.c (CHECK_STATIC_TLS): New macro (no-op).
707 * elf/dl-close.c (remove_slotinfo): Change asserts so as not to crash
708 when closing a partially-initialized object.
710 * elf/dl-load.c (_dl_map_object_from_fd) [! USE_TLS]: Call lose
711 instead of _dl_fatal_printf when we see PT_TLS.
713 * Makeconfig (CPPFLAGS): Fix last change to use $(libof-$(<F))
714 instead of $(libof-$<).
716 2002-10-16 Roland McGrath <roland@redhat.com>
718 * cppflags-iterator.mk (CPPFLAGS-$(cpp-src)): Variable removed.
719 instead of += to append, to be sure $(lib) gets expanded at defn time.
720 (libof-$(cpp-src)): New variable, define this instead.
721 * extra-lib.mk (cpp-srcs-left): Reduce duplication in include setup.
722 (lib): Don't use override.
723 (CPPFLAGS-$(lib)): New variable, put -D's here.
724 * Makeconfig (CPPFLAGS): Use basename fn for CPPFLAGS-basename.
725 Also add $(CPPFLAGS-LIB) before the file-specific flags, for each
726 LIB found by $(libof-*) for basename, target, or source.
727 * Makerules (CPPFLAGS-nonlib): New variable.
728 * nscd/Makefile (lib): Set to nonlib when using cppflags-iterator.mk.
729 * locale/Makefile (lib): Likewise.
730 * sunrpc/Makefile (lib): Likewise.
732 * sysdeps/unix/sysv/linux/fpathconf.c (LINUX_LINK_MAX): Move macro ...
733 * sysdeps/unix/sysv/linux/linux_fsinfo.h (LINUX_LINK_MAX): ... here.
734 * sysdeps/unix/sysv/linux/pathconf.h: New file.
735 (statfs_link_max): New function, guts from fpathconf.c.
736 * sysdeps/unix/sysv/linux/fpathconf.c: Rewritten using that.
737 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
738 * sysdeps/unix/sysv/linux/alpha/pathconf.c (__pathconf): Rewritten
739 to use the linux/pathconf.c code by #include rather than duplication.
740 * sysdeps/unix/sysv/linux/alpha/fpathconf.c (__pathconf): Likewise.
742 2002-10-16 Jakub Jelinek <jakub@redhat.com>
744 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
745 Use __libc_errno only for libc itself.
747 2002-10-16 Andreas Jaeger <aj@suse.de>
749 * sysdeps/x86_64/_mcount.S: Fix off-by-1 error in argument access.
751 2002-10-16 Ulrich Drepper <drepper@redhat.com>
753 * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
754 Use __libc_errno only for libc itself.
756 2002-10-15 Roland McGrath <roland@redhat.com>
757 Jakub Jelinek <jakub@redhat.com>
759 * sysdeps/unix/sysv/linux/Makefile
760 ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Take code from
761 sparc/Makefile to produce a bi-arch file as needed.
762 That's now parameterized by the variable $(64bit-predefine).
763 Use LC_ALL=C for `comm' commands in that rule.
764 No longer conditional on [$(no_syscall_list_h)].
765 * sysdeps/unix/sysv/linux/sparc/Makefile: Remove replacement rules.
766 (64bit-predefine): New variable.
767 * sysdeps/unix/sysv/linux/x86_64/Makefile: Likewise.
768 * sysdeps/unix/sysv/linux/s390/Makefile: New file.
769 * sysdeps/unix/sysv/linux/powerpc/Makefile
770 (64bit-predefine): New variable.
772 2002-10-15 Roland McGrath <roland@redhat.com>
774 * sysdeps/unix/sysv/linux/Makefile
775 ($(objpfx)syscall-%.h $(objpfx)syscall-%.d)
777 * login/utmp-private.h: Declare __libc_utmp_lock.
778 * sysdeps/unix/getlogin_r.c (getlogin_r): Take __libc_utmp_lock once
779 and call __libc_utmp_jump_table functions directly, instead of using
782 * sysdeps/unix/sysv/linux/configure.in: Use case instead of if.
783 * sysdeps/unix/sysv/linux/configure: Regenerated.
785 * sysdeps/gnu/bits/utmp.h: Include <bits/wordsize.h>.
786 (struct lastlog) [__WORDSIZE == 64 && __WORDSIZE_COMPAT32]:
787 Use int32_t for ll_time.
788 (struct utmp) [__WORDSIZE == 64 && __WORDSIZE_COMPAT32]:
789 Use int32_t instead of long int for ut_session.
790 Use an anonymous struct with 32-bit fields for ut_tv.
791 * sysdeps/gnu/bits/utmpx.h: Include <bits/wordsize.h>.
792 (struct utmpx) [__WORDSIZE == 64 && __WORDSIZE_COMPAT32]: Do the same
793 here as in utmp.h for `struct utmp'.
794 * sysdeps/unix/sysv/linux/powerpc/bits/utmp.h: File removed.
795 * sysdeps/unix/sysv/linux/powerpc/bits/utmpx.h: File removed.
796 * sysdeps/unix/sysv/linux/sparc/bits/utmp.h: File removed.
797 * sysdeps/unix/sysv/linux/sparc/bits/utmpx.h: File removed.
798 * sysdeps/unix/sysv/linux/x86_64/bits/utmp.h: File removed.
799 * sysdeps/unix/sysv/linux/x86_64/bits/utmpx.h: File removed.
801 * sysdeps/unix/sysv/linux/bits/resource.h: Replaced with the contents
802 of the sysdeps/unix/sysv/linux/i386/bits/resource.h file.
803 All the following files were identical or equivalent to it.
804 * sysdeps/unix/sysv/linux/i386/bits/resource.h: File removed.
805 * sysdeps/unix/sysv/linux/arm/bits/resource.h: File removed.
806 * sysdeps/unix/sysv/linux/cris/bits/resource.h: File removed.
807 * sysdeps/unix/sysv/linux/hppa/bits/resource.h: File removed.
808 * sysdeps/unix/sysv/linux/ia64/bits/resource.h: File removed.
809 * sysdeps/unix/sysv/linux/m68k/bits/resource.h: File removed.
810 * sysdeps/unix/sysv/linux/powerpc/bits/resource.h: File removed.
811 * sysdeps/unix/sysv/linux/s390/bits/resource.h: File removed.
812 * sysdeps/unix/sysv/linux/sh/bits/resource.h: File removed.
813 * sysdeps/unix/sysv/linux/x86_64/bits/resource.h: File removed.
815 * sysdeps/unix/sysv/linux/bits/socket.h (struct msghdr): Use size_t
816 instead of int for msg_iovlen, instead of socklen_t for msg_controllen.
817 Other than the previously incorrect sign of msg_iovlen, this is a
818 no-op on 32-bit platforms. On 64-bit platforms it makes this header
819 match their layouts as well, so the following are now identical to it.
820 * sysdeps/unix/sysv/linux/s390/bits/socket.h: File removed.
821 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: File removed.
822 * sysdeps/unix/sysv/linux/x86_64/bits/socket.h: File removed.
823 * sysdeps/unix/sysv/linux/ia64/bits/socket.h: File removed.
824 * sysdeps/unix/sysv/linux/alpha/bits/socket.h: File removed.
826 2002-10-15 Ulrich Drepper <drepper@redhat.com>
828 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_VFORK_SYSCALL):
829 Define for 2.4+ kernels.
831 * sysdeps/unix/sysv/linux/i386/vfork.S: Optimize for kernels which
832 are known to have the vfork syscall. Don't confuse the CPUs
833 branch prediction unit by jumping to the return address.
835 * sysdeps/unix/sysv/linux/alpha/fpathconf.c (__fpathconf): Add
836 support for reiserfs and xfs.
838 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Add case for
840 * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define XFS_SUPER_MAGIC
842 Patch by Eric Sandeen <sandeen@sgi.com> [PR libc/4706].
844 2002-10-16 Jakub Jelinek <jakub@redhat.com>
846 * include/libc-symbols.h (attribute_tls_model_ie): Define.
847 * include/errno.h (errno): Define to __libc_errno in libc.so.
848 Add attribute_tls_model_ie.
849 * include/netdb.h (h_errno): Define to __libc_h_errno in libc.so.
850 Add attribute_tls_model_ie.
851 * include/resolv.h (_res): Define to __libc_res in libc.so. Add
852 attribute_tls_model_ie.
853 * inet/herrno.c (__libc_h_errno): Add hidden alias to h_errno.
855 * resolv/res_libc.c (__libc_res): Add hidden alias to _res.
857 * sysdeps/generic/bits/libc-tsd.h (__libc_tsd_define): Add
858 attribute_tls_model_ie.
859 * sysdeps/generic/errno-loc.c (errno): Only undefine if not using
861 * sysdeps/generic/errno.c (__libc_errno): Add hidden alias to errno.
862 * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER): Use
863 __libc_errno in USE___THREAD case.
864 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
866 * configure.in (HAVE_TLS_MODEL_ATTRIBUTE): Check for
867 __attribute__((tls_model (""))).
868 * configure: Rebuilt.
869 * config.h.in (HAVE_TLS_MODEL_ATTRIBUTE): Add.
871 2002-10-15 Ulrich Drepper <drepper@redhat.com>
873 * timezone/asia: Update from tzdata2002d.
874 * timezone/australasia: Likewise.
875 * timezone/iso3166.tab: Likewise.
876 * timezone/southamerica: Likewise.
877 * timezone/zone-tab: Likewise.
879 2002-10-15 Roland McGrath <roland@redhat.com>
881 * sysdeps/generic/dl-tls.c (_dl_deallocate_tls) [TLS_TCB_AT_TP]:
882 Adjust TCB pointer before calling free, so we get the whole block.
884 2002-10-14 Roland McGrath <roland@redhat.com>
886 * sysdeps/unix/sysv/linux/x86_64/sigaction.c
887 [HAVE_HIDDEN && !HAVE_BROKEN_VISIBILITY_ATTRIBUTE]: Declare restore_rt
888 extern using attribute_hidden instead of static, avoids warning.
890 2002-10-09 Jakub Jelinek <jakub@redhat.com>
892 * sysdeps/unix/sysv/linux/configure.in: Use */lib64 for s390x too.
893 * sysdeps/unix/sysv/linux/configure: Rebuilt.
895 2002-10-14 Ulrich Drepper <drepper@redhat.com>
897 * po/sv.po: Update from translation team.
899 2002-10-12 H.J. Lu <hjl@gnu.org>
901 * sunrpc/thrsvc.c (PROCQUIT): New.
902 (struct rpc_arg): New.
903 (dispatch): Call exit (0) if request->rq_proc == PROCQUIT.
904 (test_one_call): Take struct rpc_arg * instead of CLIENT *c.
905 (thread_wrapper): Modified for struct rpc_arg * and call PROCQUIT.
906 (main): Modified for struct rpc_arg *.
908 2002-10-14 Ulrich Drepper <drepper@redhat.com>
910 * dirent/scandir.c: Rearrange code a bit to reduce binary size.
912 2002-10-14 Jakub Jelinek <jakub@redhat.com>
914 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Include tls.h.
915 (SYSCALL_ERROR_HANDLER): Use RTLD_PRIVATE_ERRNO sequence
916 in ld.so even if __thread is supported.
918 2002-10-13 Jakub Jelinek <jakub@redhat.com>
920 * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter):
921 Add hack to prevent the compiler from clobbering the signal context.
922 * sysdeps/unix/sysv/linux/sh/profil-counter.h (profil_counter):
924 * sysdeps/unix/sysv/linux/x86_64/profil-counter.h (profil_counter):
927 2002-10-14 Andreas Jaeger <aj@suse.de>
929 * sysdeps/mips/fpu/libm-test-ulps: Regenerated by
930 Guido Guenther <agx@sigxcpu.org>.
932 2002-10-14 Ulrich Drepper <drepper@redhat.com>
934 * po/sk.po: Update from translation team.
936 2002-09-26 Roland McGrath <roland@redhat.com>
938 * elf/dl-load.c (_dl_dst_count, _dl_dst_substitute): Handle $LIB
940 * elf/Makefile ($(objpfx)trusted-dirs.st): Make the output define
941 DL_DST_LIB based on $(slibdir).
943 2002-10-13 Roland McGrath <roland@frob.com>
945 * elf/rtld-Rules ($(objpfx)rtld-libc.a): Use $(verbose) in ar command.
947 * sysdeps/mach/hurd/getresuid.c: New file.
948 * sysdeps/mach/hurd/getresgid.c: New file.
949 * sysdeps/mach/hurd/setresuid.c: New file.
950 * sysdeps/mach/hurd/setresgid.c: New file.
952 * posix/unistd.h [__USE_GNU] (getresuid, getresgid, setresuid,
953 setresgid): Declare them.
956 (__getresuid, __getresgid, __setresuid, __setresgid): Declare them,
957 add libc_hidden_proto.
958 * posix/Versions (libc: GLIBC_2.3.2): New set. Add
959 getresuid, getresgid, setresuid, setresgid here.
960 * Versions.def (libc): Define GLIBC_2.3.2 set.
961 * sysdeps/generic/getresuid.c (__getresuid): Fix argument types.
963 * sysdeps/generic/getresgid.c (__getresgid): Likewise.
964 * sysdeps/generic/setresgid.c: New file.
965 * sysdeps/generic/setresuid.c: New file.
966 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
967 (sysdep_routines): Don't add getresuid and getresgid here.
968 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = misc]
969 (sysdep_routines): Don't add setresuid and setresgid here.
970 * sysdeps/unix/sysv/linux/cris/Makefile: Likewise.
971 * sysdeps/unix/sysv/linux/sh/Makefile: Likewise.
972 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Likewise.
973 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Likewise.
974 * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
975 * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
976 * posix/Makefile (routines): Add them all here instead.
977 * sysdeps/unix/sysv/linux/i386/getresuid.c (getresuid): Renamed to
978 __getresuid. Add libc_hidden_def for that, and weak alias to old name.
979 * sysdeps/unix/sysv/linux/i386/getresgid.c (getresgid): Renamed to
980 __getresgid. Add libc_hidden_def for that, and weak alias to old name.
981 * sysdeps/unix/sysv/linux/i386/setresuid.c: Add libc_hidden_def.
982 [! __NR_setresuid]: Include generic file.
983 * sysdeps/unix/sysv/linux/i386/setresgid.c (setresgid): Renamed to
984 __setresgid. Add libc_hidden_def for that, and weak alias to old name.
985 [! __NR_setresuid]: Include generic file.
986 * sysdeps/unix/sysv/linux/syscalls.list (setresuid, setresgid):
987 Caller is - now, not EXTRA.
988 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list
989 (setresuid, setresgid, getresuid, getresgid): Likewise.
990 * sysdeps/unix/sysv/linux/syscalls.list (getresuid, getresgid):
991 Add these calls here.
992 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove them here.
993 * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
994 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
995 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
996 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
997 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
998 * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Likewise.
999 * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
1000 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
1002 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
1003 (sysdep_routines): Add setfsuid and setfsgid here.
1004 * sysdeps/unix/sysv/linux/arm/Makefile: Not here.
1005 * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: Likewise.
1006 * sysdeps/unix/sysv/linux/cris/Makefile: Likewise.
1007 * sysdeps/unix/sysv/linux/sh/Makefile: Likewise.
1008 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Likewise.
1009 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Likewise.
1010 * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
1011 * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
1013 * hurd/errno.c: Renamed to ...
1014 * hurd/errno-loc.c: ... this.
1015 * hurd/Makefile (routines): errno -> errno-loc
1017 2002-10-13 Ulrich Drepper <drepper@redhat.com>
1019 * po/de.po: Update from translation team.
1021 * MakeTAGS: Add -E flag to xgettext runs.
1023 2002-10-12 Ulrich Drepper <drepper@redhat.com>
1025 * po/fr.po: Update from translation team.
1027 * sysdeps/posix/system.c: Remove support for old and buggy SCO systems.
1028 Optimize a bit for use in glibc.
1030 2002-10-12 Roland McGrath <roland@redhat.com>
1032 * stdio-common/tst-rndseek.c (TIMEOUT): Increase to 10 seconds.
1033 Some machines are slow. Guido Guenther <agx@sigxcpu.org> has one.
1035 2002-10-12 Ulrich Drepper <drepper@redhat.com>
1037 * po/sv.po: Update from translation team.
1039 2002-10-11 Isamu Hasegawa <isamu@yamato.ibm.com>
1041 * posix/regcomp.c (re_compile_fastmap_iter): Remove the handling
1043 (regfree): Likewise.
1044 (create_initial_state): Likewise.
1045 (analyze): Remove the substitutions which became useless.
1046 (calc_first): Likewise.
1047 (calc_epsdest): Use edests of OP_BACK_REF in case that it has
1048 epsilon destination.
1049 (duplicate_node_closure): New function.
1050 (duplicate_node): Remove the handling OP_CONTEXT_NODE.
1051 (calc_inveclosure): Likewise.
1052 (calc_eclosure): Likewise.
1053 (calc_eclosure_iter): Invoke duplicate_node_closure instead of
1054 direct invocation of duplicate_node.
1055 (parse): Don't use comma operator in the return to avoid compiler
1057 (parse_reg_exp): Likewise.
1058 (parse_branch): Likewise.
1059 (parse_expression): Likewise.
1060 (parse_sub_exp): Likewise.
1061 (parse_dup_op): Likewise.
1062 * posix/regex_internal.c (re_dfa_add_node): Remove the substitutions
1063 which became useless.
1064 (create_ci_newstate): Remove the handling OP_CONTEXT_NODE.
1065 (create_cd_newstate): Likewise.
1066 * posix/regex_internal.h (re_token_type_t): Remove the obsolete type.
1067 (re_token_t): Likewise.
1068 (re_dfa_t): Likewise.
1069 (re_node_set_remove): New macro.
1070 * posix/regexec.c (check_matching): Remove the handling
1072 (check_halt_node_context): Likewise.
1073 (proceed_next_node): Likewise.
1074 (pop_fail_stack): Fix the memory leak.
1075 (set_regs): Likewise.
1076 (free_fail_stack_return): New function.
1077 (sift_states_backward): Fix the memory leak. Remove the handling
1079 (update_cur_sifted_state): Append some if clause to avoid redundant
1081 (sub_epsilon_src_nodes): Use IS_EPSILON_NODE since it might be a
1083 (check_dst_limits): Remove the handling OP_CONTEXT_NODE.
1084 (check_subexp_limits): Likewise.
1085 (search_subexp): Likewise.
1086 (sift_states_bkref): Likewise.
1087 (transit_state_mb): Likewise.
1088 (transit_state_bkref_loop): Likewise.
1089 (transit_state_bkref_loop): Likewise.
1090 (group_nodes_into_DFAstates): Likewise.
1091 (check_node_accept): Likewise.
1092 (sift_ctx_init): Add initializing.
1094 2002-10-12 Ulrich Drepper <drepper@redhat.com>
1096 * sysdeps/unix/sysv/linux/i386/sysdep.h (INLINE_SYSCALL): Use
1099 2002-10-11 Ulrich Drepper <drepper@redhat.com>
1101 * elf/dl-load.c (_dl_map_object_from_fd): Remove unnecessarily
1102 duplicated variable c.
1104 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Use INTERNAL_SYSCALL
1107 * sysdeps/unix/sysv/linux/i386/sysdep.h
1108 (INTERNAL_SYSCALL_ERROR_P): New define.
1109 (INTERNAL_SYSCALL_ERRNO): Likewise.
1111 * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter):
1112 Add hack to prevent the compiler from clobbering the signal context.
1114 2002-10-11 Roland McGrath <roland@redhat.com>
1116 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
1119 * sysdeps/generic/dl-lookupcfg.h: Include <tls.h>.
1120 * sysdeps/sh/dl-lookupcfg.h: File removed.
1121 * sysdeps/i386/dl-lookupcfg.h: File removed.
1123 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER): Add
1124 missing labels and ; from last change.
1126 * stdio-common/tst-sscanf.c (val_double): Append .0 to large whole
1127 number literals, so they are doubles instead of ints.
1129 2002-10-09 Roland McGrath <roland@redhat.com>
1131 * sysdeps/generic/bits/libc-tsd.h [USE___THREAD]: Conditional
1132 changed from [USE_TLS && HAVE___THREAD].
1134 * sysdeps/i386/dl-machine.h (elf_machine_type_class, elf_machine_rel):
1135 Disable TLS relocs if [RTLD_BOOTSTRAP && !USE___THREAD].
1136 * sysdeps/x86_64/dl-machine.h
1137 (elf_machine_type_class, elf_machine_rela): Likewise.
1138 * sysdeps/sh/dl-machine.h (elf_machine_type_class, elf_machine_rela):
1141 * include/link.h (struct link_map): Remove member l_tls_tp_initialized.
1142 * elf/rtld.c (_dl_start_final, dl_main): Don't use it.
1143 (_dl_start): Conditionalize PT_TLS check on [USE___THREAD].
1145 * sysdeps/i386/dl-tls.h (__TLS_GET_ADDR): Use ___tls_get_addr_internal
1146 instead of ___tls_get_addr.
1147 (___tls_get_addr_internal): Add attribute_hidden to decl.
1149 * sysdeps/generic/ldsodefs.h (struct rtld_global): New variable
1150 _dl_error_catch_tsd.
1151 * elf/rtld.c (startup_error_tsd): New function.
1152 (dl_main): Point _dl_error_catch_tsd at that.
1153 * elf/dl-error.c: Don't use libc-tsd.h for DL_ERROR,
1154 use new function pointer instead.
1155 * elf/dl-tsd.c: New file.
1156 * elf/Makefile (routines): Add it.
1158 2002-10-07 Roland McGrath <roland@redhat.com>
1160 * elf/dl-misc.c (_dl_debug_vdprintf): Use INTERNAL_SYSCALL macro for
1161 writev if it's available. Otherwise if [RTLD_PRIVATE_ERRNO] then
1162 take _dl_load_lock around calling __writev.
1164 * sysdeps/unix/sysv/linux/i386/sysdep.h (INTERNAL_SYSCALL): New macro.
1165 (INLINE_SYSCALL): Use that.
1167 * sysdeps/generic/dl-sysdep.h: New file.
1168 * sysdeps/mach/hurd/dl-sysdep.h: New file.
1169 * sysdeps/generic/ldsodefs.h: Include <dl-sysdep.h>.
1170 * include/errno.h [IS_IN_rtld]: Include <dl-sysdep.h> to define ...
1171 [RTLD_PRIVATE_ERRNO]: Use a hidden global variable for errno and
1173 * elf/dl-minimal.c (__errno_location): Removed.
1174 * sysdeps/unix/i386/sysdep.S (__syscall_errno) [RTLD_PRIVATE_ERRNO]:
1175 Use GOTOFF access for errno.
1176 * sysdeps/unix/sysv/linux/i386/sysdep.h
1177 [RTLD_PRIVATE_ERRNO] (SYSCALL_ERROR_HANDLER): Likewise.
1179 * sysdeps/unix/x86_64/sysdep.S (__syscall_errno) [RTLD_PRIVATE_ERRNO]:
1180 Use PC-relative access for errno.
1181 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
1182 [RTLD_PRIVATE_ERRNO] (SYSCALL_ERROR_HANDLER): Likewise.
1184 * include/tls.h: New file.
1185 (USE___THREAD): New macro.
1186 Define to 1 under [USE_TLS && HAVE___THREAD] and only when compiling
1188 * sysdeps/unix/sysv/linux/i386/sysdep.h [USE___THREAD]: Conditional
1189 changed from [USE_TLS && HAVE___THREAD].
1190 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
1191 * sysdeps/unix/i386/sysdep.S: Likewise.
1192 * sysdeps/unix/x86_64/sysdep.S: Likewise.
1193 * include/errno.h: Likewise.
1194 * include/netdb.h: Likewise.
1195 * include/resolv.h: Likewise.
1197 * sysdeps/generic/errno.c: New file.
1198 * csu/Makefile (aux): New variable, list errno.
1199 * sysdeps/unix/sysv/linux/i386/sysdep.S (errno, _errno): Remove defns.
1200 * sysdeps/unix/sysv/linux/m68k/sysdep.S: Likewise.
1201 * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Likewise.
1202 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
1203 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
1204 * sysdeps/unix/sysv/linux/arm/sysdep.S: Likewise.
1205 * sysdeps/unix/sysv/linux/cris/sysdep.S: Likewise.
1206 * sysdeps/unix/sysv/linux/hppa/sysdep.c: Likewise.
1207 * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
1208 * sysdeps/unix/sysv/linux/powerpc/sysdep.c: Likewise.
1209 * sysdeps/unix/sysv/linux/sparc/sysdep.S: Likewise.
1210 * sysdeps/unix/sysv/linux/sh/sysdep.S: Likewise.
1211 * sysdeps/unix/alpha/sysdep.S: Likewise.
1212 * sysdeps/generic/start.c: Likewise.
1213 * sysdeps/unix/start.c: Likewise.
1214 * sysdeps/unix/arm/start.c: Likewise.
1215 * sysdeps/unix/bsd/ultrix4/mips/start.S: Likewise.
1216 * sysdeps/unix/sparc/start.c: Likewise.
1217 * sysdeps/unix/sysv/irix4/start.c: Likewise.
1218 * sysdeps/unix/sysv/linux/mips/sysdep.S: File removed.
1220 * manual/search.texi (Tree Search Function, Hash Search Function):
1221 Mention search.h clearly.
1223 2002-10-05 Roland McGrath <roland@redhat.com>
1225 * elf/dl-fxstat64.c: File removed.
1226 * elf/dl-xstat64.c: File removed.
1227 * elf/Makefile (rtld-routines): Remove them.
1228 * sysdeps/unix/sysv/linux/xstat64.c: Remove RTLD_STAT64 conditionals.
1229 Instead, use strong_alias instead of versioned_symbol in the
1231 * sysdeps/unix/sysv/linux/fxstat64.c: Likewise.
1232 * sysdeps/unix/sysv/linux/lxstat64.c: Likewise.
1234 * include/shlib-compat.h
1235 (SHLIB_COMPAT): Require that IS_IN_##lib be defined nonzero.
1236 [! NOT_IN_libc] (IS_IN_libc): Define it.
1237 * cppflags-iterator.mk (CPPFLAGS-$(cpp-src)): Use -Dx=1 not just -Dx.
1238 * elf/Makefile (CPPFLAGS-.os): Likewise.
1240 * sunrpc/rpc_main.c (main): Don't declare with noreturn attribute.
1241 Return the status instead of calling exit.
1243 * Makeconfig (CFLAGS): Prepend -std=gnu99.
1244 * Makerules (+make-deps): Use $(CFLAGS) only for .c sources.
1245 Remove superfluous rm command, whose @ plus make bugs hid
1246 all these commands from the make output.
1248 * include/stubs-prologue.h: New file. Give #error under #ifdef _LIBC.
1249 * Makefile ($(inst_includedir)/gnu/stubs.h): Depend on it.
1250 Use that file's contents instead of literal echo's for the prologue.
1251 * include/features.h: Include <gnu/stubs.h> unconditionally.
1252 * include/gnu/stubs.h: New file.
1254 2002-09-30 Roland McGrath <roland@redhat.com>
1256 * elf/rtld-Rules: New file.
1257 * elf/Makefile ($(objpfx)librtld.map, $(objpfx)librtld.mk,
1258 $(objpfx)rtld-libc.a): New targets.
1259 (generated): Add them.
1260 (reloc-link): Remove -o $@ from the variable.
1261 ($(objpfx)dl-allobjs.os): Add -o $@ after $(reloc-link).
1262 (distribute): Add rtld-Rules.
1263 (CPPFLAGS-.os): Define this instead of CFLAGS-.os.
1264 * Makerules ($(+sysdir_pfx)sysd-rules): Emit rules for rtld-% targets.
1265 (common-mostlyclean, common-clean): Clean up rtld-* files.
1266 * sysdeps/unix/make-syscalls.sh: Add rtld-*.os target name to rules.
1268 2002-10-11 Roland McGrath <roland@redhat.com>
1270 * sysdeps/generic/dl-tls.c (__tls_get_addr): After freeing block in
1271 now-unused dtv slot, reset the slot to TLS_DTV_UNALLOCATED.
1273 * elf/tls-macros.h [__x86_64__] (TLS_GD): Fix the sequence with the
1274 proper set of no-op insn prefixes.
1276 * elf/tst-tls8.c (do_test): Use %zd format for l_tls_modid members.
1278 2002-10-11 Ulrich Drepper <drepper@redhat.com>
1280 * sysdeps/unix/sysv/linux/execve.c: Don't try calling
1281 __pthread_kill_other_threads_np.
1283 * sysdeps/generic/pselect.c: Avoid unnecessary sigprocmask calls.
1285 2002-10-08 Roland McGrath <roland@redhat.com>
1287 * locale/newlocale.c (__newlocale): If setting all categories to "C",
1288 just return &_nl_C_locobj instead of copying it.
1289 * locale/freelocale.c (__freelocale): Check for &_nl_C_locobj.
1290 * locale/duplocale.c (__duplocale): Likewise.
1292 2002-10-07 Roland McGrath <roland@frob.com>
1294 * config.h.in (HAVE_I386_SET_GDT): New #undef.
1295 * sysdeps/mach/configure.in: Define it with new check for i386_set_gdt.
1296 * sysdeps/mach/configure: Regenerated.
1298 2002-10-06 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
1300 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (INLINE_SYSCALL):
1301 Add all necessary register outputs for syscall-clobbered registers.
1303 2002-10-02 David Mosberger <davidm@hpl.hp.com>
1305 * sysdeps/ia64/bzero.S: Rewritten by Sverre Jarp to tune for
1306 Itanium 2 (and Itanium).
1307 Fix unwind directives and make it fit in 80 columns.
1308 * sysdeps/ia64/memset.S: Likewise.
1309 * sysdeps/ia64/memcpy.S: Likewise.
1310 Move jump table to .rodata section.
1312 2002-10-03 Roland McGrath <roland@frob.com>
1314 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Add
1317 2002-10-10 Andreas Jaeger <aj@suse.de>
1319 * sysdeps/x86_64/_mcount.S: Restore correct registers.
1321 2002-10-10 Ulrich Drepper <drepper@redhat.com>
1323 * posix/Versions (libc) [GLIBC_PRIVATE]: Add __pselect.
1325 2002-10-09 Ulrich Drepper <drepper@redhat.com>
1327 * sysdeps/generic/ldsodefs.h: Remove attribute_hidden from
1328 _dl_allocate_tls_init. Add rtld_hidden_proto.
1329 * sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Add
1331 * elf/Versions (ld) [GLIBC_PRIVATE]: Add _dl_allocate_tls_init.
1333 * version.h (VERSION): Bump to 2.3.1.
1335 * Make-dist: Add back one of the tar invocations removed before.
1337 * stdlib/Makefile (distribute): Add allocalim.h.
1339 * sysdeps/generic/bits/libc-tsd.h [!(USE_TLS && HAVE___THREAD)]
1340 (__libc_tsd_address): Use correct variable name.
1341 Patch by Stefan Jones <stefan.jones@multigig.com>.
1343 * sysdeps/unix/sysv/linux/ia64/getcontext.S: Add missing ;;.
1344 Reported by edwardsg@sgi.com [PR libc/4678].
1346 * Versions.def (libc): Add GLIBC_2.3.1.
1347 (libpthread): Add GLIBC_2.3.1.
1349 * include/signal.h: Add libc_hidden_proto for __sigwait, __sigwaitinfo,
1351 * signal/Versions: Add __sigtimedwait, __sigwait, and __sigwaitinfo.
1352 * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Add
1354 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Likewise.
1355 * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
1357 * include/sys/msg.h: Declare __libc_msgrcv and __libc_msgsnd.
1358 * sysdeps/unix/sysv/linux/msgrcv.c (__msgrcv): Rename to __libc_msgrcv
1359 and make old name an alias.
1360 * sysdeps/unix/sysv/linux/msgsnd.c (__msgsnd): Rename to __libc_msgsnd
1361 and make old name an alias.
1362 * sysvipc/Versions (libc) [GLIBC_PRIVATE]: Add __libc_msgrcv and
1365 * include/sys/uio.h: Declare __libc_readv and __libc_writev.
1366 * misc/Versions (libc) [GLIBC_PRIVATE]: Add __libc_readv and
1368 * sysdeps/generic/readv.c (__readv): Rename to __libc_readv and make
1370 * sysdeps/posix/readv.c: Likewise
1371 * sysdeps/unix/sysv/aix/readv.c: Likewise.
1372 * sysdeps/unix/sysv/linux/readv.c: Likewise.
1373 * sysdeps/generic/writev.c (__writev): Rename to __libc_writev and make
1375 * sysdeps/posix/writev.c: Likewise
1376 * sysdeps/unix/sysv/aix/writev.c: Likewise.
1377 * sysdeps/unix/sysv/linux/writev.c: Likewise.
1379 * include/sys/wait.h: Declare __waitid.
1380 * posix/Versions (libc) [GLIBC_PRIVATE]: Add __waitid.
1381 * sysdeps/generic/waitid.c (waitid): Rename to __waitid and make old
1383 * sysdeps/posix/waitid.c: Likewise.
1384 * sysdeps/unix/sysv/aix/waitid.c: Likewise.
1386 * sysdeps/unix/sysv/linux/syscalls.list: Add creat syscall.
1388 2002-10-07 Jakub Jelinek <jakub@redhat.com>
1390 * include/alloca.h (__libc_use_alloca, __libc_alloca_cutoff): New
1392 (__MAX_ALLOCA_CUTOFF): Define.
1393 Include allocalim.h.
1394 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname2_r,
1395 _nss_dns_gethostbyaddr_r): Use alloca or malloc to allocate
1396 host_buffer depending on __libc_use_alloca.
1397 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r,
1398 _nss_dns_getnetbyaddr_r): Use alloca or malloc to allocate
1399 net_buffer depending on __libc_use_alloca.
1400 * resolv/res_query.c (res_nquery): Use alloca or malloc to allocate
1401 buf depending on __libc_use_alloca.
1402 * resolv/gethnamaddr.c (gethostbyname2, gethostbyaddr): Likewise.
1403 * stdio-common/vfprintf.c (vfprintf): Use __libc_use_alloca
1404 instead of hardcoded constants.
1405 Pass proper size argument to alloca and compute end for wide char
1407 * stdio-common/printf_fp.c (__printf_fp): Use __libc_use_alloca
1408 instead of hardcoded constants.
1409 * string/strcoll.c (strcoll): Likewise.
1410 * string/strxfrm.c (strxfrm): Likewise.
1411 * sysdeps/posix/readv.c (__readv): Likewise.
1412 * sysdeps/posix/writev.c (__writev): Likewise.
1413 * sysdeps/generic/allocalim.h: New file.
1415 2002-10-08 Roland McGrath <roland@redhat.com>
1417 * configure.in (aux_missing warning): Change "too old" to
1418 "incompatible versions", since for autoconf it's "too new" right now.
1419 * configure: Regenerated.
1421 * configure.in (AUTOCONF): New check to set it. Set to "no" if the
1422 one found doesn't work on our configure.in.
1423 * configure: Regenerated.
1424 * config.make.in (AUTOCONF): New substituted variable.
1425 * Makefile (autoconf-it-cvs): New canned sequence, broken out of ...
1426 (autoconf-it): ... here, use that instead of defining conditionally.
1427 Use $(AUTOCONF) instead of literal autoconf.
1428 [$(AUTOCONF) != no] (configure, %/configure): Protect these rules
1429 with this condition.
1430 * Make-dist (autoconf-it, configure, %/configure): Copy those changes.
1432 2002-10-08 Ulrich Drepper <drepper@redhat.com>
1434 * Make-dist (dist): Cleanup a bit. We are not interested in the
1435 14 char filename limit anymore. Remove intermediate files and
1438 2002-10-05 Ulrich Drepper <drepper@redhat.com>
1440 * po/sk.po: Update from translation team.
1441 * po/tr.po: Likewise.
1442 * po/gl.po: Likewise.
1444 2002-10-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>
1446 * elf/tls-macros.h: Fix SH version of macros so as to match ABI syntax.
1448 2002-10-03 Ulrich Drepper <drepper@redhat.com>
1450 * version.h (RELEASE): Change to stable.
1452 2002-10-03 Jakub Jelinek <jakub@redhat.com>
1454 * sysdeps/unix/sysv/linux/_exit.c (__syscall_exit,
1455 __syscall_exit_group): New prototypes.
1457 2002-10-03 Ulrich Drepper <drepper@redhat.com>
1459 * glibc 2.3 released.
1462 See ChangeLog.13 for earlier changes.