1 2009-04-17 Ulrich Drepper <drepper@redhat.com>
3 * malloc/hooks.c (top_check): Force hook value into register.
5 2009-04-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
7 * elf/rtld.c (dl_main): Really call _dl_sysdep_start_cleanup after all
8 calls to _dl_relocate_object.
10 2009-04-16 Ulrich Drepper <drepper@redhat.com>
13 * malloc/malloc.c (force_reg): Define.
14 (sYSMALLOc): Load hook variable into variable
15 before test and force into register.
17 (public_mALLOc): Force hook value into register.
18 (public_fREe): Likewise.
19 (public_rEALLOc): Likewise.
20 (public_mEMALIGn): Likewise.
21 (public_vALLOc): Likewise.
22 (public_pVALLOc): Likewise.
23 (public_cALLOc): Likewise.
24 (__posix_memalign): Likewise.
25 * malloc/arena.c (ptmalloc_init): Load hook variable into variable
26 before test and force into register.
27 * malloc/hooks.c (top_check): Likewise.
28 (public_s_ET_STATe): Pretty printing.
30 * resolv/res_send.c (send_dg): Don't just ignore the result we got
31 in case we only receive one reply in single-request mode.
33 2009-04-16 Jakub Jelinek <jakub@redhat.com>
35 * elf/dl-open.c (_dl_open): Bump GL(dl_nns) to 1 if no libraries
36 are dlopened in statically linked program even for __LM_ID_CALLER.
38 2009-04-16 Ulrich Drepper <drepper@redhat.com>
40 * resolv/res_send.c (send_dg): Don't switch into single-request
41 mode if we already are in it.
43 2009-04-15 Ulrich Drepper <drepper@redhat.com>
45 * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Make sure there
46 are always at least 4 bytes in the returned line.
48 2009-04-15 Jakub Jelinek <jakub@redhat.com>
50 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Check
51 __libc_use_alloca (8192), if the stack is too small use 512 bytes
52 instead of 8K. Stop searching in /proc/stat after hitting first
53 line not starting with cpu.
54 (next_line): Truncate too long
55 lines at buffer size * 3/4 instead of pretending there were line
56 breaks inside of large lines.
58 2009-04-14 Ulrich Drepper <drepper@redhat.com>
60 * sysdeps/x86_64/mp_clz_tab.c: New file.
62 2009-03-17 Ryan S. Arnold <rsa@us.ibm.com>
63 Ulrich Drepper <drepper@redhat.com>
65 * sysdeps/unix/sysv/linux/fallocate.c: Handle old kernel headers.
66 * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
67 * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
69 2009-03-25 Andrew Stubbs <ams@codesourcery.com>
71 * sysdeps/sh/libc-tls.c: New file.
73 * sysdeps/sh/bits/setjmp.h (__jmp_buf): Give name to structure type.
75 2009-04-14 Roland McGrath <roland@redhat.com>
77 * elf/elf.h: Add various missing ARM constants, to match binutils.
79 2009-04-14 Ulrich Drepper <drepper@redhat.com>
81 Optimizations from GMP.
82 * sysdeps/x86_64/add_n.S: New file.
83 * sysdeps/x86_64/addmul_1.S: New file.
84 * sysdeps/x86_64/lshift.S: New file.
85 * sysdeps/x86_64/mul_1.S: New file.
86 * sysdeps/x86_64/rshift.S: New file.
87 * sysdeps/x86_64/sub_n.S: New file.
88 * sysdeps/x86_64/submul_1.S: New file.
90 2009-04-14 Jakub Jelinek <jakub@redhat.com>
92 * sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty.
93 * sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
94 * sysdeps/sparc/sparc32/elf/start.S: Likewise.
95 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
97 2009-04-14 Ulrich Drepper <drepper@redhat.com>
99 * sysdeps/unix/sysv/linux/kernel-features.h: SH also has
102 2009-04-13 Ulrich Drepper <drepper@redhat.com>
104 * sysdeps/x86-64/strrchr.S: New file.
106 2009-04-10 Ulrich Drepper <drepper@redhat.com>
108 * stdio-common/printf.h (struct printf_info): Add user element.
109 New types printf_arginfo_size_function, printf_va_arg_function.
110 Declare register_printf_specifier, register_printf_modifier,
111 register_printf_type.
112 * stdio-common/printf-parse.h (struct printf_spec): Add size element.
113 (union printf_arg): Add pa_user element.
114 Adjust __printf_arginfo_table type.
115 Add __printf_va_arg_table, __printf_modifier_table,
116 __handle_registered_modifier_mb, and __handle_registered_modifier_wc
118 * stdio-common/printf-parsemb.c: Recognize registered modifiers.
119 If registered arginfo call failed try normal specifier.
120 * stdio-common/printf-prs.c: Pass additional parameter to arginfo
122 * stdio-common/Makefile (routines): Add reg-modifier and reg-type.
123 * stdio-common/Versions: Export register_printf_modifier,
124 register_printf_type, and register_printf_specifier for GLIBC_2.10.
125 * stdio-common/reg-modifier.c: New file.
126 * stdio-common/reg-type.c: New file.
127 * stdio-common/reg-printf.c (__register_printf_specifier): New
128 function. Mostly the old __register_printf_function function but
129 uses locking and type of third parameter changed.
130 (__register_printf_function): Implement using
131 __register_printf_specifier.
132 * stdio-common/vfprintf.c (vfprintf): Collect argument sizes in
133 calls to arginfo functions. Allocate enough memory for user-defined
134 types. Call new va_arg functions to get user-defined types.
135 Try installed handlers even for existing format specifiers first.
137 2009-04-09 Ulrich Drepper <drepper@redhat.com>
139 * sysdeps/x86_64/rawmemchr.S: New file.
141 * stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
142 Simplified code and possible copy problem fixed.
144 * sysdeps/unix/sysv/linux/preadv.c: Avoid prototype for static
145 function if it is not defined. Add some necessary casts.
146 * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
148 * sysdeps/unix/sysv/linux/kernel-features.h: SPARC and IA64 also
149 have preadv/pwritev in 2.6.30.
151 2009-04-08 Ulrich Drepper <drepper@redhat.com>
153 * malloc/malloc.c (malloc_info): New function.
154 * malloc/malloc.h: Declare it.
155 * malloc/Versions: Export malloc_info for GLIBC_2.10.
157 * sysdeps/unix/sysv/linux/preadv64.c (PREAD): Use __libc_pread64
160 * malloc/malloc.c (_int_realloc): Add parameter with old block
161 size. Remove duplicated test. Don't handle mmap'ed blocks here.
163 * malloc/hooks.c (realloc_check): Adjust _int_realloc call.
165 2009-04-07 Ulrich Drepper <drepper@redhat.com>
167 * sysdeps/x86_64/strchrnul.S: New file.
169 * crypt/Makefile (LDLIBS-crypt.so): Use this variable instead of
170 depending libcrypt on -lfreebl3.
172 * sysdeps/unix/sysv/linux/kernel-features.h: Power also has
173 preadv/pwritev in 2.6.30.
175 * resolv/nss_dns/dns-host.c (getanswer_r): Use strcasecmp
176 instead of __strcasecmp.
178 * string/stratcliff.c (do_test): Add memchr tests..
179 * wcsmbs/wcsatcliff.c (MEMCHR): Define.
180 * sysdeps/x86_64/memchr.S: Fix handling of end of buffer after
181 first read quad word.
183 2009-04-06 Ulrich Drepper <drepper@redhat.com>
185 * string/strverscmp.c (__strverscmp): Fix last cleanups.
186 * string/tst-svc.input: Add new test case.
187 * string/tst-svc.expect: Adjust.
188 * string/Makefile: Don't ignore tst-svc error.
190 * sysdeps/x86_64/memchr.S: New file.
192 * resolv/resolv.h (RES_SNGLKUP): Define.
193 * resolv/res_init.c (res_setoptions): Recognize single-request option.
194 * resolv/res_send.c (send_dg): If we sent two requests at once and
195 only get one reply before timeout switch to mode where we send the
196 second request only after the first answer has been received.
198 2009-04-05 Ulrich Drepper <drepper@redhat.com>
200 * sysdeps/x86_64/strlen.S: Optimize by using SSE2 instructions.
201 * sysdeps/x86_64/strchr.S: Likewise.
203 2009-04-03 Ulrich Drepper <drepper@redhat.com>
205 * configure.in: We need to test for the compiler earlier.
207 * misc/Makefile (routines): Add preadv, preadv64, pwritev, pwritev64.
208 * misc/Versions: Export preadv, preadv64, pwritev, pwritev64 for
210 * misc/sys/uio.h: Declare preadv, preadv64, pwritev, pwritev64.
211 * sysdeps/unix/sysv/linux/kernel-features.h: Add entries for preadv
213 * misc/preadv.c: New file.
214 * misc/preadv64.c: New file.
215 * misc/pwritev.c: New file.
216 * misc/pwritev64.c: New file.
217 * sysdeps/posx/preadv.c: New file.
218 * sysdeps/posx/preadv64.c: New file.
219 * sysdeps/posx/pwritev.c: New file.
220 * sysdeps/posx/pwritev64.c: New file.
221 * sysdeps/unix/sysv/linux/preadv.c: New file.
222 * sysdeps/unix/sysv/linux/preadv64.c: New file.
223 * sysdeps/unix/sysv/linux/pwritev.c: New file.
224 * sysdeps/unix/sysv/linux/pwritev64.c: New file.
225 * sysdeps/unix/sysv/linux/wordsize-64/preadv64.c: New file.
226 * sysdeps/unix/sysv/linux/wordsize-64/pwritev64.c: New file.
228 * sysdeps/unix/sysv/linux/readv.c (__libc_readv): Fix calling of
230 * sysdeps/unix/sysv/linux/writev.c (__libc_writev): Likewise.
232 * sysdeps/unix/sysv/linux/kernel-features.h: Define
233 __ASSUME_COMPLETE_READV_WRITEV.
234 * sysdeps/unix/sysv/linux/readv.c: No need for userlevel fallback
236 * sysdeps/unix/sysv/linux/writev.c: Likewise.
238 * sysdeps/posix/readv.c: Since read is a cancellation point we have
239 to free a possible malloced buffer in case of cancellation.
240 * sysdeps/posix/writev.c: Likewise for write.
242 2009-04-02 Ulrich Drepper <drepper@redhat.com>
244 * sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
246 * configure.in: Recognize --enable-nss-crypt.
247 * config.make.in: Add nss-crypt entry.
248 * crypt/Makefile: If nss-crypt==yes, don't build md5.c, sha256.c,
249 sha512.c. Don't run md5test, sha256test, sha512test. Pass -DUSE_NSS
250 and include path for NSS directory to compiler for md5-crypt,
251 sha256-crypt, sha512-crypt. Link libcrypt.so with -lfreebl3.
252 * crypt/md5-crypt.c: If USE_NSS is defined, don't use local hash
253 function implementation, use NSS. Introduce wrappers around the
254 hash function calls. Little code size optimization.
255 * crypt/sha256-crypt.c: Likewise.
256 * crypt/sha512-crypt.c: Likewise.
257 * scripts/check-local-headers.sh: Ignore nss3 directory.
259 * configure.in: Rename pic_default to libc_cv_pic_default.
260 * config.make.in: Likewise.
262 2009-04-01 Roland McGrath <roland@redhat.com>
264 * elf/elf.h (R_SPARC_GLOB_JMP): New macro.
265 (R_SPARC_GOTDATA_HIX22, R_SPARC_GOTDATA_LOX10): New macros.
266 (R_SPARC_GOTDATA_OP_HIX22, R_SPARC_GOTDATA_OP_LOX10): Likewise.
267 (R_SPARC_GOTDATA_OP, R_SPARC_H34): Likewise.
268 (R_SPARC_SIZE32, R_SPARC_SIZE64): Likewise.
269 (R_SPARC_GNU_VTINHERIT, R_SPARC_GNU_VTENTRY, R_SPARC_REV32): Likewise.
270 (R_SPARC_NUM): Update.
271 From Dave Miller <davem@davemloft.net>.
273 2009-04-01 Ulrich Drepper <drepper@redhat.com>
275 * sysdeps/unix/sysv/linux/sys/eventfd.h (EFD_SEMAPHORE): Define.
277 2009-03-31 Ulrich Drepper <drepper@redhat.com>
279 * elf/dl-open.c: Keep track of used name spaces and only iterate over
280 those which are used.
281 * elf/dl-addr.c: Likewise.
282 * elf/dl-caller.c: Likewise.
283 * elf/dl-fini.c: Likewise.
284 * elf/dl-iteratephdr.c: Likewise.
285 * elf/dl-libc.c: Likewise.
286 * elf/dl-load.c: Likewise.
287 * elf/dl-support.c: Likewise.
288 * elf/dl-sym.c: Likewise.
289 * elf/rtld.c: Likewise.
290 * sysdeps/generic/ldsodefs.h: Likewise.
292 * elf/dl-load.c: Remove support for systems without MAP_ANON.
293 * elf/dl-minimal.c: Likewise.
294 * elf/dl-misc.c: Likewise.
295 * elf/rtld.c: Likewise.
296 * sysdeps/generic/ldsodefs.h: Likewise.
298 2009-03-30 Ulrich Drepper <drepper@redhat.com>
300 * elf/do-lookup.h (do_lookup_x): Minor optimization and cleanup.
301 Avoid reuse of complex expression.
303 * po/fr.po: Update from translation team.
305 2009-03-16 Ulrich Drepper <drepper@redhat.com>
307 * include/dirent.h: Yet more changes to match sort function type
309 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Likewise.
310 * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
311 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
313 2009-03-16 Thomas Schwinge <tschwinge@gnu.org>
315 * dirent/scandir64.c (scandir64): Adjust declaration to type change.
317 2009-03-16 Ulrich Drepper <drepper@redhat.com>
319 * nscd/connections.c (restart): Try to preserve the process name
320 by reading the /proc/self/exe symlink and using the return name.
321 Patch by Jeff Bastian <jbastian@redhat.com>.
323 2009-03-15 Ulrich Drepper <drepper@redhat.com>
326 * elf/dl-load.c (_dl_map_object_from_fd): Only call audit hooks
327 if we are not loading a new audit library.
328 * elf/dl-reloc (_dl_relocate_object): Third parameter is now a bitmask.
329 Only use profiling trampoline for auditing if we are not relocating
331 * elf/dl-open.c (dl_open_worker): Adjust _dl_relocate_object call.
332 * elf/rtld.c: Likewise.
333 * sysdeps/generic/ldsodefs.h: Adjust _dl_relocate_object prototype.
335 * elf/rtld.c (dl_main): Extend help message for --audit option.
338 * dirent/dirent.h: Adjust prototypes of scandir, scandir64, alphasort,
339 alphasort64, versionsort, and versionsort64 to POSIX 2008.
340 * dirent/alphasort.c: Adjust implementation to type change.
341 * dirent/alphasort64.c: Likewise.
342 * dirent/scandir.c: Likewise.
343 * dirent/versionsort.c: Likewise.
344 * dirent/versionsort64.c: Likewise.
345 * sysdeps/wordsize-64/alphasort.c: Add hack to hide alphasort64
347 * sysdeps/wordsize-64/versionsort.c: Add hack to hide versionsort64
351 * inet/inet6_rth.c (inet6_rth_reverse): Compute number of segments
352 correctly. Set segleft member in output as required.
353 Patch partly by Yang Hongyang <yanghy@cn.fujitsu.com>.
354 * inet/tst-inet6_rth.c (do_test): Add tests for inet6_rth_reverse.
357 * inet/inet6_rth.c (inet6_rth_add): Add some error checking.
358 Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
359 * inet/Makefile (tests): Add tst-inet6_rth.
360 * inet/tst-inet6_rth.c: New file.
363 * string/strlen.c (strlen): Fix omission in the expression to test
366 2009-03-14 Ulrich Drepper <drepper@redhat.com>
368 * crypt/sha256test.c (main): Perform 100,000 'a' test in a second way.
370 * elf/dl-runtime.c (reloc_offset): Define.
371 (reloc_index): Define.
372 (_dl_fixup): Rename reloc_offset parameter to reloc_arg.
373 (_dl_fixup_profile): Likewise. Use reloc_index instead of
374 computing index from reloc_offset.
375 (_dl_call_pltexit): Likewise.
376 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Just pass
377 the relocation index to _dl_fixup.
378 (_dl_runtime_profile): Likewise for _dl_fixup_profile and
380 * sysdeps/x86_64/dl-runtime.c: New file.
383 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix
384 alignment of La_x86_64_regs. Store xmm parameters.
385 Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
388 * string/strverscmp.c (__strverscmp): Fix case of different digits
389 in fractional part of string.
390 Patch by Jingyu Liu <jyliu@fortinet.com>.
391 * string/Makefile (tests): Add tst-svc2.
392 * string/tst-svc2.c: New file.
394 * string/strverscmp.c (__strverscmp): Optimize size of tables.
396 * locale/iso-639.def: Add Min Nan.
398 2009-03-11 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
401 * elf/dl-sysdep.c (_dl_show_auxv): Add support for AT_BASE_PLATFORM.
403 2009-03-14 Ulrich Drepper <drepper@redhat.com>
405 * elf/dl-sysdep.c (auxvars): Compress data structure.
407 * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement
408 STT_GNU_IFUNC handling.
409 (elf_machine_rela): Likewise.
411 2009-03-13 Ulrich Drepper <drepper@redhat.com>
413 * config.h.in (USE_MULTIARCH): Define.
414 * configure.in: Handle --enable-multi-arch.
415 * elf/dl-runtime.c (_dl_fixup): Handle STT_GNU_IFUNC.
416 (_dl_fixup_profile): Likewise.
417 * elf/do-lookup.c (dl_lookup_x): Likewise.
418 * sysdeps/x86_64/dl-machine.h: Handle STT_GNU_IFUNC.
419 * elf/elf.h (STT_GNU_IFUNC): Define.
420 * include/libc-symbols.h (libc_ifunc): Define.
421 * sysdeps/x86_64/cacheinfo.c: If USE_MULTIARCH is defined, use the
422 framework in init-arch.h to get CPUID values.
423 * sysdeps/x86_64/multiarch/Makefile: New file.
424 * sysdeps/x86_64/multiarch/init-arch.c: New file.
425 * sysdeps/x86_64/multiarch/init-arch.h: New file.
426 * sysdeps/x86_64/multiarch/sched_cpucount.c: New file.
428 * config.make.in (experimental-malloc): Define.
429 * configure.in: Handle --enable-experimental-malloc.
430 * malloc/Makefile: Handle experimental-malloc flag.
431 * malloc/malloc.c: Implement PER_THREAD and ATOMIC_FASTBINS features.
432 * malloc/arena.c: Likewise.
433 * malloc/hooks.c: Likewise.
434 * malloc/malloc.h: Define M_ARENA_TEST and M_ARENA_MAX.
436 2009-03-11 Ulrich Drepper <drepper@redhat.com>
438 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Add branch
439 prediction. A few size optimizations.
441 2009-03-10 Ulrich Drepper <drepper@redhat.com>
443 * time/tzset.c: Optimize a bit for size.
445 2009-03-10 Jakub Jelinek <jakub@redhat.com>
447 * include/stdio.h (fmemopen): Add libc_hidden_proto.
448 * libio/fmemopen.c (fmemopen): Add libc_hidden_def.
450 * elf/sprof.c: Avoid warning about multi-line comment.
452 2009-03-10 Ulrich Drepper <drepper@redhat.com>
454 * time/tzset.c (__tzset_parse_tz): Use correct string when parsing
456 * time/tst-posixtz.c: Add tests for quoted timezone names.
458 2009-03-10 Jakub Jelinek <jakub@redhat.com>
460 * posix/unistd.h (_POSIX_VERSION, _POSIX2_VERSION, _POSIX2_C_BIND,
461 _POSIX2_C_DEV, _POSIX2_SW_DEV, _POSIX2_LOCALEDEF): Define to
462 200809L instead of 200112L.
463 (_XOPEN_VERSION): For __USE_XOPEN2K8 define to 700.
464 * posix/tst-sysconf.c (STDVER): Define to 200809L instead of 200112L.
466 * stdlib/quick_exit.c (quick_exit): Pass &__quick_exit_funcs
467 instead of __quick_exit_funcs to __run_exit_handlers.
468 * stdlib/at_quick_exit.c (at_quick_exit): Add attribute_hidden.
469 * stdlib/exit.h (__run_exit_handlers): Add noreturn attribute.
470 (__cxa_at_quick_exit): Remove attribute_hidden.
471 * stdlib/exit.c (exit): Pass &__exit_funcs instead of __exit_funcs
472 to __run_exit_handlers.
473 * stdlib/cxa_at_quick_exit.c (__cxa_at_quick_exit): Remove
476 2009-03-10 Ulrich Drepper <drepper@redhat.com>
478 * po/id.po: Update from translation team.
480 2009-02-18 Jakub Jelinek <jakub@redhat.com>
482 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Use
483 .machine push; .machine "power6" and .machine pop around mtfsf
484 insns outside of _ARCH_PWR6 define.
485 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
486 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
488 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
490 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR): Likewise.
491 * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register,
492 relax_fenv_state): Likewise.
494 2009-03-08 Ulrich Drepper <drepper@redhat.com>
496 * stdlib/Makefile (routines): Add quick_exit, at_quick_exit, and
498 (static-only-routines): Add at_quick_exit.
499 * stdlib/Versions: Export quick_exit and __cxa_at_quick_exit for
501 * stdlib/quick_exit.c: New file.
502 * stdlib/at_quick_exit.c: New file.
503 * stdlib/cxa_at_quick_exit.c: New file.
504 * stdlib/cxa_atexit.c (__cxa_atexit): Move body to new function. Call
506 (__internal_atexit): New function.
507 (__new_exitfn): Now takes parameter to point to the list to use.
508 * stdlib/cxa_finalize.c: Remove quick_exit handlers, don't call them.
509 * stdlib/exit.c (__run_exit_handlers): New function. Split from...
510 (exit): ...here. Just call __run_exit_handlers appropriately.
511 * stdlib/exit.h: Declare __quick_exit_funcs, __run_exit_handlers,
512 __internal_atexit, __cxa_at_quick_exit. Adjust __new_exitfn.
513 * stdlib/on_exit.c: Adjust call to __new_exitfn.
514 * stdlib/stdlib.h: Declare at_quick_exit and quick_exit.
516 * po/id.po: Update from translation team.
518 2009-03-07 Ulrich Drepper <drepper@redhat.com>
520 * po/ru.po: Update from translation team.
522 2009-03-04 Ulrich Drepper <drepper@redhat.com>
524 * po/nl.po: Update from translation team.
526 2009-03-03 Ulrich Drepper <drepper@redhat.com>
528 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Declare fallocate{,64}.
529 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
530 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
531 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
532 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
533 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
534 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
536 * po/pl.po: Update from translation team.
538 2009-03-02 Ulrich Drepper <drepper@redhat.com>
541 * sysdeps/unix/sysv/linux/fallocate.c: New file.
542 * sysdeps/unix/sysv/linux/fallocate64.c: New file.
543 * sysdeps/unix/sysv/linux/wordsize-64/fallocate64.c: New file.
544 * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: New file.
545 * sysdeps/unix/sysv/linux/i386/fallocate64.c: New file.
546 * sysdeps/unix/sysv/linux/i386/fallocate.c: New file.
547 * sysdeps/unix/sysv/linux/Versions: Export fallocate and fallocate64
549 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
550 Add fallocate and fallocate64.
552 * io/fcntl.h: Pretty printing.
554 2009-03-02 Richard Guenther <rguenther@suse.de>
556 * misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
557 attribute also for non-C99 inline semantics variant.
559 2009-02-12 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
561 * sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
562 * sysdeps/powerpc/powerpc32/power7/Implies: Likewise.
563 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
564 * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
565 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies:
567 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies:
570 2009-03-02 Ulrich Drepper <drepper@redhat.com>
572 * po/cs.po: Update from translation team.
574 2009-02-28 Ulrich Drepper <drepper@redhat.com>
576 * po/bg.po: Update from translation team.
577 * po/sv.po: Likewise.
578 * po/fi.po: Likewise.
579 * po/vi.po: Likewise.
581 2009-02-27 Roland McGrath <roland@redhat.com>
583 * Makeconfig (%.v.i): Depend on Makeconfig.
584 Exclude % lines from initial #-comment removal.
586 2009-02-27 Ulrich Drepper <drepper@redhat.com>
588 * po/ko.po: Update from translation team.
590 2009-02-26 Roland McGrath <roland@redhat.com>
592 * shadow/lckpwdf.c (__lckpwdf): Move FLAGS inside block using it,
593 avoids unused warning.
595 2009-02-26 Andrew Stubbs <ams@codesourcery.com>
596 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
598 * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Don't include signal.h,
599 sys/ucontext.h and asm/elf.h. Include sys/user.h.
600 * sysdeps/unix/sysv/linux/sh/sys/user.h: Don't include features.h
601 and asm/user.h. Include asm/ptrace.h.
602 (PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS,
603 PTRACE_SETFPREGS, PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
604 PTRACE_GETFDPIC_INTERP, PTRACE_GETDSPREGS, PTRACE_SETDSPREGS):
606 (start_thread): Don't undefine.
607 (elf_greg_t, ELF_NGREG, elf_fpregset_t, user_fpu_struct, user):
610 2009-02-26 Ulrich Drepper <drepper@redhat.com>
612 * wctype/wctype.h: The *_l functions are in POSIX 2008.
613 * wcsmbs/wchar.h: mbsnrtowcs, open_wmemstream, wcpcpy, wcpncpy,
614 wcscasecmp, wcsdup, wcsncasecmp, wcsnlen, wcsnrtombs,
615 wcscasecmp_l, wcsncasecmp_l, wcscoll_l, and wcsxfrm_l.
616 * sysdeps/mach/hurd/bits/posix_opt.h: Reset value of macros from
618 * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
619 * posix/getconf.c (vars): Add _SC_THREAD_ROBUST_PRIO_INHERIT and
620 _SC_THREAD_ROBUST_PRIO_PROTECT entries.
621 * bits/confname.h: Add _SC_THREAD_ROBUST_PRIO_INHERIT and
622 _SC_THREAD_ROBUST_PRIO_PROTECT.
623 * posix/unistd.h: fexecve is in POSIX 2008.
624 * time/time.h: strftime_l is in POSIX 2008.
625 * io/sys/stat.h: futimens is in POSIX 2008.
626 * string/strings.h: strcasecmp_l and strncasecmp_l are in POSIX 2008.
627 * string/string.h: stpcpy, stpncpy, strndup, strnlen, strsignal,
628 strcoll_l, strerror_l, and strxfrm_l are in POSIX 2008.
629 * stdlib/stdlib.h: mkdtemp is in POSIX 2008.
630 * libio/stdio.h: dprintf, fmemopen, getdelim, getline,
631 open_memstream, and vdprintf are in POSIX 2008.
633 2009-02-25 Ulrich Drepper <drepper@redhat.com>
635 * include/features.h: Define macros for XPG7/POSIX 2008.
636 * ctype/ctype.h: The *_l functions are in POSIX 2008.
637 * dirent/dirent.h: alphasort, dirfd, scandir, and fdopendir are in
639 * locale/langinfo.h: nl_langinfo_l is in POSIX 2008.
640 * locale/xlocale.h: Define locale_t type.
641 * locale/locale.h: duplocale, freelocale, newlocale, uselocale are
642 in POSIX 2008. Don't define locale_t here.
643 * stdlib/monetary.h: strfmon_l is in POSIX 2008.
644 * sysdeps/unix/sysv/linux/bits/stat.h: Protect UTIME_NOW and
645 UTIME_OMIT only with __USE_ATFILE.
646 * signal/signal.h: Declare psignal and psiginfo for POSIX 2008.
647 * stdio-common/psiginfo.c: New file.
648 * stdio-common/psiginfo-data.h: New file.
649 * stdio-common/psiginfo-define.h: New file.
650 * stdio-common/Makefile (routines): Add psiginfo.
651 * stdio-common/Versions: Export psiginfo for GLIBC_2.10.
652 * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
653 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
654 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
655 * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
656 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
657 * io/sys/stat.h: Move mknodat definition into same conditional as
659 * time/sys/time.h: futimesat is not among the functions accepted
660 into the POSIX standard.
662 * include/features.h: If no feature selection given and we select
663 by default a POSIX mode, also define __USE_POSIX_IMPLICITLY.
664 * posix/Versions: Export __posix_getopt.
665 * posix/getopt.c (_getopt_initialize): Take additional parameter.
666 Use it to alternatively initialize __posixly_correct.
667 (_getopt_internal_r): Take addition parameter. Pass on to
669 (_getopt_internal): Take addition parameter. Pass on to
671 (getopt): Pass additional zero to _getopt_internal.
672 (__posix_getopt): New function.
673 * posix/getopt.h: Add redirection for getopt.
674 * posix/getopt1.c (getopt_long): Pass additional zero to
676 (getopt_long_only): Likewise.
677 (_getopt_long_r): Pass additional zero to _getopt_internal_r.
678 (_getopt_long_only_r): Likewise.
679 * posix/getopt_int.h: Adjust declarations of _getopt_internal and
682 2009-02-24 Ulrich Drepper <drepper@redhat.com>
684 * bits/confname.h: Define _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX,
685 _SC_TRACE_SYS_MAX, _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
686 * sysdeps/posix/sysconf.c (__sysconf): Handle
687 _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX, _SC_TRACE_SYS_MAX,
688 _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
690 2009-02-24 Roland McGrath <roland@redhat.com>
693 * README.template: Reworded not to use substituted version number.
695 * README: ... here (no longer generated).
696 * Makefile (README): Target removed.
698 2009-02-24 Ulrich Drepper <drepper@redhat.com>
700 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf):
701 /proc/sys/kernel/rtsig_max doesn't exist anymore, use getrlimit
704 * io/sys/stat.h: The lstat functions have been mandatory since 2001.
706 * time/tzset.c (tzset_internal): Correct parsing of TZ envvar.
708 2009-02-22 Ulrich Drepper <drepper@redhat.com>
710 * po/bg.po: Update from translation team.
712 2009-02-16 Jakub Jelinek <jakub@redhat.com>
714 * stdlib/monetary.h: Uglify function parameter names.
715 * sunrpc/rpc/pmap_clnt.h: Likewise.
716 * sunrpc/rpc/svc.h: Likewise.
717 * sunrpc/rpc/xdr.h: Likewise.
718 * sunrpc/rpc/clnt.h: Likewise.
719 * resolv/netdb.h: Likewise.
720 * resolv/arpa/nameser.h: Likewise.
721 * resolv/resolv.h: Likewise.
722 * argp/argp.h: Likewise.
723 * locale/langinfo.h: Likewise.
724 * io/sys/stat.h: Likewise.
725 * posix/spawn.h: Likewise.
726 * nis/rpcsvc/nislib.h: Likewise.
727 * malloc/obstack.h: Likewise.
728 * sysdeps/ia64/bits/link.h: Likewise.
729 * sysdeps/i386/bits/link.h: Likewise.
730 * sysdeps/s390/bits/link.h: Likewise.
731 * sysdeps/powerpc/bits/link.h: Likewise.
732 * sysdeps/x86_64/bits/link.h: Likewise.
733 * sysdeps/sparc/bits/link.h: Likewise.
734 * sysdeps/sh/bits/link.h: Likewise.
735 * sysdeps/unix/sysv/linux/i386/sys/io.h: Likewise.
736 * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Likewise.
737 * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Likewise.
738 * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
740 2008-12-01 Fredrik Unger <fred@tree.se>
742 * soft-fp/double.h [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D,
743 FP_UNPACK_SEMIRAW_DP): Use _FP_UNPACK_RAW_1 instead of
744 _FP_UNPACK_RAW_2, fix up first argument.
746 2009-02-15 Ulrich Drepper <drepper@redhat.com>
748 * sysdeps/unix/sysv/linux/getsysstats.c (next_line): New function.
749 (GET_NPROCS_PARSER): Change parameters and use next_line.
750 (__get_nprocs): Rewrite to not use stdio routines.
751 * sysdeps/unix/sysv/linux/sparc/getsysstats.c (GET_NPROCS_PARSER):
752 Change parameters and use next_line.
754 2009-02-13 Ulrich Drepper <drepper@redhat.com>
757 * nscd/nscd.h: Remove definitions and declarations for mem_in_flight.
758 Change mempool_alloc prototype.
759 * nscd/mem.c (gc): Don't handle mem_in_flight.
760 (mempool_alloc): Third parameter now only indicates whether this is the
761 first call (to allocate data) or not. If it is, get db rdlock.
762 Release it on error. Don't handle mem_in_flight.
763 * nscd/aicache.c (addhstaiX): Mark he parameter as const.
764 Adjust third parameter of mempool_alloc calls.
765 Nothing to do here in case mempool_alloc fails.
766 Avoid local variable shadowing parameter. No need to get db rdlock
767 before calling cache_add.
768 * nscd/cache.c (cache_add): Adjust call to mempool_alloc. There is
769 no mem_in_flight array anymore.
770 * nscd/connections.c: Remove definition and handling of mem_in_flight.
771 * nscd/grpcache.c (cache_addgr): Adjust third parameter of
772 mempool_alloc calls. Mark he parameter as const. Nothing to do here
773 in case mempool_alloc fails. No need to get db rdlock before calling
775 * nscd/hstcache.c (cache_addhst): Likewise.
776 * nscd/initgrcache.c (addinitgroupsX): Likewise.
777 * nscd/servicescache.c (cache_addserv): Likewise.
778 * nscd/pwdcache.c (cache_addpw): Likewise. Remove some debugging code.
780 2009-02-11 Ulrich Drepper <drepper@redhat.com>
782 * po/lt.po: Update from translation team.
784 2009-02-10 Ulrich Drepper <drepper@redhat.com>
786 * elf/dl-load.c (open_verify): In case VALID_ELF_HEADER is
787 defined, allow additional data to be added using the optional
788 MORE_ELF_HEADER_DATA macro.
789 * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER,
790 VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Define.
792 2009-02-08 Ulrich Drepper <drepper@redhat.com>
794 * include/atomic.h: Define catomic_and if not already defined.
795 * sysdeps/x86_64/bits/atomic.h: Define catomic_and.
796 * sysdeps/i386/i486/bits/atomic.h: Likewise.
798 2009-02-07 Ulrich Drepper <drepper@redhat.com>
800 * malloc/malloc.c (_int_free): Second argument is now mchunkptr.
802 (_int_realloc): Likewise. Third argument is now padded size
803 All _int_* functions are now static.
805 * malloc/hooks.c: Change all callers to _int_free and _int_realloc.
806 * malloc/arena.c: Likewise.
807 * include/malloc.h: Remove now unnecessary declarations of the _int_*
810 * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that
813 * malloc/malloc.c: Add branch prediction for use of the hooks.
815 * grp/compat-initgroups.c [NOT_IN_libc] (__libc_use_alloca): Define.
817 2009-02-06 Ulrich Drepper <drepper@redhat.com>
820 * bits/confname.h: Add SUSv7 macros for getconf environments.
821 * bits/environments.h: Likewise.
822 * sysdeps/unix/sysv/linux/i386/bits/environments.h: Likewise.
823 * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: Likewise.
824 * sysdeps/unix/sysv/linux/s390/bits/environments.h: Likewise.
825 * sysdeps/unix/sysv/linux/sparc/bits/environments.h: Likewise.
826 * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Likewise.
827 * posix/confstr.c: Handle SUSv5 and SUSv7 environments.
828 * posix/getconf.c: Likewise.
829 * posix/sysconf.c: Likewise.
830 * sysdeps/posix/sysconf.c: Likewise.
831 * posix/Makefile (getconf.speclist): Also collect SUSv5 and SUSv7
834 2009-01-16 Petr Baudis <pasky@suse.cz>
837 * resolv/res_libc.c (__res_maybe_init): Call __res_vinit()
838 even if we currently have zero nscount.
840 2009-02-06 Ulrich Drepper <drepper@redhat.com>
843 * grp/compat-initgroups.c (compat_call): Switch to use malloc when
844 the input line is too long.
846 * po/Makefile (libc.pot): Add f_print as function taking c-format
849 * debug/xtrace.sh: Unify translatable messages.
850 * elf/ldd.bash.in: Likewise.
851 * elf/sprof.c: Likewise.
852 * locale/programs/locale.c: Likewise.
853 * malloc/memusage.sh: Likewise.
854 * nss/getent.c: Likewise.
856 2009-02-06 Joseph Myers <joseph@codesourcery.com>
858 * debug/pcprofiledump.c (print_version,
859 argp_program_version_hook): New function.
860 * elf/ldconfig.c (more_help): New function.
862 * elf/sln.c (usage): New function.
863 (main): Support --help and --version.
864 * malloc/memusagestat.c (print_version): New function.
865 (argp_program_version_hook): New variable.
866 * nscd/nscd.c (more_help): New function.
868 * posix/getconf.c (main): Send --version output to stdout.
870 * sunrpc/rpc_main.c (usage, options_usage): Take STREAM and STATUS
871 arguments. All callers changed.
872 (print_version): New function.
873 (parseargs): Support --help and --version.
874 * sunrpc/rpcinfo.c (usage): Take STREAM argument. All callers
876 (print_version): New function.
877 (main): Use getopt_long. Support --help and --version.
878 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Support --help and
881 2009-02-06 Ulrich Drepper <drepper@redhat.com>
883 * malloc/memusage.c (DEFAULT_BUFFER_SIZE): Change to 32768.
884 (update_data): Fix handling of wrapping back
885 to the beginning of the buffer.
888 * stdio-common/psignal.c (psignal): Fix test for empty string.
890 2009-02-05 Ulrich Drepper <drepper@redhat.com>
892 * include/rpc/auth.h: Use libc_hidden_proto for _null_auth.
893 * sunrpc/rpc_common.c: Add libc_hidden_def for _null_auth. Also
894 move _null_auth to .rodata.
896 * time/tzset.c (__tzset_parse_tz): DST offset must also allow hour
899 * intl/dcigettext.c (DCIGETTEXT): Avoid some code duplication.
901 * sysdeps/unix/opendir.c (__alloc_dir): We have a lot more memory
902 today than when the original code was written. Use larger
903 buffers. This also makes it unnecessary to have stat information,
904 if this causes extra efforts.
905 (__opendir): In case O_DIRECTORY works, don't call fstat just for
908 2009-02-03 Andrew Stubbs <ams@codesourcery.com>
910 * sysdeps/sh/sh4/dl-trampoline.S: Only set HAVE_FPU if __SH_FPU_ANY__
912 * sysdeps/sh/sh4/setjmp.S: Support SH4-NOFPU.
913 * sysdeps/sh/sh4/__longjmp.S: Likewise.
914 * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Likewise.
915 * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
916 * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
917 * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
919 2009-02-04 Ulrich Drepper <drepper@redhat.com>
921 * po/ru.po: Update from translation team.
923 2008-11-17 Nathan Sidwell <nathan@codesourcery.com>
925 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
926 Add _tid slot to maintain consistency with kernel.
928 2009-02-04 Ulrich Drepper <drepper@redhat.com>
930 * libio/wfileops.c (_IO_wfile_underflow): Fix handling of
931 incomplete characters at end of input buffer.
932 * libio/Makefile (tests): Add tst-fgetwc.
933 * libio/tst-fgetwc.c: New file.
934 * libio/tst-fgetwc.input: New file.
936 2009-02-02 Andrew Stubbs <ams@codesourcery.com>
938 * sysdeps/unix/sysv/linux/sh/Makefile (libm.so-no-z-defs): Define.
940 2009-02-02 Ulrich Drepper <drepper@redhat.com>
943 * iconv/gconv_trans.c (__gconv_transliterate): Don't change
944 *OUTBUFSTART unless the whole output fit into the buffer.
945 * iconv/Makefile (tests): Add tst-iconv4.
946 * iconv/tst-iconv4.c: New file.
948 2009-02-01 Ulrich Drepper <drepper@redhat.com>
950 * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new descriptors.
951 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
953 2009-01-29 Andrew Stubbs <ams@codesourcery.com>
955 * elf/Makefile (ld.so): Adjust the sed script to insert _begin in to
956 newer linker scripts.
958 2009-01-30 Ulrich Drepper <drepper@redhat.com>
961 * sysdeps/unix/sysv/linux/sys/inotify.h: Second parameter of
962 inotify_rm_watch should have type int.
964 2009-01-06 Steven Munroe <sjmunroe@us.ibm.com>
966 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
967 Make aligned_restore_vmx a local symbol.
968 * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp):
971 2009-01-30 Andreas Jaeger <aj@suse.de>
973 * sysdeps/unix/sysv/linux/bits/shm.h (SHM_EXEC): Define.
974 * sysdeps/unix/sysv/linux/ia64/bits/shm.h (SHM_EXEC): Define.
975 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h (SHM_EXEC): Define.
976 * sysdeps/unix/sysv/linux/s390/bits/shm.h (SHM_EXEC): Define.
977 * sysdeps/unix/sysv/linux/sh/bits/shm.h (SHM_EXEC): Define.
978 * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHM_EXEC): Define.
979 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (SHM_EXEC): Define.
981 2009-01-11 Ryan S. Arnold <rsa@us.ibm.com>
984 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR,
985 _SET_SI_FPSCR): Clobber fp0 to prevent erroneous test-case passes.
987 2009-01-08 Ryan S. Arnold <rsa@us.ibm.com>
990 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
991 (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
992 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
993 (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
995 2009-01-11 Thomas Schwinge <tschwinge@gnu.org>
997 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Use
998 memcpy instead of memcmp.
999 (_dl_setup_pointer_guard): Likewise.
1001 2009-01-30 Ulrich Drepper <drepper@redhat.com>
1003 * malloc/malloc.c (sYSMALLOc): Don't use assert when detecting
1004 manipulated brk, use malloc_printerr.
1005 * misc/sbrk.c (__sbrk): Better error handling for nonsense
1008 2009-01-30 Jakub Jelinek <jakub@redhat.com>
1010 * string/string.h (memchr, strchr, strrchr, strpbrk, strstr, index,
1011 rindex): For C++ add inlines so that they can be recognized as
1013 * string/strings.h: Define correct C++ prototypes for gcc 4.4.
1015 2009-01-29 Ulrich Drepper <drepper@redhat.com>
1016 Jakub Jelinek <jakub@redhat.com>
1018 * string/string.h: Define correct C++ prototypes for gcc 4.4.
1019 * wcsmbs/wchar.h: Likewise.
1021 2009-01-29 Ulrich Drepper <drepper@redhat.com>
1023 * sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
1024 (stackinfo_sub_sp): Define.
1026 2009-01-28 Ulrich Drepper <drepper@redhat.com>
1029 * nscd/mem.c (gc): Use alloca_count to get the real stack usage.
1030 * include/alloca.h (alloca_account): Define.
1031 * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Define.
1032 (stackinfo_sub_sp): Define.
1034 * nscd/connections.c (nscd_init): If database file access fails
1035 check whether this is due to permission problems and bail in that
1039 * nscd/mem.c (gc): Fix assignment of he_data in case malloc is used.
1040 Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
1042 2009-01-14 Kaz Kojima <kkojima@rr.iij4u.or.jp>
1044 * sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL):
1045 Add "t" to clobber list.
1046 (INTERNAL_SYSCALL_NCS): Likewise.
1048 2009-01-28 Ulrich Drepper <drepper@redhat.com>
1050 * nss/getent.c (print_networks): Don't print comma between aliases.
1052 2009-01-23 Ulrich Drepper <drepper@redhat.com>
1054 * sysdeps/unix/sysv/linux/tst-clone.c (do_test): Avoid warning.
1056 * misc/hsearch_r.c (hcreate_r): We need at least three elements in
1058 * misc/Makefile (tests): Add bug-hsearch1.
1059 * misc/bug-hsearch1.c: New file.
1061 2009-01-22 Roland McGrath <roland@redhat.com>
1063 * Makeconfig (%.v.i): Strip trailing # comments,
1064 not only whole-line comments.
1066 2009-01-10 Ulrich Drepper <drepper@redhat.com>
1068 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Take
1069 one parameter. If non-NULL use it to initialize return value.
1070 (_dl_setup_pointer_guard): New function.
1071 * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
1072 * sysdeps/generic/ldsodefs.h: Declare _dl_random.
1073 * elf/rtld.c (security_init): Pass _dl_random to
1074 _dl_setup_stack_chk_guard. Call _dl_setup_pointer_guard to initialize
1076 * elf/dl-sysdep.c (_dl_random): New variable.
1077 (_dl_sysdep_start): Handle AT_RANDOM.
1078 (_dl_show_auxv): Likewise.
1079 * elf/dl-support.c (_dl_random): New variable.
1080 (_dl_aux_init): Handle AT_RANDOM.
1081 * csu/libc-start.c [!SHARED] (libc_start_main): Pass _dl_random
1082 to _dl_setup_stack_chk_guard.
1084 * elf/elf.h (AT_RANDOM): Define AT_BASE_PLATFORM and AT_RANDOM.
1086 2009-01-10 Roland McGrath <roland@redhat.com>
1088 * nscd/nscd.c (parse_opt): Use argp_error for bad -i argument.
1090 2009-01-08 Ulrich Drepper <drepper@redhat.com>
1092 * sysdeps/i386/fpu/libm-test-ulps: Adjust expm1 errors.
1095 * nss/nss_files/files-parse.c (strtou32): New function.
1096 (INT_FIELD): Use strotu32 instead of strtoul to unify behavior
1097 across 32-bit and 64-bit platforms.
1098 (INT_FIELD_MAYBE_NULL): Likewise.
1100 2009-01-08 Jakub Jelinek <jakub@redhat.com>
1103 * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who): Avoid
1104 comma after RUSAGE_CHILDREN if not -D_GNU_SOURCE.
1105 * sysdeps/unix/sysv/linux/sparc/bits/resource.h (enum __rusage_who):
1108 2009-01-05 Paolo Bonzini <bonzini@gnu.org>
1111 * posix/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
1112 being NULL also if there are no backreferences.
1113 * posix/rxspencer/tests: Add testcases.
1115 2009-01-04 Paolo Bonzini <bonzini@gnu.org>
1118 * posix/bug-regex17.c: Add testcases.
1119 * posix/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
1122 2009-01-05 Martin Schwidefsky <schwidefsky@de.ibm.com>
1124 * sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h: New file.
1125 * sysdeps/unix/sysv/linux/s390/gettimeofday.c: New file.
1126 * sysdeps/unix/sysv/linux/s390/init-first.c: New file.
1127 * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines): Add dl-vdso
1129 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INLINE_VSYSCALL,
1130 INTERNAL_VSYSCALL, INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK,
1131 INTERNAL_SYSCALL_NCS, HAVE_CLOCK_GETRES_VSYSCALL and
1132 HAVE_CLOCK_GETTIME_VSYSCALL: Define.
1133 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1134 * sysdeps/unix/sysv/linux/s390/Versions: New file.
1136 2008-12-31 Paolo Bonzini <bonzini@gnu.org>
1138 * posix/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
1139 * posix/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
1140 re_string_skip_chars, re_string_reconstruct): Likewise.
1141 * posix/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
1143 2008-12-31 Rafael Avila de Espindola <espindola@google.com>
1145 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Check and
1146 adjust the buffer alignment.
1148 2009-01-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
1150 * sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
1151 Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
1154 * hurd/report-wait.c (describe_number): Use __stpcpy to prepend
1155 flavor to description only when flavor is not NULL.
1157 * hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
1158 mutex after SIGIO/SIGURG lookup loop.
1160 2009-01-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
1162 * bits/resource.h (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Add macros.
1164 2009-01-03 Ulrich Drepper <drepper@redhat.com>
1166 * sysdeps/unix/sysv/linux/i386/sysdep.h: Describe 6th argument
1169 2009-01-02 Ulrich Drepper <drepper@redhat.com>
1171 * sysdeps/unix/sysv/linux/kernel-features.h
1172 (__ASSUME_FUTEX_CLOCK_REALTIME): Define.
1174 * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Create temporary state object
1175 if no output is written.
1177 * version.h: Bump to 2.10 development.
1179 * posix/getconf.c: Update copyright year.
1180 * nss/getent.c: Likewise.
1181 * iconv/iconvconfig.c: Likewise.
1182 * iconv/iconv_prog.c: Likewise.
1183 * elf/ldconfig.c: Likewise.
1184 * catgets/gencat.c: Likewise.
1185 * csu/version.c: Likewise.
1186 * elf/ldd.bash.in: Likewise.
1187 * elf/sprof.c (print_version): Likewise.
1188 * locale/programs/locale.c: Likewise.
1189 * locale/programs/localedef.c: Likewise.
1190 * nscd/nscd.c (print_version): Likewise.
1191 * debug/xtrace.sh: Likewise.
1192 * malloc/memusage.sh: Likewise.
1193 * malloc/mtrace.pl: Likewise.
1194 * debug/catchsegv.sh: Likewise.
1196 2008-12-29 Mike Frysinger <vapier@gentoo.org>
1198 * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk
1201 2008-12-29 Ulrich Drepper <drepper@redhat.com>
1203 * sysdeps/posix/getaddrinfo.c (gaih_inet): When the
1204 gethostbyname4_r function call succeeded, just leave the loop.
1207 * wcsmbs/wchar.h: Move undefs for local __need_* constants to the
1209 * wctype/wctype.h: Get wint_t definition directly from <stddef.h>.
1210 * wctype/Makefile (tests): Add bug-wctypeh.
1211 * wctype/bug-wctypeh.c: New file.
1213 * nscd/nscd_gethst_r.c (nscd_gethst_r): Don't use nscd if
1214 LOCALDOMAIN is defined.
1215 * nscd/nscd_getai.c (__nscd_getai): Likewise.
1217 * sysdeps/x86_64/bits/select.h: New file.
1219 * resolv/res_init.c (__res_vinit): Count all servers in statp->nscount.
1221 2008-12-21 Bruno Haible <bruno@clisp.org>
1224 * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Create temporary state object
1225 if no output is written.
1227 2008-12-13 Klaus Dittrich <kladit@arcor.de>
1229 * login/utmp_file.c (pututline_file): Replace call to dup2 with
1230 libc internal symbol __dup2 to avoid access through the PLT.
1232 2008-12-08 Ulrich Drepper <drepper@redhat.com>
1235 * sysdeps/unix/sysv/linux/bits/socket.h (SCM_CREDENTIALS): Make
1236 available only for __USE_GNU.
1238 * inet/Makefile (tests): Add tst-getni2.
1239 * inet/tst-getni2.c: New file.
1242 * inet/getnameinfo.c (getnameinfo): Check for output buffers being
1243 NULL when NI_NAMEREQD is set.
1244 Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
1245 * inet/Makefile (tests): Add tst-getni1.
1246 * inet/tst-getni1.c: New file.
1248 2008-12-03 Petr Baudis <pasky@suse.cz>
1251 * nscd/connections.c (invalidate_cache): Use prune_run_lock
1252 instead of prune_lock.
1253 (nscd_run_prune): Before calling prune_cache, take prune_run_lock.
1254 * nscd/nscd.h (database_dyn): Add prune_run_cache.
1256 2008-12-07 Ulrich Drepper <drepper@redhat.com>
1258 * resolv/res_send.c (send_dg): Use correct guards for SOCK_CLOEXEC
1261 * sysdeps/unix/sysv/linux/kernel-features.h: Fix typo in accept4
1264 * resolv/res_init.c (__res_vinit): Always assign to statp->nscount
1265 after reading name server list.
1268 * nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyname4_r): Fix memory
1269 handling for host name aliases.
1271 2008-11-24 Arkadiusz Miśkiewicz <arekm@maven.pl>
1273 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Use LOAD_PIC_REG
1274 instead of doing things manually.
1276 2008-11-26 Chris Steel <chris.steel.lnx@googlemail.com>
1278 * posix/regex_internal.h (build_wcs_upper_buffer):
1279 Return type is reg_error_t.
1281 2008-12-05 Ulrich Drepper <drepper@redhat.com>
1283 * posix/globtest.sh: Use mktemp to create temporary file and
1286 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S): Handle large
1288 (__CPU_CLR_S): Likewise.
1289 (__CPU_ISSET_S): Likewise.
1291 2008-12-05 Joseph Myers <joseph@codesourcery.com>
1292 Ulrich Drepper <drepper@redhat.com>
1294 * scripts/firstversion.awk: Use custom comparison function to compare
1296 * scripts/versions.awk: Use sort invocation which can handle
1297 multi-digit sub-version numbers.
1299 2008-12-04 Ulrich Drepper <drepper@redhat.com>
1301 * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE2): Define.
1302 * locale/iso-639.def: Add Chhattisgarhi entry.
1304 2008-12-02 Ulrich Drepper <drepper@redhat.com>
1306 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Recognize
1308 (_nss_dns_gethostbyname4_r): Likewise.
1309 * resolv/res_init.c (__res_vinit): Initialize nscount to zero.
1310 * sysdeps/posix/getaddrinfo.c (gaih_inet): In case we use
1311 gethostbyname4_r, we don't have a separate IPv6 status, so copy
1312 the no_data variable.
1314 * resolv/res_init.c (__res_vinit): Fill in IPv4 name server
1315 information at the correct index.
1317 * socket/sys/socket.h: Declare accept4.
1318 * socket/accept4.c: New file.
1319 * sysdeps/unix/sysv/linux/accept4.c: New file.
1320 * sysdeps/unix/sysv/linux/i386/accept4.S: New file.
1321 * socket/Makefile (routines): Add accept4.
1322 * socket/Versions: Export accept4 with version GLIBC_2.10.
1323 * socket/paccept.c: Removed.
1324 * sysdeps/unix/sysv/linux/paccept.c: Removed.
1325 * sysdeps/unix/sysv/linux/i386/paccept.S: Removed.
1326 * Versions.def: Define GLIBC_2.10 for libc.
1327 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_ACCEPT4.
1329 * nscd/connections.c: Use accept4.
1331 * sysdeps/unix/sysv/linux/i386/socket.S: Fix comment.
1333 2008-12-01 Ulrich Drepper <drepper@redhat.com>
1335 * resolv/res_send.c (send_dg): Create sockets with non-blocking
1338 * stdlib/setenv.c (unsetenv): Don't search environment if it does
1340 * stdlib/Makefile (tests): Add tst-unsetenv1.
1341 * stdlib/tst-unsetenv1.c: New file.
1343 2008-11-29 Ulrich Drepper <drepper@redhat.com>
1345 * login/utmp_file.c (file_writable): New variable.
1346 (setutent_file): Don't try to open file for writing.
1347 (pututline_file): Before writing, make descriptor writable if
1350 2008-11-26 Ulrich Drepper <drepper@redhat.com>
1352 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
1353 to IPv4 or IPv6 if an interface has been found.
1355 2008-11-26 Roland McGrath <roland@redhat.com>
1357 * sysdeps/unix/sysv/linux/alpha/ipc_priv.h: Renamed to ...
1358 * sysdeps/unix/sysv/linux/powerpc/ipc_priv.h: ... here.
1360 * sysdeps/unix/sysv/linux/alpha/wordexp.c: Renamed to ...
1361 * sysdeps/unix/sysv/linux/ia64/wordexp.c: ... here.
1362 * sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c: Change #include.
1364 * elf/elf.h (NT_386_IOPERM): New macro.
1365 (NT_PPC_VSX): New macro.
1367 2008-11-25 Roland McGrath <roland@redhat.com>
1369 * sysdeps/alpha, sysdeps/unix/bsd/osf/alpha,
1370 sysdeps/unix/bsd/Attic/osf1/alpha, sysdeps/unix/sysv/linux/alpha,
1371 sysdeps/unix/sysv/linux/alpha/alpha, sysdeps/unix/alpha,
1372 sysdeps/mach/alpha, sysdeps/mach/hurd/alpha:
1373 Subdirectories moved to ports repository.
1374 * configure.in (base_machine): Remove alpha case.
1376 2008-11-25 Thomas Schwinge <tschwinge@gnu.org>
1378 * sysdeps/mach/strerror_l.c: New file.
1380 2008-11-13 Ryan S. Arnold <rsa@us.ibm.com>
1383 * sysdeps/powerpc/fpu/Makefile: Added test case tst-setcontext-fpscr.
1384 * sysdeps/powerpc/fpu/feholdexcpt.c (_FPU_MASK_ALL): Define to replace
1386 * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register): Dynamically
1387 choose mtfsf insn based on PPC_FEATURE_HAS_DFP.
1388 (relax_fenv_state): Same as above.
1389 (FPSCR_29): Reserve bit in ISA 2.05.
1390 (FPSCR_NI): Provide define for compat.
1391 * sysdeps/powerpc/fpu/fesetenv.c (_FPU_MASK_ALL): Define to replace
1393 * sysdeps/powerpc/fpu/feupdateenv.c (_FPU_MASK_ALL): Define to replace
1395 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: New file. Test case to
1396 test setcontext and swapcontext with dynamic 64-bit FPSCR detection.
1397 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Adjust
1398 access to hwcap to account for hwcap size increase to uint64_t.
1399 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp ):
1401 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
1402 (*setcontext): Likewise.
1403 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
1405 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
1407 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
1408 (*setcontext): dynamically select mtfsf insn based on
1409 PPC_FEATURE_HAS_DFP. Adjust access to hwcap to account for hwcap size
1410 increase to uint64_t.
1411 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
1412 (*swapcontext): dynamically select mtfsf insn based on
1413 PPC_FEATURE_HAS_DFP. Adjust access to hwcap to account for hwcap size
1414 increase to uint64_t.
1415 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
1417 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
1419 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
1420 (*setcontext): dynamically select mtfsf insn based on
1421 PPC_FEATURE_HAS_DFP.
1422 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
1423 (*swapcontext): dynamically select mtfsf insn based on
1424 PPC_FEATURE_HAS_DFP.
1426 2008-11-13 Ulrich Drepper <drepper@redhat.com>
1428 * version.h: Bump for 2.9 release.
1429 * include/features.h (__GLIBC_MINOR__): Bump to 9.
1432 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ALLOC_SIZE):
1433 Multiply with sizeof of __cpu_mask, not 8 unconditionally after
1436 2008-11-11 Ulrich Drepper <drepper@redhat.com>
1439 * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Don't abort for
1440 unknown request types for now.
1442 2008-11-11 Roland McGrath <roland@redhat.com>
1444 * sysdeps/x86_64/configure: New file.
1446 * configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo).
1447 * configure: Regenerated.
1449 2008-11-03 Martin Schwidefsky <schwidefsky@de.ibm.com>
1451 * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the
1452 correct instruction to remove the stack frame.
1454 2008-11-03 Michael Matz <matz@suse.de>
1456 * sysdeps/s390/bits/atomic.h (__arch_compare_and_exchange_val_32_acq,
1457 __arch_compare_and_exchange_val_64_acq): Add "memory" clobber.
1459 2008-11-07 Jakub Jelinek <jakub@redhat.com>
1461 * include/stdio.h (__builtin_fwrite, __builtin_fwrite_unlocked):
1464 * bits/libc-tsd.h (__libc_tsd_define, __libc_tsd_address,
1465 __libc_tsd_get, __libc_tsd_set): Add TYPE argument, use it as the type
1466 of the thread variable instead of void *.
1467 * sysdeps/mach/hurd/bits/libc-tsd.h (__libc_tsd_define,
1468 __libc_tsd_address, __libc_tsd_get, __libc_tsd_set): Likewise.
1469 * include/ctype.h (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1470 __libc_tsd_define arguments.
1471 (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): Adjust
1472 __libc_tsd_address arguments. Remove union hack.
1473 * include/rpc/rpc.h (RPC_VARS): Adjust __libc_tsd_define arguments.
1474 * sunrpc/rpc_thread.c (RPC_VARS): Likewise.
1475 (__rpc_thread_destroy, rpc_thread_multi, __rpc_thread_variables):
1476 Adjust __libc_tsd_{set,get} arguments.
1477 * ctype/ctype-info.c (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1478 __libc_tsd_define arguments.
1479 * locale/uselocale.c (__uselocale): Adjust __libc_tsd_{set,get}
1481 * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
1482 * locale/global-locale.c (__libc_tsd_LOCALE): Adjust type.
1483 (LOCALE): Adjust __libc_tsd_define arguments.
1484 * locale/localeinfo.h (_NL_CURRENT_LOCALE): Adjust __libc_tsd_get
1486 (LOCALE): Adjust __libc_tsd_define arguments.
1487 * sysdeps/mach/hurd/malloc-machine.h (MALLOC): Adjust __libc_tsd_define
1489 (tsd_setspecific, tsd_getspecific): Adjust __libc_tsd_{set,get}
1492 2008-11-02 Ulrich Drepper <drepper@redhat.com>
1494 * malloc/malloc.c (public_rEALLOc): When new arena is used, copy
1495 really all bytes. Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1497 2008-11-01 Ulrich Drepper <drepper@redhat.com>
1500 * misc/hsearch_r.c (hsearch_r): Fix secondary hash function.
1502 2008-10-24 Joseph Myers <joseph@codesourcery.com>
1503 Ulrich Drepper <drepper@redhat.com>
1505 * math/tgmath.h (__floating_type): Use __builtin_classify_type in
1506 definition for GCC 3.1 and later.
1508 2008-10-31 Jakub Jelinek <jakub@redhat.com>
1510 * elf/dl-tls.c (__tls_get_addr): After calling _dl_update_slotinfo
1511 refetch dtv, as it might have changed.
1512 * elf/Makefile: Add rules to build and run tst-tls18.
1513 * elf/tst-tls18.c: New test.
1514 * elf/tst-tlsmod18a.c: New file.
1516 2008-09-09 Aurelien Jarno <aurelien@aurel32.net>
1519 * iconvdata/gconv-modules: Add LATIN9 as an alias to ISO-8859-15.
1521 2008-10-31 Ulrich Drepper <drepper@redhat.com>
1524 * sysdeps/powerpc/elf/rtld-global-offsets.sym: Fix typo.
1527 * posix/spawnattr_getschedparam.c (posix_spawnattr_getschedparam):
1528 Fix length of copy operation.
1530 2008-10-02 Pierre Habouzit <madcoder@debian.org>
1532 * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall
1533 and fix its calling convention.
1535 2008-10-07 Andreas Schwab <schwab@suse.de>
1538 * resolv/res_send.c (send_vc): Fix last change.
1539 (send_dg): Align here as well.
1541 2008-10-31 Ulrich Drepper <drepper@redhat.com>
1543 * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle UL_GETFSIZE
1544 return value in case rlimit is RLIM_INFINITY.
1547 * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Fix return value
1549 * resource/Makefile (tests): Add bug-ulimit1.
1550 * resource/bug-ulimit1.c: New file.
1553 * sunrpc/rpc_main.c (mkfile_output): Properly handle filename
1554 without dot. Properly terminate the string with a null byte.
1555 Based on a patch by Aurelien Jarno <aurelien@aurel32.net>.
1558 * debug/getgroups_chk.c (__getgroups_chk): Return EINVAL error for
1560 * posix/bits/unistd.h (getgroups): Call __getgroups_chk for
1564 * sysdeps/powerpc/powerpc32/dl-machine.c: Fix typo in message.
1566 2008-10-30 Ulrich Drepper <drepper@redhat.com>
1568 * grp/initgroups.c (internal_getgrouplist): Don't prematurely
1569 abort if there is no initgroups_dyn function.
1571 * resolv/res_send.c (send_dg): On timeout, only return nonzero
1572 result if any of the queries really provided an answer.
1574 2008-10-28 Ulrich Drepper <drepper@redhat.com>
1576 * po/lt.po: Update from translation team.
1578 2008-10-26 Ulrich Drepper <drepper@redhat.com>
1580 * po/id.po: Update from translation team.
1582 2008-10-24 Ulrich Drepper <drepper@redhat.com>
1584 * resolv/res_query.c (__libc_res_nquery): Add a few casts.
1585 Fix tests for existence of second reply.
1587 2008-10-23 Ulrich Drepper <drepper@redhat.com>
1589 * po/id.po: New file.
1590 Contributed by the Indonesian translation team.
1592 2008-10-22 Dmitry V. Levin <ldv@altlinux.org>
1594 * misc/syslog.c (openlog_internal): Fix __have_sock_cloexec
1597 2008-10-17 Jakub Jelinek <jakub@redhat.com>
1599 * elf/Makefile: Add rules to build and run tst-tls17.
1600 * elf/tst-tls17.c: New test.
1601 * elf/tst-tlsmod17a.c: New file.
1602 * elf/tst-tlsmod17b.c: Likewise.
1604 2008-10-17 Ulrich Drepper <drepper@redhat.com>
1606 * stdlib/divmod_1.c: Use correct type for dummy variable.
1607 * stdlib/mod_1.c: Likewise.
1609 2008-10-16 Ulrich Drepper <drepper@redhat.com>
1611 * elf/dl-tls.c (_dl_update_slotinfo): Copy all of the initial DTV.
1613 2008-10-16 Jakub Jelinek <jakub@redhat.com>
1615 * sysdeps/unix/sysv/linux/sys/signalfd.h (signalfd): Fix __THROW vs.
1616 __nonnull order for C++.
1617 * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h (signalfd): Likewise.
1618 * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h (signalfd): Likewise.
1620 2008-10-01 Daniel Jacobowitz <dan@codesourcery.com>
1622 * stdlib/longlong.h: Update from GCC.
1624 2008-10-09 Jakub Jelinek <jakub@redhat.com>
1625 David S. Miller <davem@davemloft.net>
1627 * sysdeps/sparc/sparc64/sparcv9v/memcpy.S: When not USE_BPR,
1628 make sure any registers used with 64-bit 'branch-on-register'
1629 instructions have their top 32-bits clear.
1630 * sysdeps/sparc/sparc64/sparcv9v/memset.S: Likewise.
1631 * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: Likewise.
1633 2008-09-18 Andreas Schwab <schwab@suse.de>
1636 * resolv/res_send.c (send_vc): Fix use of unaligned address.
1637 Properly handle partial reads.
1639 2008-10-01 Mark Shinwell <shinwell@codesourcery.com>
1641 * elf/elf.h (STO_MIPS_PLT): New.
1643 (R_MIPS_JUMP_SLOT): New.
1644 (R_MIPS_NUM): Redefine to 128.
1645 (DT_MIPS_PLTGOT): New.
1646 (DT_MIPS_RWPLT): New.
1647 (DT_MIPS_NUM): Redefine to 0x35.
1649 2008-10-01 Ulrich Drepper <drepper@redhat.com>
1651 * timezone/africa: Update from tzdata2008f.
1652 * timezone/asia: Likewise.
1653 * timezone/australasia: Likewise.
1654 * timezone/europe: Likewise.
1655 * timezone/leapseconds: Likewise.
1656 * timezone/northamerica: Likewise.
1657 * timezone/southamerica: Likewise.
1658 * timezone/zone.tab: Likewise.
1660 2008-09-30 Ulrich Drepper <drepper@redhat.com>
1662 * nscd/connections.c: Disable use of paccept for now.
1664 2008-09-29 Ulrich Drepper <drepper@redhat.com>
1666 * socket/Versions: Remove paccept export for GLIBC_2.9.
1667 * socket/Makefile (routines): Remove paccept.
1668 * socket/sys/socket.h: Remove paccept declaration.
1670 * po/sv.po: Update from translation team.
1672 2008-09-22 Deborah S. Townsend <dstownse@us.ibm.com>
1674 * sysdeps/s390/s390-64/s390x-mcount.S: Replace ahi with aghi.
1675 * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
1677 2008-09-16 Ulrich Drepper <drepper@redhat.com>
1679 * dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
1680 Patch by Olivier Fourdan <ofourdan@redhat.com>.
1682 2008-09-15 Ulrich Drepper <drepper@redhat.com>
1684 * sunrpc/rpc/svc.h: Declare svcfd_create.
1685 Patch by Michael Solberg <msolberg@redhat.com>.
1687 2008-09-12 Flavio Leitner <fleitner@redhat.com>
1688 Ulrich Drepper <drepper@redhat.com>
1690 * malloc/malloc.c (public_vALLOc): Try other arenas in case
1692 (public_pVALLOc): Likewise.
1694 2008-09-02 Andreas Jaeger <aj@suse.de>
1696 * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Fix last
1699 2008-08-26 Aurelien Jarno <aurelien@aurel32.net>
1702 * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Fix a typo.
1704 2008-07-18 Daniel Jacobowitz <dan@codesourcery.com>
1706 * Makefile (check-data): Check data directory in add-ons.
1707 * elf/Makefile (check-data): Likewise.
1709 2008-08-18 Roland McGrath <roland@redhat.com>
1711 * configure.in (--with-cpu): Check compiler support for -march/-mcpu.
1712 * configure: Regenerated.
1713 * config.make.in (cflags-cpu): New substituted variable.
1714 (with-cpu): Variable removed.
1715 * Makeconfig (+cflags): Use $(cflags-cpu), not $(with-cpu).
1717 2008-08-14 Ryan S. Arnold <rsa@us.ibm.com>
1720 * sysdeps/powerpc/fpu/bits/mathinline.h (__signbitl): Copy new
1721 __signbitl definition and __LONG_DOUBLE_128__ guard from:
1722 * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Remove as
1723 redundant. Functions which call floating point assembler operations
1724 should go into a sysdeps powerpc/fpu directory.
1726 2008-08-15 Ulrich Drepper <drepper@redhat.com>
1728 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Define MAP_STACK.
1729 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
1731 2008-08-14 Ulrich Drepper <drepper@redhat.com>
1733 * sysdeps/x86_64/memset.S: Reduce size of tables for PIC.
1735 * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Undo all
1736 change related to AT_EXECFN. We cannot use that string.
1737 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Remove
1739 * elf/dl-support.c: Remove _dl_execfn variable.
1740 (_dl_aux_init): Remove handling of AT_EXECFN.
1741 * elf/dl-sysdep.c (_dl_sysdep_start): Remove handling of AT_EXECFN.
1742 * elf/rtld.c (process_envvars): Remove use of __ASSUME_AT_EXECFN.
1744 2008-08-13 Ulrich Drepper <drepper@redhat.com>
1747 * libio/fmemopen.c: Implement binary mode. In this mode no NUL
1748 byte gets added to writes and seeks from the end use the length of
1749 the buffer and not the currently terminating NUL byte.
1752 * login/utmp_file.c (getutent_r_file): Take additional parameter.
1753 Set to true if locking failed.
1754 (getutid_r_file): Adjust caller.
1755 (pututline_file): Likewise. Return NULL in this case.
1756 Patch mostly by halesh.s@gmail.com.
1758 2008-08-12 Ulrich Drepper <drepper@redhat.com>
1761 * sysdeps/unix/sysv/linux/ifaddrs.c (struct sockaddr_ll_max):
1763 (struct ifaddrs_storage): Use it instead of sockaddr_ll.
1765 2008-08-12 Ryan S. Arnold <rsa@us.ibm.com>
1768 * sysdeps/powerpc/powerpc32/dl-machine.c (CHECK_STATIC_TLS): Remove
1769 macro since it is now available in elf/dynamic-link.h.
1771 2008-08-12 Roland McGrath <roland@frob.com>
1773 * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Avoid -Wparenthesis triggers,
1774 in case used outside of libc.
1775 Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>
1777 2008-08-11 Ulrich Drepper <drepper@redhat.com>
1779 * resolv/res_mkquery.c (res_nmkquery): Call ns_name_compress
1780 directly instead of going through dn_comp.
1782 2008-08-11 Aurelien Jarno <aurel32@debian.org>
1784 * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
1785 Fix asm constraints.
1787 2008-08-07 Ulrich Drepper <drepper@redhat.com>
1790 * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_PROBE): Define.
1791 (IPV6_PMTUDISC_PROBE): Likewise.
1793 2008-08-07 Pete Eberlein <eberlein@us.ibm.com>
1796 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (PROT_SAO): Define.
1798 2008-08-01 Steven Munroe <sjmunroe@us.ibm.com>
1799 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
1802 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags):
1803 Added the members 'vsx' and 'arch_2_06'.
1804 (_dl_powerpc_platforms): Add the member 'power7'.
1805 * sysdeps/powerpc/dl-procinfo.h: Modify _DL_HWCAP_FIRST
1806 to reflect the changes required by VSX and ISA 2.06.
1807 Modify _DL_PLATFORMS_COUNT to reflect the addition of
1809 Defined PPC_PLATFORM_POWER7.
1810 (_dl_string_platform): Add support for POWER7.
1811 * sysdeps/powerpc/sysdep.h: Define bit masks for VSX
1812 capability and ISA 2.06.
1814 2008-08-07 Ulrich Drepper <drepper@redhat.com>
1817 * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct
1818 macro to detect use of 128 bit long double.
1819 Patch by Ryan S. Arnold <rsa@us.ibm.com>.
1821 2008-08-05 Ulrich Drepper <drepper@redhat.com>
1823 * scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
1826 * sysdeps/i386/fpu/s_expm1l.S: Simply use exp implementation for large
1828 * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
1829 Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1831 2008-08-03 Ulrich Drepper <drepper@redhat.com>
1833 * nscd/connections.c (main_loop_poll): Pass a buffer which is
1834 guaranteed to be large enough to read inotify event. Ignore
1835 EAGAIN error. Better error message. Add branch predicition.
1836 (main_loop_epoll): Likewise.
1838 2008-08-02 Roland McGrath <roland@frob.com>
1840 * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
1841 Add memory clobbers.
1843 2008-08-02 Ulrich Drepper <drepper@redhat.com>
1845 * manual/arith.texi: Avoid @strong{Note:}.
1846 * manual/creature.texi: Likewise.
1847 * manual/filesys.texi: Likewise.
1848 * manual/math.texi: Likewise.
1849 * manual/memory.texi: Likewise.
1850 * manual/resource.texi: Likewise.
1851 * manual/syslog.texi: Likewise.
1852 * manual/time.texi: Likewise.
1854 * sysdeps/posix/clock_getres.c (hp_timing_getres): Remove inline
1857 2008-08-01 Ulrich Drepper <drepper@redhat.com>
1859 * sysdeps/unix/sysv/linux/Versions: Fix changes due to old patch for
1860 new epoll_create1 interface.
1861 * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
1862 * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
1863 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
1865 * include/arpa/nameser.h (NS_GET16): Use const pointer.
1866 (NS_GET32): Likewise.
1868 * sysdeps/unix/sysv/linux/kernel-features.h: s390 has the new
1871 * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
1872 use the AT_EXECFN value if it is no absolute path.
1873 * sysdeps/unix/sysv/linux/kernel-features.h: Never define
1876 * Versions.def: Add GLIBC_2.9 to libresolv.
1877 * include/resolv.h: Remove hidden proto declarations for __ns_*
1878 functions. Add them for __dn_count_labels and __p_secstodate.
1879 * include/arpa/nameser.h: Add a number of hidden proto declarations.
1880 Define ns_msg_getflags macro here.
1881 * resolv/res_debug.c: Add hidden definition for __dn_count_labels
1883 * resolv/Versions: Export functions from <arpa/nameser.h> from
1884 libresolv in version GLIBC_2.9.
1885 * resolv/ns_name.c: Integrate changes from bind 9.5.0. Add necessary
1887 * resolv/ns_netint.c: Likewise.
1888 * resolv/ns_parse.c: Likewise.
1889 * resolv/ns_print.c: Likewise.
1890 * resolv/ns_samedomain.c: Likewise.
1891 * resolv/ns_ttl.c: Likewise.
1892 * resolv/arpa/nameser_compat.h: Likewise.
1893 * resolv/arpa/nameser.h: Likewise. Remove macros which redirect
1895 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Use __ns_get16
1896 instead of ns_get16.
1897 * resolv/nss_dns/dns-host.c (getanswer_r): Use __ns_get16 and
1898 __ns_get32 instead of ns_get16 and ns_get32 respectively.
1899 (gaih_getanswer_slice): Likewise.
1900 * resolv/Makefile (libresolv-routines): Add ns_date.
1901 * resolv/ns_date.c: New file.
1903 * elf/Makefile (check-localplt.out): Also check libresolv and
1906 2008-07-31 Ulrich Drepper <drepper@redhat.com>
1908 * sysdeps/unix/sysv/linux/kernel-features.h: Define
1911 2008-07-30 Ulrich Drepper <drepper@redhat.com>
1913 * sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
1914 buffer passed to NSS functions.
1916 * nscd/connections.c (nscd_init): Typo in preprocessor directive.
1918 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
1921 * misc/syslog.c (openlog_internal): Fix compile problem.
1923 2008-07-28 Roland McGrath <roland@redhat.com>
1925 * elf/dl-sysdep.c (_dl_show_auxv): Add AT_EXECFN to the table.
1927 2008-07-28 Ulrich Drepper <drepper@redhat.com>
1929 * io/ftw.c (add_object): Remove inline to avoid warning.
1931 * sysdeps/unix/sysv/linux/paccept.c: Fix compile problem.
1933 * resolv/res_send.c (__libc_res_nsend): Take additional parameter.
1934 Use it instead of locally defined resplen2 variable.
1935 (res_nsend): Adjust for __libc_res_nsend interface change.
1936 (send_vc): Initialize *resplen2 if necessary. Read length of
1937 package into an appropriately aligned variable. Store converted length
1938 in new variable and use it appropriately.
1939 Add branch prediction help.
1940 * resolv/res_query.c (__libc_res_nquery): Take additional parameter
1941 and pass it on to __libc_res_nsend. Adjust all callers.
1942 (__libc_res_nsearch): Likewise.
1943 (__libc_res_nqeurydomain): Likewise.
1944 * resolv/nss_dns/dns-host.c: Adjust for __libc_res_nsearch interface
1946 (_nss_dns_gethostbyname4): Don't unconditionally allocate tmp array.
1947 Define resplen2 variable and pass it to __libc_res_nsearch and then
1949 (getanswer_r): In case of incorrect DNS data don't overread buffer.
1950 Add branch prediction.
1951 (gaih_getanswer_slice): Likewise. Check for invalid data types.
1952 (gaih_getanswer): Don't decode second slice if first one failed due
1953 to a too small buffer. Don't let not found status of second
1954 decoder shadow results of the first.
1955 * resolv/gethnamaddr.c (gethostbyname2): Adjust for __libc_res_nsearch
1956 and __libc_res_nquery interface changes
1957 (gethostbyaddr): Adjust for __libc_res_nquery interface change.
1958 * include/resolv.h: Adjust prototypes for __libc_res_nquery,
1959 __libc_res_nsearch, and __libc_res_nsend.
1960 * resolv/nss_dns/dns-canon.c: Adjust for __libc_res_nquery interface
1962 * resolv/nss_dns/dns-network.c: Adjust for __libc_res_nquery and
1963 __libc_res_nsearch interface changes.
1965 2008-07-27 Ulrich Drepper <drepper@redhat.com>
1967 * libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
1969 * posix/wordexp.c (exec_comm): Use pipe2 if possible to create
1970 file descriptors with close-on-exec set.
1971 (exec_comm_child): Fix the case where the write end of the pipe is
1972 STDOUT_FILENO already. In case it is, clear close-on-exec.
1974 * sysdeps/unix/sysv/linux/syscalls.list: Add __pipe2 alias.
1975 * io/pipe2.c: Likewise.
1976 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PIPE2
1977 instead of __ASSUME_PACCEPT.
1978 * include/unistd.h: Declare __have_pipe2.
1979 * libio/iopopen.c: Implement "e" flag.
1980 * libio/Makefile (tests): Add tst-popen1.
1981 * libio/tst-popen1.c: New file.
1983 * sysdeps/unix/sysv/linux/bits/socket.h: Define PF_ISDN and AF_ISDN.
1984 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
1986 2008-07-26 Ulrich Drepper <drepper@redhat.com>
1989 * libio/fileops.c (_IO_new_file_attach): Preserve errno around
1990 success call of _IO_SEEKOFF or calls which failed because the
1991 descriptor is for a pipe.
1993 * sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
1996 * misc/syslog.c (openlog_internal): Use SOCK_CLOEXEC if possible.
1998 * malloc/mtrace.c (mtrace): Use 'e' flag in fopen call. Drop
1999 F_SETFD use if we know fopen set the flag.
2001 * login/utmp_file.c (setutent_file): Minor optimization in case
2002 O_CLOEXEC is available.
2004 2008-07-24 Tom "spot" Callaway <tcallawa@redhat.com>
2006 * Makeconfig: Define pie-ccflag and PIE-ccflag variables.
2007 * elf/Makefile: Use pie-ccflag variable.
2008 * nscd/Makefile: Likewise.
2009 * sysdeps/sparc/Makefile: Set $(pie-ccflag) to -fPIE.
2011 2008-07-21 Andreas Krebbel <krebbel1@de.ibm.com>
2014 * Versions.def: Add GLIBC_2.9 version tag for libutil.
2015 * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Copy of
2016 gnu/bits/utmp.h. Check for __WORDSIZE_COMPAT32 removed.
2017 * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Copy of
2018 gnu/bits/utmpx.h. Check for __WORDSIZE_COMPAT32 removed.
2019 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add new files
2020 utmp32, utmpx32 and login32.
2021 * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Add 2.9
2022 versions of struct utmp functions to libc and libutil.
2023 * sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h: New file.
2024 * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c: New file.
2025 * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c: New file.
2026 * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c: New file.
2027 * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c: New file.
2028 * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c: New file.
2029 * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c: New file.
2030 * sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c: New file.
2031 * sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c: New file.
2032 * sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c: New file.
2033 * sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c: New file.
2034 * sysdeps/unix/sysv/linux/s390/s390-32/login.c: New file.
2035 * sysdeps/unix/sysv/linux/s390/s390-32/login32.c: New file.
2036 * sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c: New file.
2037 * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c: New file.
2038 * sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c: New file.
2039 * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: New file.
2040 * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c: New file.
2041 * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: New file.
2042 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h: New file.
2043 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c: New file.
2044 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: New file.
2046 2008-07-26 Ulrich Drepper <drepper@redhat.com>
2048 * scripts/gen-as-const.awk: Generate more widely usable code by
2049 using 64-bit arithmetic.
2051 * stdio-common/printf_fp.c (___printf_fp): Give wide outout code
2052 the same treatment as narrow output code in last patch.
2054 * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Namespace cleanup.
2057 * elf/dl-load.c (local_strdup): Remove inline.
2058 (_dl_map_object_from_fd): Don't allocate l_symbolic_searchlist.r_list.
2059 * elf/dl-object.c (_dl_new_object): Allocate symbolic searchlist as
2062 * sysdeps/unix/sysv/linux/dl-origin.c: Add const to avoid warning.
2064 2008-07-25 Ulrich Drepper <drepper@redhat.com>
2066 * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 and SPARC have
2067 the new syscalls, too.
2069 * sysdeps/i386/i686/memcmp.S: Fix unwind information.
2070 Reported by Paul Pluzhnikov <ppluzhnikov@google.com>.
2073 * stdio-common/_i18n_number.h (_i18n_number_rewrite): Take additional
2074 parameter for end of buffer. If temporary copy is too large use
2076 * stdio-common/vfprintf.c: Adjust for _i18n_number_rewrite
2078 * stdio-common/printf_fp.c (__printf_fp): Likewise.. Account for
2079 string rewrite when allocating buffer.
2081 * sysdeps/unix/sysv/linux/kernel-features.h: PPC has the new
2084 * nscd/connections.c (nscd_init): Clean up fcntl call.
2086 * nscd/nscd_helper.c (open_socket): Use SOCK_CLOEXEC and
2087 SOCK_NONBLOCK if possible.
2089 * sysdeps/unix/sysv/linux/opensock.c (__opensock): Use
2090 SOCK_CLOEXEC if available.
2092 * include/rpc/clnt.h: Declare __libc_clntudp_bufcreate and
2093 __libc_clntudp_bufcreate_internal.
2094 * include/sys/socket.h: Declare __have_sock_cloexec.
2095 * socket/Makefile (aux): Add have_sock_cloexec.
2096 * socket/have_sock_cloexec.c: New file.
2097 * sunrpc/clnt_udp.h (clntudp_bufcreate): Now a wrapper around
2098 __libc_clntudp_bufcreate.
2099 (__libc_clntudp_bufcreate): Former implementation of clntudp_bufcreate
2100 which takes an additional parameter. Create socket with non-blocking
2101 mode and close-on-exec flag set, if wanted.
2102 * sunrpc/Versions: Export __libc_clntudp_bufcreate@GLIBC_PRIVATE.
2103 * nis/ypclnt.c (yp_bind_client_create): Use __libc_clntpudp_bufcreate
2104 instead of clntudp_create. The socket has already the close-on-exec
2105 flag set if SOCK_CLOEXEC is defined.
2107 2008-07-24 Ulrich Drepper <drepper@redhat.com>
2109 * sysdeps/unix/sysv/linux/kernel-features.h: Define
2110 __ASSUME_PACCEPT, __ASSUME_IN_NONBLOCK, and __ASSUME_PACCEPT if
2112 * nscd/connections.c: Avoid fcntl calls to set close-on-exec flag and
2113 non-blocking mode by using socket, paccept, and inotify_init1.
2115 * Versions.def (glibc): Add GLIBC_2.9.
2116 * io/Makefile (routines): Add dup3 and pipe2.
2117 * io/Versions [glibc] (GLIBC_2.9): Add dup3 and pipe2.
2118 * io/dup3.c: New file.
2119 * io/pipe2.c: New file.
2120 * posix/unistd.h: Declare dup3 and pipe2.
2121 * socket/Makefile (routines): Add paccept.
2122 * socket/Versions [glibc] (GLIBC_2.9): Add paccept.
2123 * socket/paccept.c: New file.
2124 * socket/sys/socket.h: Declare paccept.
2125 * sysdeps/unix/syscalls.list: Add entry for dup3.
2126 * sysdeps/unix/sysv/linux/Versions [glibc] (GLIBC_2.9): Add
2127 epoll_create2 and inotify_init1.
2128 * sysdeps/unix/sysv/linux/eventfd.c: Use eventfd1 syscall if possible.
2129 * sysdeps/unix/sysv/linux/paccept.c: New file.
2130 * sysdeps/unix/sysv/linux/signalfd.c: Use signalfd4 syscall if
2132 * sysdeps/unix/sysv/linux/socketcall.h: Add SOCKOP_paccept.
2133 * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create2,
2134 inotify_init1, and pipe2 entries.
2135 * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: New file.
2136 * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: New file.
2137 * sysdeps/unix/sysv/linux/alpha/sys/inotify.h: New file.
2138 * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: New file.
2139 * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: New file.
2140 * sysdeps/unix/sysv/linux/bits/socket.h: Define SOCK_CLOEXEC and
2142 * sysdeps/unix/sysv/linux/i386/paccept.S: New file.
2143 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: New file.
2144 * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: New file.
2145 * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: New file.
2146 * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: New file.
2147 * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: New file.
2148 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: New file.
2149 * sysdeps/unix/sysv/linux/sys/epoll.h: Define EPOLL_CLOEXEC and
2150 EPOLL_NONBLOCK. Declare epoll_create2.
2151 * sysdeps/unix/sysv/linux/sys/eventfd.h: Define EFD_CLOEXEC and
2153 * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOEXEC and
2154 IN_NONBLOCK. Declare inotify_init1.
2155 * sysdeps/unix/sysv/linux/sys/signalfd.h: Define SFD_CLOEXEC and
2157 * sysdeps/unix/sysv/linux/sys/timerfd.h: Define TFD_CLOEXEC and
2160 * elf/elf.h: Define AT_EXECFN.
2161 * elf/rtld.c [!__ASSUME_AT_EXECFN] (process_envvars): Don't handle
2163 * elf/dl-sysdep.c (_dl_sysdep_start): Handle AT_EXECFN.
2164 * elf/dl-support.c: Define _dl_execfn. Don't define _dl_origin_path
2165 if __ASSUME_AT_EXECFN is defined.
2166 (_dl_aux_init): Handle AT_EXECFN.
2167 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_EXECFN
2169 * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_execfn.
2170 Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined.
2171 * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use
2172 _dl_execfn if available and avoid compatibility code if
2173 __ASSUME_AT_EXECFN is defined.
2175 * sysdeps/unix/sysv/linux/dl-sysdep.h: Don't declare
2176 _dl_discover_osversion only for older kernels.
2178 2008-07-22 Roland McGrath <roland@frob.com>
2180 * hurd/fd-read.c (_hurd_fd_read): Fix last change.
2182 2008-07-21 Roland McGrath <roland@frob.com>
2184 * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the server
2185 returned too much data out of line.
2187 2008-07-20 Ulrich Drepper <drepper@redhat.com>
2189 * locale/setlocale.c (setname): Remove inline to avoid compiler
2193 * locale/setlocale.c (setlocale): Take the setlocale lock earlier.
2195 2008-07-15 Ulrich Drepper <drepper@redhat.com>
2197 * stdio-common/vfprintf.c (_IO_helper_overflow): In case _IO_sputn
2198 doesn't manage to write anything, fail.
2200 * malloc/hooks.c (__malloc_check_init): Remove printf.
2202 2008-07-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
2204 * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.
2206 2008-07-12 Ulrich Drepper <drepper@redhat.com>
2208 * nscd/connections.c (main_loop_poll): Fix handling of read errors
2210 (main_loop_epoll): Likewise.
2212 2008-07-09 Ulrich Drepper <drepper@redhat.com>
2214 * resolv/res_send.c: Remove unnecessary res_pquery prototype.
2216 * resolv/res_query.c (__libc_res_nquery): Issue debug message only
2217 if DEBUG is defined.
2219 * resolv/res_query.c (__libc_res_nquery): Align buffer for T_AAAA
2220 query. Adjust buffer size computation for padding.
2222 2008-07-08 Ulrich Drepper <drepper@redhat.com>
2224 * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.
2225 * stdio-common/tst-setvbuf1.c: New file.
2226 * stdio-common/tst-setvbuf1.expect: New file.
2229 * libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags
2230 when selecting fully-buffered stream.
2231 Patch by Wang Xin <wxinee@gmail.com>.
2233 2008-07-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
2235 * sysdeps/mach/hurd/open.c: Include <stdio.h>.
2236 (__open_2): New function.
2237 (__open64_2): New alias to __open_2.
2238 * sysdeps/mach/hurd/openat.c: Include <stdio.h>.
2239 (__openat_2): New function.
2240 (__openat64_2): New alias to __openat_2.
2242 2008-07-06 Ulrich Drepper <drepper@redhat.com>
2245 * time/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
2247 2008-07-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
2249 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
2250 * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
2251 * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
2253 * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2254 * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2255 * sysdeps/mach/hurd/send.c (__send): Likewise.
2256 * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise.
2257 * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
2259 2008-03-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
2261 * sysdeps/mach/hurd/recv.c (__recv): Initialize NPORTS.
2262 * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2263 * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2264 * hurd/fd-read.c (_hurd_fd_read): Initialize NREAD.
2265 * hurd/get-host.c (_hurd_get_host_config): Likewise.
2266 * sysdeps/mach/hurd/dl-sysdep.c (__libc_read): Likewise.
2268 2008-06-27 Ulrich Drepper <drepper@redhat.com>
2271 * time/strptime_l.c: Don't clear s.era_cnt after successful match
2273 Patch by Petr Baudis.
2275 2008-06-26 Ulrich Drepper <drepper@redhat.com>
2277 * resolv/res_debug.c (__p_type_syms): Add ns_t_dname entry.
2278 Patch by Peter Jones <pjones@redhat.com>.
2280 2008-06-25 Ulrich Drepper <drepper@redhat.com>
2283 * stdlib/canonicalize.c (__realpath): readlink can write too much
2284 into the buffer on platforms without PATH_MAX.
2286 2008-06-17 Carlos O'Donell <carlos@codesourcery.com>
2289 * posix/tst-regex.c (main): Rename to...
2290 (do_test): ... this. Remove cmdline option processing.
2292 (TEST_FUNCTION): Define.
2293 (CMDLINE_OPTIONS): Define.
2295 2008-06-25 Ulrich Drepper <drepper@redhat.com>
2298 * configure.in: Add -Werror to -fstack-protector test to catch
2299 unsupported architectures.
2300 Patch by Gilles Esponasse <g.esp@free.fr>.
2302 2008-06-17 Joseph Myers <joseph@codesourcery.com>
2304 * stdlib/tst-setcontext.c: Set back_in_main before exit if
2305 getcontext returns ENOSYS.
2307 2008-06-18 Ulrich Drepper <drepper@redhat.com>
2309 * nscd/connections.c (main_loop_poll): Fix test for read error.
2310 (main_loop_epoll): Likewise.
2312 2008-06-13 Ulrich Drepper <drepper@redhat.com>
2314 * sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to a
2315 better place so it is not called when nscd is used.
2317 * nscd/connections.c: Also recognize and handle changes to the
2318 resolver configuration file.
2320 2008-06-12 Ulrich Drepper <drepper@redhat.com>
2322 * time/strftime.c: Pass reference to tzset_called around to handle
2326 * time/strftime.c (__strftime_internal): Call tzset() only
2327 when printing timezone-dependent values.
2328 Based on a patch by Petr Baudis <pasky@suse.cz>.
2330 * resolv/nss_dns/dns-host.c (gaih_getanswer): Don't
2331 unconditionally use second gaih_getanswer_slice result.
2333 * sysdeps/posix/getaddrinfo.c (gai_inet): Remove unnecessary test.
2334 (getaddrinfo): RES must always be non-NULL.
2336 2008-06-12 Jakub Jelinek <jakub@redhat.com>
2338 * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Avoid using
2340 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
2341 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
2343 * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Avoid using cr3
2346 2008-06-12 Ulrich Drepper <drepper@redhat.com>
2348 * nscd/nscd.h (struct database_dyn): Add inotify_descr and clear_cache
2350 * nscd/connections.c (inotify_fd): New variable.
2351 (nscd_init): Try to open an inotify descriptor.
2352 If successful, watch files for databases using inotify instead of
2353 having prune threads stat the files.
2354 (nscd_run_prune): Recognize clear_cache flag being set and call
2355 prune_cache appropriately.
2356 (main_loop_poll): Add inotify descriptor to wait set and handle the
2358 (main_loop_epoll): Likewise.
2359 * nscd/cache.c (prune_cache): Don't stat files for databases if
2361 * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]
2362 (CFLAGS-connections.c): Add -DHAVE_INOTIFY.
2364 * nscd/grpcache.c (cache_addgr): Correctly compute size of
2365 fixed-size portion of the record.
2366 * nscd/servicescache.c (cache_addserv): Likewise.
2367 * nscd/pwdcache.c (cache_addpw): Likewise.
2368 * nscd/initgrcache.c (addinitgroupsX): Likewise.
2370 2008-06-11 Ulrich Drepper <drepper@redhat.com>
2372 * nscd/mem.c (gc): Initialize obstack earlier so that if we jump
2373 out we don't use uninitialized memory.
2375 * nscd/hstcache.c (cache_addhst): Send correct number of bytes to
2378 2008-06-10 Ulrich Drepper <drepper@redhat.com>
2380 * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Also log and
2381 ignore T_DNAME messages.
2382 * resolv/arpa/nameser_compat.h (T_DNAME): Define.
2384 2008-06-05 Jakub Jelinek <jakub@redhat.com>
2386 * misc/regexp.h (compile): Use __REPB_PREFIX macro.
2387 Avoid segfault if first GETC returns eof/'\0'/'\n'.
2389 2008-06-03 Jakub Jelinek <jakub@redhat.com>
2391 * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Pass cp
2392 instead of portstr to nscd_getserv_r. Patch by
2393 Roman Kagan <rkagan@mail.ru>.
2395 2008-05-26 Jim Meyering <meyering@redhat.com>
2397 Remove more useless "if" tests before "free".
2398 * include/inline-hashtab.h (htab_delete): Likewise.
2399 * libio/freopen.c (freopen): Likewise.
2400 * libio/freopen64.c (freopen64): Likewise.
2401 * locale/programs/ld-collate.c (collate_read): Likewise.
2402 * misc/fstab.c (libc_freeres_fn): Likewise.
2403 * posix/glob.c (globfree): Likewise.
2405 2008-05-24 Ulrich Drepper <drepper@redhat.com>
2407 * string/Makefile (strop-tests): Add memmem.
2408 * string/test-memmem.c: New file.
2409 * string/test-string.h (BUF1PAGES): Define to 1 if undefined.
2410 (test_init): Size buf1 according to BUF1PAGES.
2412 2008-05-24 Jakub Jelinek <jakub@redhat.com>
2414 * libio/stdio.h (vscanf): Fix -std=c99 redirect.
2415 * stdio-common/Makefile (tests): Add scanf16 and scanf17.
2416 (CFLAGS-scanf17.c): New.
2417 * stdio-common/scanf14.c (main): Add fscanf and scanf tests.
2418 * stdio-common/scanf15.c (main): Likewise.
2419 * stdio-common/scanf16.c: New file.
2420 * stdio-common/scanf17.c: New file.
2422 2008-05-24 Ulrich Drepper <drepper@redhat.com>
2424 * resolv/res_send.c (send_dg): If we already have one of two
2425 answers and the server reports SERVFAIL, NOTIMP, or REFUSED, then
2426 use the one answer insted of failing.
2428 2008-02-20 Ryan S. Arnold <rsa@us.ibm.com>
2430 * math/libm-test.inc (exp_test): Exclude expl(1000.0L) from
2431 being executed on PowerPC as the expected result exceeds IBM
2432 long double 128 __LDBL_MAX__.
2434 2008-05-21 Roland McGrath <roland@redhat.com>
2436 * shlib-versions (sparc.*-.*-.*, sparc64.*-.*-.*): Add ABI lines.
2438 * Makefile (check-data): Use $(abi-name) before other guesses.
2439 Look in $(add-ons) dirs before scripts/data/.
2440 * elf/Makefile (check-data): Likewise.
2442 * scripts/soversions.awk: Grok ABI line.
2443 * Makeconfig ($(common-objpfx)soversions.mk): Likewise.
2444 Emit definition for abi-name variable.
2446 2008-05-21 Ulrich Drepper <drepper@redhat.com>
2448 * string/endian.h: Define new fixed-size hto* and *toh macros only
2451 * iconvdata/Depend: Add localedata.
2453 2008-05-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
2455 * bits/termios.h (ONLCR): Define under [__USE_XOPEN] too.
2457 2008-05-08 David S. Miller <davem@davemloft.net>
2459 * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Use
2461 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2462 (__SYSCALL_CLOBBERS): Remove %g* registers.
2463 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2464 (__SYSCALL_CLOBBERS): Likewise.
2465 * scripts/data/localplt-sparc-linux-gnu.data: New file.
2466 * scripts/data/localplt-sparc64-linux-gnu.data: New file.
2468 2008-05-21 Jakub Jelinek <jakub@redhat.com>
2470 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2471 (CALL_ERRNO_LOCATION): Define.
2472 (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2473 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2474 (CALL_ERRNO_LOCATION): Define.
2475 (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2476 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S (__brk): Use
2477 HIDDEN_JUMPTARGET for __errno_location call in libc.so.
2479 2008-05-20 Ulrich Drepper <drepper@redhat.com>
2481 * include/inline-hashtab.h (higher_prime_number): Fix type of mid
2484 2008-05-20 Jakub Jelinek <jakub@redhat.com>
2486 * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
2487 (FIRST_FRAME_POINTER): Define.
2489 2008-05-09 David S. Miller <davem@davemloft.net>
2491 * sysdeps/sparc/sparc64/backtrace.c: New file.
2493 2008-05-14 David S. Miller <davem@davemloft.net>
2495 * sysdeps/sparc/machine-gmon.h: New file.
2496 * sysdeps/sparc/sparc-mcount.S: Likewise.
2497 * sysdeps/sparc/Makefile: Add sparc-mcount target to
2498 sysdep_routines in gmon directory.
2500 2008-05-19 Jakub Jelinek <jakub@redhat.com>
2502 * elf/soinit.c (__EH_FRAME_BEGIN__): Remove.
2504 2008-05-19 Ulrich Drepper <drepper@redhat.com>
2506 * resolv/res_query.c (__libc_res_nquery): In case one of two
2507 answer was too short don't try to read that answer's header.
2509 * resolv/res_send.c (send_dg): In case of timeout and there are
2510 two queries and one has been answered, return value indicating
2513 2008-05-18 Ulrich Drepper <drepper@redhat.com>
2515 * nscd/cache.c (cache_add): Take additional parameter specifying
2516 whether this is in response of a cache refill. Check alignment
2517 of package data. Revamp waking of pruning thread.
2518 (prune_cache): Small optimization.
2519 * nscd/nscd.h: Adjust cache_add prototypes.
2520 * nscd/aicache.c: Adjust cache_add calls.
2521 * nscd/grpcache.c: Likewise.
2522 * nscd/hstcache.c: Likewise.
2523 * nscd/initgrcache.c: Likewise.
2524 * nscd/pwdcache.c: Likewise.
2525 * nscd/servicescache.c: Likewise.
2526 * nscd/connections.c (restart): Really disable cache use before
2527 exec attempt. If it fails, reenable cache.
2528 (nscd_run_prune): Initialize wakeup_time. After wakeup, set wakeup
2529 time to max to be able to notice concurrent cache additions. Unlock
2530 prune_lock while performing gc. Afterwards compute wakeup time with
2531 current wakeup_time value in mind.
2533 2008-05-17 Ulrich Drepper <drepper@redhat.com>
2535 * nscd/mem.c (gc): Avoid stack overflow when allocating move list.
2537 * nscd/mem.c (gc): Correctly determine highest used array element
2540 * nscd/mem.c (markrange): Add assert to check entries are all
2541 aligned. Small cleanup in bitmap use.
2543 * nscd/nscd.h (mem_in_flight): Replace blockaddr field with
2544 blockoff of type nscd_ssize_t.
2545 * nscd/mem.c (gc): Simplify markrange call for on-flight blocks.
2546 (mempoll_alloc): Record block offset and not address.
2548 * nscd/mem.c (gc): Fix test for stack overuse.
2550 * nscd/aicache.c (addhstaiX): Fix a few small problems, cleanups,
2553 * sysdeps/posix/getaddrinfo.c (gaih_inet): If nscd reports no
2554 entry is available, believe it.
2556 * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): If there are
2557 no answers return NSS_STATUS_NOTFOUND.
2558 (gaih_getanswer): Don't call gaih_getanswer_slice if the answer
2559 buffer does not have any content.
2561 2008-05-16 Ulrich Drepper <drepper@redhat.com>
2563 * string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.
2565 * sysdeps/posix/getaddrinfo.c (gaih_inet): After gethostbyname4_r
2566 lookup, don't assign canon unconditionally.
2568 2008-05-14 Ulrich Drepper <drepper@redhat.com>
2570 * string/Makefile (distribute): Add str-two-way.h.
2572 2008-03-29 Eric Blake <ebb9@byu.net>
2574 Rewrite string searches to O(n) rather than O(n^2).
2575 * string/str-two-way.h: New file. For linear fixed-allocation
2577 * string/memmem.c: New implementation.
2578 * string/strstr.c: New implementation.
2579 * string/strcasestr.c: New implementation.
2581 2008-04-11 Paolo Bonzini <bonzini@gnu.org>
2583 * posix/regcomp.c (optimize_utf8): Add a note on why we test
2585 (calc_first): Initialize constraint field.
2586 (duplicate_node_closure): Use it instead of special casing ANCHORS.
2587 Use search_duplicated_node to avoid loops. Fix grammar.
2588 (duplicate_node): Merge constraint field for all node types.
2589 (calc_eclosure_iter): Look at constraint field for all node types.
2590 * posix/regex_internal.c (create_cd_newstate): Don't look at
2593 2008-05-14 Ulrich Drepper <drepper@redhat.com>
2596 * configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS.
2599 * string/endian.h: Add macros for fixed-size endian conversion.
2600 * bits/byteswap.h: Allow inclusion from <endian.h>.
2601 * sysdeps/i386/bits/byteswap.h: Likewise.
2602 * sysdeps/ia64/bits/byteswap.h: Likewise.
2603 * sysdeps/s390/bits/byteswap.h: Likewise.
2604 * sysdeps/x86_64/bits/byteswap.h: Likewise.
2605 * string/Makefile (tests): Add tst-endian.
2606 * string/tst-endian.c: New file.
2608 * iconvdata/run-iconv-test.sh: Use = instead of == in test.
2609 Patch by Reuben Thomas.
2611 2008-05-14 Joseph Myers <joseph@codesourcery.com>
2613 * iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
2615 2008-05-14 Ulrich Drepper <drepper@redhat.com>
2617 * iconvdata/bug-iconv6.c (do_test): Use de_DE.UTF-8 locale.
2620 * iconv/gconv_simple.c (BODY for __gconv_transform_ascii_internal):
2622 (BODY for __gconv_transform_internal_ascii): Likewise.
2625 * sysdeps/posix/getaddrinfo.c (get_scope): Loopback addresses have
2626 to be treated like link-local addresses.
2627 (match_prefix): Don't treat IPv4 loopback address special when
2628 converting to v4 mapped addressed.
2630 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call _res_hconf_init
2632 * posix/tst-rfc3484.c: Add dummy definition of _res_hconf_init.
2633 * posix/tst-rfc3484-2.c: Likewise.
2634 * posix/tst-rfc3484-3.c: Likewise.
2636 * sysdeps/posix/getaddrinfo.c: Implement handling of DCCP, UDPlite,
2639 * nss/getent.c (ahosts_keys_int): Handle all known socket types.
2641 * inet/netinet/in.h (IPPIPPROTO_DCCP, IPPROTO_UDPLITE): Define.
2643 * sysdeps/unix/sysv/linux/bits/socket.h (SOCK_DCCP): Define.
2645 2008-05-13 Ulrich Drepper <drepper@redhat.com>
2647 * po/lt.po: New file. From Lituanian translation team.
2649 2008-01-30 Alexandre Oliva <aoliva@redhat.com>
2651 Introduce TLS descriptors for i386 and x86_64.
2652 * include/inline-hashtab.h: New file, copied from 2005's
2653 libiberty, with fix for memory leak imported afterwards by
2654 Glauber de Oliveira Costa.
2655 * elf/tlsdeschtab.h: New file.
2656 * elf/dl-reloc.c (_dl_try_allocate_static_tls): Extract from...
2657 (_dl_allocate_static_tls): ... here. Rearrange failure path.
2658 (CHECK_STATIC_TLS): Move to...
2659 * elf/dynamic-link.h: ... this file.
2660 (TRY_STATIC_TLS): New macro.
2661 * elf/dl-conflict.c (CHECK_STATIC_TLS, TRY_STATIC_TLS): Override.
2662 * elf/elf.h (R_386_TLS_GOTDESC, R_386_TLS_DESC_CALL,
2663 R_386_TLS_DESC): Define.
2664 (R_X86_64_PC64, R_X86_GOTOFF64, R_X86_64_GOTPC32): Merge from
2666 (R_X86_64_GOTPC32_TLSDESC, R_X86_64_TLSDESC_CALL,
2667 R_X86_64_TLSDESC): Define.
2668 (R_386_NUM, R_X86_64_NUM): Adjust.
2669 * sysdeps/i386/Makefile (sysdep-dl-routines, sysdep_routines,
2670 sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
2671 (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
2672 * sysdeps/i386/dl-lookupcfg.h: New file. Introduce _dl_unmap to
2673 release tlsdesc_table.
2674 * sysdeps/i386/dl-machine.h: Include dl-tlsdesc.h.
2675 (elf_machine_type_class): Mark R_386_TLS_DESC as PLT class.
2676 (elf_machine_rel): Handle R_386_TLS_DESC.
2677 (elf_machine_rela): Likewise.
2678 (elf_machine_lazy_rel): Likewise.
2679 (elf_machine_lazy_rela): Likewise.
2680 * sysdeps/i386/dl-tls.h (struct dl_tls_index): Name it.
2681 * sysdeps/i386/dl-tlsdesc.S: New file.
2682 * sysdeps/i386/dl-tlsdesc.h: New file.
2683 * sysdeps/i386/tlsdesc.c: New file.
2684 * sysdeps/i386/tlsdesc.sym: New file.
2685 * sysdeps/i386/bits/linkmap.h (struct link_map_machine): Add
2687 * sysdeps/x86_64/Makefile (sysdep-dl-routines, sysdep_routines,
2688 sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
2689 (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
2690 * sysdeps/x86_64/dl-lookupcfg.h: New file. Introduce _dl_unmap to
2691 release tlsdesc_table.
2692 * sysdeps/x86_64/dl-machine.h: Include dl-tlsdesc.h.
2693 (elf_machine_runtime_setup): Set up lazy TLSDESC GOT entry.
2694 (elf_machine_type_class): Mark R_X86_64_TLSDESC as PLT class.
2695 (elf_machine_rel): Handle R_X86_64_TLSDESC.
2696 (elf_machine_rela): Likewise.
2697 (elf_machine_lazy_rel): Likewise.
2698 * sysdeps/x86_64/dl-tls.h (struct dl_tls_index): Name it.
2699 (__tls_get_addr): Do not declare for non-shared compiles.
2700 * sysdeps/x86_64/dl-tlsdesc.S: New file.
2701 * sysdeps/x86_64/dl-tlsdesc.h: New file.
2702 * sysdeps/x86_64/tlsdesc.c: New file.
2703 * sysdeps/x86_64/tlsdesc.sym: New file.
2704 * sysdeps/x86_64/bits/linkmap.h (struct link_map_machine): Add
2705 tlsdesc_table for both 32- and 64-bit structs.
2707 2008-05-11 Ulrich Drepper <drepper@redhat.com>
2709 * elf/dl-tls.c (__tls_get_addr): Optimize by moving slow path in
2710 its own function. This reduces the frame setup costs and more.
2712 2008-02-11 Joseph Myers <joseph@codesourcery.com>
2715 * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Correct value.
2716 * math/libm-test.inc (exp_test): Test 88.72269439697265625.
2718 2008-05-11 Ulrich Drepper <drepper@redhat.com>
2720 * io/openat.c (__openat_2): Also pass fd to __openat.
2721 * io/openat64.c (__openat64_2): Also pass fd to __openat64.
2722 Patch by Kristian Van Der Vliet <vanders@liqwyd.com>.
2724 * string/tester.c (test_memcmp): Add a few more tests.
2725 Patch by Mats Erik Andersson <ynglingatal@comhem.se>.
2727 2008-05-10 Ulrich Drepper <drepper@redhat.com>
2729 * nscd/cache.c (cache_add): Before returning with failure and this
2730 is the first use of the record, mark it as unusable.
2731 * nscd/aicache.c: Don't touch the dataset after cache_add returns
2732 reporting a failure.
2733 * nscd/grpcache.c: Likewise
2734 * nscd/hstcache.c: Likewise.
2735 * nscd/initgrcache.c: Likewise.
2736 * nscd/pwdcache.c: Likewise.
2737 * nscd/servicescache.c: Likewise.
2739 2008-05-10 Roland McGrath <roland@redhat.com>
2742 * sysdeps/unix/sysv/linux/sys/user.h: Replace with #error stub.
2744 2008-05-08 David S. Miller <davem@davemloft.net>
2746 * misc/truncate64.c (truncate64): Use __truncate not truncate.
2748 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
2749 (__ieee754_y0l): Likewise.
2750 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
2751 (__ieee754_y1l): Likewise.
2752 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use __ldexpl.
2753 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Kill bogus prototypes for
2754 frexpl and ldexpl. math_private.h provides them and the latter
2756 (__log1pl): Use __frexpl.
2758 2008-05-10 Ulrich Drepper <drepper@redhat.com>
2760 * include/resolv.h: Adjust __libc_res_nquery and __libc_res_nsend
2762 * include/arpa/nameser_compat.h: Define T_UNSPEC.
2763 * nis/Versions (libnss_nis): Export _nss_nis_gethostbyname4_r.
2764 (libnss_nisplus): Export _nss_nisplus_gethostbyname4_r.
2765 * nis/nss_nis/nis-hosts.c (LINE_PARSER): Change to also handle
2767 (_nss_nis_gethostbyname4_r): New function.
2768 * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent):
2769 Change to also handle af==AF_UNSPEC.
2770 (get_tablename): New function. Use it to avoid duplication.
2771 (_nss_nisplus_gethostbyname4_r): New function.
2772 * nscd/aicache.c (addhstaiX): Use gethostbyname4_r function is
2774 * nss/Versions (libnss_files): Export _nss_files_gethostbyname4_r.
2775 * nss/nss.h: Define struct gaih_addrtuple.
2776 * nss/nss_files/files-hosts.c (LINE_PARSER): Change to also handle
2778 (_nss_files_gethostbyname4_r): New function.
2779 * resolv/Versions (libnss_dns): Export _nss_dns_gethostbyname4_r.
2780 * resolv/gethnmaddr.c: Adjust __libc_res_nsearch and __libc_res_nquery
2782 * resolv/res_query.c (__libc_res_nquery): Take two additional
2783 parameters for second answer buffer. Handle type=T_UNSPEC to mean
2784 look up IPv4 and IPv6.
2786 * resolv/res_send.c (__libc_res_nsend): Take five aditional parameters
2787 for an additional query and answer buffer. Pass to send_vc and
2789 (send_vc): Send possibly two requests and receive two answers.
2790 (send_dg): Likewise.
2791 * resolv/nss_dns/dns-host.c: Adjust calls to __libc_res_nsearch and
2793 (_nss_dns_gethostbyname4_r): New function.
2794 (gaih_getanswer_slice): Likewise.
2795 (gaih_getanswer): Likewise.
2796 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Adjust
2797 __libc_res_nquery call.
2798 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r): Likewise.
2799 (_nss_dns_getnetbyname_r): Adjust __libc_res_nsearch call.
2800 * sysdeps/posix/getaddrinfo.c: Use gethostbyname4_r function is
2803 2008-05-05 David S. Miller <davem@davemloft.net>
2805 * sysdeps/sparc/sparc32/Makefile: Use -mcpu=v7 for initfini.s build.
2806 * sysdeps/sparc/sparc64/Makefile: Use -mcpu=v9 for initfini.s build.
2808 2007-09-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
2810 Fix termios bit macros.
2811 Move *DLY definitions where they belong, in termios.h.
2812 Add *[0-3] definitions.
2813 Fixes confusion between VT and FF.
2814 * sysdeps/mach/hurd/bits/ioctls.h (NL0, NL1, TAB0, TAB1, TAB2, CR0,
2815 CR1, CR2, CR3, FF0, FF1, BS0, BS1): Undefine these at start if they
2816 are already defined to avoid collision with termios.h.
2817 (NLDLY, TABDLY, TAB3, CRDLY, VTDLY, BSDLY): Remove macros.
2818 * bits/termios.h [__USE_MISC || __USE_XOPEN] (NL0, NL1, TAB0,
2819 TAB1, TAB2, CR0, CR1, CR2, CR3, FF0, FF1, BS0, BS1): Likewise.
2820 [__USE_BSD || __USE_XOPEN] (OCRNL, ONOCR, ONLRET): New macros.
2821 [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, TABDLY, TAB0, TAB1, TAB2,
2822 TAB3, CRDLY, CR0, CR1, CR2, CR3, FFDLY, FF0, FF1, BSDLY, BS0, BS1,
2823 VTDLY, VT0, VT1): New macros.
2824 [__USE_GNU] (OLCUC): Change value of macro.
2825 [__USE_XOPEN] (OFILL): New macro.
2826 [__USE_BSD] (CRTSCTS): Change value.
2827 (CRTS_IFLOW, CCTS_OFLOW): Change into compatibility macros.
2828 [__USE_BSD] (CDTRCTS, CHWFLOW): New macros.
2829 (B7200, B14400, B28800, B76800): New macros.
2831 2008-05-01 David S. Miller <davem@davemloft.net>
2833 * sysdeps/unix/sysv/linux/sparc/sparc32/ucontext_i.sym: New file.
2834 * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile [$(subdir) = stdlib]:
2835 (gen-as-const-headers): Add it.
2836 * sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S: New file.
2837 * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
2838 * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Likewise.
2839 * sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S: Likewise.
2841 * sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S: Add support for
2842 six system call parameters.
2843 * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
2845 2008-04-30 Ulrich Drepper <drepper@redhat.com>
2847 * sysdeps/unix/sysv/linux/bits/resource.h: Define RUSAGE_THREAD and
2849 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
2850 * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
2852 2008-04-30 Jakub Jelinek <jakub@redhat.com>
2854 * stdlib/tst-setcontext.c: Include unistd.h.
2856 2008-04-25 David S. Miller <davem@davemloft.net>
2858 * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c (semctl):
2859 Pass "union semun" properly in to sys_ipc, it must be passed
2860 by value, not by reference.
2862 2008-04-22 Jakub Jelinek <jakub@redhat.com>
2864 * nscd/Makefile (nscd-cflags): Set back to -fpie.
2865 * nscd/nscd.h (mem_in_flight): Add attribute_tls_model_ie.
2866 * nscd/connections.c (mem_in_flight): Likewise.
2868 * nscd/nscd.h (dbs): Make hidden.
2870 * sysdeps/unix/sysv/linux/times.c (__times): Fix check for EFAULT.
2871 Avoid returning -1, return 0 instead.
2873 2008-04-19 Ulrich Drepper <drepper@redhat.com>
2875 * resolv/res_mkquery.c (__res_nopt): Use NS_PUT16 instead of ns_put16.
2877 2008-04-15 Ulrich Drepper <drepper@redhat.com>
2880 * sysdeps/unix/sysv/linux/times.c: New file.
2883 * nscd/nscd.h: Define enum in_flight, mem_in_flight, and
2884 mem_in_flight_list variables. Add new parameter to mempool_alloc
2886 * nscd/mem.c (mempool_alloc): Take additional parameter. Initialize
2887 appropriate mem_in_flight element.
2888 (gc): Take allocations which have not yet been committed to the
2889 database into account.
2890 * nscd/cache.c (cache_add): Add new parameter to mempool_alloc call.
2891 Reset mem_in_flight before returning.
2892 * nscd/connections.c (nscd_run_worker): Initialize mem_in_flight and
2893 cue it up in mem_in_flight_list.
2894 * nscd/aicache.c: Adjust mempool_alloc call.
2895 * nscd/grpcache.c: Likewise.
2896 * nscd/hstcache.c: Likewise.
2897 * nscd/initgrcache.c: Likewise.
2898 * nscd/pwdcache.c: Likewise.
2899 * nscd/servicescache.c: Likewise.
2900 * nscd/Makefile (nscd-flags): Until ld is fixed, use -fpic instead
2903 * nscd/connections.c (handle_request): Provide better error message
2904 in case SELinux forbids the service.
2906 * version.h (VERSION): Bump to 2.8.90.
2908 2008-04-17 Jakub Jelinek <jakub@redhat.com>
2910 * sysdeps/unix/sysv/linux/dl-osinfo.h: Include fcntl.h.
2912 2008-04-11 Ulrich Drepper <drepper@redhat.com>
2914 * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h (__signbitl):
2915 Also use for 32-bit.
2916 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c (__nearbyintl): Use
2917 __nextafter instead of nextafter to avoid local PLT.
2918 * sysdeps/powerpc/fpu/e_sqrt.c: Avoid call to fetestexcept.
2919 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
2921 * scripts/data/localplt-powerpc64-linux-gnu.data: New file.
2923 * sysdeps/powerpc/fpu/fenv_libc.h: Add libm_hidden_proto for
2925 * sysdeps/powerpc/fpu/fe_nomask.c: Add libm_hidden_def. Include
2926 <fenv_libc.h> instead of <fenv.h>.
2927 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
2928 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
2930 * sysdeps/powerpc/bits/fenv.h: Make safe for C++.
2932 * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: New file.
2933 * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Rename
2934 function from fegetexcept and make old name weak alias.
2935 * include/fenv.h: Declare __fegetexcept.
2936 * sysdeps/powerpc/fpu/fedisblxcpt.c: Use __fegetexcept instead of
2938 * sysdeps/powerpc/fpu/feenablxcpt.c: Likewise.
2939 * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Avoid call
2941 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Use __frexpl
2942 instead of frexpl to avoid local PLT.
2943 * math/s_significandl.c (__significandl): Use __ilogbl instead of
2944 ilogbl to avoid local PLT.
2945 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __ldexpl
2946 instead of ldexpl to avoid local PLT.
2947 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
2948 __roundl not roundl to avoid local PLT.
2949 * sysdeps/ieee754/ldbl-128/e_j0l.c: Use function names which avoid
2950 local PLTs. Use __sincosl instead of separate sinl and cosl
2952 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
2954 * sysdeps/unix/sysv/linux/configure.in: Bump minimal kernel
2955 version for ppc64 to 2.4.21 since without it makecontext will fail.
2957 * elf/tls-macros.h [__powerpc64__] (__TLS_GET_ADDR): Define according
2959 [__powerpc64__] (TLS_LD): Use __TLS_GET_ADDR instead of
2961 [__powerpc64__] (TLS_GD): Likewise.
2963 2007-11-20 Ryan S. Arnold <rsa@us.ibm.com>
2966 * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Fixed erroneous
2967 result when x is +/-nextafter(+/-0.5,-/+1) i.e. all 1's in the
2969 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
2970 Likewise. Also account for when x is an odd number between 2^52
2972 * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Likewise.
2973 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
2974 * math/libm-test.inc (lround_test, llround_test): Added test cases to
2975 detect aforementioned erroneous conditions.
2977 2008-04-11 Jakub Jelinek <jakub@redhat.com>
2979 * configure.in: Check for -fno-section-anchors in addition to
2980 -fno-toplevel-reorder.
2982 2008-04-11 Ulrich Drepper <drepper@redhat.com>
2984 * include/features.h (__GLIBC_MINOR__): Bump to 8.
2986 * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: Remove duplicate comment.
2987 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: Likewise.
2988 * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: Likewise.
2989 * sysdeps/powerpc/powerpc64/fpu/s_lrint.S: Likewise.
2990 * sysdeps/powerpc/powerpc64/fpu/s_lround.S: Likewise.
2991 * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: Likewise.
2993 2008-04-11 Jakub Jelinek <jakub@redhat.com>
2996 * time/era.c: Transform __libc_setlocale_lock into rwlock.
2997 * time/alt_digit.c: Likewise.
2998 * wcsmbs/wcsmbsload.c: Likewise.
3000 2008-04-10 Ulrich Drepper <drepper@redhat.com>
3002 * version.h (VERSION): Bump to 2.8.
3004 * timzeone/asia: Update from tzdata2008b.
3005 * timezone/backward: Likewise.
3006 * timezone/europe: Likewise.
3007 * timezone/northamerica: Likewise.
3008 * timezone/southamerica: Likewise.
3009 * timezone/iso3166.tab: Likewise.
3010 * timezone/leapseconds: Likewise.
3011 * timezone/zone.tab: Likewise.
3012 * timezone/private.h: Update from tzcode2008a.
3013 * timezone/zdump.c: Likewise.
3014 * timezone/zic.c: Likewise.
3016 2008-01-24 Steven Munroe <sjmunroe@us.ibm.com>
3019 * sysdeps/powerpc/powerpc64/dl-machine.h (PPC_DCBT, PPC_DCBF):
3020 Define additonal Data Cache Block instruction macros.
3021 (elf_machine_fixup_plt): Add dcbt for opd and plt entries.
3022 Replace dcbst with dcbf and sync with sync/isync.
3024 2008-02-21 Alan Modra <amodra@bigpond.net.au>
3026 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_type_class):
3027 Always set ELF_RTYPE_CLASS_PLT.
3028 (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p): Delete.
3030 2008-04-03 Steven Munroe <sjmunroe@us.ibm.com>
3032 * sysdeps/powerpc/powerpc32/power4/hp-timing.c: New file.
3033 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: New file.
3034 * sysdeps/powerpc/powerpc64/hp-timing.h [_ARCH_PWR4] (HP_TIMING_NOW):
3035 For ISA 2.01 and later replace mftb with mfspr 268.
3037 2008-02-19 Steven Munroe <sjmunroe@us.ibm.com>
3040 * sysdeps/powerpc/fpu/Makefile (libm-tests): Add test-powerpc-snan.
3041 * sysdeps/powerpc/fpu/test-powerpc-snan.c: New file.
3043 2008-02-18 Steven Munroe <sjmunroe@us.ibm.com>
3046 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: New file.
3047 * sysdeps/powerpc/powerpc32/fpu/s_isnan.c: Removed.
3048 * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: New file.
3049 * sysdeps/powerpc/powerpc64/fpu/s_isnan.c: Removed.
3051 2008-04-10 Jakub Jelinek <jakub@redhat.com>
3053 * stdlib/tst-makecontext.c (othervar): New variable.
3054 (cf): Test sign extending the argument to long.
3056 2008-03-03 Steven Munroe <sjmunroe@us.ibm.com>
3058 * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: New file.
3059 * sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S: New file.
3060 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: New file.
3061 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S: New file.
3062 * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: New file.
3063 * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: New file.
3064 * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: New file.
3066 2008-02-22 Alan Modra <amodra@bigpond.net.au>
3068 * elf/Makefile (tests): Substitute tests-vis-yes here.
3069 (tests-vis-yes): Delete.
3070 (modules-name, modules-vis-yes): Similarly.
3072 2008-02-12 Pete Eberlein <eberlein@us.ibm.com>
3075 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
3076 Preserve sign in signgamp when x is zero.
3078 2007-10-26 Steven Munroe <sjmunroe@us.ibm.com>
3080 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: New File.
3081 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: Removed.
3082 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: New File.
3083 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.c: Removed.
3084 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: New File.
3085 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: New File.
3087 2008-04-09 Ulrich Drepper <drepper@redhat.com>
3090 * sysdeps/i386/i686/memcpy.S: Optimize copying of equally aligned
3094 * sysdeps/unix/sysv/syscalls.list: The times syscall doesn't have
3095 a reserved error value.
3097 * stdlib/tst-makecontext.c: Change parameter to cf to negative
3098 value to check for correct sign extension.
3101 * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
3102 Copy 64-bit parameter values even though this is not required in
3105 * sysdeps/unix/sysv/linux/x86_64/vfork.S (__vfork): Record return
3108 2008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
3110 * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork): Record return
3113 2008-04-09 Jakub Jelinek <jakub@redhat.com>
3115 * nss_files/files-XXX.c (_nss_files_getXXent_r): Restore saved errno.
3117 2008-04-09 Ulrich Drepper <drepper@redhat.com>
3120 * libio/iofwrite.c (_IO_fwrite): Return correct count if flushing
3121 in line-buffered stream failed.
3122 * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
3124 2008-04-08 Ulrich Drepper <drepper@redhat.com>
3127 * scripts/abi-versions.awk: If the version specified by
3128 --enable-oldest-abi is older than the first version for this
3129 architecture, use the default version.
3131 * locale/programs/ld-collate.c (collate_read): Ignore script lines
3132 as well when ignoring the whole category.
3134 2008-04-07 Ulrich Drepper <drepper@redhat.com>
3137 * sysdeps/unix/sysv/linux/net/ethernet.h: Add a few more
3138 ETHERTYPE_* definitions.
3139 Patch partly by Aurelien Jarno <aurelien@aurel32.net>.
3141 2008-04-07 Jakub Jelinek <jakub@redhat.com>
3143 * stdlib/mbtowc.c (__no_r_state): Remove.
3144 (mbtowc): New static state variable. Use it instead of
3146 * stdlib/wctomb.c (__no_r_state): Remove extern decl.
3147 (__wctomb_state): New hidden variable.
3148 (wctomb): Use __wctomb_state instead of __no_r_state.
3149 * debug/wctomb_chk.c (__no_r_state): Remove extern decl.
3150 (__wctomb_state): New extern decl.
3151 (__wctomb_chk): Use __wctomb_state instead of __no_r_state.
3153 2008-04-07 Ulrich Drepper <drepper@redhat.com>
3156 * resolv/res_init.c: Handle scope IDs in resolv.conf.
3158 2008-04-07 Jakub Jelinek <jakub@redhat.com>
3160 * malloc/mtrace.pl: Use $@ instead of $* to keep perl 5.10 quiet.
3162 2008-04-06 Ulrich Drepper <drepper@redhat.com>
3164 * po/nl.po: Update from translation team.
3166 2008-03-31 Ulrich Drepper <drepper@redhat.com>
3169 * string/strfry.c: Handle empty strings again.
3171 2008-03-30 Ulrich Drepper <drepper@redhat.com>
3174 * intl/dcigettext.c (__dcigettext): Get reader lock for locale data
3175 before looking for translation.
3176 * locale/duplocale.c: Transform __libc_setlocale_lock into rwlock.
3177 * locale/freelocale.c: Likewise.
3178 * locale/newlocale.c: Likewise.
3179 * locale/setlocale.c: Likewise.
3180 Based partially on a patch by ryo@np.css.fujitsu.com.
3182 2008-03-30 Jakub Jelinek <jakub@redhat.com>
3184 * intl/dcigettext.c (_nl_find_msg): Reread nconversions after
3185 acquiring wrlock. Do conv_tab allocation while holding lock.
3186 * intl/Makefile: Add rules to build and run tst-gettext6.
3187 * intl/tst-gettext6.c: New test.
3188 * intl/tst-gettext6.sh: New file.
3190 2008-03-30 Ulrich Drepper <drepper@redhat.com>
3192 * po/nl.po: Update from translation team.
3194 * sysdeps/unix/opendir.c (__alloc_dir): If allocation fails for size
3195 provided through st_blksize, try the default size before giving up.
3197 2008-03-29 Ulrich Drepper <drepper@redhat.com>
3199 * stdio-common/vfprintf.c (vfprintf): Correct overflow test.
3202 * sysdeps/posix/tempname.c (__gen_tempname): Correct flag selection.
3204 * posix/getopt.c (_getopt_internal_r): Remove old POSIX-demanded
3205 error message. POSIX today does not require the messages to be in
3206 a specific form. Suggested by Jim Meyering <jim@meyering.net>.
3209 * sunrpc/auth_unix.c: Unify printed strings.
3210 * sunrpc/clnt_tcp.c: Likewise.
3211 * sunrpc/clnt_udp.c: Likewise.
3212 * sunrpc/clnt_unix.c: Likewise.
3213 * sunrpc/svc_tcp.c: Likewise.
3214 * sunrpc/svc_udp.c: Likewise.
3215 * sunrpc/svc_unix.c: Likewise.
3216 * sunrpc/xdr.c: Likewise.
3217 * sunrpc/xdr_array.c: Likewise.
3218 * sunrpc/xdr_rec.c: Likewise.
3219 * sunrpc/xdr_ref.c: Likewise.
3220 * locale/programs/ld-time.c (time_finish): Unify messages.
3221 * locale/programs/locfile.c (handle_copy): Fix typo.
3222 * nscd/nscd.c (options): Fix typo.
3225 * stdlib/strtod_l.c: Use correct sign for result in one more
3227 Patch by Eric Blake <ebb9@byu.net>.
3229 2008-03-27 Jakub Jelinek <jakub@redhat.com>
3231 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Add open
3232 and creat system calls.
3233 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove open system
3235 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Remove open and creat
3237 * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Likewise.
3238 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
3239 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
3241 2008-03-27 Ulrich Drepper <drepper@redhat.com>
3243 * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefined ARG_MAX if
3244 <linux/limits.h> has defined it.
3245 * sysdeps/unix/sysv/linux/sys/param.h: Define NCARGS to the legacy
3246 ARG_MAX value and prevent ARG_MAX from being defined by the kernel
3248 * sysdeps/unix/sysv/linux/sysconf.c: Define legacy_ARG_MAX and use
3249 it instead of ARG_MAX.
3251 2008-03-25 Jakub Jelinek <jakub@redhat.com>
3253 * posix/gai.conf: Fix comment for scope nullbits.
3254 * sysdeps/posix/getaddrinfo.c (gaiconf_init): If /bits is not present,
3255 default to 128 bits for v4 mapped addresses.
3257 2008-03-07 Martin Schwidefsky <schwidefsky@de.ibm.com>
3259 * sysdeps/s390/fpu/fegetenv.c (fegetenv): Remove PTRACE_PEEKUSER
3260 ptrace call to get the ieee_instruction_pointer from the kernel.
3261 * sysdeps/s390/fpu/fesetenv.c (fesetenv): Remove PTRACE_POKEUSER
3262 ptrace call to set the ieee_instructtion_pointer.
3263 * sysdeps/unix/sysv/linux/s390/sys/user.h (struct _user_regs_struct):
3264 Add comment that ieee_instruction_pointer is always 0.
3266 2008-03-09 Andreas Jaeger <aj@suse.de>
3269 * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Handle j0==18.
3270 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Likewise.
3271 Patch by Mark Elliott <mark.h.elliott@lmco.com>.
3273 * math/libm-test.inc (nearbyint_test): Add new test cases from #5857.
3274 (rint_test): Likewise.
3276 2008-03-24 Ulrich Drepper <drepper@redhat.com>
3278 * nis/nis_call.c (nis_server_cache_search): Save errno around stat
3280 (__nisfind_server): Similar for open readColdStartFile call.
3281 Patch partially by Jim Meyering.
3282 * nss/nss_files/files-XXX.c (_nss_files_getXXent_r): Save errno
3283 around internal_setent call.
3285 * po/vi.po: New Vietnamese translation.
3287 * sysdeps/unix/sysv/linux/adjtime.c: Correctly use
3290 * sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
3291 remove CLONE_STOPPED.
3293 2008-02-10 Jim Meyering <meyering@redhat.com>
3295 Remove useless "if" before "free":
3296 * elf/ldconfig.c (parse_conf_include): Likewise.
3297 * gmon/gmon.c (weak_alias): Likewise.
3298 * iconv/gconv_conf.c (__gconv_get_path): Likewise.
3299 * inet/rcmd.c (__validuser2_sa): Likewise.
3300 * intl/bindtextdom.c (set_binding_values): Likewise.
3301 * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Likewise.
3302 * libio/genops.c (save_for_backup): Likewise.
3303 * libio/wgenops.c (save_for_wbackup): Likewise.
3304 * locale/programs/ld-collate.c (collate_read): Likewise.
3305 * locale/programs/linereader.c (get_string): Likewise.
3306 * nis/nss_compat/compat-pwd.c (give_pwd_free): Likewise.
3307 * nis/nss_compat/compat-spwd.c (give_spwd_free): Likewise.
3308 * resolv/res_debug.c (do_section): Likewise.
3309 * sunrpc/xdr_sizeof.c (x_inline, xdr_sizeof): Likewise.
3310 * sysdeps/mach/hurd/if_index.c (libc_hidden_def): Likewise.
3311 * sysdeps/posix/sprofil.c (__sprofil): Likewise.
3312 * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
3313 * time/tzset.c (tzset_internal): Likewise.
3315 2008-03-18 Jakub Jelinek <jakub@redhat.com>
3317 * sysdeps/unix/sysv/linux/dl-sysdep.h: Use __ASSEMBLER__ instead
3320 2008-03-11 Ulrich Drepper <drepper@redhat.com>
3323 * iconv/iconv_charmap.c (charmap_conversion): Pass name of output file
3324 not stream for output file. Open output file here.
3325 * iconv/iconv_prog.c (process_lock): Take pointer to output stream
3326 and output file name.
3327 (process_fd): Likewise.
3328 (process_file): Likewise.
3329 (main): Adjust callers of changed functions.
3330 * iconv/iconv_prog.h: Adjust prototype.
3332 2008-03-09 Andreas Jaeger <aj@suse.de>
3335 * sysdeps/ia64/ieee754.h: Use protected namespace
3336 __BIG_ENDIAN/__LITTLE_ENDIAN.
3337 * sysdeps/ieee754/ieee754.h: Likewise.
3338 Patch by Aurelien Jarno <aurelien@aurel32.net>.
3340 2008-03-08 Roland McGrath <roland@frob.com>
3342 * hurd/hurdsig.c (_hurd_internal_post_signal): When normal rules would
3343 ignore a signal that came from a machine exception, treat it as a
3344 fatal core-dump signal instead.
3345 Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3347 * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
3348 Clear DF bit in thread state's eflags.
3349 Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3351 2008-03-08 Ulrich Drepper <drepper@redhat.com>
3354 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Consume closing brace
3355 of NAN(...) sequence.
3356 * stdlib/Makefile (tests): Add tst-strtod6.
3357 * stdlib/tst-strtod6.c: New file.
3359 * inet/inet6_opt.c (inet6_opt_init): Check extlen for overflow.
3362 * posix/getopt.c (_getopt_internal_r): Clarify error message by
3363 putting offending option character in quotes. Clean up error
3365 * po/be.po: Adjust msgstr in translation file.
3366 * po/bg.po: Likewise.
3367 * po/ca.po: Likewise.
3368 * po/cs.po: Likewise.
3369 * po/da.po: Likewise.
3370 * po/de.po: Likewise.
3371 * po/es.po: Likewise.
3372 * po/fr.po: Likewise.
3373 * po/hr.po: Likewise.
3374 * po/ko.po: Likewise.
3375 * po/nl.po: Likewise.
3376 * po/rw.po: Likewise.
3377 * po/sk.po: Likewise.
3378 * po/sv.po: Likewise.
3379 * po/tr.po: Likewise.
3380 * po/zh_CN.po: Likewise.
3381 * po/zh_TW.po: Likewise.
3384 * inet/inet6_opt.c (inet6_opt_init): Fix ip6h_len computation.
3385 Patch by Roland Bless <roland@bless.de>.
3387 * sysdeps/unix/sysv/linux/dl-sysdep.c: Avoid unnecessary code for
3389 * elf/Makefile (routines): Add dl-sysdep.
3390 (elide-routines.os): Likewise.
3392 2008-03-07 Ulrich Drepper <drepper@redhat.com>
3395 * elf/dl-sysdep.c: Undefine ROUND after use.
3396 * sysdeps/generic/ldsodefs.h [HAVE_DL_DISCOVER_OSVERSION]
3397 (struct rtld_global_ro): Add _dl_tls_get_addr_soft element.
3398 * elf/rtld.c (rtld_global_ro): Initialize _dl_discover_osversion.
3399 * sysdeps/unix/sysv/linux/dl-osinfo.h: Move _dl_discover_osversion
3401 * sysdeps/unix/sysv/linux/dl-sysdep.c: ...here.
3402 * sysdeps/unix/sysv/linux/dl-sysdep.h: Declare _dl_discover_osversion
3404 * sysdeps/unix/sysv/linux/sysconf.c: Handle _SC_ARG_MAX here.
3406 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add
3407 _dl_tls_get_addr_soft element.
3408 * elf/rtld.c (rtld_global_ro): Initialize _dl_tls_get_addr_soft.
3409 * elf/Versions (ld): Don't export _dl_tls_get_addr_soft.
3410 * dlfcn/dlinfo.c (dlinfo_doit): Access dl_tls_get_addr_soft through
3412 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
3413 * elf/dl-tls.c (_dl_tls_get_addr_soft): Use attribute_hidden instead
3414 of internal_function.
3416 * stdlib/Makefile (aux): Add tens_in_limb.
3417 * stdlib/strtod_l.c: Move _tens_in_limb definition to...
3418 * stdlib/tens_in_limb.c: ...here. New file.
3421 * sysdeps/unix/sysv/linux/pathconf.h: Declare
3422 __statfs_chown_restricted.
3423 * sysdeps/unix/sysv/linux/fpathconf.c: Call __statfs_chown_restricted
3424 for _PC_CHOWN_RESTRICTED.
3425 * sysdeps/unix/sysv/linux/pathconf.c: Likewise.
3426 Implement __statfs_chown_restricted.
3427 * sysdeps/unix/sysv/linux/bits/posix_opt.h: Change
3428 _POSIX_CHOWN_RESTRICTED value to zero.
3429 * io/tst-fchownat.c: Correctly handle _POSIX_CHOWN_RESTRICTED
3432 * sysdeps/x86_64/rtld-memset.c: New file.
3434 2008-02-26 Harsha Jagasia <harsha.jagasia@amd.com>
3436 * sysdeps/x86_64/cacheinfo.c (NOT_USED_RIGHT_NOW): Remove ifdef guards.
3438 * sysdeps/x86_64/memset.S: Rewrite non-SSE code path as tuned for AMD
3439 Barcelona machine. Make default fall through branch of
3440 __x86_64_preferred_memory_instruction check as the integer code path.
3442 2007-10-15 H.J. Lu <hongjiu.lu@intel.com>
3444 * sysdeps/x86_64/cacheinfo.c
3445 (__x86_64_preferred_memory_instruction): New variable.
3446 (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
3448 * sysdeps/x86_64/memset.S: Rewrite.
3450 2008-03-04 Jakub Jelinek <jakub@redhat.com>
3452 * include/stdio.h (__asprintf_chk, __dprintf_chk,
3453 __obstack_printf_chk): New prototypes.
3454 (__vasprintf_chk, __vdprintf_chk,
3455 __obstack_vprintf_chk): Likewise.
3456 Add libc_hidden_proto.
3458 (_IO_obstack_jumps): No longer static, add attribute_hidden.
3459 * libio/bits/stdio-ldbl.h (__asprintf_chk, __dprintf_chk,
3460 __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3461 __obstack_vprintf_chk): Add __LDBL_REDIR_DECL.
3462 * libio/bits/stdio2.h (__asprintf_chk, __dprintf_chk,
3463 __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3464 __obstack_vprintf_chk): New prototypes.
3465 (asprintf, __asprintf, dprintf, obstack_printf, vasprintf, vdprintf,
3466 obstack_vprintf): New inlines.
3467 * debug/dprintf_chk.c: New file.
3468 * debug/vdprintf_chk.c: New file.
3469 * debug/asprintf_chk.c: New file.
3470 * debug/vasprintf_chk.c: New file.
3471 * debug/obprintf_chk.c: New file.
3472 * debug/tst-chk1.c (do_test): Add asprintf and obstack_printf tests.
3473 * debug/Versions (__asprintf_chk, __dprintf_chk, __obstack_printf_chk,
3474 __vasprintf_chk, __vdprintf_chk, __obstack_vprintf_chk): Export
3476 * debug/Makefile: Build asprintf_chk, vasprintf_chk, dprintf_chk,
3477 vdprintf_chk and obprintf_chk, set CFLAGS for them.
3478 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vasprintf_chk,
3479 __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): Add
3481 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl___vasprintf_chk,
3482 __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): New prototypes.
3483 * sysdeps/ieee754/ldbl-opt/Versions (__nldbl___asprintf_chk,
3484 __nldbl___vasprintf_chk, __nldbl___dprintf_chk, __nldbl___vdprintf_chk,
3485 __nldbl___obstack_printf_chk, __nldbl___obstack_vprintf_chk): Export
3487 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add asprintf_chk,
3488 vasprintf_chk, dprintf_chk, vdprintf_chk, obstack_printf_chk and
3489 obstack_vprintf_chk.
3490 * sysdeps/ieee754/ldbl-opt/nldbl-obstack_vprintf_chk.c: New file.
3491 * sysdeps/ieee754/ldbl-opt/nldbl-dprintf_chk.c: New file.
3492 * sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf_chk.c: New file.
3493 * sysdeps/ieee754/ldbl-opt/nldbl-asprintf_chk.c: New file.
3494 * sysdeps/ieee754/ldbl-opt/nldbl-vdprintf_chk.c: New file.
3495 * sysdeps/ieee754/ldbl-opt/nldbl-vasprintf_chk.c: New file.
3497 2008-03-04 Ulrich Drepper <drepper@redhat.com>
3500 * misc/sys/queue.h: Add STAILQ_CONCAT and TAILQ_CONCAT definitions.
3501 Patch by Roy Marples <roy@marples.name>.
3504 * malloc/malloc.c: Fix typo in comment.
3507 * locale/iso-639.def: Add Shuswap.
3509 2008-02-25 Jakub Jelinek <jakub@redhat.com>
3512 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Don't
3513 overwrite *h_errnop/*errnop values from getanswer_r in case of
3516 2008-03-03 Ulrich Drepper <drepper@redhat.com>
3519 * nscd/connections.c (dbs): Add initializers for .suggested_module.
3520 (verify_persistent_db): Remove one unnecessary test and add a new one
3521 for bad configuration.
3522 (nscd_init): Improve error reported when persistent database cannot
3524 * nscd/nscd.h (DEFAULT_SUGGESTED_MODULE): Define.
3525 * nscd/nscd_conf.c (nscd_parse_file): Provide default values for
3526 .suggested_module and .max_db_size and case config file says the
3528 * nscd/nscd_helper.c (get_mapping): Fail if hash table module is zero.
3531 * nis/ypclnt.c (yp_order): Fix handling of return value of
3533 Patch by Jeff Moyer <jmoyer@redhat.com>.
3535 * po/fr.po: Update from translation team.
3537 2008-02-22 Andreas Jaeger <aj@suse.de>,
3538 Carlos O'Donell <carlos@systemhalted.org>
3541 * FAQ.in: Describe why glibc needs to be compiled with
3544 2008-02-19 Roland McGrath <roland@redhat.com>
3546 * elf/elf.h (SHT_GNU_ATTRIBUTES): New macro.
3548 2008-02-15 Ulrich Drepper <drepper@redhat.com>
3551 * resolv/netdb.h: Make NI_MAXHOST and NI_MAXSERV available when
3552 __USE_MISC is defined.
3554 2008-02-10 Ulrich Drepper <drepper@redhat.com>
3556 * sysdeps/unix/sysv/linux/sys/timerfd.h: New file.
3557 * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers): Add
3559 * sysdeps/unix/sysv/linux/syscalls.list: Add timerfd_create,
3560 timerfd_gettime, timerfd_settime.
3561 * sysdeps/unix/sysv/linux/Versions: Add timerfd_create,
3562 timerfd_gettime, timerfd_settime for GLIBC_2.8.
3564 2008-02-08 Roland McGrath <roland@redhat.com>
3566 * elf/elf.h (NT_PPC_SPE): New macro.
3568 2008-02-06 Roland McGrath <roland@redhat.com>
3570 * Makerules ($(common-objpfx)sysd-rules):
3571 Depend on $(sysdep-makeconfigs).
3573 2008-01-31 Roland McGrath <roland@redhat.com>
3576 * configure.in: Use -print-file-name if it yields a directory,
3577 for each of include and include-fixed.
3578 * configure: Regenerated.
3580 * Makeconfig (sysd-rules-targets): New variable.
3581 * sysdeps/unix/make-syscalls.sh: Use it in the rules emitted.
3582 * sysdeps/unix/Makefile (omit-deps): Append variants for each target.
3584 2008-01-30 Roland McGrath <roland@redhat.com>
3586 * manual/libc.texinfo: Update back-cover text.
3588 * elf/elf.h (NT_386_TLS): New macro.
3590 2008-01-29 Roland McGrath <roland@redhat.com>
3592 * Makeconfig (sysd-rules-patterns): New variable.
3593 * Makerules ($(common-objpfx)sysd-rules): Drive the loop from that.
3594 (check-inhibit-asm): New canned sequence, replaces ...
3595 (open-check-inhibit-asm, close-check-inhibit-asm): ... these, removed.
3596 * elf/rtld-Rules ($(objpfx)rtld-%.os): Use $(rtld-CPPFLAGS) in commands.
3597 (rtld-CPPFLAGS): Renamed from CPPFLAGS-rtld.
3598 (CFLAGS-rtld): Variable removed.
3600 2008-01-24 Roland McGrath <roland@redhat.com>
3602 * configure.in: Let configure fragments set base_os.
3603 * configure: Regenerated.
3605 2008-01-22 Ulrich Drepper <drepper@redhat.com>
3607 * po/ko.po: Update from translation team.
3609 2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
3611 * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Use short for fnstsw.
3613 2008-01-12 Andreas Jaeger <aj@suse.de>
3616 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (enum EPOLL_EVENTS):
3619 2008-01-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
3621 * hurd/hurdsock.c (_hurd_socket_server): Return the standard
3622 error EAFNOSUPPORT rather than non-standard EPFNOSUPPORT.
3623 * sunrpc/bindrsvprt.c (bindresvport): Likewise.
3625 2007-10-23 Alexandre Oliva <aoliva@redhat.com>
3627 * include/link.h (FORCED_DYNAMIC_TLS_OFFSET): Define.
3628 * elf/dl-close.c (_dl_close): Check for it.
3629 * elf/dl-reloc.c (CHECK_STATIC_TLS): Likewise.
3630 (_dl_allocate_static_tls): Likewise.
3631 * elf/dl-tls.c (_dl_allocate_tls_init): Likewise.
3632 (__tls_get_addr): Protect from race conditions in setting l_tls_offset
3634 * elf/tst-tls16.c: New file.
3635 * elf/tst-tlsmod16a.c: New file.
3636 * elf/tst-tlsmod16b.c: New file.
3637 * elf/Makefile: Add rules to build and run tst-tls16.
3639 2008-01-16 Ulrich Drepper <drepper@redhat.com>
3642 * bits/shm.h: Fix comment describing shmid_ds.
3643 * sysdeps/gnu/bits/shm.h: Likewise.
3644 * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
3645 * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
3646 * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
3647 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
3648 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
3649 * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
3650 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
3651 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
3652 Patch by Hareesh Nagarajan <hareesh.nagarajan@gmail.com>.
3655 * conform/data/fcntl.h-data: Fix posix_fadvise and posix_fallocate
3657 * conform/data/limits.h-data: Adjust limits changed in v6 and add
3658 additional suffixes.
3659 * conform/data/mqueue.h-data: Fix typo in mq_curmsgs entry.
3660 Add optional functions mq_timedreceive and mq_timedsend.
3661 * conform/data/netdb.h-data: Add more AI_* and EAI_* constants.
3662 * conform/data/pthread.h-data: Fix prototype of
3663 pthread_condattr_setclock. pthread_sigmask is not required in v6.
3664 * conform/data/semaphore.h-data: Allow time.h definitions.
3665 * conform/data/signal.h-data: Likewise.
3666 * conform/data/stdio.h-data: getw and putw are not required in v6.
3667 * conform/data/stdlib.h-data: Change setstate prototype.
3668 * conform/data/string.h-data: Fix strerror_r prototype.
3669 * conform/data/time.h-data: Fix typo in TIMER_ABSTIME definition.
3670 * conform/data/unistd.h-data: pthread_atfork not required in v6.
3671 Fix readlink prototype.
3672 * conform/data/netinet/in.h-data: Add const to in6addr_any and
3674 * inet/netinet/in.h: Cleanup namespace.
3675 * posix/regex.h: Likewise.
3676 * resolv/netdb.h: Likewise.
3677 * sysdeps/unix/sysv/linux/bits/in.h: Likewise.
3678 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
3679 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
3680 * sysdeps/posix/getaddrinfo.c (default_labels): Adjust for change
3681 of names of in in6_addr.
3682 (default_precedence): Likewise.
3683 * sysdeps/unix/sysv/linux/cmsg_nxthdr.c: Include <stddef.h> for
3686 2008-01-15 Ulrich Drepper <drepper@redhat.com>
3688 * conform/data/fmtmsg.h-data: Add missing allows.
3689 * conform/data/ftw.h-data: Likewise.
3690 * conform/data/inttypes.h-data: Likewise.
3691 * conform/data/math.h-data: Likewise.
3692 * conform/data/signal.h-data: Likewise.
3693 * conform/data/net/if.h-data: Likewise.
3694 * conform/data/netinet/in.h-data: Likewise.
3695 * conform/data/sys/socket.h-data: Likewise.
3698 * string/bits/string2.h (__strtok_r_1c): Always update *__NEXTP.
3699 (__strtok_r): Simplify.
3700 * string/tester.c (test_strtok_r): Add test case for futile search
3701 with single-character seach string.
3703 2008-01-12 Ulrich Drepper <drepper@redhat.com>
3705 * po/ko.po: Update from translation team.
3707 2008-01-11 Andreas Jaeger <aj@suse.de>
3710 * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
3711 signalfd_siginfo): Use 64-bit type for ssi_ptr to sync with Linux
3714 2008-01-10 Ulrich Drepper <drepper@redhat.com>
3716 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Store result of
3717 native interface lookup in all the relevant places.
3719 2008-01-10 Jakub Jelinek <jakub@redhat.com>
3720 Ulrich Drepper <drepper@redhat.com>
3722 * sysdeps/posix/getaddrinfo.c (sort_results): Remove service_order
3723 field. Use sockaddr_in6 for source_addr.
3724 (get_scope): Change type of parameter to sockaddr_in6. Adjust.
3725 (match_prefix): Likewise.
3726 (get_label): Likewise.
3727 (get_precedence): Likewise.
3728 (rfc3484_sort): Change to use indirect access to results array.
3729 Adjust to use of sockaddr_in6. Replace service_order test with
3730 simple index comparison.
3731 (getaddrinfo): Define order array. Initialize it. Don't initialize
3732 service_order field. Adjust qsort_t calls. Access sorted result
3733 array indirectly through order array.
3734 * posix/tst-rfc3484.c: Adjust for change of rfc3484_sort.
3735 * posix/tst-rfc3484-2.c: Likewise.
3736 * posix/tst-rfc3484-3.c: Likewise.
3738 2008-01-09 Ulrich Drepper <drepper@redhat.com>
3741 * sunrpc/rpc_thread.c (__rpc_thread_destroy): Also free xports and
3743 Patch by André Cruz.
3746 * sunrpc/clnt_perr.c (clnt_sperror): Don't use fixed size buffer.
3747 (clnt_spcreateerror): Likewise.
3750 * malloc/malloc.c (public_mALLOc): Set ar_ptr when trying main_arena.
3751 (public_mEMALIGn): Likewise.
3752 Patch mostly by Daniel Jacobowitz.
3754 2008-01-09 Jakub Jelinek <jakub@redhat.com>
3756 * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext): Avoid
3757 clobbering memory at or above uc_stack.ss_sp + uc_stack.ss_size.
3758 * stdlib/Makefile: Add rules to build and run tst-makecontext2.
3759 * stdlib/tst-makecontext2.c: New test.
3761 2008-01-08 Jakub Jelinek <jakub@redhat.com>
3763 * iconv/loop.c (UPDATE_PARAMS): Define to empty statement if not
3765 (REINIT_PARAMS): Likewise. Undefine before end of file.
3766 (STANDARD_TO_LOOP_ERR_HANDLER): Use UPDATE_PARAMS before calling
3767 transliteration hooks and REINIT_PARAMS afterwards.
3768 * iconvdata/iso-2022-jp.c (BODY): Use a separate variable for
3770 (REINIT_PARAMS): Define.
3771 * iconvdata/ibm1364.c (REINIT_PARAMS): Likewise.
3772 * iconvdata/ibm930.c (REINIT_PARAMS): Likewise.
3773 * iconvdata/ibm933.c (REINIT_PARAMS): Likewise.
3774 * iconvdata/ibm935.c (REINIT_PARAMS): Likewise.
3775 * iconvdata/ibm937.c (REINIT_PARAMS): Likewise.
3776 * iconvdata/ibm939.c (REINIT_PARAMS): Likewise.
3777 * iconvdata/iso-2022-cn.c (REINIT_PARAMS): Likewise.
3778 * iconvdata/iso-2022-cn-ext.c (REINIT_PARAMS): Likewise.
3779 * iconvdata/iso-2022-jp-3.c (REINIT_PARAMS): Likewise.
3780 * iconvdata/iso-2022-kr.c (REINIT_PARAMS): Likewise.
3781 * iconvdata/Makefile: Add rules to build and run tst-iconv7.c.
3782 * iconvdata/tst-iconv7.c: New test.
3784 2008-01-07 Ulrich Drepper <drepper@redhat.com>
3786 * libio/stdio.h (vscanf): Fix definition for loser compilers.
3788 2008-01-05 Jakub Jelinek <jakub@redhat.com>
3791 * nscd/connections.c (restart): Fix condition.
3793 2008-01-03 Jakub Jelinek <jakub@redhat.com>
3795 * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
3796 __ctype_toupper_loc): Add __THROW.
3798 2008-01-02 Ulrich Drepper <drepper@redhat.com>
3800 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
3801 recognition of interface family.
3803 * posix/getconf.c: Update copyright year.
3804 * nss/getent.c: Likewise.
3805 * iconv/iconvconfig.c: Likewise.
3806 * iconv/iconv_prog.c: Likewise.
3807 * elf/ldconfig.c: Likewise.
3808 * catgets/gencat.c: Likewise.
3809 * csu/version.c: Likewise.
3810 * elf/ldd.bash.in: Likewise.
3811 * elf/sprof.c (print_version): Likewise.
3812 * locale/programs/locale.c: Likewise.
3813 * locale/programs/localedef.c: Likewise.
3814 * nscd/nscd.c (print_version): Likewise.
3815 * debug/xtrace.sh: Likewise.
3816 * malloc/memusage.sh: Likewise.
3817 * malloc/mtrace.pl: Likewise.
3818 * debug/catchsegv.sh: Likewise.
3820 2007-12-26 Ulrich Drepper <drepper@redhat.com>
3822 * nss/nsswitch.c (__nss_lookup): Actually use alternative name in
3825 2007-12-23 Ulrich Drepper <drepper@redhat.com>
3827 * sysdeps/x86_64/cacheinfo.c (intel_02_known): New entry 0x3f.
3828 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
3830 2007-12-17 Roland McGrath <roland@redhat.com>
3832 * inet/ether_line.c (ether_line): Remove unused variable.
3834 2007-12-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
3836 * login/forkpty.c (forkpty): Add const qualifier to parameters termp
3838 * login/openpty.c (openpty): Likewise.
3839 * login/pty.h (openpty, forkpty): Likewise.
3840 * manual/terminal.texi (openpty, forkpty): Likewise.
3842 2007-12-17 Ulrich Drepper <drepper@redhat.com>
3844 * malloc/malloc.c (public_cALLOc): For arenas other than
3845 main_arena, count all bytes inside the mprotect_size range of the
3846 heap as uninitialized.
3848 2007-12-16 Ulrich Drepper <drepper@redhat.com>
3850 * elf/tst-execstack.c (do_test): Don't fail if SELinux forbids
3853 * malloc/malloc.c (public_mTRIm): Iterate over all arenas and call
3854 mTRIm for all of them.
3855 (mTRIm): Additionally iterate over all free blocks and use madvise
3856 to free memory for all those blocks which contain at least one
3858 * malloc/tst-trim1.c: New file.
3859 * malloc/Makefile (tests): Add tst-trim1.
3861 * malloc/malloc.c (do_check_malloc_state): Minimal cleanups.
3863 2007-12-14 Ulrich Drepper <drepper@redhat.com>
3865 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
3866 First cast argument to long
3867 * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
3869 (__vdso_clock_gettime): Likewise.
3870 * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
3873 2007-12-13 Ulrich Drepper <drepper@redhat.com>
3875 * locale/nl_langinfo.c (nl_langinfo): Just call __nl_langinfo_l.
3876 * locale/nl_langinfo_l.c: Real implementation, copied from
3878 * include/langinfo.h: Add libc_hidden_proto for __nl_langinfo_l.
3880 2007-12-01 Jim Meyering <meyering@redhat.com>
3882 * posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
3883 that would inhibit utf8-optimization of a regexp containing line-
3884 or buffer-anchors, e.g., `^', `$'.
3886 2007-12-12 Ulrich Drepper <drepper@redhat.com>
3888 * time/bug-getdate1.c (do_test): Don't use century values which
3889 aren't valid on 32-bit systems.
3891 2007-12-12 Jakub Jelinek <jakub@redhat.com>
3893 * sysdeps/i386/i486/bits/string.h (memmove): Define as macro.
3894 (memmove): Rename to __memmove_g, with __asm__ ("memmove").
3895 * sysdeps/s390/bits/string.h (__strlen_g, __strcpy_g, __strncpy_g,
3896 __strcat_g, __strncat_g): Add __asm__.
3898 2007-12-12 Ulrich Drepper <drepper@redhat.com>
3901 * io/fchmodat.c: Fix typo in stub_warning use.
3902 Patch by Petr Salinger.
3904 2007-12-11 Ulrich Drepper <drepper@redhat.com>
3906 * iconvdata/hp-thai8.c: New file.
3907 * iconvdata/Makefile: Add rules for hp-thai8.c.
3908 * iconvdata/tst-tables.sh: Add entry for HP-THAI8.
3909 * iconvdata/gconv-modules: Likewise.
3912 * iconvdata/hp-greek8.c: New file.
3913 * iconvdata/Makefile: Add rules for hp-greek8.c.
3914 * iconvdata/tst-tables.sh: Add entry for HP-GREEK8.
3915 * iconvdata/gconv-modules: Likewise.
3918 * iconvdata/hp-turkish8.c: New file.
3919 * iconvdata/Makefile: Add rules for hp-turkish8.c.
3920 * iconvdata/tst-tables.sh: Add entry for HP-TURKISH8.
3921 * iconvdata/gconv-modules: Likewise.
3923 * malloc/arena.c (grow_heap): Split out code to shrink heap into...
3924 (shrink_heap): ... this new function.
3925 (heap_trim): Call shrink_heap instead of grow_heap.
3927 * malloc/malloc.c (_int_malloc): sYSMALLOc might fail, in this
3928 case don't call alloc_perturb.
3930 2007-12-10 Ulrich Drepper <drepper@redhat.com>
3932 * sysdeps/unix/sysv/linux/adjtime.c: Use ADJ_OFFSET_SS_READ if
3934 * sysdeps/unix/sysv/linux/kernel-features.h
3935 (__ASSUME_ADJ_OFFSET_SS_READ): Define for 2.6.24.
3936 * sysdeps/unix/sysv/linux/sys/timex.h (ADJ_OFFSET_SS_READ): Define.
3938 2007-12-08 Ulrich Drepper <drepper@redhat.com>
3941 * stdio-common/vfprintf.c: Do not overflow when adding to done.
3942 * stdio-common/Makefile (tests): Add bug22.
3943 * stdio-common/bug22.c: New file.
3946 * time/getdate.c: Fix filling in default values.
3947 * time/bug-getdate1.c: New file.
3948 * time/Makefile: Add rules to build and run bug-getdate1.
3950 * iconvdata/ebcdic-is-friss.c: Use 8bit-gap instead of 8bit-generic.
3951 * iconvdata/ebcdic-es.c: Likewise.
3952 * iconvdata/ebcdic-es-a.c: Likewise.
3953 * iconvdata/ebcdic-uk.c: Likewise.
3954 * iconvdata/iso8859-16.c: Likewise.
3955 * iconvdata/viscii.c: Likewise.
3956 * iconvdata/iso8859-9e.c: Likewise.
3957 * iconvdata/Makefile: Adjust appropriately.
3960 * wcsmbs/wchar.h: Unconditionally undefine __need_mbstate and
3963 2007-12-07 Ulrich Drepper <drepper@redhat.com>
3966 * iconvdata/hp-roman9.c: New file.
3967 * iconvdata/Makefile: Add rules for hp-roman9.c.
3968 * iconvdata/tst-tables.sh: Add HP-ROMAN9.
3969 * iconvdata/gconv-modules: Likewise.
3971 * iconvdata/hp-roman8.c: Use 8bit-gap instead of 8bit-generic.
3972 * iconvdata/Makefile: Adjust appropriately.
3975 * stdio-common/vfscanf.c (_IO_vfwscanf): Don't free ptrs_to_free
3976 structure, it's allocated with alloca.
3977 * stdio-common/Makefile (tests): Add bug21.
3978 * stdio-common/bug21.c: New file.
3980 2007-12-06 Aurelien Jarno <aurelien@aurel32.net>
3983 * sysdeps/unix/sysv/linux/bits/sched.h: Use __extension__
3984 keyword for gcc's braced-groups.
3986 2007-12-07 Ulrich Drepper <drepper@redhat.com>
3989 * inet/ether_line.c: Strip hostname of whitespaces.
3990 * inet/Makefile (tests): Add tst-ether_line.
3991 * inet/tst-ether_line.c: New file.
3993 2007-12-03 Ulrich Drepper <drepper@redhat.com>
3996 * sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull.
3999 * sysdeps/unix/sysv/linux/i386/makecontext.S: Align stack.
4001 * stdlib/tst-setcontext.c: Catch the case where the links gets
4002 messed up and we do not reach main again.
4004 * po/ca.po: Update from translation team.
4006 2007-11-26 Ulrich Drepper <drepper@redhat.com>
4008 * posix/unistd.h: Declare fsync also for __USE_XOPEN2K.
4009 * posix/regex.h (REG_ENOSYS): Likewise.
4010 * wcsmbs/wchar.h: Define __need_file also for __USE_XOPEN2K.
4012 2007-11-25 Ulrich Drepper <drepper@redhat.com>
4014 * nscd/nscd.h (MAX_STACK_USE): Define.
4015 * nscd/mem.c (MAX_STACK_USE): Remove definition here.
4016 (gc): Initialize stack_used based on allocation in prune_cache.
4017 * nscd/cache.c (prune_cache): Use heap for mark array if necessary.
4018 Clear array before use.
4020 * nscd/aicache.c (addhstaiX): Update statistics counter in case
4021 memory allocation failed.
4022 * nscd/hstcache.c (cache_addhst): Likewise.
4023 * nscd/grpcache.c (cache_addgr): Likewise.
4024 * nscd/servicescache.c (cache_addserv): Likewise.
4025 * nscd/pwdcache.c (cache_addpw): Likewise.
4026 * nscd/initgrcache.c (addinitgroupsX): Likewise.
4028 2007-11-23 Ulrich Drepper <drepper@redhat.com>
4030 * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Add open
4031 and creat system calls.
4033 * sysdeps/unix/sysv/linux/check_native.c: Include <asm/types.h>.
4035 2007-11-23 Martin Schwidefsky <schwidefsky@de.ibm.com>
4037 * sysdeps/unix/sysv/linux/Makefile [subdir=inet] (sysdep_headers):
4039 * sysdeps/unix/sysv/linux/netiucv/iucv.h: New file.
4040 * sysdeps/unix/sysv/linux/opensock.c (__opensock): Add AF_IUCV
4042 * sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Likewise.
4043 * sysdeps/unix/sysv/linux/s390/opensock.c: New file.
4044 * sysdeps/unix/sysv/linux/s390/sa_len.c: New file.
4046 2007-11-22 Martin Schwidefsky <schwidefsky@de.ibm.com>
4048 * sysdeps/s390/bits/string.h (strlen, strcpy, strncpy, strcat,
4049 strncat): Define as macros to avoid compile errors.
4051 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Add open and
4054 2007-11-22 Ulrich Drepper <drepper@redhat.com>
4057 * nscd/nscd.h (NSCD_THREAD_STACKSIZE): Define.
4058 * nscd/connections.c (start_threads): Use NSCD_THREAD_STACKSIZE.
4059 * nscd/mem.c (gc): Don't allocate arrays on the stack if they can
4061 Partially based on a patch by Petr Baudis <pasky@suse.cz>.
4063 * sysdeps/unix/sysv/linux/nscd_setup_thread.c (setup_thread):
4064 Return zero in case the thread library is not NPTL.
4067 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix locking when
4068 initializing interface list.
4071 * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
4072 use result of nss_getgrgid_r if nothing was found. For other
4073 error return with a failure.
4074 Partially based on a patch by Petr Baudis <pasky@suse.cz>.
4076 * locale/programs/ld-collate.c (collate_read): Fix loop to match
4079 2007-11-19 Ulrich Drepper <drepper@redhat.com>
4081 * sysdeps/posix/getaddrinfo.c (defaults_scopes, scopes): New variables.
4082 (get_scope): For IPv4 scope, use scopes table.
4083 (fini): Free scopes table if necessary.
4084 (free_scopelist): New function.
4085 (scopecmp): New function.
4086 (gaiconf_init): Also handle scopev4 entries.
4087 * posix/tst-rfc3484.c (do_test): Initialize scopes.
4088 * posix/tst-rfc3484-2.c (do_test): Likewise.
4089 * posix/gai.conf: Document scopev4 defaults.
4090 * posix/Makefile (tests): Add tst-rfc3484-3.
4091 * posix/tst-rfc3484-3.c: New file.
4093 * sysdeps/posix/getaddrinfo.c (default_labels): Describe entry for
4095 * posix/gai.conf: Update for current default tables.
4097 2007-11-19 Ulrich Drepper <drepper@redhat.com>
4099 * po/tr.po: Update from translation team.
4101 2007-11-18 Roland McGrath <roland@frob.com>
4103 * manual/arith.texi (Remainder Functions): Spelling fix.
4104 From Shaun Silk <genix@mysoul.com.au>.
4106 * sysdeps/mach/hurd/bits/fcntl.h (O_CLOEXEC): Fix value.
4108 2007-11-17 Ulrich Drepper <drepper@redhat.com>
4110 * po/zh_CN.po: Update from translation team.
4112 * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
4113 Add sys/signalfd.h and sys/eventfd.h.
4115 2007-11-15 Bruno Haible <bruno@clisp.org>
4118 * intl/dcigettext.c (struct known_translation_t): Turn msgid into a
4120 (transcmp): Use the appropriate part of s1->msgid and s2->msgid.
4121 (DCIGETTEXT): Change the allocation of the 'search' variable so that
4122 it needs only fixed stack space. Delay the initialization of
4123 msgid_len until it is needed.
4125 2007-11-15 Andreas Jaeger <aj@suse.de>
4127 * sysdeps/ieee754/dbl-64/sincos.tbl: Fix size of union.
4128 Reported by Christoph Quirin Lauter <christoph.lauter@ens-lyon.fr>.
4130 2007-11-15 Ulrich Drepper <drepper@redhat.com>
4132 * po/ko.po: Update from translation team.
4134 2007-11-14 Ulrich Drepper <drepper@redhat.com>
4136 * sysdeps/unix/sysv/linux/check_native.c (__check_native): Simplify
4137 significantly. The device type is also part of the ifinfomsg data.
4139 * po/sv.po: Update from translation team.
4140 * po/nl.po: Likewise.
4142 * nscd/cache.c (prune_cache): If cache is empty, instruct caller
4143 to wake up in 24 hours.
4145 * nscd/gai.c (__ioctl): Define. Include check_native.c.
4147 2007-11-13 Ulrich Drepper <drepper@redhat.com>
4149 * po/cs.po: Update from translation team.
4150 * po/pl.po: Likewise.
4152 * include/ifaddrs.h: Remove in6ai_temporary.
4153 (struct in6addrinfo): Add index element.
4154 Declare __check_native.
4155 * inet/Makefile (aux): Add check_native.
4156 * sysdeps/unix/sysv/linux/check_native.c: New file.
4157 * sysdeps/unix/sysv/linux/check_pf.c: No need to recognize
4158 IFA_F_TEMPORARY. Pass back ifa_index.
4159 * sysdeps/posix/getaddrinfo.c: Remove netlink compatibility code.
4160 (rfc3484_sort): Add new parameter. Implement rule 7 correctly:
4161 call __check_native if necessary.
4162 (getaddrinfo): Fill in index field. Use qsort_r instead of qsort
4163 to sort addresses. Pass information about the results.
4164 * posix/tst-rfc3484.c: Adjust for addition of index field and change
4165 of rfc3484_sort interface.
4166 * posix/tst-rfc3484-2.c: Likewise.
4168 * stdlib/stdlib.h: Define __compar_d_fn_t. Declare qsort_r.
4169 * include/stdlib.h: Add hidden_proto for qsort_t and adjust protoype
4171 * stdlib/msort.c (qsort): Now a wrapper around qsort_r.
4172 (qsort_r): Renamed from qsort. Take additional parameter and pass it
4173 on as third parameter to compare function and _quicksort.
4174 * stdlib/qsort.c (_quicksort): Take additional parameter and pass on
4175 to the compare function.
4176 * stdlib/Versions [libc] (GLIBC_2.8): Add qsort_r.
4177 * Versions.def: Add GLIBC_2.8 for libc.
4179 * posix/tst-rfc3484.c: Adjust for addition of prefixlen field.
4180 * posix/tst-rfc3484-2.c: Likewise.
4182 * include/kernel-features.h: Moved to...
4183 * sysdeps/mach/hurd/kernel-features.h: ...here.
4185 2007-09-13 H.J. Lu <hongjiu.lu@intel.com>
4187 * sysdeps/i386/i586/memcpy_chk.S: New file.
4188 * sysdeps/i386/i586/mempcpy_chk.S: Likewise.
4189 * sysdeps/i386/i586/memset_chk.S: Likewise.
4191 2007-11-12 Ulrich Drepper <drepper@redhat.com>
4193 * include/ifaddrs.c (struct in6addrinfo): Add prefixlen field.
4194 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Always return
4195 list of interfaces. Also store prefix length.
4196 * sysdeps/posix/getaddrinfo.c (sort_result): Add prefixlen element.
4197 (rfc3484_sort): In rule 9, for IPv4 addresses count only matching
4198 prefix if source and destination address are in the same subnet.
4199 (getaddrinfo): Always call __check_pf. Fill in prefixlen field.
4200 Always look for matching record in in6ai list.
4201 Correct source_addr_len value for IPv6->IPv4 converted records.
4203 2007-11-11 Roland McGrath <roland@frob.com>
4205 * include/kernel-features.h: New file.
4207 2007-11-10 Ulrich Drepper <drepper@redhat.com>
4209 * sysdeps/pthread/aio_misc.c (handle_fildes_io): Avoid unnecessary
4210 complications for 64-bit platforms.
4212 * sysdeps/unix/sysv/linux/open64.c: Move __open64_2 implementation to..
4213 * sysdeps/unix/sysv/linux/open64_2.c: ...here. New file.
4214 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines): Add
4216 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add open and creat
4218 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
4219 * sysdeps/wordsize-64/alphasort.c: New file.
4220 * sysdeps/wordsize-64/alphasort64.c: New file.
4221 * sysdeps/wordsize-64/fseeko.c: New file.
4222 * sysdeps/wordsize-64/fseeko64.c: New file.
4223 * sysdeps/wordsize-64/ftello.c: New file.
4224 * sysdeps/wordsize-64/ftello64.c: New file.
4225 * sysdeps/wordsize-64/ftw.c: New file.
4226 * sysdeps/wordsize-64/ftw64.c: New file.
4227 * sysdeps/wordsize-64/iofgetpos.c: New file.
4228 * sysdeps/wordsize-64/iofgetpos64.c: New file.
4229 * sysdeps/wordsize-64/iofopen.c: New file.
4230 * sysdeps/wordsize-64/iofopen64.c: New file.
4231 * sysdeps/wordsize-64/iofsetpos.c: New file.
4232 * sysdeps/wordsize-64/iofsetpos64.c: New file.
4233 * sysdeps/wordsize-64/lockf.c: New file.
4234 * sysdeps/wordsize-64/lockf64.c: New file.
4235 * sysdeps/wordsize-64/mkostemp.c: New file.
4236 * sysdeps/wordsize-64/mkostemp64.c: New file.
4237 * sysdeps/wordsize-64/mkstemp.c: New file.
4238 * sysdeps/wordsize-64/mkstemp64.c: New file.
4239 * sysdeps/wordsize-64/scandir.c: New file.
4240 * sysdeps/wordsize-64/scandir64.c: New file.
4241 * sysdeps/wordsize-64/tmpfile.c: New file.
4242 * sysdeps/wordsize-64/tmpfile64.c: New file.
4243 * sysdeps/wordsize-64/versionsort.c: New file.
4244 * sysdeps/wordsize-64/versionsort64.c: New file.
4245 * sysdeps/unix/sysv/linux/wordsize-64/aio_read.c: New file.
4246 * sysdeps/unix/sysv/linux/wordsize-64/aio_read64.c: New file.
4247 * sysdeps/unix/sysv/linux/wordsize-64/aio_write.c: New file.
4248 * sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c: New file.
4249 * sysdeps/unix/sysv/linux/wordsize-64/creat64.c: New file.
4250 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: New file.
4251 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: New file.
4252 * sysdeps/unix/sysv/linux/wordsize-64/lio_listio.c: New file.
4253 * sysdeps/unix/sysv/linux/wordsize-64/lio_listio64.c: New file.
4254 * sysdeps/unix/sysv/linux/wordsize-64/open64.c: New file.
4255 * sysdeps/unix/sysv/linux/wordsize-64/openat.c: New file.
4256 * sysdeps/unix/sysv/linux/wordsize-64/openat64.c: New file.
4258 * crypt/sha256-crypt.c: Fix a comment.
4259 * crypt/sha512-crypt.c: Likewise.
4261 2007-11-07 H.J. Lu <hongjiu.lu@intel.com>
4263 * sysdeps/x86_64/memset.S: Add sfence after movnti.
4265 2007-11-07 Ulrich Drepper <drepper@redhat.com>
4268 * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): If conversion failed
4269 because output buffer is too small break, don't loop.
4270 * iconvdata/Makefile (tests): Add bug-iconv6.
4271 * iconvdata/bug-iconv6.c: New file.
4273 2007-11-06 Ulrich Drepper <drepper@redhat.com>
4275 * stdio-common/vfprintf.c (vfprintf): Compute necessary buffer size
4277 * stdio-common/printf_fp.c (__print_fp): Change chars_needed type to
4278 size_t. Add casts where needed.
4280 * nscd/selinux.c (nscd_request_avc_has_perm): When compiled with
4281 old headers, don't call avc_has_perm if we don't have the
4282 permission information.
4284 2007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
4286 * elf/rtld.c (dl_main): Use the page size to find the map start.
4288 2007-11-05 Ulrich Drepper <drepper@redhat.com>
4290 * time/tzfile.c (__tzfile_read): Fix check for version 0 data files.
4291 Patch by Szymon Siwek <sls@poczta.wp.pl>.
4293 * nscd/aicache.c (addhstaiX): Check herrno after IPv4 lookup only
4294 when the lookup call failed.
4296 * nscd/nscd.h (struct database_dyn): Rename prunelock to prune_lock.
4297 Add prune_cond and wakeup_time.
4298 (CACHE_PRUNE_INTERNAL): Define.
4299 Update declarations of prune_cache and setup_thread.
4300 * nscd/connections.c (dbs): Update initializers.
4301 (CACHE_PRUNE_INTERNAL): Moved to nscd.h.
4302 (nscd_init): Default number of threads is now 4.
4303 (invalidate_cache): Take lock before calling prune_cache.
4304 (handle_request): If SELinux forbids the request, say so.
4305 (readylist_cond): Use static initializer.
4306 (nscd_run_prune): New function. Used only by pruning threads.
4307 (nscd_run_worder): Renamed from nscd_run. Remove support for pruning
4309 (fd_ready): Update nscd_run reference.
4310 (start_threads): No need to initialize readylist_cond.
4311 Start pruning threads separately.
4312 * nscd/nscd_setup_thread.c: Change return value type to int and always
4314 * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Change return value type
4315 to int and return nonzero value if we can use the TID address hack.
4316 * nscd/cache.c (cache_add): If next wakeup time of cleanup thread for
4317 the database is later than the new entry's timeout, update the
4318 wakeup time and wake the cleanup thread.
4319 (prune_cache): Return seconds the next entry in the database is still
4320 valid. Remove locking for pruning here.
4321 * nscd/nscd.conf: Document default number of threads.
4323 2007-10-31 Ulrich Drepper <drepper@redhat.com>
4325 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Make sure
4326 stack is properly aligned for the target function.
4327 Correct unwind info.
4329 * elf/rtld.c (dl_main): Initialize stack and pointer guard early
4330 when using auditing libraries.
4332 2007-10-29 Ulrich Drepper <drepper@redhat.com>
4334 * resolv/Versions [libresolv] (GLIBC_PRIVATE): Add
4335 _nss_dns_getnetbyaddr2_r.
4336 * resolv/nss_dns/dns-host.c: Define _nss_dns_getnetbyaddr2_r. Pass
4337 extra parameter to getanswer_r.
4338 (_nss_dns_getnetbyaddr_r): Now a wrapper around
4339 _nss_dns_getnetbyaddr2_r.
4341 * nscd/Makefile (nscd-modules): Replace gethstbynm2_r with
4343 * nscd/gethstbynm2_r.c: Remove.
4344 * nscd/gethstbynm3_r.c: New file.
4345 * nscd/aicache.c (addhstaiX): Use __gethostbyaddr2_r instead of
4347 * nscd/gethstbyad_r.c: Generate __gethostbyaddr2_r function. Define
4348 __gethostbyaddr_r compatibility wrapper.
4349 * nscd/hstcache.c (cache_addhst): Add ttl parameter. Use it when
4350 determining timeout of entry.
4351 (lookup): Take new parameter and pass it to __gethostbyname3_r and
4353 (addhstbyX): Pass reference to variable for TTL to lookup and
4355 * nss/Versions [glibc] (GLIBC_PRIVATE): Export __nss_passwd_lookup2,
4356 __nss_group_lookup2, __nss_hosts_lookup2, __nss_services_lookup2,
4357 and __nss_next2. Remove __nss_services_lookup.
4358 * nss/XXX-lookup.c: Name function now *_lookup2. Add new parameter.
4360 * nss/getXXbyYY_r.c: Changes to call new *_lookup2 functions and
4362 * nss/getXXent_r.c: Likewise.
4363 * nss/getnssent_r.c: Likewise.
4364 * nss/nsswitch.c (__nss_lookup): Add new parameter. If first function
4365 does not exist in module, try the optional second name.
4366 (__nss_next2): New function.
4367 (__nss_next): Now wrapper around __nss_next2.
4368 * nss/nsswitch.h: Adjust __nss_lookup prototype.
4369 Declare __nss_next2.
4370 Adjust definition of db_lookup_function type.
4371 * nss/service-lookup.c: Define NO_COMPAT.
4372 * include/netdb.h: Declare __gethostbyaddr2_r and __gethostbyname3_r.
4373 * inet/ether_hton.c: Use __nss_next2 instead of __nss_next.
4374 * inet/ether_ntoh.c: Likewise.
4375 * sunrpc/netname.c: Likewise.
4376 * sunrpc/publickey.c: Likewise.
4377 * inet/getnetgrent.c: Likewise. Adjust calls to __nss_lookup.
4378 * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Change to __nss_hosts_lookup2.
4379 * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
4380 * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
4381 * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
4383 * nscd/aicache.c (addhstaiX): Fix default TTL handling.
4385 * inet/getnetgrent_r.c (setup): Encrypt static pointer.
4387 2007-10-28 Ulrich Drepper <drepper@redhat.com>
4390 * crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware.
4391 * crypt/sha512c-test.c: Likewise.
4394 * stdio-common/vfscanf.c (_IO_vfwscanf): Don't misuse wp pointer
4395 to keep track of end of %[ format string element.
4396 * stdio-common/Makefile (tests): Add bug20.
4397 * stdio-common/bug20.c: New file.
4400 * elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short
4401 path elements in counting mode.
4403 2007-10-27 Andreas Jaeger <aj@suse.de>
4406 * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLRDHUP): Add value.
4409 * sysdeps/ia64/backtrace.c (init): Free shared library if incorrect.
4410 (__cleanup): Free shared library when exiting.
4411 * sysdeps/i386/backtrace.c (init): Free shared library if incorrect.
4412 (__cleanup): Free shared library when exiting.
4414 2006-04-14 H.J. Lu <hongjiu.lu@intel.com>
4417 * math/libm-test.inc (check_float_internal): Support
4418 denormalized return.
4420 2007-10-23 Andreas Jaeger <aj@suse.de>
4423 * sysdeps/unix/sysv/linux/readahead.c (__readahead): Use
4424 __LONG_LONG_PAIR to handle little endian byte order.
4425 Suggested by abhishekrai@google.com
4427 2007-10-27 Ulrich Drepper <drepper@redhat.com>
4429 * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined.
4431 2007-10-26 Ulrich Drepper <drepper@redhat.com>
4433 * nscd/cache.c (prune_cache): Move test for modified file outside
4436 2007-10-21 Andreas Jaeger <aj@suse.de>
4438 * manual/texinfo.tex: Update to latest version.
4440 * manual/sysinfo.texi (System Parameters): Fix Formatting.
4442 * manual/arith.texi (Status bit operations): Fix formatting.
4444 * manual/errno.texi (Error Messages): Fix formatting.
4446 * manual/sysinfo.texi (System Parameters): Fix formatting.
4448 * manual/libc.texinfo: Update VERSION and UPDATED.
4450 2007-10-19 Roland McGrath <roland@redhat.com>
4452 * elf/Makefile ($(objpfx)ld.so): Use $(AWK).
4454 2007-10-06 David S. Miller <davem@davemloft.net>
4456 * configure.in: Add sparcv9v2 and sparc64v2.
4457 * scripts/config.sub: Likewise.
4458 * configure: Regenerate.
4459 * elf/elf.h (HWCAP_SPARC_N2): New.
4460 * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8.
4461 * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'.
4462 (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2.
4463 * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file.
4464 * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file.
4465 * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file.
4466 * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file.
4468 2007-10-18 Ulrich Drepper <drepper@redhat.com>
4470 * sunrpc/clnt_udp.c (clntudp_call): Don't block in recvfrom call
4471 even if the poll result indicates there is data to read.
4472 Patch by Jeff Moyer <jmoyer@redhat.com>.
4474 2007-10-18 Roland McGrath <roland@redhat.com>
4476 * elf/elf.h (NT_PPC_VMX): New macro.
4478 2007-10-17 Ulrich Drepper <drepper@redhat.com>
4480 * version.h (VERSION): Set to 2.7.90.
4482 2007-10-17 Jakub Jelinek <jakub@redhat.com>
4484 * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero. Add
4487 2007-10-17 Roland McGrath <roland@frob.com>
4489 * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New.
4490 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
4492 2007-10-17 Ulrich Drepper <drepper@redhat.com>
4494 * version.h (VERSION): Bump to 2.7.
4495 * include/features.h (__GLIBC_MINOR__): Bump to 7.
4498 * time/tzset.c (__tz_convert): Don't force testing for a change of
4499 TZ if not called from localtime. But then also see whether the
4500 file changed, in case __use_tzfile is set.
4502 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define F_DUPFD_CLOEXEC.
4503 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
4504 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
4505 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
4506 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
4507 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
4508 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
4509 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
4511 2007-10-17 Jakub Jelinek <jakub@redhat.com>
4513 * sysdeps/posix/getaddrinfo.c (getaddrinfo): When sorting addresses
4514 and admin selects to be able to replace the gai.conf file, lock
4515 data structures around the qsort call.
4517 2007-10-17 Ulrich Drepper <drepper@redhat.com>
4519 * sysdeps/x86_64/cacheinfo.c: Comment out code added in support of
4521 * sysdeps/x86_64/memset.S: Revert to old version for now. The cost is
4522 too high for the improvements. Implement bzero unconditionally for
4525 2007-10-17 Ulrich Drepper <drepper@redhat.com>
4526 Jakub Jelinek <jakub@redhat.com>
4528 * time/tzfile.c (__tzfile_read): Read POSIX TZ string if available
4529 even when time_t is 32-bit.
4530 (__tzfile_compute): Override POSIX TZ string STD/DST zone names if
4531 timezone data read by __tzfile_default. Ensure __tzname[0] is
4532 always set after the search.
4534 2007-10-16 Ulrich Drepper <drepper@redhat.com>
4536 * time/tzfile.c (__tzfile_read): Help the compiler recognize
4537 unreachable code on 32-bit machines.
4539 2007-10-16 Jakub Jelinek <jakub@redhat.com>
4542 * time/strftime_l.c: Include stdbool.h.
4543 (my_strftime): New wrapper, old function renamed to...
4544 (__strftime_internal): ... new function. Add tzset_called
4545 argument, pass it down to recursive calls, don't call tzset ()
4546 if already true, set to true after call to tzset ().
4548 2007-10-16 Ulrich Drepper <drepper@redhat.com>
4550 * time/tzfile.c (__tzfile_read): Take extra memory requested by caller
4551 into account when copying TZ string.
4553 2007-10-16 Jakub Jelinek <jakub@redhat.com>
4555 * time/tzfile.c (__tzfile_compute): For use_last case set i to
4556 num_transition rather than num_transitions - 1.
4558 2007-10-16 Jakub Jelinek <jakub@redhat.com>
4560 * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move
4563 * sysdeps/x86_64/memset.S: Jump from bzero to memset using
4564 a local label rather than HIDDEN_JUMPTARGET.
4566 2007-10-15 Ulrich Drepper <drepper@redhat.com>
4568 * sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.
4569 (init_cacheinfo): Initialize it.
4570 * sysdeps/x86_64/memset.S: Use __x86_64_shared_cache_size.
4571 Always define bzero.
4572 Remove non-glibc code.
4573 * sysdeps/x86_64/bzero.S: Make an empty file.
4575 2007-10-15 H.J. Lu <hongjiu.lu@intel.com>
4577 * sysdeps/x86_64/cacheinfo.c
4578 (__x86_64_preferred_memory_instruction): New.
4579 (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
4581 * sysdeps/x86_64/memset.S: Rewrite.
4583 2007-10-15 Roland McGrath <roland@redhat.com>
4585 * po/libc.pot: Regenerated.
4587 2007-10-15 Ulrich Drepper <drepper@redhat.com>
4589 * nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle startp and start_fct
4593 * resolv/nss_dns/dns-host.c (getanswer_r): Fail with
4594 NSS_STATUS_NOTFOUND if the server replied with only a CNAME and no
4595 address record to T_A/T_AAAA requests.
4597 2007-10-14 Ulrich Drepper <drepper@redhat.com>
4599 * posix/glob.c: Reimplement link_exists_p to use fstatat64.
4601 * posix/glob.c: Add some branch prediction throughout.
4603 * nscd/nscd_getgr_r.c (nscd_getgr_r): Store result of successful
4606 * sysdeps/posix/getaddrinfo.c (struct sort_result): Add
4608 (rfc3484_sort): Make sure that even if qsort doesn't support
4609 stable sorting out sorting here is stable by comparing service_order.
4610 (getaddrinfo): Initialize service_order.
4611 * posix/tst-rfc3484.c (do_test): Adjust for addition of
4612 service_order field to sorting structure.
4613 * posix/tst-rfc3484-2.c (do_test): Likewise.
4615 * include/time.h: Declare __tzset_parse_tz and __tzset_compute.
4616 * time/tzset.c (tzset_internal): Break TZ string parsing out into
4617 __tzset_parse_tz and updating of daylight, timezone, tzname into
4619 (__tz_compute): Renamed from tz_compute. Take additional parameters.
4620 (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now
4621 happens in __tz_compute.
4622 * time/tzfile.c (__tzfile_read): Also read TZ string.
4623 (find_transition): Fold into __tzfile_compute.
4624 (__tzfile_compute): For times beyond the last transition try to
4626 * timezone/tst-timezone.c: Information in daylight and tzname does
4627 change for Asia/Tokyo timezone with more concrete information.
4630 * include/stdio.h: Add libc_hidden_proto for ftello.
4631 * libio/ftello.c: Add libc_hidden_def.
4634 * time/tzfile.c (__tzfile_compute): Compute tzname[] values based
4635 on the specified time and not the last entries in the file. Move
4636 code to determine tzname[] to...
4637 (find_transition): ...here. Add ugly guess for times before the
4640 2007-10-13 Ulrich Drepper <drepper@redhat.com>
4643 * nscd/nscd_getai.c (__nscd_getai): Set errno to 0 in case we found
4645 * nscd/nscd_getgr.c (nscd_getgr_r): Likewise.
4646 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
4647 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
4648 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
4650 * nscd/nscd_getgr_r.c (nscd_getgr_r): Optimize a bit: use simpler
4651 read mechanism when there are no group members and avoid no-op
4652 read syscall in this case.
4655 * nscd/nscd_helper.c (wait_on_socket): Take timeout as parameter.
4656 (__readall): If reading failed due to EAGAIN error wait a bit
4657 and possibly try again.
4658 (__readvall): Likewise.
4660 2007-10-13 Bruno Haible <bruno@clisp.org>
4662 * intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lock
4663 when we cannot recode the message.
4665 2007-10-13 Ulrich Drepper <drepper@redhat.com>
4668 * libio/__freading.c (__freading): Don't return true for
4669 write-only streams. For read/write streams, check whether we
4670 performed a read operation already.
4671 * libio/Makefile (tests): Add tst-ext2.
4672 * libio/tst-ext2.c: New file.
4674 2007-10-12 Ulrich Drepper <drepper@redhat.com>
4676 * locale/programs/repertoire.c (repertoire_read): Always free
4677 memory for repertoire file name [Coverity CID 270].
4679 * elf/cache.c (save_aux_cache): Free memory allocated for
4680 temporary file name [Coverity CID 267].
4682 2007-10-12 Jakub Jelinek <jakub@redhat.com>
4684 * misc/Makefile (headers): Add bits/error.h.
4686 2007-10-12 Ulrich Drepper <drepper@redhat.com>
4688 * posix/fnmatch_loop.c: Take rule index returned as part of
4689 findidx return value into account when accessing weights.
4690 * posix/regcomp.c: Likewise.
4691 * posix/regexec.c: Likewise.
4693 * locale/programs/ld-collate.c (collate_read): Optimize a bit.
4694 (skip_to): Fix problems with parameter of elifdef/elifndef.
4696 2007-10-11 Ulrich Drepper <drepper@redhat.com>
4698 * iconv/gconv_simple.c: Add some branch prediction.
4700 2007-10-12 Jakub Jelinek <jakub@redhat.com>
4702 * locale/programs/ld-collate.c (collate_read): If ignore_content
4703 and nowtok is tok_define, eat any tok_eol tokens.
4705 2007-10-11 Jakub Jelinek <jakub@redhat.com>
4707 * sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC.
4708 (struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage.
4710 * inet/netinet/in.h: Don't include bits/socket.h.
4711 * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H
4713 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
4715 2007-10-10 Ulrich Drepper <drepper@redhat.com>
4717 * locale/programs/locfile-token.h: Remove tok_elif, add tok_elifdef
4719 * locale/programs/locfile-kw.gperf: Likewise.
4720 * locale/programs/ld-collate.c: Implement primitive preprocessor.
4722 2007-10-10 Jakub Jelinek <jakub@redhat.com>
4724 * stdio-common/printf-parse.h: Include string.h and wchar.h.
4725 (__find_specwc): Change into __extern_always_inline function.
4726 (__find_specmb): Likewise. Remove ps argument. Use __strchrnul.
4727 (__parse_one_specmb): Remove ps argument.
4728 * stdio-common/vfprintf.c (vfprintf): Remove mbstate variable.
4729 Adjust __find_specmb and __parse_one_specmb callers.
4730 * stdio-common/printf-prs.c (parse_printf_format): Likewise.
4731 * stdio-common/printf-parsemb.c (__find_specwc, __find_specmb):
4733 (__parse_one_specmb): Remove ps argument, adjust __find_specmb
4736 2007-10-09 Ulrich Drepper <drepper@redhat.com>
4738 * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Work around problem
4739 with some Pentium Ds.
4741 2007-10-08 Ulrich Drepper <drepper@redhat.com>
4743 * sysdeps/unix/sysv/linux/eventfd_read.c (eventfd_read): Use
4745 * sysdeps/unix/sysv/linux/eventfd_write.c (eventfd_write): Use
4748 2007-10-07 Ulrich Drepper <drepper@redhat.com>
4751 * locale/C-time.c: Set week_1stday data to 19971201.
4752 * locale/programs/ld-time.c (time_finish): Default for
4753 first_workday is Monday.
4756 * wcsmbs/wchar.h: Move many C99 functions into std namespace.
4759 * posix/glob.c (glob): Recognize patterns starting \/.
4760 * posix/tst-gnuglob.c (find_file): Handle absolute path names.
4761 (main): Add test for pattern starting \/.
4763 * misc/error.h: Use __const instead of const.
4764 * misc/bits/error.h: Likewise.
4766 2007-10-07 Andreas Jaeger <aj@suse.de>
4768 * include/bits/error.h: New file.
4770 * misc/bits/error.h (error_at_line): Fix prototype.
4772 2007-10-06 Ulrich Drepper <drepper@redhat.com>
4775 * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix a few
4776 more little bugs in creating the stack frame when pltexit has to
4779 * nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
4780 * nscd/connections.c (verify_persistent_db): Recognize circular lists.
4783 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
4784 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
4785 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
4786 * math/libm-test.inc: Add test for this case.
4789 * sunrpc/svc.c (struct svc_callout): Add sc_mapped element.
4790 (svc_register): Initialize sc_mapped. Set to TRUE if call to
4791 map service succeeded.
4792 (svc_is_mapped): New function.
4793 (svc_unregister): Use it before trying to unmap service.
4795 2007-10-05 Ulrich Drepper <drepper@redhat.com>
4797 * timezone/zic.c: Update from tzcode2007h.
4800 * timezone/africa: Update from tzdata2007h.
4801 * timezone/antarctica: Likewise.
4802 * timezone/asia: Likewise.
4803 * timezone/australasia: Likewise.
4804 * timezone/europe: Likewise.
4805 * timezone/leapseconds: Likewise.
4806 * timezone/northamerica: Likewise.
4807 * timezone/southamerica: Likewise.
4808 * timzeone/zone.tab: Likewise.
4811 * elf/do-lookup.h (do_lookup_x): Don't ignore STT_COMMON symbols.
4814 * string/bits/string2.h (__strdup): Cast parameters to calloc to
4815 avoid warning with -Wconversion.
4816 (__strndup): Likewise.
4817 Half the patch by Christian Iseli <christian.iseli@licr.org>.
4820 * nscd/connections.c (restart): Don't resync if database is
4821 disabled. Patch mostly by Brian De Wolf <bldewolf@csupomona.edu>.
4823 * sysdeps/gnu/netinet/tcp.h: Define TCP_MD5SIG, TCP_MD5SIG_MAXKEYLEN,
4824 struct tcp_md5sig. Extend struct tcp_info according to recent kernels.
4826 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add eventfd,
4827 evetnfd_read, eventfd_write.
4828 * sysdeps/unix/sysv/linux/eventfd.c: New file.
4829 * sysdeps/unix/sysv/linux/eventfd_read.c: New file.
4830 * sysdeps/unix/sysv/linux/eventfd_write.c: New file.
4831 * sysdeps/unix/sysv/linux/sys/eventfd.h: New file.
4832 * sysdeps/unix/sysv/linux/Versions: Export eventfd, eventfd_read,
4833 eventfd_write for GLIBC_2.7.
4835 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add signalfd.
4836 * sysdeps/unix/sysv/linux/signalfd.c: New file.
4837 * sysdeps/unix/sysv/linux/sys/signalfd.h: New file.
4838 * sysdeps/unix/sysv/linux/Versions: Export signalfd for GLIBC_2.7.
4840 2007-10-04 Jakub Jelinek <jakub@redhat.com>
4842 * stdlib/msort.c: Include stdint.h.
4843 (struct msort_param): New type.
4844 (msort_with_tmp): Use struct msort_param pointer for unchanging
4845 parameters. Add optimized handling for several common sizes
4846 and indirect sorting mode.
4847 (qsort): Adjust msort_with_tmp callers. For big S use indirect
4849 Suggested by Belazougui Djamel .
4851 * stdlib/Makefile (tests): Add tst-qsort2.
4852 * stdlib/tst-qsort2.c: New test.
4854 2007-10-04 Ulrich Drepper <drepper@redhat.com>
4856 * login/login_tty.c (login_tty): The Linux kernel can return EBUSY
4857 for dup2 in case another thread races with the current one. Retry
4860 * misc/error.h: Remove support for use outside of libc. We have to
4861 include <features.h> now. Include <bits/error.h> if possible.
4862 * misc/bits/error.h: New file.
4864 2007-10-03 Jakub Jelinek <jakub@redhat.com>
4866 * string/bits/string3.h (memcpy, memmove, mempcpy, memset, bcopy,
4867 bzero, strcpy, stpcpy, strncpy, strcat, strncat): Use
4868 __extern_always_inline functions unconditionally, drop macros.
4870 * misc/sys/cdefs.h (__REDIRECT_LDBL, __REDIRECT_NTH_LDBL): New macros.
4871 * wcsmbs/bits/wchar2.h (__swprintf_alias, __vswprintf_alias): Use
4872 __REDIRECT_NTH_LDBL macro rather than __REDIRECT_NTH.
4874 * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+
4875 add __artificial__ attribute.
4877 2007-10-02 Ulrich Drepper <drepper@redhat.com>
4879 * string/strcoll_l.c (STRCOLL): Correct handling of switching from
4880 backward to forward direction.
4882 * string/strcoll_l.c (STRCOLL): Correct test for alloca use.
4885 * locale/programs/ld-collate.c (collate_finish): Compare against last
4886 used section which is known to have rules defined.
4887 (collate_read): After order_start, correctly record order of sections
4888 and queue sections up.
4890 2007-10-01 Ulrich Drepper <drepper@redhat.com>
4893 * malloc/malloc.c (mremap_chunk): Avoid resizing of new block has
4894 the same number of pages.
4895 Patch by Tomash Brechko <tomash.brechko@gmail.com>.
4897 * locale/programs/ld-collate.c (collate_read): After initial copy
4898 statement, continue in state 0.
4900 * include/stdio_ext.h (__fsetlocking): Define as macro.
4902 2007-09-30 Ulrich Drepper <drepper@redhat.com>
4904 * locale/programs/ld-collate.c (collate_finish): Compare all bytes
4907 * po/pt_BR.po: Fix typo.
4909 2007-09-29 Ulrich Drepper <drepper@redhat.com>
4911 * iconvdata/Makefile (modules): Add ISO8859-9E.
4912 (distribute): Add iso8859-9e.c.
4913 (gen-8bit-gap-modules): Add iso8859-9e.
4914 * iconvdata/iso8859-9e.c: New file.
4915 * iconvdata/gconv-modules: Add entries for ISO-8859-9E.
4916 * iconvdata/TESTS: Likewise.
4917 * iconvdata/tst-tables.sh: Likewise.
4919 * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
4921 * locale/iso-639.def: Add several new entries.
4923 2007-09-24 Jakub Jelinek <jakub@redhat.com>
4925 * sysdeps/generic/ldsodefs.h (struct dl_scope_free_list): Store
4926 void * pointers instead of struct link_map **.
4927 (_dl_scope_free): Change argument type to void *.
4928 * include/link.h (struct link_map): Change type of l_reldeps
4929 to struct link_map_reldeps, move l_reldepsact into that
4931 * elf/dl-deps.c: Include atomic.h.
4932 (_dl_map_object_deps): Only change l->l_initfini when it is
4933 fully populated, use _dl_scope_free for freeing it. Optimize
4934 removal of libs from reldeps by using l_reserved flag, when
4935 some removal is needed, allocate a new list instead of
4936 reallocating and free the old with _dl_scope_free. Adjust
4937 for l_reldeps and l_reldepsact changes.
4938 * elf/dl-lookup.c (add_dependency): Likewise. Reorganize to allow
4939 searching in l_initfini and l_reldeps without holding dl_load_lock.
4940 * elf/dl-fini.c (_dl_sort_fini): Adjust for l_reldeps and
4941 l_reldepsact changes.
4942 * elf/dl-close.c (_dl_close_worker): Likewise.
4943 * elf/dl-open.c (_dl_scope_free): Change argument type to void *.
4945 2007-09-28 Ulrich Drepper <drepper@redhat.com>
4947 * iconvdata/Makefile (modules): Add KOI8-RU.
4948 (distribute): Add koi8-ru.c.
4949 (gen-8bit-gap-modules): Add koi8-ru.
4950 * iconvdata/koi8-ru.c: New file.
4951 * iconvdata/gconv-modules: Add entries for KOI8-RU.
4952 * iconvdata/TESTS: Likewise.
4953 * iconvdata/tst-tables.sh: Likewise.
4955 * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
4957 2007-09-26 Jakub Jelinek <jakub@redhat.com>
4959 * misc/sys/cdefs.h (__warndecl, __errordecl): For GCC 4.3+ define
4960 with __warning__/__error__ attributes.
4961 (__warnattr): Define.
4962 * stdlib/bits/stdlib.h (__realpath_chk_warn, __ptsname_r_chk_warn,
4963 __mbstowcs_chk_warn, __wcstombs_chk_warn): New aliases with
4965 (realpath, ptsname_r, mbstowcs, wcstombs): Call __*_chk_warn instead
4966 of __*_chk if compile time detectable overflow is found.
4967 * libio/bits/stdio2.h (__fgets_chk_warn, __fread_chk_warn,
4968 __fgets_unlocked_chk_warn, __fread_unlocked_chk_warn): New aliases
4970 (fgets, fread, fgets_unlocked, fread_unlocked): Call __*_chk_warn
4971 instead of __*_chk if compile time detectable overflow is found.
4972 (__gets_alias): Rename to...
4973 (__gets_warn): ... this. Add __warnattr.
4974 (gets): Call __gets_warn instead of __gets_alias.
4975 * socket/bits/socket2.h (__recv_chk_warn, __recvfrom_chk_warn): New
4976 aliases with __warnattr.
4977 (recv, recvfrom): Call __*_chk_warn instead of __*_chk if compile
4978 time detectable overflow is found.
4979 * posix/bits/unistd.h (__read_chk_warn, __pread_chk_warn,
4980 __pread64_chk_warn, __readlink_chk_warn, __readlinkat_chk_warn,
4981 __getcwd_chk_warn, __confstr_chk_warn, __getgroups_chk_warn,
4982 __ttyname_r_chk_warn, __getlogin_r_chk_warn, __gethostname_chk_warn,
4983 __getdomainname_chk_warn): New aliases with __warnattr.
4984 (read, pread, pread64, readlink, readlinkat, getcwd, confstr,
4985 getgroups, ttyname_r, getlogin_r, gethostname, getdomainname): Call
4986 __*_chk_warn instead of __*_chk if compile time detectable overflow
4988 (__getgroups_chk): Rename argument to __listlen from listlen.
4989 (__getwd_alias): Rename to...
4990 (__getwd_warn): ... this. Add __warnattr.
4991 (getwd): Call __getwd_warn instead of __getwd_alias.
4992 * wcsmbs/bits/wchar2.h (__wmemcpy_chk_warn, __wmemmove_chk_warn,
4993 __wmempcpy_chk_warn, __wmemset_chk_warn, __wcsncpy_chk_warn,
4994 __wcpncpy_chk_warn, __fgetws_chk_warn, __fgetws_unlocked_chk_warn,
4995 __mbsrtowcs_chk_warn, __wcsrtombs_chk_warn, __mbsnrtowcs_chk_warn,
4996 __wcsnrtombs_chk_warn): New aliases with __warnattr.
4997 (wmemcpy, wmemmove, wmempcpy, wmemset, mbsrtowcs, wcsrtombs,
4998 mbsnrtowcs, wcsnrtombs): Call __*_chk_warn instead of __*_chk if
4999 compile time detectable overflow is found.
5000 (wcsncpy, wcpncpy): Likewise. For constant __n fix check whether
5001 to use __*_chk or not.
5002 (fgetws, fgetws_unlocked): Divide __bos by sizeof (wchar_t), both
5003 in comparisons which function should be called and in __*_chk*
5004 arguments. Call __*_chk_warn instead of __*_chk if compile time
5005 detectable overflow is found.
5006 (swprintf, vswprintf): Divide __bos by sizeof (wchar_t) in
5008 * debug/tst-chk1.c (do_test): Add a few more tests.
5010 2007-09-24 Ulrich Drepper <drepper@redhat.com>
5013 * intl/gettextP.h (struct loaded_domain): Add conversions_lock member.
5014 * intl/loadmsgcat.c (_nl_load_domain): Initialize conversions_lock.
5015 (_nl_unload_domain): Finalize conversions_lock.
5016 * intl/dcigettext.c (_nl_find_msg): Take conversions_lock before
5017 handling table of known conversions.
5019 2007-09-24 Jakub Jelinek <jakub@redhat.com>
5021 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use
5022 close_not_cancel_no_status instead of close.
5024 2007-09-13 Aurelien Jarno <aurelien@aurel32.net>
5027 * posix/regcomp.c (lookup_collation_sequence_value): Check that
5028 nrules != 0 for multibyte chars.
5030 2007-09-23 Ulrich Drepper <drepper@redhat.com>
5032 * resolv/ns_print.c (ns_sprintrrf): Handle ns_t_a6 and ns_t_opt.
5033 Provide better error message in case the type is unknown.
5036 * wcsmbs/wcsnlen.c: Don't reference before checking the length.
5037 * string/stratcliff.c: Make usable to test wide char functions.
5038 * wcsmbs/wcsatcliff.c: New file.
5039 * wcsmbs/Makefiel (tests): Add wcsatcliff.
5042 * iconvdata/Makefile (modules): Add MAC-CENTRALEUROPE.
5043 (distribute): Add mac-centraleurope.c.
5044 (gen-8bit-gap-modules): Add mac-centraleurope.
5045 * iconvdata/mac-centraleurope.c: New file.
5046 * iconvdata/gconv-modules: Add entries for MAC-CENTRALEUROPE.
5047 * iconvdata/TESTS: Likewise.
5048 * iconvdata/tst-tables.sh: Likewise.
5051 * iconv/iconv_open.c (iconv_open): For large codeset names use malloc.
5053 2007-09-21 Ulrich Drepper <drepper@redhat.com>
5055 * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size_half): Renamed
5056 from __x86_64_core_cache_size_half.
5057 (init_cacheinfo): Compute shared cache size for AMD processors with
5058 shared L3 correctly.
5059 * sysdeps/x86_64/memcpy.S: Adjust for __x86_64_data_cache_size_half
5061 Patch in large parts by Evandro Menezes.
5063 2007-09-19 Ulrich Drepper <drepper@redhat.com>
5065 * elf/dl-lookup.c (add_dependency): Handle failing memory
5066 allocation for dependency list. Remove unnecessary check.
5068 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid unnecessary
5069 open/close when determining source addresses.
5071 * crypt/Makefile (libcrypt-routines): Add sha256-crypt, sha256,
5072 sha512-crypt, and sha512.
5073 (tests): Add sha256test, sha256c-test, sha512test, and sha512c-test.
5074 (distribute): Add sha256.h and sha512.h.
5075 * crypt/crypt-entry.c (crypt): Recognize the new $5$ and $6$ prefixes
5076 and call the appropriate code.
5077 * crypt/sha256-crypt.c: New file.
5078 * crypt/sha256.c: New file.
5079 * crypt/sha256.h: New file.
5080 * crypt/sha256c-test.c: New file.
5081 * crypt/sha256test.c: New file.
5082 * crypt/sha512-crypt.c: New file.
5083 * crypt/sha512.c: New file.
5084 * crypt/sha512.h: New file.
5085 * crypt/sha512c-test.c: New file.
5086 * crypt/sha512test.c: New file.
5088 2007-09-19 Jakub Jelinek <jakub@redhat.com>
5090 * misc/bits/syslog.h (syslog): Remove extraneous argument from
5091 the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
5094 2007-09-18 Jakub Jelinek <jakub@redhat.com>
5096 * locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
5097 %as in fscanf format strings.
5099 * sysdeps/sparc/sparc32/elf/start.S: Remove cfi_* markup.
5100 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
5101 * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
5103 * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
5106 * sysdeps/generic/ldsodefs.h (DL_LOOKUP_GSCOPE_LOCK): New definition.
5107 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Or in
5108 DL_LOOKUP_GSCOPE_LOCK into flags after THREAD_GSCOPE_SET_FLAG ().
5109 * elf/dl-sym.c (do_sym): Likewise.
5110 * include/link.h (struct link_map): Add l_serial field.
5111 * elf/dl-object.c (_dl_new_object): Initialize l_serial.
5112 * elf/dl-lookup.c (add_dependency): Add flags argument.
5113 Remember map->l_serial, if DL_LOOKUP_GSCOPE_LOCK is among
5114 flags, use THREAD_GSCOPE_RESET_FLAG before and
5115 THREAD_GSCOPE_SET_FLAG after
5116 __rtld_lock_lock_recursive (GL(dl_load_lock)) to avoid deadlock.
5117 Don't dereference map until it has been found on some list.
5118 If map->l_serial changed, return -1.
5120 2007-09-17 Jakub Jelinek <jakub@redhat.com>
5122 * include/stdio.h (__isoc99_fscanf, __isoc99_scanf,
5123 __isoc99_sscanf, __isoc99_vscanf): New prototypes.
5124 (__isoc99_vsscanf, __isoc99_vfscanf): New prototypes, add
5126 * include/wchar.h (__isoc99_fwscanf, __isoc99_wscanf,
5127 __isoc99_swscanf, __isoc99_vwscanf): New prototypes.
5128 (__isoc99_vswscanf, __isoc99_vfwscanf): New prototypes,
5129 add libc_hidden_proto.
5130 * libio/stdio.h (fscanf, scanf, sscanf, vfscanf, vscanf,
5131 vsscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
5132 conformance requested.
5133 * wcsmbs/wchar.h (fwscanf, wscanf, swscanf, vfwscanf, vwscanf,
5134 vswscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
5135 conformance requested.
5136 * libio/bits/stdio-ldbl.h (fscanf, scanf, sscanf, vfscanf, vscanf,
5137 vsscanf): Redirect to __nldbl___isoc99_* if strict ISO C99 or POSIX
5138 conformance requested.
5139 * wcsmbs/bits/wchar-ldbl.h (fwscanf, wscanf, swscanf, vfwscanf,
5140 vwscanf, vswscanf): Redirect to __nldbl___isoc99_* if strict
5141 ISO C99 or POSIX conformance requested.
5142 * stdio-common/Versions (libc): Export __isoc99_scanf@@GLIBC_2.7,
5143 __isoc99_vscanf@@GLIBC_2.7, __isoc99_fscanf@@GLIBC_2.7,
5144 __isoc99_vfscanf@@GLIBC_2.7, __isoc99_sscanf@@GLIBC_2.7
5145 and __isoc99_vsscanf@@GLIBC_2.7.
5146 * stdio-common/Makefile (routines): Add isoc99_scanf, isoc99_vscanf,
5147 isoc99_fscanf, isoc99_vfscanf, isoc99_sscanf and isoc99_vsscanf.
5148 (tests): Add scanf14.
5149 (CFLAGS-vfprintf.c, CFLAGS-fprintf.c, CFLAGS-printf.c,
5150 CFLAGS-vfwprintf.c, CFLAGS-vfscanf.c, CFLAGS-vfwscanf.c,
5151 CFLAGS-fscanf.c, CFLAGS-scanf.c, CFLAGS-isoc99_vfscanf.c,
5152 CFLAGS-isoc99_vscanf.c, CFLAGS-isoc99_fscanf.c,
5153 CFLAGS-isoc99_scanf.c): Add $(exceptions).
5154 (CFLAGS-scanf15.c): Add various -I paths to prevent the compiler
5155 from using internal headers.
5156 * wcsmbs/Versions (libc): Export __isoc99_wscanf@@GLIBC_2.7,
5157 __isoc99_vwscanf@@GLIBC_2.7, __isoc99_fwscanf@@GLIBC_2.7,
5158 __isoc99_vfwscanf@@GLIBC_2.7, __isoc99_swscanf@@GLIBC_2.7
5159 and __isoc99_vswscanf@@GLIBC_2.7.
5160 * wcsmbs/Makefile (routines): Add isoc99_wscanf, isoc99_vwscanf,
5161 isoc99_fwscanf, isoc99_vfwscanf, isoc99_swscanf and isoc99_vswscanf.
5162 (CFLAGS-isoc99_wscanf.c, CFLAGS-isoc99_fwscanf.c,
5163 CFLAGS-isoc99_vwscanf.c, CFLAGS-isoc99_vfwscanf.c): Add $(exceptions).
5164 (CPPFLAGS): Add -D_IO_MTSAFE_IO if needed.
5165 * stdio-common/isoc99_scanf.c: New file.
5166 * stdio-common/isoc99_vsscanf.c: New file.
5167 * stdio-common/isoc99_vscanf.c: New file.
5168 * stdio-common/isoc99_vfscanf.c: New file.
5169 * stdio-common/isoc99_fscanf.c: New file.
5170 * stdio-common/isoc99_sscanf.c: New file.
5171 * wcsmbs/isoc99_fwscanf.c: New file.
5172 * wcsmbs/isoc99_vswscanf.c: New file.
5173 * wcsmbs/isoc99_swscanf.c: New file.
5174 * wcsmbs/isoc99_wscanf.c: New file.
5175 * wcsmbs/isoc99_vwscanf.c: New file.
5176 * wcsmbs/isoc99_vfwscanf.c: New file.
5177 * libio/libio.h (_IO_FLAGS2_SCANF_STD): Define.
5178 * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Also
5179 clear _IO_FLAGS2_SCANF_STD bit from _flags2.
5180 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Don't
5181 handle %as, %aS and %a[ if _IO_FLAGS2_SCANF_STD is set in _flags2.
5182 * stdio-common/scanf14.c: New test.
5183 * stdio-common/scanf15.c: New test.
5184 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add
5185 isoc99_scanf, isoc99_fscanf, isoc99_sscanf,
5186 isoc99_vscanf, isoc99_vfscanf, isoc99_vsscanf,
5187 isoc99_wscanf, isoc99_fwscanf, isoc99_swscanf,
5188 isoc99_vwscanf, isoc99_vfwscanf and isoc99_vswscanf.
5189 * sysdeps/ieee754/ldbl-opt/Versions (libc): Export
5190 __nldbl___isoc99_scanf@@GLIBC_2.7,
5191 __nldbl___isoc99_fscanf@@GLIBC_2.7,
5192 __nldbl___isoc99_sscanf@@GLIBC_2.7,
5193 __nldbl___isoc99_vscanf@@GLIBC_2.7,
5194 __nldbl___isoc99_vfscanf@@GLIBC_2.7,
5195 __nldbl___isoc99_vsscanf@@GLIBC_2.7,
5196 __nldbl___isoc99_wscanf@@GLIBC_2.7,
5197 __nldbl___isoc99_fwscanf@@GLIBC_2.7,
5198 __nldbl___isoc99_swscanf@@GLIBC_2.7,
5199 __nldbl___isoc99_vwscanf@@GLIBC_2.7,
5200 __nldbl___isoc99_vfwscanf@@GLIBC_2.7
5201 and __nldbl___isoc99_vswscanf@@GLIBC_2.7.
5202 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__isoc99_scanf,
5203 __isoc99_fscanf, __isoc99_sscanf, __isoc99_vscanf,
5204 __isoc99_vfscanf, __isoc99_vsscanf, __isoc99_wscanf,
5205 __isoc99_fwscanf, __isoc99_swscanf, __isoc99_vwscanf,
5206 __isoc99_vfwscanf, __isoc99_vswscanf): Add NLDBL_DECL.
5207 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
5208 (__nldbl___isoc99_scanf, __nldbl___isoc99_fscanf,
5209 __nldbl___isoc99_sscanf, __nldbl___isoc99_vscanf,
5210 __nldbl___isoc99_vfscanf, __nldbl___isoc99_vsscanf,
5211 __nldbl___isoc99_wscanf, __nldbl___isoc99_fwscanf,
5212 __nldbl___isoc99_swscanf, __nldbl___isoc99_vwscanf,
5213 __nldbl___isoc99_vfwscanf, __nldbl___isoc99_vswscanf): New
5215 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfscanf.c: New file.
5216 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c: New file.
5217 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vwscanf.c: New file.
5218 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_wscanf.c: New file.
5219 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_scanf.c: New file.
5220 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_sscanf.c: New file.
5221 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vsscanf.c: New file.
5222 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fwscanf.c: New file.
5223 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfwscanf.c: New file.
5224 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vswscanf.c: New file.
5225 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vscanf.c: New file.
5226 * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fscanf.c: New file.
5228 * stdio-common/Makefile (tests): Add scanf13.
5230 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Handle
5231 m modifier followed by l.
5232 (STRING_ARG): Add width argument.
5233 (_IO_vfscanf_internal) <case L_('c')>: Handle %mc.
5234 <case L_('C')>: Handle %mlc and %mC.
5235 <case L_('s'), case L_('S'), case L_('[')>: Adjust STRING_ARG
5237 * stdio-common/scanf13.c: New test.
5239 * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Clear
5240 the _IO_FLAGS2_FORTIFY bit from _flags2 rather than _flags.
5242 2007-09-18 Ulrich Drepper <drepper@redhat.com>
5244 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Correct return value
5245 type and __THROW marker of splice, vmsplice, and tee.
5246 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
5247 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
5248 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
5249 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
5250 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
5251 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
5252 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
5253 * sysdeps/unix/sysv/linux/syscalls.list: Mark splice, vmsplice, and tee
5254 as cancellation points.
5256 2003-11-01 Daniel Jacobowitz <dan@debian.org>
5258 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't
5259 parse more than three parts of the version number.
5261 2007-09-15 Ulrich Drepper <drepper@redhat.com>
5263 * stdio-common/vfscanf.c (_IO_vfwscanf): Add support for 'm'
5264 modifier. Patch by Jakub Jelinek.
5266 2007-08-26 Jakub Jelinek <jakub@redhat.com>
5268 * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_routines): Add
5269 call_fallocate in misc subdir.
5270 * sysdeps/unix/sysv/linux/i386/call_fallocate.S: New file.
5271 * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate64): Remove.
5272 * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Use __call_fallocate
5273 instead of __fallocate64.
5274 * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
5276 2007-09-15 Jakub Jelinek <jakub@redhat.com>
5278 * rt/Versions (librt): Export __mq_open_2@@GLIBC_2.7.
5279 * rt/Makefile (headers): Add bits/mqueue2.h.
5280 * rt/mqueue.h: Include bits/mqueue2.h if -D_FORTIFY_SOURCE=2,
5281 optimizing with GCC and __va_arg_pack_len is defined.
5282 * rt/bits/mqueue2.h: New file.
5283 * rt/mq_open.c (__mq_open): Renamed from mq_open.
5284 (mq_open): New strong_alias.
5285 (__mq_open_2): New function.
5286 * sysdeps/unix/sysv/linux/mq_open.c (__mq_open): Renamed from mq_open.
5287 (mq_open): New strong_alias.
5288 (__mq_open_2): New function.
5289 * debug/Versions (libc): Export __fortify_fail@@GLIBC_PRIVATE.
5290 * Versions.def (librt): Add GLIBC_2.7 version.
5291 * debug/fortify_fail.c (__fortify_fail): Add libc_hidden_def.
5292 * include/stdio.h (__fortify_fail): Add libc_hidden_proto.
5294 * misc/sys/cdefs.h (__errordecl, __va_arg_pack_len): Define.
5295 * io/fcntl.h: Include bits/fcntl2.h when __va_arg_pack_len
5296 is defined rather than when not C++.
5297 * io/bits/fcntl2.h (__open_alias, __open64_alias, __openat_alias,
5298 __openat64_alias): New redirects.
5299 (__open_too_many_args, __open_missing_mode, __open64_too_many_args,
5300 __open64_missing_mode, __openat_too_many_args, __openat_missing_mode,
5301 __openat64_too_many_args, __openat64_missing_mode): New __errordecls.
5302 (open, open64, openat, openat64): Rewrite as __extern_always_inline
5303 functions instead of function-like macros.
5305 2007-09-14 H.J. Lu <hongjiu.lu@intel.com>
5307 * sysdeps/i386/i586/memcpy.S (__memcpy_chk): New definition.
5308 * sysdeps/i386/i586/mempcpy.S (__memcpy_chk): New definition.
5309 * sysdeps/i386/i586/memset.S (__memset_chk): New definition.
5311 2007-09-15 Mike Frysinger <vapier@gentoo.org>
5313 * inet/inet_net.c: Reset digit to 0 for inputs starting with "0x".
5314 * inet/tst-network.c (tests): Add edge case tests for "0", "0x", "0x0".
5316 2007-09-14 Mike Frysinger <vapier@gentoo.org>
5318 * inet/tst-network.c: Increment ERRORS for failing tests.
5320 2007-09-07 Jakub Jelinek <jakub@redhat.com>
5322 * misc/sys/cdefs.h (__va_arg_pack): Define for GCC 4.3+.
5323 * misc/bits/syslog.h (syslog): When __va_arg_pack is defined,
5324 implement as __extern_always_inline function.
5325 (vsyslog): Define as __extern_always_inline function unconditionally.
5326 * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf):
5327 When __va_arg_pack is defined, implement as __extern_always_inline
5329 (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5330 __extern_always_inline functions unconditionally.
5331 * libio/bits/stdio.h (vprintf): Ifdef out the inline when
5332 bits/stdio2.h will be included.
5333 * wcsmbs/bits/wchar2.h (__swprintf_alias): New redirect.
5334 (swprintf, wprintf, fwprintf): When __va_arg_pack is defined,
5335 implement as __extern_always_inline functions.
5336 (vswprintf, vwprintf, vfwprintf): Define as
5337 __extern_always_inline functions unconditionally.
5338 * debug/tst-chk1.c (do_test): Enable remaining tests for C++.
5340 2007-09-03 Jakub Jelinek <jakub@redhat.com>
5342 * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Only
5343 define in C++ for GCC 4.3+, in C++ always use __gnu_inline__
5345 * include/features.h (__USE_EXTERN_INLINES): Define only when
5346 __extern_inline is defined.
5347 * stdlib/stdlib.h: Include bits/stdlib.h when __extern_always_inline
5348 is defined instead of when not __cplusplus.
5349 * misc/sys/syslog.h: Include bits/syslog.h when __extern_always_inline
5350 is defined instead of when not __cplusplus.
5351 * socket/sys/socket.h: Include bits/socket2.h when
5352 __extern_always_inline is defined instead of when not __cplusplus.
5353 * libio/stdio.h: Include bits/stdio2.h when __extern_always_inline
5354 is defined instead of when not __cplusplus.
5355 * posix/unistd.h: Include bits/unistd.h when __extern_always_inline
5356 is defined instead of when not __cplusplus.
5357 * string/string.h: Include bits/string3.h when __extern_always_inline
5358 is defined instead of when not __cplusplus.
5359 * wcsmbs/wchar.h: Include bits/wchar2.h when __extern_always_inline
5360 is defined instead of when not __cplusplus.
5361 (btowc, wctob): Don't guard the inlines with ifndef __cplusplus.
5362 * io/fcntl.h: Don't include bits/fcntl2.h if __extern_always_inline
5364 * misc/bits/syslog-ldbl.h: Guard *_chk stuff with
5365 defined __extern_always_inline instead of !defined __cplusplus.
5366 * libio/bits/stdio-ldbl.h: Likewise.
5367 * wcsmbs/bits/wchar-ldbl.h: Likewise.
5368 * misc/bits/syslog.h (syslog): Don't define for C++.
5369 (vsyslog): Use __extern_always_inline function for C++ instead of
5371 * libio/bits/stdio.h (__STDIO_INLINE): Define to __extern_inline
5372 whenever that macro is defined.
5373 (vprintf): Don't provide the inline for C++.
5374 (fread_unlocked, fwrite_unlocked): Don't define the macros for C++.
5375 * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf): Don't
5376 define the macros for C++.
5377 (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5378 __extern_always_inline functions for C++.
5379 * io/sys/stat.h (stat, lstat, fstat, fstatat, mknod, mknodat,
5380 stat64, lstat64, fstat64, fstatat64): Don't define if not
5381 __USE_EXTERN_INLINES.
5382 * wcsmbs/bits/wchar2.h: Fix #error message.
5383 (swprintf, wprintf, fwprintf): Don't define the macros for C++.
5384 (vswprintf, vwprintf, vfwprintf): Define using
5385 __extern_always_inline functions for C++.
5386 * string/bits/string3.h: Don't #undef macros if __cplusplus.
5387 (memcpy, memmove, mempcpy, memset, bcopy, bzero, strcpy, stpcpy,
5388 strncpy, strcat, strncat): Define as __extern_always_inline
5389 functions instead of macros for C++.
5390 * math/bits/cmathcalls.h: Guard __extern_inline routines with
5391 defined __extern_inline.
5392 * sysdeps/alpha/fpu/bits/mathinline.h (__MATH_INLINE): Define
5393 to __extern_inline whenever that macro is defined.
5394 * sysdeps/ia64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5395 * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5396 * sysdeps/i386/i486/bits/string.h (__STRING_INLINE): Likewise.
5397 * sysdeps/s390/bits/string.h (__STRING_INLINE): Likewise.
5398 * sysdeps/s390/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5399 * sysdeps/powerpc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5400 * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5401 * sysdeps/sparc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5402 * sysdeps/unix/sysv/linux/sys/sysmacros.h (gnu_dev_major,
5403 gnu_dev_minor, gnu_dev_makedev): Remove __extern_inline from
5404 prototypes. Only provide __extern_inline routines if
5405 __USE_EXTERN_INLINES.
5406 * debug/Makefile: Add rules to build and run tst-{,lfs}chk{4,5,6}
5408 * debug/tst-chk1.c (do_prepare, do_test): Allow compilation as C++.
5409 For now avoid some *printf tests in C++. Skip all testing
5410 if __USE_FORTIFY_LEVEL is defined, but __extern_always_inline macro
5412 * debug/tst-chk4.cc: New file.
5413 * debug/tst-chk5.cc: New file.
5414 * debug/tst-chk6.cc: New file.
5415 * debug/tst-lfschk4.cc: New file.
5416 * debug/tst-lfschk5.cc: New file.
5417 * debug/tst-lfschk6.cc: New file.
5418 * include/wchar.h (__vfwprintf_chk, __vswprintf_chk): Avoid
5420 * include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
5421 __vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
5422 __vfprintf_chk, __fgets_unlocked_chk, __fgets_chk): Likewise.
5424 2007-09-13 Ulrich Drepper <drepper@redhat.com>
5426 * po/cs.po: Update from translation team.
5428 2007-09-11 Roland McGrath <roland@redhat.com>
5430 * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
5433 2007-09-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
5435 * sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
5437 2007-09-05 Roland McGrath <roland@redhat.com>
5439 * manual/signal.texi (Signaling Another Process): Typo fix.
5440 From Karl Berry <karl@freefriends.org>.
5442 2007-08-29 Ulrich Drepper <drepper@redhat.com>
5444 * sysdeps/unix/sysv/linux/check_pf.c (IFA_F_OPTIMISTIC): Define to
5445 zero if not defined.
5446 (make_request): Recognize optimistic addresses and treat them like
5447 deprecated addresses.
5448 Reported by Neil Horman <nhorman@redhat.com>.
5450 2007-08-28 Ulrich Drepper <drepper@redhat.com>
5452 * nscd/connections.c (send_ro_fd): Also transfer file size.
5453 * nscd/nscd_helper.c (get_mapping): If nscd also transfers the
5454 file size don't call fstat.
5456 * nscd/nscd_helper.c (get_mapping): Avoid the pread call, just go
5457 ahead and map the file. This should always be correct and we can
5458 catch problems later.
5460 2007-08-28 Jakub Jelinek <jakub@redhat.com>
5462 * libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
5464 (__fread_alias, __fread_unlocked_alias): New aliases.
5465 (fread): New extern inline.
5466 (fread_unlocked): Likewise. Undef macro before definition of
5467 the inline function.
5468 * debug/Makefile (routines): Add fread_chk and fread_u_chk.
5469 (CFLAGS-fread_chk.c, CFLAGS-fread_u_chk.c): Add.
5470 * debug/Versions (libc): Export __fread_chk@@GLIBC_2.7
5471 and __fread_unlocked_chk@@GLIBC_2.7.
5472 * debug/fread_chk.c: New file.
5473 * debug/fread_u_chk.c: New file.
5474 * debug/tst-chk1.c (do_test): Add fread and fread_unlocked tests.
5476 2007-08-27 Jakub Jelinek <jakub@redhat.com>
5478 * sysdeps/unix/sysv/linux/syscalls.list
5479 (personality): Change caller to EXTRA.
5481 2007-08-25 Ulrich Drepper <drepper@redhat.com>
5483 * iconvdata/iso-2022-kr.c (BODY): Fake initialization of array buf
5485 * iconvdata/iso-2022-cn.c (BODY): Likewise.
5487 * locale/programs/ld-collate.c (collate_output): Avoid warning if
5490 * Makerules: Use -p option with mkdir.
5492 * sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.
5493 * nis/nis_xdr.c (_xdr_nis_server): Likewise.
5494 (_xdr_directory_obj): Likewise.
5495 (xdr_entry_obj): Likewise.
5496 (xdr_group_obj): Likewise.
5497 (xdr_link_obj): Likewise.
5498 (xdr_table_obj): Likewise.
5499 (_xdr_nis_result): Likewise.
5500 (_xdr_ns_request): Likewise.
5501 (_xdr_ib_request): Likewise.
5502 (_xdr_nis_taglist): Likewise.
5503 (xdr_cback_data): Likewise.
5504 * nis/yp_xdr.c (xdr_ypmaplist): Likewise.
5505 (xdr_ypresp_maplist): Likewise.
5507 * stdio-common/Makefile: Avoid format string warning for tst-sprint.
5509 * posix/regex_internal.h: Prevent some declarations and definitions
5510 to be seen when used in tests.
5512 * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT.
5513 * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise.
5515 * debug/Makefile: Disable format checking when compiling tst-chk?.c.
5517 * config.make.in (datarootdir): Add to shut up configure.
5519 * sysdeps/x86_64/cacheinfo.c (handle_amd): Fix computation of
5520 associativity for fully-associative caches.
5522 * sysdeps/x86_64/cacheinfo.c (handle_amd): Handle L3 cache
5523 requests. Fill on more associativity values for L2.
5524 Patch mostly by Evandro Menezes.
5526 2007-08-24 Ulrich Drepper <drepper@redhat.com>
5528 * sysdeps/unix/sysv/linux/x86_64/init-first.c
5529 (_libc_vdso_platform_setup): Avoid using exported variable by using
5532 * resolv/arpa/nameser.h (NS_OPT_DNSSEC_OK): Define.
5534 * sysdeps/unix/sysv/linux/i386/syscalls.list: No reason to mark
5535 fallocate64 as EXTRA. It is not referenced if the symbol isn't
5538 2007-08-23 Ulrich Drepper <drepper@redhat.com>
5540 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Correctly
5541 align stack for call if pltexit is to be used.
5544 * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Correctly
5545 align for function call in case pltexit has to be called later.
5547 * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Avoid
5548 implicit atomic operation when storing function pointer.
5549 (_dl_runtime_profile): Likewise.
5551 2007-08-17 Jakub Jelinek <jakub@redhat.com>
5553 * nis/nis_table.c (nis_list): Don't fail if __follow_path returned
5556 2007-08-21 Ulrich Drepper <drepper@redhat.com>
5559 * string/strtok.c: Fix typo in comment.
5562 * debug/segfault.c: Fix typos in comments.
5565 * stdio-common/tempnam.c: Fix comment, it is not checked that
5566 TMPDIR points to a writable directory.
5569 * resolv/res_send.c (__libc_res_nsend): Initialize all of the
5570 memory allocated for the name server address.
5573 * nscd/connections.c (handle_request): Using sendfile always
5574 requires that mmap is used for the database.
5575 Patch by Petr Baudis <pasky@suse.cz>.
5578 * nscd/hstcache.c (cache_addhst): When reloading an entry which
5579 suddenly has two or more addresses, ignore it and remove the old
5583 * resolv/res_hconf.c: Prepare for compiling outside libc.
5584 * nscd/res_hconf.c: New file.
5585 * nscd/Makefile (nscd-modules): Add res_hconf. Add rules to build
5587 * nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define.
5588 * nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
5590 * nscd/hstcache.c (cache_addhst): Minimal optimization.
5593 * debug/pcprofiledump.c: Turn on internationalization by calling
5594 setlocale. Patch mostly by Benno Schulenberg.
5597 * iconv/gconv.c (__gconv): If flush was successful, clear rest of
5599 * iconvdata/Makefile: Add rules to build and run bug-iconv5.
5600 * iconvdata/bug-iconv5.c: New file.
5602 2007-08-04 Carlos O'Donell <carlos@systemhalted.org>
5605 * elf/elf.h: Define R_PARISC_PLABEL21L, R_PARISC_PLABEL14R,
5606 R_PARISC_GNU_VTENTRY, R_PARISC_GNU_VTINHERIT, R_PARISC_TLS_GD21L,
5607 R_PARISC_TLS_GD14R, R_PARISC_TLS_GDCALL, R_PARISC_TLS_LDM21L,
5608 R_PARISC_TLS_LDM14R, R_PARISC_TLS_LDMCALL, R_PARISC_TLS_LDO21L,
5609 R_PARISC_TLS_LDO14R, R_PARISC_TLS_DTPMOD32, R_PARISC_TLS_DTPMOD64,
5610 R_PARISC_TLS_DTPOFF32, R_PARISC_TLS_DTPOFF64, R_PARISC_TLS_LE21L,
5611 R_PARISC_TLS_LE14R, R_PARISC_TLS_IE21L, R_PARISC_TLS_IE14R,
5612 R_PARISC_TLS_TPREL32, R_PARISC_TLS_TPREL64.
5614 2007-08-21 Ulrich Drepper <drepper@redhat.com>
5617 * elf/do-lookup.h (do_lookup_x): Minimal improvement in hash
5618 lookup loop. Suggested by John Reiser.
5620 2007-08-21 Jakub Jelinek <jakub@redhat.com>
5622 * sysdeps/unix/sysv/linux/alpha/sysdep.h: Include tls.h.
5624 2007-08-20 Ulrich Drepper <drepper@redhat.com>
5626 * csu/libc-start.c: Don't handle VDSO_SETUP here.
5627 * sysdeps/unix/sysv/linux/init-first.c: Handle it here instead.
5628 * sysdeps/unix/sysv/linux/x86_64/libc-start.c: Renamed to...
5629 * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...this. New file.
5630 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Move VDSO_SETUP code
5632 * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...here. New file.
5634 2007-08-18 Ulrich Drepper <drepper@redhat.com>
5636 * po/nl.po: Update from translation team.
5638 2007-08-16 Andreas Jaeger <aj@suse.de>
5640 * locale/localeinfo.h: Make _nl_category_name_idxs extern.
5641 Reported by Peter Festner <peter.festner@ewetel.net>.
5643 2007-08-17 Jakub Jelinek <jakub@redhat.com>
5645 * login/tst-grantpt.c (test_einval): Add 3rd argument to open.
5647 2007-08-16 Jakub Jelinek <jakub@redhat.com>
5649 * elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u
5650 to check for undefined symbols.
5652 * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone):
5653 If the syscall fails, set errno to the actual returned error number
5655 * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): If
5656 arguments are incorrect, set errno to EINVAL, if the syscall
5657 fails, set errno to the actual returned error number.
5659 * stdlib/bits/stdlib-ldbl.h (__strtold_internal): Remove.
5660 * wcsmbs/bits/wchar-ldbl.h (__wcstold_internal): Remove.
5662 * sysdeps/sparc/sparc32/sparcv9b/memcpy.S: Moved to...
5663 * sysdeps/sparc/sparc32/sparcv9/sparcv9b/memcpy.S: ... here. New
5665 (ASI_PNF, ASI_BLK_P): Don't define.
5666 * sysdeps/sparc/sparc32/sparcv9v/memcpy.S: Moved to...
5667 * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memcpy.S: ... here. New
5669 * sysdeps/sparc/sparc32/sparcv9v/memset.S: Moved to...
5670 * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memset.S: ... here. New
5673 2007-08-15 Jakub Jelinek <jakub@redhat.com>
5675 * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Fix raising
5676 FE_UNDERFLOW on Niagara CPUs.
5678 * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Clear all
5681 2007-08-14 Jakub Jelinek <jakub@redhat.com>
5683 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup): No
5684 need to check GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH on sparcv9.
5685 (sparc_fixup_plt): Add do_flush argument instead of figuring whether
5686 flush should be used or not inside of the function.
5687 (elf_machine_fixup_plt, elf_machine_rela): Adjust caller.
5689 * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone,
5690 __thread_start): Use HIDDEN_JUMPTARGET.
5691 * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone,
5692 __thread_start): Likewise.
5693 * sysdeps/unix/sysv/linux/sparc/sysdep.h (JUMPTARGET): Define.
5695 * sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
5696 Add libc_hidden_proto.
5697 (STRTOF): Add libc_hidden_proto.
5698 (___new_strtold_l, ___new_wcstold_l): New weak aliases.
5699 (strtold_l, wcstold_l): Use them as second argument for
5702 2007-08-14 Ulrich Drepper <drepper@redhat.com>
5704 * elf/dl-misc.c: Undo last change. The kernel won't allow it.
5706 2007-08-13 Kaz Kojima <kkojima@rr.iij4u.or.jp>
5708 * stdlib/strtold_l.c: Include wchar.h if needed. Add libc_hidden_def.
5710 2007-08-14 Ulrich Drepper <drepper@redhat.com>
5712 * po/bg.po: New file. From the translation team.
5714 2007-08-13 Jakub Jelinek <jakub@redhat.com>
5716 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PSELECT,
5717 __ASSUME_PPOLL, __ASSUME_ATFCTS, __ASSUME_SET_ROBUST_LIST,
5718 __ASSUME_UTIMENSAT, __ASSUME_FALLOCATE): Update per-arch conditions
5719 when each feature was introduced.
5721 * sysdeps/unix/sysv/linux/dl-vdso.c: Don't include dl-hash.h.
5722 * sysdeps/unix/sysv/linux/dl-vdso.h: Don't include dl-hash.h if NDEBUG.
5723 (CHECK_HASH): New macro.
5724 (PREPARE_VERSION): Use it.
5726 * sysdeps/unix/sysv/linux/pselect.c (__generic_pselect): Only provide
5727 prototype if not __ASSUME_PSELECT.
5728 * sysdeps/unix/sysv/linux/ppoll.c (__generic_ppoll): Only provide
5729 prototype if not __ASSUME_PPOLL.
5731 * sysdeps/unix/sysv/linux/dl-osinfo.h (ROUND): #undef after use.
5733 * sysdeps/unix/clock_settime.c (freq, __pthread_clock_settime,
5734 hp_timing_settime): Don't define or declare if HANDLED_CPUTIME
5737 2007-08-13 Ulrich Drepper <drepper@redhat.com>
5739 * sysdeps/unix/sysv/linux/x86_64/libc-start.c
5740 (_libc_vdso_platform_setup): If vDSO is not available point
5741 __vdso_gettimeofday to the vsyscall.
5742 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S [SHARED]: Use
5743 __vdso_gettimeofday instead of vsyscall.
5745 2007-08-13 Jakub Jelinek <jakub@redhat.com>
5747 * nscd/servicescache.c: Include kernel-features.h.
5748 * nscd/gai.c: Likewise.
5749 * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
5750 * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
5751 * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
5752 * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
5753 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
5754 * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
5755 * sysdeps/unix/sysv/linux/if_index.c: Likewise.
5756 * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Likewise.
5757 * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
5759 2007-08-12 Ulrich Drepper <drepper@redhat.com>
5761 * elf/dl-dst.h: No need for _dl_dst_count, _dl_dst_substitute,
5762 and _dl_get_origin defines anymore.
5764 * sysdeps/unix/sysv/linux/clock_gettime.c (maybe_syscall_gettime_cpu):
5765 Build fix for systems which might lack POSIX timer support.
5767 * sysdeps/unix/sysv/linux/x86_64/libc-start.c
5768 (_libc_vdso_platform_setup): Mangle function pointers before storing
5770 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_VSYSCALL):
5771 Demangle vdso pointer before use.
5772 (INTERNAL_VSYSCALL): Likewise.
5774 * elf/cache.c (primes): Mark as const.
5775 Noted by Roland McGrath.
5777 2007-08-01 Andreas Jaeger <aj@suse.de>
5778 Jakub Jelinek <jakub@redhat.com>
5780 * elf/ldconfig.c (opt_ignore_aux_cache): Add new option.
5781 (options): Add option.
5782 (parse_opt): Handle option.
5783 (manual_link): Adjust process_file caller. Call implicit_soname.
5784 (search_dir): Formatting. Use and populate auxiliary cache.
5785 (main): Load and save auxiliary cache.
5786 * elf/readlib.c (process_file): Add stat_buf argument. Pass struct
5787 stat64 from fstat64 to caller.
5788 (implicit_soname): New function.
5789 * elf/readelflib.c (process_elf_file): If DT_SONAME is not present,
5790 leave *soname as NULL.
5791 * elf/cache.c: Include libgen.h.
5792 (print_entry, print_cache, compare, save_cache, add_to_cache):
5793 Formatting and cleanups.
5794 (aux_cache_entry_id, aux_cache_entry, aux_cache_file_entry,
5795 aux_cache_file): New structures.
5796 (AUX_CACHEMAGIC): Define.
5797 (primes): New array.
5798 (aux_hash_size, aux_hash): New variables.
5799 (aux_cache_entry_id_hash, nextprime, init_aux_cache,
5800 search_aux_cache, insert_to_aux_cache, add_to_aux_cache,
5801 load_aux_cache, save_aux_cache): New functions.
5802 * sysdeps/generic/ldconfig.h (_PATH_LDCONFIG_AUX_CACHE): Define.
5803 (init_aux_cache, search_aux_cache, add_to_aux_cache,
5804 load_aux_cache, save_aux_cache, implicit_soname): New prototypes.
5805 (process_file): Adjust prototype.
5807 2007-08-12 Jakub Jelinek <jakub@redhat.com>
5809 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Include stddef.h
5812 2007-08-12 Ulrich Drepper <drepper@redhat.com>
5814 * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Expect
5815 r_found_version structure as second parameter.
5816 * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION): Define.
5817 (_dl_vdso_vsym): Change type of second parameter accordingly.
5818 * sysdeps/unix/sysv/linux/x86-64/libc-start.c
5819 (_libc_vdso_platform_setup): Adjust.
5820 * sysdeps/unix/sysv/linux/powerpc/libc-start.c
5821 (_libc_vdso_platform_setup): Likewise.
5823 * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: Move to...
5824 * sysdeps/unix/sysv/linux/dl-vdso.c: ...here.
5825 * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: Move to...
5826 * sysdeps/unix/sysv/linux/dl-vdso.h: ...here.
5827 * csu/libc-start.c: Pretty printing.
5828 Use VDSO_SETUP if defined.
5829 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Define VDSO_SETUP
5830 and let generic code call into _libc_vdso_platform_setup.
5831 * sysdeps/unix/sysv/linux/x86_64/libc-start.c: New file.
5832 * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: New file.
5833 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Pretty printing.
5834 Define INLINE_VSYSCALL and INTERNAL_VSYSCALL.
5835 * sysdeps/unix/sysv/linux/x86_64/Versions: Export __vdso_clock_gettime
5837 * sysdeps/unix/sysv/linux/x86_64/Makefile [subdir=elf]
5838 (sysdep_rountines): Add dl-vdso.
5840 * sysdeps/unix/sysv/linux/powerpc/Makefile: Use sysdep_routines instead
5843 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add
5844 attribute_hidden to __vdso_gettimeofday prototype.
5846 2007-08-12 Roland McGrath <roland@redhat.com>
5848 * manual/stdio.texi (Variable Arguments Output): Fix xref to gcc manual.
5849 From: Karl Berry <karl@freefriends.org>.
5851 2007-08-11 Ulrich Drepper <drepper@redhat.com>
5853 * elf/dl-misc.c (_dl_sysdep_read_whole_file): We really don't need
5854 an atime update for the files we read.
5856 2007-08-10 Ulrich Drepper <drepper@redhat.com>
5858 * shadow/lckpwdf.c (__lckpwdf): Use O_CLOEXEC if possible.
5860 * nscd/connections.c: Use O_CLOEXEC if possible. Use mkostemp
5863 * misc/Makefile (routines): Add mkostemp and mkostemp64.
5864 * misc/Versions: Export mkostemp and mkostemp64 for GLIBC_2.7.
5865 * misc/mkostemp.c: New file.
5866 * misc/mkostemp64.c: New file.
5867 * stdlib/stdlib.h: Declare the new functions.
5868 * sysdeps/posix/tempname.c: Add new parameter which is added to
5869 the flags for open. Remove __GT_BIGFILE handling.
5870 * stdio-common/tempname.c: Likewise.
5871 * include/stdio.h: Adjust __gen_tempname prototype.
5872 Renumber __GT_* constants.
5873 * libio/oldtmpfile.c: Adjust for __gen_tempname interface change.
5874 * misc/mkdtemp.c: Likewise.
5875 * misc/mkstemp.c: Likewise.
5876 * misc/mkstemp64.c: Likewise.
5877 * misc/mktemp.c: Likewise.
5878 * stdio-common/tempnam.c: Likewise.
5879 * stdio-common/tmpfile.c: Likewise.
5880 * stdio-common/tmpfile64.c: Likewise.
5881 * stdio-common/tmpnam.c: Likewise.
5882 * stdio-common/tmpnam_r.c: Likewise.
5884 2007-08-10 Roland McGrath <roland@frob.com>
5886 * sysdeps/mach/hurd/bits/ioctls.h (NLDLY, TABDLY, BSDLY, VTDLY):
5888 (NLDELAY, CRDELAY, TBDELAY, BSDELAY, VTDELAY): Define to those.
5889 Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
5891 2007-08-10 Ulrich Drepper <drepper@redhat.com>
5893 * nss/nss_files/files-XXX.c (internal_setent): Use O_CLOEXEC if
5895 * nss/nss_files/files-alias.c (internal_setent): Likewise.
5896 * nss/Makefile (libnss_files-routines): Add files-have_o_cloexec.
5897 * nss/nss_files/files-have_o_cloexec.c: New file.
5899 * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Use O_CLOEXEC if
5902 2007-08-10 Jakub Jelinek <jakub@redhat.com>
5904 * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (___new_strtold_l,
5905 ___new_wcstold_l): New weak aliases.
5906 (strtold_l, wcstold_l): Use them as second argument for
5909 2007-08-09 Ulrich Drepper <drepper@redhat.com>
5911 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Use correct
5912 register in test for error.
5914 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_CLOEXEC): Define.
5915 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_CLOEXEC): Likewise.
5917 * po/sv.po: Update from translation team.
5919 2007-08-06 Roland McGrath <roland@redhat.com>
5921 * include/stdlib.h: Add libc_hidden_proto for strto*, __strto*_l.
5922 Remove __strto*_l inlines.
5923 * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l.
5924 * stdlib/strtod.c: Add libc_hidden_def.
5925 * stdlib/strtod_l.c: Likewise.
5926 * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto
5927 for __new_strtold and __new_wcstold.
5928 * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for
5930 * stdlib/strtol.c: Add libc_hidden_def.
5931 * stdlib/strtol_l.c: Likewise.
5932 * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and
5935 * scripts/data/localplt-powerpc-linux-gnu.data: New file.
5937 * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ...
5938 * scripts/data/localplt-generic.data: ... here.
5939 * elf/Makefile (check-data): Get generic file if no other.
5940 ($(objpfx)check-localplt.out): Make target unconditional.
5942 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion):
5945 2007-08-05 Ulrich Drepper <drepper@redhat.com>
5947 * po/zh_CN.po: Updated translation from translation team.
5949 2007-08-05 Jakub Jelinek <jakub@redhat.com>
5951 * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket):
5952 Don't use CGOTSETUP and CGOTRESTORE macros.
5954 2007-08-04 Roland McGrath <roland@redhat.com>
5956 * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
5958 2007-08-04 Jakub Jelinek <jakub@redhat.com>
5960 * io/bits/fcntl2.h (open, open64, openat, openat64): Add
5961 __extension__ around the whole statement expression.
5963 2007-08-04 Ulrich Drepper <drepper@redhat.com>
5965 * sysdeps/unix/opendir.c (__alloc_dir): Correct order of DIR
5966 elements during initialization.
5968 * po/pl.po: Updated translation from translation team.
5969 * po/tr.po: Likewise.
5970 * po/nl.po: Likewise.
5972 2007-08-03 Ulrich Drepper <drepper@redhat.com>
5974 * rt/aio.h: Add __nonnull attributes.
5976 2007-08-03 Jakub Jelinek <jakub@redhat.com>
5978 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Properly handle -0.
5979 * stdlib/Makefile (tests): Add tst-strtod5.
5980 (tst-strtod5-ENV): New.
5981 * stdlib/tst-strtod5.c: New file.
5983 * intl/dcigettext.c (_nl_find_msg): Free encoding if __gconv_open
5985 * intl/finddomain.c (_nl_find_domain): Free normalized_codeset
5988 * elf/dl-load.c (decompose_rpath): Free copy if result couldn't be
5991 2007-08-03 Jakub Jelinek <jakub@redhat.com>
5993 * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
5996 2007-08-02 Ulrich Drepper <drepper@redhat.com>
5998 * io/Makefile (aux): Add have_o_cloexec.
5999 * include/fcntl.h: Declare __have_o_cloexec.
6000 * io/have_o_cloexec.c: New file.
6001 * sysdeps/unix/opendir.c (__opendir): Use O_CLOEXEC is available.
6002 (__alloc_dir): If O_CLOEXEC has been used, don't duplicate the
6003 fcntl call if not necessary.
6004 * login/utmp_file.c (setutent_file): Use __have_o_cloexec instead
6007 * sysdeps/unix/opendir.c (__alloc_dir): Don't initialize ->data.
6008 Avoid memset, add explicit initialization.
6009 * sysdeps/unix/dirstream.h (struct __dirstream): Move data elemtn
6010 to the end and change into zero-sized array.
6011 Move lock member to fill a hole on 64-bit platforms.
6013 * stdlib/stdlib.h: Remove __strto*_internal prototypes and strto*
6015 * include/stdlib.h: Add __strto*_internal prototypes here.
6016 * wcsmbs/wchar.h: Remove __wcsto*_internal prototypes and wcsto*
6018 * include/wchar.h: Add __wcsto*_internal prototypes.
6019 * sysdeps/generic/inttypes.h: No need to protect the declaration
6020 of the __strto*_internal and __wcsto*_internal members here.
6022 * rt/mqueue.h: Change const to __const and add nonnull attributes.
6024 2007-08-02 Roland McGrath <roland@redhat.com>
6026 * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to
6027 $(inst_bindir)/getconf if possible.
6029 * posix/Makefile ($(objpfx)getconf.speclist): New target.
6030 (generated): Add it.
6031 ($(inst_libexecdir)/getconf): Use it.
6033 2007-08-01 Ulrich Drepper <drepper@redhat.com>
6035 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Using
6036 /proc is faster and sufficient. /sys is still needed for
6039 2007-08-01 Jakub Jelinek <jakub@redhat.com>
6041 * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate): Add fallocate
6042 syscall as __fallocate64.
6043 * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: New file.
6044 * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: New file.
6046 2007-07-30 Jakub Jelinek <jakub@redhat.com>
6048 * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
6051 * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
6052 if off_t is different rank from size_t.
6054 * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
6055 uw_frame_state_for): Avoid type punning warnings.
6056 * sysdeps/generic/unwind-dw2-fde-glibc.c
6057 (_Unwind_IteratePhdrCallback): Likewise.
6058 * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
6059 (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
6060 get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
6063 2007-07-31 Ulrich Drepper <drepper@redhat.com>
6065 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf): Count
6066 total processors using sysfs.
6067 (__get_nprocs): Use sysfs to determine which processors are online.
6069 2007-07-31 Jakub Jelinek <jakub@redhat.com>
6071 * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
6072 syscall arguments count.
6074 * stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
6076 2007-07-30 Roland McGrath <roland@redhat.com>
6078 * manual/libc.texinfo: Update copyrights, formatting magic, and
6079 @dircategory. From Karl Berry <karl@freefriends.org>.
6081 2007-07-29 Ulrich Drepper <drepper@redhat.com>
6084 * io/Makefile (headers): Add bits/fcntl2.h.
6086 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ZERO_S): Optimize
6088 (__CPU_EQUAL_S): Likewise.
6090 * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.
6091 (tests): Add tst-cpuset.
6092 * posix/sched_cpualloc.c: New file.
6093 * posix/sched_cpufree.c: New file.
6094 * posix/tst-cpuset.c: New file.
6095 * posix/Versions: Export __sched_cpualloc and __sched_cpufree for
6097 * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros.
6098 * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S
6099 macros. Define CPU_*_S macros.
6101 2007-07-28 Ulrich Drepper <drepper@redhat.com>
6103 * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
6107 * stdio-common/printf_fp.c (___printf_fp): Fix special case of
6108 #.0g and value rounded to 1.0.
6109 * stdio-common/tfformat.c (sprint_doubles): Add two new tests.
6111 2007-07-26 Jakub Jelinek <jakub@redhat.com>
6113 * locale/programs/ld-monetary.c (monetary_finish): Avoid range check
6114 for int_frac_digits and frac_digits.
6116 * login/logout.c (logout): Avoid aliasing violation.
6117 * login/logwtmp.c (logwtmp): Likewise.
6119 * libio/genops.c (_IO_un_link): Avoid aliasing violation.
6121 * nscd/selinux.c (preserve_capabilities): Initialize new_caps
6123 * iconv/gconv_open.c (__gconv_open): Initialize ptr to avoid
6125 * nis/nis_subr.c (nis_getnames): Initialize saveptr to avoid
6127 * resolv/inet_ntop.c (inet_ntop6): Initialize best.len and cur.len
6130 * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to
6132 * nss/nsswitch.h (service_user): Use void * type for KNOWN field.
6134 * nss/nss_files/files-hosts.c (LINE_PARSER): Cast host_addr to
6135 char * to avoid warning.
6136 * nis/nss_nis/nis-hosts.c (LINE_PARSER): Likewise.
6138 * timezone/Makefile (CFLAGS-zdump.c): Add -fwrapv.
6140 * locale/programs/ld-ctype.c (ctype_finish, set_class_defaults,
6141 allocate_arrays): Cast second argument to charmap_find_symbol
6142 to char * to avoid warnings.
6144 * locale/programs/repertoire.c (repertoire_new_char): Change
6145 from_nr, to_nr and cnt to unsigned long, adjust printf format
6148 * locale/programs/ld-collate.c (insert_value, handle_ellipsis):
6149 Cast second argument to new_element to char * to avoid warnings.
6151 * locale/weightwc.h (findidx): Cast &extra[-i] to const int32_t *.
6153 * intl/gettextP.h (struct loaded_domain): Change plural to const
6154 struct expression *.
6155 * intl/plural-eval.c (plural_eval): Change first argument to
6156 const struct expression *.
6157 * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Change first
6158 argument to const struct expression **.
6159 * intl/plural-exp.h (EXTRACT_PLURAL_EXPRESSION, plural_eval): Adjust
6161 * intl/loadmsgcat (_nl_unload_domain): Cast away const
6162 in call to __gettext_free_exp.
6164 * posix/fnmatch.c (fnmatch): Rearrange code to avoid maybe
6165 unitialized wstring/wpattern var warnings.
6167 * posix/runtests.c (struct a_test): Make data field const char *.
6169 * stdio-common/tst-sprintf2.c (main): Don't declere u, v and buf
6170 vars if not LDBL_MANT_DIG >= 106.
6172 * stdio-common/Makefile (CFLAGS-vfwprintf.c): Add -Wno-unitialized.
6174 * stdio-common/vfprintf.c (vfprintf): Cast first arugment to
6175 __find_specmb to avoid warning.
6177 * rt/tst-mqueue1.c (do_one_test): Add casts to avoid warnings.
6179 * debug/test-strcpy_chk.c (do_tests, do_random_tests): Add casts
6182 * sysdeps/ieee754/ldbl-96/s_roundl.c (huge): Add L suffix to
6185 * sysdeps/unix/clock_gettime.c (clock_gettime): Only define
6186 tv var when it will be actually used.
6188 * sunrpc/rpc_cmsg.c (xdr_callmsg): Cast IXDR_PUT_* to void
6191 * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned
6192 char array resp. pointer.
6193 * iconvdata/iso-2022-kr.c (BODY): Make buf unsigned char instead of
6195 * iconvdata/cns11643.h (cns11643_to_ucs4): Change first argument
6196 to const unsigned char **.
6197 (ucs4_to_cns11643): Change second argument to unsigned char *.
6198 * iconvdata/euc-tw.c (BODY): Change endp type to
6199 const unsigned char *.
6200 * iconvdata/iso-ir-165.h (ucs4_to_isoir165): Change second argument
6202 * iconvdata/ibm1008_420.c (LOOP_NEED_FLAGS): Don't define.
6203 * iconvdata/iso-2022-cn.c (BODY): Change buf to unsigned char array.
6204 * iconvdata/iso-2022-cn-ext.c (BODY): Change buf, tmpbuf, tmp
6205 types to unsigned char pointers/arrays instead of char.
6206 * iconvdata/jis0201.h (ucs4_to_jisx0201): Change second argument
6208 * iconvdata/jis0208.h (ucs4_to_jisx0208): Likewise.
6209 * iconvdata/jis0212.h: Include assert.h.
6210 (ucs4_to_jisx0212): Change second argument to unsigned char *.
6211 assert that if cp[0] is not '\0', cp[1] is not '\0' either instead
6212 of trying to handle that.
6213 * iconvdata/euc-kr.c (euckr_from_ucs4): Initialize also cp[1] to
6215 * iconvdata/euc-jp-ms.c (from_ucs4_lat1, from_ucs4_greek,
6216 from_ucs4_cjk, from_ucs4_cjkcpt, from_ucs4_extra): Change type to
6217 two dimensional const unsigned char arrays.
6218 (BODY): Cast "" to (const unsigned char *) for assignment to cp.
6219 Initialize endp to inptr to shut up a warning.
6221 2007-07-20 Jakub Jelinek <jakub@redhat.com>
6224 * time/strptime_l.c (__strptime_internal): Silently ignore
6225 strftime modifiers and field width in recursive calls.
6227 * include/time.h (enum ptime_locale_status): Remove.
6228 (__strptime_internal): Remove decided and era_cnt arguments,
6229 add statep argument.
6230 * time/strptime_l.c (__strptime_internal): Remove decided
6231 and era_cnt arguments, add statep argument. Don't recompute
6232 any fields in recursive calls, only update caller's tm
6233 and state, if recursive call fails, don't change tm nor
6235 (get_alt_number): Adjust.
6236 (recursive): Adjust caller.
6237 (strptime): Likewise.
6238 * time/strptime.c (strptime): Likewise.
6240 2007-07-19 Jakub Jelinek <jakub@redhat.com>
6242 * iconv/gconv_int.h (__GCONV_NULCONV): New internal only error code.
6243 * iconv/gconv_cache.c (__gconv_lookup_cache): Return __GCONV_NULCONV
6244 if from and to charsets are the same.
6245 * iconv/gconv_db.c (__gconv_find_transform): Likewise.
6246 * intl/dcigettext.c (_nl_find_msg): Return NULL even if __gconv_open
6247 returns __GCONV_NOCONV, but not for __GCONV_NULCONV.
6249 2007-07-17 Jakub Jelinek <jakub@redhat.com>
6251 * wcsmbs/wchar.h: Only define wint_t if __need_wint_t.
6252 Don't define wint_t when __need_mbstate_t unless it
6254 (__mbstate_t): Use __WINT_TYPE__ rather than wint_t
6255 in the typedef if possible.
6256 * wctype/wctype.h (wint_t): Define by including
6257 wchar.h with __need_wint_t instead of including stddef.h
6258 with __need_wint_t and as fallback definining it ourselves.
6259 * iconv/gconv.h (__need_wint_t): Define before including
6261 * sysdeps/gnu/_G_config.h: Don't include gconv.h if not _LIBC
6262 or _GLIBCPP_USE_WCHAR_T.
6263 (__need_wchar_t): Don't define
6264 if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6265 (__need_wint_t): Don't define before including stddef.h,
6266 define before including wchar.h only if _LIBC or
6267 _GLIBCPP_USE_WCHAR_T.
6268 (_G_iconv_t): Don't define if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6269 * sysdeps/mach/hurd/_G_config.h: Likewise.
6270 * sysdeps/generic/_G_config.h: Likewise.
6271 * libio/libio.h (__wunderflow, __wuflow, __woverflow): Only
6272 prototype if _LIBC or _GLIBCPP_USE_WCHAR_T.
6273 (_IO_getwc_unlocked, _IO_putwc_unlocked): Only define
6274 if _LIBC or _GLIBCPP_USE_WCHAR_T.
6276 2007-07-28 Ulrich Drepper <drepper@redhat.com>
6278 * sysdeps/posix/posix_fallocate64.c: Undefine
6279 __posix_fallocate64_l64 before alias handling.
6280 * sysdeps/unix/sysv/linux/posix_fallocate.c: New file.
6281 * sysdeps/unix/sysv/linux/posix_fallocate64.c: New file.
6282 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: New file.
6283 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate64.c: New file.
6285 * io/tst-posix_fallocate.c: Include <fcntl.h>.
6287 2007-07-23 Jakub Jelinek <jakub@redhat.com>
6289 * locale/programs/ld-collate.c (atwc): New variable.
6290 (add_to_tablewc): New toplevel function, moved from collate_output.
6291 (collate_output): Remove add_to_tablewc nested function.
6293 * iconv/iconvconfig.c (hash_table, hash_size): New toplevel vars.
6294 (name_insert): New function.
6295 (write_output): Remove hash_table and hash_size vars and name_insert
6298 2007-07-24 Roland McGrath <roland@redhat.com>
6300 * Makerules (install-others-programs-nosubdir): New target.
6301 (install-no-libc.a-nosubdir): Depend on it.
6303 * iconv/Makefile (install-others-programs): Set this instead of
6305 * login/Makefile (install-others-programs): Likewise.
6306 * posix/Makefile (install-others-programs): Likewise.
6308 * Makerules (install-no-libc.a-nosubdir): Clean up conditional
6311 2007-07-23 Ulrich Drepper <drepper@redhat.com>
6313 * io/Makefile (tests): Add tst-posix_fallocate.
6314 * io/tst-posix_fallocate.c: New file.
6316 * sysdeps/unix/sysv/linux/kernel-features.h: Define
6319 2007-07-22 Roland McGrath <roland@frob.com>
6321 * hurd/getdport.c: Add missing copyright year update.
6323 * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU] (O_CLOEXEC): New macro.
6324 * hurd/port2fd.c (_hurd_port2fd): Implement O_CLOEXEC.
6326 2007-07-22 Ulrich Drepper <drepper@redhat.com>
6328 * login/utmp_file.c (setutent_file): Use O_CLOEXEC if possible.
6330 * libio/fileops.c (_IO_new_file_fopen): Recognize 'e' flag and set
6331 O_CLOEXEC is needed.
6332 * nis/nss_compat/compat-grp.c: Use 'e' flag when opening file.
6333 Avoid additional fcntl to set O_CLOEXEC if not needed.
6334 * nis/nss_compat/compat-initgroups.c: Likewise.
6335 * nis/nss_compat/compat-pwd.c: Likewise.
6336 * nis/nss_compat/compat-spwd.c: Likewise.
6338 2007-07-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
6341 * manual/errno.texi: Change ECANCELED value to 119.
6344 * mach/lock-intern.h: Include <sys/cdefs.h>.
6347 * sysdeps/mach/hurd/sigaction.c (__sigaction): Check ACT != NULL before
6351 * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Define alias
6354 * sysdeps/mach/i386/sysdep.h: Include <dl-sysdep.h> and <tls.h>.
6356 2006-06-13 Thomas Schwinge <tschwinge@gnu.org>
6358 * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
6360 * sysdeps/mach/hurd/i386/tls.h: Likewise.
6362 2007-07-21 Ulrich Drepper <drepper@redhat.com>
6364 * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for
6365 descriptor received from nscd.
6367 * sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
6369 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
6370 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
6371 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
6372 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
6373 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
6374 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
6376 2007-07-20 Jakub Jelinek <jakub@redhat.com>
6379 * manual/signal.texi (Non-atomic Example): Make memory var volatile.
6382 * login/forkpty.c (forkpty): Close master and slave fds on
6383 fork failure. Patch by
6384 Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>.
6386 2007-07-18 Jakub Jelinek <jakub@redhat.com>
6388 * include/features.h (__USE_ISOC95): New define.
6389 * wcsmbs/wchar.h (fwprintf, fwscanf, wprintf, wscanf, swprintf,
6390 swscanf, vfwprintf, vwprintf, vswprintf, fwide): Define even
6391 for -std=iso9899:199409.
6392 * CONFORMANCE: Remove comments about unsupported AMD1.
6394 2007-07-17 Jakub Jelinek <jakub@redhat.com>
6396 * sysdeps/ia64/sched_cpucount.c: New file.
6397 * sysdeps/powerpc/sched_cpucount.c: New file.
6399 * sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
6400 __BEGIN_DECLS/__END_DECLS around the prototype.
6401 * bits/sched.h (__sched_cpucount): Likewise. Make second argument
6402 pointer to const cpu_set_t.
6404 * bits/types.h: Don't include stddef.h, don't define __need_size_t.
6405 * signal/signal.h <__USE_BSD || __USE_XOPEN_EXTENDED>: Define
6406 __need_size_t and include stddef.h.
6407 * sysvipc/sys/msg.h: Likewise.
6408 * posix/sched.h: Likewise.
6409 * hurd/hurd/signal.h (__need_size_t): Define.
6411 * CONFORMANCE: ctype.h and wctype.h no longer define size_t,
6412 neither does signal.h in pedantic ISO C namespaces. stdio.h
6413 no longer defines wint_t or wchar_t.
6415 * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): New function.
6416 * debug/vfwprintf_chk.c (__vfwprintf_chk): Use
6417 _IO_acquire_lock_clear_flags2 instead of _IO_acquire_lock.
6418 * debug/vprintf_chk.c (__vprintf_chk): Likewise.
6419 * debug/vwprintf_chk.c (__vwprintf_chk): Likewise.
6420 * debug/vfprintf_chk.c (__vfprintf_chk): Likewise.
6421 * debug/fwprintf_chk.c (__fwprintf_chk): Likewise.
6422 * debug/printf_chk.c (__printf_chk): Likewise.
6423 * debug/fprintf_chk.c (__fprintf_chk): Likewise.
6424 * debug/wprintf_chk.c (__wprintf_chk): Likewise.
6426 * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock_clear_flags2):
6429 * bits/confname.h (_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS): Define.
6430 * posix/getconf.c (vars): Add POSIX_V6_WIDTH_RESTRICTED_ENVS.
6432 2007-07-16 Jakub Jelinek <jakub@redhat.com>
6435 * stdlib/stdlib.h (realloc): Remove __attribute_malloc__.
6436 * malloc/malloc.h (realloc): Likewise.
6438 * libio/iopopen.c (_IO_new_proc_open): Don't close child_std_end
6439 if one of proc_file_chain streams has that fileno.
6440 * stdio-common/Makefile (tests): Add tst-popen2.
6441 * stdio-common/tst-popen2.c: New test.
6443 2007-07-14 Jakub Jelinek <jakub@redhat.com>
6445 * elf/ldconfig.c: Allow GPLv2 or any later version.
6446 * elf/readlib.c: Likewise.
6447 * elf/chroot_canon.c: Likewise.
6448 * elf/cache.c: Likewise.
6449 * nscd/mem.c: Likewise.
6450 * nscd/getpwuid_r.c: Likewise.
6451 * nscd/grpcache.c: Likewise.
6452 * nscd/aicache.c: Likewise.
6453 * nscd/getsrvbynm_r.c: Likewise.
6454 * nscd/nscd.c: Likewise.
6455 * nscd/servicescache.c: Likewise.
6456 * nscd/getsrvbypt_r.c: Likewise.
6457 * nscd/initgrcache.c: Likewise.
6458 * nscd/gethstbyad_r.c: Likewise.
6459 * nscd/gethstbynm2_r.c: Likewise.
6460 * nscd/getgrnam_r.c: Likewise.
6461 * nscd/nscd_setup_thread.c: Likewise.
6462 * nscd/getpwnam_r.c: Likewise.
6463 * nscd/gai.c: Likewise.
6464 * nscd/connections.c: Likewise.
6465 * nscd/dbg_log.c: Likewise.
6466 * nscd/cache.c: Likewise.
6467 * nscd/hstcache.c: Likewise.
6468 * nscd/nscd_conf.c: Likewise.
6469 * nscd/getgrgid_r.c: Likewise.
6470 * nscd/pwdcache.c: Likewise.
6471 * catgets/gencat.c: Likewise.
6472 * locale/programs/linereader.h: Likewise.
6473 * locale/programs/locarchive.c: Likewise.
6474 * locale/programs/ld-paper.c: Likewise.
6475 * locale/programs/locfile-kw.h: Likewise.
6476 * locale/programs/ld-address.c: Likewise.
6477 * locale/programs/xmalloc.c: Likewise.
6478 * locale/programs/ld-time.c: Likewise.
6479 * locale/programs/localedef.c: Likewise.
6480 * locale/programs/simple-hash.c: Likewise.
6481 * locale/programs/xstrdup.c: Likewise.
6482 * locale/programs/ld-numeric.c: Likewise.
6483 * locale/programs/locfile-kw.gperf: Likewise.
6484 * locale/programs/ld-collate.c: Likewise.
6485 * locale/programs/charmap-kw.gperf: Likewise.
6486 * locale/programs/charmap.h: Likewise.
6487 * locale/programs/charmap-kw.h: Likewise.
6488 * locale/programs/config.h: Likewise.
6489 * locale/programs/locfile.c: Likewise.
6490 * locale/programs/ld-ctype.c: Likewise.
6491 * locale/programs/charmap.c: Likewise.
6492 * locale/programs/ld-messages.c: Likewise.
6493 * locale/programs/repertoire.h: Likewise.
6494 * locale/programs/locale.c: Likewise.
6495 * locale/programs/ld-name.c: Likewise.
6496 * locale/programs/linereader.c: Likewise.
6497 * locale/programs/locfile.h: Likewise.
6498 * locale/programs/3level.h: Likewise.
6499 * locale/programs/ld-monetary.c: Likewise.
6500 * locale/programs/ld-measurement.c: Likewise.
6501 * locale/programs/charmap-dir.c: Likewise.
6502 * locale/programs/ld-identification.c: Likewise.
6503 * locale/programs/localedef.h: Likewise.
6504 * locale/programs/charmap-dir.h: Likewise.
6505 * locale/programs/repertoire.c: Likewise.
6506 * locale/programs/simple-hash.h: Likewise.
6507 * locale/programs/ld-telephone.c: Likewise.
6508 * locale/programs/locale-spec.c: Likewise.
6509 * locale/programs/locfile-token.h: Likewise.
6510 * posix/getconf.c: Likewise.
6511 * iconv/dummy-repertoire.c: Likewise.
6512 * iconv/iconv_charmap.c: Likewise.
6513 * iconv/iconvconfig.c: Likewise.
6514 * iconv/iconv_prog.c: Likewise.
6515 * malloc/memusagestat.c: Likewise.
6516 * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
6518 2007-07-06 Kaz Kojima <kkojima@rr.iij4u.or.jp>
6520 * sysdeps/sh/bsd-setjmp.S (setjmp): Use correct argument registers.
6521 * sysdeps/sh/bsd-_setjmp.S (_setjmp): Likewise.
6522 * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Do correct sanity
6523 check for the first argument.
6525 2007-07-12 Jakub Jelinek <jakub@redhat.com>
6528 * math/tgmath.h (__tgmath_real_type_sub): Formatting.
6529 (__tgmath_real_type): Fix if expr is const int or other const
6530 qualified integral type.
6531 (__TGMATH_UNARY_REAL_ONLY): Rewritten to avoid using statement
6532 expressions and handle const qualified arguments.
6533 (__TGMATH_BINARY_FIRST_REAL_ONLY, __TGMATH_UNARY_REAL_IMAG,
6534 __TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
6535 (__TGMATH_UNARY_REAL_RET_ONLY): Rewritten to avoid using
6536 statement expressions.
6537 (__TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
6538 __TGMATH_TERNARY_REAL_ONLY, __TGMATH_BINARY_REAL_IMAG): Likewise.
6539 (__TGMATH_UNARY_IMAG): Define.
6540 (conj, cproj): Use __TGMATH_UNARY_IMAG macro.
6541 * math/Makefile (tests): Add test-tgmath2.
6542 (CFLAGS-test-tgmath2.c): Add.
6543 * math/test-tgmath.c (fy, dy, ly, fz, dz, lz, count_cdouble,
6544 count_cfloat, count_cldouble): New variables.
6546 (main): Check number of complex calls as well.
6547 (F(compile_test)): Add complex tests and tests with const qualified
6549 (y, z, ccount): Define.
6550 (F(cacos), F(casin), F(catan), F(ccos), F(csin), F(ctan), F(cacosh),
6551 F(casinh), F(catanh), F(ccosh), F(csinh), F(ctanh), F(cexp), F(clog),
6552 F(csqrt), F(cpow), F(cabs), F(carg), F(creal), F(cimag), F(conj),
6553 F(cproj)): New functions.
6554 * math/test-tgmath2.c: New test.
6556 2007-07-11 Jakub Jelinek <jakub@redhat.com>
6559 * elf/dl-load.c (_dl_rtld_di_serinfo): Output / in LD_LIBRARY_PATH,
6560 RPATH etc. as "/" rather than "", don't segfault on empty paths,
6562 * dlfcn/Makefile (distribute): Add glreflib3.c.
6563 (module-names): Add glreflib3.
6564 ($(objpfx)tst-dlinfo.out): Depend on glreflib3.so rather than
6566 (LDFLAGS_glreflib3.so): New.
6567 * dlfcn/tst-dlinfo.c (do_test): Load glreflib3.so instead of
6569 * dlfcn/glreflib3.c: New file.
6571 * intl/finddomain.c (_nl_find_domain): If _nl_explode_name
6572 returned -1, return NULL.
6573 * intl/explodename.c (_nl_explode_name): Return -1 if
6574 _nl_normalize_codeset failed.
6576 2007-07-07 Steven Munroe <sjmunroe@us.ibm.com>
6578 * sysdeps/powerpc/powerpc32/power6/memset.S: Update comments.
6579 Specify .machine power6 to get ISA-V2.0 branch hints. Unroll loops
6580 and avoid branch misspredicts for > 31 bytes memset case.
6581 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
6582 Remove toc ref to __cache_line_size.
6584 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Specify .machine power4
6585 to get ISA-V2.0 branch hints.
6586 * sysdeps/powerpc/powerpc32/power4/memcpy.S: Likewise
6587 * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise
6588 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
6589 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
6590 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
6591 * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
6592 Remove toc ref to __cache_line_size.
6594 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S:
6595 Include math_ldbl_opt.h.
6597 2007-07-10 Ulrich Drepper <drepper@redhat.com>
6600 * time/strptime_l.c (__strptime_internal): Implement greedy
6601 matching of weekday and month names.
6603 2007-07-09 Roland McGrath <roland@redhat.com>
6605 * elf/elf.h (NT_GNU_ABI_TAG): New macro.
6606 (ELF_NOTE_ABI): Use it.
6607 (NT_GNU_HWCAP, NT_GNU_BUILD_ID): New macros.
6609 2007-07-09 Ulrich Drepper <drepper@redhat.com>
6611 * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new entries.
6612 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
6614 2007-07-07 Ulrich Drepper <drepper@redhat.com>
6617 * stdio-common/vfscanf.c (_IO_vfscanf): Add additional test for EOF
6618 in loop to look for conversion specifier to avoid testing of
6620 * stdio-common/Makefile (tests): Add bug18, bug18a, bug19, bug19a.
6621 * stdio-common/bug18.c: New file.
6622 * stdio-common/bug18a.c: New file.
6623 * stdio-common/bug19.c: New file.
6624 * stdio-common/bug19a.c: New file.
6626 2007-07-05 Mike Frysinger <vapier@gentoo.org>
6628 * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
6631 2007-07-01 Jakub Jelinek <jakub@redhat.com>
6633 * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
6634 * elf/dl-minimal.c (__libc_memalign): Likewise. Handle malloc (0).
6635 Return NULL if mmap failed instead of asserting it does not.
6636 (calloc): Check for integer overflow.
6638 * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
6641 2007-07-03 Jakub Jelinek <jakub@redhat.com>
6644 * nis/nss-default.c: Include errno.h.
6645 (init): Preserve errno.
6647 2007-07-02 Ulrich Drepper <drepper@redhat.com>
6649 * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
6651 2007-06-30 Ulrich Drepper <drepper@redhat.com>
6653 * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
6655 2007-06-29 Martin Schwidefsky <schwidefsky@de.ibm.com>
6657 * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
6659 2007-06-29 Martin Schwidefsky <schwidefsky@de.ibm.com>
6661 * sysdeps/s390/dl-procinfo.c: New file.
6662 * sysdeps/s390/dl-procinfo.h: New file.
6663 * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
6665 2007-06-29 Jakub Jelinek <jakub@redhat.com>
6667 * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
6668 in PT_NOTE segments with multiple notes.
6669 * elf/readelflib.c (process_elf_file): Likewise.
6671 2007-06-22 Ulrich Drepper <drepper@redhat.com>
6673 * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
6676 2007-06-19 Ulrich Drepper <drepper@redhat.com>
6678 * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
6680 2007-06-13 Jakub Jelinek <jakub@redhat.com>
6682 * include/link.h: Don't include rtld-lowlevel.h.
6683 (struct link_map): Remove l_scope_lock.
6684 * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
6685 (_dl_scope_free_list): New field (variable) in _rtld_global.
6686 (DL_LOOKUP_SCOPE_LOCK): Remove.
6687 (_dl_scope_free): New prototype.
6688 * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
6689 Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
6690 (_dl_profile_fixup): Likewise.
6691 * elf/dl-sym.c (do_sym): Likewise. Use wrapped _dl_lookup_symbol_x
6692 whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
6693 THREAD_GSCOPE_RESET_FLAG around it.
6694 * elf/dl-close.c (_dl_close_worker): Don't use
6695 __rtld_mrlock_{change,done}. Call _dl_scope_free on the old
6696 scope. Make sure THREAD_GSCOPE_WAIT () happens if any old
6697 scopes were queued or if l_scope_mem has been abandoned.
6698 * elf/dl-open.c (_dl_scope_free): New function.
6699 (dl_open_worker): Use it. Don't use __rtld_mrlock_{change,done}.
6700 * elf/dl-support.c (_dl_scope_free_list): New variable.
6701 * elf/dl-lookup.c (add_dependency): Remove flags argument.
6702 Remove DL_LOOKUP_SCOPE_LOCK handling.
6703 (_dl_lookup_symbol_x): Adjust caller. Remove DL_LOOKUP_SCOPE_LOCK
6705 * elf/dl-object.c (_dl_new_object): Don't use
6706 __rtld_mrlock_initialize.
6708 2007-06-19 Ulrich Drepper <drepper@redhat.com>
6710 * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
6712 (rtld_global_ro): Likewise.
6714 2007-06-18 Jakub Jelinek <jakub@redhat.com>
6716 * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
6717 Move PT_LOAD checking to...
6718 (_dl_addr_inside_object): ... here, new function.
6719 * elf/dl-sym.c (do_sym): If not l_contiguous,
6720 call _dl_addr_inside_object.
6721 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
6722 * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
6723 * elf/dl-open.c (dl_open_worker): Likewise.
6724 (_dl_addr_inside_object): New function if IS_IN_rtld.
6725 * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
6726 holes are present or are PROT_NONE protected.
6727 * include/link.h (struct link_map): Add l_contiguous field.
6728 * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
6730 2007-06-18 Jakub Jelinek <jakub@redhat.com>
6731 Tomas Janousek <tjanouse@redhat.com>
6732 Ulrich Drepper <drepper@redhat.com>
6735 * resolv/res_send.c (send_dg): Remove socket_pf. Use ipv6_unavail
6736 member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
6738 * resolv/resolv.h (__res_state): Add ipv6_unavail member. Make
6739 unused member a bitmap.
6740 * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
6741 servers are configured.
6743 2007-06-18 Jakub Jelinek <jakub@redhat.com>
6745 * elf/rtld.c (dl_main): Don't call init_tls more than once.
6747 2007-06-17 Andreas Schwab <schwab@suse.de>
6749 * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
6751 2007-06-16 Andreas Jaeger <aj@suse.de>
6754 * sysdeps/unix/sysv/linux/sys/ptrace.h
6755 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
6756 PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
6757 PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
6758 PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
6759 PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
6761 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
6762 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
6763 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
6764 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
6766 2007-06-16 Ulrich Drepper <drepper@redhat.com>
6769 * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
6770 determining whether there are IPv4/IPv6 addresses, ignore loopback
6773 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
6775 * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
6776 * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
6777 as the return type. Change type of "r" variable to CMPtype.
6778 * soft-fp/eqsf2.c (__eqsf2): Likewise.
6779 * soft-fp/eqtf2.c (__eqtf2): Likewise.
6780 * soft-fp/gedf2.c (__gedf2): Likewise.
6781 * soft-fp/gesf2.c (__gesf2): Likewise.
6782 * soft-fp/getf2.c (__getf2): Likewise.
6783 * soft-fp/ledf2.c (__ledf2): Likewise.
6784 * soft-fp/lesf2.c (__lesf2): Likewise.
6785 * soft-fp/letf2.c (__letf2): Likewise.
6786 * soft-fp/unorddf2 (__unorddf2): Likewise.
6787 * soft-fp/unordsf2 (__unordsf2): Likewise.
6788 * soft-fp/unordtf2 (__unordtf2): Likewise.
6790 2007-06-09 Ulrich Drepper <drepper@redhat.com>
6792 * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
6793 make sure gcc doesn't mess around with this.
6795 2007-06-08 Ulrich Drepper <drepper@redhat.com>
6797 * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
6799 2007-06-08 Jakub Jelinek <jakub@redhat.com>
6801 * elf/dl-close.c (_dl_close_worker): Remove all to be removed
6802 libraries from the global scope at once and call THREAD_GSCOPE_WAIT
6803 at most once per _dl_close_worker.
6805 2007-06-08 Ulrich Drepper <drepper@redhat.com>
6807 * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
6808 __sched_cpucount as const.
6809 * posix/sched_cpucount.c: Adjust.
6811 * posix/sched_cpucount.c (__sched_cpucount): Allow using special
6812 instruction for counting bits.
6813 * sysdeps/x86_64/sched_cpucount.c: New file.
6815 2007-06-07 Ulrich Drepper <drepper@redhat.com>
6817 * configure.in: Avoid variable named BASH.
6818 * config.make.in: Likewise.
6819 Patch in part by Mike Frysinger.
6821 2007-06-06 Jakub Jelinek <jakub@redhat.com>
6824 * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
6825 pseudo-zeros as zero.
6826 * sysdeps/x86_64/ldbl2mpn.c: New file.
6827 * sysdeps/ia64/ldbl2mpn.c: New file.
6829 2007-06-04 Jakub Jelinek <jakub@redhat.com>
6831 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
6832 unused ily variable. Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
6833 Remove unreachable code at the end.
6835 2007-06-01 Steven Munroe <sjmunroe@us.ibm.com>
6837 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
6838 ldbl-128ibm in comment.
6839 (fpclassifyl): Correct classification of denormals.
6840 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
6841 return value for MIN denormal. Rewrite using long double math too
6842 correctly handle denormals and canonicalize the results.
6844 2007-06-05 Jakub Jelinek <jakub@redhat.com>
6846 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
6847 (__mpn_construct_long_double): Fix conversion where result ought
6848 to be smaller than __LDBL_MIN__, or the low double should be
6849 denormal. Fix decision where to negate low double - honor round
6851 * stdio-common/tst-sprintf2.c: Include string.h.
6852 (COMPARE_LDBL): Define.
6853 (TEST): Also test whether a string hexadecimal float representation
6854 can be parsed back to the number.
6855 (main): Add a couple of further tests.
6857 2007-06-04 Jakub Jelinek <jakub@redhat.com>
6859 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
6860 (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
6861 is non-zero, but smaller than 2 * __DBL_MIN__.
6862 * stdio-common/tst-sprintf2.c: New test.
6863 * stdio-common/Makefile (tests): Add tst-sprintf2.
6865 * math/test-misc.c (main): Don't run last batch of tests with
6866 IBM long double format.
6868 2007-05-31 Steven Munroe <sjmunroe@us.ibm.com>
6870 * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
6871 * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
6872 * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
6873 * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
6874 * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
6875 * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
6876 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
6877 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
6878 * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
6879 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
6880 * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
6881 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
6883 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
6885 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
6887 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
6889 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
6891 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
6892 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
6894 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
6896 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
6898 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
6900 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
6903 2007-05-31 Steven Munroe <sjmunroe@us.ibm.com>
6905 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
6906 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
6907 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
6908 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
6909 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
6910 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
6911 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
6912 * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
6914 2007-05-22 Steven Munroe <sjmunroe@us.ibm.com>
6916 * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
6917 (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6918 * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
6919 (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6920 * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
6921 (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6922 * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
6923 (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6925 2007-05-21 Steven Munroe <sjmunroe@us.ibm.com>
6927 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
6928 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
6929 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
6930 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
6932 2007-03-15 Steven Munroe <sjmunroe@us.ibm.com>
6934 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
6935 [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
6937 2006-02-13 Steven Munroe <sjmunroe@us.ibm.com>
6939 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
6940 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
6941 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
6942 * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
6944 2006-10-20 Steven Munroe <sjmunroe@us.ibm.com>
6946 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
6947 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
6949 2006-10-03 Steven Munroe <sjmunroe@us.ibm.com>
6951 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
6952 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
6954 * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
6955 * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
6956 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
6957 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
6959 2006-09-29 Steven Munroe <sjmunroe@us.ibm.com>
6961 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
6962 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
6963 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
6964 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
6966 2006-09-28 Steven Munroe <sjmunroe@us.ibm.com>
6968 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
6969 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
6970 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
6971 * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
6972 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
6973 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
6975 2006-08-31 Steven Munroe <sjmunroe@us.ibm.com>
6977 * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
6978 * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
6979 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
6980 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
6982 2006-06-15 Steven Munroe <sjmunroe@us.ibm.com>
6984 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
6985 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
6986 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
6987 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
6988 * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
6989 * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
6990 * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
6991 * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
6992 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
6993 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
6994 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
6995 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
6996 * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
6997 * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
6998 * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
6999 * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
7001 2006-03-20 Steven Munroe <sjmunroe@us.ibm.com>
7003 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
7004 * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
7006 2007-06-01 Steven Munroe <sjmunroe@us.ibm.com>
7008 * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
7009 * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
7011 2007-05-31 Steven Munroe <sjmunroe@us.ibm.com>
7013 * sysdeps/powerpc/powerpc32/970/Implies: New file.
7014 * sysdeps/powerpc/powerpc32/power5/Implies: New file.
7015 * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
7016 * sysdeps/powerpc/powerpc32/power6/Implies: New file.
7017 * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
7018 * sysdeps/powerpc/powerpc64/970/Implies: New file.
7019 * sysdeps/powerpc/powerpc64/power5/Implies: New file.
7020 * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
7021 * sysdeps/powerpc/powerpc64/power6/Implies: New file.
7022 * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
7024 2007-05-21 Steven Munroe <sjmunroe@us.ibm.com>
7026 * sysdeps/powerpc/powerpc32/power4/memset.S: New file
7028 2007-03-13 Steven Munroe <sjmunroe@us.ibm.com>
7030 * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
7031 branch miss-predicts. Ensure that cache line crossing does not impact
7034 2006-12-13 Steven Munroe <sjmunroe@us.ibm.com>
7036 * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
7037 "../../powerpc32/power4/memcopy.h".
7038 * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
7039 "../../powerpc32/power4/wordcopy.c".
7041 2006-10-03 Steven Munroe <sjmunroe@us.ibm.com>
7043 * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
7044 * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
7045 * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
7046 * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
7047 * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
7048 * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
7050 2006-09-10 Steven Munroe <sjmunroe@us.ibm.com>
7052 * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
7054 2006-08-31 Steven Munroe <sjmunroe@us.ibm.com>
7056 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
7057 * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
7058 * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
7059 * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
7060 * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
7061 * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
7062 * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
7063 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
7065 2006-07-06 Steven Munroe <sjmunroe@us.ibm.com>
7067 * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
7069 2006-03-20 Steven Munroe <sjmunroe@us.ibm.com>
7071 * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
7072 * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
7073 * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
7074 * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
7075 * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
7076 * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
7077 * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
7079 2007-05-29 Roland McGrath <roland@redhat.com>
7081 * po/Makefile (po-sed-cmd): New variable.
7082 (libc.pot.files): Move sed command text in there, avoid \ inside ''.
7084 2007-05-29 Ulrich Drepper <drepper@redhat.com>
7086 * crypt/md5-crypt.c: Fix comment.
7088 * nscd/nscd_helper.c (get_mapping): Handle short replies instead
7089 of crashing. When this is the case or if the reply is malformed,
7090 don't try to close the new file descriptor since it does not
7092 Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
7094 2007-05-28 Jakub Jelinek <jakub@redhat.com>
7096 * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
7097 if __NR_utimensat is not defined.
7099 2007-05-26 Ulrich Drepper <drepper@redhat.com>
7101 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
7103 2007-05-25 Jakub Jelinek <jakub@redhat.com>
7105 * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
7106 (open): Fix comment typos. Don't call __open_2 if flags
7107 is a compile time constant without O_CREAT.
7108 (__open64_2): Add nonnull attribute.
7109 (open64): Fix comment typos. Don't call __open64_2 if flags
7110 is a compile time constant without O_CREAT.
7111 (__openat_2): Add nonnull attribute, fix nonnull attribute
7113 (openat): Fix comment typos. Don't call __openat_2 if flags
7114 is a compile time constant without O_CREAT.
7115 (__openat64_2): Add nonnull attribute, fix nonnull attribute
7117 (openat64): Fix comment typos. Don't call __openat64_2 if flags
7118 is a compile time constant without O_CREAT.
7120 2007-05-24 Ulrich Drepper <drepper@redhat.com>
7122 * Makerules (sysd-rules): Define PTW for ptw-* files.
7123 * Versions: Define GLIBC_2.7 for libc.
7124 * include/stdio.h: Declare __fortify_fail.
7125 * debug/fortify_fail.c: New file.
7126 * debug/Makefile (routines): Add fortify_fail.
7127 * debug/chk_fail.c: Use __fortify_fail.
7128 * debug/stack_chk_fail.c: Likewise.
7129 * io/Versions: Export __open_2, __open64_2, __openat_2, and
7130 __openat64_2 for GLIBC_2.7.
7131 * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
7132 * io/open.c: Define *_2 variant of function which checks for O_CREAT
7133 and fails if necessary.
7134 * io/open64.c: Likewise.
7135 * io/openat.c: Likewise.
7136 * io/openat64.c: Likewise.
7137 * sysdeps/unix/sysv/linux/open64.c: Likewise.
7138 * sysdeps/unix/sysv/linux/openat.c: Likewise.
7139 * sysdeps/unix/sysv/linux/openat64.c: Likewise.
7140 * io/bits/fcntl2.h: New file.
7141 * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
7143 * include/bits/fcntl2.h: New file.
7144 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7146 * sysdeps/unix/sysv/linux/open_2.c: New file.
7148 2007-05-21 Ulrich Drepper <drepper@redhat.com>
7150 * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
7151 as second parameter to handle_intel.
7153 * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
7156 * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
7158 * sysdeps/x86_64/cacheinfo.c: ... here. New file.
7159 * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
7161 * sysdeps/x86_64/memcpy.S: Complete rewrite.
7162 * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
7163 Patch by Evandro Menezes <evandro.menezes@amd.com>.
7165 * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
7167 2007-05-21 Jakub Jelinek <jakub@redhat.com>
7170 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
7171 * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
7172 * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
7174 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
7177 * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
7178 reinitialize workend at the start of each do_positional format spec
7179 loop, free workstart before do_positional loops.
7180 (printf_unknown): Fix size of work_buffer.
7181 * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
7183 * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
7184 (public_sET_STATe): If ms->version < 3, put all chunks into
7185 unsorted chunks and clear {fd,bk}_nextsize fields of largebin
7188 * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
7189 * malloc/hooks.c: Likewise.
7190 * malloc/arena.c: Likewise.
7191 * malloc/malloc.c (do_check_malloc_state): Don't assert
7192 n_mmaps is not greater than n_mmaps_max. This removes the need
7193 for the previous change.
7195 * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
7198 2007-05-19 Ulrich Drepper <drepper@redhat.com>
7200 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
7201 Define for kernel >= 2.6.22.
7203 2007-05-18 Ulrich Drepper <drepper@redhat.com>
7205 * elf/dl-close.c (_dl_close_worker): When removing object from
7206 global scope, wait for all lookups to finish afterwards.
7207 * elf/dl-open.c (add_to_global): When global scope array must
7208 grow, allocate a new one and free old array only after all
7210 * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
7211 (_dl_lookup_symbol_x): Likewise.
7212 * elf/dl-support.c: Define _dl_wait_lookup_done.
7213 * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
7214 _dl_wait_lookup_done.
7216 * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
7217 not overlapping with arena.
7219 * malloc/mcheck.c (reallochook): If size==0, free the block.
7221 * rt/tst-shm.c: Use fstat64 instead of fstat.
7223 * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
7224 __NR_sync_file_range is not defined.
7226 2007-05-17 Ulrich Drepper <drepper@redhat.com>
7228 Dummy files to prevent stub versions from being used.
7229 * sysdeps/x86_64/fpu/k_cosl.c: New file.
7230 * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
7231 * sysdeps/x86_64/fpu/k_sinl.c: New file.
7232 * sysdeps/x86_64/fpu/k_tanl.c: New file.
7234 * version.h (VERSION): Set to 2.6.90.
7236 2007-05-14 Ulrich Drepper <drepper@redhat.com>
7238 * version.h (VERSION): Define to 2.6.
7239 * include/features.h (__GLIBC_MINOR__): Define to 6.
7241 * malloc/malloc.c: Use all small bin slots on 64-bit archs.
7243 * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
7246 2007-05-13 Ulrich Drepper <drepper@redhat.com>
7248 * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
7249 number of mmaps. n_mmaps_max is the target.
7250 * malloc/hooks.c: Likewise.
7251 * malloc/arena.c: Likewise.
7253 2007-05-12 Andreas Jaeger <aj@suse.de>
7255 * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
7258 2007-05-11 Ulrich Drepper <drepper@redhat.com>
7260 * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
7261 adding new variables.
7263 * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
7264 optimize. Completely extend global scope array before making the
7265 new entries visible.
7267 2007-05-10 Ulrich Drepper <drepper@redhat.com>
7269 * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
7270 * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
7273 * include/link.h: Move l_version and l_nversion members around to
7276 * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
7278 * sysdeps/unix/sysv/linux/sched_setaffinity.c
7279 (__sched_setaffinity_new): If syscall was successful and
7280 RESET_VGETCPU_CACHE is defined, use it before returning.
7281 * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
7283 * io/sys/stat.h: Make sure struct timespec is defined for
7286 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
7288 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
7289 * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
7290 * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
7291 * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
7292 * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
7293 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
7294 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
7295 * io/sys/stat.h: Declare utimensat, futimens.
7296 * io/utimensat.c: New file.
7297 * io/futimens.c: New file.
7298 * sysdeps/unix/sysv/linux/utimensat.c: New file.
7299 * sysdeps/unix/sysv/linux/futimens.c: New file.
7300 * io/Makefile (routines): Add utimensat, futimens.
7301 * io/Versions: Add utimensat, futimens to GLIBC_2.6.
7302 * sysdeps/unix/sysv/linux/lutimes.c: New file.
7303 * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
7306 * include/sys/cdefs.h: Redefine __nonnull so that test for
7307 incorrect parameters in the libc code itself are not omitted.
7309 2007-05-09 Jakub Jelinek <jakub@redhat.com>
7311 * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
7312 exception in addition to inexact when asked to raise only FE_INEXACT.
7315 * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
7318 2007-05-07 Ulrich Drepper <drepper@redhat.com>
7321 * string/strfry.c (strfry): Make result more random.
7323 2007-05-07 Richard Henderson <rth@redhat.com>
7325 * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
7326 if __NO_LONG_DOUBLE_MATH.
7327 * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
7328 available in the compiler, add .arch directive to the assembly.
7330 2007-05-07 Jakub Jelinek <jakub@redhat.com>
7332 * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
7333 compat_symbol to GLIBC_2_1.
7334 * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
7335 * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
7336 * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
7337 * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
7338 * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
7339 * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
7340 * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
7342 (__isnanl): New compat_symbol.
7344 2007-05-07 Ulrich Drepper <drepper@redhat.com>
7345 Jakub Jelinek <jakub@redhat.com>
7347 * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
7348 (new_heap): Initialize mprotect_size.
7349 (grow_heap): When growing, only mprotect from mprotect_size till
7350 new_size if mprotect_size is smaller. When shrinking, use PROT_NONE
7351 MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
7353 2007-04-30 Steven Munroe <sjmunroe@us.ibm.com>
7354 Peter Bergner <bergner@us.ibm.com>
7356 * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
7357 Define FE_NOMASK_ENV as FE_EANBLED_ENV. Define FE_MASK_ENV.
7358 * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
7359 * sysdeps/powerpc/fpu/fe_mask.c: New file.
7360 * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
7361 * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
7362 Call __fe_mask_env() if all FP exceptions disabled.
7363 * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
7364 from old FPSCR to new fenv to propagate DFP rounding modes.
7365 Call __fe_mask_env() if FP exceptions previously enabled.
7366 * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
7367 exceptions from env. Use __fe_nomask_env() or __fe_mask_env() when
7368 transitioning from all exceptions disabled to any exception enabled
7370 * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
7371 merge exceptions from env. Call __fe_nomask_env or __fe_mask_env
7372 when transitioning from all exceptions disabled to any exception
7373 enabled or visa versa.
7374 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
7375 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
7376 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
7377 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
7378 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
7379 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
7381 2007-05-06 Ulrich Drepper <drepper@redhat.com>
7384 * posix/unistd.h: Remove __THROW from fdatasync.
7386 2007-05-06 Mike Frysinger <vapier@gentoo.org>
7389 * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
7391 2007-05-06 Ulrich Drepper <drepper@redhat.com>
7393 * stdio-common/vfprintf.c (process_string_arg): Optimize
7394 ridiculous precision in wide char code printing multi-byte string.
7395 Reported by Jim Meyering <jim@meyering.net>.
7398 * elf/dl-addr.c (_dl_addr): Compare address with actual segment
7399 boundaries to work around systems with overlapping binary loading.
7400 Based on a patch by Suzuki <suzuki@in.ibm.com>.
7402 2007-05-04 Ulrich Drepper <drepper@redhat.com>
7404 * stdio-common/vfprintf.c (process_string_arg): Adjust call to
7405 __mbsnrtowcs after last change.
7407 * locale/programs/linereader.c (get_symname): Fix adding final NUL.
7408 (get_ident): Likewise.
7410 2007-05-03 Jakub Jelinek <jakub@redhat.com>
7412 * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
7413 with setting the sticky bit.
7414 * math/test-misc.c (main): Add more truncation tests.
7416 2007-04-14 Uros Bizjak <ubizjak@gmail.com>
7418 * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
7419 double in the function declaration.
7420 * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
7421 double in the function declaration.
7422 * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7423 float in the function declaration.
7424 * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7425 float in the function declaration.
7427 * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
7428 denormal operands. Do not generate FP_EX_DENORM exception.
7429 (FP_UNPACK_RAW_EP): Ditto.
7430 (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
7431 undefined _FP_UNPACK_RAW_E.
7432 (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
7433 undefined _FP_UNPACK_RAW_EP.
7434 (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
7435 undefined _FP_PACK_RAW_E.
7436 (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
7437 undefined _FP_PACK_RAW_EP.
7439 * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
7441 * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
7444 2007-04-16 Uros Bizjak <ubizjak@gmail.com>
7445 Jakub Jelinek <jakub@redhat.com>
7447 * soft-fp/op-common.h (FP_EXTEND): Do not abort when
7448 _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs. Handle denormals for
7450 * soft-fp/op-common.h (FP_TRUNC): Ditto.
7452 2007-05-03 Jakub Jelinek <jakub@redhat.com>
7454 * math/test-misc.c (main): Add tests for rounding long double
7455 values close to smallest double denormalized value to double.
7457 2007-04-30 Joseph Myers <joseph@codesourcery.com>
7459 * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
7460 condition for truncating to 0. Set sticky bit for such
7463 2007-05-02 Jakub Jelinek <jakub@redhat.com>
7465 * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
7466 fixed length array for ignore.
7468 2007-04-30 Ulrich Drepper <drepper@redhat.com>
7471 * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
7472 stack for large precisions.
7473 * stdio-common/test-vfprintf.c (main): Add test for large
7476 2007-04-30 Jakub Jelinek <jakub@redhat.com>
7478 * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
7480 * stdio-common/tfformat.c (sprint_doubles): Add a new test.
7483 * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
7484 account in the size check.
7485 * resolv/tst-inet_ntop.c: New test.
7486 * resolv/Makefile (tests): Add tst-inet_ntop.
7488 2007-04-30 Ulrich Drepper <drepper@redhat.com>
7489 Jakub Jelinek <jakub@redhat.com>
7492 * malloc/malloc.c: Keep separate list for first blocks on the bin
7493 lists with a given size. This helps skipping over list elements
7494 we know won't fit in two places.
7495 Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
7497 2007-04-28 Ulrich Drepper <drepper@redhat.com>
7500 * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
7501 label to Teredo tunnel addresses 2001://32.
7503 2007-04-27 Ulrich Drepper <drepper@redhat.com>
7505 * locale/programs/ld-collate.c (collate_read): Allow order_start
7508 * locale/programs/ld-collate.c (collate_read): Fix printing of
7512 * locale/C-translit.h.in: Add entry for U2044.
7515 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
7516 hexa-decimal floats without exponent.
7517 * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
7519 2007-04-25 Ulrich Drepper <drepper@redhat.com>
7521 * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
7522 * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
7523 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
7524 * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
7526 * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
7529 2007-04-25 Jakub Jelinek <jakub@redhat.com>
7531 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
7532 of 0 after the out_fail label.
7534 2007-04-25 Ulrich Drepper <drepper@redhat.com>
7537 * iconv/gconv_charset.h (strip): Allow ':'.
7538 * iconv/iconv_open.c (iconv_open): Adjust comment.
7540 2007-04-25 Jakub Jelinek <jakub@redhat.com>
7542 * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
7545 2007-04-23 Jakub Jelinek <jakub@redhat.com>
7548 * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
7549 alignment of buffer and tmp_buffer.
7550 * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
7551 internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
7552 alignment of buffer.
7553 * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise. Handle buflen
7554 bigger than INT_MAX.
7555 * resolv/nss_dns/dns-network.c (getanswer_r): Likewise. Add errnop and
7556 h_errnop arguments. Fail if buflen is too small.
7557 (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
7559 2007-04-23 Jakub Jelinek <jakub@redhat.com>
7562 * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
7563 name. Patch by Aurelien Jarno <aurelien@aurel32.net>.
7565 2007-04-22 Roland McGrath <roland@redhat.com>
7567 * elf/elf.h (NT_PRXFPREG): New macro.
7569 2007-04-19 Andreas Jaeger <aj@suse.de>
7572 * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
7573 IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
7576 2007-04-19 Ulrich Drepper <drepper@redhat.com>
7578 * include/sys/mman.h: Mark madvise hidden.
7579 * misc/madvise.c: Add libc_hidden_def.
7581 2007-04-06 Jakub Jelinek <jakub@redhat.com>
7583 * nis/nis_domain_of.c (__nis_domain_of): New function.
7584 * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
7585 * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
7586 * nis/nis_call.c (rec_dirsearch): Likewise.
7587 (first_shoot): Likewise. Remove search_parent_first argument.
7588 (struct nis_server_cache): Rename search_parent_first field
7590 (nis_server_cache_search, nis_server_cache_add): Rename
7591 search_parent_first argument to search_parent.
7592 (__nisfind_server): Likewise. If search_parent, call
7595 2007-04-18 Ulrich Drepper <drepper@redhat.com>
7597 * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
7599 2007-04-17 Ulrich Drepper <drepper@redhat.com>
7602 * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
7604 2007-04-16 Ulrich Drepper <drepper@redhat.com>
7607 * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
7609 2007-04-15 Jakub Jelinek <jakub@redhat.com>
7611 * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
7612 INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
7613 current number of locales in SUPPORTED.
7614 (create_archive): Initialize serial.
7615 (enlarge_archive): Preserve aliases rather than duplicating
7618 2007-04-13 Jakub Jelinek <jakub@redhat.com>
7620 * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
7621 after _IO_un_link, not before it.
7623 * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
7624 special case handling when wcp == wstartp + 1. Fix a comment typo.
7625 * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
7627 2007-03-30 Jakub Jelinek <jakub@redhat.com>
7629 * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
7630 __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
7631 _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
7633 * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
7634 _IO_file_xsgetn_maybe_mmap): Likewise.
7635 * libio/oldfileops.c (old_do_write): Likewise.
7636 * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
7637 _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
7638 _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
7639 _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
7640 _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
7641 _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
7642 _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
7643 _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
7644 _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
7645 _IO_file_underflow, _IO_file_underflow_mmap,
7646 _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
7647 _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
7648 _IO_file_sync, _IO_file_close_it, _IO_file_finish,
7649 _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
7650 _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
7651 _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
7652 _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
7653 _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
7654 _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
7655 _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
7656 _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
7657 _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
7658 _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
7659 _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
7660 _IO_adjust_column_internal, _IO_default_uflow_internal,
7661 _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
7662 _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
7663 _IO_file_setbuf_internal, _IO_file_seekoff_internal,
7664 _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
7665 _IO_file_close_it_internal, _IO_file_underflow_internal,
7666 _IO_file_overflow_internal, _IO_file_attach_internal,
7667 _IO_file_fopen_internal, _IO_file_sync_internal,
7668 _IO_file_finish_internal, _IO_wfile_xsputn_internal,
7669 _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
7670 _IO_switch_to_wget_mode_internal, _IO_padn_internal,
7671 _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
7672 _IO_seekpos_unlocked): Likewise.
7673 (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
7674 _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
7676 2007-04-16 Jakub Jelinek <jakub@redhat.com>
7678 * locale/programs/locarchive.c (show_archive_content): Fix sizeof
7679 argument in xmalloc size computation.
7681 2007-04-01 Jakub Jelinek <jakub@redhat.com>
7683 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
7684 math_opt_barrier and math_force_eval macros.
7686 2007-03-27 Jakub Jelinek <jakub@redhat.com>
7689 * math/math_private.h (math_opt_barrier, math_force_eval): Define.
7690 * sysdeps/i386/fpu/math_private.h: New file.
7691 * sysdeps/x86_64/fpu/math_private.h: New file.
7692 * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
7693 math_force_eval macros. Use "+m" constraint on asm rather than
7695 * math/s_nextafter.c (__nextafter): Likewise.
7696 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
7698 * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
7699 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
7700 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
7701 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
7702 math_opt_barrier and math_force_eval macros.
7703 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
7704 * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
7705 * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
7706 (__nexttoward): Use math_opt_barrier and
7707 math_force_eval macros. Use "+m" constraint on asm rather than
7708 "=m" and "m". Only use asm to force double result if
7709 FLT_EVAL_METHOD is 2.
7710 * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
7711 (__nexttowardf): Use math_opt_barrier and
7712 math_force_eval macros. Use "+m" constraint on asm rather than
7713 "=m" and "m". Only use asm to force double result if
7714 FLT_EVAL_METHOD is not 0.
7715 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
7716 (__nexttowardf): Use math_opt_barrier and
7717 math_force_eval macros. If FLT_EVAL_METHOD is not 0, force
7718 x to float using asm.
7719 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
7720 (__nldbl_nexttowardf): Use math_opt_barrier and
7721 math_force_eval macros. If FLT_EVAL_METHOD is not 0, force
7722 x to float using asm.
7723 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
7724 (__nexttowardf): Use math_opt_barrier and math_force_eval
7725 macros. If FLT_EVAL_METHOD is not 0, force x to float using asm.
7726 * math/bug-nextafter.c (zero, inf): New variables.
7727 (main): Add new tests.
7728 * math/bug-nexttoward.c (zero, inf): New variables.
7729 (main): Add new tests.
7731 2007-03-22 Jakub Jelinek <jakub@redhat.com>
7734 * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
7735 exceptions both in SW and MXCSR.
7736 * sysdeps/x86_64/fpu/feupdateenv.c: New file.
7737 * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
7738 * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
7739 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
7740 in MXCSR if SSE is available.
7741 * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
7743 (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
7745 * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
7746 Return 0 rather than 1.
7747 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
7748 Remove incorrect part of a comment. Fix argument to feraiseexcept.
7749 * math/test-fenv.c (feholdexcept_tests): New function.
7752 2007-01-05 Richard B. Kreckel <kreckel@ginac.de>
7755 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
7758 2007-04-13 Jakub Jelinek <jakub@redhat.com>
7761 * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
7762 Reported by David Anderson <davea42@earthlink.net>.
7764 2007-04-07 Ulrich Drepper <drepper@redhat.com>
7766 * posix/sys/wait.h: Remove unnecessary forward declaration.
7768 2007-04-05 Jakub Jelinek <jakub@redhat.com>
7770 * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
7771 with obj->do_servers after first_shoot.
7773 2007-04-03 Ulrich Drepper <drepper@redhat.com>
7775 * posix/Makefile (routines): Add sched_cpucount.
7776 (tests): Add tst-cpucount.
7777 * posix/sched_cpucount.c: New file.
7778 * posix/tst-cpucount.c: New file.
7779 * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
7780 * bits/sched.h: Define __CPU_COUNT. Declare __sched_cpucount.
7781 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
7782 * posix/sched.h: Define CPU_COUNT.
7784 2007-03-27 Jakub Jelinek <jakub@redhat.com>
7786 * posix/fnmatch.c (STRUCT): Define.
7787 (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
7788 * posix/fnmatch_loop.c (struct STRUCT): New type.
7789 (FCT): Add ends argument. If ends != NULL and normal * is
7790 seen in the pattern, store current pattern and string pointers
7791 and return. Adjust recursive calls.
7792 (EXT): Adjust FCT callers.
7793 (STRUCT): Undef at the end of the file.
7794 * posix/Makefile (tests): Add tst-fnmatch2.
7795 * posix/tst-fnmatch2.c: New test.
7797 2007-04-01 Jakub Jelinek <jakub@redhat.com>
7799 * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
7802 * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
7803 Change last argument to unsigned int.
7805 2007-03-23 Jakub Jelinek <jakub@redhat.com>
7807 * scripts/check-local-headers.sh: Filter out sys/capability.h.
7809 2007-03-22 Jakub Jelinek <jakub@redhat.com>
7811 * config.h.in (HAVE_LIBCAP): Add.
7812 * nscd/selinux.h: Include sys/capability.h rather than non-existent
7814 * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
7815 free_caps. Cast away const from 4th cap_set_flag argument.
7817 2007-03-26 Ulrich Drepper <drepper@redhat.com>
7819 * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
7821 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7822 Add sync_file_range.
7823 Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
7825 2007-03-19 Steven Munroe <sjmunroe@us.ibm.com>
7827 * sysdeps/powerpc/bits/atomic.h
7828 [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
7829 [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
7830 (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7831 (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
7832 (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7833 (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
7834 * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
7835 Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
7836 (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7837 (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
7838 * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
7839 Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
7840 (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7841 (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
7842 (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7843 (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
7844 (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7845 (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
7846 (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7847 (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
7849 2007-03-20 Jakub Jelinek <jakub@redhat.com>
7851 * sysdeps/unix/sysv/linux/powerpc/libc-start.c
7852 (__cache_line_size): Define the variable here. Add
7853 attribute_hidden, remove weak_extern.
7854 (__libc_start_main): Set __cache_line_size
7856 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
7857 (__cache_line_size): Define the variable here. Add
7858 attribute_hidden, remove weak_extern.
7859 (DL_PLATFORM_AUXV): Set __cache_line_size
7861 * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
7862 weak_extern, add attribute_hidden.
7863 (__elf_machine_runtime_setup): Assume __cache_line_size is always
7865 * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
7867 * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
7869 2007-03-26 Jakub Jelinek <jakub@redhat.com>
7872 * timezone/africa: Update from tzdata2007d.
7873 * timezone/asia: Likewise.
7874 * timezone/australasia: Likewise.
7875 * timezone/backward: Likewise.
7876 * timezone/europe: Likewise.
7877 * timezone/iso3166.tab: Likewise.
7878 * timezone/leapseconds: Likewise.
7879 * timezone/northamerica: Likewise.
7880 * timezone/southamerica: Likewise.
7881 * timezone/zone.tab: Likewise.
7883 * timezone/private.h: Update from tzcode2007d.
7884 * timezone/zdump.c: Likewise.
7885 * timezone/zic.c: Likewise.
7887 2007-03-21 Jakub Jelinek <jakub@redhat.com>
7889 * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
7890 (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
7892 (nis_server_cache_search, nis_server_cache_add): New functions.
7893 (__nisfind_server): Use them. Add dbp and flags argument, if
7894 call __nisbind_create.
7895 (__nisbind_create): Add server_used and current_ep arguments,
7896 only call __nis_findfastest if server_used is ~0.
7897 (__do_niscall2, __prepare_niscall): Adjust callers.
7898 (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
7899 ckey_cache_euid, ckey_cache_lock): New variables.
7900 (get_ckey): New function.
7901 (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
7902 __pmap_getnisport. Save __pmap_getnisport result in
7903 dbp->addr.sin_port if non-zero. Use get_ckey to create conversation
7905 * nis/nis_lookup.c (nis_lookup): Likewise.
7906 * nis/nis_table.c (nis_list): Likewise.
7907 * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
7910 * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
7911 _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
7912 * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
7913 _nss_nisplus_getservbyport_r): Likewise.
7914 * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
7915 _nss_nisplus_getnetbyaddr_r): Likewise.
7916 * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
7917 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
7918 _nss_nisplus_getntohost_r): Likewise.
7919 * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
7920 _nss_nisplus_getrpcbynumber_r): Likewise.
7922 2007-03-20 Jakub Jelinek <jakub@redhat.com>
7924 * configure.in (libc_cv_gnu89_inline): Only do compile test.
7925 * configure: Rebuilt.
7927 * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
7929 * soft-fp/extended.h (_FP_UNION_E): Likewise.
7931 2006-06-07 Joseph Myers <joseph@codesourcery.com>
7934 * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
7937 2007-03-18 Jakub Jelinek <jakub@redhat.com>
7939 * nscd/gai.c: Include alloca.h.
7940 (__libc_use_alloca): Define.
7942 2007-03-16 Jakub Jelinek <jakub@redhat.com>
7944 * elf/dl-open.c (dl_open_worker): Declare l in 2 different
7946 * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
7947 (DL_DST_REQUIRED): Adjust user.
7949 * include/dlfcn.h (struct link_map): New forward decl.
7951 * inet/getnameinfo.c: Include stddef.h.
7952 (getnameinfo): Use offsetof.
7954 * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
7956 * stdio-common/vfprintf.c (_itoa): Undef before redefining.
7958 * string/strerror_l.c: Include stdlib.h.
7960 * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
7961 * config.make.in (gnu89-inline-CFLAGS): New variable.
7962 * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
7964 * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
7965 * argp/argp.h: Use it.
7966 * bits/mathinline.h: Likewise.
7967 * bits/sigset.h: Likewise.
7968 * bits/string.h: Likewise.
7969 * ctype/ctype.h: Likewise.
7970 * hurd/hurd.h: Likewise.
7971 * hurd/hurd/fd.h: Likewise.
7972 * hurd/hurd/port.h: Likewise.
7973 * hurd/hurd/signal.h: Likewise.
7974 * hurd/hurd/threadvar.h: Likewise.
7975 * hurd/hurd/userlink.h: Likewise.
7976 * io/sys/stat.h: Likewise.
7977 * libio/bits/stdio.h: Likewise.
7978 * libio/bits/stdio2.h: Likewise.
7979 * mach/lock-intern.h: Likewise.
7980 * mach/mach/mig_support.h: Likewise.
7981 * math/bits/cmathcalls.h: Likewise.
7982 * posix/bits/unistd.h: Likewise.
7983 * socket/bits/socket2.h: Likewise.
7984 * stdlib/bits/stdlib.h: Likewise.
7985 * stdlib/stdlib.h: Likewise.
7986 * string/argz.h: Likewise.
7987 * string/bits/string2.h: Likewise.
7988 * string/bits/string3.h: Likewise.
7989 * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
7990 * sysdeps/generic/inttypes.h: Likewise.
7991 * sysdeps/generic/machine-lock.h: Likewise.
7992 * sysdeps/generic/machine-sp.h: Likewise.
7993 * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
7994 * sysdeps/i386/i486/bits/string.h: Likewise.
7995 * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
7996 * sysdeps/mach/alpha/machine-lock.h: Likewise.
7997 * sysdeps/mach/alpha/machine-sp.h: Likewise.
7998 * sysdeps/mach/i386/machine-lock.h: Likewise.
7999 * sysdeps/mach/powerpc/machine-lock.h: Likewise.
8000 * sysdeps/mach/powerpc/machine-sp.h: Likewise.
8001 * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
8002 * sysdeps/s390/bits/string.h: Likewise.
8003 * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
8004 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
8005 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
8006 * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
8007 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
8008 * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
8009 * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
8010 * wcsmbs/bits/wchar2.h: Likewise.
8011 * wcsmbs/wchar.h: Likewise.
8012 * stdlib/gmp.h: Likewise. Include <features.h> to get
8013 __extern_inline definition.
8015 2007-03-15 Jakub Jelinek <jakub@redhat.com>
8017 * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
8021 * math/libm-test.inc (log_test): Test -Inf and NaN.
8022 (log10_test, log1p_test, log2_test): Test -Inf.
8023 * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
8024 FE_INVALID when argument is qNaN.
8025 * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
8026 * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
8027 * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
8028 * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
8029 andb $1, %ah with testb $1, %ah, don't test for parity, instead
8030 testb $4, %ah and jump if non-zero.
8031 * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
8032 * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
8035 * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
8036 ancestors with the same depths.
8037 Patch by Niels Moeller <nisse@lysator.liu.se>.
8038 (filter_doc): Don't crash if argp is NULL.
8039 * argp/Makefile (tests): Add tst-argp2.
8040 * argp/tst-argp2.c: New test.
8043 * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
8045 (updwtmp_file): Likewise.
8048 * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
8049 (inet6_opt_append): Don't check extlen is big enough if extbuf
8051 (inet6_opt_finish): Likewise.
8052 * inet/Makefile (tests): Add test-inet6_opt.
8053 * inet/test-inet6_opt.c: New test.
8055 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
8056 reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
8057 NLMSG_ERR. Instead use a page sized buffer.
8058 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
8061 2007-03-14 Richard Henderson <rth@redhat.com>
8063 * sysdeps/alpha/fpu/s_llround.c: New file.
8064 * sysdeps/alpha/fpu/s_llroundf.c: New file.
8065 * sysdeps/alpha/fpu/s_lround.c: New file.
8066 * sysdeps/alpha/fpu/s_lroundf.c: New file.
8067 * sysdeps/alpha/fpu/s_round.c: New file.
8068 * sysdeps/alpha/fpu/s_roundf.c: New file.
8069 * sysdeps/alpha/fpu/s_trunc.c: New file.
8070 * sysdeps/alpha/fpu/s_truncf.c: New file.
8072 * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
8073 * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
8074 * sysdeps/alpha/fpu/s_floor.c: Likewise.
8075 * sysdeps/alpha/fpu/s_floorf.c: Likewise.
8076 * sysdeps/alpha/fpu/s_rint.c: Likewise.
8077 * sysdeps/alpha/fpu/s_rintf.c: Likewise.
8079 * sysdeps/alpha/fpu/s_fmax.S: New file.
8080 * sysdeps/alpha/fpu/s_fmaxf.S: New file.
8081 * sysdeps/alpha/fpu/s_fmin.S: New file.
8082 * sysdeps/alpha/fpu/s_fminf.S: New file.
8083 * sysdeps/alpha/fpu/s_isnan.c: New file.
8084 * sysdeps/alpha/fpu/s_isnanf.c: New file.
8085 * sysdeps/alpha/fpu/s_llrint.c: New file.
8086 * sysdeps/alpha/fpu/s_llrintf.c: New file.
8087 * sysdeps/alpha/fpu/s_lrint.c: New file.
8088 * sysdeps/alpha/fpu/s_lrintf.c: New file.
8089 * sysdeps/alpha/fpu/s_nearbyint.c: New file.
8090 * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
8092 * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
8093 (__fdimf, fdimf, __fdim, fdim): Remove.
8094 (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
8095 (__isnanf, __isnan, __isnanl): New.
8097 2007-03-13 Richard Henderson <rth@redhat.com>
8099 * sysdeps/ieee754/ldbl-128/Makefile: New file.
8101 2007-03-13 Richard Henderson <rth@redhat.com>
8103 * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
8104 * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
8105 * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
8106 * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
8107 * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
8108 * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
8110 2007-03-13 Richard Henderson <rth@redhat.com>
8112 * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
8113 * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
8114 * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
8115 * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
8116 Move to dl-auxv.h; initialize instead of extern weak.
8117 (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
8119 * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
8120 Extern instead of initialized.
8122 2007-03-13 Richard Henderson <rth@redhat.com>
8124 * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
8125 __sigsuspend_nocancel.
8127 2007-03-06 Ulrich Drepper <drepper@redhat.com>
8129 * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
8130 172.16/12 address range.
8132 2007-03-02 Jakub Jelinek <jakub@redhat.com>
8134 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
8135 a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
8138 2007-03-01 Jakub Jelinek <jakub@redhat.com>
8141 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
8143 * math/libm-test.inc (pow_test): Add more tests involving NaNs.
8145 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
8146 for x qNaN and y either +-inf or non-integer value.
8147 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
8148 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
8149 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
8151 2007-02-10 Mike Frysinger <vapier@gentoo.org>
8153 * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
8154 from sysdep_headers.
8156 2007-02-28 Jakub Jelinek <jakub@redhat.com>
8158 * time/tzfile.c (find_transition): Instead of a linear search try to
8159 guess the transition index, use a linear search if the result is at
8160 most 10 transitions away from the guess or binary search otherwise.
8162 2007-02-27 Jakub Jelinek <jakub@redhat.com>
8164 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
8165 memory reallocation.
8167 2007-02-21 Ulrich Drepper <drepper@redhat.com>
8169 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
8171 Optimize use of TOLOWER.
8174 * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
8175 * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8176 * sysdeps/i386/fpu/e_fmod.S: Likewise.
8179 * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
8180 * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
8183 * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
8184 (open_dir_stream): Likewise.
8185 * io/Makefile (tests): Add bug-ftw5.
8186 * io/bug-ftw5.c: New file.
8188 * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
8189 * nscd/servicescache.c (cache_addserv): Likewise.
8191 * nscd/grpcache.c (cache_addgr): In case a record changed on
8192 refresh, adjust key_copy.
8195 * nscd/pwdcache.c (cache_addpw): In case a record changed on
8196 refresh, adjust key_copy.
8199 * stdio-common/printf_fp.c (___printf_fp): Handle a few more
8201 * stdio-common/tfformat.c (sprint_doubles): Some more tests.
8203 2007-02-19 Ulrich Drepper <drepper@redhat.com>
8205 * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
8208 * stdio-common/vfscanf.c: Small cleanups throughout.
8210 2007-02-18 Ulrich Drepper <drepper@redhat.com>
8213 * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
8214 * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8215 * sysdeps/i386/fpu/e_fmod.S: Likewise.
8216 Patch by Jared Casper <jaredcasper@gmail.com>.
8218 * sysdeps/unix/closedir.c: Outside libc don't use locking.
8219 * sysdeps/unix/opendir.c: Likewise.
8220 * sysdeps/unix/readdir.c: Likewise.
8223 * stdio-common/vfscanf.c: Handle localized digits etc for floating
8225 Patch mostly by Hamed Malek <hamed@farsiweb.info>.
8227 * stdio-common/vfscanf.c: Fix problems in width accounting.
8228 * stdio-common/tst-sscanf.c (double_tests): New tests.
8229 (main): Hook them up.
8231 * stdio-common/vfscanf.c: Remove unused WIDTH handling.
8232 More simplifications of floating-point reader.
8234 * stdio-common/Makefile (tests): Add tst-swscanf.
8235 * stdio-common/tst-sscanf.c: Make tests usable for swscanf
8237 * stdio-common/tst-swscanf.c: New file.
8239 2007-02-17 Ulrich Drepper <drepper@redhat.com>
8242 * libio/stdio.h: Define struct _IO_FILE in global namespace.
8243 * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
8244 Remove using for __jmp_buf_tag.
8245 * locale/locale.h (struct lconv): Also define in std namespace.
8246 * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
8249 * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
8250 using __libc_enable_secure.
8253 * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
8256 * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
8257 of names for ellipsises.
8260 * malloc/memusage.sh: Cleanups.
8261 * debug/xtrace.sh: Quoting and trap changes.
8263 2007-02-16 Ulrich Drepper <drepper@redhat.com>
8265 * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
8267 * locale/iso-3166.def: Update entry for Serbia.
8268 * locale/iso-4217.def: Define RSD, remove CSD.
8270 * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
8271 and 64-bit operations.
8274 * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
8277 * nscd/nscd.c (parse_opt): One more conversion to use send instead
8280 2007-02-15 Ulrich Drepper <drepper@redhat.com>
8283 * assert/assert.h (assert): Simplify.
8284 (assert_perror): Likewise.
8285 Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
8287 * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
8290 * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
8291 change: don't pass NULL in place of an integer.
8293 2007-02-02 Bruno Haible <bruno@clisp.org>
8296 * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
8297 Add mapping for U+327E.
8298 * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
8299 * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8300 mapping of 0xD9 0xE8.
8301 * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
8303 Reported by Jungshik Shin <jungshik@google.com>.
8306 * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8307 mapping of 0xD9 0xE6 and of 0xD9 0xE7.
8308 Reported by Jungshik Shin <jungshik@google.com>.
8310 2007-02-14 Ulrich Drepper <drepper@redhat.com>
8312 * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
8316 * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
8317 byte variants. Patch mostly be tom@tommay.net.
8319 2007-02-14 Jakub Jelinek <jakub@redhat.com>
8322 * posix/glob.c (attribute_hidden): Define if not defined.
8323 (glob): Unescape dirname, filename or username when needed and not
8324 GLOB_NOESCAPE. Handle \/ correctly. Handle GLOB_MARK if filename
8325 is NULL. Handle unescaped [ in pattern without closing ].
8326 Don't pass GLOB_CHECK down to recursive glob for directories.
8327 (__glob_pattern_type): New function.
8328 (__glob_pattern_p): Implement using __glob_pattern_type.
8329 (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
8330 characters and backslashes if not GLOB_NOESCAPE or unterminated [.
8331 Remove unreachable code.
8332 * posix/globtest.sh: Add a couple of new tests.
8334 2007-02-13 Ulrich Drepper <drepper@redhat.com>
8336 * po/ru.po: Update from translation team.
8338 2007-02-12 Jakub Jelinek <jakub@redhat.com>
8340 * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
8341 to the list of i486+ CPUs.
8342 * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8344 2007-02-12 Ulrich Drepper <drepper@redhat.com>
8346 * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
8347 * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
8350 2007-02-09 Ulrich Drepper <drepper@redhat.com>
8352 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
8354 * resolv/res_init.c (res_setoptions): Recognize edns0 option.
8355 * resolv/res_mkquery.c: Define __res_nopt.
8356 * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
8357 try adding EDNS0 record.
8358 * resolv/res_send.c (send_dg): If request failed with FORMERR and
8359 EDNS0 record was send make sure we don't try it again.
8360 * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
8361 * include/resolv.h: Declare __res_nopt.
8363 2007-02-08 Jakub Jelinek <jakub@redhat.com>
8366 * time/strptime_l.c (__strptime_internal): Set have_mon for
8367 %b/%B/%h. Set have_mon and have_mday if tm_mon and tm_mday
8368 have been computed from tm_yday and tm_year. Don't crash
8369 in day_of_the_week or day_of_the_year if not have_mon
8370 and tm_mon contains bogus value.
8371 * time/Makefile (tests): Add tst-strptime3.
8372 * time/tst-strptime3.c: New test.
8374 2007-02-05 Jakub Jelinek <jakub@redhat.com>
8377 * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
8378 bit for RE_HAT_LISTS_NOT_NEWLINE.
8379 (build_charclass_op): Remove bogus comment.
8380 * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
8381 * posix/bug-regex27.c: New test.
8382 * posix/bug-regex28.c: New test.
8384 2007-02-03 Ulrich Drepper <drepper@redhat.com>
8386 * po/sv.po: Update from translation team.
8388 2007-02-02 Ulrich Drepper <drepper@redhat.com>
8390 * nscd/nscd_helper.c (open_socket): Minor size optimization.
8392 2007-02-02 Jakub Jelinek <jakub@redhat.com>
8394 * include/locale.h (__uselocale): Add libc_hidden_proto.
8395 * locale/uselocale.c (__uselocale): Add libc_hidden_def.
8397 * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
8400 2007-02-01 Ulrich Drepper <drepper@redhat.com>
8402 * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
8404 (PTR_DEMANGLE): Real definition now that it's not the same as
8406 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
8408 * string/strerror_l.c: New file.
8409 * string/Makefile (routines): Add strerror_l.
8410 * string/string.h: Declare strerror_l.
8411 * string/Versions: Export strerror_l for GLIBC_2.6.
8413 2007-01-31 Ulrich Drepper <drepper@redhat.com>
8415 * nscd/nscd_helper.c (open_socket): Now takes request type and key
8416 as parameter. Construct request record. Try sending request
8417 before the first poll use, it usually succeeds. Adjust all
8419 * nscd/nscd-client.h: Define MAXKEYLEN.
8420 * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
8422 2007-01-31 Jakub Jelinek <jakub@redhat.com>
8424 * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
8426 * nscd/nscd_helper.c: Include string.h.
8427 (__nscd_cache_search): Remove const qualifier from return value.
8428 On strict alignment architectures check hash entry and data head
8430 * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
8431 mmapped data during GC cycle contains garbage. If
8432 __nscd_drop_map_ref fails, decrement mapped->counter when returning
8433 error or if retrying with NO_MAPPING, only __nscd_unmap if counter
8435 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
8436 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
8437 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
8438 * nscd/nscd_getai.c (__nscd_getai): Likewise.
8439 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
8441 2007-01-30 Ulrich Drepper <drepper@redhat.com>
8443 * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
8445 2007-01-26 Ulrich Drepper <drepper@redhat.com>
8447 * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
8448 names not numbers in cfi_*.
8450 2007-01-26 Andreas Jaeger <aj@suse.de>
8452 * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
8453 ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
8454 Correct values of PER_HPUX and PER_OSF4.
8456 2007-01-24 Ulrich Drepper <drepper@redhat.com>
8458 * elf/dl-minimal.c: Undefine _itoa first.
8459 * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
8460 * malloc/mtrace.c: Revert last change.
8461 * posix/wordexp.c: Likewise.
8463 2007-01-24 Jakub Jelinek <jakub@redhat.com>
8465 * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
8466 and __geode__ to the list of i486+ CPUs.
8467 * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8469 2007-01-23 Ulrich Drepper <drepper@redhat.com>
8471 * stdio-common/_itoa.c: Include <limits.h>.
8472 * stdio-common/_itowa.c: Likewise.
8474 2007-01-22 Ulrich Drepper <drepper@redhat.com>
8476 * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
8478 * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
8480 * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
8482 * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
8486 * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
8487 * stdio-common/Makefile (tests): Add bug17.
8488 * stdio-common/bug17.c: New file.
8490 2007-01-19 Ulrich Drepper <drepper@redhat.com>
8492 * iconvdata/brf.c: New file.
8493 * iconvdata/testdata/BRF: New file.
8494 * iconvdata/testdata/BRF..UTF8: New file.
8495 Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
8496 * iconvdata/Makefile: Add rules to build BRF.
8497 * iconvdata/TESTS: Add BRF entry.
8498 * iconvdata/gconv-modules: Likewise.
8499 * iconvdata/tst-tables.sh: Likewise.
8501 2007-01-18 Anton Nikishaev <anton.nik@gmail.com>
8503 * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
8504 type `long long int', not `long int'.
8507 2007-01-18 Ulrich Drepper <drepper@redhat.com>
8509 * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
8510 of values on 64-bit platforms which are too large.
8512 2007-01-12 Steven Munroe <sjmunroe@us.ibm.com>
8513 Joe Kerian <jkerian@us.us.ibm.com>
8516 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
8517 <math_ldbl_opt.h>. Remove weak_alias. Use long_double_symbol macro.
8518 (__copysignl): Use signbit() for comparison.
8519 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
8520 SET_LDOUBLE_WORDS64.
8523 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
8524 (__ceill): Remove calls to fegetround(), fesetround().
8525 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
8526 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
8527 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
8529 2007-01-17 Jakub Jelinek <jakub@redhat.com>
8531 * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
8533 * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
8535 2007-01-17 Ulrich Drepper <drepper@redhat.com>
8537 * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
8539 * csu/libc-start.c: Likewise.
8541 2007-01-16 Ulrich Drepper <drepper@redhat.com>
8543 * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
8546 2007-01-15 Ulrich Drepper <drepper@redhat.com>
8548 * nscd/connections.c (servinfo): Renamed to reqinfo. Change all
8550 (handle_request): Remove unnecessary tests.
8552 * nscd/cache.c (cache_add): Record the failure to add to the cache.
8554 2007-01-15 Jakub Jelinek <jakub@redhat.com>
8556 * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
8557 workbits in semi-raw fraction.
8559 * math/test-misc.c: Add new tests.
8561 2007-01-14 Steven Munroe <sjmunroe@us.ibm.com>
8563 * math/basic-test.c: Include test-skeleton.c.
8564 (TEST_TRUNC): Define.
8565 (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
8566 (main): Rename to ...
8567 (do_test): ...this. Run new tests.
8568 (TEST_FUNCTION): Define.
8570 2006-10-05 Steven Munroe <sjmunroe@us.ibm.com>
8571 Joe Kerian <jkerian@us.us.ibm.com>
8574 * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
8575 handling for high words.
8576 * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
8577 and overflow for infinity.
8579 2007-01-15 Ulrich Drepper <drepper@redhat.com>
8581 * nscd/connections.c (handle_request): Add a __builtin_expect.
8583 * nscd/connections.c (serv2db): Change type into structure which
8584 also says whether this is a request for data. Renamed to
8585 servinfo. All users changed.
8586 (handle_request): Much simpler test whether we should search the cache.
8588 * nscd/connections.c (handle_request): Fix thinko in selinux test
8591 * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
8592 * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
8593 it before getting dl_load_lock and then relock.
8594 (_dl_lookup_symbol_x): Pass flags to add_dependency.
8595 When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
8596 case we unlocked the scope.
8597 * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
8598 _dl_lookup_symbol_x in case we locked the scope.
8599 (_dl_profile_fixup): Likewise.
8600 * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
8601 set DL_LOOKUP_SCOPE_LOCK.
8603 2007-01-13 Ulrich Drepper <drepper@redhat.com>
8605 * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
8606 CFLAGS-getsrvbynpt_r.c.
8607 * nscd/getsrvbynm_r.c: New file.
8608 * nscd/getsrvbypt_r.c: New file.
8609 * nscd/nscd_getserv_r.c: New file.
8610 * nscd/servicescache.c: New file.
8611 * nscd/Makefile (routines): Add nscd_getserv_r.
8612 (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
8613 Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
8614 CFLAGS-getsrvbypt_r.c.
8615 * nscd/cache.c (prune_cache): Rewrite to get re-add function from
8616 table. Add entries for services database.
8617 * nscd/connections.c (serv2str): Mark as const. Add entries for
8619 (dbs): Add .reset_res and servdb initialization.
8620 (serv2db): Add entries for services database.
8621 (verify_persistent_db): Accept dbnr == servdb.
8622 (invalidate_cache): Rewrite database name recognition to use a table.
8623 Call res_init() if .reset_res is set for database.
8624 (handle_request): Add code to handle services database.
8625 * nscd/gai.c: Don't define __getservbyname_r.
8626 * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
8627 GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
8628 (serv_response_header): Define.
8629 (struct datahead): Add serv_response_header member.
8630 * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
8632 * nscd/nscd.conf: Add entries for services database.
8633 * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
8634 Declare serv_iov_disabled.
8635 Declare addservbyname, readdservbyname, addservbyport, and
8637 * nscd/nscd_conf.c (dbnames): Mark as const. Add services entry.
8638 (find_db): Fix error message.
8639 * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
8640 __nscd_getservbyname_r, and __nscd_getservbyport_r.
8641 * nscd/selinux.c (perms): Add entries for services database.
8642 * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
8643 * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
8645 * nscd/grpcache.c: Remove obsolete code. Cleanups.
8646 * nscd/hstcache.c: Likewise.
8647 * nscd/pwdcache.c: Likewise.
8649 * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
8650 computation of keylen.
8652 * include/string.h: Only redefine strndupa if this is really for
8655 2007-01-12 Ulrich Drepper <drepper@redhat.com>
8657 * nscd/nscd_gethst_r.c: Minor cleanups.
8659 * nscd/connections.c (handle_request): Check selinux permissions
8660 for all non-admin commands.
8662 * sysdeps/i386/i486/bits/atomic.h: Define
8663 atomic_compare_and_exchange_val_acq,
8664 atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
8665 using __sync_* built-ins for gcc >= 4.1.
8666 * sysdeps/x86_64/bits/atomic.h: Likewise.
8669 * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
8672 2007-01-05 Steven Munroe <sjmunroe@us.ibm.com>
8674 * stdlib/tst-makecontext.c: Include errno.h. Change main()
8675 to do_test(). Define TEST_FUNCTION. Include test-skeleton.c.
8676 (do_test): Check errno and exit(0) if ENOSYS.
8678 2007-01-11 Jakub Jelinek <jakub@redhat.com>
8680 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
8681 thousands separators.
8682 * stdlib/Makefile: Add rules to build and run tst-strtod4.
8683 * stdlib/tst-strtod4.c: New test.
8686 * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
8687 hexadecimal digit should accept just the initial 0.
8688 * stdlib/tst-strtod2.c (tests): New variable.
8689 (do_test): Run several tests rather than just one.
8691 2007-01-11 Jakub Jelinek <jakub@redhat.com>
8693 * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
8694 * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
8696 2007-01-10 Ulrich Drepper <drepper@redhat.com>
8698 * io/fts.c: Make sure fts_cur is always valid after return from
8700 Patch by Miloslav Trmac <mitr@redhat.com>.
8702 2006-10-27 Richard Sandiford <richard@codesourcery.com>
8704 * elf/elf.h (R_MIPS_GLOB_DAT): Define.
8705 (R_MIPS_NUM): Bump by 1.
8707 2007-01-03 Jakub Jelinek <jakub@redhat.com>
8709 * posix/execvp.c: Include alloca.h.
8710 (allocate_scripts_argv): Renamed to...
8711 (scripts_argv): ... this. Don't allocate buffer here nor count
8713 (execvp): Use alloca if possible.
8714 * posix/Makefile: Add rules to build and run tst-vfork3 test.
8715 * posix/tst-vfork3.c: New test.
8717 2007-01-03 Ulrich Drepper <drepper@redhat.com>
8719 * string/Makefile (tst-strxfrm2-ENV): Define.
8720 * stdlib/Makefile (tst-strtod3-ENV): Define.
8722 2007-01-02 Ulrich Drepper <drepper@redhat.com>
8724 * posix/getconf.c: Update copyright year.
8725 * nss/getent.c: Likewise.
8726 * iconv/iconvconfig.c: Likewise.
8727 * iconv/iconv_prog.c: Likewise.
8728 * elf/ldconfig.c: Likewise.
8729 * catgets/gencat.c: Likewise.
8730 * csu/version.c: Likewise.
8731 * elf/ldd.bash.in: Likewise.
8732 * elf/sprof.c (print_version): Likewise.
8733 * locale/programs/locale.c: Likewise.
8734 * locale/programs/localedef.c: Likewise.
8735 * nscd/nscd.c (print_version): Likewise.
8736 * debug/xtrace.sh: Likewise.
8737 * malloc/memusage.sh: Likewise.
8738 * malloc/mtrace.pl: Likewise.
8739 * debug/catchsegv.sh: Likewise.
8741 2006-12-24 Ulrich Drepper <drepper@redhat.com>
8743 * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
8746 2006-12-23 Ulrich Drepper <drepper@redhat.com>
8748 * posix/wordexp.c: Remove some unnecessary tests.
8750 2006-12-22 Gavin Romig-Koch <gavin@redhat.com>
8752 * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
8753 blacklist the group till after we look it up.
8755 2006-12-21 Ulrich Drepper <drepper@redhat.com>
8757 * include/atomic.h (atomic_forced_read): New macro.
8759 2006-12-20 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
8761 * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
8763 2006-12-19 Jakub Jelinek <jakub@redhat.com>
8765 * nss/getXXbyYY_r.c: Include atomic.h.
8766 (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
8767 add atomic_write_barrier () in between.
8769 * stdlib/Makefile (tests): Add tst-makecontext.
8770 * stdlib/tst-makecontext.c: New test.
8772 * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
8773 (__makecontext): Don't realign uc_mcontext.uc_regs.
8775 2006-11-28 Jakub Jelinek <jakub@redhat.com>
8777 * elf/dl-support.c: Include dl-procinfo.h.
8778 * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
8779 PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
8780 PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
8782 (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
8783 hardcoded constants.
8784 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
8785 PPC_PLATFORM_* macros for array designators.
8787 2006-11-11 Steven Munroe <sjmunroe@us.ibm.com>
8789 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
8790 names to the beginning.
8791 (_dl_powerpc_platforms): Add "power6x".
8792 * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
8793 (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
8794 (_DL_PLATFORMS_COUNT): Increase.
8795 (_dl_string_platform): Handle power6x case.
8796 * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
8797 PPC_FEATURE_POWER6_EXT): Define.
8798 (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
8800 2006-12-18 Jakub Jelinek <jakub@redhat.com>
8803 * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
8804 [-2^31 .. 2^31) range.
8805 * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
8807 * stdlib/tst-rand48-2.c: New test.
8808 * stdlib/Makefile (tests): Add tst-rand48-2.
8810 2006-12-14 Jakub Jelinek <jakub@redhat.com>
8812 * misc/tst-pselect.c (do_test): Fix sigblock argument.
8814 2006-12-14 Ulrich Drepper <drepper@redhat.com>
8816 * misc/tst-pselect.c (do_test): Make sure the helper process is
8817 terminating when the test is aborted.
8819 2006-12-13 Ulrich Drepper <drepper@redhat.com>
8821 * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
8822 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
8823 Handle relatime mount option.
8826 * libio/Makefile (tests): Add tst-setvbuf1.
8827 * libio/tst-setvbuf1.c: New file.
8829 2006-12-08 Jakub Jelinek <jakub@redhat.com>
8832 * libio/genops.c (__uflow): Fix a typo.
8833 * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
8834 nor set _IO_LINE_BUF bit here. Size the wide buffer based on
8835 the narrow buffer size.
8837 2006-11-24 Jakub Jelinek <jakub@redhat.com>
8840 * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
8841 * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
8842 _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
8844 * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
8845 _IO_wstr_finish): Likewise.
8846 * libio/wmemstream.c (open_wmemstream): Likewise.
8847 * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
8848 even for wide streams.
8850 2006-12-13 Jakub Jelinek <jakub@redhat.com>
8852 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
8855 2006-12-11 Ulrich Drepper <drepper@redhat.com>
8857 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
8858 separators also if no non-zero digits found.
8859 * stdlib/Makefile (tests): Add tst-strtod3.
8861 2006-12-09 Ulrich Drepper <drepper@redhat.com>
8864 * include/features.h: Fix comment about default value for
8868 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
8869 empty parsed strings.
8870 * stdlib/Makefile (tests): Add tst-strtod2.
8871 * stdlib/tst-strtod2.c: New file.
8874 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
8876 * stdlib/Makefile (tests): Add tst-atof2.
8877 * stdlib/tst-atof2.c: New file.
8880 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
8881 correctly if removing trailing zero of hex-float.
8882 * stdlib/Makefile (tests): Add tst-atof1.
8883 * stdlib/tst-atof1.c: New file.
8885 2006-12-09 Jakub Jelinek <jakub@redhat.com>
8887 * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
8888 Start searching for next comma at p rather than rest.
8889 * misc/Makefile (tests): Add tst-mntent2.
8890 * misc/tst-mntent2.c: New test.
8892 * misc/getusershell.c (initshells): Check for integer overflows.
8893 Make strings buffer one bigger as fgets always succeeds when second
8894 argument is 1. Don't use calloc for shells array. Disallow
8897 2006-12-08 Ulrich Drepper <drepper@redhat.com>
8899 * malloc/memusage.c: Handle realloc with new size of zero and
8900 non-NULL pointer correctly.
8901 (me): Really write first record twice.
8902 (struct entry): Make format bi-arch safe.
8903 (dest): Write out more realloc statistics.
8904 * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
8906 2006-12-05 Jakub Jelinek <jakub@redhat.com>
8908 * nis/nis_subr.c (nis_getnames): Revert last change.
8910 2006-12-04 Jakub Jelinek <jakub@redhat.com>
8912 * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
8913 (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
8914 * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
8915 (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
8917 * io/Makefile: Add rules to build and run tst-ttyname_r test.
8918 * io/tst-ttyname_r.c: New test.
8920 2006-12-03 Kaz Kojima <kkojima@rr.iij4u.or.jp>
8922 * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
8924 2006-11-30 H.J. Lu <hongjiu.lu@intel.com>
8926 * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
8929 2006-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
8931 * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
8932 `clone' function to ensure proper unwinding stop of gdb.
8933 * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
8935 2006-12-01 Ulrich Drepper <drepper@redhat.com>
8937 * nscd/nscd.init: Remove obsolete and commented-out -S option
8940 2006-11-23 Jakub Jelinek <jakub@redhat.com>
8943 * manual/string.texi (strncmp): Fix pastos from wcscmp description.
8946 * manual/string.texi (strtok): Remove duplicate paragraph.
8948 2006-12-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8950 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
8951 libgcc not supporting `rflags' unwinding (register # >= 17).
8953 2006-11-30 Jakub Jelinek <jakub@redhat.com>
8955 * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
8958 2006-11-29 Daniel Jacobowitz <dan@codesourcery.com>
8959 Jakub Jelinek <jakub@redhat.com>
8960 Jan Kratochvil <jan.kratochvil@redhat.com>
8962 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
8964 * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
8965 'restore_rt' even in the 'signal' directory.
8966 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
8968 2006-11-27 Jakub Jelinek <jakub@redhat.com>
8971 * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
8972 malloc crashed. Don't allocate memory unnecessarily in each
8975 2006-10-21 Jakub Jelinek <jakub@redhat.com>
8977 * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
8979 2006-11-20 Ulrich Drepper <drepper@redhat.com>
8981 * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
8983 2006-11-18 Bruno Haible <bruno@clisp.org>
8985 * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
8986 __sysconf only after having tried to call getgroups32.
8988 2006-11-19 Ulrich Drepper <drepper@redhat.com>
8990 * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
8991 addresses for IPv4 queries if they can be mapped.
8993 2006-11-16 Jakub Jelinek <jakub@redhat.com>
8995 * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
8996 * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
8997 (signmask): Add .size directive.
8998 (othermask): Add .type directive.
9000 2006-11-14 Ulrich Drepper <drepper@redhat.com>
9002 * po/nl.po: Update from translation team.
9004 * timezone/zdump.c: Redo fix for BZ #3137.
9006 2006-11-14 Jakub Jelinek <jakub@redhat.com>
9008 * nss/nss_files/files-alias.c (get_next_alias): Set line back
9009 to first_unused after parsing :include: file.
9011 2006-11-10 Ulrich Drepper <drepper@redhat.com>
9013 * timezone/africa: Update from tzdata2006o.
9014 * timezone/antarctica: Likewise.
9015 * timezone/asia: Likewise.
9016 * timezone/australasia: Likewise.
9017 * timezone/backward: Likewise.
9018 * timezone/europe: Likewise.
9019 * timezone/iso3166.tab: Likewise.
9020 * timezone/northamerica: Likewise.
9021 * timezone/southamerica: Likewise.
9022 * timezone/zone.tab: Likewise.
9024 * time/tzfile.c (__tzfile_read): Extend to handle new file format
9025 on machines with 64-bit time_t.
9027 * timezone/checktab.awk: Update from tzcode2006o.
9028 * timezone/ialloc.c: Likewise.
9029 * timezone/private.h: Likewise.
9030 * timezone/scheck.c: Likewise.
9031 * timezone/tzfile.h: Likewise.
9032 * timezone/tzselect.ksh: Likewise.
9033 * timezone/zdump.c: Likewise.
9034 * timezone/zic.c: Likewise.
9037 * elf/ldconfig.c (main): Call setlocale and textdomain.
9038 Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
9041 * manual/argp.texi: Fix typos.
9042 * manual/charset.texi: Likewise.
9043 * manual/errno.texi: Likewise.
9044 * manual/filesys.texi: Likewise.
9045 * manual/lang.texi: Likewise.
9046 * manual/maint.texi: Likewise.
9047 * manual/memory.texi: Likewise.
9048 * manual/message.texi: Likewise.
9049 * manual/resource.texi: Likewise.
9050 * manual/search.texi: Likewise.
9051 * manual/signal.texi: Likewise.
9052 * manual/startup.texi: Likewise.
9053 * manual/stdio.texi: Likewise.
9054 * manual/sysinfo.texi: Likewise.
9055 * manual/syslog.texi: Likewise.
9056 * manual/time.texi: Likewise.
9057 Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9060 * sunrpc/clnt_raw.c: Minimal message improvements.
9061 * sunrpc/pm_getmaps.c: Likewise.
9062 * nis/nss_nisplus/nisplus-publickey.c: Likewise.
9063 * nis/nis_print_group_entry.c: Likewise.
9064 * locale/programs/repertoire.c: Likewise.
9065 * locale/programs/charmap.c: Likewise.
9066 * malloc/memusage.sh: Likewise.
9067 * elf/dl-deps.c: Likewise.
9068 * locale/programs/ld-collate.c: Likewise.
9069 * libio/vswprintf.c: Likewise.
9070 * malloc/memusagestat.c: Likewise.
9071 * sunrpc/auth_unix.c: Likewise.
9072 * sunrpc/rpc_main.c: Likewise.
9073 * nscd/cache.c: Likewise.
9074 * locale/programs/repertoire.c: Unify output messages.
9075 * locale/programs/charmap.c: Likewise.
9076 * locale/programs/ld-ctype.c: Likewise.
9077 * locale/programs/ld-monetary.c: Likewise.
9078 * locale/programs/ld-numeric.c: Likewise.
9079 * locale/programs/ld-time.c: Likewise.
9080 * elf/ldconfig.c: Likewise.
9081 * nscd/selinux.c: Likewise.
9082 * elf/cache.c: Likewise.
9083 Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
9086 * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
9090 2006-11-10 Jakub Jelinek <jakub@redhat.com>
9092 * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
9093 if N is one bigger than return value.
9094 * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
9095 and l1 last arguments, if buf is defined, verify the return value
9096 equals to strlen (buf) and verify no byte beyond passed length
9099 2006-11-10 Ulrich Drepper <drepper@redhat.com>
9101 * po/sv.po: Update from translation team.
9103 2006-11-09 Ulrich Drepper <drepper@redhat.com>
9105 * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
9108 2006-11-10 Jakub Jelinek <jakub@redhat.com>
9110 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
9113 * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
9114 Use __new_sys_siglist instead of _sys_siglist_internal as
9115 second macro argument.
9116 (_old_sys_siglist): Use declare_symbol_alias macro instead of
9119 2006-11-09 Ulrich Drepper <drepper@redhat.com>
9122 * posix/unistd.h (sysconf): Remove const attribute.
9124 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
9125 temporary or deprecated addresses.
9126 Patch by Sridhar Samudrala <sri@us.ibm.com>.
9128 * string/Makefile (tests): Add tst-strxfrm2.
9129 * string/tst-strxfrm2.c: New file.
9131 2006-10-09 Jakub Jelinek <jakub@redhat.com>
9133 * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
9134 rather than r->r_brk.
9136 2006-11-08 Jakub Jelinek <jakub@redhat.com>
9138 * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
9139 optimization even if needed > n.
9141 * elf/dl-load.c (decompose_rpath): Return bool rather than void.
9142 If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
9143 return false, otherwise return true.
9144 (cache_rpath): Return decompose_rpath return value.
9146 2006-11-07 Jakub Jelinek <jakub@redhat.com>
9148 * include/libc-symbols.h (declare_symbol): Rename to...
9149 (declare_symbol_alias): ... this. Add ORIGINAL argument, imply
9150 strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
9152 * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
9154 * sysdeps/gnu/siglist.c: Likewise.
9156 2006-11-03 Steven Munroe <sjmunroe@us.ibm.com>
9158 * sysdeps/powerpc/fpu/bits/mathinline.h
9159 [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
9160 * sysdeps/powerpc/fpu/math_private.h: ...here. New file.
9162 2006-11-05 Ulrich Drepper <drepper@redhat.com>
9164 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
9165 Update handling of cache descriptor 0x49 for new models.
9166 * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
9169 2006-11-02 Jakub Jelinek <jakub@redhat.com>
9171 * malloc/memusage.c (dest): Reset not_me back to false after
9172 printing statistics.
9174 2006-11-02 Ulrich Drepper <drepper@redhat.com>
9176 * configure.in: Work around ld --help change and avoid -z relro
9177 test completely if the architecture doesn't care about security.
9179 2006-11-01 Ulrich Drepper <drepper@redhat.com>
9181 * po/sv.po: Update from translation team.
9183 2006-10-31 Ulrich Drepper <drepper@redhat.com>
9185 * stdlib/atexit.c (atexit): Don't mark as hidden when used to
9186 generate compatibility version.
9188 2006-10-29 Ulrich Drepper <drepper@redhat.com>
9190 * configure.in: Relax -z relro requirement a bit.
9192 * po/sv.po: Update from translation team.
9194 2006-10-29 Jakub Jelinek <jakub@redhat.com>
9196 * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
9197 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
9198 * elf/dl-close.c (_dl_close_worker): Likewise.
9199 * elf/dl-open.c (_dl_open_worker): Likewise.
9200 * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
9202 2006-10-27 Ulrich Drepper <drepper@redhat.com>
9204 * configure.in: Require assembler support for visibility, compiler
9205 support for visibility and aliases, linker support for various -z
9207 * Makeconfig: Remove conditional code which now is unnecessary.
9208 * config.h.in: Likewise.
9209 * config.make.in: Likewise.
9210 * dlfcn/Makefile: Likewise.
9211 * elf/Makefile: Likewise.
9212 * elf/dl-load.c: Likewise.
9213 * elf/rtld.c: Likewise.
9214 * include/libc-symbols.h: Likewise.
9215 * include/stdio.h: Likewise.
9216 * io/Makefile: Likewise.
9217 * io/fstat.c: Likewise.
9218 * io/fstat64.c: Likewise.
9219 * io/fstatat.c: Likewise.
9220 * io/fstatat64.c: Likewise.
9221 * io/lstat.c: Likewise.
9222 * io/lstat64.c: Likewise.
9223 * io/mknod.c: Likewise.
9224 * io/mknodat.c: Likewise.
9225 * io/stat.c: Likewise.
9226 * io/stat64.c: Likewise.
9227 * libio/stdio.c: Likewise.
9228 * nscd/Makefile: Likewise.
9229 * stdlib/Makefile: Likewise.
9230 * stdlib/atexit.c: Likewise.
9231 * sysdeps/generic/ldsodefs.h: Likewise.
9232 * sysdeps/i386/dl-machine.h: Likewise.
9233 * sysdeps/i386/sysdep.h: Likewise.
9234 * sysdeps/i386/i686/memcmp.S: Likewise.
9235 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
9236 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
9237 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
9239 * Makerules: USE_TLS support is now default.
9240 * tls.make.c: Likewise.
9241 * csu/Versions: Likewise.
9242 * csu/libc-start.c: Likewise.
9243 * csu/libc-tls.c: Likewise.
9244 * csu/version.c: Likewise.
9245 * dlfcn/dlinfo.c: Likewise.
9246 * elf/dl-addr.c: Likewise.
9247 * elf/dl-cache.c: Likewise.
9248 * elf/dl-close.c: Likewise.
9249 * elf/dl-iteratephdr.c: Likewise.
9250 * elf/dl-load.c: Likewise.
9251 * elf/dl-lookup.c: Likewise.
9252 * elf/dl-object.c: Likewise.
9253 * elf/dl-open.c: Likewise.
9254 * elf/dl-reloc.c: Likewise.
9255 * elf/dl-support.c: Likewise.
9256 * elf/dl-sym.c: Likewise.
9257 * elf/dl-sysdep.c: Likewise.
9258 * elf/dl-tls.c: Likewise.
9259 * elf/ldconfig.c: Likewise.
9260 * elf/rtld.c: Likewise.
9261 * elf/tst-tls-dlinfo.c: Likewise.
9262 * elf/tst-tls1.c: Likewise.
9263 * elf/tst-tls10.h: Likewise.
9264 * elf/tst-tls14.c: Likewise.
9265 * elf/tst-tls2.c: Likewise.
9266 * elf/tst-tls3.c: Likewise.
9267 * elf/tst-tls4.c: Likewise.
9268 * elf/tst-tls5.c: Likewise.
9269 * elf/tst-tls6.c: Likewise.
9270 * elf/tst-tls7.c: Likewise.
9271 * elf/tst-tls8.c: Likewise.
9272 * elf/tst-tls9.c: Likewise.
9273 * elf/tst-tlsmod1.c: Likewise.
9274 * elf/tst-tlsmod13.c: Likewise.
9275 * elf/tst-tlsmod13a.c: Likewise.
9276 * elf/tst-tlsmod14a.c: Likewise.
9277 * elf/tst-tlsmod2.c: Likewise.
9278 * elf/tst-tlsmod3.c: Likewise.
9279 * elf/tst-tlsmod4.c: Likewise.
9280 * elf/tst-tlsmod5.c: Likewise.
9281 * elf/tst-tlsmod6.c: Likewise.
9282 * include/errno.h: Likewise.
9283 * include/link.h: Likewise.
9284 * include/tls.h: Likewise.
9285 * locale/global-locale.c: Likewise.
9286 * locale/localeinfo.h: Likewise.
9287 * malloc/arena.c: Likewise.
9288 * malloc/hooks.c: Likewise.
9289 * malloc/malloc.c: Likewise.
9290 * resolv/Versions: Likewise.
9291 * sysdeps/alpha/dl-machine.h: Likewise.
9292 * sysdeps/alpha/libc-tls.c: Likewise.
9293 * sysdeps/generic/ldsodefs.h: Likewise.
9294 * sysdeps/generic/tls.h: Likewise.
9295 * sysdeps/i386/dl-machine.h: Likewise.
9296 * sysdeps/ia64/dl-machine.h: Likewise.
9297 * sysdeps/ia64/libc-tls.c: Likewise.
9298 * sysdeps/mach/hurd/fork.c: Likewise.
9299 * sysdeps/mach/hurd/i386/tls.h: Likewise.
9300 * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
9301 * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
9302 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
9303 * sysdeps/s390/libc-tls.c: Likewise.
9304 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
9305 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
9306 * sysdeps/sh/dl-machine.h: Likewise.
9307 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
9308 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
9309 * sysdeps/x86_64/dl-machine.h: Likewise.
9311 * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
9312 split out locking and parameter checking.
9313 (_dl_close): Call _dl_close_worker after locking and checking.
9314 * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
9316 * elf/Makefile: Add rules to build and run tst-thrlock.
9317 * elf/tst-thrlock.c: New file.
9320 * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
9324 * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
9325 we are sure we do not need it anymore for _dl_close. Also move
9326 the asserts inside the lock region.
9327 Patch mostly by Suzuki <suzuki@in.ibm.com>.
9329 2006-10-27 Jakub Jelinek <jakub@redhat.com>
9331 * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
9333 (_dl_lookup_symbol_x): Adjust caller.
9335 * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
9337 * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
9339 * elf/dl-libc.c: Revert l_scope name changes.
9340 * elf/dl-load.c: Likewise.
9341 * elf/dl-object.c: Likewise.
9342 * elf/rtld.c: Likewise.
9343 * elf/dl-close.c (_dl_close): Likewise.
9344 * elf/dl-open.c (dl_open_worker): Likewise. If not SINGLE_THREAD_P,
9345 always use __rtld_mrlock_{change,done}. Always free old scope list
9346 here if not l_scope_mem.
9347 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
9348 change. Never free scope list here. Just __rtld_mrlock_lock before
9349 the lookup and __rtld_mrlock_unlock it after the lookup.
9350 * elf/dl-sym.c: Likewise.
9351 * include/link.h (struct r_scoperec): Remove.
9352 (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
9353 with l_scope_mem and l_scoperec_lock with l_scope_lock.
9355 2006-10-25 Ulrich Drepper <drepper@redhat.com>
9357 * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
9359 2006-10-18 Ulrich Drepper <drepper@redhat.com>
9361 * configure.in: Disable building profile libraries by default.
9363 2006-10-17 Jakub Jelinek <jakub@redhat.com>
9365 * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
9366 as signed longs, check for x_base + pos overflow.
9367 * sunrpc/Makefile (tests): Add tst-xdrmem2.
9368 * sunrpc/tst-xdrmem2.c: New test.
9370 2006-10-18 Ulrich Drepper <drepper@redhat.com>
9372 * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
9373 _dl_lookup_symbol_x code.
9375 2006-10-17 Jakub Jelinek <jakub@redhat.com>
9377 * elf/dl-runtime.c: Include sysdep-cancel.h.
9378 (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
9379 scoperec->nusers only if !SINGLE_THREAD_P. Use atomic_*
9380 instead of catomic_* macros.
9381 * elf/dl-sym.c: Include sysdep-cancel.h.
9382 (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
9383 if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
9384 * elf/dl-close.c: Include sysdep-cancel.h.
9385 (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
9386 if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
9387 * elf/dl-open.c: Include sysdep-cancel.h.
9388 (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
9389 if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
9391 2006-10-17 Jakub Jelinek <jakub@redhat.com>
9394 * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
9395 fastbin rather than end of fastbin array.
9397 2006-10-18 Ulrich Drepper <drepper@redhat.com>
9399 * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
9401 * sysdeps/x86_64/bits/atomic.h
9402 (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
9403 (catomic_decrement): Use correct body macro.
9405 2006-10-17 Jakub Jelinek <jakub@redhat.com>
9407 * include/atomic.h: Add a unique prefix to all local variables
9409 * csu/tst-atomic.c (do_test): Test also catomic_* macros.
9411 2006-10-16 Ulrich Drepper <drepper@redhat.com>
9414 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
9417 2006-10-14 Ulrich Drepper <drepper@redhat.com>
9419 * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
9421 2006-10-13 Ulrich Drepper <drepper@redhat.com>
9424 * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
9425 determine highest fast bin to consolidate, always look into all of
9427 (do_check_malloc_state): Only require for empty bins for large
9428 sizes in main arena.
9430 * libio/stdio.h: Add more __wur attributes.
9432 * elf/dl-minimal.c (realloc): Optimize last patch.
9434 2006-10-12 Richard Sandiford <richard@codesourcery.com>
9437 * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
9438 and use memcpy() if it does.
9440 2006-11-12 Andreas Jaeger <aj@suse.de>
9443 * manual/search.texi (Hash Search Function): Clarify.
9444 (Array Search Function): Clarify.
9446 2006-11-12 Joseph Myers <joseph@codesourcery.com>
9449 * math/atest-exp.c (main): Cast hex value to mp_limb_t before
9451 * math/atest-exp2.c (read_mpn_hex): Likewise.
9452 * math/atest-sincos.c (main): Likewise.
9454 2006-10-11 Ulrich Drepper <drepper@redhat.com>
9456 * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
9457 * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
9458 * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
9460 * Versions.def: Add GLIBC_2.6 for libc.
9462 * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
9464 * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
9466 2006-10-11 Jakub Jelinek <jakub@redhat.com>
9468 * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
9470 * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
9472 * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
9473 * sysdeps/generic/unsecvars.h: Add NIS_PATH.
9475 2006-10-11 Ulrich Drepper <drepper@redhat.com>
9477 * include/atomic.c: Define catomic_* operations.
9478 * sysdeps/x86_64/bits/atomic.h: Likewise. Fix a few minor problems.
9479 * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
9480 * malloc/memusage.c: Likewise.
9481 * gmon/mcount.c: Likewise.
9482 * elf/dl-close.c: Likewise.
9483 * elf/dl-open.c: Likewise.
9484 * elf/dl-profile.c: Likewise.
9485 * elf/dl-sym.c: Likewise.
9486 * elf/dl-runtime.c: Likewise.
9487 * elf/dl-fptr.c: Likewise.
9488 * resolv/res_libc.c: Likewise.
9490 2006-10-10 Ulrich Drepper <drepper@redhat.com>
9492 * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
9493 components which lack them.
9495 * nis/nis_subr.c (nis_getnames): Make sure that we always return
9496 at least one entry consisting of the parameter concatenated with
9499 2006-10-10 Roland McGrath <roland@frob.com>
9501 * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
9502 * sysdeps/mach/hurd/futimes.c: Likewise.
9503 * sysdeps/mach/hurd/lutimes.c: Likewise.
9505 2006-10-09 Ulrich Drepper <drepper@redhat.com>
9506 Jakub Jelinek <jakub@redhat.com>
9508 Implement reference counting of scope records.
9509 * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
9510 from the list in objects which remain. Always allocate new scope
9512 * elf/dl-open.c (dl_open_worker): When growing array for scopes,
9513 don't resize, allocate a new one.
9514 * elf/dl-runtime.c: Update reference counters before using a scope
9516 * elf/dl-sym.c: Likewise.
9517 * elf/dl-libc.c: Adjust for l_scope name change.
9518 * elf/dl-load.c: Likewise.
9519 * elf/dl-object.c: Likewise.
9520 * elf/rtld.c: Likewise.
9521 * include/link.h: Include <rtld-lowlevel.h>. Define struct
9522 r_scoperec. Replace r_scope with pointer to r_scoperec structure.
9523 Add l_scoperec_lock.
9524 * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
9525 * sysdeps/generic/rtld-lowlevel.h: New file.
9527 * include/atomic.h: Rename atomic_and to atomic_and_val and
9528 atomic_or to atomic_or_val. Define new macros atomic_and and
9529 atomic_or which do not return values.
9530 * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
9532 * sysdeps/i386/i486/bits/atomic.h: Likewise.
9534 * po/sv.po: Update from translation team.
9536 2006-10-07 Ulrich Drepper <drepper@redhat.com>
9538 * Versions.def: Add GLIBC_2.6 to libpthread.
9540 * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
9541 (versioned_symbol): Likewise.
9542 (compat_symbol): Likewise.
9544 * po/tr.po: Update from translation team.
9546 2006-10-06 Ulrich Drepper <drepper@redhat.com>
9548 * nis/Banner: Removed. It's been integral part forever and the
9549 author info is incomplete anyway.
9550 * libio/Banner: Likewise.
9552 * nis/nis_table.c (nis_list): If __follow_path fails in the new
9553 code, make sure the nis_freeresult call doesn't crash and that the
9554 result is reported correctly.
9556 2006-09-27 Jakub Jelinek <jakub@redhat.com>
9558 * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
9559 when callback is NULL.
9561 * nis/Versions (libnss_nisplus): Add
9562 _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
9563 * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
9564 * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
9565 _nss_create_tablename): Rename to...
9566 (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
9567 ... these. No longer static.
9568 (internal_setgrent): Adjust users.
9569 (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
9570 Don't use locking around _nss_grp_create_tablename call.
9571 * nis/nss_nisplus/nisplus-initgroups.c: New file.
9573 2006-10-06 Ulrich Drepper <drepper@redhat.com>
9575 * version.h (VERSION): Bump to 2.5.90 for new development tree.
9577 2006-10-06 Andreas Jaeger <aj@suse.de>
9579 * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
9581 2006-10-06 Ulrich Drepper <drepper@redhat.com>
9583 * po/pl.po: Update from translation team.
9585 * nscd/nscd.c (main): Fix typo in message.
9586 Patch by Jakub Bogsz <qboosh@pld-linux.org>.
9588 2006-10-02 Jakub Jelinek <jakub@redhat.com>
9591 * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
9592 errno.h, signal.h, unistd.h and sysdep-cancel.h.
9593 (__sigprocmask): Define.
9595 2006-10-02 Ulrich Drepper <drepper@redhat.com>
9597 * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
9600 2006-10-02 Jakub Jelinek <jakub@redhat.com>
9602 * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
9603 in oldtotal and newtotal calculation.
9604 * nscd/nscd-client.h (struct mapped_database): Add datasize
9606 * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
9607 (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
9609 (__nscd_cache_search): Add checks to make sure we never reference
9610 data beyond the current mapping.
9612 2006-10-02 Dmitry V. Levin <ldv@altlinux.org>
9614 * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
9615 variables const to avoid compiler warnings.
9617 * io/fts.c (fts_close): Remove redundant checks.
9618 (fts_build): Likewise.
9619 (fts_palloc): Likewise.
9621 * manual/message.texi (Advanced gettext functions,
9622 Using gettextized software): Fix typos.
9624 2006-09-30 Ulrich Drepper <drepper@redhat.com>
9626 * posix/glob.c (glob_in_dir): Add some comments and asserts to
9627 explain why there are no leaks.
9629 2006-09-29 Ulrich Drepper <drepper@redhat.com>
9631 * libio/wmemstream.c: Include <wchar.h>.
9632 * libio/bug-wmemstream1.c: Likewise.
9633 * libio/tst-wmemstream1.c: Likewise.
9634 * libio/tst-wmemstream2.c: Likewise.
9636 * version.h (RELEASE): Bump to 2.5.
9637 * README: Regenerated.
9639 * locale/iso-3166.def: Add Aaland Islands and Montenegro.
9642 * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
9643 found no group members.
9644 Patch by Petr Baudis.
9646 2006-09-29 Jakub Jelinek <jakub@redhat.com>
9648 * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
9649 assert bootstrap_map.l_tls_modid is zero.
9650 (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
9653 2006-09-27 Ulrich Drepper <drepper@redhat.com>
9655 * libio/stdio.h: Move open_wmemstream prototype to ...
9656 * wcsmbs/wchar.h: ... here.
9658 2006-09-25 Jakub Jelinek <jakub@redhat.com>
9661 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
9662 fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
9663 __{,l}chown to handle the rest.
9664 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
9665 fchownat syscall and __ASSUME_32BITUIDS case inline, call
9666 __{,l}chown to handle the rest.
9667 * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
9669 * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
9670 * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
9673 * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
9674 time, rather allocate increasingly bigger arrays of pointers, if
9675 possible with alloca, if too large with malloc.
9677 2006-09-24 Jakub Jelinek <jakub@redhat.com>
9679 * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
9681 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
9683 2006-09-24 Ulrich Drepper <drepper@redhat.com>
9685 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
9687 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
9688 IFA_F_HOMEADDRESS flag for interfaces.
9689 * include/ifaddrs.h (struct in6addrinfo): Define
9692 2006-09-21 Jakub Jelinek <jakub@redhat.com>
9695 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
9696 PTR_DEMANGLE3): Define.
9697 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
9698 PTR_DEMANGLE3): Likewise.
9699 * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
9700 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
9702 * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
9704 2006-09-20 Jakub Jelinek <jakub@redhat.com>
9706 * po/libc.pot: Regenerated.
9707 * po/be.po: Updated.
9708 * po/ca.po: Likewise.
9709 * po/cs.po: Likewise.
9710 * po/da.po: Likewise.
9711 * po/de.po: Likewise.
9712 * po/el.po: Likewise.
9713 * po/en_GB.po: Likewise.
9714 * po/es.po: Likewise.
9715 * po/fi.po: Likewise.
9716 * po/fr.po: Likewise.
9717 * po/gl.po: Likewise.
9718 * po/hr.po: Likewise.
9719 * po/hu.po: Likewise.
9720 * po/ja.po: Likewise.
9721 * po/ko.po: Likewise.
9722 * po/nb.po: Likewise.
9723 * po/nl.po: Likewise.
9724 * po/pl.po: Likewise.
9725 * po/pt_BR.po: Likewise.
9726 * po/ru.po: Likewise.
9727 * po/rw.po: Likewise.
9728 * po/sk.po: Likewise.
9729 * po/sv.po: Likewise.
9730 * po/tr.po: Likewise.
9731 * po/zh_CN.po: Likewise.
9732 * po/zh_TW.po: Likewise.
9735 * iconv/iconv_prog.c (main): Fix spelling in error message.
9736 * iconv/iconvconfig.c (main): Likewise.
9737 * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
9738 * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
9739 * locale/programs/localedef.c (main): Likewise.
9740 * locale/programs/repertoire.c (repertoire_read): Likewise.
9741 * timezone/zdump.c (main): Likewise.
9742 * nscd/connections.c (handle_request): Fix spelling in log message.
9743 Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
9745 2006-09-20 Ulrich Drepper <drepper@redhat.com>
9747 * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
9750 2006-09-20 Andreas Jaeger <aj@suse.de>
9752 * math/libm-test.inc (lrint_test_upward): Fix typo.
9754 2006-06-17 Joseph S. Myers <joseph@codesourcery.com>
9757 * math/libm-test.inc (lrint_test_tonearest): New function.
9758 (lrint_test_towardzero): New function.
9759 (lrint_test_downward): New function.
9760 (lrint_test_upward): New function.
9761 (main): Run these new tests.
9762 * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
9763 of values near to 0.
9764 (two52): Use double not long double.
9765 * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
9766 * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
9767 (two23): Use float not double.
9768 * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
9769 (two23): Use float not double.
9770 * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
9771 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
9772 * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
9773 * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
9775 2006-09-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
9777 * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
9778 Cast sp to unsigned long to avoid compiler warning.
9779 Use __makecontext_ret function instead of a trampoline on the stack.
9780 (__makecontext_ret): New function.
9781 * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
9783 2006-09-19 Jakub Jelinek <jakub@redhat.com>
9785 * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
9786 platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
9789 2006-09-19 Ulrich Drepper <drepper@redhat.com>
9791 * elf/dl-close.c (_dl_close): If dependency is not unloaded make
9792 sure no reference to the unloaded map's search list remains in the
9795 2006-09-16 Jakub Jelinek <jakub@redhat.com>
9797 * elf/Makefile: Add rules to build and run unload7 test.
9798 * elf/unload7.c: New test.
9799 * elf/unload7mod1.c: New file.
9800 * elf/unload7mod2.c: New file.
9802 2006-09-18 Jakub Jelinek <jakub@redhat.com>
9804 * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
9805 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
9806 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9807 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
9808 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
9809 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
9810 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
9811 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
9812 PTRACE_GETEVENTMSG): Likewise.
9813 (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
9816 2006-09-17 Mike Frysinger <vapier@gentoo.org>
9818 * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
9819 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9820 * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
9821 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
9823 2006-09-16 Jakub Jelinek <jakub@redhat.com>
9825 * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
9826 write '\0' to the fd.
9827 * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
9828 * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
9829 Change regs to unsigned long pointer from unsigned int, fix fscr
9832 2006-09-14 Jakub Jelinek <jakub@redhat.com>
9834 * io/Makefile (CFLAGS-fstatat.c): Set.
9835 (CFLAGS-fstatat64.c): Likewise.
9836 (CFLAGS-mknodat.c): Likewise.
9838 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
9839 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
9840 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
9841 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
9843 2006-09-14 Jakub Jelinek <jakub@redhat.com>
9844 Steven Munroe <sjmunroe@us.ibm.com>
9846 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
9847 names to the beginning. Rename "cell" to "cellbe".
9848 (_dl_powerpc_platforms): New.
9849 * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
9850 (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
9851 (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
9852 (_DL_HWCAP_PLATFORM): Define to new mask.
9853 (_dl_platform_string, _dl_string_platform): New functions.
9854 * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
9855 PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
9857 2006-09-12 Jakub Jelinek <jakub@redhat.com>
9860 * README.libm: Fix a thinko in sqrt algorithm description.
9863 * manual/string.texi (argz_delete): Fix prototype.
9864 Patch by <alpt@freaknet.org>.
9866 2006-08-26 Joseph Myers <joseph@codesourcery.com>
9869 * io/test-lfs.c (do_prepare): Give name_len type size_t.
9870 * io/tst-fcntl.c (do_prepare): Likewise.
9871 * posix/tst-exec.c (do_prepare): Likewise.
9872 * posix/tst-preadwrite.c (do_prepare): Likewise.
9873 * posix/tst-spawn.c (do_prepare): Likewise.
9874 * posix/tst-truncate.c (do_prepare): Likewise.
9875 * rt/tst-aio.c (do_prepare): Likewise.
9876 * rt/tst-aio64.c (do_prepare): Likewise.
9877 * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
9880 2006-09-09 Ulrich Drepper <drepper@redhat.com>
9883 * time/mktime.c (guess_time_tm): Fix overflow detection.
9884 * time/Makefile (tests): Add bug-mktime1.
9885 * time/bug-mktime1.c: New file.
9888 * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
9891 2006-09-07 Jakub Jelinek <jakub@redhat.com>
9894 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
9895 Ensure relocation doesn't clobber any bits outside of the
9896 immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
9897 R_SPARC_HI22 and R_SPARC_H44.
9900 * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
9901 (long) (MINSIZE + nb - old_size) is positive.
9903 * malloc/arena.c (grow_heap): When growing bail even if new_size
9907 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
9910 2006-09-06 Jakub Jelinek <jakub@redhat.com>
9912 * posix/regex_internal.c (re_string_reconstruct): Handle
9913 offset < pstr->valid_raw_len && pstr->offsets_needed case.
9914 Ensure no bytes read before raw_mbs array. Pass a saved copy of
9915 pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
9916 re_string_context_at.
9917 * posix/Makefile: Add rules to build and run bug-regex26 test.
9918 * posix/bug-regex26.c: New test.
9920 * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
9921 rather than col_sym_free. Move seqp declaration earlier.
9923 * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
9925 2006-09-05 Jakub Jelinek <jakub@redhat.com>
9927 * nscd/initgrcache.c (addinitgroupsX): Move any_success
9928 decl before first goto out.
9930 2006-09-04 Jakub Jelinek <jakub@redhat.com>
9932 * Makerules (shlib.lds): If have-hash-style, put .hash section
9933 at the end of the RO segment.
9935 2006-09-04 Ulrich Drepper <drepper@redhat.com>
9937 * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
9938 style hash table format is used.
9940 2006-09-04 Jakub Jelinek <jakub@redhat.com>
9942 * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
9943 randomization rather than before.
9944 * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
9946 2006-08-31 Jakub Jelinek <jakub@redhat.com>
9948 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
9950 * malloc/malloc.c (_int_malloc): Use full list insert and not
9951 shortcut which assumes the list is empty for large requests
9954 * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
9956 2006-08-30 Jakub Jelinek <jakub@redhat.com>
9958 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
9959 and offout arguments to the prototype.
9960 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
9961 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
9962 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
9963 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
9964 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
9965 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
9966 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
9967 * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
9969 2006-08-28 Ulrich Drepper <drepper@redhat.com>
9971 * elf/dl-load.c (_dl_init_paths): Expand DSTs.
9973 * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
9976 2006-08-28 Jakub Jelinek <jakub@redhat.com>
9978 * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
9979 only if herrno is NETDB_INTERNAL. Handle errors other than
9980 ERANGE outside of the loops, handle TRY_AGAIN.
9982 * locale/programs/ld-ctype.c (translit_flatten): Issue error
9983 if other's ctype category was missing.
9984 * locale/programs/ld-collate.c (collate_read): Return if
9985 copy_locale's collate category is missing.
9987 2006-08-27 Ulrich Drepper <drepper@redhat.com>
9990 * malloc/malloc.c (public_rEALLOc): Try harder by using other
9991 arenas if allocation failed.
9992 Patch mostly by Jan Edler <jan.edler@indexengines.com>.
9994 2006-08-26 Ulrich Drepper <drepper@redhat.com>
9996 * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
9998 (malloc_state): Reduce bins size by 2.
9999 (_int_malloc): Fix test for large enough buffer for early termination.
10000 When no unsorted block matches perfectly and an exiting block has
10001 to be split, use full list insert and not shortcut which assumes
10004 * locale/programs/ld-ctype.c (ctype_read): Better patch for read
10007 2006-08-24 Ulrich Drepper <drepper@redhat.com>
10009 * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
10012 * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
10013 symbol require exact match (these are PLTs).
10014 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
10015 (_dl_ppc64_addr_sym_match): Likewise.
10018 * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
10019 If symbol has a value use it.
10020 * elf/tst-dladdr1.c: New file.
10021 * elf/Makefile: Add rules to build and run tst-addr1.
10023 2006-08-24 Jakub Jelinek <jakub@redhat.com>
10025 * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
10026 keeps failing and heap growth or new heap creation isn't
10028 * malloc/tst-malloc.c (main): Add new tests.
10030 2006-08-24 Ulrich Drepper <drepper@redhat.com>
10033 * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
10034 as in the x86-64 code to use bswap.
10036 2006-05-21 Joseph S. Myers <joseph@codesourcery.com>
10039 * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
10041 * posix/bits/unistd.h: Likewise.
10043 2006-05-15 Mike Frysinger <vapier@gentoo.org>
10046 * string/strchr.c: Add cast to avoid warning.
10048 2006-08-21 Ulrich Drepper <drepper@redhat.com>
10050 * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
10051 platforms define as 512K. For 64-bit platforms as 32MB. The lower
10052 limit is needed to avoid the exploding of the address space
10053 requirement for secondary heaps.
10054 * malloc/arena.c (HEAP_MAX_SIZE): Define using
10055 DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
10057 2006-07-30 Joseph S. Myers <joseph@codesourcery.com>
10060 * Makerules (depfiles): Handle extra-test-objs the same as
10062 (common-mostlyclean): Likewise.
10063 * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
10065 * elf/Makefile (extra-objs): Likewise.
10066 * stdlib/Makefile (extra-objs): Likewise.
10068 2006-08-14 Eric Blake <ebb9@byu.net>
10071 * misc/error.h: Assume C89 or better.
10072 * misc/error.c: Likewise.
10074 2006-08-21 Ulrich Drepper <drepper@redhat.com>
10077 * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
10078 __ASSUME_ATFCTS is defined.
10080 2006-08-19 Ulrich Drepper <drepper@redhat.com>
10082 * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
10083 to sort in each call.
10085 * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
10086 is empty simply return and use next service.
10087 * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
10089 * locale/programs/charmap.c (charmap_read): Add new parameter. It
10090 tells us when not finding a charmap file is an error.
10091 * locale/programs/charmap.h: Adjust charmap_read prototype.
10092 * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
10093 cannot find a charmap.
10094 * locale/programs/localedef.c (main): Adjust charmap_read call.
10096 2006-08-15 Jakub Jelinek <jakub@redhat.com>
10098 * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
10099 sysdeps/posix/pause.c implementation instead.
10101 2006-08-09 Jakub Jelinek <jakub@redhat.com>
10103 * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
10106 2006-08-13 Andreas Schwab <schwab@suse.de>
10108 * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
10109 Don't clobber caller's LRSAVE.
10110 (_dl_prof_resolve): Likewise.
10112 2006-08-14 Ulrich Drepper <drepper@redhat.com>
10115 * libio/memstream.c (open_memstream): Allocate initial buffer with
10117 * libio/wmemstream.c (open_wmemstream): Likewise.
10118 * libio/strops.c: Pretty printing.
10119 (_IO_str_overflow): Clear uninitialized part of the new buffer.
10120 (enlarge_userbuf): New function.
10121 (_IO_str_seekoff): Call it if seek position is larger than current
10123 * libio/wstrops.c: Likewise.
10124 * libio/vasprintf.c: Add comment as to why we do not have to use
10125 calloc instead of malloc to allocate initial buffer.
10126 * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
10127 * libio/bug-memstream1.c: New file.
10128 * libio/bug-wmemstream1.c: New file.
10130 2006-08-13 Ulrich Drepper <drepper@redhat.com>
10132 * libio/wstrops.c: Remove dead macro definitions and comments.
10133 * libio/strops.c: Likewise.
10136 * login/utmpname.c (__utmpname): Remove unnecessary test.
10138 2006-06-08 Joseph Myers <jsm28@gcc.gnu.org>
10141 * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
10144 2006-08-13 Ulrich Drepper <drepper@redhat.com>
10147 * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
10149 * sysdeps/unix/clock_settime.c: Add support for platform-specific
10150 setting of CPU clocks.
10152 2006-06-23 Paul Eggert <eggert@cs.ucla.edu>
10155 * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
10156 since C99 requires the result to promote to 'int' when uint_least8_t
10157 and uint_least16_t promote to 'int'.
10159 2006-08-12 Ulrich Drepper <drepper@redhat.com>
10162 * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
10163 lenght of one output field, correct bitmask creation.
10164 * locale/programs/ld-time.c: Add alignment.
10167 * misc/error.c: Add space between program name and message if file
10170 2006-08-03 Eric Blake <ebb9@byu.net>
10173 * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
10175 2006-08-09 Ulrich Drepper <drepper@redhat.com>
10177 * malloc/memusagestat.c: Silence warnings.
10179 * malloc/malloc.c: Dynamically size mmap treshold if the program
10180 frees mmaped blocks.
10181 Patch by Valerie Henson and Arjan van de Ven.
10183 2006-08-08 Jakub Jelinek <jakub@redhat.com>
10185 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
10188 * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
10189 __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
10190 (DEF): Don't put the var into .gnu.linkonce.r.* section.
10191 Only provide var definitions in strtol_l (or for *ull*
10194 * stdio-common/bug16.c (tests): New array.
10195 (do_tests): Allow the first hexadecimal digit
10196 to be 1, 2, 4 or 8. Do 3 additional tests.
10198 * sysdeps/s390/fpu/libm-test-ulps: Update.
10200 * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
10201 fchownat syscall if available.
10202 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
10203 * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
10204 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
10206 2006-08-07 Ulrich Drepper <drepper@redhat.com>
10208 * nis/nis_xdr.c: Avoid some function calls.
10210 2006-08-07 Jakub Jelinek <jakub@redhat.com>
10211 Ulrich Drepper <drepper@redhat.com>
10213 * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
10214 short cut if only one name component is stripped away.
10216 2006-08-07 Ulrich Drepper <drepper@redhat.com>
10218 * nis/nis_call.c: Minor cleanups throughout.
10219 (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
10220 (first_shoot): Add search_parent_first parameter. Only if it is set
10221 search parent server first.
10222 If directory for table found through cold start cache is not the same
10223 as referenced in the cache, don't use it.
10224 (__nisfind_server): Take additional parameter. Pass it on to
10226 (__prepare_niscall): Adjust __nisfind_server call.
10227 * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
10228 * nis/nis_table.c: Adjust __nisfind_server call.
10229 * nis/nis_lookup.c: Likewise.
10230 (nis_lookup): Don't loop endlessly if name is reduced to ".".
10232 2006-08-03 Ulrich Drepper <drepper@redhat.com>
10235 * math/s_cacosh.c: Return values from positive branch.
10236 * math/s_cacoshf.c: Likewise.
10237 * math/s_cacoshl.c: Likewise.
10240 * sysvipc/sys/msg.h: Change return value to ssize_t.
10241 * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
10242 * sysvipc/msgrcv.c: Likewise.
10243 * include/sys/msg.h: Likewise.
10245 * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
10246 test introduced in patch for bz #661.
10247 (getgrouplist): Simplify code a bit. Don't allocate one additional
10248 element for NEWGROUPS.
10251 * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
10252 'f', use '1' as leading digit not '\1'.
10253 * stdio-common/Makefile (tests): Add bug16.
10254 * stdio-common/bug16.c: New file.
10257 * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
10258 and don't try to open it. The patch introducing the macro
10259 contained a bug and used the same file name as the new file
10260 instead of using /var/adm/hostid. Nobody complaint so I'm taking
10261 this out completely.
10264 * assert/assert.h: Move cast to void inside ?: to quiet gcc.
10265 Patch by Jerry James <Jerry.James@usu.edu>.
10267 * rt/Makefile (tests): Add tst-clock2.
10268 * rt/tst-clock2.c: New file.
10271 * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
10272 function and its parameters and pass it to new thread.
10273 (__gai_notify): Add support for alternative waiting for completion.
10274 * resolv/gai_suspend.c (gai_suspend): Add support for alternative
10275 waiting for completion.
10276 * resolv/getaddrinfo_a.c: Likewise.
10277 * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
10278 waiting for completion is used.
10279 * resolv/gai_misc.c: Allow overwriting code to start helper thread.
10280 * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
10281 * resolv/gai_error.c: Likewise.
10282 * resolv/gai_sigqueue.c: Likewise.
10284 2006-08-02 Thomas Schwinge <tschwinge@gnu.org>
10286 * hurd/getdport.c (__getdport): Don't return EBADF; instead set
10287 errno to EBADF and return MACH_PORT_NULL.
10289 2006-06-23 Joseph Myers <joseph@codesourcery.com>
10292 * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
10294 2006-08-02 Ulrich Drepper <drepper@redhat.com>
10296 * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
10297 walk them instead of the symbol table.
10299 2006-08-01 Ulrich Drepper <drepper@redhat.com>
10302 * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
10303 status of NSS calls, not the number of returned entries.
10305 * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
10306 request_key, keyctl.
10308 2006-07-31 Ulrich Drepper <drepper@redhat.com>
10310 * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
10312 2006-07-16 Jeff Bailey <jbailey@ubuntu.com>
10314 * elf/tst-auditmod1.c: Fix typo in #error.
10316 2006-07-31 Ulrich Drepper <drepper@redhat.com>
10318 * elf/tst-auditmod1.c: Remove code for unsupported architectures.
10320 * iconvdata/run-iconv-test.sh: Run cmp in C locale.
10322 2006-07-20 Adam Nemet <anemet@caviumnetworks.com>
10324 * stdlib/test-canon.c (do_test): Close fd before unlinking file so
10325 that the directory is empty even on non-POSIX filesystems.
10327 2006-07-31 Ulrich Drepper <drepper@redhat.com>
10329 * elf/dl-open.c (dl_open_worker): Add branch prediction.
10331 * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
10332 the backend NSS module. If backend setgrent call failed, don't have
10333 internal_setgrent fail. Just remember this until it is needed.
10334 * nis/nss_compat/compat-pwd.c: Likewise.
10335 * nis/nss_compat/compat-spwd.c: Likewise.
10337 2006-07-30 Roland McGrath <roland@redhat.com>
10339 * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
10340 * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
10341 * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
10342 * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
10344 * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
10345 (nanosleep_not_cancel): New macro.
10346 (sigsuspend_not_cancel): new macro.
10347 * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
10348 (do_sigsuspend): Define as inline.
10349 (__sigsuspend): Always use do_sigsuspend.
10350 [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
10351 * include/signal.h: Declare __sigsuspend_nocancel.
10352 * sysdeps/posix/pause.c
10353 [! NO_CANCELLATION] (__pause_nocancel): New function.
10355 * include/unistd.h (__pause_nocancel): Add attribute_hidden.
10356 * include/time.h (__nanosleep_nocancel): Likewise.
10358 2006-07-30 Ulrich Drepper <drepper@redhat.com>
10360 * locale/programs/localedef.c (add_to_readlist): Rename local
10361 variables to avoid confusion.
10363 * locale/programs/charmap.c (charmap_read): Emit error message if
10364 charmap couldn't be found or read.
10366 2006-07-28 Ulrich Drepper <drepper@redhat.com>
10368 * sysdeps/unix/sysv/linux/kernel-features.h: Define
10369 __ASSUME_FUTEX_LOCK_PI.
10370 * include/time.h: Declare __nanosleep_nocancel.
10371 * include/unistd.h: Declare __pause_nocancel.
10373 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
10374 LDFLAGS. Add -lgcc_eh and libc_nonshared (again) to make sure we
10375 get the __stack_chk_fail_local definition when it's needed.
10377 2006-07-26 Ulrich Drepper <drepper@redhat.com>
10379 * dlfcn/Makefile: Add rules to build and run bug-atexit3.
10380 * dlfcn/bug-atexit3.c: New file.
10381 * dlfcn/bug-atexit3-lib.cc: New file.
10383 * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
10384 used when the namespace is not the base namespace.
10386 2006-07-26 Gavin Romig-Koch <gavin@redhat.com>
10388 * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
10389 (__new_exitfn): Bump it in every successful call.
10390 * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
10391 more exit handlers, call them right away.
10392 * stdlib/exit.h: Declare __new_exitfn_called.
10394 2006-07-25 Ulrich Drepper <drepper@redhat.com>
10396 * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
10397 calling registered handler.
10399 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
10400 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
10401 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
10402 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
10403 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
10404 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
10405 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
10406 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
10408 2006-07-10 Ulrich Drepper <drepper@redhat.com>
10410 * elf/dl-lookup.c (dl_new_hash): New functions.
10411 (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
10412 value here. Compute new-style hash value. Pass new hash value
10413 and reference to variable with the old value to do_lookup_x.
10414 (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
10415 old-style hash table.
10416 (_dl_debug_bindings): Pass new hash value and reference to variable
10417 with the old value to do_lookup_x.
10418 * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
10419 new-style hash value and change old-style hash value parameter to
10420 be a reference. Reoganize functions to determine whether
10421 new-style hash table is available. Only fall back on old-style
10422 table. If old-style hash value is needed, compute it here.
10423 * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
10425 * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
10426 DT_TLSDEC_GOT. Adjust DT_ADDRNUM.
10427 * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
10428 l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
10429 * Makeconfig: If linker supports --hash-style option add it to all
10430 linker command lines to build DSOs.
10431 * config.make.in: Define have-hash-style.
10432 * configure.in: Test whether linker supports --hash-style option.
10434 * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
10435 * sysdeps/generic/ldsodefs.h: Adjust prototype.
10437 2006-06-27 Ulrich Drepper <drepper@redhat.com>
10439 * elf/dl-load.c (open_path): Fix test to determine whether DSO is
10442 * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
10443 RPATH of main map twice.
10445 2006-06-22 Ulrich Drepper <drepper@redhat.com>
10447 * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
10448 look further, return original strings.
10449 (_nl_find_msg): Do not return found translation if the conversion
10450 failed. Either signal the string is unusable or that something went
10451 wrong and the original should be used.
10453 2006-06-21 Ulrich Drepper <drepper@redhat.com>
10455 * string/_strerror.c (__strerror_r): Add __builtin_expect.
10457 2006-06-14 Jakub Jelinek <jakub@redhat.com>
10460 * misc/insremque.c (insque): Handle prev == NULL.
10461 * misc/Makefile (tests): Add tst-insremque.
10462 * misc/tst-insremque.c: New test.
10464 2006-06-17 Ulrich Drepper <drepper@redhat.com>
10467 * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
10468 conflict with DL_DST_REQUIRED.
10470 2006-06-16 Ulrich Drepper <drepper@redhat.com>
10472 * nis/nis_subr.c (nis_getnames): Fix the implementation to better
10473 match what Solaris does.
10475 2006-06-04 Ulrich Drepper <drepper@redhat.com>
10477 * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
10478 local_setegid instead of seteuid and setegid.
10479 * sysdeps/generic/local-setxid.h: New file.
10480 * sysdeps/unix/sysv/linux/local-setxid.h: New file.
10482 * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
10484 * string/Makefile (tests): Add bug-envz1.
10485 * string/bug-envz1.c: New file.
10487 2006-06-02 Jakub Jelinek <jakub@redhat.com>
10489 * posix/regex_internal.c (re_string_skip_chars): If no character has
10490 been converted at all, set *last_wc to WEOF. If mbrtowc failed, set wc
10491 to the byte which couldn't be converted.
10492 (re_string_reconstruct): Don't clear valid_raw_len before calling
10493 re_string_skip_chars. If wc is WEOF after re_string_skip_chars, set
10494 tip_context using re_string_context_at.
10495 * posix/Makefile: Add rules to build and run bug-regex25 test.
10496 * posix/bug-regex25.c: New test.
10498 2006-06-02 Ryan S. Arnold <rsa@us.ibm.com>
10501 * string/envz.c (envz_strip): Correct erroneously reversed src
10502 and dest parameters to memmove() invocation.
10504 2006-05-30 Jakub Jelinek <jakub@redhat.com>
10506 * nscd/nscd.h (prune_cache): Add fd argument to prototype.
10507 * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
10508 to make sure the database has been already invalidated.
10509 * nscd/cache.c (prune_cache): Add fd argument. Write response to fd
10510 after the cache has been invalidated. Use pthread_mutex_lock rather
10511 than pthread_mutex_trylock if fd != -1.
10512 * nscd/connections.c (invalidate_cache): Add fd argument, write
10513 response to fd if not calling prune_cache, pass fd to prune_cache.
10514 (handle_request): Adjust invalidate_cache caller.
10515 (nscd_run): Pass -1 as fd to prune_cache.
10517 2006-05-30 Ulrich Drepper <drepper@redhat.com>
10519 * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
10522 2006-05-29 Ulrich Drepper <drepper@redhat.com>
10524 * nscd/nscd.h (struct database_dyn): Add prunelock field.
10525 * nscd/cache.c (prune_cache): Take prunelock before starting the
10526 work. Just return in case it is already taken.
10527 * nscd/connections.c (dbs): Initialize .prunelock.
10529 2006-05-25 Ulrich Drepper <drepper@redhat.com>
10531 * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
10532 copying. No need to allocate new array for group members. Just
10533 move the pointers and update the size.
10535 * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
10536 Avoid memory leak in case realloc fails. Simplification for
10537 better code generation.
10539 Avoid deprecation warning because of libc_hidden_proto for
10540 inet6_option_alloc.
10541 * inet/inet6_option.c (option_alloc): Renamed from
10542 inet6_option_alloc. Made static.
10543 (inet6_option_alloc): Now a simple wrapper around option_alloc.
10544 (inet6_option_append): Call option_alloc.
10545 * include/netinet/in.h: Remove libc_hidden_proto for
10546 inet6_option_alloc.
10548 * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
10549 for cleanup when cb!=NULL [Coverity CID 233].
10551 2006-05-24 Ulrich Drepper <drepper@redhat.com>
10554 * inet/Makefile (routines): Add inet6_opt and inet6_rth.
10555 * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
10556 inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
10557 inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
10558 inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
10559 and inet6_rth_getaddr.
10560 * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
10562 * inet/netinet/in.h (struct ip6_mtuinfo): Define.
10563 Mark inet6_option_* interfaces as deprecated.
10564 Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
10565 inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
10566 inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
10567 inet6_rth_segments, and inet6_rth_getaddr.
10568 * inet/inet6_opt.c: New file.
10569 * inet/inet6_rth.c: New file.
10571 * inet/netinet/icmp6.h: Pretty printing.
10574 * elf/dl-addr.c (_dl_addr): Don't match undefined references.
10576 2006-05-23 Ulrich Drepper <drepper@redhat.com>
10578 * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
10579 doing it all here. When server does not know the answer do not
10580 fail immediate, try parent first.
10582 * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
10585 2006-05-20 Ulrich Drepper <drepper@redhat.com>
10587 * nis/nis_call.c (__prepare_niscall): New function. Split out
10589 * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
10591 (__follow_path): New function. Split out from nis_list.
10592 * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
10594 * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
10596 * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
10598 * nis/Versions: Export __prepare_niscall, __create_ib_request,
10599 __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
10600 from libnsl for version GLIBC_PRIVATE.
10601 * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
10602 Remove entry parameter from _nss_nisplus_parse_pwent and
10603 _nss_nisplus_parse_grent.
10604 * nis/nss_nisplus/nisplus-parser.c: Likewise.
10605 * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
10606 again. Rewrite getpwent handling to not use nis_first_entry and
10607 nis_next_entry. Roll out own niscall handling.
10608 * nis/nss_nisplus/nisplus-grp.c: Likewise.
10610 * sunrpc/xdr_rec.c: Fix typo in comment.
10612 2006-05-19 Ulrich Drepper <drepper@redhat.com>
10614 * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
10617 * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
10618 to allocate memory for my_pollfd. Better initialization of
10619 cb_is_running. Use TEMP_FAILURE_RETRY.
10621 * malloc/memusage.sh (memusageso): Add quotes.
10622 (memusagestat): Likewise.
10623 * debug/xtrace.sh (pcprofileso): Likewise.
10624 (pcprofiledump): Likewise.
10625 * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
10627 * malloc/Makefile ($(objpfx)memusage): Likewise.
10629 * nis/nis_callback.c (__nis_create_callback): Calls to
10630 svcudp_bufcreate and svctcp_create can fail. Free ->xprt if
10631 asprintf call fails.
10633 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
10634 no uninitialized memory is passed to sendto.
10636 2006-05-18 Ulrich Drepper <drepper@redhat.com>
10638 * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
10639 of snprintf+strdup. Handle OOM.
10640 * nis/nis_callback.c (__nis_create_callback): Allocate cb and
10641 cb->serv together. Remove now obsolete free calls.
10642 (__nis_destroy_callback): Remove now obsolete free call.
10644 2006-05-18 David Woodhouse <dwmw2@redhat.com>
10646 * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
10647 RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
10648 and ULA respectively). Set precedence for IPv4 address to 10 as
10649 defined in RFC3484 for preferring IPv6.
10650 * posix/gai.conf: Update to match the new default tables.
10652 2006-05-18 Jakub Jelinek <jakub@redhat.com>
10654 * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
10655 returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
10656 * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
10657 * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
10659 * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
10661 (init_nss_interface): Remove initialization of these variables.
10663 2006-05-18 Ulrich Drepper <drepper@redhat.com>
10665 * nis/nis_call.c (rec_dirsearch): Little optimization: pull
10666 nis_free_directory forward to avoid duplication.
10668 2006-05-17 Ulrich Drepper <drepper@redhat.com>
10670 * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
10671 rec_dirsearch returning NULL.
10672 (first_shoot): Handle __nis_finddirectory returning NULL.
10673 (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
10675 * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
10676 IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
10678 2006-05-17 Jakub Jelinek <jakub@redhat.com>
10680 * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
10683 2006-05-15 Ulrich Drepper <drepper@redhat.com>
10685 * include/rpc/pmap_prot.h: Mark all functions as hidden.
10687 * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
10688 * nscd/nscd_getgr_r.c: Likewise.
10690 * include/rpc/pmap_rmt.h: Mark all functions as hidden.
10692 * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
10693 * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
10695 * stdlib/longlong.h (__clz_tab): Mark as hidden.
10697 * iconv/gconv_int.h: Mark __gconv_lock as hidden.
10699 * include/rpc/key_prot.h: Mark all _internal functions as hidden.
10701 * include/rpc/auth.h: Mark xdr_des_block_internal and
10702 xdr_opaque_auth_internal as hidden.
10704 * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
10707 * include/rpc/xdr.h: Mark all _internal functions as hidden.
10709 * misc/getusershell.c (okshells): Don't use static initializers,
10712 * stdlib/fmtmsg.c (keywords): Change type of len element to
10713 uint32_t to not waste space on 64bit machines.
10715 * locale/setlocale.c: Change _nl_category_names into a string.
10716 Add new _nl_category_name_idxs. Change all users.
10717 * locale/localeinfo.h: Adjust declaration of _nl_category_names.
10718 Declare _nl_category_name_idxs.
10719 * locale/findlocale.c: Adjust for _nl_category_names change.
10720 * locale/loadlocale.c: Likewise.
10721 * locale/newlocale.c: Likewise.
10722 * intl/dcigettext.c: Likewise.
10724 * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
10725 (add_alias2): ...here. New function.
10726 (__gconv_read_conf): Simplify builtin alias handling.
10727 (builtin_aliases): Convert to string to avoid relocations.
10728 * iconv/gconv_builtin.h: Add comment about correct formatting.
10730 2006-05-15 Jakub Jelinek <jakub@redhat.com>
10732 * resolv/res_debug.c (loc_ntoa): Make error const.
10734 2006-05-14 Andreas Schwab <schwab@suse.de>
10736 * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
10738 2006-05-12 Jakub Jelinek <jakub@redhat.com>
10740 * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
10741 (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
10742 sizeof (cpu_set_t).
10744 2006-05-11 Ulrich Drepper <drepper@redhat.com>
10746 * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
10748 * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
10750 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
10751 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
10753 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
10754 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
10756 * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
10757 * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
10760 * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
10761 * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
10764 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
10765 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
10767 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
10768 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
10770 * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
10771 * include/rpcsvc/nis_callback.h: New file.
10773 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
10774 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
10776 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
10777 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
10779 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
10780 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
10782 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
10783 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
10785 * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
10786 * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
10789 * nis/nis_xdr.h: Mark all functions as hidden. Remove
10790 __BEGIN_DECLS and __END_DECLS, the header is not installed.
10792 * nis/nis_error.c: Remove table of strings. Use position
10793 independent mechanism.
10794 * nis/nis_error.h: New file.
10796 2006-05-11 Jakub Jelinek <jakub@redhat.com>
10798 * locale/programs/ld-time.c (time_finish): If wide era name or
10799 format aren't provided, set both wname and wformat to L"".
10801 2006-05-10 Ulrich Drepper <drepper@redhat.com>
10803 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
10804 results if the call was succesful.
10806 * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
10808 * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
10811 2006-05-10 Jakub Jelinek <jakub@redhat.com>
10813 * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
10815 2006-05-10 Ulrich Drepper <drepper@redhat.com>
10817 * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
10818 caller makes sure this is not the case.
10819 (wordexp): Simplify ifs_white creation. [Coverity CID 231]
10821 2006-05-09 Ulrich Drepper <drepper@redhat.com>
10823 * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
10826 * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
10827 [Coverity CID 229, 230]
10829 * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
10831 (hol_help): Likewise. [Coverity CID 226, 227]
10833 * string/argz-replace.c (__argz_replace): Unconditionally call
10834 free on SRC. [Coverity CID 225]
10836 * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
10837 the return value of __nis_default_owner and __nis_default_group,
10838 it has been especially allocated. [Coverity CID 224]
10840 * nis/nis_defaults.c (searchXYX): New functions. Used by both
10841 searchgroup and searchowner. Significantly simplified.
10842 (__nis_default_owner): Remove duplication. Do not locally copy the
10843 string before duplicating it.
10844 (__nis_default_group): Likewise.
10846 * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
10847 we must clear the variable before calling __nisfind_server.
10849 * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
10850 nis_getnames. [Coverity CID 223]
10852 * locale/programs/locfile.c (locfile_read): Use alloca instead of
10853 xmalloc to allocate local repertoire name. [Coverity CID 222]
10855 * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
10856 allocate memory for the input to add_bytes. [Coverity CID 221]
10858 * posix/wordexp.c (w_addword): Free word if realloc fails and it
10859 was allocated here. [Coverity CID 219, 220]
10861 * posix/getconf.c (print_all): Free confstr data after printing.
10864 * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
10865 list allocation fails. [Coverity CID 215]
10867 * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
10870 * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
10871 string is NULL. [Coverity CID 212]
10872 * argp/Makefile: Add rules to build and run bug-argp1.
10873 * argp/bug-argp1.c: New file.
10875 * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
10877 * stdlib/canonicalize.c (__realpath): Likewise.
10879 * locale/programs/ld-time.c (time_finish): Don't dereference NULL
10880 pointer. [Coverity CID 206]
10882 * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
10883 in statically linked code.
10884 * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
10885 statically built code, be prepared to have no link map.
10888 * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
10889 dgettext calls. [Coverity CID 204]
10891 * argp/argp-help.c (struct uparams): Remove valid member. Change
10893 (uparam_names): Reduce size. Avoid relative relocations.
10894 Moved to read-only segment.
10895 (fill_in_uparams): Update for new layout.
10897 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
10898 assumed to always be != NULL. [Coverity CID 202]
10900 * argp/argp-help.c (hol_entry_help): Remove some dead code
10901 [Coverity CID 200].
10903 * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
10904 away a few more unconditional yperr2nss calls.
10905 (_nss_nis_getservbyname_r): Likewise.
10907 2006-05-06 Ulrich Drepper <drepper@redhat.com>
10909 * sysdeps/generic/ldsodefs.h: Remove support for non-core
10912 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
10913 that unused memory passed to sendto is nevertheless initialized.
10916 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
10917 possibly unaligned memory accesses.
10919 * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
10920 * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
10921 and __putlong respectively. Correct buffer overflow check for
10924 * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
10926 * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
10927 (send_dg): Rewrite error handling to be more compact and avoid
10928 double recomputation of timeouts. Pass MSG_NOSIGNAL to send.
10930 * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
10932 * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
10933 instead of ns_get16.
10934 (res_queriesmatch): Likewise. Minor optimization.
10937 * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
10938 __libc_res_nsend might reallocate the buffer for the answer. In
10939 this case we have to reload the HP pointer.
10941 2006-05-05 Ulrich Drepper <drepper@redhat.com>
10943 * stdio-common/vfscanf.c (memory_error): Remove definition. Add
10944 some branch prediction hints.
10946 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
10947 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
10948 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
10949 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
10950 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
10951 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
10952 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
10953 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
10955 2006-05-05 Martin Schwidefsky <schwidefsky@de.ibm.com>
10957 * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
10958 by a GOT relocation to make Scrt1.o position independent.
10959 * sysdeps/s390/s390-64/elf/start.S: Likewise.
10961 * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
10962 six system call parameters.
10963 * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
10965 2006-05-05 Ulrich Drepper <drepper@redhat.com>
10967 * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
10970 * sunrpc/svc_udp.c (BZERO): Remove definition.
10972 (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
10974 * sunrpc/des_impl.c: Remove ALT_ECB support. We never used it.
10975 (des_SPtrans): Use uint32_t type.
10976 (des_skb): Likewise.
10978 * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
10980 2006-05-05 Jakub Jelinek <jakub@redhat.com>
10983 * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
10986 2006-05-05 Ulrich Drepper <drepper@redhat.com>
10988 * locale/programs/ld-address.c (address_finish): Fix one more
10989 place where the iso639 array might be accessed beyond the limits.
10991 2006-05-04 Ulrich Drepper <drepper@redhat.com>
10993 * nis/nis_table.c (nis_list): Avoid clearing res twice before
10994 filling it for the first time.
10996 * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
10997 Adjust all callers.
10998 Free res object content before returning.
11000 * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
11002 * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
11005 * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
11006 cleanup for initial thread, just the free call on TVP.
11008 * nscd/gai.c (__getline): Define.
11011 See ChangeLog.16 for earlier changes.