* nis/nss-default.c (vars): Add SETENT_BATCH_READ.
[glibc.git] / ChangeLog
blob8938794f1b2633d1c11b924cb18039215bdb58bd
1 2006-04-28  Ulrich Drepper  <drepper@redhat.com>
3         * nis/nss-default.c (vars): Add SETENT_BATCH_READ.
4         * nis/nss: Document SETENT_BATCH_READ.
5         * nis/libnsl.h: Define NSS_FLAG_SETENT_BATCH_READ.
6         * nis/nss_nis/nis-service.c (saveit): Don't add NUL byte if the
7         string is already NUL terminated.
8         (internal_nis_endservent): No need to return anything.  Change callers.
9         (internal_nis_setservent): One more initialization.
10         * nis/nss_nis/nis-pwd.c: Support SETENT_BATCH_READ option.
11         * nis/nss_nis/nis-grp.c: Likewise.
13         * nis/nss-default.c (init): Rewrite parser to get the variables
14         from a table.
16         * nis/nss_nis/nis-service.c: Avoid passing pointer to static
17         variable around.  Reduce number of memory allocations by creating
18         list of memory pools.
20         * nis/ypclnt.c (__xdr_ypresp_all): Minor optimization in string
21         handling.  Fix typo in comment.
23 2006-04-27  Ulrich Drepper  <drepper@redhat.com>
25         * nscd/connections.c (restart): If we want to switch back to the
26         old ID use setresuid and setresgid.
27         (finish_drop_privileges): Likewise.
29 2006-04-27  Jakub Jelinek  <jakub@redhat.com>
31         * nscd/nscd.conf: Fix a typo.
33 2006-04-27  Ulrich Drepper  <drepper@redhat.com>
35         [BZ #2611]
36         * stdio-common/renameat.c (renameat): Fix typo.
38 2006-04-26  Roland McGrath  <roland@redhat.com>
40         * Makeconfig (%.v.i rule): Don't use -DASSEMBLER.
41         The predefined __ASSEMBLER__ is sufficient.
43 2006-04-26  Ulrich Drepper  <drepper@redhat.com>
45         [BZ #1386]
46         * iconvdata/ibm932.c: Change mapping to allow round-trips.
47         * iconvdata/ibm943.c: Likewise.
48         Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
50         * sysdeps/unix/sysv/linux/syscalls.list: Add vmsplice.
51         * sysdeps/unix/sysv/linux/Versions: Export vmsplice@@GLIBC_2.5.
52         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Declare vmsplice.
53         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
55         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
56         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
57         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
58         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
59         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
61         * sysdeps/unix/sysv/linux/bits/uio.h: Fix a typo in a comment.
63         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo which caused
64         bugs not to be reported.
66         * nscd/nscd.h (struct database_dyn): Add propagate field.
67         * nscd/nscd_conf.c (nscd_parse_file): Parse auto-propagate lines.
68         * nscd/nscd.conf: Add auto-propagate lines.
69         * nscd/connections.c (dbs): Initialize .propagate fields.
70         * nscd/grpcache.c (cache_addgr): Do not add ID entry for name lookups
71         and vice versa if propagation is disabled for the database.
72         * nscd/pwdcache.c (cache_addpw): Likewise.
74 2006-04-26  James Antill  <james.antill@redhat.com>
75             Ulrich Drepper  <drepper@redhat.com>
77         * config.make.in: Add have-libcap.
78         * configure.in: Check for libcap.
79         * nscd/Makefile (selinux-LIBS): Add -lcap if possible.
80         * nscd/connections.c (finish_drop_privileges): When libcap is available
81         call preserve_capabilities and install_real_capabilities.
82         * nscd/selinux.c: Define preserve_capabilities and
83         install_real_capabilities.
84         * nscd/selinux.h: Declare preserve_capabilities and
85         install_real_capabilities.
87 2006-04-26  Ulrich Drepper  <drepper@redhat.com>
89         * locale/iso-4217.def: Update.
91 2006-04-25  Ulrich Drepper  <drepper@redhat.com>
93         [BZ #2420]
94         * stdlib/strfmon_l.c (__vstrfmon_l): Fix handling of ! modifier.
95         * localedata/Makefile: Add rules to build and run tst-strfmon1.
96         * localedata/tst-strfmon1.c: New file.
98         [BZ #2571]
99         * nscd/nscd_helper.c (__nscd_get_map_ref): Make mapptr argument a
100         volatile pointer so that the mapptr->mapped value is re-read after
101         the lock is retrieved.
102         * nscd/nscd-client.h: Update __nscd_get_map_ref prototype.
104         * include/features.h [_GNU_SOURCE] (_POSIX_C_SOURCE): Define to
105         200112L.
107         * resolv/res_hconf.c: Minor surgery to 'cmd' and the referenced
108         functions to avoid relocations.
110         [BZ #2389]
111         * resolv/res_hconf.c: Remove 'order' parsing.  Just ignore the line.
112         * resolv/res_hconf.h: Remove Name_Service definition.
113         (struct hconf): Replace service related fields with placeholders.
115         [BZ #2386]
116         * sysdeps/unix/sysv/linux/ia64/clone2.S: Check for NULL stack
117         pointers to match other architectures.
118         * sysdeps/unix/sysv/linux/Makefile [subdirs=misc] (tests): Add
119         tst-clone.
120         * sysdeps/unix/sysv/linux/tst-clone.c: New file.
122         [BZ #2072]
123         * stdio-common/printf_fp.c: Fix potential memory leaks for
124         malloc'ed wbuffer which isn't freed in error conditions.
126         [BZ #2569]
127         * iconv/gconv_db.c (__gconv_release_step): Fix condition of assert
128         call.
129         * iconvdata/Makefile (tests): Add tst-iconv6.
130         * iconvdata/tst-iconv6.c: New file.
132 2006-04-24  Ulrich Drepper  <drepper@redhat.com>
134         * posix/tst-rfc3484.c (do_test): Also initialize source_addr_flags
135         field.
136         * posix/tst-rfc3484-2.c (do_test): Likewise.
138         * posix/tst-rfc3484.c: Include <ifaddrs.h> early.
139         * posix/tst-rfc3484-2.c: Likewise.
141         * version.h (VERSION): Bump to 2.4.90 for the trunk.
143 2006-04-24  Jakub Jelinek  <jakub@redhat.com>
145         * malloc/arena.c (ptmalloc_init): Don't call __malloc_check_init
146         if MALLOC_CHECK_ env var contains an empty string.
148 2006-04-24  Ulrich Drepper  <drepper@redhat.com>
150         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Always initialize in6ai.
152 2006-04-24  Jakub Jelinek  <jakub@redhat.com>
154         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range): Use
155         __LONG_LONG_PAIR macro.
157         * posix/bits/unistd.h (__readlinkat_chk): New prototype.
158         (__readlinkat_alias): New alias.
159         (readlinkat): New inline function.
160         * include/unistd.h (readlinkat): Add libc_hidden_proto.
161         * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Add
162         libc_hidden_def.
163         * io/readlinkat.c (readlinkat): Likewise.
164         * debug/readlinkat_chk.c: New file.
165         * debug/Makefile (routines): Add readlinkat_chk.
166         * debug/Versions (libc): Export __readlinkat_chk@@GLIBC_2.5.
167         * debug/tst-chk1.c (do_test): Add readlinkat tests.
169 2006-04-23  Ulrich Drepper  <drepper@redhat.com>
171         * nis/nss_nisplus/nisplus-netgrp.c: Cleanups.
173         [BZ #1951]
174         * sysdeps/posix/sigset.c (sigset): Return correct value reflecting
175         previous signal state.
176         * signal/Makefile (tests): Add tst-sigset2.
177         * signal/tst-sigset2.c: New file.
179 2006-04-21  Jakub Jelinek  <jakub@redhat.com>
181         * argp/argp.h (__option_is_short): Check upper limit of
182         __key.  isprint() requires its argument to have the value
183         of an unsigned char or EOF.
184         Patch by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
186 2006-04-21  Ulrich Drepper  <drepper@redhat.com>
188         [BZ #2534, BZ #2535]
189         * posix/regex.h: Remove obsolete <sys/types.h> comment and special
190         handling for VMS.
192         * iconvdata/ibm437.c: Define HAS_HOLES to 0.
193         * iconvdata/ibm861.c: Likewise.
194         * iconvdata/ibm862.c: Likewise.
195         * iconvdata/ibm863.c: Likewise.
196         * iconvdata/ibm865.c: Likewise.
197         Reported by <ash@contact.bg>.
199 2006-04-19  Ulrich Drepper  <drepper@redhat.com>
201         * include/ifaddrs.h: Get uint32_t definition.
202         * posix/tst-rfc3484.c: Update fake __check_pf implementation.
203         * posix/tst-rfc3484-2.c: Likewise.
205         * sysdeps/unix/sysv/linux/kernel-features.h: Define
206         __ASSUME_PROC_SELF_FD_SYMLINK.
207         * sysdeps/unix/sysv/linux/ttyname.c: Cleanups.  Avoid compatibility
208         code is possible.  Move compatibility code in .text.compat section.
209         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
211 2006-04-18  Ulrich Drepper  <drepper@redhat.com>
213         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Rewrite to avoid loop
214         over gaih array.  There is only one function to call in the moment.
216 2006-04-16  Ulrich Drepper  <drepper@redhat.com>
218         * include/ifaddrs.h: Define struct in6addrinfo.
219         Add two more parameters to __check_pf.
220         * sysdeps/unix/sysv/linux/check_pf.c: When using the netlink
221         interface, determine whether IPv6 addresses are deprecated or
222         temporary.  Create array of those addresses.
223         * inet/check_pf.c: Always tell caller there are no depracated
224         and temporary addresses.
225         * sysdeps/posix/getaddrinfo.c: Pretty printing.
226         (struct sort_result): Add source_addr_flags field.
227         (rfc3484_sort): Implement rule 3 and 7.
228         (in6aicmp): New function.
229         (getaddrinfo): Call __check_pf also when we need info about IPv6
230         source addresses.  When creating array for sorting addresses,
231         look up deprecated and temporary addresses returned by __check_pf
232         and add flag if necessary.
234 2006-04-15  Ulrich Drepper  <drepper@redhat.com>
236         * sysdeps/posix/getaddrinfo.c: Fix precedence for IP V4-to-V6
237         mapped addresses.
238         * posix/Makefile (tests): Add tst-rfc3484-2.
239         * posix/tst-rfc3484-2.c: New file.
241         * nis/nss_nisplus/nisplus-publickey.c: Minor cleanups throughout.
242         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_parse_servent):
243         Significant cleanups.  Correct adjustment for pointer array.
244         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_parse_rpcent):
245         Likewise.
246         * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_parse_protoent):
247         Likewise.
248         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_parse_netent):
249         Likewise.
250         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent):
251         Likewise.
253 2006-04-14  Ulrich Drepper  <drepper@redhat.com>
255         * sysdeps/unix/sysv/linux/syscalls.list: Add tee syscall.
256         * sysdeps/unix/sysv/linux/Versions: Export tee@GLIBC_2.5.
257         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Add prototype for tee.
258         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
259         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
260         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
261         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
262         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
263         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
264         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
266         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_parse_etherent):
267         Minor cleanups.  NUL terminate name string.
269         * nis/Versions: No need to export _nss_nisplus_parse_grent,
270         _nss_nisplus_parse_pwent, and _nss_nisplus_parse_spent.
272         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_parse_aliasent):
273         Avoid unnecessary allocation.  Fix adjustment for pointer value.
275         * nis/nss_nisplus/nisplus-parser.c: Cleanups, use NIS_RES_*
276         macros.  Avoid unnecessary allocation.
278         * sysdeps/unix/sysv/linux/sync_file_range.c: New file.
280 2006-04-13  Ulrich Drepper  <drepper@redhat.com>
282         * nis/Makefile (libnsl-routimes): Add nss-default.
283         * nis/Versions (libnsl) [GLIBC_PRIVATE]: Export _nsl_default_nss.
284         * nis/nss-nis.c: Move /etc/default/nss handling to...
285         * nis/nss-default.c: ...here.  New file.
286         * nis/libnsl.h: New file.
287         * nis/nss-nis.h: Remove NSS_FLAG_* definitions and _nis_default_nss
288         plus auxilary definitions.
289         * nis/nss_nis/nis-initgroups.c: Use _nsl_default_nss instead of
290         _nis_default_nss.
291         * nis/nss_nis/nis-service.c: Likewise.
293 2006-04-07  Steven Munroe  <sjmunroe@us.ibm.com>
295         * sysdeps/powerpc/fpu/bits/mathinline.h
296         [__WORDSIZE == 64 || _ARCH_PWR4]: Define __CPU_HAS_FSQRT.
297         (__ieee754_sqrt): Fix comment.
298         (__ieee754_sqrtf): Fix comment.
299         * sysdeps/powerpc/fpu/e_sqrt.c (__ieee754_sqrt): Fix comment.
300         Check __CPU_HAS_FSQRT instead of dl_hwcap.
301         * sysdeps/powerpc/fpu/e_sqrtf.c (__ieee754_sqrtf): Likewise.
303 2006-04-08  Ulrich Drepper  <drepper@redhat.com>
305         * inet/inet_ntoa.c: Rewrite to use TLS instead of TSD.
307         * nis/nss_nis/nis-alias.c: Optimize use of yperr2nss.  Avoid calling
308         it for YPERR_SUCCESS.  Minor cleanups.  Add __builtin_expect.
309         * nis/nss_nis/nis-ethers.c: Likewise.
310         * nis/nss_nis/nis-grp.c: Likewise.
311         * nis/nss_nis/nis-hosts.c: Likewise.
312         * nis/nss_nis/nis-initgroups.c: Likewise.
313         * nis/nss_nis/nis-netgrp.c: Likewise.
314         * nis/nss_nis/nis-network.c: Likewise.
315         * nis/nss_nis/nis-proto.c: Likewise.
316         * nis/nss_nis/nis-publickey.c: Likewise.
317         * nis/nss_nis/nis-pwd.c: Likewise.
318         * nis/nss_nis/nis-rpc.c: Likewise.
319         * nis/nss_nis/nis-service.c: Likewise.
320         * nis/nss_nis/nis-spwd.c: Likewise.
322         * nis/nis_ping.c: Remove unnecessary conditionals before
323         nis_freeresult calls.
324         * nis/nis_ismember.c: Likewise.
326         * elf/rtld.c (process_envvars): Fix handling of LD_POINTER_GUARD.
327         Reported by genesh@comcast.net.
329         * io/fts.c (fts_build): Call fts_lfree in the two error cases
330         after the loop [Coverity CID 187].
332         * nis/nis_getservlist.c (nis_getservlist): Also free lookup result
333         in error case [Coverity CID 189].
335         * nis/nis_getservlist.c (nis_getservlist): One more free call
336         needed [Coverity CID 190].
338 2006-04-07  Jakub Jelinek  <jakub@redhat.com>
340         * sysdeps/generic/unwind-dw2-fde.c (end_fde_sort): Remove
341         unnecessary test for accu->linear == NULL [Coverity CID 79].
343 2006-04-07  Ulrich Drepper  <drepper@redhat.com>
345         * sysdeps/posix/tempname.c (__gen_tempname): Change attempts_min
346         into a macro.  Use preprocessor to decide how to initialize
347         attempts [Coverity CID 67].
349         * io/fts.c (fts_build): Comment out dead code [Coverity CID 68].
351         * sunrpc/rpc_parse.c (def_union): Comment out dead code
352         [Coverity CID 70].
354         * locale/programs/linereader.c (lr_token): Remove duplicate
355         handling of EOF [Coverity CID 71].
357         * locale/programs/ld-numeric.c (numeric_read) [case tok_grouping]:
358         We bail out early if ignore_content is set, so there is no need to
359         check it later again [Coverity CID 72].
361         * inet/inet6_option.c (inet6_option_find): Check *tptrp for NULL,
362         not tptrp [Coverity CID 73].
364         * inet/inet6_option.c (inet6_option_next): Check *tptrp for NULL,
365         not tptrp [Coverity CID 74].
367         * misc/tsearch.c (__tsearch): Don't rotate tree if memory
368         allocation failed [Coverity CID 78].
370 2006-04-07  Jakub Jelinek  <jakub@redhat.com>
372         * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Fix typo in
373         the last change.
375 2006-04-07  Ulrich Drepper  <drepper@redhat.com>
377         * inet/rexec.c (rexec_af): If we have no canonical name don't
378         proceed further [Coverity CID 86].
380         * iconv/iconv_charmap.c (process_fd): Initialize inptr from inbuf,
381         not to NULL [Coverity CID 88].
383 2006-04-06  Ulrich Drepper  <drepper@redhat.com>
385         * elf/ldconfig.c (main): Use rawmemchr instead of strchr.
386         * nis/nis_call.c (rec_dirsearch): Likewise.
387         * nis/nis_local_names.c (nis_local_host): Likewise.
388         (nis_local_directory): Likewise.
389         * intl/explodename.c (_nl_explode_name): Likewise.
391         * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Don't handle
392         DW_CFA_GNU_window_save if it obviously cannot work [Coverity CID 102].
394         * locale/programs/ld-address.c (address_finish): Fix conditions
395         for error messages [Coverity CID 104].
397         * libio/fmemopen.c (fmemopen): Free stream memory in case of
398         invalid length [Coverity CID 106].
400         * nss/nss_files/files-key.c (search): Close stream before
401         successful return [Coverity CID 107].
403         * io/fts.c (fts_open): Don't allocate parent if *argv==NULL
404         [Coverity CID 108].
406         * sunrpc/rpc_cout.c (inline_struct): Free sizestr after use
407         [Coverity CID 110, 109].
409         * sunrpc/rpc_scan.c (docppline): Free file string if it is not
410         going to be used [Coverity CID 111].
412         * sysdeps/unix/sysv/linux/getsourcefilter.c (getsourcefilter): Free
413         memory if socket level value cannot be retrieved [Coverity CID 112].
415         * nis/nis_clone_dir.c (nis_clone_directory): Free all memory in
416         error case [Coverity CID 114].
418         * nis/nis_clone_res.c (nis_clone_result): Free all memory in the
419         error cases [Coverity CID 115].
421         * sunrpc/rpc_parse.c (get_definition): Free defp if tok ==
422         TOK_EOF [Coverity CID 116].
424         * sysdeps/unix/sysv/linux/setsourcefilter.c (setsourcefilter): Free
425         memory if socket level value cannot be retrieved [Coverity CID 117].
427         * elf/cache.c (save_cache): Initialize pad to avoid writing
428         uninitialized data to disk.
430         * elf/cache.c (save_cache): Free file_entries_new [Coverity CID 118].
432         * intl/finddomain.c (_nl_find_domain): Avoid strdup of expand
433         locale name, use strdupa.  Remove free call [Coverity CID 119].
435         * sunrpc/rpc_main.c (generate_guard): Avoid extra allocation and
436         the resulting leak [Coverity CID 121].
438         * sunrpc/rpc_main.c (mkfile_output): Free all allocated memory
439         [Coverity CID 122].
441         * sunrpc/rpc_main.c (h_output): Free guard after we are done
442         [Coverity CID 123].
444         * sunrpc/svc_udp.c (cache_set): Free victim if newbuf allocation
445         fails [Coverity CID 126].
447         * sunrpc/svc_udp.c (svcudp_enablecache): Free memory in error
448         cases [Coverity CID 127].
450         * nis/nis_table.c (__create_ib_request): Free ibreq in case strdup
451         fails [Coverity CID 128].
453         * nis/nis_getservlist.c (nis_getservlist): Free all memory in case
454         of an error [Coverity CID 130, 129].
456         * nis/nis_print_group_entry.c (nis_print_group_entry): If
457         nis_lookup call failed, return.  Free lookup result in error
458         cases [Coverity CID 131].
460         * nis/nis_removemember.c (nis_removemember): Free all memory in
461         error cases [Coverity CID 132].
463         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
464         Always free lookup result [Coverity CID 134].
466         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r):
467         Always free lookup result [Coverity CID 135].
469         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_getntohost_r):
470         Always free lookup result [Coverity CID 136].
472         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyaddr_r):
473         Before retrying, free old result [Coverity CID 137].
475         * nis/nss_nisplus/nisplus-publickey.c (_nss_nisplus_netname2user):
476         Free res in case UID is zero [Coverity CID 138].
478         * nis/ypclnt.c (yp_update): Always free master string
479         [Coverity CID 140].
481         * nis/nis_creategroup.c (nis_creategroup): Free all memory in
482         error cases [Coverity CID 143, 142, 141].
484         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey): Free result
485         if yp_match call succeeded [Coverity CID 155].
487         * nis/nss_nis/nis-publickey.c (_nss_nis_getsecretkey): Free string
488         allocated in yp_match at all times [Coverity CID 157, 156].
490         * nscd/nscd.c (write_pid): Close stream also if writing failed
491         [Coverity CID 165].
493         * nis/nis_table.c (nis_add_entry): Move test for NULL parameter
494         ahead of first use [Coverity CID 167].
496         * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Move test
497         for NULL parameter ahead of first use [Coverity CID 168].
499         * intl/finddomain.c (_nl_find_domain): We never return NULL if we
500         found the locale [Coverity CID 169].
502         * inet/getnameinfo.c (getnameinfo): __getservbyport_r does not set
503         herrno [Coverity CID 178].
505         * nis/nis_checkpoint.c (nis_checkpoint): Don't access and returned
506         freed object [Coverity CID 182].
508 2006-04-05  Alan Modra  <amodra@bigpond.net.au>
509             Jakub Jelinek  <jakub@redhat.com>
511         * posix/bits/unistd.h (readlink, __readlink_chk, __readlink_alias):
512         Change return value to ssize_t.
514 2006-04-04  Roland McGrath  <roland@redhat.com>
516         * string/Makefile (CFLAGS-inl-tester.c): New variable.
517         (CFLAGS-tst-inlcall.c): Likewise.
519         [BZ #2508]
520         * nscd/Makefile ($(objpfx)nscd_stat.o: sysincludes): Move setting
521         inside [$(have-selinux) = yes].
522         ($(objpfx)selinux.o: sysincludes): Likewise.
524         * iconvdata/Makefile (generate-8bit-table): Use LC_ALL=C.
525         (generate-8bit-gap-table): Likewise.
526         ($(objpfx)iso8859-7jp.stmp): Likewise.
527         Reported by S.Çağlar Onur <caglar@uludag.org.tr>.
529 2006-03-21  Joseph S. Myers  <joseph@codesourcery.com>
531         * soft-fp/adddf3.c: Add libgcc exception.  Update FSF address.
532         * soft-fp/addsf3.c: Likewise.
533         * soft-fp/addtf3.c: Likewise.
534         * soft-fp/divdf3.c: Likewise.
535         * soft-fp/divsf3.c: Likewise.
536         * soft-fp/divtf3.c: Likewise.
537         * soft-fp/double.h: Likewise.
538         * soft-fp/eqdf2.c: Likewise.
539         * soft-fp/eqsf2.c: Likewise.
540         * soft-fp/eqtf2.c: Likewise.
541         * soft-fp/extenddftf2.c: Likewise.
542         * soft-fp/extended.h: Likewise.
543         * soft-fp/extendsfdf2.c: Likewise.
544         * soft-fp/extendsftf2.c: Likewise.
545         * soft-fp/fixdfdi.c: Likewise.
546         * soft-fp/fixdfsi.c: Likewise.
547         * soft-fp/fixsfdi.c: Likewise.
548         * soft-fp/fixsfsi.c: Likewise.
549         * soft-fp/fixtfdi.c: Likewise.
550         * soft-fp/fixtfsi.c: Likewise.
551         * soft-fp/fixunsdfdi.c: Likewise.
552         * soft-fp/fixunsdfsi.c: Likewise.
553         * soft-fp/fixunssfdi.c: Likewise.
554         * soft-fp/fixunssfsi.c: Likewise.
555         * soft-fp/fixunstfdi.c: Likewise.
556         * soft-fp/fixunstfsi.c: Likewise.
557         * soft-fp/floatdidf.c: Likewise.
558         * soft-fp/floatdisf.c: Likewise.
559         * soft-fp/floatditf.c: Likewise.
560         * soft-fp/floatsidf.c: Likewise.
561         * soft-fp/floatsisf.c: Likewise.
562         * soft-fp/floatsitf.c: Likewise.
563         * soft-fp/floatundidf.c: Likewise.
564         * soft-fp/floatundisf.c: Likewise.
565         * soft-fp/floatunditf.c: Likewise.
566         * soft-fp/floatunsidf.c: Likewise.
567         * soft-fp/floatunsisf.c: Likewise.
568         * soft-fp/floatunsitf.c: Likewise.
569         * soft-fp/gedf2.c: Likewise.
570         * soft-fp/gesf2.c: Likewise.
571         * soft-fp/getf2.c: Likewise.
572         * soft-fp/ledf2.c: Likewise.
573         * soft-fp/lesf2.c: Likewise.
574         * soft-fp/letf2.c: Likewise.
575         * soft-fp/muldf3.c: Likewise.
576         * soft-fp/mulsf3.c: Likewise.
577         * soft-fp/multf3.c: Likewise.
578         * soft-fp/negdf2.c: Likewise.
579         * soft-fp/negsf2.c: Likewise.
580         * soft-fp/negtf2.c: Likewise.
581         * soft-fp/op-1.h: Likewise.
582         * soft-fp/op-2.h: Likewise.
583         * soft-fp/op-4.h: Likewise.
584         * soft-fp/op-8.h: Likewise.
585         * soft-fp/op-common.h: Likewise.
586         * soft-fp/quad.h: Likewise.
587         * soft-fp/single.h: Likewise.
588         * soft-fp/soft-fp.h: Likewise.
589         * soft-fp/sqrtdf2.c: Likewise.
590         * soft-fp/sqrtsf2.c: Likewise.
591         * soft-fp/sqrttf2.c: Likewise.
592         * soft-fp/subdf3.c: Likewise.
593         * soft-fp/subsf3.c: Likewise.
594         * soft-fp/subtf3.c: Likewise.
595         * soft-fp/truncdfsf2.c: Likewise.
596         * soft-fp/trunctfdf2.c: Likewise.
597         * soft-fp/trunctfsf2.c: Likewise.
598         * soft-fp/unorddf2.c: Likewise.
599         * soft-fp/unordsf2.c: Likewise.
600         * soft-fp/unordtf2.c: Likewise.
602 2006-04-03  Steven Munroe  <sjmunroe@us.ibm.com>
604         [BZ #2505]
605         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR4]:
606         Define atomic_read_barrier and __ARCH_REL_INSTR using lwsync.
608 2006-04-03  Andreas Schwab  <schwab@suse.de>
610         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Terminate FDE
611         before syscall.
612         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
614         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Test for <asm/elf.h>
615         with [! _ASM_POWERPC_ELF_H] as well as [!__PPC64_ELF_H].
617 2006-04-03  Roland McGrath  <roland@frob.com>
619         [BZ #2507]
620         * mach/Machrules (.udeps-targets): New variable.
621         ($(objpfx)%.udeps static pattern rule): Use it to avoid \ inside
622         quoted string.
624 2006-04-02  Ulrich Drepper  <drepper@redhat.com>
626         [BZ #2501]
627         * nscd/nscd_helper.c (get_mapping): Rewrite code to send request
628         so it uses send and not writev.
630         [BZ #2418]
631         * sysdeps/unix/sysv/linux/bits/socket.h: Use larger of PATH_MAX and
632         page size when allocating buffer.
634 2006-04-01  Ulrich Drepper  <drepper@redhat.com>
636         [BZ #2415]
637         * elf/ldd.bash.in: Create better error messages for invalid input
638         files.
640         [BZ #2477]
641         * sysdeps/unix/sysv/linux/i386/sysdep.h: Create correct LOADARGS_*
642         macros for non-shared position-independent code.
644         [BZ #2472]
645         * bits/siginfo.h: Fix typo in ILL_ILLOPN definition.
647         [BZ #2450]
648         * posix/unistd.h: Match return value of readlink to what POSIX
649         says these days.
650         * io/readlink.c: Likewise.
651         * io/readlinkat.c: Likewise.
652         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
654         [BZ #2498]
655         * nscd/connections.c (main_loop_poll): If the connection cannot be
656         accepted because of user-imposed limits close the descriptor.
658 2006-03-31  Ulrich Drepper  <drepper@redhat.com>
660         * sysdeps/unix/sysv/linux/Versions: Export sync_file_range with
661         GLIBC_2.5.
662         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Remove
663         LINUX_FADV_ASYNC_WRITE and LINUX_FADV_WRITE_WAIT.
664         Declare sync_file_range and splice.
665         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
666         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
667         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
668         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
669         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
670         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
671         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
672         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Add
673         sync_file_range.
674         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: New file.
675         * sysdeps/unix/sysv/linux/syscalls.list: Add splice syscall.
676         * sysdeps/unix/sysv/linux/Versions: Export splice with GLIBC_2.5
677         version.
678         * Versions.def: Define GLIBC_2.5 for libc.
680 2006-03-29  Ulrich Drepper  <drepper@redhat.com>
682         * sysdeps/posix/getaddrinfo.c (gaih_inet): No need to duplicate
683         'name' for 'canon'.  The final allocation will happen later.
685 2006-03-27  Ulrich Drepper  <drepper@redhat.com>
687         * sysdeps/unix/sysv/linux/kernel-features.h: Remove support for
688         architectures which moved to ports.
690         * sysdeps/unix/sysv/linux/kernel-features.h: Add
691         __ASSUME_SET_ROBUST_LIST.
693 2006-03-27  Jakub Jelinek  <jakub@redhat.com>
695         * wcsmbs/wchar.h (btowc, wctob): Don't optimize in C++.
697 2006-03-24  David S. Miller  <davem@sunset.davemloft.net>
699         * sysdeps/sparc/sparc32/bits/atomic.h
700         (__v9_compare_and_exchange_val_32_acq): Add "memory" clobber.
701         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
702         (__arch_compare_and_exchange_val_32_acq, atomic_exchange_acq):
703         Likewise.
704         * sysdeps/sparc/sparc64/bits/atomic.h
705         (__arch_compare_and_exchange_val_32_acq,
706         __arch_compare_and_exchange_val_64_acq, atomic_exchange_acq): Likewise.
708 2006-03-24  Jakub Jelinek  <jakub@redhat.com>
710         * nis/nss_nisplus/nisplus-proto.c (_nss_create_tablename): Check the
711         return value of malloc rather than the static var again.
712         * nis/nss_nisplus/nisplus-grp.c (_nss_create_tablename): Likewise.
713         * nis/nss_nisplus/nisplus-network.c (_nss_create_tablename): Likewise.
714         * nis/nss_nisplus/nisplus-ethers.c (_nss_create_tablename): Likewise.
715         * nis/nss_nisplus/nisplus-rpc.c (_nss_create_tablename): Likewise.
716         * nis/nss_nisplus/nisplus-service.c (_nss_create_tablename): Likewise.
717         * nis/nss_nisplus/nisplus-hosts.c (_nss_create_tablename): Likewise.
718         * nis/nss_nisplus/nisplus-alias.c (_nss_create_tablename): Likewise.
719         * nis/nss_nisplus/nisplus-pwd.c (_nss_pwd_create_tablename): Likewise.
721 2006-03-25  Ulrich Drepper  <drepper@redhat.com>
723         * sysdeps/unix/sysv/linux/sparc/bits/poll.h: Add POLLMSG,
724         POLLREMOVE, and POLLRDHUP.
725         * sysdeps/unix/sysv/linux/bits/poll.h: Add POLLREMOVE and POLLRDHUP.
727 2006-03-24  Ulrich Drepper  <drepper@redhat.com>
729         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define
730         LINUX_FADV_ASYNC_WRITE and LINUX_FADV_WRITE_WAIT.
731         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
732         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
733         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
734         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
735         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
736         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
737         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
739 2006-03-17  Roland McGrath  <roland@redhat.com>
741         * elf/rtld.c (dl_main): Run final self-relocation after setting up TLS.
742         From Alexandre Oliva <aoliva@redhat.com>.
744         * elf/tst-audit2.c: New file.
745         * elf/Makefile (tests): Add it.
746         ($(objpfx)tst-audit2.out): New target.
747         (tst-audit2-ENV): New variable.
749         * elf/tst-leaks1.c: Include <stdio.h>.
751 2006-03-16  Roland McGrath  <roland@redhat.com>
753         * sysdeps/unix/sysv/linux/alpha/getcontext.S (__getcontext_x):
754         Use .set noat to quiet assembler warning.
756         * math/gen-libm-test.pl (parse_args): Take function name for pretty
757         output as an argument.
758         (generate_testfile): Pass it the name given in the START macro.
760         [BZ #2466]
761         * math/libm-test.inc (llrint_test, llround_test): Fix last change to
762         protect large-precision cases with [LDBL_MANT_DIG > 100].
763         (llrint_test_tonearest, llrint_test_towardzero): Likewise.
764         (llrint_test_downward, llrint_test_upward): Likewise.
766 2006-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
767             Alan Modra  <amodra@bigpond.net.au>
769         [BZ #2466]
770         * math/libm-test.inc (llrint_test, llround_test) [TEST_LDOUBLE]:
771         Add new test values.
772         (llrint_test_tonearest, llrint_test_towardzero, llrint_test_downward,
773         llrint_test_upward): New functions.
774         (main): Call them.
776         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Handle
777         rounding that spans doubles in IBM long double format.
778         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
779         * sysdeps/powerpc/powerpc64/fpu/s_llrintl.S: Removed.
780         * sysdeps/powerpc/powerpc64/fpu/s_llroundl.S: Removed.
781         * sysdeps/powerpc/powerpc64/fpu/s_lrintl.S: Removed.
782         * sysdeps/powerpc/powerpc64/fpu/s_lroundl.S: Removed.
784 2006-03-16  Roland McGrath  <roland@redhat.com>
786         * wcsmbs/wchar.h (__wcstol_internal, __wcstoul_internal): Declare these
787          only when we will use them, under [__OPTIMIZE__ && __GNUC__ >= 2].
788         (__wcstoll_internal, __wcstoull_internal_defined): Likewise.
790 2006-03-06  Steven Munroe  <sjmunroe@us.ibm.com>
792         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Add cfi_offset for spilling
793         of non-volatile floating-point registers to the stack (fp14-fp31).
794         * sysdeps/powerpc/powerpc32/gprsave0.S: Add cfi_offset for spilling of
795         non-volatile general-purpose registers to the stack (gpr13-gpr31).
796         * sysdeps/powerpc/powerpc64/dl-trampoline.S: Add cfi_offset
797         for non-volatiles gpr30 - grp31 spilled to the stack.
798         * sysdeps/powerpc/powerpc64/memcpy.S: Add cfi_offset for non-volatile
799         gpr31 spill to the stack.
800         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
801         Add cfi_offset for non-volatile gpr31 spill to the stack.
802         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Add cfi_offset
803         for non-volatiles gpr28 - grp31 spilled to the stack.
804         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Add
805         cfi_adjust_cfa_offset when a frame is stacked.
806         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S:
807         (__novec_setcontext) : Add cfi_offset for non-volatile gpr31 spill
808         add LR saved to the stack.  Add cfi_adjust_cfa_offset when frame is
809         stacked.
810         (__setcontext) : Add cfi_offset for non-volatile gpr31 spill to
811         the stack.
812         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S:
813         (__novec_swapcontext) : Add cfi_offset for non-volatile gpr31 spill
814         add LR saved to the stack.
815         (__swapcontext) : Add cfi_offset for non-volatile gpr31 spill add LR
816         saved to the stack.  Add cfi_adjust_cfa_offset when frame is stacked.
818 2006-03-07  Jakub Jelinek  <jakub@redhat.com>
820         [BZ #2423]
821         * math/libm-test.inc [TEST_LDOUBLE] (ceil_test, floor_test, rint_test,
822         round_test, trunc_test): Only run some of the new tests if
823         LDBL_MANT_DIG > 100.
825 2006-03-03  Steven Munroe  <sjmunroe@us.ibm.com>
826             Alan Modra  <amodra@bigpond.net.au>
828         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround, __fesetround):
829         Define inline implementations.
830         * sysdeps/powerpc/fpu/fegetround.c: Use __fegetround.
831         * sysdeps/powerpc/fpu/fesetround.c: Use __fesetround.
833         * sysdeps/powerpc/fpu/math_ldbl.h: New file.
835         [BZ #2423]
836         * math/libm-test.inc [TEST_LDOUBLE] (ceil_test, floor_test, rint_test,
837         round_test, trunc_test): Add new tests.
838         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
839         (EXTRACT_IBM_EXTENDED_MANTISSA, INSERT_IBM_EXTENDED_MANTISSA):
840         Removed, replaced with ...
841         (ldbl_extract_mantissa, ldbl_insert_mantissa, ldbl_pack, ldbl_unpack,
842         ldbl_canonicalise, ldbl_nearbyint): New functions.
843         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Replace
844         EXTRACT_IBM_EXTENDED_MANTISSA and INSERT_IBM_EXTENDED_MANTISSA
845         with ldbl_extract_mantissa and ldbl_insert_mantissa.
846         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
847         Replace EXTRACT_IBM_EXTENDED_MANTISSA with ldbl_extract_mantissa.
848         (ldbl_extract_mantissa, ldbl_insert_mantissa): New inline functions.
849         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c (__ceill): Handle rounding
850         that spans doubles in IBM long double format.
851         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
852         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
853         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
854         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
855         * sysdeps/powerpc/powerpc64/fpu/s_rintl.S: File removed.
857 2004-12-09  Randolph Chung  <tausq@debian.org>
859         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Don't
860         define for hppa, which doesn't support this syscall.
862 2006-03-13  Jakub Jelinek  <jakub@redhat.com>
864         [BZ #2451]
865         * elf/dl-load.c (open_verify): Add free_name argument, if true, free
866         name before calling lose.
867         (open_path): Adjust caller.
868         (_dl_map_object): Adjust callers.  Free name_copy before calling
869         _dl_signal_error.
870         * elf/Makefile: Add rules to build and run tst-leaks1.
871         * elf/tst-leaks1.c: New test.
873 2006-03-06  Roland McGrath  <roland@redhat.com>
875         * version.h (VERSION): 2.4
876         * README.template: Update for 2.4.
877         * README: Regenerated.
878         * manual/install.texi (Configuring and compiling): Separate build
879         directory is mandatory.  Use glibc-2.4 in example.
880         Update --enable-add-ons description.
881         (Supported Configurations): Remove section.
882         * INSTALL: Regenerated.
884         * sysdeps/unix/sysv/linux/x86_64/sysconf.c
885         (handle_intel, handle_amd): Add __attribute__ ((noinline)).
886         * sysdeps/unix/sysv/linux/i386/sysconf.c
887         (handle_i486, handle_intel, handle_amd): Likewise.
889         * sysdeps/unix/sysv/linux/i386/sysconf.c (__sysconf): Don't handle
890         _SC_CPUTIME and _SC_THREAD_CPUTIME here.
891         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (__sysconf): Likewise.
893 2006-03-05  Roland McGrath  <roland@redhat.com>
895         * malloc/malloc.c (MALLOC_ALIGNMENT): Revert to (2 * SIZE_SZ) value.
896         The correct value differs only on powerpc32, and for now changing it
897         there is causing more trouble than it's worth.
899         * malloc/arena.c: Add compile-time sanity check on padding calculation.
901 2006-03-05  Jakub Jelinek  <jakub@redhat.com>
903         * malloc/arena.c (heap_info): Adjust the padding size if
904         MALLOC_ALIGNMENT > 2 * SIZE_SZ.
906 2006-03-05  Roland McGrath  <roland@frob.com>
908         * sysdeps/mach/hurd/faccessat.c: New file.
909         * sysdeps/mach/hurd/fchmodat.c: New file.
910         * sysdeps/mach/hurd/fchownat.c: New file.
911         * sysdeps/mach/hurd/fxstatat.c: New file.
912         * sysdeps/mach/hurd/fxstatat64.c: New file.
913         * sysdeps/mach/hurd/linkat.c: New file.
914         * sysdeps/mach/hurd/mkdirat.c: New file.
915         * sysdeps/mach/hurd/openat.c: New file.
916         * sysdeps/mach/hurd/openat64.c: New file.
917         * sysdeps/mach/hurd/symlinkat.c: New file.
918         * sysdeps/mach/hurd/unlinkat.c: New file.
919         * sysdeps/mach/hurd/xmknod.c (__xmknod): Just call __xmknodat.
920         Guts move to ...
921         * sysdeps/mach/hurd/xmknodat.c: ... here, new file.
923         * hurd/lookup-at.c: New file.
924         * hurd/Makefile (routines): Add it.
925         * hurd/hurd/fd.h: Declare __file_name_lookup_at,
926         __file_name_split_at and __directory_name_split_at.
928         * hurd/hurd/lookup.h: Declare {,__}hurd_directory_name_split.
930         * hurd/hurdlookup.c (__hurd_directory_name_split): Use __memrchr
931         unconditionally.
933         * sysdeps/mach/hurd/open.c: Define {,__,__libc_,}open64 as aliases.
934         * sysdeps/mach/hurd/open64.c: New file.
936         * sysdeps/posix/sysconf.c (__sysconf): Use #if _POSIX_FOO > 0
937         rather than #ifdef _POSIX_FOO for options.  We should return -1
938         at runtime for an option defined to 0 at compile time.
940         * sysdeps/mach/hurd/bits/posix_opt.h: Define many missing options,
941         many to -1 or 0.
943 2006-03-05  Roland McGrath  <roland@redhat.com>
945         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
946         [__NR_clock_getres || HP_TIMING_AVAIL]: Handle _SC_CPUTIME,
947         _SC_THREAD_CPUTIME.
949 2006-03-05  David S. Miller  <davem@sunset.davemloft.net>
951         * sysdeps/sparc/sparc32/dl-trampoline.S: Add CFI markings.
952         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
953         * sysdeps/sparc/sparc64/dl-trampoline.S: Likewise.
954         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
955         * sysdeps/sparc/sparc32/memchr.S: Rearrange code to reside
956         within ENTRY/END.
957         * sysdeps/sparc/sparc32/memcpy.S: Likewise.
958         * sysdeps/sparc/sparc32/stpcpy.S: Likewise.
959         * sysdeps/sparc/sparc32/strcat.S: Likewise.
960         * sysdeps/sparc/sparc32/strchr.S: Likewise.
961         * sysdeps/sparc/sparc32/strcmp.S: Likewise.
962         * sysdeps/sparc/sparc32/strcpy.S: Likewise.
963         * sysdeps/sparc/sparc32/strlen.S: Likewise.
964         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
965         * sysdeps/sparc/sparc64/sparcv9v/memset.S: Likewise.
966         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Add CFI markings
967         and use __syscall_error.
968         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Likewise.
969         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
970         * sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S: Use __syscall_error.
971         * sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S: Likewise.
972         * sysdeps/unix/sysv/linux/sparc/sparc32/socket.S: Likewise.
973         * sysdeps/unix/sysv/linux/sparc/sparc64/socket.S: Likewise.
974         * sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S: Likewise.
975         * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
976         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Rewrite to use
977         CFI markings and __syscall_error.
978         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
979         * sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S: Rearrange
980         code to reside within ENTRY/END.
981         * sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S: Likewise.
982         * sysdeps/unix/sysv/linux/sparc/sysdep.c: New file.
983         * sysdeps/unix/sysv/linux/sparc/sysdep.S: File removed.
984         * sysdeps/unix/sysv/linux/sparc/rt-sysdep.c: New file.
985         * sysdeps/unix/sysv/linux/sparc/Makefile (librt-routines): Add it.
987         * shlib-versions: Use sparc64.*- for CPU patterns.
989 2006-03-05  Roland McGrath  <roland@frob.com>
991         * bits/resource.h (RLIMIT_SBSIZE, RLIMIT_AS, RLIMIT_VMEM): Define.
993         * sysdeps/mach/hurd/fdopendir.c (__fdopendir): Use O_DIRECTORY
994         to force directory check.
995         * sysdeps/mach/hurd/opendir.c (__opendir): Likewise.
997 2006-03-04  Roland McGrath  <roland@frob.com>
999         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Make sure high bits
1000         of SEL are clear after copying %gs to low bits.
1001         (_hurd_tls_fork): Likewise.
1003 2006-03-03  Roland McGrath  <roland@redhat.com>
1005         [BZ #2414]
1006         * stdlib/tst-setcontext.c (f1): Take arguments of type int.
1008 2006-03-02  Roland McGrath  <roland@redhat.com>
1010         * sysdeps/unix/alpha/sysdep.h (PTR_MANGLE): Use __typeof in cast.
1012 2006-03-02  Daniel Jacobowitz  <dan@codesourcery.com>
1014         * sysdeps/unix/sysv/linux/configure.in: Remove MIPS cases.  Allow
1015         libc_cv_slibdir et al. to be overridden.
1016         * sysdeps/unix/sysv/linux/configure: Regenerated.
1018 2005-12-27  Jakub Jelinek  <jakub@redhat.com>
1020         * elf/ldconfig.c (search_dir): Skip prelink temporaries.
1022 2006-03-02  H.J. Lu  <hongjiu.lu@intel.com>
1024         * elf/check-textrel.c: Don't include "config.h".
1026 2006-03-02  Jakub Jelinek  <jakub@redhat.com>
1028         * io/ftw.c (process_entry): If dir->streamfd != -1,
1029         use FXSTATAT rather than LXSTAT to find if unstatable
1030         file is a dead symlink.
1032         * elf/check-textrel.c: Include config.h.
1033         (AB(handle_file)): Don't fail if PF_X | PF_W on architectures known
1034         to have executable writable PLT.
1035         * sysdeps/powerpc/powerpc32/configure.in (HAVE_PPC_SECURE_PLT): New
1036         test.
1037         * config.h.in (HAVE_PPC_SECURE_PLT): Add.
1039         * malloc/malloc.c (MALLOC_ALIGNMENT): Set to __alignof__ (long double)
1040         if long double is more aligned than 2 * SIZE_SZ.
1041         (misaligned_chunk): Define.
1042         (public_rEALLOc, _int_free, _int_realloc): Use it.
1044 2006-01-05  H.J. Lu  <hongjiu.lu@intel.com>
1046         [BZ #2013]
1047         * sysdeps/ia64/memccpy.S: Properly handle recovery for
1048         predicated speculative load.
1050 2006-03-01  Jakub Jelinek  <jakub@redhat.com>
1052         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Update.
1054         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat64): Use
1055         libc_hidden_ver rather than libc_hidden_def.
1057         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Update.
1058         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept):
1059         Use inline asm to make sure the compiler doesn't optimize insns out.
1061         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
1062         (DECLARGS_6): Fix a typo.
1064 2006-03-01  Roland McGrath  <roland@redhat.com>
1066         * version.h (VERSION): 2.3.91
1068         * Makeconfig (sysdeps-srcdirs): New variable.
1069         (sysdeps-add-ons-srcdirs): Use it.
1070         * csu/Makefile (all-Banner-files): Use it.
1072         * Makefile (dist-selector): New variable.
1073         (glibc-%.tar rule): Use it.  Make $(dist-separate) tarballs
1074         contain one version-named directory.
1076         * Makefile (format-me): Use  --plaintext --no-number-sections.
1078         * NOTES, INSTALL: Regenerated.
1080         * NEWS: Update 2.4 items.
1082 2006-03-01  David S. Miller  <davem@sunset.davemloft.net>
1084         * configure.in (machine): Match sparcv9v and sparc64v.
1085         * configure: Regenerated.
1086         * sysdeps/sparc/sparc32/sparcv9v/memcpy.S: New file.
1087         * sysdeps/sparc/sparc32/sparcv9v/memset.S: New file.
1088         * sysdeps/sparc/sparc64/sparcv9v/memcpy.S: New file.
1089         * sysdeps/sparc/sparc64/sparcv9v/memset.S: New file.
1091 2006-03-01  Roland McGrath  <roland@frob.com>
1093         * sysdeps/mach/hurd/Subdirs: Use "first hurd".
1095 2006-02-28  Roland McGrath  <roland@redhat.com>
1097         * sysdeps/rs6000: Directory removed, saved in ports repository.
1099 2006-03-01  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1101         * sysdeps/unix/sysv/linux/sh/pread.c: Copy in mips pread.c.
1102         * sysdeps/unix/sysv/linux/sh/pwrite.c: Copy in mips pwrite.c.
1103         * sysdeps/unix/sysv/linux/sh/pread64.c: Copy in mips pread64.c.
1104         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Copy in mips pwrite64.c.
1106 2006-02-28  Roland McGrath  <roland@redhat.com>
1108         * elf/tst-tls-dlinfo.c: New file.
1109         * elf/Makefile (tests): Add it.
1110         ($(objpfx)tst-tls-dlinfo): Depend on $(libdl).
1111         ($(objpfx)tst-tls-dlinfo.out): Depend on $(objpfx)tst-tlsmod2.so.
1113         * dlfcn/dlfcn.h (RTLD_DI_PROFILENAME, RTLD_DI_PROFILEOUT): New enum
1114         values, reserve unsupported requested names used on Solaris.
1115         (RTLD_DI_TLS_MODID, RTLD_DI_TLS_DATA): New enum values.
1116         (RTLD_DI_MAX): Likewise.
1117         * dlfcn/dlinfo.c (dlinfo_doit): Handle RTLD_DI_TLS_MODID and
1118         RTLD_DI_TLS_DATA.
1120         * elf/dl-tls.c (_dl_tls_get_addr_soft): New function.
1121         * sysdeps/generic/ldsodefs.h: Declare it.
1122         * elf/Versions (ld: GLIBC_PRIVATE): Add it.
1123         * elf/link.h (struct dl_phdr_info): New members dlpi_tls_modid,
1124         dlpi_tls_data.
1125         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill them in.
1127         * include/link.h: Don't copy contents from elf/link.h.
1128         Instead, #include it while #define'ing around link_map.
1129         * elf/dl-debug.c (_dl_debug_initialize): Add a cast.
1130         Add bogus extern decl to verify link_map members.
1131         * elf/loadtest.c (MAPS): New macro, cast _r_debug._r_map.
1132         (OUT, main): Use it in place of _r_debug._r_map.
1133         * elf/unload.c: Likewise.
1134         * elf/unload2.c: Likewise.
1135         * elf/neededtest.c (check_loaded_objects): Likewise.
1136         * elf/neededtest2.c (check_loaded_objects): Likewise.
1137         * elf/neededtest3.c (check_loaded_objects): Likewise.
1138         * elf/neededtest4.c (check_loaded_objects): Likewise.
1139         * elf/circleload1.c (check_loaded_objects): Likewise.
1141         * nscd/nscd_helper.c: Include <time.h> for `time' declaration.
1143         * include/fcntl.h: Declare __openat, __open64.  Use libc_hidden_proto.
1144         * io/openat.c (__openat): Define instead of openat.
1145         Use libc_hidden_def.  Define openat with weak_alias.
1146         * io/openat64.c (__openat64): Define instead of openat64.
1147         Use libc_hidden_def.  Define openat64 with weak_alias.
1148         * sysdeps/unix/sysv/linux/openat.c: Likewise.
1150         * libio/genops.c: Include <sched.h> for __sched_yield decl.
1152         * Makeconfig (+includes): Add back $(includes)
1153         after $(+sysdep-includes).
1155         * Makerules ($(common-objpfx)%.make): Use -DASSEMBLER.
1157 2006-02-28  Jakub Jelinek  <jakub@redhat.com>
1159         * posix/sys/types.h [!__GNUC_PREREQ (2, 7)] (int64_t, u_int64_t):
1160         typedef to long int resp. unsigned long int on 64-bit arches.
1162         * sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c: Include x86_64
1163         umount.c rather than hppa umount.c.
1164         * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Include sh chown.c
1165         rather than m68k chown.c.
1166         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include sh
1167         fchownat.c rather than m68k fchownat.c.
1168         * sysdeps/unix/sysv/linux/sh/chown.c: Copy over from m68k chown.c.
1169         * sysdeps/unix/sysv/linux/sh/fchownat.c: Copy over from m68k
1170         fchownat.c.
1171         * sysdeps/unix/sysv/linux/x86_64/brk.c: Copy over from hppa brk.c.
1172         * sysdeps/unix/sysv/linux/x86_64/umount.c: Copy over from hppa
1173         umount.c.
1175 2006-02-28  Roland McGrath  <roland@redhat.com>
1177         * sysdeps/hppa: Directory removed, saved in ports repository.
1178         * sysdeps/mach/hppa: Likewise.
1179         * sysdeps/mach/hurd/hppa: Likewise.
1180         * sysdeps/unix/sysv/linux/hppa: Likewise.
1181         * configure.in (machine): Remove hppa* cases.
1182         * configure: Regenerated.
1183         * shlib-versions: Remove hppa cases.
1185         * sysdeps/m68k: Directory removed, saved in ports repository.
1186         * sysdeps/unix/bsd/m68k: Likewise.
1187         * sysdeps/unix/sysv/linux/m68k: Likewise.
1188         * configure.in (machine): Remove m68* cases.
1189         * configure: Regenerated.
1191         * elf/rtld-Rules (subdir-args): New variable.
1192         (rtld-subdir-make): Use it.
1194 2006-02-22  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1196         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
1197         (DO_CALL): Add support for 6 system call parameters.
1198         (DECLARGS_6, ASMFMT_6): Define.
1199         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1201 2006-02-28  Roland McGrath  <roland@redhat.com>
1203         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Copy in i386/bits/fcntl.h.
1205 2006-02-27  Roland McGrath  <roland@redhat.com>
1207         * scripts/config.guess: Update from master, timestamp='2006-02-27'.
1208         * scripts/config.sub: Update from master, timestamp='2006-02-27'.
1210         * Makefile (subdir-target-args): New variable.
1211         ($(all-subdirs-targets)): Use it in place of -C option.
1212         * Rules: Use $(..) instead of ../ if it's already defined.
1213         * Makeconfig (subdir-srcdirs): New variable.
1214         * csu/Makefile (all-Banner-files): Use it.
1216         * configure.in (--enable-add-ons): Set to "yes" by default.
1217         Handle absolute add-on directory names when looking for configure
1218         fragments.  Also look for sysdeps/*/preconfigure fragments in add-ons.
1219         Require add-on configure to set $libc_add_on_canonical, use
1220         that in $add_ons_sfx.  Substitute add_on_subdirs with computed list
1221         of subdir names each add-on configure set in libc_add_on_subdirs.
1222         * configure: Regenerated.
1223         * Makefile (%/preconfigure: %/preconfigure.in): New pattern rule.
1224         * config.make.in (add-on-subdirs): New substituted variable.
1225         * Makeconfig (all-subdirs): Include $(add-on-subdirs).
1226         Remove $(add-ons), $(sysdep-subdirs).
1227         Don't filter out $(sysdep-inhibit-subdirs).
1228         ($(common-objpfx)sysd-dirs): Target removed.  Don't include it.
1229         ($(common-objpfx)sysd-sorted): Rewritten to feed Depend and Subdirs
1230         files together to gen-sorted.awk, and $(subdirs) via -v.
1231         (subdirs): Remove magic reordering for mach and hurd.
1232         * scripts/gen-sorted.awk: Use subdirs from command line.
1233         Process Subdirs and Depend files directly.
1234         Let Subdirs files use "first dir" and "inhibit dir".
1235         Always move elf to the end of the list.
1236         * hurd/Depend: New file.
1237         * sysdeps/mach/Subdirs: Use "first mach".
1239         * Makefile (dist-separate): Remove linuxthreads.
1240         (dist-separate-linuxthreads): Variable removed.
1241         (glibc-%.tar rule): Use $(sysdeps-add-ons).
1243         * Makerules ($(common-objpfx)Versions.v.i): Use $(subdirs),
1244         not $(all-subdirs).
1245         (sysdep-makefiles): Use $(sysdirs).
1246         (sysdirs): Remove export.
1247         ($(+sysdir_pfx)sysd-rules): Handle absolute directory names in
1248         $(config-sysdirs).
1249         (+sysdir_pfx): Variable removed.
1250         (sysd-rules): Use $(common-objpfx) in place of it.
1251         (sysdirs): Variable moved to ...
1252         * Makeconfig (sysdirs): ... here.
1253         Handle absolute directory names in $(config-sysdirs).
1254         (full_config_sysdirs): Variable removed.
1255         * csu/Makefile: Use $(sysdirs) in vpath directive.
1256         * math/Makefile (ulps-file): Use $(sysdirs).
1257         * sysdeps/gnu/Makefile (errlist-c): Likewise.
1258         ($(objpfx)errlist-compat.c): Likewise.
1259         * Makeconfig (all-Subdirs-files): Likewise.
1260         ($(common-objpfx)config.status): Likewise.
1262         * configure.in (sysnames): Handle absolute add-on directory names.
1263         (sysdeps_add_ons): New variable, AC_SUBST it.
1264         Compute which add-ons contributed sysdeps directories.
1265         * configure: Regenerated.
1266         * config.make.in (sysdeps-add-ons): New substituted variable.
1267         * Makerules (+sysdep_dirs, +sysdep-includes): Variables moved ...
1268         * Makeconfig: ... to here.
1269         (+sysdep_dirs): Append $(sysdeps-add-ons) here.
1270         (+includes): Remove $(objpfx) include, already in $(+sysdep_dirs).
1271         Remove $(includes).
1272         (sysdep-makeconfigs): Use $(+sysdep_dirs).
1273         ($(common-objpfx)shlib-versions.v.i): Likewise.
1275         * Makeconfig: Remove hair to set Makeconfig-add-on.
1277         * sysdeps/unix/Makefile (sysdirs): Remove export.
1278         (asm_CPP): Variable removed.
1279         ($(common-objpfx)sysd-syscalls): Pass them directly for the script.
1281         * sysdeps/posix/Makefile: New file.
1282         * Makerules (L_tmpnam, TMP_MAX, L_ctermid, L_cuserid): Set non-posix
1283         values here with ?=.
1285         * stdlib/gen-mpn-copy: File removed.
1286         * stdlib/Makefile (distribute): Remove it.
1287         * configure.in: Don't grok --with-gmp.
1288         * configure: Regenerated.
1290         * configure.in (libc_cv_idn): Don't check it; libidn/configure does it.
1291         * configure: Regenerated.
1293 2006-02-27  Ulrich Drepper  <drepper@redhat.com>
1295         * sysdeps/unix/sysv/linux/linkat.c (linkat): Allow flags to be set
1296         when syscall is used.
1297         * io/fcntl.h (AT_SYMLINK_FOLLOW): Define.
1299 2006-02-26  Roland McGrath  <roland@redhat.com>
1301         * bare: Directory removed, saved in ports repository.
1303         * sysdeps/unix/common/Makefile: File removed.
1304         * sysdeps/unix/common/glue-ctype.c: File removed.
1305         * sysdeps/unix/common/configure.in: File removed.
1306         * sysdeps/unix/common/configure: File removed.
1308         * sysdeps/unix/configure.in: File removed.
1309         * sysdeps/unix/configure: File removed.
1310         * sysdeps/unix/make_errlist.c: File removed.
1311         * sysdeps/unix/Makefile ($(objpfx)errlist.c, $(objpfx)make_errlist):
1312         Rules removed.
1314         * timezone/africa: Update from tzdata2006b (comment changes only).
1315         * timezone/antarctica: Likewise.
1316         * timezone/asia: Likewise.
1317         * timezone/australasia: Likewise.
1318         * timezone/backward: Likewise.
1319         * timezone/etcetera: Likewise.
1320         * timezone/europe: Likewise.
1321         * timezone/factory: Likewise.
1322         * timezone/iso3166.tab: Likewise.
1323         * timezone/leapseconds: Likewise.
1324         * timezone/northamerica: Likewise.
1325         * timezone/pacificnew: Likewise.
1326         * timezone/solar87: Likewise.
1327         * timezone/solar88: Likewise.
1328         * timezone/solar89: Likewise.
1329         * timezone/southamerica: Likewise.
1330         * timezone/systemv: Likewise.
1331         * timezone/zone.tab: Likewise.
1333 2006-02-26  Ulrich Drepper  <drepper@redhat.com>
1335         * posix/unistd.h: Add fifth parameter to linkat.
1336         * io/linkat.c: Likewise.
1337         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
1338         * io/tst-linkat.c (do_test): Pass new parameter to linkat.
1340         * elf/do-lookup.h (do_lookup_x): No need to compare SKIP to NULL
1341         before comparison with MAP.
1343         * elf/dl-sym.c (do_sym): For RTLD_NEXT, pass MATCH to
1344         dl_lookup_symbol_x instead of L.
1346 2006-02-24  Mike Frysinger  <vapier@gentoo.org>
1348         * sysdeps/gnu/net/if.h (IFF_DYNAMIC): New macro.
1350 2006-02-24  David S. Miller  <davem@sunset.davemloft.net>
1352         * configure.in: Use sparc/sparc32/sparcv9/sparcv9b in place
1353         of sparc/sparc32/sparcv9b.
1354         * sysdeps/sparc/sparc32/sparcv9b/Implies: File removed.
1355         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9b/Implies: File removed.
1357 2006-02-24  Roland McGrath  <roland@redhat.com>
1359         * elf/elf.h (HWCAP_SPARC_BLKINIT): New macro.
1360         * sysdeps/sparc/dl-procinfo.h (HWCAP_IMPORTANT): Add it.
1361         (_DL_HWCAP_COUNT): Increase to 7.
1362         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add "v9v".
1363         From David S. Miller <davem@sunset.davemloft.net>.
1365         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: Moved to ...
1366         * sysdeps/sparc/dl-procinfo.c: ... here, new file.
1367         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
1368         * sysdeps/sparc/dl-procinfo.h: ... here, new file.
1369         (HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE != 64].
1370         * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
1371         * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
1373         * elf/sofini.c (__FRAME_END__): Mark as const.
1374         * elf/soinit.c (__EH_FRAME_BEGIN__): Likewise.  Add used attribute.
1376 2006-02-18  Joseph S. Myers  <joseph@codesourcery.com>
1378         * soft-fp/single.h (SFtype): Define.
1379         (union _FP_UNION_S): Use it.
1380         * soft-fp/double.h (DFtype): Define.
1381         (union _FP_UNION_D): Use it.
1382         * soft-fp/extended.h (XFtype): Define.
1383         (union _FP_UNION_E): Use it.
1384         * soft-fp/quad.h (TFtype): Define.
1385         (union _FP_UNION_Q): Use it.
1386         * soft-fp/soft-fp.h: Add _LIBC conditionals.
1387         (SI_BITS, DI_BITS): Define.
1388         * soft-fp/op-common.h (_FP_DECL): Add __attribute__((unused)) for
1389         X##_c.
1390         (_FP_CMP_EQ): Use parentheses for && inside ||.
1391         (_FP_TO_INT): Use statement expressions in conditional controlling
1392         constant shift.
1393         (_FP_FROM_INT): Likewise.  Take unsigned type as argument.
1394         * soft-fp/op-2.h (_FP_FRAC_SLL_2, _FP_FRAC_SRL_2, _FP_FRAC_SRST_2,
1395         _FP_FRAC_SRS_2, _FP_FRAC_ASSEMBLE_2): Use statement expressions in
1396         conditional controlling possibly constant shift.
1397         (_FP_FRAC_SRST_2, _FP_FRAC_SRS_2): Avoid left shift by exactly
1398         _FP_W_TYPE_SIZE.
1399         (_FP_FRAC_GT_2, _FP_FRAC_GE_2): Use parentheses for && inside ||.
1400         * soft-fp/op-4.h (_FP_FRAC_SRST_4): Avoid left shift by exactly
1401         _FP_W_TYPE_SIZE.
1402         (__FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
1403         __FP_FRAC_SUB_4): Use _FP_W_TYPE for carry flags.
1404         * soft-fp/op-8.h (_FP_FRAC_SRS_8): Avoid left shift by exactly
1405         _FP_W_TYPE_SIZE.
1406         * soft-fp/floatdidf.c: Pass unsigned type and macro for type size.
1407         * soft-fp/floatdisf.c: Likewise.
1408         * soft-fp/floatditf.c: Likewise.
1409         * soft-fp/floatsidf.c: Likewise.
1410         * soft-fp/floatsisf.c: Likewise.
1411         * soft-fp/floatsitf.c: Likewise.
1412         * soft-fp/floatundidf.c: Likewise.
1413         * soft-fp/floatundisf.c: Likewise.
1414         * soft-fp/floatunditf.c: Likewise.
1415         * soft-fp/floatunsidf.c: Likewise.
1416         * soft-fp/floatunsisf.c: Likewise.
1417         * soft-fp/floatunsitf.c: Likewise.
1418         * soft-fp/fixdfdi.c: Pass macro for type size.
1419         * soft-fp/fixdfsi.c: Likewise.
1420         * soft-fp/fixsfdi.c: Likewise.
1421         * soft-fp/fixsfsi.c: Likewise.
1422         * soft-fp/fixtfdi.c: Likewise.
1423         * soft-fp/fixtfsi.c: Likewise.
1424         * soft-fp/fixunsdfdi.c: Likewise.
1425         * soft-fp/fixunsdfsi.c: Likewise.
1426         * soft-fp/fixunssfdi.c: Likewise.
1427         * soft-fp/fixunssfsi.c: Likewise.
1428         * soft-fp/fixunstfdi.c: Likewise.
1429         * soft-fp/fixunstfsi.c: Likewise.
1430         * sysdeps/alpha/soft-fp/ots_cvtqux.c: Pass unsigned type.
1431         * sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
1432         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
1433         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
1434         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
1435         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
1436         * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
1437         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
1438         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
1439         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
1440         * sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
1441         * sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
1442         * sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
1443         * sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
1444         * soft-fp/adddf3.c: Use typedefs for argument and return types.
1445         * soft-fp/addsf3.c: Likewise.
1446         * soft-fp/addtf3.c: Likewise.
1447         * soft-fp/divdf3.c: Likewise.
1448         * soft-fp/divsf3.c: Likewise.
1449         * soft-fp/divtf3.c: Likewise.
1450         * soft-fp/eqdf2.c: Likewise.
1451         * soft-fp/eqsf2.c: Likewise.
1452         * soft-fp/eqtf2.c: Likewise.
1453         * soft-fp/extenddftf2.c: Likewise.
1454         * soft-fp/extendsfdf2.c: Likewise.
1455         * soft-fp/extendsftf2.c: Likewise.
1456         * soft-fp/fixdfdi.c: Likewise.
1457         * soft-fp/fixdfsi.c: Likewise.
1458         * soft-fp/fixsfdi.c: Likewise.
1459         * soft-fp/fixsfsi.c: Likewise.
1460         * soft-fp/fixtfdi.c: Likewise.
1461         * soft-fp/fixtfsi.c: Likewise.
1462         * soft-fp/fixunsdfdi.c: Likewise.
1463         * soft-fp/fixunsdfsi.c: Likewise.
1464         * soft-fp/fixunssfdi.c: Likewise.
1465         * soft-fp/fixunssfsi.c: Likewise.
1466         * soft-fp/fixunstfdi.c: Likewise.
1467         * soft-fp/fixunstfsi.c: Likewise.
1468         * soft-fp/floatdidf.c: Likewise.
1469         * soft-fp/floatdisf.c: Likewise.
1470         * soft-fp/floatditf.c: Likewise.
1471         * soft-fp/floatsidf.c: Likewise.
1472         * soft-fp/floatsisf.c: Likewise.
1473         * soft-fp/floatsitf.c: Likewise.
1474         * soft-fp/floatundidf.c: Likewise.
1475         * soft-fp/floatundisf.c: Likewise.
1476         * soft-fp/floatunditf.c: Likewise.
1477         * soft-fp/floatunsidf.c: Likewise.
1478         * soft-fp/floatunsisf.c: Likewise.
1479         * soft-fp/floatunsitf.c: Likewise.
1480         * soft-fp/gedf2.c: Likewise.
1481         * soft-fp/gesf2.c: Likewise.
1482         * soft-fp/getf2.c: Likewise.
1483         * soft-fp/ledf2.c: Likewise.
1484         * soft-fp/lesf2.c: Likewise.
1485         * soft-fp/letf2.c: Likewise.
1486         * soft-fp/muldf3.c: Likewise.
1487         * soft-fp/mulsf3.c: Likewise.
1488         * soft-fp/multf3.c: Likewise.
1489         * soft-fp/negdf2.c: Likewise.
1490         * soft-fp/negsf2.c: Likewise.
1491         * soft-fp/negtf2.c: Likewise.
1492         * soft-fp/sqrtdf2.c: Likewise.
1493         * soft-fp/sqrtsf2.c: Likewise.
1494         * soft-fp/sqrttf2.c: Likewise.
1495         * soft-fp/subdf3.c: Likewise.
1496         * soft-fp/subsf3.c: Likewise.
1497         * soft-fp/subtf3.c: Likewise.
1498         * soft-fp/truncdfsf2.c: Likewise.
1499         * soft-fp/trunctfdf2.c: Likewise.
1500         * soft-fp/trunctfsf2.c: Likewise.
1501         * soft-fp/unorddf2.c: Likewise.
1502         * soft-fp/unordsf2.c: Likewise.
1503         * soft-fp/unordtf2.c: Likewise.
1505 2006-02-09  Joseph S. Myers  <joseph@codesourcery.com>
1507         * soft-fp/op-common.h (_FP_UNPACK_SEMIRAW): Define.
1508         (_FP_OVERFLOW_SEMIRAW): Likewise.
1509         (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
1510         (_FP_CHOOSENAN_SEMIRAW): Likewise.
1511         (_FP_EXP_NORMAL): Likewise.
1512         (_FP_PACK_SEMIRAW): Likewise.
1513         (_FP_ADD_INTERNAL): Rewrite to operate on semi-raw value.
1514         (_FP_SUB): Likewise.
1515         (_FP_TO_INT): Rewrite to operate on raw values.  Don't set INVALID
1516         exception for conversions where most negative representable
1517         integer is correct truncated value, but do set INEXACT for such
1518         conversions where appropriate.  Don't always left-shift for
1519         converting to a wider integer.
1520         (_FP_FROM_INT): Rewrite to yield raw value.  Correct shift for
1521         integers with one more bits than (mantissa + guard) bits for the
1522         floating point format.  Don't use __FP_FRAC_SRS_1 for shifting
1523         integers that may be wider than _FP_W_TYPE_SIZE.
1524         (FP_CONV): Don't define.
1525         (FP_EXTEND): Define.
1526         (FP_TRUNC): Likewise.
1527         * soft-fp/op-1.h (_FP_FRAC_SRST_1, __FP_FRAC_SRST_1): Define.
1528         (_FP_FRAC_CONV_1_1): Don't define.
1529         (_FP_FRAC_COPY_1_1): Define.
1530         * soft-fp/op-2.h (_FP_FRAC_SRST_2): Define.
1531         (_FP_FRAC_CONV_1_2, _FP_FRAC_CONV_2_1): Don't define.
1532         (_FP_FRAC_COPY_1_2, _FP_FRAC_COPY_2_1): Define.
1533         * soft-fp/op-4.h (_FP_FRAC_SRST_4): Define.
1534         (_FP_FRAC_SRS_4): Define based on _FP_FRAC_SRST_4.
1535         (_FP_FRAC_CONV_1_4, _FP_FRAC_CONV_2_4): Don't define.
1536         (_FP_FRAC_COPY_1_4, _FP_FRAC_COPY_2_4): Define.
1537         (_FP_FRAC_CONV_4_1, _FP_FRAC_CONV_4_2): Don't define.
1538         (_FP_FRAC_COPY_4_1, _FP_FRAC_COPY_4_2): Define.
1539         * soft-fp/single.h (_FP_FRACTBITS_S): Define.
1540         (_FP_FRACXBITS_S): Define in terms of _FP_FRACXBITS_S.
1541         (_FP_WFRACXBITS_S): Likewise.
1542         (_FP_QNANBIT_SH_S, _FP_IMPLBIT_SH_S): Define.
1543         (FP_UNPACK_SEMIRAW_S, FP_UNPACK_SEMIRAW_SP): Define.
1544         (FP_PACK_SEMIRAW_S, FP_PACK_SEMIRAW_SP): Define.
1545         * soft-fp/double.h (_FP_QNANBIT_SH_D, _FP_IMPLBIT_SH_D): Define.
1546         (FP_UNPACK_SEMIRAW_D, FP_UNPACK_SEMIRAW_D): Define
1547         (FP_PACK_SEMIRAW_D, FP_PACK_SEMIRAW_DP): Define.
1548         * soft-fp/extended.h (_FP_QNANBIT_SH_E, _FP_IMPLBIT_SH_E): Define.
1549         (FP_UNPACK_EP): Correct typo.
1550         (FP_UNPACK_SEMIRAW_E, FP_UNPACK_SEMIRAW_EP): Define.
1551         (FP_PACK_SEMIRAW_E, FP_PACK_SEMIRAW_EP): Define.
1552         * soft-fp/quad.h (_FP_QNANBIT_SH_Q, _FP_IMPLBIT_SH_Q): Define.
1553         (FP_UNPACK_SEMIRAW_Q, FP_UNPACK_SEMIRAW_QP): Define.
1554         (FP_PACK_SEMIRAW_Q, FP_PACK_SEMIRAW_QP): Define.
1555         * soft-fp/fixdfdi.c: Use unsigned type for result of conversion.
1556         * soft-fp/fixdfsi.c: Likewise.
1557         * soft-fp/fixsfdi.c: Likewise.
1558         * soft-fp/fixsfsi.c: Likewise.
1559         * soft-fp/fixtfdi.c: Likewise.
1560         * soft-fp/fixtfsi.c: Likewise.
1561         * sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
1562         * sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
1563         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
1564         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
1565         * sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
1566         * sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
1567         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
1568         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
1569         * soft-fp/adddf3.c: Update for changed soft-fp interfaces.
1570         * soft-fp/addsf3.c: Likewise.
1571         * soft-fp/addtf3.c: Likewise.
1572         * soft-fp/extenddftf2.c: Likewise.
1573         * soft-fp/extendsfdf2.c: Likewise.
1574         * soft-fp/extendsftf2.c: Likewise.
1575         * soft-fp/fixdfdi.c: Likewise.
1576         * soft-fp/fixdfsi.c: Likewise.
1577         * soft-fp/fixsfdi.c: Likewise.
1578         * soft-fp/fixsfsi.c: Likewise.
1579         * soft-fp/fixtfdi.c: Likewise.
1580         * soft-fp/fixtfsi.c: Likewise.
1581         * soft-fp/fixunsdfdi.c: Likewise.
1582         * soft-fp/fixunsdfsi.c: Likewise.
1583         * soft-fp/fixunssfdi.c: Likewise.
1584         * soft-fp/fixunssfsi.c: Likewise.
1585         * soft-fp/fixunstfdi.c: Likewise.
1586         * soft-fp/fixunstfsi.c: Likewise.
1587         * soft-fp/floatdidf.c: Likewise.
1588         * soft-fp/floatdisf.c: Likewise.
1589         * soft-fp/floatditf.c: Likewise.
1590         * soft-fp/floatsidf.c: Likewise.
1591         * soft-fp/floatsisf.c: Likewise.
1592         * soft-fp/floatsitf.c: Likewise.
1593         * soft-fp/floatundidf.c: Likewise.
1594         * soft-fp/floatundisf.c: Likewise.
1595         * soft-fp/floatunditf.c: Likewise.
1596         * soft-fp/floatunsidf.c: Likewise.
1597         * soft-fp/floatunsisf.c: Likewise.
1598         * soft-fp/floatunsitf.c: Likewise.
1599         * soft-fp/subdf3.c: Likewise.
1600         * soft-fp/subsf3.c: Likewise.
1601         * soft-fp/subtf3.c: Likewise.
1602         * soft-fp/truncdfsf2.c: Likewise.
1603         * soft-fp/trunctfdf2.c: Likewise.
1604         * soft-fp/trunctfsf2.c: Likewise.
1605         * sysdeps/alpha/soft-fp/ots_add.c: Likewise.
1606         * sysdeps/alpha/soft-fp/ots_cvtqux.c: Likewise.
1607         * sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
1608         * sysdeps/alpha/soft-fp/ots_cvttx.c: Likewise.
1609         * sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
1610         * sysdeps/alpha/soft-fp/ots_cvtxt.c: Likewise.
1611         * sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
1612         * sysdeps/alpha/soft-fp/ots_sub.c: Likewise.
1613         * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
1614         * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
1615         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
1616         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
1617         * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
1618         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
1619         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
1620         * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
1621         * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
1622         * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
1623         * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
1624         * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
1625         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
1626         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
1627         * sysdeps/sparc/sparc32/soft-fp/q_add.c: Likewise.
1628         * sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Likewise.
1629         * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
1630         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
1631         * sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Likewise.
1632         * sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
1633         * sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
1634         * sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Likewise.
1635         * sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Likewise.
1636         * sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Likewise.
1637         * sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Likewise.
1638         * sysdeps/sparc/sparc32/soft-fp/q_sub.c: Likewise.
1639         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
1640         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
1641         * sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
1642         * sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
1643         * sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
1644         * sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
1645         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
1646         * sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
1647         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
1648         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
1649         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
1650         * sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
1651         * sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
1652         * sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
1653         * sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
1654         * sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
1656 2006-02-23  Roland McGrath  <roland@redhat.com>
1658         * include/libc-symbols.h: Fix comment typo.
1659         From Peter Kjellerstedt <peter.kjellerstedt@axis.com>.
1661         * sysdeps/unix/sysv/linux/i386/fchownat.c: Diddle code so that "fail"
1662         label is always used.
1664         [BZ #2172]
1665         * bits/syslog-path.h: New file.
1666         * misc/Makefile (headers): Add it.
1667         * misc/sys/syslog.h: Include it.
1668         (_PATH_LOG): Macro removed.
1669         From Robert Millan <robertmh@gnu.org>.
1671         * sysdeps/unix/sysv/linux/ftruncate64.c: Find generic implementation
1672         in misc/, not posix/.
1673         Reported by David S. Miller <davem@davemloft.net>.
1675 2006-02-23  Jakub Jelinek  <jakub@redhat.com>
1677         * posix/sched_yield.c (__sched_yield): Add libc_hidden_def.
1678         * sysdeps/mach/sched_yield.c (__sched_yield): Likewise.
1680 2006-02-22  Roland McGrath  <roland@redhat.com>
1682         * po/libc.pot: Regenerated.
1684 2006-02-22  Jakub Jelinek  <jakub@redhat.com>
1686         * nis/ypclnt.c (yperr_string, ypbinderr_string): Add N_()
1687         around string literals.
1689 2005-10-03  Jakub Jelinek  <jakub@redhat.com>
1691         * nscd/selinux.c (audit_init): Print error string in the failure
1692         message.
1694 2006-02-21  Roland McGrath  <roland@redhat.com>
1696         * sysdeps/unix/sysv/linux/kernel-features.h
1697         (__ASSUME_CLONE_THREAD_FLAGS): Consolidate definitions.
1699         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Update comment, remove
1700         __THROW from epoll_wait, to match .../linux/sys/epoll.h file.
1702 2006-02-03  Jakub Jelinek  <jakub@redhat.com>
1704         * manual/filesys.texi (futimes): Fix prototype.
1706 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
1708         [BZ #315]
1709         * manual/memory.texi (Obstacks Data Alignment): The default
1710         alignment is not 4: it is enough to hold any type of data.
1711         Problem reported by Benno in
1712         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
1714 2005-11-15  Robert Millan  <robertmh@gnu.org>
1716         [BZ #2161]
1717         * manual/llio.texi (read, write): Document EINVAL on unaligned access.
1719 2006-02-21  Roland McGrath  <roland@redhat.com>
1721         * sysdeps/i386/i686/memset.S: Fix treatment of unaligned pointer.
1722         Reported by John Zulauf <john.zulauf@amd.com>.
1724 2004-11-23  Richard Sandiford  <rsandifo@redhat.com>
1726         * configure.in (libc_cv_gcc_dwarf2_unwind_info): Delete.
1727         (HAVE_DWARF2_UNWIND_INFO{,_STATIC}): Remove AC_DEFINEs.
1728         * configure: Regenerate.
1729         * config.h.in (HAVE_DWARF2_UNWIND_INFO{,_STATIC}): Remove undefs.
1730         * elf/soinit.c: Don't include gccframe.h.
1731         (__EH_FRAME_BEGIN__): Define unconditionally.
1732         (__register_frame_info, __deregister_frame_info)
1733         (__register_frame_info_bases, __deregister_frame_info_bases)
1734         (__register_frame, __deregister_frame): Remove declarations.
1735         (__libc_global_ctors, __libc_fini): Don't call registry functions.
1736         * elf/sofini.c (__EH_FRAME_END__): Define unconditionally.
1738 2006-01-18  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1740         [BZ #2178]
1741         * sysdeps/mach/hurd/getsid.c (getsid): When parameter PID is zero,
1742         use _hurd_pid instead.
1744 2006-02-20  Richard Henderson  <rth@redhat.com>
1746         * sysdeps/alpha/soft-fp/Makefile (CPPFLAGS): Add soft-fp include
1747         to math subdir.
1748         * sysdeps/alpha/soft-fp/e_sqrtl.c: Don't use local-soft-fp.h.
1749         (__ieee754_sqrtl): Add _round local variable.
1750         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: Remove.
1752         * sysdeps/unix/sysv/linux/alpha/fxstatat.c: Fix hidden defs.
1754 2006-02-20  Roland McGrath  <roland@redhat.com>
1756         * sysdeps/mips: Directory removed, saved in ports repository.
1757         * sysdeps/unix/mips: Likewise.
1758         * sysdeps/unix/sysv/linux/mips: Likewise.
1759         * sysdeps/mach/mips: Likewise.
1760         * sysdeps/mach/hurd/mips: Likewise.
1761         * shlib-versions: Remove mips matches, now in ports fragment.
1762         * sysdeps/unix/sysv/linux/kernel-features.h: Likewise.
1763         * configure.in (machine): Likewise.
1764         * configure: Regenerated.
1766         * hurd/hurd/xattr.h: New file.
1767         * hurd/xattr.c: New file.
1768         * hurd/Makefile (routines): Add it.
1769         * sysdeps/mach/hurd/fgetxattr.c: New file.
1770         * sysdeps/mach/hurd/flistxattr.c: New file.
1771         * sysdeps/mach/hurd/fremovexattr.c: New file.
1772         * sysdeps/mach/hurd/fsetxattr.c: New file.
1773         * sysdeps/mach/hurd/getxattr.c: New file.
1774         * sysdeps/mach/hurd/lgetxattr.c: New file.
1775         * sysdeps/mach/hurd/listxattr.c: New file.
1776         * sysdeps/mach/hurd/lsetxattr.c: New file.
1777         * sysdeps/mach/hurd/removexattr.c: New file.
1778         * sysdeps/mach/hurd/setxattr.c: New file.
1780 2006-02-15  Thomas Schwinge  <tschwinge@gnu.org>
1782         [BZ #2329]
1783         * include/unistd.h (__getresuid, __getresgid, __setresuid)
1784         (__setresgid): Fix argument name order in prototypes.
1785         * posix/unistd.h (getresuid, getresgid, setresuid, setresgid):
1786         Likewise.
1787         * posix/getresuid.c (__getresuid): Fix argument order in definition.
1788         * posix/getresgid.c (__getresgid): Likewise.
1789         * posix/setresuid.c (__setresuid): Likewise.
1790         * posix/setresgid.c (__setresgid): Likewise.
1791         * sysdeps/mach/hurd/getresuid.c (__getresuid): Likewise.
1792         * sysdeps/mach/hurd/getresgid.c (__getresgid): Likewise.
1793         * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
1794         * sysdeps/mach/hurd/setresgid.c (__setresgid): Likewise.
1795         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
1797 2006-02-13  Mike Frysinger  <vapier@gentoo.org>
1799         [BZ #2380]
1800         * string/tester.c (test_strnlen): New function.
1801         (test_strchr): Call it.
1802         (test_strncat): Test lengths where the sign bit is set.
1803         (test_strncmp): Likewise.
1805 2006-02-17  Jakub Jelinek  <jakub@redhat.com>
1807         * include/atomic.h (atomic_and, atomic_or): Define.
1809 2006-02-15  Ulrich Drepper  <drepper@redhat.com>
1811         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Define MADV_DONTFORK
1812         and MADV_DOFORK.
1813         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
1814         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
1815         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
1816         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
1817         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
1818         * sysdeps/unix/sysv/linux/alpha/bits/mman.h: Likewise.
1819         * sysdeps/unix/sysv/linux/m68k/bits/mman.h: Likewise.
1820         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
1822 2006-02-13  Jakub Jelinek  <jakub@redhat.com>
1824         * sysdeps/unix/sysv/linux/not-cancel.h (__openat_not_cancel,
1825         __openat64_not_cancel): Remove prototypes.
1826         (__openat_nocancel, __openat64_nocancel): New prototypes or defines.
1827         (openat_not_cancel, openat_not_cancel_3, openat64_not_cancel,
1828         openat64_not_cancel_3): Use them.
1830 2006-02-12  Ulrich Drepper  <drepper@redhat.com>
1832         * io/ftw.c: Start using *at functions.
1833         * io/ftw64.c: Likewise.
1835         * sysdeps/generic/not-cancel.h: Define openat_not_cancel,
1836         openat_not_cancel_3, openat64_not_cancel, and openat64_not_cancel_3.
1837         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1839         * sysdeps/unix/sysv/linux/openat.c: Create separate _nocancel
1840         functions.
1842         * io/fxstatat.c: Add __fxstatat alias.
1843         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Likewise.
1844         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.  Add support for
1845         newfstatat syscall.
1846         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Add __fxstatat alias.
1847         Add support for fstatat64 syscall.
1848         * include/sys/stat.h: Declare __fxstatat.
1849         * io/fxstatat64.c: Add __fxstatat64 alias.
1850         * sysdeps/unix/sysv/linux/fxstatat64.c: Add support for fstatat64
1851         syscall.
1853         * dirent/fdopendir.c: Add __fdopendir alias.
1854         * sysdeps/unix/fdopendir.c: Likewise.
1855         * sysdeps/mach/hurd/fdopendir.c: Likewise.
1856         * include/dirent.h: Add __fdopendir declaration.
1858         [BZ #2226]
1859         * libio/wgenops.c (_IO_wsetb): Use correct size of wide char
1860         buffer in FREE_BUF call.
1862 2006-02-08  Ulrich Drepper  <drepper@redhat.com>
1864         * sysdeps/unix/sysv/linux/bits/sched.h: Declare unshare.
1865         * sysdeps/unix/sysv/linux/Versions [libc, GLIBC_2.4]: Export
1866         unshare.
1867         * sysdeps/unix/sysv/linux/syscalls.list: Add unshare syscall.
1869         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Add some
1870         preprocessor magic so that the compiler won't see the prototypes
1871         for the functions we are defining as stubs.
1873 2006-02-05  Ulrich Drepper  <drepper@redhat.com>
1875         * io/ftw.c (ftw_startup): Use fchdir to return to original
1876         directory for FTW_CHDIR.
1878 2006-02-03  Ulrich Drepper  <drepper@redhat.com>
1880         * manual/stdio.texi (Formatted Output Functions): Fix make_message
1881         example.  Patch by NIIBE Yutaka <gniibe@m17n.org>.
1883 2006-02-03  Roland McGrath  <roland@redhat.com>
1885         [BZ #2268]
1886         * sysdeps/posix/profil.c (__profil): Use __profile_frequency to choose
1887         timer interval, don't assume smallest possible interval is it.
1889 2006-02-03  Jakub Jelinek  <jakub@redhat.com>
1891         * sysdeps/powerpc/fpu/bits/fenvinline.h (fegetround): Make asm
1892         volatile.
1894         * stdlib/bits/stdlib-ldbl.h (qecvt, qfcvt, qgcvt, qecvt_r, qfcvt_r):
1895         Guard with [__USE_SVID || __USE_XOPEN_EXTENDED].
1897         * math/math.h [__LDBL_COMPAT && __USE_ISOC99] (nexttowardl): New
1898         prototype.
1900         * math/math.h (__nldbl_nexttowardf): Put __THROW before
1901         __attribute__ ((__const__)).
1902         (__MATHDECL_2): Use __REDIRECT_NTH instead of __REDIRECT
1903         followed by __THROW.
1905 2006-02-02  Ulrich Drepper  <drepper@redhat.com>
1907         * sysdeps/unix/sysv/linux/futimesat.c [__NR_futimesat]
1908         (futimesat): If file is NULL use __futimes.
1909         * include/sys/time.h: Declare __futimes.
1911 2006-02-02  Roland McGrath  <roland@redhat.com>
1913         * sysdeps/unix/sysv/linux/openat.c (__atfct_seterrno): Use the same
1914         fstat check for ENOENT that should be EBADF as for ENOTDIR, and also
1915         check for missing /proc the same way.
1917         * include/errno.h [__cplusplus]: Avoid extra header magic for C++.
1919         * manual/install.texi (Tools for Compilation): Require gcc 3.4,
1920         recommend 4.1, advise 4.0 for powerpc64, and note 4.1 required for
1921         powerpc, s390{x,} with new long double.
1922         * INSTALL: Regenerated.
1924         * timezone/private.h: Update from tzcode2006a.
1925         * timezone/scheck.c: Likewise.
1926         * timezone/asia: Update from tzdata2006a.
1927         * timezone/northamerica: Likewise.
1928         * timezone/zone.tab: Likewise.
1930         * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): New variable.
1931         (CFLAGS-mcount.c): Use it instead of -msoft-float.
1932         * sysdeps/powerpc/powerpc64/elf/Makefile
1933         (CFLAGS-dl-runtime.os, CFLAGS-dl-lookup.os, CFLAGS-dl-misc.os,
1934         CFLAGS-rtld-mempcpy.os, CFLAGS-rtld-memmove.os, CFLAGS-rtld-memchr.os,
1935         CFLAGS-rtld-strnlen.os): Likewise.
1937 2006-02-01  Roland McGrath  <roland@redhat.com>
1939         * sysdeps/ieee754/ldbl-opt/Makefile (sysdep-CFLAGS): Avoid adding
1940         -mlong-double-128 when it's already there.
1942 2006-02-01  Roland McGrath  <roland@frob.com>
1944         * mach/Machrules ($(objpfx)%.uh, $(objpfx)%.__h): Use static pattern
1945         rules for these, not implicit rules.
1946         ($(objpfx)%.h): Likewise.
1947         Reported by Thomas Schwinge <tschwinge@gnu.org>.
1949 2006-02-01  Jakub Jelinek  <jakub@redhat.com>
1951         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Use long_double_symbol
1952         even for libm.
1954         * libio/bits/libio-ldbl.h (_IO_vfwscanf, _IO_vfwprintf): Remove
1955         __LDBL_REDIR_DECL.
1957         * math/bits/mathcalls.h: Guard __END_NAMESPACE_C99 with the
1958         same #if condition as corresponding __BEGIN_NAMESPACE_C99.
1959         (scalb): Don't define only if __USE_ISOC99.
1961         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Fix a typo.
1962         * sysdeps/s390/fpu/libm-test-ulps: Remove llrint ulps.
1964 2006-01-19  Thomas Schwinge  <tschwinge@gnu.org>
1966         * libio/genops.c: Include <stdbool.h>.
1968 2006-02-01  Ulrich Drepper  <drepper@redhat.com>
1970         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Add
1971         some more entries.
1972         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_02_known): Likewise.
1974 2006-01-31  Jakub Jelinek  <jakub@redhat.com>
1976         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
1977         * sysdeps/alpha/fpu/s_ceil.c: Include math_ldbl_opt.h, add
1978         compat_symbol if LONG_DOUBLE_COMPAT.
1979         * sysdeps/alpha/fpu/s_copysign.c: Likewise.
1980         * sysdeps/alpha/fpu/s_fabs.c: Likewise.
1981         * sysdeps/alpha/fpu/s_floor.c: Likewise.
1982         * sysdeps/alpha/fpu/s_rint.c: Likewise.
1983         * sysdeps/alpha/soft-fp/e_sqrtl.c: New file.
1984         * sysdeps/alpha/Implies: Add ieee754/ldbl-128.
1986         * sysdeps/unix/sysv/linux/alpha/bits/wordsize.h: New file.
1987         * sysdeps/unix/sysv/linux/alpha/Implies: Add ieee754/ldbl-64-128,
1988         ieee754/ldbl-opt.
1989         * sysdeps/alpha/bits/mathdef.h (__NO_LONG_DOUBLE_MATH): Remove.
1990         * sysdeps/unix/sysv/linux/alpha/nldbl-abi.h: New file.
1991         * sysdeps/unix/sysv/linux/alpha/Makefile
1992         [$(subdir) = math] (libm-routines): Add multc3, divtc3.
1994         * math/divtc3.c: New file.
1995         * math/multc3.c: New file.
1996         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile
1997         [$(subdir) = math] (libm-routines): Add multc3, divtc3.
1999         * sysdeps/unix/sysv/linux/sparc/sparc32/fpu/Implies: New file.
2000         * sysdeps/sparc/sparc32/fpu/s_fabsl.c: Include math.h and
2001         math_ldbl_opt.h.
2002         (fabsl): Use long_double_symbol instead of weak_alias.
2003         * sysdeps/sparc/sparc32/fpu/s_fabs.c: Include math.h and
2004         math_ldbl_opt.h.
2005         [LONG_DOUBLE_COMPAT] (fabsl): Add compat_symbol.
2007 2006-01-31  Martin Schwidefsky  <schwidefsky@de.ibm.com>
2008             Jakub Jelinek  <jakub@redhat.com>
2010         * sysdeps/unix/sysv/linux/s390/Implies: New file.
2011         * sysdeps/unix/sysv/linux/s390/fpu/Implies: New file.
2012         * sysdeps/unix/sysv/linux/s390/nldbl-abi.h: New file.
2013         * sysdeps/s390/fpu/bits/mathinline.h (signbitl, sqrtl): New inlines.
2014         * sysdeps/s390/bits/mathdef.h: New file.
2015         * sysdeps/s390/fpu/e_sqrtl.c: New file.
2016         * sysdeps/s390/s390-32/bits/wordsize.h (__LONG_DOUBLE_MATH_OPTIONAL,
2017         __NO_LONG_DOUBLE_MATH): Define.
2018         * sysdeps/s390/s390-64/bits/wordsize.h: Likewise.
2019         * sysdeps/s390/Implies: Add ieee754/ldbl-128.
2020         * sysdeps/s390/ldbl2mpn.c: File removed.
2021         * sysdeps/s390/fpu/libm-test-ulps: Updated.
2023 2006-01-31  Roland McGrath  <roland@redhat.com>
2025         * sysdeps/alpha/fpu/bits/mathdef.h: Moved to ...
2026         * sysdeps/alpha/bits/mathdef.h: ... here.
2027         * sysdeps/i386/fpu/bits/mathdef.h: Moved to ...
2028         * sysdeps/i386/bits/mathdef.h: ... here.
2029         * sysdeps/mips/fpu/bits/mathdef.h: Moved to ...
2030         * sysdeps/mips/bits/mathdef.h: ... here.
2031         * sysdeps/m68k/fpu/bits/mathdef.h: Moved to ...
2032         * sysdeps/m68k/bits/mathdef.h: ... here.
2033         * sysdeps/powerpc/fpu/bits/mathdef.h: Moved to ...
2034         * sysdeps/powerpc/bits/mathdef.h: ... here.
2035         * sysdeps/sparc/fpu/bits/mathdef.h: Moved to ...
2036         * sysdeps/sparc/bits/mathdef.h: ... here.
2037         * sysdeps/ia64/fpu/bits/mathdef.h: Moved to ...
2038         * sysdeps/ia64/bits/mathdef.h: ... here.
2039         * sysdeps/sh/sh4/fpu/bits/mathdef.h: Moved to ...
2040         * sysdeps/sh/sh4/bits/mathdef.h: ... here.
2041         * sysdeps/x86_64/fpu/bits/mathdef.h: Moved to ...
2042         * sysdeps/x86_64/bits/mathdef.h: ... here.
2044 2006-01-31  Jakub Jelinek  <jakub@redhat.com>
2046         * sysdeps/unix/sysv/linux/i386/fxstatat.c [XSTAT_IS_STAT64]
2047         (__fxstatat64): Add libc_hidden_ver.
2048         * sysdeps/unix/sysv/linux/fxstatat.c [XSTAT_IS_STAT64] (__fxstatat64):
2049         Likewise.
2051         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Remove jmpbuf-offsets.h
2052         include.
2054 2006-01-31  Roland McGrath  <roland@redhat.com>
2056         * sysdeps/powerpc/fpu/libm-test-ulps: Update by Jakub.
2058         * inet/rcmd.c (iruserfopen): Remove redundant initialization.
2059         From Bernhard Fischer <rep.nop@aon.at>.
2061         * posix/regcomp.c (calc_eclosure_iter): Remove dead variables.
2062         Reported by Mike Frysinger <vapier@gentoo.org>.
2064 2006-01-30  Steven Munroe  <sjmunroe@us.ibm.com>
2066         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Correct index
2067         for __sincosl_table.
2068         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
2069         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
2071         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Correct sign of 0.0.
2072         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
2074         * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c: New file.
2075         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: New file.
2076         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: New file.
2078 2006-01-29  Daniel Jacobowitz  <dan@codesourcery.com>
2080         * sysdeps/unix/sysv/linux/mips/bits/errno.h (ECANCELED,
2081         EOWNERDEAD, ENOTRECOVERABLE): Define.
2083         * sysdeps/unix/sysv/linux/mips/bits/mman.h (MADV_REMOVE): Define.
2085         * sysdeps/mips/dl-machine.h (RTLD_START): Correct offsets for
2086         N64.
2088         * sysdeps/unix/sysv/linux/mips/bits/socket.h (struct msghdr): Use
2089         size_t for msg_controllen.
2090         (__cmsg_nxthdr): Correct test.
2091         (__SCM_CONNECT): Delete.
2093 2006-01-30  Alexandre Oliva  <aoliva@redhat.com>
2094             Roland McGrath  <roland@redhat.com>
2096         * configure.in (fno_unit_at_a_time): Set to
2097         -fno-toplevel-reorder if the compiler supports it.
2098         Otherwise use -fno-unit-at-a-time unconditionally.
2099         * configure: Regenerated.
2101 2006-01-30  Jakub Jelinek  <jakub@redhat.com>
2103         * sysdeps/powerpc/fpu/libm-test-ulps: Merge ulps with older
2104         libm-test-ulps rather than overwrite it.  Remove excessively high ulps.
2106 2006-01-29  Joseph S. Myers  <joseph@codesourcery.com>
2108         * soft-fp/double.h (FP_CMP_UNORD_D): Also define in
2109         [_FP_W_TYPE_SIZE >= 64] case.
2110         * soft-fp/extended.h (FP_CMP_UNORD_E): Likewise.
2111         * soft-fp/quad.h (FP_CMP_UNORD_Q): Likewise.
2113 2006-01-27  Dwayne Grant McConnell  <decimal@us.ibm.com>
2114             Jakub Jelinek  <jakub@redhat.com>
2115             Roland McGrath  <roland@redhat.com>
2116             Steven Munroe  <sjmunroe@us.ibm.com>
2117             Alan Modra  <amodra@bigpond.net.au>
2119         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Comment fix.
2120         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
2121         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
2123         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
2125         * math/libm-test.inc (check_float_internal): Allow ulp <= 0.5.
2126         (erfc_test): Don't run erfcl (27.0L) test if erfcl (27.0L) is
2127         denormal.
2128         [TEST_LDOUBLE] (ceil_test, floor_test, llrint_test, llround_test,
2129         rint_test, round_test, trunc_test): Add new tests.
2131         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: New file.
2132         * sysdeps/powerpc/powerpc32/fpu/s_fabs.S: New file.
2133         * sysdeps/powerpc/powerpc32/fpu/s_fabsl.S: New file.
2134         * sysdeps/powerpc/powerpc32/fpu/s_fdim.c: New file.
2135         * sysdeps/powerpc/powerpc32/fpu/s_fmax.S: New file.
2136         * sysdeps/powerpc/powerpc32/fpu/s_fmin.S: New file.
2137         * sysdeps/powerpc/powerpc32/fpu/s_isnan.c: New file.
2139         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: New file.
2140         * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: New file.
2141         * sysdeps/powerpc/powerpc64/fpu/s_fabs.S: New file.
2142         * sysdeps/powerpc/powerpc64/fpu/s_fabsl.S: New file.
2143         * sysdeps/powerpc/powerpc64/fpu/s_fdim.c: New file.
2144         * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: New file.
2145         * sysdeps/powerpc/powerpc64/fpu/s_fmax.S: New file.
2146         * sysdeps/powerpc/powerpc64/fpu/s_fmin.S: New file.
2147         * sysdeps/powerpc/powerpc64/fpu/s_isnan.c: New file.
2148         * sysdeps/powerpc/powerpc64/fpu/s_llrintl.S: New file.
2149         * sysdeps/powerpc/powerpc64/fpu/s_llroundl.S: New file.
2150         * sysdeps/powerpc/powerpc64/fpu/s_lrintl.S: New file.
2151         * sysdeps/powerpc/powerpc64/fpu/s_lroundl.S: New file.
2152         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: New file.
2153         * sysdeps/powerpc/powerpc64/fpu/s_rintl.S: New file.
2154         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: New file.
2155         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: New file.
2157         * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
2158         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: New file.
2159         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: New file.
2160         * sysdeps/unix/sysv/linux/powerpc/configure.in: New file.
2161         * sysdeps/unix/sysv/linux/powerpc/configure: New file.
2162         * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h
2163         (__LONG_DOUBLE_MATH_OPTIONAL): Define.
2164         (__NO_LONG_DOUBLE_MATH): Define.
2165         * sysdeps/unix/sysv/linux/powerpc/nldbl-abi.h: New file.
2166         * sysdeps/powerpc/fpu/s_isnan.c: Include math_ldbl_opt.h.
2167         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Include math_ldbl_opt.h.
2168         [LONG_DOUBLE_COMPAT] (ceill): Add compatibility symbols.
2169         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include math_ldbl_opt.h.
2170         [LONG_DOUBLE_COMPAT] (copysignl): Add compatibility symbols.
2171         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Include math_ldbl_opt.h.
2172         [LONG_DOUBLE_COMPAT] (floorl): Add compatibility symbols.
2173         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include math_ldbl_opt.h.
2174         [LONG_DOUBLE_COMPAT] (llrintl, lrintl): Add compatibility symbols.
2175         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Include math_ldbl_opt.h.
2176         [LONG_DOUBLE_COMPAT] (llroundl, lroundl): Add compatibility symbols.
2177         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Include math_ldbl_opt.h.
2178         [LONG_DOUBLE_COMPAT] (rintl): Add compatibility symbols.
2179         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Include math_ldbl_opt.h.
2180         [LONG_DOUBLE_COMPAT] (roundl): Add compatibility symbols.
2181         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Include math_ldbl_opt.h.
2182         [LONG_DOUBLE_COMPAT] (truncl): Add compatibility symbols.
2183         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Include math_ldbl_opt.h.
2184         [LONG_DOUBLE_COMPAT] (ceill): Add compatibility symbols.
2185         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include math_ldbl_opt.h.
2186         [LONG_DOUBLE_COMPAT] (copysignl): Add compatibility symbols.
2187         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Include math_ldbl_opt.h.
2188         [LONG_DOUBLE_COMPAT] (floorl): Add compatibility symbols.
2189         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include math_ldbl_opt.h.
2190         [LONG_DOUBLE_COMPAT] (lrintl): Add compatibility symbols.
2191         * sysdeps/powerpc/powerpc32/fpu/s_llrint.c: Include math_ldbl_opt.h.
2192         [LONG_DOUBLE_COMPAT] (llrintl): Add compatibility symbols.
2193         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include math_ldbl_opt.h.
2194         [LONG_DOUBLE_COMPAT] (lroundl): Add compatibility symbols.
2195         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Include math_ldbl_opt.h.
2196         [LONG_DOUBLE_COMPAT] (rintl): Add compatibility symbols.
2197         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Include math_ldbl_opt.h.
2198         [LONG_DOUBLE_COMPAT] (roundl): Add compatibility symbols.
2199         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Include math_ldbl_opt.h.
2200         [LONG_DOUBLE_COMPAT] (truncl): Add compatibility symbols.
2202         * misc/qefgcvt_r.c [LDBL_MIN_10_EXP == -291] (FLOAT_MIN_10_NORM): New.
2204         * sysdeps/powerpc/fpu/bits/mathdef.h (__NO_LONG_DOUBLE_MATH): Remove.
2205         * sysdeps/powerpc/Implies: Add ieee754/ldbl-128ibm.
2206         * sysdeps/powerpc/powerpc32/Implies: Remove powerpc/soft-fp.
2207         * sysdeps/ieee754/ldbl-128ibm/Makefile: New file.
2208         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: New file.
2209         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: New file.
2210         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: New file.
2211         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: New file.
2212         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: New file.
2213         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: New file.
2214         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: New file.
2215         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: New file.
2216         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: New file.
2217         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: New file.
2218         * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: New file.
2219         * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: New file.
2220         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: New file.
2221         * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: New file.
2222         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: New file.
2223         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: New file.
2224         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: New file.
2225         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: New file.
2226         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: New file.
2227         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: New file.
2228         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: New file.
2229         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: New file.
2230         * sysdeps/ieee754/ldbl-128ibm/ieee754.h: New file.
2231         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: New file.
2232         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: New file.
2233         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: New file.
2234         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: New file.
2235         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: New file.
2236         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: New file.
2237         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: New file.
2238         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: New file.
2239         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: New file.
2240         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: New file.
2241         * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: New file.
2242         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: New file.
2243         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: New file.
2244         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: New file.
2245         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: New file.
2246         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: New file.
2247         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: New file.
2248         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: New file.
2249         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: New file.
2250         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: New file.
2251         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: New file.
2252         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: New file.
2253         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: New file.
2254         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: New file.
2255         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: New file.
2256         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: New file.
2257         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: New file.
2258         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: New file.
2259         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: New file.
2260         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: New file.
2261         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: New file.
2262         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: New file.
2263         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: New file.
2264         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: New file.
2265         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: New file.
2266         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: New file.
2267         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: New file.
2268         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: New file.
2269         * sysdeps/ieee754/ldbl-128ibm/t_sincosl.c: New file.
2270         * sysdeps/ieee754/ldbl-128ibm/w_expl.c: New file.
2271         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: New file.
2272         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: New file.
2273         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: New file.
2274         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: New file.
2275         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: New file.
2276         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: New file.
2277         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: New file.
2278         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: New file.
2279         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: New file.
2281         * sysdeps/ieee754/ldbl-128/e_powl.c: Fix old comment.
2283 2006-01-22  Aurelien Jarno  <aurelien@aurel32.net>
2285         * sysdeps/gnu/errlist-compat.awk: Reduce required number of symbols in
2286         sanity check.
2288 2006-01-21  Ulrich Drepper  <drepper@redhat.com>
2290         * sysdeps/unix/sysv/linux/renameat.c (__atfct_seterrno_2): Correctly
2291         return EBADF for non-existing file descriptors.
2292         * sysdeps/unix/sysv/linux/openat.c (__atfct_seterrno): Likewise.
2293         * io/tst-openat.c (do_test): Add some more tests.
2294         * io/tst-faccessat.c (do_test): Likewise.
2295         * io/tst-renameat.c (do_test): Likewise.
2296         * io/tst-fstatat.c (do_test): Likewise.
2297         * io/tst-fchmodat.c (do_test): Likewise.
2298         * io/tst-fchownat.c (do_test): Likewise.
2300 2006-01-21  Roland McGrath  <roland@redhat.com>
2302         * sysdeps/unix/sysv/linux/faccessat.c: Move RESULT defn inside block.
2304         * misc/tst-pselect.c: Include <unistd.h>.
2306         * time/time.h [__need_timespec et al]: Include <bits/types.h> here too.
2308         * stdlib/fpioconst.c: Fix whitespace typo.
2310 2006-01-20  Jakub Jelinek  <jakub@redhat.com>
2312         * sysdeps/ieee754/ldbl-64-128/s_nexttowardfd.c: Moved to...
2313         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: ... here.  New file.
2314         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h (long_double_symbol_1): For
2315         C define again using _weak_alias, for assembler use weak_alias.
2317         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: New file.
2318         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: New file.
2319         * sysdeps/powerpc/fpu/bits/mathinline.h (__CPU_HAS_FSQRT): New macro.
2320         (__ieee754_sqrt, __ieee754_sqrtf): Use it.
2322 2006-01-21  Ulrich Drepper  <drepper@redhat.com>
2324         * sysdeps/unix/sysv/linux/pselect.c (__pselect): Allow actual
2325         system call code to be redefined in macro CALL_PSELECT6.
2326         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=misc]
2327         (sysdep_routines): Add call_pselect6.
2328         * sysdeps/unix/sysv/linux/i386/call_pselect6.S: New file.
2329         * sysdeps/unix/sysv/linux/i386/pselect.c: New file.
2330         * misc/Makefile (tests): Add tst-pselect.
2331         * misc/tst-pselect.c: New file.
2333 2006-01-20  Roland McGrath  <roland@frob.com>
2335         * sysdeps/mach/hurd/ppoll.c: New file.
2337 2006-01-20  Ulrich Drepper  <drepper@redhat.com>
2339         * sysdeps/unix/sysv/linux/pselect.c: Fix typo in declaration.
2341         * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Cast k_dev
2342         value to unsigned int to match kernel.
2344         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Try using the
2345         syscall in more cases.
2347         * io/Makefile (tests): Add tst-symlinkat, tst-linkat, tst-readlinkat,
2348         tst-mkdirat, tst-mknodat, and tst-mkfifoat.
2349         * io/tst-symlinkat.c: New file.
2350         * io/tst-linkat.c: New file.
2351         * io/tst-readlinkat.c: New file.
2352         * io/tst-mkdirat.c: New file.
2353         * io/tst-mknodat.c: New file.
2354         * io/tst-mkfifoat.c: New file.
2356         * dirent/Makefile (tests): Add tst-fdopendir2.
2357         * dirent/tst-fdopendir2.c: New file.
2359 2006-01-20  Alexandre Oliva  <aoliva@redhat.com>
2361         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h
2362         (sigcontext_struct) [__WORDSIZE == 32]: Define.
2364 2006-01-20  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2366         * sysdeps/sh/sh4/__longjmp.S: Demangle also r14 and r15.
2367         * sysdeps/sh/sh3/__longjmp.S: Likewise.
2368         * sysdeps/sh/sh4/setjmp.S: Mangle also r14 and r15.
2369         * sysdeps/sh/sh3/setjmp.S: Likewise.
2370         * sysdeps/unix/sysv/linux/sh/sysdep.h [__ASSEMBLER__]
2371         (PTR_MANGLE): Add temporary register as the second parameter.
2372         (PTR_DEMANGLE): Likewize.
2373         (PTR_MANGLE2, PTR_DEMANGLE2): Define.
2375 2006-01-19  Ulrich Drepper  <drepper@redhat.com>
2377         * include/fcntl.h: Declare __have_atfcts.
2378         * sysdeps/unix/sysv/linux/faccessat.c: Use syscall if available.
2379         * sysdeps/unix/sysv/linux/fchmodat.c: Likewise.
2380         * sysdeps/unix/sysv/linux/fchownat.c: Likewise.
2381         * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
2382         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
2383         * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
2384         * sysdeps/unix/sysv/linux/openat.c: Likewise.
2385         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
2386         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
2387         * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
2388         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
2389         * sysdeps/unix/sysv/linux/xmknodat.c: Likewise.
2390         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Likewise.
2391         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PSELECT,
2392         __ASSUME_PPOLL, and __ASSUME_ATFCTS if possible.
2394         * io/ppoll.c: New file.
2395         * io/Makefile (routines): Add ppoll.
2396         (CFLAGS-ppoll.c): Define.
2397         * io/Versions: Export ppoll for GLIBC_2.4.
2398         * io/sys/poll.h: Declare ppoll.
2399         * sysdeps/unix/sysv/linux/ppoll.c: New file.
2401         * misc/pselect.c: Make it possible to include this file to define
2402         the generic code as a static function.
2403         * sysdeps/unix/sysv/linux/pselect.c: New file.
2405 2006-01-19  Jakub Jelinek  <jakub@redhat.com>
2407         * misc/pselect.c (__pselect): Remove static.
2408         Include sysdep-cancel.h again.  Add LIBC_CANCEL_HANDLED ().
2410 2006-01-18  Roland McGrath  <roland@redhat.com>
2412         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h [__ASSEMBLER__]: Don't
2413         include problematic headers for assembler.
2415         * Makerules ($(+sysdir_pfx)sysd-rules): Don't emit m_%.c rules,
2416         instead emit m_%.o compilation rules from s_%.? source files.
2417         * math/Makefile ($(objpfx)m_%$o: s_%.c): New rule using o-iterator.
2419 2006-01-18  Ulrich Drepper  <drepper@redhat.com>
2421         * misc/pselect.c (__pselect): No need to enable async cancellation
2422         here.  This is done in select.
2424         * sysdeps/unix/sysv/linux/fxstatat.c [STAT_IS_KERNEL_STAT]
2425         (__fxstatat): Correct handling of invalid vers values.
2427         [BZ #2173]
2428         * libio/fileops.c (_IO_new_file_fopen): If ,ccs= is given, also
2429         set vtable to the wide vtable.
2430         * libio/tst-fopenloc2.c: New file.
2431         * libio/Makefile (tests): Add tst-fopenloc2.
2433 2006-01-18  Roland McGrath  <roland@redhat.com>
2435         * sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c: Restore
2436         attribute_hidden here.
2438         * sysdeps/sparc/sparc64/Makefile (long-double-fcts): Move this ...
2439         * sysdeps/sparc/Makefile (long-double-fcts): ... to here.
2441 2006-01-18  Jakub Jelinek  <jakub@redhat.com>
2443         * elf/dl-deps.c (_dl_map_object_deps): In case of failure also make a
2444         copy of objname string.
2446 2006-01-16  Roland McGrath  <roland@redhat.com>
2448         * Makerules ($(+sysdir_pfx)sysd-rules): Emit pattern rules to install
2449         into $(inst_includedir)/%.h from sysdirs.
2450         [headers]: Change static pattern rule for installing
2451         $(headers) to do only those not matching %.h.
2452         ($(inst_includedir)/%.h: $(objpfx)%.h): Add this pattern rule instead.
2453         ($(inst_includedir)/%.h: %.h): Likewise.
2454         ($(inst_includedir)/%.h: $(..)include/%.h): Likewise.
2456         * Makefile ($(inst_includedir)/gnu/stubs.h):
2457         Add $(make-target-directory).
2459         * stdlib/Makefile (headers): Restore headers removed in last change.
2461 2006-01-16  Jakub Jelinek  <jakub@redhat.com>
2463         * math/e_exp2l.c: Don't include stdio.h, errno.h, stub-tag.h, include
2464         math_private.h.
2465         (__ieee754_exp2l): Compute for now as expl (M_LN2l * x)
2466         instead of failing.
2467         (exp2l): Remove stub_warning.
2469 2006-01-15  Jakub Jelinek  <jakub@redhat.com>
2471         * io/tst-faccessat.c (do_test): Don't fail if geteuid () == 0.
2473 2006-01-16  Ulrich Drepper  <drepper@redhat.com>
2475         * sysdeps/unix/sysv/linux/kernel-features.h: Define
2476         __ASSUME_TMPFS_NAME.
2477         * sysdeps/unix/sysv/linux/shm_open.c [__ASSUME_TMPFS_NAME]
2478         (where_is_shmfs): Don't test for obsolete shm filesystem name.
2480         * sysdeps/unix/sysv/linux/getsysstats.c: Don't search for proc
2481         mount point.  We assume procfs is mounted at /proc in many other
2482         places already.
2484 2006-01-15  Andreas Jaeger  <aj@suse.de>
2486         [BZ #1950]
2487         * posix/regex_internal.c (re_string_reconstruct): Adjust for
2488         build_wcs_upper_buffer change.
2489         (build_wcs_upper_buffer): Change return type.
2491         [BZ #2153]
2492         * math/s_cacosh.c (__cacosh): Do not return a negative
2493         value. Patch by Wes Loewer <wjltemp-temp01@yahoo.com>.
2494         * math/s_cacoshl.c (__cacoshl): Likewise.
2495         * math/s_cacoshf.c (__cacoshf): Likewise.
2496         * math/libm-test.inc (cacosh_test): Adjust for change.
2498         * sysdeps/alpha/fpu/libm-test-ulps: Adopt for cacosh test change.
2499         * sysdeps/hppa/fpu/libm-test-ulps: Likewise.
2500         * sysdeps/i386/fpu/libm-test-ulps: Likewise.
2501         * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
2502         * sysdeps/m68k/fpu/libm-test-ulps: Likewise.
2503         * sysdeps/mips/fpu/libm-test-ulps: Likewise.
2504         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
2505         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
2506         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
2507         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
2508         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
2509         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
2511         [BZ #2079]
2512         * libio/fputwc_u.c (fputwc_unlocked): Fix return value.
2513         * libio/getwc_u.c (__getwc_unlocked): Likewise.
2514         * libio/wfileops.c (_IO_wdo_write): Likewise.
2516         [BZ #2078]
2517         * libio/fputwc.c (fputwc): Use proper type for result.
2518         * libio/ioungetwc.c (ungetwc): Likewise.
2520 2006-01-14  Ulrich Drepper  <drepper@redhat.com>
2522         * sysdeps/unix/sysv/linux/bits/sched.h: Define SCHED_BATCH.
2524 2006-01-14  Roland McGrath  <roland@redhat.com>
2526         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_DECL): Don't try
2527         attribute_hidden here.
2528         * sysdeps/ieee754/ldbl-opt/nldbl-vsyslog.c (vsyslog): Restore
2529         attribute_hidden here.
2530         * sysdeps/ieee754/ldbl-opt/nldbl-asprintf.c (__asprintf): Likewise.
2531         * sysdeps/ieee754/ldbl-opt/nldbl-fprintf.c (fprintf): Likewise.
2532         * sysdeps/ieee754/ldbl-opt/nldbl-qecvt.c (qecvt): Likewise.
2533         * sysdeps/ieee754/ldbl-opt/nldbl-qfcvt.c (qfcvt): Likewise.
2534         * sysdeps/ieee754/ldbl-opt/nldbl-qgcvt.c (qgcvt): Likewise.
2536         * sysdeps/ieee754/ldbl-opt/configure.in: Use AC_TRY_COMPILE and
2537         verify __LONG_DOUBLE_128__ predefine.
2538         * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
2540         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_HIDDEN): Removed.
2541         (NLDBL_DECL): Rewritten.
2542         Remove __THROW from NLDBL_DECL uses.
2543         Use NLDBL_DECL for __vstrfmon_l.
2544         (__nldbl___vsyslog_chk): Restore missing decl.
2545         * sysdeps/ieee754/ldbl-opt/nldbl-asinh.c: Restore attribute_hidden.
2547 2006-01-14  Jakub Jelinek  <jakub@redhat.com>
2549         * misc/sys/cdefs.h (__LDBL_REDIR1_DECL): Define.
2550         (__LDBL_REDIR_DECL): Stringize __nldbl and name.
2551         * stdlib/bits/monetary-ldbl.h: Remove pastos from wchar-ldbl.h.
2552         (strfmon, strfmon_l): Add __LDBL_REDIR_DECL.
2553         * stdlib/bits/stdlib-ldbl.h (strtold, strtold_l, __strtold_internal,
2554         qecvt, qfcvt, qgcvt, qecvt_r, qfcvt_r): Use __LDBL_REDIR1_DECL
2555         instead of __LDBL_REDIR_DECL.
2556         * wcsmbs/bits/wchar-ldbl.h: Remove stale #if.
2557         (__LDBL_REDIR_WCHAR): Remove.
2558         (fwprintf, wprintf, swprintf, vfwprintf, vwprintf, vswprintf,
2559         fwscanf, wscanf, swscanf, vfwscanf, vwscanf, vswscanf): Use
2560         __LDBL_REDIR_DECL instead of __LDBL_REDIR_WCHAR.
2561         (wcstold, wcstold_l, __wcstold_internal): Add __LDBL_REDIR1_DECL.
2562         * wcsmbs/wchar.h: Include bits/wchar-ldbl.h after bits/wchar2.h
2563         instead of before it.
2564         (wcstold inline): Move #ifndef __LDBL_COMPAT before
2565         extern keyword.
2566         * libio/bits/stdio-ldbl.h (__snprintf_chk, __vsnprintf_chk): Add
2567         __LDBL_REDIR_DECL.
2568         * misc/bits/syslog-ldbl.h (vsyslog): Protect with #ifdef __USE_BSD.
2569         (__syslog_chk, __vsyslog_chk): Add __LDBL_REDIR_DECL.
2571 2006-01-14  Roland McGrath  <roland@redhat.com>
2573         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_DECL): Fix typo.
2574         (NLDBL_HIDDEN): New macro.
2575         (NLDBL_DECL): Use it in place of attribute_hidden.
2577         * misc/efgcvt.c: Include <math_ldbl_opt.h> instead of <shlib-compat.h>.
2578         * misc/efgcvt_r.c: Likewise.
2580         * sysdeps/unix/sysv/linux/sparc/sparc32/nldbl-abi.h: New file.
2581         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: #include <nldbl-abi.h>
2582         to define LONG_DOUBLE_COMPAT_VERSION.  Use that in place of
2583         NLDBL_VERSION.
2584         * sysdeps/ieee754/ldbl-opt/Versions: Include <nldbl-abi.h>.
2585         * sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Revert last change.
2587 2006-01-14  Jakub Jelinek  <jakub@redhat.com>
2589         * math/math.h [__NO_LONG_DOUBLE_MATH] (__nldbl_nexttowardf): New
2590         prototype.
2591         (nexttowardf): Redirect to __nldbl_nexttowardf.
2592         (nexttoward): Redirect to nextafter.
2593         (__MATHDECL_2, __MATHDECL_1): Redirect *l functions to
2594         non-*l versions if __LONG_DOUBLE_MATH_OPTIONAL and
2595         __NO_LONG_DOUBLE_MATH.
2596         * math/complex.h (__MATHDECL_1): Likewise.
2597         * math/bits/mathcalls.h (nexttoward): Don't prototype if
2598         __LDBL_COMPAT.
2599         * misc/sys/cdefs.h: Include <bits/wordsize.h>.
2600         (__LDBL_COMPAT, __LDBL_REDIR1, __LDBL_REDIR, __LDBL_REDIR1_NTH,
2601         __LDBL_REDIR_NTH, __LDBL_REDIR_DECL): New macros.
2603         * libio/bits/stdio-ldbl.h: New file.
2604         * libio/Makefile (headers): Add it.
2605         * libio/stdio.h [__LDBL_COMPAT]: #include it.
2606         * libio/bits/libio-ldbl.h: New file.
2607         * libio/Makefile (headers): Add it.
2608         * libio/libio.h [__LDBL_COMPAT]: #include it.
2609         * libio/libioP.h: Include <math_ldbl_opt.h>.
2610         * include/wchar.h (__fwprintf, __vfwprintf): Fix commented out
2611         attribute.
2612         (__vfwprintf_chk): New prototype.  Add libc_hidden_proto.
2613         * wcsmbs/bits/wchar-ldbl.h: New file.
2614         * wcsmbs/Makefile (headers): Add it.
2615         * wcsmbs/wchar.h [__LDBL_COMPAT]: #include it.
2616         * wcsmbs/bits/wchar2.h (__vswprintf_alias): Removed.
2617         (vswprintf): Define as a macro rather than inline function.
2618         * stdio-common/bits/printf-ldbl.h: New file.
2619         * stdio-common/Makefile (headers): Add it.
2620         * stdio-common/printf.h [__LDBL_COMPAT]: #include it.
2621         * libio/fwprintf.c: Include libioP.h.
2622         (fwprintf): Use ldbl_weak_alias instead of weak_alias.
2623         * libio/fwscanf.c: Include libioP.h.
2624         (fwscanf): Rename to __fwscanf and add ldbl_strong_alias.
2625         * libio/iovdprintf.c (vdprintf): Use ldbl_weak_alias instead of
2626         weak_alias.
2627         * libio/iovsprintf.c (_IO_vsprintf): Rename to __IO_vsprintf,
2628         add ldbl_strong_alias and use INTDEF2 instead of INTDEF.
2629         (vsprintf): Use ldbl_weak_alias instead of weak_alias.
2630         * libio/iovsscanf.c (__vsscanf, vsscanf): Use ldbl_weak_alias
2631         instead of weak_alias.
2632         * libio/iovswscanf.c (vswscanf): Rename to __vswscanf,
2633         add ldbl_strong_alias and use ldbl_hidden_def instead of
2634         libc_hidden_def.
2635         * libio/obprintf.c (obstack_printf, obstack_vprintf): Use
2636         ldbl_weak_alias instead of weak_alias.
2637         * libio/swprintf.c: Include libioP.h.
2638         (swprintf): Rename to __swprintf and add ldbl_strong_alias.
2639         * libio/swscanf.c: Include libioP.h.
2640         (swscanf): Rename to __swscanf and add ldbl_strong_alias.
2641         * libio/vasprintf.c (vasprintf): Use ldbl_weak_alias instead of
2642         weak_alias.
2643         * libio/vscanf.c (vscanf): Use ldbl_weak_alias instead of
2644         weak_alias.
2645         * libio/vsnprintf.c (__vsnprintf, vsnprintf): Use ldbl_weak_alias
2646         instead of weak_alias.
2647         * libio/vswprintf.c (__vswprintf): Remove alias.
2648         (vswprintf): Use ldbl_weak_alias instead of weak_alias.
2649         * libio/vwprintf.c: Include libioP.h.
2650         (vwprintf): Rename to __vwprintf and add ldbl_strong_alias.
2651         * libio/vwscanf.c (vwscanf): Rename to __vwscanf and add
2652         ldbl_strong_alias.
2653         * libio/wprintf.c: Include libioP.h.
2654         (wprintf): Rename to __wprintf and add ldbl_strong_alias.
2655         * libio/wscanf.c: Include libioP.h.
2656         (wscanf): Rename to __wscanf and add ldbl_strong_alias.
2657         * stdio-common/asprintf.c (__asprintf): Rename to ___asprintf, add
2658         ldbl_strong_alias and use INTDEF2 instead of INTDEF.
2659         (asprintf): Use ldbl_weak_alias instead of weak_alias.
2660         * stdio-common/dprintf.c (dprintf): Rename to __dprintf, add
2661         ldbl_strong_alias and use ldbl_hidden_def instead of
2662         libc_hidden_def.
2663         * stdio-common/fprintf.c: Include libioP.h.
2664         (fprintf): Rename to __fprintf, add ldbl_strong_alias and
2665         use ldbl_hidden_def instead of libc_hidden_def.
2666         (_IO_fprintf): Use ldbl_weak_alias instead of weak_alias.
2667         * stdio-common/fscanf.c: Include libioP.h.
2668         (fscanf): Rename to __fscanf and add ldbl_strong_alias.
2669         * stdio-common/printf.c: Include libioP.h.
2670         (printf): Rename to __printf and add ldbl_strong_alias.
2671         (_IO_printf): Use ldbl_strong_alias instead of strong_alias.
2672         * stdio-common/printf_fp.c (__printf_fp): Rename to __printf_fp, add
2673         ldbl_strong_alias and use ldbl_hidden_def instead of
2674         libc_hidden_def.
2675         * stdio-common/printf_size.c (printf_size): Rename to __printf_size
2676         and add ldbl_strong_alias.
2677         * stdio-common/scanf.c (scanf): Rename to __scanf and add
2678         ldbl_strong_alias.
2679         * stdio-common/snprintf.c (snprintf): Use ldbl_weak_alias instead of
2680         weak_alias.
2681         * stdio-common/sprintf.c (sprintf): Rename to __sprintf, add
2682         ldbl_strong_alias and use ldbl_hidden_def instead of
2683         libc_hidden_def.
2684         (_IO_sprintf): Use ldbl_strong_alias instead of strong_alias.
2685         * stdio-common/sscanf.c: Include libioP.h instead of iolibio.h.
2686         (sscanf): Rename to __sscanf and add ldbl_strong_alias.
2687         * stdio-common/vfprintf.c (vfprintf): Define to
2688         _IO_vfprintf_internal.  Use ldbl_strong_alias instead.  Use
2689         ldbl_hidden_def instead of libc_hidden_def.
2690         (_IO_vfprintf_internal): Clear is_long_double if __ldbl_is_dbl,
2691         handle the argument as double if it is non-zero.
2692         (vfwprintf): Use ldbl_weak_alias instead of weak_alias.
2693         (_IO_vfprintf): Add ldbl_strong_alias.
2694         * stdio-common/vfscanf.c (_IO_vfscanf): Rename to
2695         _IO_vfscanf_internal, don't use strtold if __ldbl_is_dbl, add
2696         ldbl_strong_alias.
2697         (vfwscanf): Use ldbl_weak_alias instead of weak_alias.
2698         (__vfscanf): Rename to ___vfscanf, add ldbl_strong_alias and
2699         use ldbl_hidden_def instead of libc_hidden_def.
2700         (vfscanf): Use ldbl_weak_alias instead of weak_alias.
2701         * stdio-common/vprintf.c: Include libioP.h.
2702         (vprintf): Rename to __vprintf and add ldbl_strong_alias.
2703         * debug/fprintf_chk.c (__fprintf_chk): Rename to ___fprintf_chk
2704         and add ldbl_strong_alias.
2705         * debug/printf_chk.c (__printf_chk): Rename to ___printf_chk
2706         and add ldbl_strong_alias.
2707         * debug/snprintf_chk.c: Include libioP.h.
2708         (__snprintf_chk): Rename to ___snprintf_chk and add ldbl_strong_alias.
2709         * debug/sprintf_chk.c: Include libioP.h.
2710         (__sprintf_chk): Rename to ___sprintf_chk and add ldbl_strong_alias.
2711         * debug/vfprintf_chk.c (__vfprintf_chk): Rename to ___vfprintf_chk,
2712         add ldbl_strong_alias and use ldbl_hidden_def instead of
2713         libc_hidden_def.
2714         * debug/vfwprintf_chk.c (__vfwprintf_chk): Add libc_hidden_def.
2715         * debug/vprintf_chk.c (__vprintf_chk): Rename to ___vprintf_chk
2716         and add ldbl_strong_alias.
2717         * debug/vsnprintf_chk.c (__vsnprintf_chk): Rename to ___vsnprintf_chk,
2718         add ldbl_strong_alias and use ldbl_hidden_def instead of
2719         libc_hidden_def.
2720         * debug/vsprintf_chk.c (__vsprintf_chk): Rename to ___vsprintf_chk,
2721         add ldbl_strong_alias and use ldbl_hidden_def instead of
2722         libc_hidden_def.
2724         * stdlib/stdlib.h (strtold): Don't define inline if [!__LDBL_COMPAT].
2725         * wcsmbs/wchar.h (wcstold): Likewise.
2726         * stdlib/strtod_l.c: Include math_ldbl_opt.h.
2727         (____STRTOF_INTERNAL): Define.
2728         (INTERNAL (__STRTOF)): Rename to ____STRTOF_INTERNAL.
2729         (__STRTOF): Call ____STRTOF_INTERNAL instead.
2730         [LONG_DOUBLE_COMPAT] (strtold_l, wcstold_l, __strtold_l, __wcstold_l):
2731         Add compatibility symbols.
2732         * stdlib/strtod.c: Include math_ldbl_opt.h.
2733         [LONG_DOUBLE_COMPAT] (strtold, wcstold, __strtold_internal,
2734         __wcstold_internal): Add compatibility symbols.
2735         * stdlib/strtold.c: Include bits/wordsize.h, wchar.h.
2736         (NEW, NEW1): Define.
2737         (__new_strtold, __new_wcstold): New prototypes.
2738         (____new_strtold_internal, ____new_wcstold_internal): Likewise.
2739         Add libc_hidden_proto.
2740         (STRTOF): Define to NEW (*told).
2741         [__LONG_DOUBLE_MATH_OPTIONAL] (wcstold, strtold): Add
2742         long_double_symbol.
2743         [__LONG_DOUBLE_MATH_OPTIONAL] (__wcstold_internal,
2744         __strtold_internal): Likewise. Add libc_hidden_ver.
2746         * stdlib/bits/stdlib-ldbl.h: New file.
2747         * stdlib/Makefile (headers): Add it.
2748         * stdlib/stdlib.h [__LDBL_COMPAT]: #include it.
2749         * include/stdlib.h (ecvt_r, fcvt_r, qecvt_r, qfcvt_r): Remove
2750         libc_hidden_proto.
2751         (__ecvt, __fcvt, __gcvt, __ecvt_r, __fcvt_r, __qecvt, __qfcvt,
2752         __qgcvt, __qecvt_r, __qfcvt_r): New prototypes.
2753         * misc/efgcvt_r.c: Include shlib-compat.h.
2754         (LONG_DOUBLE_CVT): Define.
2755         (__APPEND, __APPEND2): Define.
2756         (*fcvt_r): Use __APPEND instead of APPEND.  Remove libc_hidden_def.
2757         (*ecvt_r): Likewise.
2758         (cvt_symbol): Define.  Use it on fcvt_r and ecvt_r.
2759         * misc/efgcvt.c: Include shlib-compat.h.
2760         (LONG_DOUBLE_CVT): Define.
2761         (__APPEND, __APPEND2): Define.
2762         (fcvt): Use __APPEND instead of APPEND.  Remove libc_hidden_def.
2763         (ecvt, gcvt): Likewise.
2764         (cvt_symbol): Define.  Use it on fcvt, ecvt and gcvt.
2766         * stdlib/bits/monetary-ldbl.h: New file.
2767         * stdlib/Makefile (headers): Add it.
2768         * stdlib/monetary.h [__LDBL_COMPAT]: #include it.
2769         * stdlib/strfmon.c: Include math_ldbl_opt.h.
2770         (strfmon): Rename to __strfmon and add ldbl_strong_alias.
2771         * stdlib/strfmon_l.c: Remove all traces of [!USE_IN_LIBIO].
2772         (__vstrfmon_l): Don't set is_long_double if __ldbl_is_dbl.
2773         (__strfmon_l): Rename to ___strfmon_l and add ldbl_strong_alias.
2774         (strfmon_l): Use ldbl_weak_alias instead of weak_alias.
2776         * misc/bits/syslog-ldbl.h: New file.
2777         * misc/Makefile (headers): Add it.
2778         * misc/sys/syslog.h [__LDBL_COMPAT]: #include it.
2779         * misc/syslog.c: Include math_ldbl_opt.h.
2780         (syslog): Rename to __syslog and add ldbl_strong_alias,
2781         use ldbl_hidden_def instead of libc_hidden_def.
2782         (vsyslog): Rename to __vsyslog and add ldbl_strong_alias,
2783         use ldbl_hidden_def instead of libc_hidden_def.
2785         * sysdeps/generic/math_ldbl_opt.h: New file.
2786         * math/w_j1l.c (j1l, y1l): Rename to __ prefixed variants.
2787         Add weak_alias.
2788         * math/w_j0l.c (j0l, y0l): Likewise.
2789         * math/w_jnl.c (jnl, ynl): Likewise.
2790         * sysdeps/ieee754/ldbl-96/s_nexttoward.c
2791         (__nexttowardl): Remove strong_alias.
2792         (nexttowardl): Remove weak_alias.
2793         * sysdeps/ieee754/ldbl-96/s_erfl.c
2794         (__erfl, __erfcl): Remove strong_alias.
2795         (erfl, erfcl): Remove weak_alias.
2797         * sysdeps/ieee754/ldbl-64-128/s_asinhl.c: New file.
2798         * sysdeps/ieee754/ldbl-64-128/s_atanl.c: New file.
2799         * sysdeps/ieee754/ldbl-64-128/s_cbrtl.c: New file.
2800         * sysdeps/ieee754/ldbl-64-128/s_ceill.c: New file.
2801         * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: New file.
2802         * sysdeps/ieee754/ldbl-64-128/s_cosl.c: New file.
2803         * sysdeps/ieee754/ldbl-64-128/s_erfl.c: New file.
2804         * sysdeps/ieee754/ldbl-64-128/s_expm1l.c: New file.
2805         * sysdeps/ieee754/ldbl-64-128/s_fabsl.c: New file.
2806         * sysdeps/ieee754/ldbl-64-128/s_finitel.c: New file.
2807         * sysdeps/ieee754/ldbl-64-128/s_floorl.c: New file.
2808         * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c: New file.
2809         * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: New file.
2810         * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: New file.
2811         * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: New file.
2812         * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: New file.
2813         * sysdeps/ieee754/ldbl-64-128/s_llrintl.c: New file.
2814         * sysdeps/ieee754/ldbl-64-128/s_llroundl.c: New file.
2815         * sysdeps/ieee754/ldbl-64-128/s_log1pl.c: New file.
2816         * sysdeps/ieee754/ldbl-64-128/s_logbl.c: New file.
2817         * sysdeps/ieee754/ldbl-64-128/s_lrintl.c: New file.
2818         * sysdeps/ieee754/ldbl-64-128/s_lroundl.c: New file.
2819         * sysdeps/ieee754/ldbl-64-128/s_modfl.c: New file.
2820         * sysdeps/ieee754/ldbl-64-128/s_nearbyintl.c: New file.
2821         * sysdeps/ieee754/ldbl-64-128/s_nextafterl.c: New file.
2822         * sysdeps/ieee754/ldbl-64-128/s_nexttoward.c: New file.
2823         * sysdeps/ieee754/ldbl-64-128/s_nexttowardf.c: New file.
2824         * sysdeps/ieee754/ldbl-64-128/s_nexttowardfd.c: New file.
2825         * sysdeps/ieee754/ldbl-64-128/s_remquol.c: New file.
2826         * sysdeps/ieee754/ldbl-64-128/s_rintl.c: New file.
2827         * sysdeps/ieee754/ldbl-64-128/s_roundl.c: New file.
2828         * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c: New file.
2829         * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: New file.
2830         * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: New file.
2831         * sysdeps/ieee754/ldbl-64-128/s_sincosl.c: New file.
2832         * sysdeps/ieee754/ldbl-64-128/s_sinl.c: New file.
2833         * sysdeps/ieee754/ldbl-64-128/s_tanhl.c: New file.
2834         * sysdeps/ieee754/ldbl-64-128/s_tanl.c: New file.
2835         * sysdeps/ieee754/ldbl-64-128/s_truncl.c: New file.
2836         * sysdeps/ieee754/ldbl-64-128/strtold_l.c: New file.
2837         * sysdeps/ieee754/ldbl-64-128/w_expl.c: New file.
2838         * sysdeps/ieee754/ldbl-opt/configure.in: New file.
2839         * sysdeps/ieee754/ldbl-opt/configure: New file.
2840         * sysdeps/ieee754/ldbl-opt/Makefile: New file.
2841         * sysdeps/ieee754/ldbl-opt/Versions: New file.
2842         * sysdeps/ieee754/ldbl-opt/cabs.c: New file.
2843         * sysdeps/ieee754/ldbl-opt/cabsl.c: New file.
2844         * sysdeps/ieee754/ldbl-opt/carg.c: New file.
2845         * sysdeps/ieee754/ldbl-opt/cargl.c: New file.
2846         * sysdeps/ieee754/ldbl-opt/cimag.c: New file.
2847         * sysdeps/ieee754/ldbl-opt/cimagl.c: New file.
2848         * sysdeps/ieee754/ldbl-opt/conj.c: New file.
2849         * sysdeps/ieee754/ldbl-opt/conjl.c: New file.
2850         * sysdeps/ieee754/ldbl-opt/creal.c: New file.
2851         * sysdeps/ieee754/ldbl-opt/creall.c: New file.
2852         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.c: New file.
2853         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: New file.
2854         * sysdeps/ieee754/ldbl-opt/nldbl-acos.c: New file.
2855         * sysdeps/ieee754/ldbl-opt/nldbl-acosh.c: New file.
2856         * sysdeps/ieee754/ldbl-opt/nldbl-asin.c: New file.
2857         * sysdeps/ieee754/ldbl-opt/nldbl-asinh.c: New file.
2858         * sysdeps/ieee754/ldbl-opt/nldbl-asprintf.c: New file.
2859         * sysdeps/ieee754/ldbl-opt/nldbl-atan.c: New file.
2860         * sysdeps/ieee754/ldbl-opt/nldbl-atan2.c: New file.
2861         * sysdeps/ieee754/ldbl-opt/nldbl-atanh.c: New file.
2862         * sysdeps/ieee754/ldbl-opt/nldbl-cabs.c: New file.
2863         * sysdeps/ieee754/ldbl-opt/nldbl-cacos.c: New file.
2864         * sysdeps/ieee754/ldbl-opt/nldbl-cacosh.c: New file.
2865         * sysdeps/ieee754/ldbl-opt/nldbl-carg.c: New file.
2866         * sysdeps/ieee754/ldbl-opt/nldbl-casin.c: New file.
2867         * sysdeps/ieee754/ldbl-opt/nldbl-casinh.c: New file.
2868         * sysdeps/ieee754/ldbl-opt/nldbl-catan.c: New file.
2869         * sysdeps/ieee754/ldbl-opt/nldbl-catanh.c: New file.
2870         * sysdeps/ieee754/ldbl-opt/nldbl-cbrt.c: New file.
2871         * sysdeps/ieee754/ldbl-opt/nldbl-ccos.c: New file.
2872         * sysdeps/ieee754/ldbl-opt/nldbl-ccosh.c: New file.
2873         * sysdeps/ieee754/ldbl-opt/nldbl-ceil.c: New file.
2874         * sysdeps/ieee754/ldbl-opt/nldbl-cexp.c: New file.
2875         * sysdeps/ieee754/ldbl-opt/nldbl-cimag.c: New file.
2876         * sysdeps/ieee754/ldbl-opt/nldbl-clog.c: New file.
2877         * sysdeps/ieee754/ldbl-opt/nldbl-clog10.c: New file.
2878         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: New file.
2879         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h: New file.
2880         * sysdeps/ieee754/ldbl-opt/nldbl-conj.c: New file.
2881         * sysdeps/ieee754/ldbl-opt/nldbl-copysign.c: New file.
2882         * sysdeps/ieee754/ldbl-opt/nldbl-cos.c: New file.
2883         * sysdeps/ieee754/ldbl-opt/nldbl-cosh.c: New file.
2884         * sysdeps/ieee754/ldbl-opt/nldbl-cpow.c: New file.
2885         * sysdeps/ieee754/ldbl-opt/nldbl-cproj.c: New file.
2886         * sysdeps/ieee754/ldbl-opt/nldbl-creal.c: New file.
2887         * sysdeps/ieee754/ldbl-opt/nldbl-csin.c: New file.
2888         * sysdeps/ieee754/ldbl-opt/nldbl-csinh.c: New file.
2889         * sysdeps/ieee754/ldbl-opt/nldbl-csqrt.c: New file.
2890         * sysdeps/ieee754/ldbl-opt/nldbl-ctan.c: New file.
2891         * sysdeps/ieee754/ldbl-opt/nldbl-ctanh.c: New file.
2892         * sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c: New file.
2893         * sysdeps/ieee754/ldbl-opt/nldbl-drem.c: New file.
2894         * sysdeps/ieee754/ldbl-opt/nldbl-erf.c: New file.
2895         * sysdeps/ieee754/ldbl-opt/nldbl-erfc.c: New file.
2896         * sysdeps/ieee754/ldbl-opt/nldbl-exp.c: New file.
2897         * sysdeps/ieee754/ldbl-opt/nldbl-exp10.c: New file.
2898         * sysdeps/ieee754/ldbl-opt/nldbl-exp2.c: New file.
2899         * sysdeps/ieee754/ldbl-opt/nldbl-expm1.c: New file.
2900         * sysdeps/ieee754/ldbl-opt/nldbl-fabs.c: New file.
2901         * sysdeps/ieee754/ldbl-opt/nldbl-fdim.c: New file.
2902         * sysdeps/ieee754/ldbl-opt/nldbl-finite.c: New file.
2903         * sysdeps/ieee754/ldbl-opt/nldbl-floor.c: New file.
2904         * sysdeps/ieee754/ldbl-opt/nldbl-fma.c: New file.
2905         * sysdeps/ieee754/ldbl-opt/nldbl-fmax.c: New file.
2906         * sysdeps/ieee754/ldbl-opt/nldbl-fmin.c: New file.
2907         * sysdeps/ieee754/ldbl-opt/nldbl-fmod.c: New file.
2908         * sysdeps/ieee754/ldbl-opt/nldbl-fprintf.c: New file.
2909         * sysdeps/ieee754/ldbl-opt/nldbl-fprintf_chk.c: New file.
2910         * sysdeps/ieee754/ldbl-opt/nldbl-frexp.c: New file.
2911         * sysdeps/ieee754/ldbl-opt/nldbl-fscanf.c: New file.
2912         * sysdeps/ieee754/ldbl-opt/nldbl-fwprintf.c: New file.
2913         * sysdeps/ieee754/ldbl-opt/nldbl-fwprintf_chk.c: New file.
2914         * sysdeps/ieee754/ldbl-opt/nldbl-fwscanf.c: New file.
2915         * sysdeps/ieee754/ldbl-opt/nldbl-gamma.c: New file.
2916         * sysdeps/ieee754/ldbl-opt/nldbl-hypot.c: New file.
2917         * sysdeps/ieee754/ldbl-opt/nldbl-ilogb.c: New file.
2918         * sysdeps/ieee754/ldbl-opt/nldbl-iovfscanf.c: New file.
2919         * sysdeps/ieee754/ldbl-opt/nldbl-isinf.c: New file.
2920         * sysdeps/ieee754/ldbl-opt/nldbl-isnan.c: New file.
2921         * sysdeps/ieee754/ldbl-opt/nldbl-j0.c: New file.
2922         * sysdeps/ieee754/ldbl-opt/nldbl-j1.c: New file.
2923         * sysdeps/ieee754/ldbl-opt/nldbl-jn.c: New file.
2924         * sysdeps/ieee754/ldbl-opt/nldbl-ldexp.c: New file.
2925         * sysdeps/ieee754/ldbl-opt/nldbl-lgamma.c: New file.
2926         * sysdeps/ieee754/ldbl-opt/nldbl-lgamma_r.c: New file.
2927         * sysdeps/ieee754/ldbl-opt/nldbl-llrint.c: New file.
2928         * sysdeps/ieee754/ldbl-opt/nldbl-llround.c: New file.
2929         * sysdeps/ieee754/ldbl-opt/nldbl-log.c: New file.
2930         * sysdeps/ieee754/ldbl-opt/nldbl-log10.c: New file.
2931         * sysdeps/ieee754/ldbl-opt/nldbl-log1p.c: New file.
2932         * sysdeps/ieee754/ldbl-opt/nldbl-log2.c: New file.
2933         * sysdeps/ieee754/ldbl-opt/nldbl-logb.c: New file.
2934         * sysdeps/ieee754/ldbl-opt/nldbl-lrint.c: New file.
2935         * sysdeps/ieee754/ldbl-opt/nldbl-lround.c: New file.
2936         * sysdeps/ieee754/ldbl-opt/nldbl-modf.c: New file.
2937         * sysdeps/ieee754/ldbl-opt/nldbl-nan.c: New file.
2938         * sysdeps/ieee754/ldbl-opt/nldbl-nearbyint.c: New file.
2939         * sysdeps/ieee754/ldbl-opt/nldbl-nextafter.c: New file.
2940         * sysdeps/ieee754/ldbl-opt/nldbl-nexttoward.c: New file.
2941         * sysdeps/ieee754/ldbl-opt/nldbl-nexttowardf.c: New file.
2942         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf.c: New file.
2943         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_vprintf.c: New file.
2944         * sysdeps/ieee754/ldbl-opt/nldbl-pow.c: New file.
2945         * sysdeps/ieee754/ldbl-opt/nldbl-pow10.c: New file.
2946         * sysdeps/ieee754/ldbl-opt/nldbl-printf.c: New file.
2947         * sysdeps/ieee754/ldbl-opt/nldbl-printf_chk.c: New file.
2948         * sysdeps/ieee754/ldbl-opt/nldbl-printf_fp.c: New file.
2949         * sysdeps/ieee754/ldbl-opt/nldbl-printf_size.c: New file.
2950         * sysdeps/ieee754/ldbl-opt/nldbl-qecvt.c: New file.
2951         * sysdeps/ieee754/ldbl-opt/nldbl-qecvt_r.c: New file.
2952         * sysdeps/ieee754/ldbl-opt/nldbl-qfcvt.c: New file.
2953         * sysdeps/ieee754/ldbl-opt/nldbl-qfcvt_r.c: New file.
2954         * sysdeps/ieee754/ldbl-opt/nldbl-qgcvt.c: New file.
2955         * sysdeps/ieee754/ldbl-opt/nldbl-remainder.c: New file.
2956         * sysdeps/ieee754/ldbl-opt/nldbl-remquo.c: New file.
2957         * sysdeps/ieee754/ldbl-opt/nldbl-rint.c: New file.
2958         * sysdeps/ieee754/ldbl-opt/nldbl-round.c: New file.
2959         * sysdeps/ieee754/ldbl-opt/nldbl-scalb.c: New file.
2960         * sysdeps/ieee754/ldbl-opt/nldbl-scalbln.c: New file.
2961         * sysdeps/ieee754/ldbl-opt/nldbl-scalbn.c: New file.
2962         * sysdeps/ieee754/ldbl-opt/nldbl-scanf.c: New file.
2963         * sysdeps/ieee754/ldbl-opt/nldbl-signbit.c: New file.
2964         * sysdeps/ieee754/ldbl-opt/nldbl-significand.c: New file.
2965         * sysdeps/ieee754/ldbl-opt/nldbl-sin.c: New file.
2966         * sysdeps/ieee754/ldbl-opt/nldbl-sincos.c: New file.
2967         * sysdeps/ieee754/ldbl-opt/nldbl-sinh.c: New file.
2968         * sysdeps/ieee754/ldbl-opt/nldbl-snprintf.c: New file.
2969         * sysdeps/ieee754/ldbl-opt/nldbl-snprintf_chk.c: New file.
2970         * sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c: New file.
2971         * sysdeps/ieee754/ldbl-opt/nldbl-sprintf_chk.c: New file.
2972         * sysdeps/ieee754/ldbl-opt/nldbl-sqrt.c: New file.
2973         * sysdeps/ieee754/ldbl-opt/nldbl-sscanf.c: New file.
2974         * sysdeps/ieee754/ldbl-opt/nldbl-strfmon.c: New file.
2975         * sysdeps/ieee754/ldbl-opt/nldbl-strfmon_l.c: New file.
2976         * sysdeps/ieee754/ldbl-opt/nldbl-strtold.c: New file.
2977         * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: New file.
2978         * sysdeps/ieee754/ldbl-opt/nldbl-strtoldint.c: New file.
2979         * sysdeps/ieee754/ldbl-opt/nldbl-swprintf.c: New file.
2980         * sysdeps/ieee754/ldbl-opt/nldbl-swprintf_chk.c: New file.
2981         * sysdeps/ieee754/ldbl-opt/nldbl-swscanf.c: New file.
2982         * sysdeps/ieee754/ldbl-opt/nldbl-syslog.c: New file.
2983         * sysdeps/ieee754/ldbl-opt/nldbl-syslog_chk.c: New file.
2984         * sysdeps/ieee754/ldbl-opt/nldbl-tan.c: New file.
2985         * sysdeps/ieee754/ldbl-opt/nldbl-tanh.c: New file.
2986         * sysdeps/ieee754/ldbl-opt/nldbl-tgamma.c: New file.
2987         * sysdeps/ieee754/ldbl-opt/nldbl-trunc.c: New file.
2988         * sysdeps/ieee754/ldbl-opt/nldbl-vasprintf.c: New file.
2989         * sysdeps/ieee754/ldbl-opt/nldbl-vdprintf.c: New file.
2990         * sysdeps/ieee754/ldbl-opt/nldbl-vfprintf.c: New file.
2991         * sysdeps/ieee754/ldbl-opt/nldbl-vfprintf_chk.c: New file.
2992         * sysdeps/ieee754/ldbl-opt/nldbl-vfscanf.c: New file.
2993         * sysdeps/ieee754/ldbl-opt/nldbl-vfwprintf.c: New file.
2994         * sysdeps/ieee754/ldbl-opt/nldbl-vfwprintf_chk.c: New file.
2995         * sysdeps/ieee754/ldbl-opt/nldbl-vfwscanf.c: New file.
2996         * sysdeps/ieee754/ldbl-opt/nldbl-vprintf.c: New file.
2997         * sysdeps/ieee754/ldbl-opt/nldbl-vprintf_chk.c: New file.
2998         * sysdeps/ieee754/ldbl-opt/nldbl-vscanf.c: New file.
2999         * sysdeps/ieee754/ldbl-opt/nldbl-vsnprintf.c: New file.
3000         * sysdeps/ieee754/ldbl-opt/nldbl-vsnprintf_chk.c: New file.
3001         * sysdeps/ieee754/ldbl-opt/nldbl-vsprintf.c: New file.
3002         * sysdeps/ieee754/ldbl-opt/nldbl-vsprintf_chk.c: New file.
3003         * sysdeps/ieee754/ldbl-opt/nldbl-vsscanf.c: New file.
3004         * sysdeps/ieee754/ldbl-opt/nldbl-vswprintf.c: New file.
3005         * sysdeps/ieee754/ldbl-opt/nldbl-vswprintf_chk.c: New file.
3006         * sysdeps/ieee754/ldbl-opt/nldbl-vswscanf.c: New file.
3007         * sysdeps/ieee754/ldbl-opt/nldbl-vsyslog.c: New file.
3008         * sysdeps/ieee754/ldbl-opt/nldbl-vsyslog_chk.c: New file.
3009         * sysdeps/ieee754/ldbl-opt/nldbl-vwprintf.c: New file.
3010         * sysdeps/ieee754/ldbl-opt/nldbl-vwprintf_chk.c: New file.
3011         * sysdeps/ieee754/ldbl-opt/nldbl-vwscanf.c: New file.
3012         * sysdeps/ieee754/ldbl-opt/nldbl-wcstold.c: New file.
3013         * sysdeps/ieee754/ldbl-opt/nldbl-wcstold_l.c: New file.
3014         * sysdeps/ieee754/ldbl-opt/nldbl-wcstoldint.c: New file.
3015         * sysdeps/ieee754/ldbl-opt/nldbl-wprintf.c: New file.
3016         * sysdeps/ieee754/ldbl-opt/nldbl-wprintf_chk.c: New file.
3017         * sysdeps/ieee754/ldbl-opt/nldbl-wscanf.c: New file.
3018         * sysdeps/ieee754/ldbl-opt/nldbl-y0.c: New file.
3019         * sysdeps/ieee754/ldbl-opt/nldbl-y1.c: New file.
3020         * sysdeps/ieee754/ldbl-opt/nldbl-yn.c: New file.
3021         * sysdeps/ieee754/ldbl-opt/s_asinh.c: New file.
3022         * sysdeps/ieee754/ldbl-opt/s_atan.c: New file.
3023         * sysdeps/ieee754/ldbl-opt/s_cacos.c: New file.
3024         * sysdeps/ieee754/ldbl-opt/s_cacosh.c: New file.
3025         * sysdeps/ieee754/ldbl-opt/s_cacoshl.c: New file.
3026         * sysdeps/ieee754/ldbl-opt/s_cacosl.c: New file.
3027         * sysdeps/ieee754/ldbl-opt/s_casin.c: New file.
3028         * sysdeps/ieee754/ldbl-opt/s_casinh.c: New file.
3029         * sysdeps/ieee754/ldbl-opt/s_casinhl.c: New file.
3030         * sysdeps/ieee754/ldbl-opt/s_casinl.c: New file.
3031         * sysdeps/ieee754/ldbl-opt/s_catan.c: New file.
3032         * sysdeps/ieee754/ldbl-opt/s_catanh.c: New file.
3033         * sysdeps/ieee754/ldbl-opt/s_catanhl.c: New file.
3034         * sysdeps/ieee754/ldbl-opt/s_catanl.c: New file.
3035         * sysdeps/ieee754/ldbl-opt/s_cbrt.c: New file.
3036         * sysdeps/ieee754/ldbl-opt/s_ccos.c: New file.
3037         * sysdeps/ieee754/ldbl-opt/s_ccosh.c: New file.
3038         * sysdeps/ieee754/ldbl-opt/s_ccoshl.c: New file.
3039         * sysdeps/ieee754/ldbl-opt/s_ccosl.c: New file.
3040         * sysdeps/ieee754/ldbl-opt/s_ceil.c: New file.
3041         * sysdeps/ieee754/ldbl-opt/s_cexp.c: New file.
3042         * sysdeps/ieee754/ldbl-opt/s_cexpl.c: New file.
3043         * sysdeps/ieee754/ldbl-opt/s_clog.c: New file.
3044         * sysdeps/ieee754/ldbl-opt/s_clog10.c: New file.
3045         * sysdeps/ieee754/ldbl-opt/s_clog10l.c: New file.
3046         * sysdeps/ieee754/ldbl-opt/s_clogl.c: New file.
3047         * sysdeps/ieee754/ldbl-opt/s_copysign.c: New file.
3048         * sysdeps/ieee754/ldbl-opt/s_cpow.c: New file.
3049         * sysdeps/ieee754/ldbl-opt/s_cpowl.c: New file.
3050         * sysdeps/ieee754/ldbl-opt/s_cproj.c: New file.
3051         * sysdeps/ieee754/ldbl-opt/s_cprojl.c: New file.
3052         * sysdeps/ieee754/ldbl-opt/s_csin.c: New file.
3053         * sysdeps/ieee754/ldbl-opt/s_csinh.c: New file.
3054         * sysdeps/ieee754/ldbl-opt/s_csinhl.c: New file.
3055         * sysdeps/ieee754/ldbl-opt/s_csinl.c: New file.
3056         * sysdeps/ieee754/ldbl-opt/s_csqrt.c: New file.
3057         * sysdeps/ieee754/ldbl-opt/s_csqrtl.c: New file.
3058         * sysdeps/ieee754/ldbl-opt/s_ctan.c: New file.
3059         * sysdeps/ieee754/ldbl-opt/s_ctanh.c: New file.
3060         * sysdeps/ieee754/ldbl-opt/s_ctanhl.c: New file.
3061         * sysdeps/ieee754/ldbl-opt/s_ctanl.c: New file.
3062         * sysdeps/ieee754/ldbl-opt/s_erf.c: New file.
3063         * sysdeps/ieee754/ldbl-opt/s_expm1.c: New file.
3064         * sysdeps/ieee754/ldbl-opt/s_fabs.c: New file.
3065         * sysdeps/ieee754/ldbl-opt/s_fdim.c: New file.
3066         * sysdeps/ieee754/ldbl-opt/s_fdiml.c: New file.
3067         * sysdeps/ieee754/ldbl-opt/s_finite.c: New file.
3068         * sysdeps/ieee754/ldbl-opt/s_floor.c: New file.
3069         * sysdeps/ieee754/ldbl-opt/s_fma.c: New file.
3070         * sysdeps/ieee754/ldbl-opt/s_fmal.c: New file.
3071         * sysdeps/ieee754/ldbl-opt/s_fmax.c: New file.
3072         * sysdeps/ieee754/ldbl-opt/s_fmaxl.c: New file.
3073         * sysdeps/ieee754/ldbl-opt/s_fmin.c: New file.
3074         * sysdeps/ieee754/ldbl-opt/s_fminl.c: New file.
3075         * sysdeps/ieee754/ldbl-opt/s_frexp.c: New file.
3076         * sysdeps/ieee754/ldbl-opt/s_ilogb.c: New file.
3077         * sysdeps/ieee754/ldbl-opt/s_isinf.c: New file.
3078         * sysdeps/ieee754/ldbl-opt/s_isnan.c: New file.
3079         * sysdeps/ieee754/ldbl-opt/s_ldexp.c: New file.
3080         * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: New file.
3081         * sysdeps/ieee754/ldbl-opt/s_llrint.c: New file.
3082         * sysdeps/ieee754/ldbl-opt/s_llround.c: New file.
3083         * sysdeps/ieee754/ldbl-opt/s_log1p.c: New file.
3084         * sysdeps/ieee754/ldbl-opt/s_logb.c: New file.
3085         * sysdeps/ieee754/ldbl-opt/s_lrint.c: New file.
3086         * sysdeps/ieee754/ldbl-opt/s_lround.c: New file.
3087         * sysdeps/ieee754/ldbl-opt/s_modf.c: New file.
3088         * sysdeps/ieee754/ldbl-opt/s_nan.c: New file.
3089         * sysdeps/ieee754/ldbl-opt/s_nanl.c: New file.
3090         * sysdeps/ieee754/ldbl-opt/s_nearbyint.c: New file.
3091         * sysdeps/ieee754/ldbl-opt/s_nextafter.c: New file.
3092         * sysdeps/ieee754/ldbl-opt/s_remquo.c: New file.
3093         * sysdeps/ieee754/ldbl-opt/s_rint.c: New file.
3094         * sysdeps/ieee754/ldbl-opt/s_round.c: New file.
3095         * sysdeps/ieee754/ldbl-opt/s_scalbln.c: New file.
3096         * sysdeps/ieee754/ldbl-opt/s_scalbn.c: New file.
3097         * sysdeps/ieee754/ldbl-opt/s_significand.c: New file.
3098         * sysdeps/ieee754/ldbl-opt/s_significandl.c: New file.
3099         * sysdeps/ieee754/ldbl-opt/s_sin.c: New file.
3100         * sysdeps/ieee754/ldbl-opt/s_sincos.c: New file.
3101         * sysdeps/ieee754/ldbl-opt/s_tan.c: New file.
3102         * sysdeps/ieee754/ldbl-opt/s_tanh.c: New file.
3103         * sysdeps/ieee754/ldbl-opt/s_trunc.c: New file.
3104         * sysdeps/ieee754/ldbl-opt/w_acos.c: New file.
3105         * sysdeps/ieee754/ldbl-opt/w_acosh.c: New file.
3106         * sysdeps/ieee754/ldbl-opt/w_acoshl.c: New file.
3107         * sysdeps/ieee754/ldbl-opt/w_acosl.c: New file.
3108         * sysdeps/ieee754/ldbl-opt/w_asin.c: New file.
3109         * sysdeps/ieee754/ldbl-opt/w_asinl.c: New file.
3110         * sysdeps/ieee754/ldbl-opt/w_atan2.c: New file.
3111         * sysdeps/ieee754/ldbl-opt/w_atan2l.c: New file.
3112         * sysdeps/ieee754/ldbl-opt/w_atanh.c: New file.
3113         * sysdeps/ieee754/ldbl-opt/w_atanhl.c: New file.
3114         * sysdeps/ieee754/ldbl-opt/w_cosh.c: New file.
3115         * sysdeps/ieee754/ldbl-opt/w_coshl.c: New file.
3116         * sysdeps/ieee754/ldbl-opt/w_drem.c: New file.
3117         * sysdeps/ieee754/ldbl-opt/w_dreml.c: New file.
3118         * sysdeps/ieee754/ldbl-opt/w_exp.c: New file.
3119         * sysdeps/ieee754/ldbl-opt/w_exp10.c: New file.
3120         * sysdeps/ieee754/ldbl-opt/w_exp10l.c: New file.
3121         * sysdeps/ieee754/ldbl-opt/w_fmod.c: New file.
3122         * sysdeps/ieee754/ldbl-opt/w_fmodl.c: New file.
3123         * sysdeps/ieee754/ldbl-opt/w_hypot.c: New file.
3124         * sysdeps/ieee754/ldbl-opt/w_hypotl.c: New file.
3125         * sysdeps/ieee754/ldbl-opt/w_j0.c: New file.
3126         * sysdeps/ieee754/ldbl-opt/w_j0l.c: New file.
3127         * sysdeps/ieee754/ldbl-opt/w_j1.c: New file.
3128         * sysdeps/ieee754/ldbl-opt/w_j1l.c: New file.
3129         * sysdeps/ieee754/ldbl-opt/w_jn.c: New file.
3130         * sysdeps/ieee754/ldbl-opt/w_jnl.c: New file.
3131         * sysdeps/ieee754/ldbl-opt/w_lgamma.c: New file.
3132         * sysdeps/ieee754/ldbl-opt/w_lgamma_r.c: New file.
3133         * sysdeps/ieee754/ldbl-opt/w_lgammal.c: New file.
3134         * sysdeps/ieee754/ldbl-opt/w_lgammal_r.c: New file.
3135         * sysdeps/ieee754/ldbl-opt/w_log.c: New file.
3136         * sysdeps/ieee754/ldbl-opt/w_log10.c: New file.
3137         * sysdeps/ieee754/ldbl-opt/w_log10l.c: New file.
3138         * sysdeps/ieee754/ldbl-opt/w_log2.c: New file.
3139         * sysdeps/ieee754/ldbl-opt/w_log2l.c: New file.
3140         * sysdeps/ieee754/ldbl-opt/w_logl.c: New file.
3141         * sysdeps/ieee754/ldbl-opt/w_pow.c: New file.
3142         * sysdeps/ieee754/ldbl-opt/w_powl.c: New file.
3143         * sysdeps/ieee754/ldbl-opt/w_remainder.c: New file.
3144         * sysdeps/ieee754/ldbl-opt/w_remainderl.c: New file.
3145         * sysdeps/ieee754/ldbl-opt/w_scalb.c: New file.
3146         * sysdeps/ieee754/ldbl-opt/w_scalbl.c: New file.
3147         * sysdeps/ieee754/ldbl-opt/w_sinh.c: New file.
3148         * sysdeps/ieee754/ldbl-opt/w_sinhl.c: New file.
3149         * sysdeps/ieee754/ldbl-opt/w_sqrt.c: New file.
3150         * sysdeps/ieee754/ldbl-opt/w_sqrtl.c: New file.
3151         * sysdeps/ieee754/ldbl-opt/w_tgamma.c: New file.
3152         * sysdeps/ieee754/ldbl-opt/w_tgammal.c: New file.
3154         * sysdeps/unix/sysv/linux/sparc/bits/wordsize.h: New file.
3155         * sysdeps/unix/sysv/linux/sparc/sparc32/Implies: New file.
3156         * sysdeps/sparc/sparc32/Implies: Move ldbl-128 first and flt-32
3157         after dbl-64.
3158         * sysdeps/unix/sysv/linux/sparc/sparc32/Versions (NLDBL_VERSION):
3159         %define this to to GLIBC_2.4.
3160         * sysdeps/sparc/sparc32/fpu/e_sqrtl.c: New file.
3161         * sysdeps/sparc/sparc32/fpu/s_fabs.c: New file.
3162         * sysdeps/sparc/sparc32/fpu/s_fabsf.S: New file.
3163         * sysdeps/sparc/sparc32/fpu/s_fabsl.c: New file.
3164         * sysdeps/sparc/sparc32/soft-fp/q_qtoui.c: Removed.
3165         * sysdeps/sparc/sparc32/soft-fp/q_qtoux.c: Removed.
3166         * sysdeps/sparc/sparc32/soft-fp/q_qtox.c: Removed.
3167         * sysdeps/sparc/sparc32/soft-fp/q_uitoq.c: Removed.
3168         * sysdeps/sparc/sparc32/soft-fp/q_uxtoq.c: Removed.
3169         * sysdeps/sparc/sparc32/soft-fp/q_xtoq.c: Removed.
3170         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: New file.
3171         * sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: New file.
3172         * sysdeps/sparc/sparc32/soft-fp/q_qtou.c: New file.
3173         * sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: New file.
3174         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: New file.
3175         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: New file.
3176         * sysdeps/sparc/sparc32/soft-fp/Versions: New file.
3177         * sysdeps/sparc/fpu/bits/mathinline.h (__unordered_cmp,
3178         __unordered_v9cmp): Define differently depending on
3179         -m32 -mlong-double-{64,128}.
3180         (__signbitl, sqrtl, __ieee754_sqrtl): New inlines.
3181         * sysdeps/sparc/fpu/bits/mathdef.h (__NO_LONG_DOUBLE_MATH): Remove.
3182         * sysdeps/sparc/sparc32/soft-fp/Makefile (sparc32-quad-routines):
3183         Set.
3184         (sysdep-routines): Add sparc32-quad-routines.
3185         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h: Include stdlib.h.
3186         (FP_HANDLE_EXCEPTIONS): Call ___Q_simulate_exceptions as a normal
3187         function.
3188         * sysdeps/sparc/sparc32/soft-fp/q_sqrt.c (__ieee754_sqrtl): New
3189         alias to _Q_sqrt.
3190         * sysdeps/sparc/sparc32/soft-fp/q_div.c (_Q_div): Fix a typo.
3191         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Include stdlib.h.
3192         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Update.
3194         * libio/libio.h (_IO_vfscanf, _IO_vfprintf): Remove __THROW.
3195         (_IO_vfwscanf, _IO_vfwprintf): Likewise.
3196         * libio/libioP.h (_IO_vdprintf): Likewise.
3198 2006-01-13  Richard Henderson  <rth@redhat.com>
3200         * sysdeps/unix/sysv/linux/alpha/sysdep.h (PTR_MANGLE, PTR_MANGLE2,
3201         PTR_DEMANGLE, PTR_DEMANGLE2): Move ...
3202         * sysdeps/unix/alpha/sysdep.h: ... here.
3203         * sysdeps/unix/sysv/linux/alpha/fxstatat.c: Define __GI___fxstatat64.
3205 2006-01-13  Andreas Jaeger  <aj@suse.de>
3207         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (ELF_NVRREG): Fix
3208         value for PowerPC64.
3210 2006-01-12  Roland McGrath  <roland@redhat.com>
3212         * sysdeps/s390/jmpbuf-offsets.h: New file.
3213         * sysdeps/s390/jmpbuf-unwind.h: Include it.
3215         * sysdeps/alpha/__longjmp.S: Include <jmpbuf-offsets.h>
3216         instead of <bits/setjmp.h>.
3217         * sysdeps/alpha/setjmp.S: Likewise.
3218         * sysdeps/i386/__longjmp.S: Likewise.
3219         * sysdeps/i386/bsd-_setjmp.S: Likewise.
3220         * sysdeps/i386/bsd-setjmp.S: Likewise.
3221         * sysdeps/i386/setjmp.S: Likewise.
3222         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
3223         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
3224         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S:
3225         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
3226         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
3227         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
3228         * sysdeps/sh/sh3/setjmp.S: Likewise.
3229         * sysdeps/sh/sh4/setjmp.S: Likewise.
3230         * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
3231         * sysdeps/sparc/sparc32/setjmp.S: Likewise.
3232         * sysdeps/x86_64/__longjmp.S: Likewise.
3233         * sysdeps/x86_64/setjmp.S: Likewise.
3234         * sysdeps/mach/hurd/i386/longjmp-ts.c: Include <jmpbuf-offsets.h>.
3235         * sysdeps/mach/hurd/powerpc/longjmp-ts.c: Likewise.
3236         * sysdeps/mach/hurd/alpha/longjmp-ts.c: Likewise.
3237         * sysdeps/alpha/jmpbuf-unwind.h: Likewise.
3238         * sysdeps/hppa/jmpbuf-unwind.h: Likewise.
3239         * sysdeps/i386/jmpbuf-unwind.h: Likewise.
3240         * sysdeps/powerpc/jmpbuf-unwind.h: Likewise.
3241         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise.
3242         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Likewise.
3243         * sysdeps/x86_64/jmpbuf-unwind.h: Likewise.
3244         * setjmp/jmpbuf-offsets.h: File removed.
3245         * include/bits/setjmp.h: File removed.
3247 2006-01-11  Ulrich Drepper  <drepper@redhat.com>
3249         * libio/wmemstream.c: New file.
3250         * libio/stdio.h: Declare open_wmemstream.
3251         * libio/Versions: Export open_wmemstream for GLIBC_2.4.
3252         * libio/Makefile (routines): Add wmemstream.
3253         (tests): Add tst-memstream1, tst-memstream2, tst-wmemstream2, and
3254         tst-wmemstream2.
3255         * libio/tst-memstream1.c: New file.
3256         * libio/tst-memstream2.c: New file.
3257         * libio/tst-wmemstream1.c: New file.
3258         * libio/tst-wmemstream2.c: New file.
3260         * libio/memstream.c (_IO_mem_sync): Remove useless call to
3261         _IO_default_sync.
3263         * elf/check-textrel.c: Add missing argument.
3265         * Makerules: Define build-module-asneeded.
3266         * iconvdata/extra-module.mk: Use build-module-asneeded.
3267         needed.
3269 2006-01-09  Richard Henderson  <rth@redhat.com>
3271         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on ld.so.
3272         * sysdeps/alpha/__longjmp.S: Use PTR_DEMANGLE.
3273         * sysdeps/alpha/setjmp.S: Likewise.  Avoid __sigjmp_save for rtld;
3274         tailcall in libc.so.
3275         * sysdeps/unix/sysv/linux/alpha/sysdep.h (PTR_MANGLE): Define.
3276         (PTR_MANGLE2): Define.
3278 2006-01-11  Ulrich Drepper  <drepper@redhat.com>
3280         * elf/check-localplt.c: New file.
3281         * elf/Makefile: Add rules to build and run check-localplt.
3282         * scripts/data/localplt-x86_64-linux-gnu.data: New file.
3283         * scripts/data/localplt-i386-linux-gnu.data: New file.
3285         * include/sys/stat.h: Add libc_hidden_proto for __fxstatat64.
3286         * sysdeps/unix/sysv/linux/fxstatat64.c: Add libc_hidden_def for
3287         __fxstatat64.
3288         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Add
3289         __GI___fxstatat64 alias.
3291         * libio/memstream.c (_IO_mem_finish): Fix potential memory leak if
3292         realloc fails.
3294         * include/sched.h: Add libc_hidden_proto for __sched_yield.
3296         * libio/genops.c (_IO_unbuffer_write): Give concurrently running
3297         threads the chance to work correctly by trying to lock the stream.
3298         If this does not work, proceed without locking.
3300 2006-01-10  Ulrich Drepper  <drepper@redhat.com>
3302         * libio/genops.c (_IO_unbuffer_write): Don't always free the
3303         buffer.  This is not necessary except in debug mode.  If we don't
3304         free the buffer but the FILE structure to a list.
3305         (buffer_free): New function.  Free buffers or tell _IO_unbuffer_write
3306         to do so.
3307         * libio/libio.h (struct _IO_FILE): Add new members to keep track
3308         of which buffers have to be freed.
3310         * iconv/gconv_cache.c (free_mem): Don't call munmap if gconv_cache
3311         is NULL.
3313 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3315         * malloc/obstack.c: Fix old comments.  Update FSF snail mail address.
3316         * malloc/obstack.h: Likewise.
3318         [BZ #321]
3319         Fix portability bugs encountered when porting to Itanium.
3320         * malloc/obstack.h (obstack_empty_p, obstack_finish): Do not
3321         assume that the "contents" member is suitably aligned.  It is
3322         not, for some hosts and alignments: e.g., Itanium, long-double.
3323         * malloc/obstack.c (_obstack_begin, _obstack_begin_1,
3324         _obstack_newchunk): Likewise.
3325         * malloc/obstack.c: Include <stddef.h>, for size_t.
3326         Include <inttypes.h>, <stdint.h> if needed and available.
3327         (DEFAULT_ALIGNMENT): Now an enum constant, not a macro.
3328         Use C89 offsetof rather than K&R trick.
3329         Use the maximum alignment of uintmax_t, long double, void *
3330         rather than the alignment of double.
3331         (union fooround): Use uintmax_t, long double, void * members
3332         rather than just long and double.
3334         [BZ #321]
3335         Fix portability bugs encountered when porting to the IBM iSeries,
3336         where pointers are 256 bits wide and no integers are that wide.
3337         * malloc/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
3338         All uses changed to:
3339         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
3340         (struct _obstack_chunk.temp): Change from int to a union
3341         of pointer and int.  All uses changed.
3343         [BZ #321]
3344         * malloc/obstack.c (print_and_abort) [!_LIBC]:
3345         Call fprintf (stderr, ...), not __fxprintf (NULL, ...).
3346         [_LIBC && USE_IN_LIBIO]: Don't include <wchar.h>; no longer needed.
3348 2006-01-10  Derek Price  <derek@ximbiot.com>
3349             Paul Eggert  <eggert@cs.ucla.edu>
3351         [BZ #1060]
3352         * posix/glob.c: Assume freestanding C89 compiler.  Simplify cruft that
3353         may be replaced with GNULIB modules.  Make no attempt to find 64-bit
3354         versions of file access functions directly when [!_LIBC].
3355         Don't define GLOB_* macros here.
3356         (DIRENT_MUST_BE, DIRENT_MIGHT_BE_SYMLINK, DIRENT_MIGHT_BE_DIR): New
3357         macros to abstract dirent->d_type access.
3358         (GETPW_R_SIZE_MAX, GET_LOGIN_NAME_MAX): New macros to abstract sysconf
3359         access.
3361 2006-01-10  Roland McGrath  <roland@redhat.com>
3363         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
3364         (PTR_MANGLE): Fix cast.
3366         * timezone/test-tz.c: Revert last change, updating to match
3367         tzdata2005r definition of "MST".
3369 2006-01-10  Ulrich Drepper  <drepper@redhat.com>
3371         * include/bits/setjmp.h: Don't include jmpbuf-offsets.h if _ISOMAC is
3372         defined.
3374 2006-01-10  Andreas Jaeger  <aj@suse.de>
3376         * include/time.h: Use normal comments.
3378 2006-01-10  Thomas Schwinge  <tschwinge@gnu.org>
3380         * hurd/sigunwind.c: Include <jmpbuf-unwind.h> instead of <setjmp.h>.
3381         * sysdeps/mach/hurd/jmp-unwind.c: Likewise.
3383 2006-01-10  Jakub Jelinek  <jakub@redhat.com>
3385         * wcsmbs/bits/wchar2.h (vswprintf): Call __vswprintf_alias rather than
3386         vswprintf recursively.
3388 2006-01-10  Ulrich Drepper  <drepper@redhat.com>
3390         * sysdeps/x86_64/bits/setjmp.h: Add back accidently removed #endif.
3392 2006-01-10  Roland McGrath  <roland@redhat.com>
3394         * include/bits/setjmp.h: New file.
3395         * setjmp/jmpbuf-offsets.h: New file.
3396         * sysdeps/alpha/bits/setjmp.h: Move JB_* macros ...
3397         * sysdeps/alpha/jmpbuf-offsets.h: ... here, new file.
3398         * sysdeps/hppa/bits/setjmp.h (JB_SP): Macro moved ...
3399         * sysdeps/hppa/jmpbuf-offsets.h: ... here, new file.
3400         * sysdeps/i386/bits/setjmp.h: Move JB_* macros ...
3401         * sysdeps/i386/jmpbuf-offsets.h: ... here, new file.
3402         * sysdeps/mips/bits/setjmp.h (JB_PC): Macro removed.
3403         * sysdeps/powerpc/bits/setjmp.h: Move JB_* macros ...
3404         * sysdeps/powerpc/jmpbuf-offsets.h: ... here, new file.
3405         * sysdeps/s390/bits/setjmp.h: Remove __JB_* macros.
3406         * sysdeps/sh/bits/setjmp.h (JB_SIZE): Macro moved ...
3407         * sysdeps/sh/jmpbuf-offsets.h: ... here, new file.
3408         * sysdeps/sparc/sparc32/bits/setjmp.h: Move JB_* macros ...
3409         * sysdeps/sparc/sparc32/jmpbuf-offsets.h: ... here, new file.
3410         * sysdeps/unix/sysv/linux/sparc/bits/setjmp.h: Remove JB_* macros.
3411         * sysdeps/x86_64/bits/setjmp.h: Move JB_* macros ...
3412         * sysdeps/x86_64/jmpbuf-offsets.h: ... here, new file.
3414         * sysdeps/powerpc/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3415         * sysdeps/powerpc/jmpbuf-unwind.h: ... here.
3416         * sysdeps/alpha/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3417         * sysdeps/alpha/jmpbuf-unwind.h: ... here.
3418         * sysdeps/sparc/sparc32/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3419         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: ... here.
3420         * sysdeps/i386/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3421         * sysdeps/i386/jmpbuf-unwind.h: ... here.
3422         * sysdeps/x86_64/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3423         * sysdeps/x86_64/jmpbuf-unwind.h: ... here.
3424         * sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3425         * sysdeps/sh/jmpbuf-unwind.h: ... here.
3426         * sysdeps/hppa/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3427         * sysdeps/hppa/jmpbuf-unwind.h: ... here, new file.
3428         * sysdeps/mips/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3429         * sysdeps/mips/jmpbuf-unwind.h: ... here.
3430         * sysdeps/m68k/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3431         * sysdeps/m68k/jmpbuf-unwind.h: ... here, new file.
3432         * sysdeps/s390/bits/setjmp.h (_JMPBUF_UNWINDS): Move macro ...
3433         * sysdeps/s390/jmpbuf-unwind.h: ... here.
3434         * sysdeps/unix/sysv/linux/ia64/bits/setjmp.h (_JMPBUF_UNWINDS):
3435         Move macro ...
3436         * sysdeps/ia64/jmpbuf-unwind.h: ... here.
3437         * sysdeps/unix/sysv/linux/sparc/bits/setjmp.h (_JMPBUF_UNWINDS):
3438         Move macro ...
3439         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: ... here.
3441         * sysdeps/alpha/jmpbuf-unwind.h: New file, moved from nptl/.
3442         * sysdeps/i386/jmpbuf-unwind.h: New file, moved from nptl/.
3443         * sysdeps/ia64/jmpbuf-unwind.h: New file, moved from nptl/.
3444         * sysdeps/mips/jmpbuf-unwind.h: New file, moved from nptl/.
3445         * sysdeps/powerpc/jmpbuf-unwind.h: New file, moved from nptl/.
3446         * sysdeps/s390/jmpbuf-unwind.h: New file, moved from nptl/.
3447         * sysdeps/sh/jmpbuf-unwind.h: New file, moved from nptl/.
3448         * sysdeps/sparc/sparc32/jmpbuf-unwind.h: New file, moved from nptl/.
3449         * sysdeps/sparc/sparc64/jmpbuf-unwind.h: New file, moved from nptl/.
3450         * sysdeps/x86_64/jmpbuf-unwind.h: New file, moved from nptl/.
3452         * sysdeps/linkmap.h: File removed.
3454 2006-01-07  Carlos O'Donell  <carlos@systemhalted.org>
3456         * sysdeps/hppa/elf/start.S (_start): Use PLABEL32 relocations
3457         by using LR and RR. Add %sr0 to iitlbp.
3459 2006-01-09  Roland McGrath  <roland@redhat.com>
3461         * timezone/private.h: Update from tzcode2005r.
3462         * timezone/tzfile.h: Likewise.
3463         * timezone/zdump.c: Likewise.
3464         * timezone/zic.c: Likewise.
3465         * timezone/africa: Update from tzdata2005r.
3466         * timezone/antarctica: Likewise.
3467         * timezone/asia: Likewise.
3468         * timezone/australasia: Likewise.
3469         * timezone/backward: Likewise.
3470         * timezone/europe: Likewise.
3471         * timezone/northamerica: Likewise.
3472         * timezone/southamerica: Likewise.
3473         * timezone/systemv: Likewise.
3475         * elf/Makefile ($(objpfx)reldep5.out): Fix dependency typo,
3476         so we depend on $(objpfx)reldepmod6.so as intended.
3478 2006-01-09  Ulrich Drepper  <drepper@redhat.com>
3480         [BZ #2126]
3481         * sysdeps/i386/i686/strtok.S: Store pointer to NUL byte if NULL is
3482         returned.
3483         * sysdeps/i386/strtok.S: Likewise.
3484         * sysdeps/x86_64/strtok.S: Likewise.
3485         * string/Makefile (tests): Add bug-strtok1.
3486         * string/bug-strtok1.c: New file.
3488         * elf/check-textrel.c (AB): Also check for writable and executable
3489         segments.
3491         * sysdeps/ieee754/dbl-64/e_exp2.c: Remove section attribute from
3492         const variables, gas produces garbage.
3493         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
3494         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
3495         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
3497 2006-01-09  Jakub Jelinek  <jakub@redhat.com>
3499         * sysdeps/unix/sysv/linux/sparc/bits/setjmp.h (_JMPBUF_UNWINDS): Add
3500         stack bias to mc_fp field.
3502         * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h
3503         (struct kernel_stat): Rename st_[amc]time fields to st_[amc]time_sec.
3504         (struct kernel_stat64): New type.
3505         (_HAVE___UNUSED1, _HAVE___UNUSED2, _HAVE_STAT___UNUSED1,
3506         _HAVE_STAT___UNUSED2, _HAVE_STAT___UNUSED3, _HAVE_STAT___UNUSED4,
3507         _HAVE_STAT___UNUSED5, _HAVE_STAT___PAD1, _HAVE_STAT___PAD2,
3508         _HAVE_STAT64___UNUSED1, _HAVE_STAT64___UNUSED2,
3509         _HAVE_STAT64___UNUSED3, _HAVE_STAT64___UNUSED4,
3510         _HAVE_STAT64___UNUSED5, _HAVE_STAT64___PAD1, _HAVE_STAT64___PAD2):
3511         Remove.
3512         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Use i386/xstat.c.
3513         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstatat.c:
3514         Use i386/fxstatat.c.
3515         * sysdeps/unix/sysv/linux/sparc/sparc64/lxstat.c: Use i386/lxstat.c.
3516         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: New file.
3517         * sysdeps/unix/sysv/linux/sparc/bits/stat.h (struct stat,
3518         struct stat64): Add nsec resolution for 64-bit code like already done
3519         for 32-bit code.
3520         * sysdeps/unix/sysv/linux/kernel-features.h
3521         (__ASSUME_TRUNCATE64_SYSCALL, __ASSUME_MMAP2_SYSCALL): Don't define
3522         for sparc64.
3523         (__ASSUME_STAT64_SYSCALL): Only define for sparc64 for >= 2.6.12
3524         kernels.
3526         * scripts/data/c++-types-sparc-linux-gnu.data: New file.
3527         * scripts/data/c++-types-sparc64-linux-gnu.data: New file.
3528         * scripts/data/c++-types-alpha-linux-gnu.data: Adjust.
3530 2006-01-08  Roland McGrath  <roland@redhat.com>
3532         [BZ #1535]
3533         * sysdeps/unix/get_child_max.c: New file.
3534         * posix/get_child_max.c: New file.
3535         * posix/Makefile (routines): Add it.
3536         * include/sys/sysinfo.h (__get_child_max): Declare it.
3537         * sysdeps/posix/sysconf.c (__sysconf) [! CHILD_MAX]: Use it.
3539         * sysdeps/unix/sysv/linux/futimes.c [!__NR_fcntl && __NR_fcntl64]: Use
3540         fcntl64 syscall instead.
3542         * stdio-common/tst-fmemopen2.c (do_test): Add a cast.
3543         * stdio-common/printf-parsemb.c (__find_specmb): Likewise.
3545         * sysdeps/unix/sysv/linux/alpha/adjtime.c: Use <> instead of "" in
3546         #include for kernel-features.h.
3547         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c: Likewise.
3548         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.c: Likewise.
3549         * sysdeps/unix/sysv/linux/alpha/getitimer.S: Likewise.
3550         * sysdeps/unix/sysv/linux/alpha/getrusage.S: Likewise.
3551         * sysdeps/unix/sysv/linux/alpha/gettimeofday.S: Likewise.
3552         * sysdeps/unix/sysv/linux/alpha/msgctl.c: Likewise.
3553         * sysdeps/unix/sysv/linux/alpha/select.S: Likewise.
3554         * sysdeps/unix/sysv/linux/alpha/semctl.c: Likewise.
3555         * sysdeps/unix/sysv/linux/alpha/setitimer.S: Likewise.
3556         * sysdeps/unix/sysv/linux/alpha/settimeofday.S: Likewise.
3557         * sysdeps/unix/sysv/linux/alpha/shmctl.c: Likewise.
3558         * sysdeps/unix/sysv/linux/alpha/utimes.S: Likewise.
3559         * sysdeps/unix/sysv/linux/alpha/wait4.S: Likewise.
3560         * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
3561         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
3562         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
3563         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
3564         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
3565         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
3566         * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
3567         * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
3568         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
3569         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
3570         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
3571         * sysdeps/unix/sysv/linux/ftruncate64.c: Likewise.
3572         * sysdeps/unix/sysv/linux/futimes.c: Likewise.
3573         * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
3574         * sysdeps/unix/sysv/linux/fxstat64.c: Likewise.
3575         * sysdeps/unix/sysv/linux/fxstatat64.c: Likewise.
3576         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
3577         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
3578         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
3579         * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
3580         * sysdeps/unix/sysv/linux/i386/fchownat.c: Likewise.
3581         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
3582         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
3583         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Likewise.
3584         * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
3585         * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
3586         * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
3587         * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
3588         * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
3589         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Likewise.
3590         * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
3591         * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
3592         * sysdeps/unix/sysv/linux/i386/lockf64.c: Likewise.
3593         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
3594         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
3595         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
3596         * sysdeps/unix/sysv/linux/i386/msgctl.c: Likewise.
3597         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Likewise.
3598         * sysdeps/unix/sysv/linux/i386/semctl.c: Likewise.
3599         * sysdeps/unix/sysv/linux/i386/setegid.c: Likewise.
3600         * sysdeps/unix/sysv/linux/i386/seteuid.c: Likewise.
3601         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
3602         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
3603         * sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
3604         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
3605         * sysdeps/unix/sysv/linux/i386/setregid.c: Likewise.
3606         * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
3607         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
3608         * sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
3609         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
3610         * sysdeps/unix/sysv/linux/i386/setuid.c: Likewise.
3611         * sysdeps/unix/sysv/linux/i386/shmctl.c: Likewise.
3612         * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
3613         * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
3614         * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
3615         * sysdeps/unix/sysv/linux/lxstat64.c: Likewise.
3616         * sysdeps/unix/sysv/linux/m68k/chown.c: Likewise.
3617         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Likewise.
3618         * sysdeps/unix/sysv/linux/mips/ftruncate64.c: Likewise.
3619         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
3620         * sysdeps/unix/sysv/linux/mips/truncate64.c: Likewise.
3621         * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
3622         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
3623         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
3624         * sysdeps/unix/sysv/linux/opendir.c: Likewise.
3625         * sysdeps/unix/sysv/linux/poll.c: Likewise.
3626         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
3627         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Likewise.
3628         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Likewise.
3629         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
3630         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
3631         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
3632         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
3633         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Likewise.
3634         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Likewise.
3635         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
3636         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
3637         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
3638         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
3639         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
3640         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
3641         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
3642         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
3643         * sysdeps/unix/sysv/linux/pread.c: Likewise.
3644         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
3645         * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
3646         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
3647         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
3648         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
3649         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
3650         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
3651         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
3652         * sysdeps/unix/sysv/linux/setegid.c: Likewise.
3653         * sysdeps/unix/sysv/linux/seteuid.c: Likewise.
3654         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
3655         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
3656         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
3657         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
3658         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
3659         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Likewise.
3660         * sysdeps/unix/sysv/linux/statvfs64.c: Likewise.
3661         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
3662         * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
3663         * sysdeps/unix/sysv/linux/truncate64.c: Likewise.
3664         * sysdeps/unix/sysv/linux/utimes.c: Likewise.
3665         * sysdeps/unix/sysv/linux/xstat64.c: Likewise.
3666         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
3668 2006-01-07  Roland McGrath  <roland@redhat.com>
3670         * po/libc.pot: Regenerated.
3672         * po/.cvsignore: List libc.pot.files, and not any .pot names.
3674         * manual/maint.texi (Porting): Don't mention Dist files.
3675         * sysdeps/alpha/soft-fp/Dist: File removed.
3676         * sysdeps/alpha/Dist: File removed.
3677         * sysdeps/i386/i686/Dist: File removed.
3678         * sysdeps/i386/soft-fp/Dist: File removed.
3679         * sysdeps/i386/Dist: File removed.
3680         * sysdeps/mips/soft-fp/Dist: File removed.
3681         * sysdeps/mips/mips64/soft-fp/Dist: File removed.
3682         * sysdeps/mips/mips64/Dist: File removed.
3683         * sysdeps/mips/Dist: File removed.
3684         * sysdeps/wordsize-32/Dist: File removed.
3685         * sysdeps/m68k/fpu/switch/Dist: File removed.
3686         * sysdeps/m68k/fpu/Dist: File removed.
3687         * sysdeps/powerpc/powerpc64/Dist: File removed.
3688         * sysdeps/powerpc/soft-fp/Dist: File removed.
3689         * sysdeps/powerpc/powerpc32/fpu/Dist: File removed.
3690         * sysdeps/powerpc/powerpc32/Dist: File removed.
3691         * sysdeps/powerpc/fpu/Dist: File removed.
3692         * sysdeps/powerpc/Dist: File removed.
3693         * sysdeps/unix/common/Dist: File removed.
3694         * sysdeps/unix/bsd/bsd4.4/Dist: File removed.
3695         * sysdeps/unix/bsd/Dist: File removed.
3696         * sysdeps/unix/sysv/linux/alpha/Dist: File removed.
3697         * sysdeps/unix/sysv/linux/i386/Dist: File removed.
3698         * sysdeps/unix/sysv/linux/mips/mips64/Dist: File removed.
3699         * sysdeps/unix/sysv/linux/mips/Dist: File removed.
3700         * sysdeps/unix/sysv/linux/m68k/Dist: File removed.
3701         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Dist: File removed.
3702         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Dist: File removed.
3703         * sysdeps/unix/sysv/linux/powerpc/aix/Dist: File removed.
3704         * sysdeps/unix/sysv/linux/powerpc/Dist: File removed.
3705         * sysdeps/unix/sysv/linux/sparc/sparc32/Dist: File removed.
3706         * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: File removed.
3707         * sysdeps/unix/sysv/linux/sparc/Dist: File removed.
3708         * sysdeps/unix/sysv/linux/ia64/Dist: File removed.
3709         * sysdeps/unix/sysv/linux/s390/s390-64/Dist: File removed.
3710         * sysdeps/unix/sysv/linux/s390/Dist: File removed.
3711         * sysdeps/unix/sysv/linux/s390/s390-32/Dist: File removed.
3712         * sysdeps/unix/sysv/linux/sh/Dist: File removed.
3713         * sysdeps/unix/sysv/linux/x86_64/Dist: File removed.
3714         * sysdeps/unix/sysv/linux/hppa/Dist: File removed.
3715         * sysdeps/unix/sysv/linux/Dist: File removed.
3716         * sysdeps/unix/sysv/Dist: File removed.
3717         * sysdeps/unix/Dist: File removed.
3718         * sysdeps/generic/Dist: File removed.
3719         * sysdeps/sparc/sparc32/soft-fp/Dist: File removed.
3720         * sysdeps/sparc/sparc32/sparcv9/Dist: File removed.
3721         * sysdeps/sparc/sparc32/sparcv8/Dist: File removed.
3722         * sysdeps/sparc/sparc32/Dist: File removed.
3723         * sysdeps/sparc/sparc64/soft-fp/Dist: File removed.
3724         * sysdeps/sparc/sparc64/Dist: File removed.
3725         * sysdeps/sparc/Dist: File removed.
3726         * sysdeps/gnu/Dist: File removed.
3727         * sysdeps/ia64/fpu/Dist: File removed.
3728         * sysdeps/ia64/Dist: File removed.
3729         * sysdeps/mach/mips/Dist: File removed.
3730         * sysdeps/mach/hurd/alpha/Dist: File removed.
3731         * sysdeps/mach/hurd/i386/Dist: File removed.
3732         * sysdeps/mach/hurd/mips/Dist: File removed.
3733         * sysdeps/mach/hurd/powerpc/Dist: File removed.
3734         * sysdeps/mach/hurd/Dist: File removed.
3735         * sysdeps/s390/s390-64/Dist: File removed.
3736         * sysdeps/s390/Dist: File removed.
3737         * sysdeps/s390/s390-32/Dist: File removed.
3738         * sysdeps/sh/Dist: File removed.
3739         * sysdeps/posix/Dist: File removed.
3740         * sysdeps/ieee754/dbl-64/Dist: File removed.
3741         * sysdeps/ieee754/ldbl-128/Dist: File removed.
3742         * sysdeps/ieee754/flt-32/Dist: File removed.
3743         * sysdeps/ieee754/Dist: File removed.
3744         * sysdeps/x86_64/soft-fp/Dist: File removed.
3745         * sysdeps/x86_64/Dist: File removed.
3746         * sysdeps/hppa/Dist: File removed.
3748         * Makerules (common-clean): Don't remove distinfo file.
3749         ($(objpfx)distinfo): Target removed.
3750         * manual/Makefile (mostlyclean): Don't remove distinfo file.
3751         (glibc-targets): Remove echo-distinfo.
3753         * scripts/list-sources.sh: New file.
3754         * Makefile (TAGS): New target.
3755         * po/Makefile (libc.pot, libc.pot.files): New targets.
3756         * Makeconfig (XGETTEXT): New variable.
3757         * Makerules ($(..)po/%.pot): Rule removed.
3758         (TAGS): Target removed.
3759         * Rules (subdir_TAGS): Target removed.
3760         * MakeTAGS: File removed.
3762         * Makefile (iconvdata/% localedata/% po/% manual/%): Depend on FORCE.
3763         * Makeconfig ($(all-Depend-files)): New targets with no-op commands.
3765 2004-08-03  Marco Gerards  <marco@gnu.org>
3767         [BZ #2119]
3768         * sysdeps/mach/hurd/bits/ioctls.h (SIOCGIFHWADDR): New macro.
3770 2006-01-07  Ulrich Drepper  <drepper@redhat.com>
3772         * stdio-common/tstdiomisc.c (F): Use NAN to get NaN value.
3774 2006-01-06  Ulrich Drepper  <drepper@redhat.com>
3776         * elf/tst-tls8.c (do_test): Use $ORIGIN in module names.
3778 2006-01-03  Steven Munroe  <sjmunroe@us.ibm.com>
3780         * sysdeps/generic/sysdep.h (cfi_same_value): Define macro.
3782         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve,
3783         _dl_profile_resolve): Add CFI directives for stack and LR save.
3784         Save LR in LRSAVE of previous frame per ABI.
3785         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Add CFI directives
3786         for LR save.
3787         * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
3788         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
3789         (__makecontext, __novec_makecontext): Likewise.
3790         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Add CFI directive
3791         for LR save to register.
3792         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
3793         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
3794         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
3795         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Likewise.
3796         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
3797         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
3798         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
3799         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
3800         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
3801         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
3802         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Add CFI directive
3803         for stack.
3804         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
3805         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Add CFI directives for stack
3806         and LR save.
3807         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
3808         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
3809         Likewise.
3810         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
3811         Likewise.
3812         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
3813         Likewise.
3814         * sysdeps/powerpc/powerpc32/fpu/s_lround.S:  Likewise.  Don't use
3815         negative stack addressing.
3817         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve,
3818         _dl_profile_resolve): Add CFI directives for stack and LR save.
3819         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Add CFI directives
3820         for stack.
3821         * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Add CFI
3822         directives for stack and LR save.
3823         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Add CFI
3824         directives for stack.
3825         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone): Add CFI
3826         directives for stack.
3827         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
3828         (__getcontext, __novec_getcontext): Add CFI directives for stack
3829         and LR save.
3830         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
3831         (__makecontext): Add CFI directives for stack and LR save.
3832         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
3833         (__setcontext, __novec_setcontext): Add CFI directives for stack
3834         and LR save.
3835         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
3836         (__swapcontext, __novec_swapcontext):  Add CFI directives for stack
3837         and LR save.
3839 2006-01-06  Jakub Jelinek  <jakub@redhat.com>
3841         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include tls.h.
3842         (SYSCALL_ERROR_HANDLER_ENTRY): Use %g4 instead of %g2, to avoid
3843         the need of .register directive for it.
3844         * configure.in (libc_cv_asm_cfi_directives): Use CFI rel offset
3845         2047 instead of 0 in the test on sparc64.
3847 2006-01-06  Ulrich Drepper  <drepper@redhat.com>
3849         * scripts/check-c++-types.sh: Add more pthread types.
3850         * scripts/data//c++-types-i386-linux-gnu.data: Adjust.
3851         * scripts/data//c++-types-ia64-linux-gnu.data: Likewise.
3852         * scripts/data//c++-types-powerpc-linux-gnu.data: Likewise.
3853         * scripts/data//c++-types-powerpc64-linux-gnu.data: Likewise.
3854         * scripts/data//c++-types-s390-linux-gnu.data: Likewise.
3855         * scripts/data//c++-types-s390x-linux-gnu.data: Likewise.
3856         * scripts/data//c++-types-x86_64-linux-gnu.data: Likewise.
3858         * sysdeps/unix/sysv/linux/ia64/sysdep.h (DO_INLINE_SYSCALL_NCS):
3859         Adjust for private->__private rename in tcbhead_t.
3861         [BZ #2114]
3862         * ncsd/aicache.c: Don't use sendfile for records on the stack.
3863         * nscd/grpcache.c: Likewise.
3864         * nscd/hstcache.c: Likewise.
3865         * nscd/initgrcache.c: Likewise.
3866         * nscd/pwdcache.c: Likewise.
3867         Patch by dmueller@suse.com.
3869         * sysdeps/unix/sysv/linux/alpha/bits/mman.h: Define MADV_REMOVE.
3870         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
3871         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
3872         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
3873         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
3874         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
3875         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
3876         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
3878 2006-01-06  Roland McGrath  <roland@redhat.com>
3880         * Makeconfig (+gnu-stabs): Remove ancient cruft.
3882         [BZ #2103]
3883         * sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_HWX25): Corrected macro
3884         name (was typo ARPHDR_HWX25).
3885         (ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP): New macros.
3886         (ARPHRD_VOID, ARPHRD_NONE): New macros.
3888         * sysdeps/wordsize-32/divdi3.c (__moddi3): Add a cast.
3890         * io/fcntl.h [__USE_ATFILE] (AT_EACCESS): New macro.
3891         * posix/unistd.h [__USE_ATFILE]: Declare faccessat.
3892         * io/faccessat.c: New file.
3893         * sysdeps/unix/sysv/linux/faccessat.c: New file.
3894         * io/Makefile (routines): Add faccessat.
3895         * io/Versions (libc: GLIBC_2.4): Likewise.
3896         * io/tst-faccessat.c: New file.
3897         * io/Makefile (tests): Add it.
3899         * scripts/check-local-headers.sh: Revert last change.
3901         * io/euidaccess.c: Add eaccess as an alias.
3902         * sysdeps/mach/hurd/euidaccess.c: Likewise.
3903         * sysdeps/posix/euidaccess.c: Likewise.
3904         * posix/unistd.h [__USE_GNU]: Declare eaccess.
3905         * io/Versions (libc: GLIBC_2.4): Add eaccess.
3907 2005-12-04  Joseph S. Myers  <joseph@codesourcery.com>
3909         * soft-fp/Makefile (gcc-single-routines): Add unordsf2,
3910         floatunsisf, floatundisf.
3911         (gcc-double-routines): Add unorddf2, floatunsidf, floatundidf.
3912         (gcc-quad-routines): Add unordtf2, floatunsitf, floatunditf.
3913         * soft-fp/op-common.h (_FP_CMP_UNORD): Define.
3914         * soft-fp/single.h (FP_CMP_UNORD_S): Define.
3915         * soft-fp/double.h (FP_CMP_UNORD_D): Define.
3916         * soft-fp/quad.h (FP_CMP_UNORD_Q): Define.
3917         * soft-fp/extended.h (FP_CMP_UNORD_E): Define.
3918         * soft-fp/unordsf2.c: New file.
3919         * soft-fp/unorddf2.c: New file.
3920         * soft-fp/unordtf2.c: New file.
3921         * soft-fp/floatunsisf.c: New file.
3922         * soft-fp/floatundisf.c: New file.
3923         * soft-fp/floatunsidf.c: New file.
3924         * soft-fp/floatundidf.c: New file.
3925         * soft-fp/floatunsitf.c: New file.
3926         * soft-fp/floatunditf.c: New file.
3928         * soft-fp/op-common.h (__FP_CLZ): Define using __builtin_clz,
3929         __builtin_clzl and __builtin_clzll.
3931 2006-01-05  Mike Frysinger  <vapier@gentoo.org>
3933         * include/alloca.h (extend_alloca): Fix typoed name 'extern_alloca'.
3935 2006-01-05  Jakub Jelinek  <jakub@redhat.com>
3937         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_WAITID_SYSCALL):
3938         Only define for 2.6.12+ on s390{,x}.
3939         (__ASSUME_GETDENTS32_D_TYPE): Only define for 2.6.8+ on most arches
3940         and only for 2.6.11+ on s390{,x}.
3942 2006-01-05  Ulrich Drepper  <drepper@redhat.com>
3944         * sysdeps/pthread/aio_misc.h [!DONT_USE_BOOTSTRAP_MAP]
3945         (struct waitlist): Don't add cond.
3946         * sysdeps/pthread/aio_notify.c [!DONT_USE_BOOTSTRAP_MAP]
3947         (__aio_notify): Use AIO_MISC_NOTIFY instead of pthread_cond_signal.
3948         * sysdeps/pthread/aio_suspend.c [!DONT_USE_BOOTSTRAP_MAP]: Don't
3949         use condvar, use AIO_MISC_WAIT.
3950         * sysdeps/pthread/lio_listio.c: Likewise.
3951         * rt/Makefile (tests): Add tst-aio9 and tst-aio10.
3952         * rt/tst-aio9.c: New file.
3953         * rt/tst-aio10.c: New file.
3955         * rt/tst-aio3.c: The thread is now supposed to be created.
3957 2006-01-05  Roland McGrath  <roland@redhat.com>
3959         * include/features.h: Grok _ATFILE_SOURCE and define __USE_ATFILE when
3960         it or _GNU_SOURCE is defined.
3961         * io/fcntl.h: Protect *at and AT_* with [__USE_ATFILE] instead of
3962         [__USE_GNU].
3963         * libio/stdio.h: Likewise.
3964         * posix/unistd.h: Likewise.
3965         * time/sys/time.h: Likewise.
3966         * io/sys/stat.h: Likewise.
3968         * io/sys/stat.h [__USE_GNU]: Declare fchmodat.
3969         * io/fchmodat.c: New file.
3970         * io/Makefile (routines): Add fchmodat.
3971         * io/Versions (libc: GLIBC_2.4): Likewise.
3972         * sysdeps/unix/sysv/linux/fchmodat.c: New file.
3973         * io/tst-fchmodat.c: New file.
3974         * io/Makefile (tests): Add it.
3976 2006-01-03  Steven Munroe  <sjmunroe@us.ibm.com>
3978         * sysdeps/powerpc/powerpc32/sysdep.h (ENTRY, EALIGN): Add cfi_startproc
3979         directive to ENTRY macros.
3980         (END): Add cfi_endproc directive to END macro.
3981         * sysdeps/powerpc/powerpc64/sysdep.h (ENTRY, EALIGN): Add cfi_startproc
3982         directive to ENTRY macros.
3983         (END, END_GEN_TB): Add cfi_endproc directive to END macros.
3984         * sysdeps/powerpc/powerpc32/dl-start.S: Remove ENTRY()s for
3985         _dl_start_user and _dl_main_dispatch.
3986         * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Use END macro.
3987         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Use Likewise.
3988         * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
3989         * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
3990         * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
3991         * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
3992         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S: Remove redundant
3993         cfi_startproc and cfi_endproc.
3994         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S: Likewise.
3996 2006-01-04  Ulrich Drepper  <drepper@redhat.com>
3998         * sysdeps/pthread/aio_misc.h (struct waitlist): Add result member.
3999         * sysdeps/pthread/aio_notify.c (__aio_notify): For synchronous waiters,
4000         failed I/O, and a result pointer, set value to -1.
4001         * sysdeps/pthread/aio_suspend.c: Initialize result pointer to NULL.
4002         * sysdeps/pthread/lio_listio.c: For LIO_WAIT, point result pointer in
4003         wait list to local variable result.  If nonzero afterwards, set errno
4004         to EIO.  For LIO_NOWAIT set result to NULL.
4005         * rt/Makefile (tests): Add tst-aio8.
4006         * rt/tst-aio8.c: New file.
4008 2005-12-25  Kristian Van Der Vliet  <vanders@liqwyd.com>
4010         * abi-tags (*-.*-syllable.*): New match, with ABI value 5.
4011         * elf/cache.c (print_entry): Match the Syllable ABI tag.
4013 2006-01-04  Ulrich Drepper  <drepper@redhat.com>
4015         * include/stdlib.h: Make even more C++ compliant.
4017 2006-01-04  Joseph S. Myers  <joseph@codesourcery.com>
4019         * sysdeps/unix/sysv/linux/mips/brk.c (__brk): Use
4020         __SYSCALL_CLOBBERS.
4022 2006-01-03  H.J. Lu  <hongjiu.lu@intel.com>
4024         * configure.in (HAVE_LIBAUDIT): Check
4025         audit_log_user_avc_message instead of audit_log_avc.
4027 2006-01-04  Joseph S. Myers  <joseph@codesourcery.com>
4029         * sysdeps/ieee754/bits/nan.h: Fix typo.
4031 2006-01-03  Jakub Jelinek  <jakub@redhat.com>
4033         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Include string.h.
4035         * sysdeps/sparc/sparc32/dl-machine.h (LD_SO_PRELOAD): Remove unused
4036         define.
4038         * sysdeps/sparc/sparc32/bits/atomic.h: Include stdint.h, add
4039         {,u}atomic*_t typedefs.
4040         (__sparc32_atomic_do_lock): Add __volatile and memory clobber.
4041         (__sparc32_atomic_do_unlock): Add memory barrier.
4042         (__sparc32_atomic_do_lock24, __sparc32_atomic_do_unlock24): Define.
4043         [!SHARED] (__v9_compare_and_exchange_val_32_acq): Define.
4044         (__v7_compare_and_exchange_val_acq, __v7_compare_and_exchange_bool_acq,
4045         __v7_exchange_acq, __v7_exchange_and_add, __v7_exchange_24_rel,
4046         __v7_compare_and_exchange_val_24_acq, __atomic_is_v9,
4047         atomic_exchange_acq, atomic_compare_and_exchange_val_24_acq,
4048         atomic_exchange_24_rel): Define.
4049         [SHARED] (atomic_exchange_and_add): Define.
4050         [!SHARED] (__ATOMIC_HWCAP_SPARC_V9): Define.
4051         [!SHARED] (_dl_hwcap): New weak decl.
4052         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_exchange_24_rel,
4053         atomic_compare_and_exchange_val_24_acq): Define.
4054         * sysdeps/sparc/sparc64/bits/atomic.h (atomic_exchange_24_rel,
4055         atomic_compare_and_exchange_val_24_acq): Define.
4057 2006-01-03  Ulrich Drepper  <drepper@redhat.com>
4059         lio_listio should emit an event for each individual request in
4060         addition to the global event.
4061         * sysdeps/pthread/lio_listio.c (lio_listio): Renamed to
4062         lio_listio_internal.  Remove mode parameter check.  Only set sigevent
4063         type to SIGEV_NONE if LIO_NO_INDIVIDUAL_EVENT is set.
4064         (__lio_listio_21): New function.  Compatiblity version which sets
4065         LIO_NO_INDIVIDUAL_EVENT before calling lio_listio_internal.
4066         (__lio_listio_item_notify): New function.
4067         * sysdeps/pthread/lio_listio64.c: Define __lio_listio_21 and
4068         __lio_listio_item_notify macros.
4069         * sysdeps/pthread/Versions: New file.
4070         * rt/tst-aio2.c: Adjust test for new semantics of lio_listio.
4071         * include/aio.h: Define LIO_NO_INDIVIDUAL_EVENT.
4072         * Versions.def: Add GLIBC_2.4 for librt.
4074         * rt/Versions: Whitespace fix.
4075         * sysdeps/pthread/aio_misc.c: Likewise.
4077         * nscd/connections.c (nscd_init): Remove if block which should
4078         have been removed as part of the -S option removal.
4080 2006-01-03  Andreas Jaeger  <aj@suse.de>
4082         * scripts/check-local-headers.sh: Allow $includedir/c++.
4084 2006-01-03  Jakub Jelinek  <jakub@redhat.com>
4086         * posix/unistd.h (ctermid): Remove __nonnull attribute.
4088 2006-01-02  Jakub Jelinek  <jakub@redhat.com>
4090         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PTR_MANGLE,
4091         PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Define.
4092         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h (PTR_MANGLE,
4093         PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Define.
4094         * sysdeps/unix/sysv/linux/sparc/bits/setjmp.h [__WORDSIZE == 64]
4095         (_JMPBUF_UNWINDS): Don't demangle uc_mcontext.mc_fp.
4096         * sysdeps/sparc/sparc32/setjmp.S (__sigsetjmp): Mangle %fp, %sp
4097         and %o7.
4098         * sysdeps/sparc/sparc32/__longjmp.S (__longjmp): Demangle %fp, %sp
4099         and %o7.
4101 2006-01-02  Jakub Jelinek  <jakub@redhat.com>
4103         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (PTR_MANGLE2):
4104         Define.
4105         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (PTR_MANGLE2):
4106         Likewise.
4107         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Demangle also %r15.
4108         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
4109         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Mangle also %r15.
4110         * sysdeps/s390/s390-32/elf/setjmp.S (__sigsetjmp): Likewise.
4111         * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp): Likewise.
4112         * sysdeps/s390/s390-64/elf/setjmp.S (__sigsetjmp): Likewise.
4114         * sysdeps/s390/bits/setjmp.h (__jmp_buf): Add __s390_jmp_buf
4115         struct tag to make C++ happy.
4117 2006-01-02  Ulrich Drepper  <drepper@redhat.com>
4119         * posix/Makefile ($(objpfx)annexc.out): Move -I.. to the end of
4120         the include list.
4122 2006-01-01  Ulrich Drepper  <drepper@redhat.com>
4124         * posix/getconf.c: Update copyright year.
4125         * nss/getent.c: Likewise.
4126         * iconv/iconvconfig.c: Likewise.
4127         * iconv/iconv_prog.c: Likewise.
4128         * elf/ldconfig.c: Likewise.
4129         * catgets/gencat.c: Likewise.
4130         * csu/version.c: Likewise.
4131         * elf/ldd.bash.in: Likewise.
4132         * elf/sprof.c (print_version): Likewise.
4133         * locale/programs/locale.c: Likewise.
4134         * locale/programs/localedef.c: Likewise.
4135         * nscd/nscd.c (print_version): Likewise.
4136         * debug/xtrace.sh: Likewise.
4137         * malloc/memusage.sh: Likewise.
4138         * malloc/mtrace.pl: Likewise.
4139         * debug/catchsegv.sh: Likewise.
4141 2005-12-31  Andreas Jaeger  <aj@suse.de>
4143         [BZ #1395]
4144         * manual/filesys.texi (Symbolic Links): Fix description of
4145         canonicalize_file_name based on patch by Oskar Liljeblad
4146         <oskar@osk.mine.nu>.
4148 2005-12-29  Andreas Jaeger  <aj@suse.de>
4150         * resolv/res_debug.c (latlon2ul): Use ISO C function definition.
4151         (precsize_aton): Likewise.
4152         (precsize_ntoa): Likewise.
4154         * resolv/gethnamaddr.c (_gethtbyname): Remove extra prototype.
4155         (gethostbyname2): Likewise.
4156         (gethostbyaddr): Likewise.
4157         (getanswer): Use ISO C function definition.
4159 2005-12-29  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4161         * sysdeps/sh/sysdep.h: Add cfi instrumentation to asm fragments.
4162         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
4163         * sysdeps/sh/_mcount.S: Add cfi instrumentation.
4164         * sysdeps/unix/sh/sysdep.S: Likewise.
4165         * sysdeps/unix/sysv/linux/sh/makecontext.S: Adjust cfi_startproc.
4166         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Remove now duplicate
4167         cfi_startproc and cfi_endproc.
4168         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
4169         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
4170         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
4171         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
4172         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
4173         * sysdeps/unix/sysv/linux/sh/socket.S: Likewise.
4174         * sysdeps/unix/sysv/linux/sh/sysdep.S: Add cfi_endproc.
4176 2005-12-30  Ulrich Drepper  <drepper@redhat.com>
4178         * sysdeps/powerpc/powerpc64/setjmp-common.S: Make sure pointer guard
4179         value doesn't survive in a registers when the function returns.
4180         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
4181         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
4183 2005-12-30  Jakub Jelinek  <jakub@redhat.com>
4185         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Define
4186         PTR_MANGLE2.
4187         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Define
4188         PTR_MANGLE2 and PTR_DEMANGLE2.
4189         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Use PTR_DEMANGLE2.
4190         * sysdeps/powerpc/powerpc64/setjmp-common.S: Use PTR_MANGLE2.
4191         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
4192         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
4194 2005-12-30  Ulrich Drepper  <drepper@redhat.com>
4196         * sysdeps/unix/sysv/linux/ia64/bits/setjmp.h (_JMPBUF_UNWINDS):
4197         Don't use _demangle parameter for now.
4199         [BZ #2080]
4200         * libio/iogetwline.c (_IO_getwline_info): Move return to correct
4201         location.
4203         * nscd/connections.c: Remove last remnants of -S option support.
4204         * nscd/nscd.c: Likewise.
4205         * nscd/nscd.h: Likewise.
4207 2005-12-30  Andreas Jaeger  <aj@suse.de>
4209         [BZ #1067]
4210         * sysdeps/unix/sysv/linux/mips/bits/socket.h: Fix struct msghdr
4211         for 64-bit mips kernel.
4213 2005-12-08  Steven Munroe  <sjmunroe@us.ibm.com>
4214             Tom Gall <tom_gall@vnet.ibm.com>
4216         * elf/rtld.c (dl_main): Initialize l_local_scope for sysinfo_map.
4217         * sysdeps/powerpc/elf/libc-start.c: Move this...
4218         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: ...to here.
4219         * sysdeps/powerpc/powerpc32/dl-start.S: Add _dl_main_dispatch label.
4220         * sysdeps/powerpc/powerpc32/hp-timing.h: New file.
4221         * sysdeps/unix/sysv/linux/powerpc/Versions: New file.
4222         * sysdeps/unix/sysv/linux/clock_getres.c: If HAVE_CLOCK_GETRES_VSYSCALL
4223         is not defined, redefine INTERNAL_VSYSCALL and INLINE_VSYSCALL to
4224         INTERNAL_SYSCALL and INLINE_SYSCALL respectively.  Otherwise include
4225         <bits/libc-vdso.h>.  Use INLINE_VSYSCALL and INTERNAL_SYSCALL instead
4226         of the normal versions throughout the code.
4227         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise if
4228         HAVE_CLOCK_GETTIME_VSYSCALL is defined.
4229         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: New file.
4230         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: New file.
4231         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: New file.
4232         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use vDSO.
4233         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: New file.
4234         * sysdeps/unix/sysv/linux/powerpc/Makefile: Add dl-vdso to routines.
4235         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Define
4236         INLINE_VSYSCALL, INTERNAL_VSYSCALL, INTERNAL_SYSCALL_NCS,
4237         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK, HAVE_CLOCK_GETRES_VSYSCALL,
4238         and HAVE_CLOCK_GETTIME_VSYSCALL.
4239         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
4241 2005-12-29  Ulrich Drepper  <drepper@redhat.com>
4243         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h [ASSEMBLER]:
4244         Define PTR_DEMANGLE2.
4245         * sysdeps/powerpc/powerpc32/setjmp-common.S [PTR_MANGLE]: Also
4246         mangle r1.
4247         * sysdeps/powerpc/powerpc32/__longjmp-common.S [PTR_DEMANGLE]: Also
4248         demangle r1.
4249         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [PTR_MANGLE]: Mangle
4250         r0 and r1.
4251         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [PTR_DEMANGLE]:
4252         Demangle r0 and r1.
4254         * sysdeps/powerpc/powerpc64/setjmp-common.S [PTR_MANGLE]: Also
4255         mangle r1.
4256         * sysdeps/powerpc/powerpc64/__longjmp-common.S [PTR_DEMANGLE]: Also
4257         demangle  r1.
4259 2005-12-26  Steven Munroe  <sjmunroe@us.ibm.com>
4261         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S:
4262         Move common function to...
4263         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
4264         New file.
4265         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S:
4266         Move common function to...
4267         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
4268         New file.
4269         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S:
4270         Move common function to...
4271         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
4272         New file.
4273         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.sym
4274         (_FRAME_BACKCHAIN, _FRAME_LR_SAVE, _FRAME_PARM_SAVE1,
4275         _FRAME_PARM_SAVE2, _FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4):
4276         Remove unrelated stack frame defines.
4278 2005-12-29  Ulrich Drepper  <drepper@redhat.com>
4280         * stdio-common/tstdiomisc.c [FLT_EVAL_METHOD!=2] (dbl_max):
4281         Defining as macro as before the last change.
4283         * sysdeps/unix/sysv/linux/sigaction.c: If WRAPPER_INCLUDE is defined,
4284         include the named file.
4285         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
4286         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
4287         * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
4288         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
4289         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
4290         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
4292 2005-12-29  Roland McGrath  <roland@frob.com>
4294         * sysdeps/mach/hurd/errno.c: New file.
4296         * sysdeps/mach/hurd/ioctl.c (__ioctl): Use a union to avoid a cast.
4298         * sysdeps/posix/libc_fatal.c (__libc_message): Add a const, a cast.
4300         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Fix cast.
4301         * hurd/report-wait.c (_S_msg_report_wait): Likewise.
4303         * include/sys/xattr.h: New file.
4305 2005-12-28  Roland McGrath  <roland@redhat.com>
4307         * hurd/sigunwind.c: Include <stdint.h>.
4308         * sysdeps/mach/hurd/jmp-unwind.c: Likewise.
4310 2005-12-28  Ulrich Drepper  <drepper@redhat.com>
4312         * nscd/selinux.c (log_callback): Use audit_log_user_avc_message.
4313         Don't do anything if audit_fd is invalid.
4314         (audit_init): Don't complain if kernel support is missing.
4315         Patch by Steve Grubb <sgrubb@redhat.com>.
4317         * sysdeps/i386/__longjmp.S [PTR_DEMANGLE]: Also demangle stack
4318         pointer.  Add CFI.
4319         * sysdeps/i386/bsd-_setjmp.S [PTR_MANGLE]: Also mangle stack pointer.
4320         * sysdeps/i386/bsd-setjmp.S: Likewise.
4321         * sysdeps/i386/setjmp.S: Likewise.
4323         * sysdeps/x86_64/__longjmp.S: No need to make sure return value is
4324         != 0, the caller did that.
4326 2005-12-27  Roland McGrath  <roland@redhat.com>
4328         * sysdeps/x86_64/__longjmp.S: Don't confuse unwinder by loading
4329         mangled values in %rbp and %rsp registers and by wrong cfi.
4331         * config.make.in (c++-sysincludes): New substituted variable.
4332         * configure.in (CXX_SYSINCLUDES): New substituted variable.
4333         * configure: Regenerated.
4334         * Makeconfig (CXXFLAGS): Prepend $(c++-sysincludes) here.
4336         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
4337         (PTR_MANGLE): Fix cast.
4339         * sysdeps/alpha/bits/setjmp.h (_JMPBUF_UNWINDS): Take third argument
4340         DEMANGLE, and pass SP value through it.
4341         * sysdeps/hppa/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4342         * sysdeps/i386/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4343         * sysdeps/m68k/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4344         * sysdeps/mips/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4345         * sysdeps/powerpc/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4346         * sysdeps/s390/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4347         * sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4348         * sysdeps/sparc/sparc32/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4349         * sysdeps/unix/sysv/linux/ia64/bits/setjmp.h: Likewise.
4350         * sysdeps/unix/sysv/linux/sparc/bits/setjmp.h: Likewise.
4351         * sysdeps/x86_64/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
4352         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Pass inline
4353         demangler function to _JMPBUF_UNWINDS.
4354         * sysdeps/mach/hurd/jmp-unwind.c (demangle_ptr): New function.
4355         (_longjmp_unwind): Pass it to _JMPBUF_UNWINDS.
4357         * posix/tst-execle1.c (do_test): Add a const.
4358         * posix/tst-execle2.c (do_test): Likewise.
4360         * posix/transbug.c (run_test): Add some casts.
4361         * posix/bug-regex22.c (main): Likewise.
4362         * posix/bug-regex5.c (main): Likewise.
4363         * wcsmbs/tst-mbsrtowcs.c (main): Likewise.
4364         * string/test-strspn.c (do_test, do_random_tests): Likewise.
4365         * string/test-strrchr.c (do_test, do_random_tests): Likewise.
4366         * string/test-strlen.c (do_random_tests): Likewise.
4367         * string/test-strpbrk.c (do_test, do_random_tests): Likewise.
4368         * string/test-strcmp.c (do_random_tests): Likewise.
4369         * string/test-strchr.c (do_test, do_random_tests): Likewise.
4370         * string/test-strcat.c (do_test, do_random_tests): Likewise.
4371         * string/test-strncpy.c (do_random_tests): Likewise.
4372         * string/test-strcpy.c (do_test, do_random_tests): Likewise.
4373         * string/test-memccpy.c (do_test): Likewise.
4374         * string/test-memmove.c (do_test, do_random_tests): Likewise.
4375         * string/test-memcpy.c (do_test, do_random_tests): Likewise.
4376         * string/test-memcmp.c (do_test, do_random_tests): Likewise.
4377         * string/test-memchr.c (do_test, do_random_tests): Likewise.
4378         * dlfcn/bug-atexit1.c (do_test): Fix up prototype in cast.
4379         * stdio-common/tst-fgets.c (do_test): Add a cast.
4380         * iconvdata/bug-iconv4.c (xiconv): Add a cast.
4382         * locale/programs/simple-hash.c (insert_entry_2): Remove useless casts.
4384         * resolv/herror.c (herror): Remove unused extern decl.
4386         * libio/obprintf.c: Include "strfile.h".
4388         * elf/order2mod2.c (init): Cast ignored value to void.
4390 2005-12-27  Ulrich Drepper  <drepper@redhat.com>
4392         * elf/tst-tls13.c (do_test): Avoid using the library path when
4393         looking for tst-tlsmod13a.so.
4395         * stdio-common/tstdiomisc.c: If FLT_EVAL_METHOD is 2, use long
4396         double math to generate NaN results.
4398         * sysdeps/unix/sysv/linux/sparc/bits/errno.h: Define EOWNERDEAD
4399         and ENOTRECOVERABLE if not already defined.
4400         * sysdeps/unix/sysv/linux/alpha/bits/errno.h: Likewise.
4402 2005-12-27  Jakub Jelinek  <jakub@redhat.com>
4404         * sysdeps/unix/sysv/linux/alpha/Versions: Add new errlist-compat
4405         entry for up to 138 errnos.
4407 2005-12-27  Jakub Jelinek  <jakub@redhat.com>
4409         * iconv/gconv_trans.c (__gconv_transliterate): Demangle step __fct
4410         before calling it.
4412 2005-12-27  David S. Miller  <davem@sunset.davemloft.net>
4414         * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist-compat
4415         entry for up to 134 errnos.
4417 2005-12-26  Ulrich Drepper  <drepper@redhat.com>
4419         * Versions.def: Add GLIBC_2.4 for libpthread.
4421 2005-12-25  Ulrich Drepper  <drepper@redhat.com>
4423         * stdlib/Makefile ($(objpfx)isomac.out): Move -I.. to the end so
4424         that $(..)/bits is not found early.
4426 2005-12-24  Ulrich Drepper  <drepper@redhat.com>
4428         * manual/errno.texi: Add new Linux errno codes.
4429         * sysdeps/unix/sysv/linux/Versions: Add new errlist-compat entry
4430         for up to 132 errnos.
4431         * sysdeps/unix/sysv/linux/bits/errno.h: Define EOWNERDEAD and
4432         ENOTRECOVERABLE if not already defined.
4434 2005-12-23  Ulrich Drepper  <drepper@redhat.com>
4436         [BZ #1566]
4437         * sysdeps/i386/i586/memusage.h: New file.
4438         * sysdeps/i386/memusage.h: Don't define GETTIME.
4440 2005-12-22  Ulrich Drepper  <drepper@redhat.com>
4442         [BZ #1499]
4443         * misc/syslog.c (SyslogAddr): Use sockaddr_un instead of sockaddr.
4444         (openlog_internal): Adjust for this change.
4446         * Makeconfig: Define CXXFLAGS.  Split out warnings from +gccwarn which
4447         are not understood by the C++ compiler.
4448         * Makerules: Add rules to build C++ code for test cases.
4449         * include/stdlib.h: Protect for inclusion in C++ code.
4450         * include/time.h: Likewise.
4452 2005-12-22  Roland McGrath  <roland@redhat.com>
4454         * Makerules [gen-as-const-headers] (tests): Add one test per .sym
4455         file, not just one.
4456         ($(objpfx)test-as-const.c): Target replaced with ...
4457         ($(objpfx)test-as-const-%.c): ... this pattern rule.
4458         (generated): Add those files.
4460 2005-12-22  Ulrich Drepper  <drepper@redhat.com>
4462         * test-skeleton.c (timeout_handler): Rewrite ts initialization for
4463         C++ compatibility.
4465         * sysdeps/x86_64/__longjmp.S: Also protect SP and BP.
4466         * sysdeps/x86_64/setjmp.S: Likewise.
4468 2005-12-21  Roland McGrath  <roland@redhat.com>
4470         * sysdeps/unix/sysv/linux/i386/ucontext_i.h: File removed.
4471         * sysdeps/unix/sysv/linux/i386/ucontext_i.sym: New file.
4472         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h: File removed.
4473         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.sym: New file.
4474         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h: File removed.
4475         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym: New file.
4476         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h: File removed.
4477         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.h: File removed.
4478         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: New file.
4479         * sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h: File removed.
4480         * sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.sym: New file.
4481         * sysdeps/unix/sysv/linux/sh/sh4/ucontext_i.h: File removed.
4482         * sysdeps/unix/sysv/linux/sh/sh4/ucontext_i.sym: New file.
4483         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: File removed.
4484         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: New file.
4485         * sysdeps/unix/sysv/linux/i386/Makefile [$(subdir) = stdlib]:
4486         (gen-as-const-headers): Add it.
4487         * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
4488         * sysdeps/unix/sysv/linux/sh/Makefile: Likewise.
4489         * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
4490         * sysdeps/unix/sysv/linux/x86_64/Makefile: Likewise.
4491         * stdlib/tst-ucontext-off.c: File removed.
4492         * stdlib/Makefile (tests): Remove it.
4494         * scripts/gen-as-const.awk: Support generating a test program.
4495         * Makerules [gen-as-const-headers] (tests): Add test-as-const.
4496         [gen-as-const-headers] ($(objpfx)test-as-const.c): New target.
4498         * sysdeps/generic/bits: Subdirectory and all files moved to ...
4499         * bits: ... here, new subdirectory.
4500         * Makeconfig (+includes): Reordered includes to put build and sysdeps
4501         dirs first after $(..)include, $(sysincludes) last.
4503         [BZ #2066]
4504         * intl/l10nflist.c (_nl_make_l10nflist): Free ABS_FILENAME when later
4505         malloc fails.
4507 2005-12-21  Jakub Jelinek  <jakub@redhat.com>
4509         * sysdeps/powerpc/fpu/libm-test-ulps: Update for GCC 4.1 prerelease.
4511 2005-12-21  Roland McGrath  <roland@redhat.com>
4513         * sysdeps/mach/hurd/ifreq.c: Add missing #includes.
4515         * elf/cache.c: Use <> rather than "" #includes.
4516         * elf/chroot_canon.c: Likewise.
4517         * elf/dl-lookup.c: Likewise.
4518         * elf/ldconfig.c: Likewise.
4519         * elf/readlib.c: Likewise.
4520         * elf/rtld.c: Likewise.
4521         * gmon/mcount.c: Likewise.
4522         * hurd/hurdfault.c: Likewise.
4523         * hurd/hurdsig.c: Likewise.
4524         * hurd/report-wait.c: Likewise.
4525         * hurd/sigunwind.c: Likewise.
4526         * mach/setup-thread.c: Likewise.
4527         * rt/aio_read64.c: Likewise.
4528         * rt/aio_sigqueue.c: Likewise.
4529         * rt/aio_write64.c: Likewise.
4530         * soft-fp/soft-fp.h: Likewise.
4531         * stdio-common/tmpfile64.c: Likewise.
4532         * sysdeps/mach/hurd/fork.c: Likewise.
4533         * sysdeps/mach/hurd/hppa/trampoline.c: Likewise.
4534         * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
4535         * sysdeps/mach/hurd/mips/trampoline.c: Likewise.
4536         * sysdeps/mach/hurd/powerpc/trampoline.c: Likewise.
4537         * sysdeps/posix/sprofil.c: Likewise.
4538         * sysdeps/pthread/aio_cancel.c: Likewise.
4539         * sysdeps/pthread/aio_fsync.c: Likewise.
4540         * sysdeps/pthread/aio_read64.c: Likewise.
4541         * sysdeps/pthread/aio_read.c: Likewise.
4542         * sysdeps/pthread/aio_suspend.c: Likewise.
4543         * sysdeps/pthread/aio_write64.c: Likewise.
4544         * sysdeps/pthread/aio_write.c: Likewise.
4545         * sysdeps/pthread/lio_listio64.c: Likewise.
4546         * sysdeps/pthread/lio_listio.c: Likewise.
4547         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
4548         * sysdeps/unix/sysv/tcflow.c: Likewise.
4550         * sysdeps/generic/unwind-dw2.c (extract_cie_info): Add a cast.
4552         * elf/dl-error.c (_dl_signal_error): Use .__jmpbuf in __longjmp call.
4554         * csu/dso_handle.c (__dso_handle): Add const to pointer type too.
4556 2005-12-21  Ulrich Drepper  <drepper@redhat.com>
4558         * iconv/gconv_conf.c: Initialize empty_path_elem.
4560         * sysdeps/ieee754/dbl-64/halfulp.c: Mark tab54 as static and const.
4561         * sysdeps/i386/fpu/e_expl.c: Mark c0 and c1 as const.
4562         * sysdeps/ieee754/flt-32/s_expm1f.c: Make sure huge and tiny end
4563         up in .rodata.
4564         * sysdeps/ieee754/flt-32/e_exp2f.c: Make sure TWO127 and TWOM100
4565         end up in .rodata.
4566         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
4567         * sysdeps/ieee754/dbl-64/e_exp2.c: Make sure TWO1023 and TWOM1000
4568         end up in .rodata.
4570 2005-12-21  Thorsten Kukuk  <kukuk@suse.de>
4572         * elf/readlib.c: Fix include of readelflib.c.
4574 2005-12-21  Ulrich Drepper  <drepper@redhat.com>
4576         [BZ #1962]
4577         * io/fts.c (fts_open): Change type of len to size_t.
4578         (fts_build): Remove cast in call to fts_alloc.
4579         (fts_alloc): Change third parameter's type to size_t.
4581         [BZ #1960]
4582         * io/fts.c (fts_open): Avoid function call in MAX macro use.
4584 2005-12-20  Ulrich Drepper  <drepper@redhat.com>
4586         * locale/xlocale.c (_nl_C_locobj): Mark as const.
4587         * include/locale.h: Define _nl_C_locobj_ptr.
4588         * iconv/gconv_charset.h: Use _nl_C_locobj_ptr instead of using pointer
4589         to _nl_C_locobj because we also need a cast.
4590         * iconv/gconv_conf.c: Likewise.
4591         * iconv/gconv_int.h: Likewise.
4592         * iconv/gconv_open.c: Likewise.
4593         * locale/duplocale.c: Likewise.
4594         * locale/freelocale.c: Likewise.
4595         * locale/newlocale.c: Likewise.
4596         * misc/syslog.c: Likewise.
4597         * stdlib/strtod_l.c: Likewise.
4598         * sysdeps/unix/sysv/linux/getloadavg.c: Likewise.
4600         * csu/dso_handle.c (__dso_handle): Mark as const.
4602         * intl/plural-exp.c (GERMANIC_PLURAL): Mark as const.
4603         * intl/plural-exp.h: Adjust declaration of
4604         __gettext_germanic_plural.
4606         * resolv/herror.c (h_errlist): Mark as const.
4607         (h_nerr): Likewise.
4609 2005-12-15  Thomas Schwinge  <tschwinge@gnu.org>
4611         [BZ #2061]
4612         * sysdeps/mach/hurd/xmknod.c (__xmknod): Handle S_IFREG.
4614 2005-12-20  Roland McGrath  <roland@redhat.com>
4616         * sysdeps/unix/sysv/linux/ifreq.h: File removed.
4617         * sysdeps/unix/sysv/linux/ifreq.c: #include "kernel-features.h" here.
4619         * sysdeps/mach/hurd/ifreq.h: File removed.
4620         (__ifreq): Function moved to ...
4621         * sysdeps/mach/hurd/ifreq.c: ... here, new file.
4623 2005-12-20  Ulrich Drepper  <drepper@redhat.com>
4625         * sunrpc/clnt_unix.c (unix_ops): Mark as const.
4626         * sunrpc/auth_des.c (authdes_ops): Likewise.
4627         * sunrpc/svc_raw.c (server_ops): Likewise.
4628         * sunrpc/clnt_udp.c (udp_ops): Likewise.
4629         * sunrpc/clnt_tcp.c (tcp_ops): Likewise.
4630         * sunrpc/clnt_raw.c (client_ops): Likewise.
4631         * sunrpc/auth_unix.c (auth_unix_ops): Likewise.
4632         * sunrpc/auth_none.c (ops): Likewise.
4634         * nss/nsswitch.c (databases): Mark as const.  Change name field
4635         into array.
4636         * nss/databases.def: Add warning.
4638         * resolv/res_hconf.c (arg_service_list): Reduce size of svcs and
4639         mark const.
4640         (cmd): Mark as const.
4641         (parse_line): Mark c as pointer to const.
4643         * misc/getusershell.c (initshells): Remove unnecessary tests.
4644         (endusershell): Likewise.
4645         (okshells): Mark as const.
4647         * sysdeps/posix/gai_strerror.c: Complete rewrite. Avoid relocations.
4648         * sysdeps/posix/gai_strerror-strs.h: New file.
4649         * sysdeps/posix/Dist: New file.
4651         * sysdeps/posix/getaddrinfo.c (gaih): Mark as const.
4652         * locale/loadlocale.c (_nl_value_types): Likewise.
4653         * iconv/gconv_conf.c (builtin_aliases): Likewise.
4654         * iconv/gconv_open.c (internal_trans_names): Likewise.
4656 2005-12-19  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4658         * sysdeps/unix/sysv/linux/sh/sysdep.h: Include tls.h.
4659         (PTR_MANGLE, PTR_DEMANGLE): Define.
4660         (SYSCALL_ERROR_HANDLER): Fix typo.
4661         * sysdeps/sh/sh4/__longjmp.S: Use PTR_DEMANGLE if defined.
4662         * sysdeps/sh/sh3/__longjmp.S: Likewise.
4663         * sysdeps/sh/sh4/setjmp.S: Use PTR_MANGLE if defined.
4664         * sysdeps/sh/sh3/setjmp.S: Likewise.
4666 2005-12-20  Jakub Jelinek  <jakub@redhat.com>
4668         * sysdeps/ia64/fpu/libm-test-ulps: Update for GCC 4.1 prerelease.
4670         * sysdeps/unix/sysv/linux/time.c: If __NR_time is not defined,
4671         use sysdeps/unix/time.c implementation.
4673 2005-12-19  Ulrich Drepper  <drepper@redhat.com>
4675         [BZ #1955]
4676         * timezone/zic.c (tofile;): Fix typo in symlink creation.
4677         Patch by Phil Estes <pestes@us.ibm.com>.
4679         [BZ #1952]
4680         * sysdeps/unix/sysv/linux/time.c: New file.
4681         * sysdeps/unix/sysv/linux/i386/syscalls.list: Remove time entry.
4683 2005-12-15  Thomas Schwinge  <tschwinge@gnu.org>
4685         * io/xmknodat.c: Include <stddef.h>.
4686         * misc/futimesat.c: Remove weak_alias and correct stub_warning.
4687         * stdio-common/renameat.c (renameat): Fix typo.
4689 2005-12-16  Thorsten Kukuk  <kukuk@suse.de>
4691         [BZ #1978]
4692         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
4693         Map more filesystem types to a string.
4694         * sysdeps/unix/sysv/linux/linux_fsinfo.h: Add SYSFS_MAGIC.
4696 2005-12-19  Jakub Jelinek  <jakub@redhat.com>
4698         * locale/Makefile (programs/%-kw.h): Run $(GPERF) inside of the
4699         programs subdirectory.
4701         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use
4702         PTR_DEMANGLE for PC if defined.
4703         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp):
4704         Likewise.
4705         * sysdeps/unix/sysv/linux/ia64/__longjmp.S (__longjmp): Likewise.
4706         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Xor %r14 with
4707         THREAD_GET_POINTER_GUARD () if PTR_DEMANGLE is defined.
4708         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
4709         * sysdeps/powerpc/powerpc32/setjmp-common.S (__sigsetjmp): Use
4710         PTR_MANGLE for PC if defined.
4711         * sysdeps/powerpc/powerpc64/setjmp-common.S (__sigsetjmp): Likewise.
4712         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
4713         Avoid call to __sigjmp_save if IS_IN_rtld.
4714         * sysdeps/s390/s390-32/elf/setjmp.S (__sigsetjmp): Likewise.
4715         * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp): Likewise.
4716         * sysdeps/s390/s390-64/elf/setjmp.S (__sigsetjmp): Likewise.
4717         * sysdeps/unix/sysv/linux/ia64/setjmp.S (__sigsetjmp): Likewise.
4718         * sysdeps/unix/sysv/linux/ia64/sysdep.h (PTR_MANGLE, PTR_DEMANGLE):
4719         Define.
4720         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Include tls.h.
4721         (PTR_MANGLE, PTR_DEMANGLE): Define.
4722         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Include tls.h
4723         (PTR_MANGLE, PTR_DEMANGLE): Define.
4724         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Include tls.h.
4725         (PTR_MANGLE, PTR_DEMANGLE): Define.
4726         (SYSCALL_ERROR_HANDLER): Add missing semicolons.
4727         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Include tls.h.
4728         (PTR_MANGLE, PTR_DEMANGLE): Define.
4729         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S (__socket): Add
4730         SYSCALL_ERROR_HANDLER.
4732 2005-12-19  Ulrich Drepper  <drepper@redhat.com>
4734         * sysdeps/unix/sysv/linux/sparc/sparc32/socket.S: Handle NO_WEAK_ALIAS.
4735         * sysdeps/unix/sysv/linux/sparc/sparc64/socket.S: Likewise.
4736         Patch by Clint Adams.
4738 2005-12-16  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4740         * sysdeps/unix/sysv/linux/s390/sys/user.h: Copy struct user and
4741         dependent definitions from the kernel header to sys/user.h and
4742         remove the #include of asm/user.h.
4744 2005-12-19  Ulrich Drepper  <drepper@redhat.com>
4746         * sysdeps/gnu/Makefile: Make sure the correct errlist.c file is
4747         used when generating errlist-compat.c.
4749 2005-12-18  Ulrich Drepper  <drepper@redhat.com>
4751         * iconv/gconv.c: Demangle pointers before use if necessary.
4752         * iconv/gconv_cache.c: Likewise.
4753         * iconv/skeleton.c: Likewise.
4754         * libio/iofwide.c: Likewise.
4755         * wcsmbs/btowc.c: Likewise.
4756         * wcsmbs/mbrtowc.c: Likewise.
4757         * wcsmbs/mbsnrtowcs.c: Likewise.
4758         * wcsmbs/mbsrtowcs_l.c: Likewise.
4759         * wcsmbs/wcrtomb.c: Likewise.
4760         * wcsmbs/wcsnrtombs.c: Likewise.
4761         * wcsmbs/wcsrtombs.c: Likewise.
4762         * wcsmbs/wctob.c: Likewise.
4763         * iconv_gconv_db.c: Likewise.  After init functions returns mangle
4764         btowc pointer if necessary.
4765         * iconv/gconv_dl.c: Mangle function pointers retrieved from dlsym.
4767         * iconv/gconv_builtin.c (builtin_map): Change type of size
4768         information fields to int8_t.
4770         * libio/iofwide.c (__libio_codecvt): Mark as const.
4771         (__libio_translit): Likewise.
4772         * libio/libioP.h (__libio_codecvt): Adjust declaraction.
4774         * wcsmbs/wcsmbsload.c (to_wc): Mark as const.
4775         (to_mb): Likewise.
4777 2005-12-18  Richard Henderson  <rth@redhat.com>
4779         * sysdeps/alpha/libc-tls.c: Fix directory on include of base file.
4781 2005-12-18  Ulrich Drepper  <drepper@redhat.com>
4783         * iconv/gconv_builtin.c: Mark map with attribute_relro.
4785         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Define C
4786         version for inside ld.so.
4788         * elf/rtld.c (dl_main): Don't use hp timing code unless it's available.
4790         * sysdeps/powerpc/powerpc32/setjmp-common.S [IS_IN_rtld]: Avoid
4791         call to __sigjmp_save.
4792         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
4794         * stdlib/cxa_atexit.c: Use PTR_MANGLE on function pointer.  Fill in
4795         flavor field last and protect with memory barrier.
4796         * stdlib/on_exit.c: Likewise.
4797         * stdlib/cxa_finalize.c: Use PTR_DEMANGLE on function pointer before
4798         using it.
4799         * stdlib/exit.c: Likewise.
4801         * sysdeps/unix/sysv/linux/i386/sysdep.h: Define PTR_MANGLE and
4802         PTR_DEMANGLE for C code in libc.
4803         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
4805 2005-12-17  Ulrich Drepper  <drepper@redhat.com>
4807         * elf/Versions [GLIBC_PRIVATE]: Export __pointer_chk_guard if defined.
4808         * elf/rtld.c: Define __pointer_chk_guard_local and if necessary
4809         __pointer_chk_guard.
4810         (_rtld_global_ro): Initialize _dl_pointer_guard.
4811         (dl_main): Initialize __pointer_chk_guard_local and either
4812         __pointer_chk_guard or TLS value if necessary.
4813         (process_envvars): Recognize and handle LD_POINTER_GUARD.
4814         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_pointer_guard.
4815         * sysdeps/i386/__longjmp.S: Use PTR_DEMANGLE for PC if defined.
4816         * sysdeps/x86_64/__longjmp.S: Likewise.
4817         * sysdeps/i386/bsd-_setjmp.S: Use PTR_MANGLE for PC if defined.
4818         * sysdeps/i386/bsd-_setjmp.S: Likewise.
4819         * sysdeps/i386/setjmp.S: Likewise.
4820         [IS_IN_rtld]: Avoid call to __sigjmp_save.
4821         * sysdeps/i386/setjmp.S: Likewise.
4822         * sysdeps/unix/sysv/linux/i386/sysdep.h: Define PTR_MANGLE and
4823         PTR_DEMANGLE.
4824         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
4826         * sysdeps/i386/elf/setjmp.S: Removed.
4827         * sysdeps/i386/elf/bsd-setjmp.S: Removed.
4829         * elf/dl-error.c (_dl_catch_error): Use __sigsetgjmp instead of
4830         setjmp.
4831         * elf/dl-error.c (_dl_signal_error): Use __longjmp instead of longjmp.
4832         * elf/dl-minimal.c (longjmp): Remove definition.
4834         * sysdeps/x86_64/bsd-setjmp.S [PIC] (setjmp): Add missing jmp.
4836 2005-12-14  Thorsten Kukuk  <kukuk@suse.de>
4838         * nscd/Makefile: Don't build nscd_nischeck.
4839         * nscd/nscd_nischeck.c: Removed.
4841 2005-12-15  Ulrich Drepper  <drepper@redhat.com>
4843         * sysdeps/unix/sysv/linux/renameat.c: Move errno setting code in
4844         separate function __atfct_seterrno_2.
4845         * include/fcntl.h: Declare __atfct_seterrno_2.
4846         * posix/unistd.h: Declare linkat, symlinkat, readlinkat.
4847         * io/Makefile (routines): Add linkat, symlinkat, readlinkat.
4848         * io/Versions [GLIBC_2.4]: Export linkat, symlinkat, readlinkat.
4849         * io/linkat.c: New file.
4850         * io/readlinkat.c: New file.
4851         * io/symlinkat.c: New file.
4852         * sysdeps/unix/sysv/linux/linkat.c: New file.
4853         * sysdeps/unix/sysv/linux/readlinkat.c: New file.
4854         * sysdeps/unix/sysv/linux/symlinkat.c: New file.
4856 2005-12-15  Roland McGrath  <roland@redhat.com>
4858         [BZ #1997]
4859         * manual/stdio.texi (String Streams): For open_memstream, elaborate a
4860         little on malloc reference.
4862         * sysdeps/alpha/fpu/s_cacosf.c: Don't use sysdeps/generic/.
4863         * sysdeps/alpha/fpu/s_cacoshf.c: Likewise.
4864         * sysdeps/alpha/fpu/s_casinf.c: Likewise.
4865         * sysdeps/alpha/fpu/s_casinhf.c: Likewise.
4866         * sysdeps/alpha/fpu/s_catanf.c: Likewise.
4867         * sysdeps/alpha/fpu/s_catanhf.c: Likewise.
4868         * sysdeps/alpha/fpu/s_ccosf.c: Likewise.
4869         * sysdeps/alpha/fpu/s_ccoshf.c: Likewise.
4870         * sysdeps/alpha/fpu/s_cexpf.c: Likewise.
4871         * sysdeps/alpha/fpu/s_clog10f.c: Likewise.
4872         * sysdeps/alpha/fpu/s_clogf.c: Likewise.
4873         * sysdeps/alpha/fpu/s_cpowf.c: Likewise.
4874         * sysdeps/alpha/fpu/s_cprojf.c: Likewise.
4875         * sysdeps/alpha/fpu/s_csinf.c: Likewise.
4876         * sysdeps/alpha/fpu/s_csinhf.c: Likewise.
4877         * sysdeps/alpha/fpu/s_csqrtf.c: Likewise.
4878         * sysdeps/alpha/fpu/s_ctanf.c: Likewise.
4879         * sysdeps/alpha/fpu/s_ctanhf.c: Likewise.
4880         * sysdeps/alpha/libc-tls.c: Likewise.
4881         * sysdeps/gnu/glob64.c: Likewise.
4882         * sysdeps/gnu/updwtmp.c: Likewise.
4883         * sysdeps/gnu/utmp_file.c: Likewise.
4884         * sysdeps/i386/bzero.c: Likewise.
4885         * sysdeps/i386/ffs.c: Likewise.
4886         * sysdeps/i386/i686/ffs.c: Likewise.
4887         * sysdeps/i386/memset.c: Likewise.
4888         * sysdeps/ia64/fpu/printf_fphex.c: Likewise.
4889         * sysdeps/ia64/libc-tls.c: Likewise.
4890         * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
4891         * sysdeps/m68k/ffs.c: Likewise.
4892         * sysdeps/mach/hurd/getdents.c: Likewise.
4893         * sysdeps/mach/hurd/init-posix.c: Likewise.
4894         * sysdeps/mach/msync.c: Likewise.
4895         * sysdeps/mips/libc-tls.c: Likewise.
4896         * sysdeps/posix/profil.c: Likewise.
4897         * sysdeps/posix/shm_open.c: Likewise.
4898         * sysdeps/posix/shm_unlink.c: Likewise.
4899         * sysdeps/posix/sprofil.c: Likewise.
4900         * sysdeps/powerpc/ffs.c: Likewise.
4901         * sysdeps/rs6000/ffs.c: Likewise.
4902         * sysdeps/s390/libc-tls.c: Likewise.
4903         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
4904         * sysdeps/unix/sysv/linux/alpha/glob.c: Likewise.
4905         * sysdeps/unix/sysv/linux/alpha/wordexp.c: Likewise.
4906         * sysdeps/unix/sysv/linux/ftruncate64.c: Likewise.
4907         * sysdeps/unix/sysv/linux/gai_sigqueue.c: Likewise.
4908         * sysdeps/unix/sysv/linux/i386/getmsg.c: Likewise.
4909         * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
4910         * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
4911         * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
4912         * sysdeps/unix/sysv/linux/i386/putmsg.c: Likewise.
4913         * sysdeps/unix/sysv/linux/i386/readelflib.c: Likewise.
4914         * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
4915         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
4916         * sysdeps/unix/sysv/linux/ia64/readelflib.c: Likewise.
4917         * sysdeps/unix/sysv/linux/mips/ftruncate64.c: Likewise.
4918         * sysdeps/unix/sysv/linux/mips/readelflib.c: Likewise.
4919         * sysdeps/unix/sysv/linux/mips/truncate64.c: Likewise.
4920         * sysdeps/unix/sysv/linux/mq_close.c: Likewise.
4921         * sysdeps/unix/sysv/linux/mq_getattr.c: Likewise.
4922         * sysdeps/unix/sysv/linux/mq_notify.c: Likewise.
4923         * sysdeps/unix/sysv/linux/mq_open.c: Likewise.
4924         * sysdeps/unix/sysv/linux/mq_receive.c: Likewise.
4925         * sysdeps/unix/sysv/linux/mq_send.c: Likewise.
4926         * sysdeps/unix/sysv/linux/mq_unlink.c: Likewise.
4927         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Likewise.
4928         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Likewise.
4929         * sysdeps/unix/sysv/linux/powerpc/readelflib.c: Likewise.
4930         * sysdeps/unix/sysv/linux/s390/readelflib.c: Likewise.
4931         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Likewise.
4932         * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
4933         * sysdeps/unix/sysv/linux/sigqueue.c: Likewise.
4934         * sysdeps/unix/sysv/linux/sigstack.c: Likewise.
4935         * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.
4936         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
4937         * sysdeps/unix/sysv/linux/sparc/readelflib.c: Likewise.
4938         * sysdeps/unix/sysv/linux/truncate64.c: Likewise.
4939         * sysdeps/unix/sysv/linux/vfork.c: Likewise.
4940         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Likewise.
4942         * sysdeps/unix/sysv/linux/Makefile (inhibit-siglist): Removed.
4944 2005-12-13  Ulrich Drepper  <drepper@redhat.com>
4946         * locale/programs/charmap-kw.h: Regenerated with new gperf.
4947         * locale/programs/locfile-kw.h: Likewise.
4949         * Makeconfig (+includes): Look in current directory late.
4950         * Makerules: Add rules from rules before the rules for the current
4951         directory.
4952         * sysdeps/generic/__longjmp.c: Moved to...
4953         * setjmp/__longjmp.c: ...here.
4954         * sysdeps/generic/_exit.c: Moved to...
4955         * posix/_exit.c: ...here.
4956         * sysdeps/generic/_strerror.c: Moved to...
4957         * string/_strerror.c: ...here.
4958         * sysdeps/generic/abort.c: Moved to...
4959         * stdlib/abort.c: ...here.
4960         * sysdeps/generic/accept.c: Moved to...
4961         * socket/accept.c: ...here.
4962         * sysdeps/generic/access.c: Moved to...
4963         * io/access.c: ...here.
4964         * sysdeps/generic/acct.c: Moved to...
4965         * misc/acct.c: ...here.
4966         * sysdeps/generic/add_n.c: Moved to...
4967         * stdlib/add_n.c: ...here.
4968         * sysdeps/generic/addmul_1.c: Moved to...
4969         * stdlib/addmul_1.c: ...here.
4970         * sysdeps/generic/adjtime.c: Moved to...
4971         * time/adjtime.c: ...here.
4972         * sysdeps/generic/aio_cancel.c: Moved to...
4973         * rt/aio_cancel.c: ...here.
4974         * sysdeps/generic/aio_fsync.c: Moved to...
4975         * rt/aio_fsync.c: ...here.
4976         * sysdeps/generic/aio_misc.c: Moved to...
4977         * rt/aio_misc.c: ...here.
4978         * sysdeps/generic/aio_notify.c: Moved to...
4979         * rt/aio_notify.c: ...here.
4980         * sysdeps/generic/aio_read.c: Moved to...
4981         * rt/aio_read.c: ...here.
4982         * sysdeps/generic/aio_read64.c: Moved to...
4983         * rt/aio_read64.c: ...here.
4984         * sysdeps/generic/aio_sigqueue.c: Moved to...
4985         * rt/aio_sigqueue.c: ...here.
4986         * sysdeps/generic/aio_suspend.c: Moved to...
4987         * rt/aio_suspend.c: ...here.
4988         * sysdeps/generic/aio_write.c: Moved to...
4989         * rt/aio_write.c: ...here.
4990         * sysdeps/generic/aio_write64.c: Moved to...
4991         * rt/aio_write64.c: ...here.
4992         * sysdeps/generic/alarm.c: Moved to...
4993         * posix/alarm.c: ...here.
4994         * sysdeps/generic/allocrtsig.c: Moved to...
4995         * signal/allocrtsig.c: ...here.
4996         * sysdeps/generic/alphasort64.c: Moved to...
4997         * dirent/alphasort64.c: ...here.
4998         * sysdeps/generic/backtrace.c: Moved to...
4999         * debug/backtrace.c: ...here.
5000         * sysdeps/generic/backtracesyms.c: Moved to...
5001         * debug/backtracesyms.c: ...here.
5002         * sysdeps/generic/backtracesymsfd.c: Moved to...
5003         * debug/backtracesymsfd.c: ...here.
5004         * sysdeps/generic/bb_init_func.c: Moved to...
5005         * gmon/bb_init_func.c: ...here.
5006         * sysdeps/generic/bcopy.c: Moved to...
5007         * string/bcopy.c: ...here.
5008         * sysdeps/generic/bind.c: Moved to...
5009         * socket/bind.c: ...here.
5010         * sysdeps/generic/brdinit.c: Moved to...
5011         * bare/brdinit.c: ...here.
5012         * sysdeps/generic/brk.c: Moved to...
5013         * misc/brk.c: ...here.
5014         * sysdeps/generic/bsd-_setjmp.c: Moved to...
5015         * setjmp/bsd-_setjmp.c: ...here.
5016         * sysdeps/generic/bsd-setjmp.c: Moved to...
5017         * setjmp/bsd-setjmp.c: ...here.
5018         * sysdeps/generic/bzero.c: Moved to...
5019         * string/bzero.c: ...here.
5020         * sysdeps/generic/cabsf.c: Moved to...
5021         * math/cabsf.c: ...here.
5022         * sysdeps/generic/cargf.c: Moved to...
5023         * math/cargf.c: ...here.
5024         * sysdeps/generic/chdir.c: Moved to...
5025         * io/chdir.c: ...here.
5026         * sysdeps/generic/check_fds.c: Moved to...
5027         * csu/check_fds.c: ...here.
5028         * sysdeps/generic/check_pf.c: Moved to...
5029         * inet/check_pf.c: ...here.
5030         * sysdeps/generic/chflags.c: Moved to...
5031         * misc/chflags.c: ...here.
5032         * sysdeps/generic/chmod.c: Moved to...
5033         * io/chmod.c: ...here.
5034         * sysdeps/generic/chown.c: Moved to...
5035         * io/chown.c: ...here.
5036         * sysdeps/generic/chroot.c: Moved to...
5037         * misc/chroot.c: ...here.
5038         * sysdeps/generic/cimagf.c: Moved to...
5039         * math/cimagf.c: ...here.
5040         * sysdeps/generic/clock.c: Moved to...
5041         * time/clock.c: ...here.
5042         * sysdeps/generic/clock_getcpuclockid.c: Moved to...
5043         * rt/clock_getcpuclockid.c: ...here.
5044         * sysdeps/generic/clock_getres.c: Moved to...
5045         * rt/clock_getres.c: ...here.
5046         * sysdeps/generic/clock_gettime.c: Moved to...
5047         * rt/clock_gettime.c: ...here.
5048         * sysdeps/generic/clock_nanosleep.c: Moved to...
5049         * rt/clock_nanosleep.c: ...here.
5050         * sysdeps/generic/clock_settime.c: Moved to...
5051         * rt/clock_settime.c: ...here.
5052         * sysdeps/generic/close.c: Moved to...
5053         * io/close.c: ...here.
5054         * sysdeps/generic/closedir.c: Moved to...
5055         * dirent/closedir.c: ...here.
5056         * sysdeps/generic/cmp.c: Moved to...
5057         * stdlib/cmp.c: ...here.
5058         * sysdeps/generic/conjf.c: Moved to...
5059         * math/conjf.c: ...here.
5060         * sysdeps/generic/connect.c: Moved to...
5061         * socket/connect.c: ...here.
5062         * sysdeps/generic/console.c: Moved to...
5063         * bare/console.c: ...here.
5064         * sysdeps/generic/crealf.c: Moved to...
5065         * math/crealf.c: ...here.
5066         * sysdeps/generic/creat.c: Moved to...
5067         * io/creat.c: ...here.
5068         * sysdeps/generic/creat64.c: Moved to...
5069         * io/creat64.c: ...here.
5070         * sysdeps/generic/ctermid.c: Moved to...
5071         * stdio-common/ctermid.c: ...here.
5072         * sysdeps/generic/cuserid.c: Moved to...
5073         * stdio-common/cuserid.c: ...here.
5074         * sysdeps/generic/dbl2mpn.c: Moved to...
5075         * stdlib/dbl2mpn.c: ...here.
5076         * sysdeps/generic/dirfd.c: Moved to...
5077         * dirent/dirfd.c: ...here.
5078         * sysdeps/generic/div.c: Moved to...
5079         * stdlib/div.c: ...here.
5080         * sysdeps/generic/divmod_1.c: Moved to...
5081         * stdlib/divmod_1.c: ...here.
5082         * sysdeps/generic/divrem.c: Moved to...
5083         * stdlib/divrem.c: ...here.
5084         * sysdeps/generic/dl-brk.c: Moved to...
5085         * elf/dl-brk.c: ...here.
5086         * sysdeps/generic/dl-cache.c: Moved to...
5087         * elf/dl-cache.c: ...here.
5088         * sysdeps/generic/dl-environ.c: Moved to...
5089         * elf/dl-environ.c: ...here.
5090         * sysdeps/generic/dl-execstack.c: Moved to...
5091         * elf/dl-execstack.c: ...here.
5092         * sysdeps/generic/dl-fptr.c: Moved to...
5093         * elf/dl-fptr.c: ...here.
5094         * sysdeps/generic/dl-origin.c: Moved to...
5095         * elf/dl-origin.c: ...here.
5096         * sysdeps/generic/dl-sbrk.c: Moved to...
5097         * elf/dl-sbrk.c: ...here.
5098         * sysdeps/generic/dl-symaddr.c: Moved to...
5099         * elf/dl-symaddr.c: ...here.
5100         * sysdeps/generic/dl-sysdep.c: Moved to...
5101         * elf/dl-sysdep.c: ...here.
5102         * sysdeps/generic/dl-tls.c: Moved to...
5103         * elf/dl-tls.c: ...here.
5104         * sysdeps/generic/dl-trampoline.c: Moved to...
5105         * elf/dl-trampoline.c: ...here.
5106         * sysdeps/generic/dup.c: Moved to...
5107         * io/dup.c: ...here.
5108         * sysdeps/generic/dup2.c: Moved to...
5109         * io/dup2.c: ...here.
5110         * sysdeps/generic/e_acoshl.c: Moved to...
5111         * math/e_acoshl.c: ...here.
5112         * sysdeps/generic/e_acosl.c: Moved to...
5113         * math/e_acosl.c: ...here.
5114         * sysdeps/generic/e_asinl.c: Moved to...
5115         * math/e_asinl.c: ...here.
5116         * sysdeps/generic/e_atan2l.c: Moved to...
5117         * math/e_atan2l.c: ...here.
5118         * sysdeps/generic/e_atanhl.c: Moved to...
5119         * math/e_atanhl.c: ...here.
5120         * sysdeps/generic/e_coshl.c: Moved to...
5121         * math/e_coshl.c: ...here.
5122         * sysdeps/generic/e_exp10.c: Moved to...
5123         * math/e_exp10.c: ...here.
5124         * sysdeps/generic/e_exp10f.c: Moved to...
5125         * math/e_exp10f.c: ...here.
5126         * sysdeps/generic/e_exp10l.c: Moved to...
5127         * math/e_exp10l.c: ...here.
5128         * sysdeps/generic/e_exp2l.c: Moved to...
5129         * math/e_exp2l.c: ...here.
5130         * sysdeps/generic/e_expl.c: Moved to...
5131         * math/e_expl.c: ...here.
5132         * sysdeps/generic/e_fmodl.c: Moved to...
5133         * math/e_fmodl.c: ...here.
5134         * sysdeps/generic/e_gammal_r.c: Moved to...
5135         * math/e_gammal_r.c: ...here.
5136         * sysdeps/generic/e_hypotl.c: Moved to...
5137         * math/e_hypotl.c: ...here.
5138         * sysdeps/generic/e_j0l.c: Moved to...
5139         * math/e_j0l.c: ...here.
5140         * sysdeps/generic/e_j1l.c: Moved to...
5141         * math/e_j1l.c: ...here.
5142         * sysdeps/generic/e_jnl.c: Moved to...
5143         * math/e_jnl.c: ...here.
5144         * sysdeps/generic/e_lgammal_r.c: Moved to...
5145         * math/e_lgammal_r.c: ...here.
5146         * sysdeps/generic/e_log10l.c: Moved to...
5147         * math/e_log10l.c: ...here.
5148         * sysdeps/generic/e_log2l.c: Moved to...
5149         * math/e_log2l.c: ...here.
5150         * sysdeps/generic/e_logl.c: Moved to...
5151         * math/e_logl.c: ...here.
5152         * sysdeps/generic/e_powl.c: Moved to...
5153         * math/e_powl.c: ...here.
5154         * sysdeps/generic/e_rem_pio2l.c: Moved to...
5155         * math/e_rem_pio2l.c: ...here.
5156         * sysdeps/generic/e_scalb.c: Moved to...
5157         * math/e_scalb.c: ...here.
5158         * sysdeps/generic/e_scalbf.c: Moved to...
5159         * math/e_scalbf.c: ...here.
5160         * sysdeps/generic/e_scalbl.c: Moved to...
5161         * math/e_scalbl.c: ...here.
5162         * sysdeps/generic/e_sinhl.c: Moved to...
5163         * math/e_sinhl.c: ...here.
5164         * sysdeps/generic/e_sqrtl.c: Moved to...
5165         * math/e_sqrtl.c: ...here.
5166         * sysdeps/generic/enbl-secure.c: Moved to...
5167         * elf/enbl-secure.c: ...here.
5168         * sysdeps/generic/endutxent.c: Moved to...
5169         * login/endutxent.c: ...here.
5170         * sysdeps/generic/environ.c: Moved to...
5171         * posix/environ.c: ...here.
5172         * sysdeps/generic/errlist.c: Moved to...
5173         * stdio-common/errlist.c: ...here.
5174         * sysdeps/generic/errno-loc.c: Moved to...
5175         * csu/errno-loc.c: ...here.
5176         * sysdeps/generic/errno-loc.c: Moved to...
5177         * csu/errno-loc.c: ...here.
5178         * sysdeps/generic/errno.c: Moved to...
5179         * csu/errno.c: ...here.
5180         * sysdeps/generic/euidaccess.c: Moved to...
5181         * io/euidaccess.c: ...here.
5182         * sysdeps/generic/exc2signal.c: Moved to...
5183         * hurd/exc2signal.c: ...here.
5184         * sysdeps/generic/execve.c: Moved to...
5185         * posix/execve.c: ...here.
5186         * sysdeps/generic/fattach.c: Moved to...
5187         * streams/fattach.c: ...here.
5188         * sysdeps/generic/fchdir.c: Moved to...
5189         * io/fchdir.c: ...here.
5190         * sysdeps/generic/fchflags.c: Moved to...
5191         * misc/fchflags.c: ...here.
5192         * sysdeps/generic/fchmod.c: Moved to...
5193         * io/fchmod.c: ...here.
5194         * sysdeps/generic/fchown.c: Moved to...
5195         * io/fchown.c: ...here.
5196         * sysdeps/generic/fchownat.c: Moved to...
5197         * io/fchownat.c: ...here.
5198         * sysdeps/generic/fclrexcpt.c: Moved to...
5199         * math/fclrexcpt.c: ...here.
5200         * sysdeps/generic/fcntl.c: Moved to...
5201         * io/fcntl.c: ...here.
5202         * sysdeps/generic/fdatasync.c: Moved to...
5203         * misc/fdatasync.c: ...here.
5204         * sysdeps/generic/fdetach.c: Moved to...
5205         * streams/fdetach.c: ...here.
5206         * sysdeps/generic/fdopendir.c: Moved to...
5207         * dirent/fdopendir.c: ...here.
5208         * sysdeps/generic/fedisblxcpt.c: Moved to...
5209         * math/fedisblxcpt.c: ...here.
5210         * sysdeps/generic/feenablxcpt.c: Moved to...
5211         * math/feenablxcpt.c: ...here.
5212         * sysdeps/generic/fegetenv.c: Moved to...
5213         * math/fegetenv.c: ...here.
5214         * sysdeps/generic/fegetexcept.c: Moved to...
5215         * math/fegetexcept.c: ...here.
5216         * sysdeps/generic/fegetround.c: Moved to...
5217         * math/fegetround.c: ...here.
5218         * sysdeps/generic/feholdexcpt.c: Moved to...
5219         * math/feholdexcpt.c: ...here.
5220         * sysdeps/generic/fesetenv.c: Moved to...
5221         * math/fesetenv.c: ...here.
5222         * sysdeps/generic/fesetround.c: Moved to...
5223         * math/fesetround.c: ...here.
5224         * sysdeps/generic/feupdateenv.c: Moved to...
5225         * math/feupdateenv.c: ...here.
5226         * sysdeps/generic/fexecve.c: Moved to...
5227         * posix/fexecve.c: ...here.
5228         * sysdeps/generic/ffs.c: Moved to...
5229         * string/ffs.c: ...here.
5230         * sysdeps/generic/ffsll.c: Moved to...
5231         * string/ffsll.c: ...here.
5232         * sysdeps/generic/fgetexcptflg.c: Moved to...
5233         * math/fgetexcptflg.c: ...here.
5234         * sysdeps/generic/fgetxattr.c: Moved to...
5235         * misc/fgetxattr.c: ...here.
5236         * sysdeps/generic/flistxattr.c: Moved to...
5237         * misc/flistxattr.c: ...here.
5238         * sysdeps/generic/flock.c: Moved to...
5239         * io/flock.c: ...here.
5240         * sysdeps/generic/flockfile.c: Moved to...
5241         * stdio-common/flockfile.c: ...here.
5242         * sysdeps/generic/fork.c: Moved to...
5243         * posix/fork.c: ...here.
5244         * sysdeps/generic/fpathconf.c: Moved to...
5245         * posix/fpathconf.c: ...here.
5246         * sysdeps/generic/fpu_control.c: Moved to...
5247         * math/fpu_control.c: ...here.
5248         * sysdeps/generic/fraiseexcpt.c: Moved to...
5249         * math/fraiseexcpt.c: ...here.
5250         * sysdeps/generic/fremovexattr.c: Moved to...
5251         * misc/fremovexattr.c: ...here.
5252         * sysdeps/generic/fsetexcptflg.c: Moved to...
5253         * math/fsetexcptflg.c: ...here.
5254         * sysdeps/generic/fsetxattr.c: Moved to...
5255         * misc/fsetxattr.c: ...here.
5256         * sysdeps/generic/fstatfs.c: Moved to...
5257         * io/fstatfs.c: ...here.
5258         * sysdeps/generic/fstatfs64.c: Moved to...
5259         * io/fstatfs64.c: ...here.
5260         * sysdeps/generic/fstatvfs.c: Moved to...
5261         * io/fstatvfs.c: ...here.
5262         * sysdeps/generic/fstatvfs64.c: Moved to...
5263         * io/fstatvfs64.c: ...here.
5264         * sysdeps/generic/fsync.c: Moved to...
5265         * misc/fsync.c: ...here.
5266         * sysdeps/generic/ftestexcept.c: Moved to...
5267         * math/ftestexcept.c: ...here.
5268         * sysdeps/generic/ftime.c: Moved to...
5269         * time/ftime.c: ...here.
5270         * sysdeps/generic/ftruncate.c: Moved to...
5271         * misc/ftruncate.c: ...here.
5272         * sysdeps/generic/ftruncate64.c: Moved to...
5273         * misc/ftruncate64.c: ...here.
5274         * sysdeps/generic/ftrylockfile.c: Moved to...
5275         * stdio-common/ftrylockfile.c: ...here.
5276         * sysdeps/generic/funlockfile.c: Moved to...
5277         * stdio-common/funlockfile.c: ...here.
5278         * sysdeps/generic/futimes.c: Moved to...
5279         * misc/futimes.c: ...here.
5280         * sysdeps/generic/futimesat.c: Moved to...
5281         * misc/futimesat.c: ...here.
5282         * sysdeps/generic/fxstat.c: Moved to...
5283         * io/fxstat.c: ...here.
5284         * sysdeps/generic/fxstat64.c: Moved to...
5285         * io/fxstat64.c: ...here.
5286         * sysdeps/generic/fxstatat.c: Moved to...
5287         * io/fxstatat.c: ...here.
5288         * sysdeps/generic/fxstatat64.c: Moved to...
5289         * io/fxstatat64.c: ...here.
5290         * sysdeps/generic/gai_sigqueue.c: Moved to...
5291         * resolv/gai_sigqueue.c: ...here.
5292         * sysdeps/generic/gai_strerror.c: Moved to...
5293         * posix/gai_strerror.c: ...here.
5294         * sysdeps/generic/get_clockfreq.c: Moved to...
5295         * rt/get_clockfreq.c: ...here.
5296         * sysdeps/generic/getaddrinfo.c: Moved to...
5297         * posix/getaddrinfo.c: ...here.
5298         * sysdeps/generic/getclktck.c: Moved to...
5299         * misc/getclktck.c: ...here.
5300         * sysdeps/generic/getcontext.c: Moved to...
5301         * stdlib/getcontext.c: ...here.
5302         * sysdeps/generic/getcwd.c: Moved to...
5303         * io/getcwd.c: ...here.
5304         * sysdeps/generic/getdents.c: Moved to...
5305         * dirent/getdents.c: ...here.
5306         * sysdeps/generic/getdents64.c: Moved to...
5307         * dirent/getdents64.c: ...here.
5308         * sysdeps/generic/getdomain.c: Moved to...
5309         * misc/getdomain.c: ...here.
5310         * sysdeps/generic/getdtsz.c: Moved to...
5311         * misc/getdtsz.c: ...here.
5312         * sysdeps/generic/getegid.c: Moved to...
5313         * posix/getegid.c: ...here.
5314         * sysdeps/generic/getenv.c: Moved to...
5315         * stdlib/getenv.c: ...here.
5316         * sysdeps/generic/geteuid.c: Moved to...
5317         * posix/geteuid.c: ...here.
5318         * sysdeps/generic/getgid.c: Moved to...
5319         * posix/getgid.c: ...here.
5320         * sysdeps/generic/getgroups.c: Moved to...
5321         * posix/getgroups.c: ...here.
5322         * sysdeps/generic/gethostid.c: Moved to...
5323         * misc/gethostid.c: ...here.
5324         * sysdeps/generic/gethostname.c: Moved to...
5325         * misc/gethostname.c: ...here.
5326         * sysdeps/generic/getipv4sourcefilter.c: Moved to...
5327         * inet/getipv4sourcefilter.c: ...here.
5328         * sysdeps/generic/getitimer.c: Moved to...
5329         * time/getitimer.c: ...here.
5330         * sysdeps/generic/getloadavg.c: Moved to...
5331         * misc/getloadavg.c: ...here.
5332         * sysdeps/generic/getlogin.c: Moved to...
5333         * posix/getlogin.c: ...here.
5334         * sysdeps/generic/getlogin_r.c: Moved to...
5335         * posix/getlogin_r.c: ...here.
5336         * sysdeps/generic/getmsg.c: Moved to...
5337         * streams/getmsg.c: ...here.
5338         * sysdeps/generic/getpagesize.c: Moved to...
5339         * misc/getpagesize.c: ...here.
5340         * sysdeps/generic/getpeername.c: Moved to...
5341         * socket/getpeername.c: ...here.
5342         * sysdeps/generic/getpgid.c: Moved to...
5343         * posix/getpgid.c: ...here.
5344         * sysdeps/generic/getpgrp.c: Moved to...
5345         * posix/getpgrp.c: ...here.
5346         * sysdeps/generic/getpid.c: Moved to...
5347         * posix/getpid.c: ...here.
5348         * sysdeps/generic/getpmsg.c: Moved to...
5349         * streams/getpmsg.c: ...here.
5350         * sysdeps/generic/getppid.c: Moved to...
5351         * posix/getppid.c: ...here.
5352         * sysdeps/generic/getpriority.c: Moved to...
5353         * resource/getpriority.c: ...here.
5354         * sysdeps/generic/getpt.c: Moved to...
5355         * login/getpt.c: ...here.
5356         * sysdeps/generic/getresgid.c: Moved to...
5357         * posix/getresgid.c: ...here.
5358         * sysdeps/generic/getresuid.c: Moved to...
5359         * posix/getresuid.c: ...here.
5360         * sysdeps/generic/getrlimit.c: Moved to...
5361         * resource/getrlimit.c: ...here.
5362         * sysdeps/generic/getrlimit64.c: Moved to...
5363         * resource/getrlimit64.c: ...here.
5364         * sysdeps/generic/getrusage.c: Moved to...
5365         * resource/getrusage.c: ...here.
5366         * sysdeps/generic/getsid.c: Moved to...
5367         * posix/getsid.c: ...here.
5368         * sysdeps/generic/getsockname.c: Moved to...
5369         * socket/getsockname.c: ...here.
5370         * sysdeps/generic/getsockopt.c: Moved to...
5371         * socket/getsockopt.c: ...here.
5372         * sysdeps/generic/getsourcefilter.c: Moved to...
5373         * inet/getsourcefilter.c: ...here.
5374         * sysdeps/generic/getsysstats.c: Moved to...
5375         * misc/getsysstats.c: ...here.
5376         * sysdeps/generic/gettimeofday.c: Moved to...
5377         * time/gettimeofday.c: ...here.
5378         * sysdeps/generic/getuid.c: Moved to...
5379         * posix/getuid.c: ...here.
5380         * sysdeps/generic/getutmp.c: Moved to...
5381         * login/getutmp.c: ...here.
5382         * sysdeps/generic/getutmpx.c: Moved to...
5383         * login/getutmpx.c: ...here.
5384         * sysdeps/generic/getutxent.c: Moved to...
5385         * login/getutxent.c: ...here.
5386         * sysdeps/generic/getutxid.c: Moved to...
5387         * login/getutxid.c: ...here.
5388         * sysdeps/generic/getutxline.c: Moved to...
5389         * login/getutxline.c: ...here.
5390         * sysdeps/generic/getxattr.c: Moved to...
5391         * misc/getxattr.c: ...here.
5392         * sysdeps/generic/glob.c: Moved to...
5393         * posix/glob.c: ...here.
5394         * sysdeps/generic/glob64.c: Moved to...
5395         * posix/glob64.c: ...here.
5396         * sysdeps/generic/grantpt.c: Moved to...
5397         * login/grantpt.c: ...here.
5398         * sysdeps/generic/group_member.c: Moved to...
5399         * posix/group_member.c: ...here.
5400         * sysdeps/generic/gtty.c: Moved to...
5401         * misc/gtty.c: ...here.
5402         * sysdeps/generic/herrno-loc.c: Moved to...
5403         * inet/herrno-loc.c: ...here.
5404         * sysdeps/generic/htonl.c: Moved to...
5405         * inet/htonl.c: ...here.
5406         * sysdeps/generic/htons.c: Moved to...
5407         * inet/htons.c: ...here.
5408         * sysdeps/generic/if_index.c: Moved to...
5409         * inet/if_index.c: ...here.
5410         * sysdeps/generic/ifaddrs.c: Moved to...
5411         * inet/ifaddrs.c: ...here.
5412         * sysdeps/generic/ifreq.c: Moved to...
5413         * inet/ifreq.c: ...here.
5414         * sysdeps/generic/init-first.c: Moved to...
5415         * csu/init-first.c: ...here.
5416         * sysdeps/generic/init-posix.c: Moved to...
5417         * posix/init-posix.c: ...here.
5418         * sysdeps/generic/inlines.c: Moved to...
5419         * stdlib/inlines.c: ...here.
5420         * sysdeps/generic/ioctl.c: Moved to...
5421         * misc/ioctl.c: ...here.
5422         * sysdeps/generic/isastream.c: Moved to...
5423         * streams/isastream.c: ...here.
5424         * sysdeps/generic/isatty.c: Moved to...
5425         * io/isatty.c: ...here.
5426         * sysdeps/generic/isfdtype.c: Moved to...
5427         * socket/isfdtype.c: ...here.
5428         * sysdeps/generic/jmp-unwind.c: Moved to...
5429         * setjmp/jmp-unwind.c: ...here.
5430         * sysdeps/generic/k_cosl.c: Moved to...
5431         * math/k_cosl.c: ...here.
5432         * sysdeps/generic/k_rem_pio2l.c: Moved to...
5433         * math/k_rem_pio2l.c: ...here.
5434         * sysdeps/generic/k_sincosl.c: Moved to...
5435         * math/k_sincosl.c: ...here.
5436         * sysdeps/generic/k_sinl.c: Moved to...
5437         * math/k_sinl.c: ...here.
5438         * sysdeps/generic/k_tanl.c: Moved to...
5439         * math/k_tanl.c: ...here.
5440         * sysdeps/generic/kill.c: Moved to...
5441         * signal/kill.c: ...here.
5442         * sysdeps/generic/killpg.c: Moved to...
5443         * signal/killpg.c: ...here.
5444         * sysdeps/generic/labs.c: Moved to...
5445         * stdlib/labs.c: ...here.
5446         * sysdeps/generic/lchmod.c: Moved to...
5447         * io/lchmod.c: ...here.
5448         * sysdeps/generic/lchown.c: Moved to...
5449         * io/lchown.c: ...here.
5450         * sysdeps/generic/ldbl2mpn.c: Moved to...
5451         * stdlib/ldbl2mpn.c: ...here.
5452         * sysdeps/generic/ldiv.c: Moved to...
5453         * stdlib/ldiv.c: ...here.
5454         * sysdeps/generic/lgetxattr.c: Moved to...
5455         * misc/lgetxattr.c: ...here.
5456         * sysdeps/generic/libc-start.c: Moved to...
5457         * csu/libc-start.c: ...here.
5458         * sysdeps/generic/libc-tls.c: Moved to...
5459         * csu/libc-tls.c: ...here.
5460         * sysdeps/generic/libc_fatal.c: Moved to...
5461         * libio/libc_fatal.c: ...here.
5462         * sysdeps/generic/link.c: Moved to...
5463         * io/link.c: ...here.
5464         * sysdeps/generic/lio_listio.c: Moved to...
5465         * rt/lio_listio.c: ...here.
5466         * sysdeps/generic/lio_listio64.c: Moved to...
5467         * rt/lio_listio64.c: ...here.
5468         * sysdeps/generic/listen.c: Moved to...
5469         * socket/listen.c: ...here.
5470         * sysdeps/generic/listxattr.c: Moved to...
5471         * misc/listxattr.c: ...here.
5472         * sysdeps/generic/llabs.c: Moved to...
5473         * stdlib/llabs.c: ...here.
5474         * sysdeps/generic/lldiv.c: Moved to...
5475         * stdlib/lldiv.c: ...here.
5476         * sysdeps/generic/llistxattr.c: Moved to...
5477         * misc/llistxattr.c: ...here.
5478         * sysdeps/generic/lockf.c: Moved to...
5479         * io/lockf.c: ...here.
5480         * sysdeps/generic/lockf64.c: Moved to...
5481         * io/lockf64.c: ...here.
5482         * sysdeps/generic/longjmp-ts.c: Moved to...
5483         * hurd/longjmp-ts.c: ...here.
5484         * sysdeps/generic/longjmp.c: Moved to...
5485         * setjmp/longjmp.c: ...here.
5486         * sysdeps/generic/lremovexattr.c: Moved to...
5487         * misc/lremovexattr.c: ...here.
5488         * sysdeps/generic/lseek.c: Moved to...
5489         * misc/lseek.c: ...here.
5490         * sysdeps/generic/lseek64.c: Moved to...
5491         * io/lseek64.c: ...here.
5492         * sysdeps/generic/lsetxattr.c: Moved to...
5493         * misc/lsetxattr.c: ...here.
5494         * sysdeps/generic/lshift.c: Moved to...
5495         * stdlib/lshift.c: ...here.
5496         * sysdeps/generic/lutimes.c: Moved to...
5497         * misc/lutimes.c: ...here.
5498         * sysdeps/generic/lxstat.c: Moved to...
5499         * io/lxstat.c: ...here.
5500         * sysdeps/generic/lxstat64.c: Moved to...
5501         * io/lxstat64.c: ...here.
5502         * sysdeps/generic/madvise.c: Moved to...
5503         * misc/madvise.c: ...here.
5504         * sysdeps/generic/makecontext.c: Moved to...
5505         * stdlib/makecontext.c: ...here.
5506         * sysdeps/generic/memccpy.c: Moved to...
5507         * string/memccpy.c: ...here.
5508         * sysdeps/generic/memchr.c: Moved to...
5509         * string/memchr.c: ...here.
5510         * sysdeps/generic/memcmp.c: Moved to...
5511         * string/memcmp.c: ...here.
5512         * sysdeps/generic/memcpy.c: Moved to...
5513         * string/memcpy.c: ...here.
5514         * sysdeps/generic/memcpy_chk.c: Moved to...
5515         * debug/memcpy_chk.c: ...here.
5516         * sysdeps/generic/memmem.c: Moved to...
5517         * string/memmem.c: ...here.
5518         * sysdeps/generic/memmove.c: Moved to...
5519         * string/memmove.c: ...here.
5520         * sysdeps/generic/memmove_chk.c: Moved to...
5521         * debug/memmove_chk.c: ...here.
5522         * sysdeps/generic/mempcpy.c: Moved to...
5523         * string/mempcpy.c: ...here.
5524         * sysdeps/generic/mempcpy_chk.c: Moved to...
5525         * debug/mempcpy_chk.c: ...here.
5526         * sysdeps/generic/memrchr.c: Moved to...
5527         * string/memrchr.c: ...here.
5528         * sysdeps/generic/memset.c: Moved to...
5529         * string/memset.c: ...here.
5530         * sysdeps/generic/memset_chk.c: Moved to...
5531         * debug/memset_chk.c: ...here.
5532         * sysdeps/generic/mig-reply.c: Moved to...
5533         * mach/mig-reply.c: ...here.
5534         * sysdeps/generic/mincore.c: Moved to...
5535         * misc/mincore.c: ...here.
5536         * sysdeps/generic/mkdir.c: Moved to...
5537         * io/mkdir.c: ...here.
5538         * sysdeps/generic/mkdirat.c: Moved to...
5539         * io/mkdirat.c: ...here.
5540         * sysdeps/generic/mkfifo.c: Moved to...
5541         * io/mkfifo.c: ...here.
5542         * sysdeps/generic/mkfifoat.c: Moved to...
5543         * io/mkfifoat.c: ...here.
5544         * sysdeps/generic/mknod.c: Moved to...
5545         * io/mknod.c: ...here.
5546         * sysdeps/generic/mknodat.c: Moved to...
5547         * io/mknodat.c: ...here.
5548         * sysdeps/generic/mlock.c: Moved to...
5549         * misc/mlock.c: ...here.
5550         * sysdeps/generic/mlockall.c: Moved to...
5551         * misc/mlockall.c: ...here.
5552         * sysdeps/generic/mmap.c: Moved to...
5553         * misc/mmap.c: ...here.
5554         * sysdeps/generic/mmap64.c: Moved to...
5555         * misc/mmap64.c: ...here.
5556         * sysdeps/generic/mod_1.c: Moved to...
5557         * stdlib/mod_1.c: ...here.
5558         * sysdeps/generic/morecore.c: Moved to...
5559         * malloc/morecore.c: ...here.
5560         * sysdeps/generic/mp_clz_tab.c: Moved to...
5561         * stdlib/mp_clz_tab.c: ...here.
5562         * sysdeps/generic/mpn2dbl.c: Moved to...
5563         * stdlib/mpn2dbl.c: ...here.
5564         * sysdeps/generic/mpn2flt.c: Moved to...
5565         * stdlib/mpn2flt.c: ...here.
5566         * sysdeps/generic/mpn2ldbl.c: Moved to...
5567         * stdlib/mpn2ldbl.c: ...here.
5568         * sysdeps/generic/mprotect.c: Moved to...
5569         * misc/mprotect.c: ...here.
5570         * sysdeps/generic/mq_close.c: Moved to...
5571         * rt/mq_close.c: ...here.
5572         * sysdeps/generic/mq_getattr.c: Moved to...
5573         * rt/mq_getattr.c: ...here.
5574         * sysdeps/generic/mq_notify.c: Moved to...
5575         * rt/mq_notify.c: ...here.
5576         * sysdeps/generic/mq_open.c: Moved to...
5577         * rt/mq_open.c: ...here.
5578         * sysdeps/generic/mq_receive.c: Moved to...
5579         * rt/mq_receive.c: ...here.
5580         * sysdeps/generic/mq_send.c: Moved to...
5581         * rt/mq_send.c: ...here.
5582         * sysdeps/generic/mq_setattr.c: Moved to...
5583         * rt/mq_setattr.c: ...here.
5584         * sysdeps/generic/mq_timedreceive.c: Moved to...
5585         * rt/mq_timedreceive.c: ...here.
5586         * sysdeps/generic/mq_timedsend.c: Moved to...
5587         * rt/mq_timedsend.c: ...here.
5588         * sysdeps/generic/mq_unlink.c: Moved to...
5589         * rt/mq_unlink.c: ...here.
5590         * sysdeps/generic/msgctl.c: Moved to...
5591         * sysvipc/msgctl.c: ...here.
5592         * sysdeps/generic/msgget.c: Moved to...
5593         * sysvipc/msgget.c: ...here.
5594         * sysdeps/generic/msgrcv.c: Moved to...
5595         * sysvipc/msgrcv.c: ...here.
5596         * sysdeps/generic/msgsnd.c: Moved to...
5597         * sysvipc/msgsnd.c: ...here.
5598         * sysdeps/generic/msync.c: Moved to...
5599         * misc/msync.c: ...here.
5600         * sysdeps/generic/mul.c: Moved to...
5601         * stdlib/mul.c: ...here.
5602         * sysdeps/generic/mul_1.c: Moved to...
5603         * stdlib/mul_1.c: ...here.
5604         * sysdeps/generic/mul_n.c: Moved to...
5605         * stdlib/mul_n.c: ...here.
5606         * sysdeps/generic/munlock.c: Moved to...
5607         * misc/munlock.c: ...here.
5608         * sysdeps/generic/munlockall.c: Moved to...
5609         * misc/munlockall.c: ...here.
5610         * sysdeps/generic/munmap.c: Moved to...
5611         * misc/munmap.c: ...here.
5612         * sysdeps/generic/nanosleep.c: Moved to...
5613         * posix/nanosleep.c: ...here.
5614         * sysdeps/generic/nice.c: Moved to...
5615         * resource/nice.c: ...here.
5616         * sysdeps/generic/nscd_setup_thread.c: Moved to...
5617         * nscd/nscd_setup_thread.c: ...here.
5618         * sysdeps/generic/open.c: Moved to...
5619         * io/open.c: ...here.
5620         * sysdeps/generic/open64.c: Moved to...
5621         * io/open64.c: ...here.
5622         * sysdeps/generic/openat.c: Moved to...
5623         * io/openat.c: ...here.
5624         * sysdeps/generic/openat64.c: Moved to...
5625         * io/openat64.c: ...here.
5626         * sysdeps/generic/opendir.c: Moved to...
5627         * dirent/opendir.c: ...here.
5628         * sysdeps/generic/opensock.c: Moved to...
5629         * socket/opensock.c: ...here.
5630         * sysdeps/generic/pathconf.c: Moved to...
5631         * posix/pathconf.c: ...here.
5632         * sysdeps/generic/pause.c: Moved to...
5633         * posix/pause.c: ...here.
5634         * sysdeps/generic/pipe.c: Moved to...
5635         * io/pipe.c: ...here.
5636         * sysdeps/generic/poll.c: Moved to...
5637         * io/poll.c: ...here.
5638         * sysdeps/generic/posix_fadvise.c: Moved to...
5639         * io/posix_fadvise.c: ...here.
5640         * sysdeps/generic/posix_fadvise64.c: Moved to...
5641         * io/posix_fadvise64.c: ...here.
5642         * sysdeps/generic/posix_fallocate.c: Moved to...
5643         * io/posix_fallocate.c: ...here.
5644         * sysdeps/generic/posix_fallocate64.c: Moved to...
5645         * io/posix_fallocate64.c: ...here.
5646         * sysdeps/generic/posix_madvise.c: Moved to...
5647         * posix/posix_madvise.c: ...here.
5648         * sysdeps/generic/pread.c: Moved to...
5649         * posix/pread.c: ...here.
5650         * sysdeps/generic/pread64.c: Moved to...
5651         * posix/pread64.c: ...here.
5652         * sysdeps/generic/printf_fphex.c: Moved to...
5653         * stdio-common/printf_fphex.c: ...here.
5654         * sysdeps/generic/prof-freq.c: Moved to...
5655         * gmon/prof-freq.c: ...here.
5656         * sysdeps/generic/profil.c: Moved to...
5657         * gmon/profil.c: ...here.
5658         * sysdeps/generic/pselect.c: Moved to...
5659         * misc/pselect.c: ...here.
5660         * sysdeps/generic/ptrace.c: Moved to...
5661         * misc/ptrace.c: ...here.
5662         * sysdeps/generic/ptsname.c: Moved to...
5663         * login/ptsname.c: ...here.
5664         * sysdeps/generic/putenv.c: Moved to...
5665         * stdlib/putenv.c: ...here.
5666         * sysdeps/generic/putmsg.c: Moved to...
5667         * streams/putmsg.c: ...here.
5668         * sysdeps/generic/putpmsg.c: Moved to...
5669         * streams/putpmsg.c: ...here.
5670         * sysdeps/generic/pututxline.c: Moved to...
5671         * login/pututxline.c: ...here.
5672         * sysdeps/generic/pwrite.c: Moved to...
5673         * posix/pwrite.c: ...here.
5674         * sysdeps/generic/pwrite64.c: Moved to...
5675         * posix/pwrite64.c: ...here.
5676         * sysdeps/generic/raise.c: Moved to...
5677         * signal/raise.c: ...here.
5678         * sysdeps/generic/rawmemchr.c: Moved to...
5679         * string/rawmemchr.c: ...here.
5680         * sysdeps/generic/read.c: Moved to...
5681         * io/read.c: ...here.
5682         * sysdeps/generic/readdir.c: Moved to...
5683         * dirent/readdir.c: ...here.
5684         * sysdeps/generic/readdir64.c: Moved to...
5685         * dirent/readdir64.c: ...here.
5686         * sysdeps/generic/readdir64_r.c: Moved to...
5687         * dirent/readdir64_r.c: ...here.
5688         * sysdeps/generic/readdir_r.c: Moved to...
5689         * dirent/readdir_r.c: ...here.
5690         * sysdeps/generic/readelflib.c: Moved to...
5691         * elf/readelflib.c: ...here.
5692         * sysdeps/generic/readlink.c: Moved to...
5693         * io/readlink.c: ...here.
5694         * sysdeps/generic/readonly-area.c: Moved to...
5695         * debug/readonly-area.c: ...here.
5696         * sysdeps/generic/readv.c: Moved to...
5697         * misc/readv.c: ...here.
5698         * sysdeps/generic/reboot.c: Moved to...
5699         * misc/reboot.c: ...here.
5700         * sysdeps/generic/recv.c: Moved to...
5701         * socket/recv.c: ...here.
5702         * sysdeps/generic/recvfrom.c: Moved to...
5703         * socket/recvfrom.c: ...here.
5704         * sysdeps/generic/recvmsg.c: Moved to...
5705         * socket/recvmsg.c: ...here.
5706         * sysdeps/generic/remap_file_pages.c: Moved to...
5707         * misc/remap_file_pages.c: ...here.
5708         * sysdeps/generic/remove.c: Moved to...
5709         * stdio-common/remove.c: ...here.
5710         * sysdeps/generic/removexattr.c: Moved to...
5711         * misc/removexattr.c: ...here.
5712         * sysdeps/generic/rename.c: Moved to...
5713         * stdio-common/rename.c: ...here.
5714         * sysdeps/generic/renameat.c: Moved to...
5715         * stdio-common/renameat.c: ...here.
5716         * sysdeps/generic/res-state.c: Moved to...
5717         * resolv/res-state.c: ...here.
5718         * sysdeps/generic/revoke.c: Moved to...
5719         * misc/revoke.c: ...here.
5720         * sysdeps/generic/rewinddir.c: Moved to...
5721         * dirent/rewinddir.c: ...here.
5722         * sysdeps/generic/rmdir.c: Moved to...
5723         * io/rmdir.c: ...here.
5724         * sysdeps/generic/rshift.c: Moved to...
5725         * stdlib/rshift.c: ...here.
5726         * sysdeps/generic/s_asinhl.c: Moved to...
5727         * math/s_asinhl.c: ...here.
5728         * sysdeps/generic/s_atanl.c: Moved to...
5729         * math/s_atanl.c: ...here.
5730         * sysdeps/generic/s_cacos.c: Moved to...
5731         * math/s_cacos.c: ...here.
5732         * sysdeps/generic/s_cacosf.c: Moved to...
5733         * math/s_cacosf.c: ...here.
5734         * sysdeps/generic/s_cacosh.c: Moved to...
5735         * math/s_cacosh.c: ...here.
5736         * sysdeps/generic/s_cacoshf.c: Moved to...
5737         * math/s_cacoshf.c: ...here.
5738         * sysdeps/generic/s_cacoshl.c: Moved to...
5739         * math/s_cacoshl.c: ...here.
5740         * sysdeps/generic/s_cacosl.c: Moved to...
5741         * math/s_cacosl.c: ...here.
5742         * sysdeps/generic/s_casin.c: Moved to...
5743         * math/s_casin.c: ...here.
5744         * sysdeps/generic/s_casinf.c: Moved to...
5745         * math/s_casinf.c: ...here.
5746         * sysdeps/generic/s_casinh.c: Moved to...
5747         * math/s_casinh.c: ...here.
5748         * sysdeps/generic/s_casinhf.c: Moved to...
5749         * math/s_casinhf.c: ...here.
5750         * sysdeps/generic/s_casinhl.c: Moved to...
5751         * math/s_casinhl.c: ...here.
5752         * sysdeps/generic/s_casinl.c: Moved to...
5753         * math/s_casinl.c: ...here.
5754         * sysdeps/generic/s_catan.c: Moved to...
5755         * math/s_catan.c: ...here.
5756         * sysdeps/generic/s_catanf.c: Moved to...
5757         * math/s_catanf.c: ...here.
5758         * sysdeps/generic/s_catanh.c: Moved to...
5759         * math/s_catanh.c: ...here.
5760         * sysdeps/generic/s_catanhf.c: Moved to...
5761         * math/s_catanhf.c: ...here.
5762         * sysdeps/generic/s_catanhl.c: Moved to...
5763         * math/s_catanhl.c: ...here.
5764         * sysdeps/generic/s_catanl.c: Moved to...
5765         * math/s_catanl.c: ...here.
5766         * sysdeps/generic/s_cbrtl.c: Moved to...
5767         * math/s_cbrtl.c: ...here.
5768         * sysdeps/generic/s_ccos.c: Moved to...
5769         * math/s_ccos.c: ...here.
5770         * sysdeps/generic/s_ccosf.c: Moved to...
5771         * math/s_ccosf.c: ...here.
5772         * sysdeps/generic/s_ccosh.c: Moved to...
5773         * math/s_ccosh.c: ...here.
5774         * sysdeps/generic/s_ccoshf.c: Moved to...
5775         * math/s_ccoshf.c: ...here.
5776         * sysdeps/generic/s_ccoshl.c: Moved to...
5777         * math/s_ccoshl.c: ...here.
5778         * sysdeps/generic/s_ccosl.c: Moved to...
5779         * math/s_ccosl.c: ...here.
5780         * sysdeps/generic/s_cexp.c: Moved to...
5781         * math/s_cexp.c: ...here.
5782         * sysdeps/generic/s_cexpf.c: Moved to...
5783         * math/s_cexpf.c: ...here.
5784         * sysdeps/generic/s_cexpl.c: Moved to...
5785         * math/s_cexpl.c: ...here.
5786         * sysdeps/generic/s_clog.c: Moved to...
5787         * math/s_clog.c: ...here.
5788         * sysdeps/generic/s_clog10.c: Moved to...
5789         * math/s_clog10.c: ...here.
5790         * sysdeps/generic/s_clog10f.c: Moved to...
5791         * math/s_clog10f.c: ...here.
5792         * sysdeps/generic/s_clog10l.c: Moved to...
5793         * math/s_clog10l.c: ...here.
5794         * sysdeps/generic/s_clogf.c: Moved to...
5795         * math/s_clogf.c: ...here.
5796         * sysdeps/generic/s_clogl.c: Moved to...
5797         * math/s_clogl.c: ...here.
5798         * sysdeps/generic/s_cpow.c: Moved to...
5799         * math/s_cpow.c: ...here.
5800         * sysdeps/generic/s_cpowf.c: Moved to...
5801         * math/s_cpowf.c: ...here.
5802         * sysdeps/generic/s_cpowl.c: Moved to...
5803         * math/s_cpowl.c: ...here.
5804         * sysdeps/generic/s_cproj.c: Moved to...
5805         * math/s_cproj.c: ...here.
5806         * sysdeps/generic/s_cprojf.c: Moved to...
5807         * math/s_cprojf.c: ...here.
5808         * sysdeps/generic/s_cprojl.c: Moved to...
5809         * math/s_cprojl.c: ...here.
5810         * sysdeps/generic/s_csin.c: Moved to...
5811         * math/s_csin.c: ...here.
5812         * sysdeps/generic/s_csinf.c: Moved to...
5813         * math/s_csinf.c: ...here.
5814         * sysdeps/generic/s_csinh.c: Moved to...
5815         * math/s_csinh.c: ...here.
5816         * sysdeps/generic/s_csinhf.c: Moved to...
5817         * math/s_csinhf.c: ...here.
5818         * sysdeps/generic/s_csinhl.c: Moved to...
5819         * math/s_csinhl.c: ...here.
5820         * sysdeps/generic/s_csinl.c: Moved to...
5821         * math/s_csinl.c: ...here.
5822         * sysdeps/generic/s_csqrt.c: Moved to...
5823         * math/s_csqrt.c: ...here.
5824         * sysdeps/generic/s_csqrtf.c: Moved to...
5825         * math/s_csqrtf.c: ...here.
5826         * sysdeps/generic/s_csqrtl.c: Moved to...
5827         * math/s_csqrtl.c: ...here.
5828         * sysdeps/generic/s_ctan.c: Moved to...
5829         * math/s_ctan.c: ...here.
5830         * sysdeps/generic/s_ctanf.c: Moved to...
5831         * math/s_ctanf.c: ...here.
5832         * sysdeps/generic/s_ctanh.c: Moved to...
5833         * math/s_ctanh.c: ...here.
5834         * sysdeps/generic/s_ctanhf.c: Moved to...
5835         * math/s_ctanhf.c: ...here.
5836         * sysdeps/generic/s_ctanhl.c: Moved to...
5837         * math/s_ctanhl.c: ...here.
5838         * sysdeps/generic/s_ctanl.c: Moved to...
5839         * math/s_ctanl.c: ...here.
5840         * sysdeps/generic/s_erfl.c: Moved to...
5841         * math/s_erfl.c: ...here.
5842         * sysdeps/generic/s_expm1l.c: Moved to...
5843         * math/s_expm1l.c: ...here.
5844         * sysdeps/generic/s_fdim.c: Moved to...
5845         * math/s_fdim.c: ...here.
5846         * sysdeps/generic/s_fdimf.c: Moved to...
5847         * math/s_fdimf.c: ...here.
5848         * sysdeps/generic/s_fdiml.c: Moved to...
5849         * math/s_fdiml.c: ...here.
5850         * sysdeps/generic/s_fma.c: Moved to...
5851         * math/s_fma.c: ...here.
5852         * sysdeps/generic/s_fmaf.c: Moved to...
5853         * math/s_fmaf.c: ...here.
5854         * sysdeps/generic/s_fmal.c: Moved to...
5855         * math/s_fmal.c: ...here.
5856         * sysdeps/generic/s_fmax.c: Moved to...
5857         * math/s_fmax.c: ...here.
5858         * sysdeps/generic/s_fmaxf.c: Moved to...
5859         * math/s_fmaxf.c: ...here.
5860         * sysdeps/generic/s_fmaxl.c: Moved to...
5861         * math/s_fmaxl.c: ...here.
5862         * sysdeps/generic/s_fmin.c: Moved to...
5863         * math/s_fmin.c: ...here.
5864         * sysdeps/generic/s_fminf.c: Moved to...
5865         * math/s_fminf.c: ...here.
5866         * sysdeps/generic/s_fminl.c: Moved to...
5867         * math/s_fminl.c: ...here.
5868         * sysdeps/generic/s_ldexp.c: Moved to...
5869         * math/s_ldexp.c: ...here.
5870         * sysdeps/generic/s_ldexpf.c: Moved to...
5871         * math/s_ldexpf.c: ...here.
5872         * sysdeps/generic/s_ldexpl.c: Moved to...
5873         * math/s_ldexpl.c: ...here.
5874         * sysdeps/generic/s_log1pl.c: Moved to...
5875         * math/s_log1pl.c: ...here.
5876         * sysdeps/generic/s_nan.c: Moved to...
5877         * math/s_nan.c: ...here.
5878         * sysdeps/generic/s_nanf.c: Moved to...
5879         * math/s_nanf.c: ...here.
5880         * sysdeps/generic/s_nanl.c: Moved to...
5881         * math/s_nanl.c: ...here.
5882         * sysdeps/generic/s_nextafter.c: Moved to...
5883         * math/s_nextafter.c: ...here.
5884         * sysdeps/generic/s_nexttowardf.c: Moved to...
5885         * math/s_nexttowardf.c: ...here.
5886         * sysdeps/generic/s_nexttowardl.c: Moved to...
5887         * math/s_nexttowardl.c: ...here.
5888         * sysdeps/generic/s_significand.c: Moved to...
5889         * math/s_significand.c: ...here.
5890         * sysdeps/generic/s_significandf.c: Moved to...
5891         * math/s_significandf.c: ...here.
5892         * sysdeps/generic/s_significandl.c: Moved to...
5893         * math/s_significandl.c: ...here.
5894         * sysdeps/generic/s_tanhl.c: Moved to...
5895         * math/s_tanhl.c: ...here.
5896         * sysdeps/generic/sbrk.c: Moved to...
5897         * misc/sbrk.c: ...here.
5898         * sysdeps/generic/scandir64.c: Moved to...
5899         * dirent/scandir64.c: ...here.
5900         * sysdeps/generic/sched_getaffinity.c: Moved to...
5901         * posix/sched_getaffinity.c: ...here.
5902         * sysdeps/generic/sched_getp.c: Moved to...
5903         * posix/sched_getp.c: ...here.
5904         * sysdeps/generic/sched_gets.c: Moved to...
5905         * posix/sched_gets.c: ...here.
5906         * sysdeps/generic/sched_primax.c: Moved to...
5907         * posix/sched_primax.c: ...here.
5908         * sysdeps/generic/sched_primin.c: Moved to...
5909         * posix/sched_primin.c: ...here.
5910         * sysdeps/generic/sched_rr_gi.c: Moved to...
5911         * posix/sched_rr_gi.c: ...here.
5912         * sysdeps/generic/sched_setaffinity.c: Moved to...
5913         * posix/sched_setaffinity.c: ...here.
5914         * sysdeps/generic/sched_setp.c: Moved to...
5915         * posix/sched_setp.c: ...here.
5916         * sysdeps/generic/sched_sets.c: Moved to...
5917         * posix/sched_sets.c: ...here.
5918         * sysdeps/generic/sched_yield.c: Moved to...
5919         * posix/sched_yield.c: ...here.
5920         * sysdeps/generic/seekdir.c: Moved to...
5921         * dirent/seekdir.c: ...here.
5922         * sysdeps/generic/segfault.c: Moved to...
5923         * debug/segfault.c: ...here.
5924         * sysdeps/generic/select.c: Moved to...
5925         * misc/select.c: ...here.
5926         * sysdeps/generic/semctl.c: Moved to...
5927         * sysvipc/semctl.c: ...here.
5928         * sysdeps/generic/semget.c: Moved to...
5929         * sysvipc/semget.c: ...here.
5930         * sysdeps/generic/semop.c: Moved to...
5931         * sysvipc/semop.c: ...here.
5932         * sysdeps/generic/semtimedop.c: Moved to...
5933         * sysvipc/semtimedop.c: ...here.
5934         * sysdeps/generic/send.c: Moved to...
5935         * socket/send.c: ...here.
5936         * sysdeps/generic/sendfile.c: Moved to...
5937         * io/sendfile.c: ...here.
5938         * sysdeps/generic/sendfile64.c: Moved to...
5939         * io/sendfile64.c: ...here.
5940         * sysdeps/generic/sendmsg.c: Moved to...
5941         * socket/sendmsg.c: ...here.
5942         * sysdeps/generic/sendto.c: Moved to...
5943         * socket/sendto.c: ...here.
5944         * sysdeps/generic/setcontext.c: Moved to...
5945         * stdlib/setcontext.c: ...here.
5946         * sysdeps/generic/setdomain.c: Moved to...
5947         * misc/setdomain.c: ...here.
5948         * sysdeps/generic/setegid.c: Moved to...
5949         * misc/setegid.c: ...here.
5950         * sysdeps/generic/setenv.c: Moved to...
5951         * stdlib/setenv.c: ...here.
5952         * sysdeps/generic/seteuid.c: Moved to...
5953         * misc/seteuid.c: ...here.
5954         * sysdeps/generic/setfpucw.c: Moved to...
5955         * math/setfpucw.c: ...here.
5956         * sysdeps/generic/setgid.c: Moved to...
5957         * posix/setgid.c: ...here.
5958         * sysdeps/generic/setgroups.c: Moved to...
5959         * grp/setgroups.c: ...here.
5960         * sysdeps/generic/sethostid.c: Moved to...
5961         * misc/sethostid.c: ...here.
5962         * sysdeps/generic/sethostname.c: Moved to...
5963         * misc/sethostname.c: ...here.
5964         * sysdeps/generic/setipv4sourcefilter.c: Moved to...
5965         * inet/setipv4sourcefilter.c: ...here.
5966         * sysdeps/generic/setitimer.c: Moved to...
5967         * time/setitimer.c: ...here.
5968         * sysdeps/generic/setjmp.c: Moved to...
5969         * setjmp/setjmp.c: ...here.
5970         * sysdeps/generic/setlogin.c: Moved to...
5971         * posix/setlogin.c: ...here.
5972         * sysdeps/generic/setpgid.c: Moved to...
5973         * posix/setpgid.c: ...here.
5974         * sysdeps/generic/setpgrp.c: Moved to...
5975         * posix/setpgrp.c: ...here.
5976         * sysdeps/generic/setpriority.c: Moved to...
5977         * resource/setpriority.c: ...here.
5978         * sysdeps/generic/setregid.c: Moved to...
5979         * misc/setregid.c: ...here.
5980         * sysdeps/generic/setresgid.c: Moved to...
5981         * posix/setresgid.c: ...here.
5982         * sysdeps/generic/setresuid.c: Moved to...
5983         * posix/setresuid.c: ...here.
5984         * sysdeps/generic/setreuid.c: Moved to...
5985         * misc/setreuid.c: ...here.
5986         * sysdeps/generic/setrlimit.c: Moved to...
5987         * resource/setrlimit.c: ...here.
5988         * sysdeps/generic/setrlimit64.c: Moved to...
5989         * resource/setrlimit64.c: ...here.
5990         * sysdeps/generic/setsid.c: Moved to...
5991         * posix/setsid.c: ...here.
5992         * sysdeps/generic/setsockopt.c: Moved to...
5993         * socket/setsockopt.c: ...here.
5994         * sysdeps/generic/setsourcefilter.c: Moved to...
5995         * inet/setsourcefilter.c: ...here.
5996         * sysdeps/generic/settimeofday.c: Moved to...
5997         * time/settimeofday.c: ...here.
5998         * sysdeps/generic/setuid.c: Moved to...
5999         * posix/setuid.c: ...here.
6000         * sysdeps/generic/setutxent.c: Moved to...
6001         * login/setutxent.c: ...here.
6002         * sysdeps/generic/setxattr.c: Moved to...
6003         * misc/setxattr.c: ...here.
6004         * sysdeps/generic/shm_open.c: Moved to...
6005         * rt/shm_open.c: ...here.
6006         * sysdeps/generic/shm_unlink.c: Moved to...
6007         * rt/shm_unlink.c: ...here.
6008         * sysdeps/generic/shmat.c: Moved to...
6009         * sysvipc/shmat.c: ...here.
6010         * sysdeps/generic/shmctl.c: Moved to...
6011         * sysvipc/shmctl.c: ...here.
6012         * sysdeps/generic/shmdt.c: Moved to...
6013         * sysvipc/shmdt.c: ...here.
6014         * sysdeps/generic/shmget.c: Moved to...
6015         * sysvipc/shmget.c: ...here.
6016         * sysdeps/generic/shutdown.c: Moved to...
6017         * socket/shutdown.c: ...here.
6018         * sysdeps/generic/sigaction.c: Moved to...
6019         * signal/sigaction.c: ...here.
6020         * sysdeps/generic/sigaltstack.c: Moved to...
6021         * signal/sigaltstack.c: ...here.
6022         * sysdeps/generic/sigblock.c: Moved to...
6023         * signal/sigblock.c: ...here.
6024         * sysdeps/generic/sigfillset.c: Moved to...
6025         * signal/sigfillset.c: ...here.
6026         * sysdeps/generic/sigignore.c: Moved to...
6027         * signal/sigignore.c: ...here.
6028         * sysdeps/generic/sigintr.c: Moved to...
6029         * signal/sigintr.c: ...here.
6030         * sysdeps/generic/sigjmp.c: Moved to...
6031         * setjmp/sigjmp.c: ...here.
6032         * sysdeps/generic/siglist.c: Moved to...
6033         * stdio-common/siglist.c: ...here.
6034         * sysdeps/generic/signal.c: Moved to...
6035         * signal/signal.c: ...here.
6036         * sysdeps/generic/sigpause.c: Moved to...
6037         * signal/sigpause.c: ...here.
6038         * sysdeps/generic/sigpending.c: Moved to...
6039         * signal/sigpending.c: ...here.
6040         * sysdeps/generic/sigprocmask.c: Moved to...
6041         * signal/sigprocmask.c: ...here.
6042         * sysdeps/generic/sigqueue.c: Moved to...
6043         * signal/sigqueue.c: ...here.
6044         * sysdeps/generic/sigreturn.c: Moved to...
6045         * signal/sigreturn.c: ...here.
6046         * sysdeps/generic/sigset.c: Moved to...
6047         * signal/sigset.c: ...here.
6048         * sysdeps/generic/sigsetmask.c: Moved to...
6049         * signal/sigsetmask.c: ...here.
6050         * sysdeps/generic/sigstack.c: Moved to...
6051         * signal/sigstack.c: ...here.
6052         * sysdeps/generic/sigsuspend.c: Moved to...
6053         * signal/sigsuspend.c: ...here.
6054         * sysdeps/generic/sigtimedwait.c: Moved to...
6055         * signal/sigtimedwait.c: ...here.
6056         * sysdeps/generic/sigvec.c: Moved to...
6057         * signal/sigvec.c: ...here.
6058         * sysdeps/generic/sigwait.c: Moved to...
6059         * signal/sigwait.c: ...here.
6060         * sysdeps/generic/sigwaitinfo.c: Moved to...
6061         * signal/sigwaitinfo.c: ...here.
6062         * sysdeps/generic/sleep.c: Moved to...
6063         * posix/sleep.c: ...here.
6064         * sysdeps/generic/sockatmark.c: Moved to...
6065         * socket/sockatmark.c: ...here.
6066         * sysdeps/generic/socket.c: Moved to...
6067         * socket/socket.c: ...here.
6068         * sysdeps/generic/socketpair.c: Moved to...
6069         * socket/socketpair.c: ...here.
6070         * sysdeps/generic/spawni.c: Moved to...
6071         * posix/spawni.c: ...here.
6072         * sysdeps/generic/speed.c: Moved to...
6073         * termios/speed.c: ...here.
6074         * sysdeps/generic/sprofil.c: Moved to...
6075         * gmon/sprofil.c: ...here.
6076         * sysdeps/generic/sstk.c: Moved to...
6077         * misc/sstk.c: ...here.
6078         * sysdeps/generic/start.c: Moved to...
6079         * csu/start.c: ...here.
6080         * sysdeps/generic/statfs.c: Moved to...
6081         * io/statfs.c: ...here.
6082         * sysdeps/generic/statfs64.c: Moved to...
6083         * io/statfs64.c: ...here.
6084         * sysdeps/generic/statvfs.c: Moved to...
6085         * io/statvfs.c: ...here.
6086         * sysdeps/generic/statvfs64.c: Moved to...
6087         * io/statvfs64.c: ...here.
6088         * sysdeps/generic/stime.c: Moved to...
6089         * time/stime.c: ...here.
6090         * sysdeps/generic/stpcpy.c: Moved to...
6091         * string/stpcpy.c: ...here.
6092         * sysdeps/generic/stpcpy_chk.c: Moved to...
6093         * debug/stpcpy_chk.c: ...here.
6094         * sysdeps/generic/stpncpy.c: Moved to...
6095         * string/stpncpy.c: ...here.
6096         * sysdeps/generic/stpncpy_chk.c: Moved to...
6097         * debug/stpncpy_chk.c: ...here.
6098         * sysdeps/generic/strcasecmp.c: Moved to...
6099         * string/strcasecmp.c: ...here.
6100         * sysdeps/generic/strcasecmp_l.c: Moved to...
6101         * string/strcasecmp_l.c: ...here.
6102         * sysdeps/generic/strcasestr.c: Moved to...
6103         * string/strcasestr.c: ...here.
6104         * sysdeps/generic/strcat.c: Moved to...
6105         * string/strcat.c: ...here.
6106         * sysdeps/generic/strcat_chk.c: Moved to...
6107         * debug/strcat_chk.c: ...here.
6108         * sysdeps/generic/strchr.c: Moved to...
6109         * string/strchr.c: ...here.
6110         * sysdeps/generic/strchrnul.c: Moved to...
6111         * string/strchrnul.c: ...here.
6112         * sysdeps/generic/strcmp.c: Moved to...
6113         * string/strcmp.c: ...here.
6114         * sysdeps/generic/strcpy.c: Moved to...
6115         * string/strcpy.c: ...here.
6116         * sysdeps/generic/strcpy_chk.c: Moved to...
6117         * debug/strcpy_chk.c: ...here.
6118         * sysdeps/generic/strcspn.c: Moved to...
6119         * string/strcspn.c: ...here.
6120         * sysdeps/generic/string-inlines.c: Moved to...
6121         * string/string-inlines.c: ...here.
6122         * sysdeps/generic/strlen.c: Moved to...
6123         * string/strlen.c: ...here.
6124         * sysdeps/generic/strncase.c: Moved to...
6125         * string/strncase.c: ...here.
6126         * sysdeps/generic/strncase_l.c: Moved to...
6127         * string/strncase_l.c: ...here.
6128         * sysdeps/generic/strncat.c: Moved to...
6129         * string/strncat.c: ...here.
6130         * sysdeps/generic/strncat_chk.c: Moved to...
6131         * debug/strncat_chk.c: ...here.
6132         * sysdeps/generic/strncmp.c: Moved to...
6133         * string/strncmp.c: ...here.
6134         * sysdeps/generic/strncpy.c: Moved to...
6135         * string/strncpy.c: ...here.
6136         * sysdeps/generic/strncpy_chk.c: Moved to...
6137         * debug/strncpy_chk.c: ...here.
6138         * sysdeps/generic/strnlen.c: Moved to...
6139         * string/strnlen.c: ...here.
6140         * sysdeps/generic/strpbrk.c: Moved to...
6141         * string/strpbrk.c: ...here.
6142         * sysdeps/generic/strrchr.c: Moved to...
6143         * string/strrchr.c: ...here.
6144         * sysdeps/generic/strsep.c: Moved to...
6145         * string/strsep.c: ...here.
6146         * sysdeps/generic/strspn.c: Moved to...
6147         * string/strspn.c: ...here.
6148         * sysdeps/generic/strstr.c: Moved to...
6149         * string/strstr.c: ...here.
6150         * sysdeps/generic/strtoimax.c: Moved to...
6151         * stdlib/strtoimax.c: ...here.
6152         * sysdeps/generic/strtok.c: Moved to...
6153         * string/strtok.c: ...here.
6154         * sysdeps/generic/strtok_r.c: Moved to...
6155         * string/strtok_r.c: ...here.
6156         * sysdeps/generic/strtol.c: Moved to...
6157         * stdlib/strtol.c: ...here.
6158         * sysdeps/generic/strtol_l.c: Moved to...
6159         * stdlib/strtol_l.c: ...here.
6160         * sysdeps/generic/strtold_l.c: Moved to...
6161         * stdlib/strtold_l.c: ...here.
6162         * sysdeps/generic/strtoll.c: Moved to...
6163         * stdlib/strtoll.c: ...here.
6164         * sysdeps/generic/strtoll_l.c: Moved to...
6165         * stdlib/strtoll_l.c: ...here.
6166         * sysdeps/generic/strtoul.c: Moved to...
6167         * stdlib/strtoul.c: ...here.
6168         * sysdeps/generic/strtoul_l.c: Moved to...
6169         * stdlib/strtoul_l.c: ...here.
6170         * sysdeps/generic/strtoull.c: Moved to...
6171         * stdlib/strtoull.c: ...here.
6172         * sysdeps/generic/strtoull_l.c: Moved to...
6173         * stdlib/strtoull_l.c: ...here.
6174         * sysdeps/generic/strtoumax.c: Moved to...
6175         * stdlib/strtoumax.c: ...here.
6176         * sysdeps/generic/strtsupp.c: Moved to...
6177         * bare/strtsupp.c: ...here.
6178         * sysdeps/generic/stty.c: Moved to...
6179         * misc/stty.c: ...here.
6180         * sysdeps/generic/sub_n.c: Moved to...
6181         * stdlib/sub_n.c: ...here.
6182         * sysdeps/generic/submul_1.c: Moved to...
6183         * stdlib/submul_1.c: ...here.
6184         * sysdeps/generic/swapcontext.c: Moved to...
6185         * stdlib/swapcontext.c: ...here.
6186         * sysdeps/generic/swapoff.c: Moved to...
6187         * misc/swapoff.c: ...here.
6188         * sysdeps/generic/swapon.c: Moved to...
6189         * misc/swapon.c: ...here.
6190         * sysdeps/generic/symlink.c: Moved to...
6191         * io/symlink.c: ...here.
6192         * sysdeps/generic/sync.c: Moved to...
6193         * misc/sync.c: ...here.
6194         * sysdeps/generic/syscall.c: Moved to...
6195         * misc/syscall.c: ...here.
6196         * sysdeps/generic/sysconf.c: Moved to...
6197         * posix/sysconf.c: ...here.
6198         * sysdeps/generic/sysdep.c: Moved to...
6199         * csu/sysdep.c: ...here.
6200         * sysdeps/generic/syslog.c: Moved to...
6201         * misc/syslog.c: ...here.
6202         * sysdeps/generic/system.c: Moved to...
6203         * stdlib/system.c: ...here.
6204         * sysdeps/generic/sysv_signal.c: Moved to...
6205         * signal/sysv_signal.c: ...here.
6206         * sysdeps/generic/t_sincosl.c: Moved to...
6207         * math/t_sincosl.c: ...here.
6208         * sysdeps/generic/tcdrain.c: Moved to...
6209         * termios/tcdrain.c: ...here.
6210         * sysdeps/generic/tcflow.c: Moved to...
6211         * termios/tcflow.c: ...here.
6212         * sysdeps/generic/tcflush.c: Moved to...
6213         * termios/tcflush.c: ...here.
6214         * sysdeps/generic/tcgetattr.c: Moved to...
6215         * termios/tcgetattr.c: ...here.
6216         * sysdeps/generic/tcgetpgrp.c: Moved to...
6217         * termios/tcgetpgrp.c: ...here.
6218         * sysdeps/generic/tcsendbrk.c: Moved to...
6219         * termios/tcsendbrk.c: ...here.
6220         * sysdeps/generic/tcsetattr.c: Moved to...
6221         * termios/tcsetattr.c: ...here.
6222         * sysdeps/generic/tcsetpgrp.c: Moved to...
6223         * termios/tcsetpgrp.c: ...here.
6224         * sysdeps/generic/telldir.c: Moved to...
6225         * dirent/telldir.c: ...here.
6226         * sysdeps/generic/tempname.c: Moved to...
6227         * stdio-common/tempname.c: ...here.
6228         * sysdeps/generic/time.c: Moved to...
6229         * time/time.c: ...here.
6230         * sysdeps/generic/timer_create.c: Moved to...
6231         * rt/timer_create.c: ...here.
6232         * sysdeps/generic/timer_delete.c: Moved to...
6233         * rt/timer_delete.c: ...here.
6234         * sysdeps/generic/timer_getoverr.c: Moved to...
6235         * rt/timer_getoverr.c: ...here.
6236         * sysdeps/generic/timer_gettime.c: Moved to...
6237         * rt/timer_gettime.c: ...here.
6238         * sysdeps/generic/timer_settime.c: Moved to...
6239         * rt/timer_settime.c: ...here.
6240         * sysdeps/generic/times.c: Moved to...
6241         * posix/times.c: ...here.
6242         * sysdeps/generic/tmpfile.c: Moved to...
6243         * stdio-common/tmpfile.c: ...here.
6244         * sysdeps/generic/tmpfile64.c: Moved to...
6245         * stdio-common/tmpfile64.c: ...here.
6246         * sysdeps/generic/trampoline.c: Moved to...
6247         * hurd/trampoline.c: ...here.
6248         * sysdeps/generic/truncate.c: Moved to...
6249         * misc/truncate.c: ...here.
6250         * sysdeps/generic/truncate64.c: Moved to...
6251         * misc/truncate64.c: ...here.
6252         * sysdeps/generic/tst-timer.c: Moved to...
6253         * rt/tst-timer.c: ...here.
6254         * sysdeps/generic/ttyname.c: Moved to...
6255         * io/ttyname.c: ...here.
6256         * sysdeps/generic/ttyname_r.c: Moved to...
6257         * io/ttyname_r.c: ...here.
6258         * sysdeps/generic/ualarm.c: Moved to...
6259         * misc/ualarm.c: ...here.
6260         * sysdeps/generic/udiv_qrnnd.c: Moved to...
6261         * stdlib/udiv_qrnnd.c: ...here.
6262         * sysdeps/generic/ulimit.c: Moved to...
6263         * resource/ulimit.c: ...here.
6264         * sysdeps/generic/umask.c: Moved to...
6265         * io/umask.c: ...here.
6266         * sysdeps/generic/uname.c: Moved to...
6267         * posix/uname.c: ...here.
6268         * sysdeps/generic/unlink.c: Moved to...
6269         * io/unlink.c: ...here.
6270         * sysdeps/generic/unlinkat.c: Moved to...
6271         * io/unlinkat.c: ...here.
6272         * sysdeps/generic/unlockpt.c: Moved to...
6273         * login/unlockpt.c: ...here.
6274         * sysdeps/generic/updwtmp.c: Moved to...
6275         * login/updwtmp.c: ...here.
6276         * sysdeps/generic/updwtmpx.c: Moved to...
6277         * login/updwtmpx.c: ...here.
6278         * sysdeps/generic/usleep.c: Moved to...
6279         * misc/usleep.c: ...here.
6280         * sysdeps/generic/ustat.c: Moved to...
6281         * misc/ustat.c: ...here.
6282         * sysdeps/generic/utime.c: Moved to...
6283         * io/utime.c: ...here.
6284         * sysdeps/generic/utimes.c: Moved to...
6285         * misc/utimes.c: ...here.
6286         * sysdeps/generic/utmp_file.c: Moved to...
6287         * login/utmp_file.c: ...here.
6288         * sysdeps/generic/utmpxname.c: Moved to...
6289         * login/utmpxname.c: ...here.
6290         * sysdeps/generic/versionsort64.c: Moved to...
6291         * dirent/versionsort64.c: ...here.
6292         * sysdeps/generic/vfork.c: Moved to...
6293         * posix/vfork.c: ...here.
6294         * sysdeps/generic/vhangup.c: Moved to...
6295         * misc/vhangup.c: ...here.
6296         * sysdeps/generic/vlimit.c: Moved to...
6297         * resource/vlimit.c: ...here.
6298         * sysdeps/generic/vtimes.c: Moved to...
6299         * resource/vtimes.c: ...here.
6300         * sysdeps/generic/w_acos.c: Moved to...
6301         * math/w_acos.c: ...here.
6302         * sysdeps/generic/w_acosf.c: Moved to...
6303         * math/w_acosf.c: ...here.
6304         * sysdeps/generic/w_acosh.c: Moved to...
6305         * math/w_acosh.c: ...here.
6306         * sysdeps/generic/w_acoshf.c: Moved to...
6307         * math/w_acoshf.c: ...here.
6308         * sysdeps/generic/w_acoshl.c: Moved to...
6309         * math/w_acoshl.c: ...here.
6310         * sysdeps/generic/w_acosl.c: Moved to...
6311         * math/w_acosl.c: ...here.
6312         * sysdeps/generic/w_asin.c: Moved to...
6313         * math/w_asin.c: ...here.
6314         * sysdeps/generic/w_asinf.c: Moved to...
6315         * math/w_asinf.c: ...here.
6316         * sysdeps/generic/w_asinl.c: Moved to...
6317         * math/w_asinl.c: ...here.
6318         * sysdeps/generic/w_atan2.c: Moved to...
6319         * math/w_atan2.c: ...here.
6320         * sysdeps/generic/w_atan2f.c: Moved to...
6321         * math/w_atan2f.c: ...here.
6322         * sysdeps/generic/w_atan2l.c: Moved to...
6323         * math/w_atan2l.c: ...here.
6324         * sysdeps/generic/w_atanh.c: Moved to...
6325         * math/w_atanh.c: ...here.
6326         * sysdeps/generic/w_atanhf.c: Moved to...
6327         * math/w_atanhf.c: ...here.
6328         * sysdeps/generic/w_atanhl.c: Moved to...
6329         * math/w_atanhl.c: ...here.
6330         * sysdeps/generic/w_cosh.c: Moved to...
6331         * math/w_cosh.c: ...here.
6332         * sysdeps/generic/w_coshf.c: Moved to...
6333         * math/w_coshf.c: ...here.
6334         * sysdeps/generic/w_coshl.c: Moved to...
6335         * math/w_coshl.c: ...here.
6336         * sysdeps/generic/w_drem.c: Moved to...
6337         * math/w_drem.c: ...here.
6338         * sysdeps/generic/w_dremf.c: Moved to...
6339         * math/w_dremf.c: ...here.
6340         * sysdeps/generic/w_dreml.c: Moved to...
6341         * math/w_dreml.c: ...here.
6342         * sysdeps/generic/w_exp10.c: Moved to...
6343         * math/w_exp10.c: ...here.
6344         * sysdeps/generic/w_exp10f.c: Moved to...
6345         * math/w_exp10f.c: ...here.
6346         * sysdeps/generic/w_exp10l.c: Moved to...
6347         * math/w_exp10l.c: ...here.
6348         * sysdeps/generic/w_exp2.c: Moved to...
6349         * math/w_exp2.c: ...here.
6350         * sysdeps/generic/w_exp2f.c: Moved to...
6351         * math/w_exp2f.c: ...here.
6352         * sysdeps/generic/w_exp2l.c: Moved to...
6353         * math/w_exp2l.c: ...here.
6354         * sysdeps/generic/w_expl.c: Moved to...
6355         * math/w_expl.c: ...here.
6356         * sysdeps/generic/w_fmod.c: Moved to...
6357         * math/w_fmod.c: ...here.
6358         * sysdeps/generic/w_fmodf.c: Moved to...
6359         * math/w_fmodf.c: ...here.
6360         * sysdeps/generic/w_fmodl.c: Moved to...
6361         * math/w_fmodl.c: ...here.
6362         * sysdeps/generic/w_hypot.c: Moved to...
6363         * math/w_hypot.c: ...here.
6364         * sysdeps/generic/w_hypotf.c: Moved to...
6365         * math/w_hypotf.c: ...here.
6366         * sysdeps/generic/w_hypotl.c: Moved to...
6367         * math/w_hypotl.c: ...here.
6368         * sysdeps/generic/w_j0.c: Moved to...
6369         * math/w_j0.c: ...here.
6370         * sysdeps/generic/w_j0f.c: Moved to...
6371         * math/w_j0f.c: ...here.
6372         * sysdeps/generic/w_j0l.c: Moved to...
6373         * math/w_j0l.c: ...here.
6374         * sysdeps/generic/w_j1.c: Moved to...
6375         * math/w_j1.c: ...here.
6376         * sysdeps/generic/w_j1f.c: Moved to...
6377         * math/w_j1f.c: ...here.
6378         * sysdeps/generic/w_j1l.c: Moved to...
6379         * math/w_j1l.c: ...here.
6380         * sysdeps/generic/w_jn.c: Moved to...
6381         * math/w_jn.c: ...here.
6382         * sysdeps/generic/w_jnf.c: Moved to...
6383         * math/w_jnf.c: ...here.
6384         * sysdeps/generic/w_jnl.c: Moved to...
6385         * math/w_jnl.c: ...here.
6386         * sysdeps/generic/w_lgamma.c: Moved to...
6387         * math/w_lgamma.c: ...here.
6388         * sysdeps/generic/w_lgamma_r.c: Moved to...
6389         * math/w_lgamma_r.c: ...here.
6390         * sysdeps/generic/w_lgammaf.c: Moved to...
6391         * math/w_lgammaf.c: ...here.
6392         * sysdeps/generic/w_lgammaf_r.c: Moved to...
6393         * math/w_lgammaf_r.c: ...here.
6394         * sysdeps/generic/w_lgammal.c: Moved to...
6395         * math/w_lgammal.c: ...here.
6396         * sysdeps/generic/w_lgammal_r.c: Moved to...
6397         * math/w_lgammal_r.c: ...here.
6398         * sysdeps/generic/w_log.c: Moved to...
6399         * math/w_log.c: ...here.
6400         * sysdeps/generic/w_log10.c: Moved to...
6401         * math/w_log10.c: ...here.
6402         * sysdeps/generic/w_log10f.c: Moved to...
6403         * math/w_log10f.c: ...here.
6404         * sysdeps/generic/w_log10l.c: Moved to...
6405         * math/w_log10l.c: ...here.
6406         * sysdeps/generic/w_log2.c: Moved to...
6407         * math/w_log2.c: ...here.
6408         * sysdeps/generic/w_log2f.c: Moved to...
6409         * math/w_log2f.c: ...here.
6410         * sysdeps/generic/w_log2l.c: Moved to...
6411         * math/w_log2l.c: ...here.
6412         * sysdeps/generic/w_logf.c: Moved to...
6413         * math/w_logf.c: ...here.
6414         * sysdeps/generic/w_logl.c: Moved to...
6415         * math/w_logl.c: ...here.
6416         * sysdeps/generic/w_pow.c: Moved to...
6417         * math/w_pow.c: ...here.
6418         * sysdeps/generic/w_powf.c: Moved to...
6419         * math/w_powf.c: ...here.
6420         * sysdeps/generic/w_powl.c: Moved to...
6421         * math/w_powl.c: ...here.
6422         * sysdeps/generic/w_remainder.c: Moved to...
6423         * math/w_remainder.c: ...here.
6424         * sysdeps/generic/w_remainderf.c: Moved to...
6425         * math/w_remainderf.c: ...here.
6426         * sysdeps/generic/w_remainderl.c: Moved to...
6427         * math/w_remainderl.c: ...here.
6428         * sysdeps/generic/w_scalb.c: Moved to...
6429         * math/w_scalb.c: ...here.
6430         * sysdeps/generic/w_scalbf.c: Moved to...
6431         * math/w_scalbf.c: ...here.
6432         * sysdeps/generic/w_scalbl.c: Moved to...
6433         * math/w_scalbl.c: ...here.
6434         * sysdeps/generic/w_sinh.c: Moved to...
6435         * math/w_sinh.c: ...here.
6436         * sysdeps/generic/w_sinhf.c: Moved to...
6437         * math/w_sinhf.c: ...here.
6438         * sysdeps/generic/w_sinhl.c: Moved to...
6439         * math/w_sinhl.c: ...here.
6440         * sysdeps/generic/w_sqrt.c: Moved to...
6441         * math/w_sqrt.c: ...here.
6442         * sysdeps/generic/w_sqrtf.c: Moved to...
6443         * math/w_sqrtf.c: ...here.
6444         * sysdeps/generic/w_sqrtl.c: Moved to...
6445         * math/w_sqrtl.c: ...here.
6446         * sysdeps/generic/w_tgamma.c: Moved to...
6447         * math/w_tgamma.c: ...here.
6448         * sysdeps/generic/w_tgammaf.c: Moved to...
6449         * math/w_tgammaf.c: ...here.
6450         * sysdeps/generic/w_tgammal.c: Moved to...
6451         * math/w_tgammal.c: ...here.
6452         * sysdeps/generic/wait.c: Moved to...
6453         * posix/wait.c: ...here.
6454         * sysdeps/generic/wait3.c: Moved to...
6455         * posix/wait3.c: ...here.
6456         * sysdeps/generic/wait4.c: Moved to...
6457         * posix/wait4.c: ...here.
6458         * sysdeps/generic/waitid.c: Moved to...
6459         * posix/waitid.c: ...here.
6460         * sysdeps/generic/waitpid.c: Moved to...
6461         * posix/waitpid.c: ...here.
6462         * sysdeps/generic/wcstoimax.c: Moved to...
6463         * stdlib/wcstoimax.c: ...here.
6464         * sysdeps/generic/wcstol.c: Moved to...
6465         * wcsmbs/wcstol.c: ...here.
6466         * sysdeps/generic/wcstol_l.c: Moved to...
6467         * wcsmbs/wcstol_l.c: ...here.
6468         * sysdeps/generic/wcstoll.c: Moved to...
6469         * wcsmbs/wcstoll.c: ...here.
6470         * sysdeps/generic/wcstoll_l.c: Moved to...
6471         * wcsmbs/wcstoll_l.c: ...here.
6472         * sysdeps/generic/wcstoul.c: Moved to...
6473         * wcsmbs/wcstoul.c: ...here.
6474         * sysdeps/generic/wcstoul_l.c: Moved to...
6475         * wcsmbs/wcstoul_l.c: ...here.
6476         * sysdeps/generic/wcstoull.c: Moved to...
6477         * wcsmbs/wcstoull.c: ...here.
6478         * sysdeps/generic/wcstoull_l.c: Moved to...
6479         * wcsmbs/wcstoull_l.c: ...here.
6480         * sysdeps/generic/wcstoumax.c: Moved to...
6481         * stdlib/wcstoumax.c: ...here.
6482         * sysdeps/generic/wordcopy.c: Moved to...
6483         * string/wordcopy.c: ...here.
6484         * sysdeps/generic/wordexp.c: Moved to...
6485         * posix/wordexp.c: ...here.
6486         * sysdeps/generic/write.c: Moved to...
6487         * io/write.c: ...here.
6488         * sysdeps/generic/writev.c: Moved to...
6489         * misc/writev.c: ...here.
6490         * sysdeps/generic/xmknod.c: Moved to...
6491         * io/xmknod.c: ...here.
6492         * sysdeps/generic/xmknodat.c: Moved to...
6493         * io/xmknodat.c: ...here.
6494         * sysdeps/generic/xpg-strerror.c: Moved to...
6495         * string/xpg-strerror.c: ...here.
6496         * sysdeps/generic/xstat.c: Moved to...
6497         * io/xstat.c: ...here.
6498         * sysdeps/generic/xstat64.c: Moved to...
6499         * io/xstat64.c: ...here.
6500         * catgets/gencat.c: Use "config.h" to refer to the local config.h file.
6501         * stdlib/stdtod_l.c: Use "..." for gmp-impl.h and longlong.h headers.
6502         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust for files moving
6503         out of sysdeps/generic.
6504         * sysdeps/ieee754/ldbl-96/strtold_l.c: Likewise.
6505         * sysdeps/powerpc/elf/libc-start.c: Likewise.
6506         * sysdeps/unix/sysv/linux/dl-sbrk.c: Likewise.
6507         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
6508         * sysdeps/unix/sysv/linux/segfault.c: Likewise.
6509         * sysdeps/unix/sysv/linux/sigreturn.c: Likewise.
6510         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
6511         * sysdeps/unix/sysv/linux/updwtmp.c: Likewise.
6512         * sysdeps/unix/sysv/linux/utmp_file.c: Likewise.
6513         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
6514         * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
6515         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Likewise.
6516         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
6517         * sysdeps/wordsize-32/llabs.c: Likewise.
6518         * sysdeps/wordsize-32/lldiv.c: Likewise.
6519         * sysdeps/wordsize-64/glob.c: Likewise.
6520         * sysdeps/wordsize-64/labs.c: Likewise.
6521         * sysdeps/wordsize-64/ldiv.c: Likewise.
6522         * sysdeps/wordsize-64/strtol.c: Likewise.
6523         * sysdeps/wordsize-64/strtol_l.c: Likewise.
6524         * sysdeps/wordsize-64/strtoul.c: Likewise.
6525         * sysdeps/wordsize-64/strtoul_l.c: Likewise.
6526         * sysdeps/wordsize-64/wcstol.c: Likewise.
6527         * sysdeps/wordsize-64/wcstol_l.c: Likewise.
6528         * sysdeps/wordsize-64/wcstoul.c: Likewise.
6529         * sysdeps/wordsize-64/wcstoul_l.c: Likewise.
6530         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
6531         * wcsmbs/Makefile (strtox-CFLAGS): remove -I../stdlib.
6532         (CPPFLAGS-wcstold_l.c): Add -I../stdlib.
6534 2005-12-13  Roland McGrath  <roland@redhat.com>
6536         * sysdeps/generic/Makefile: Remove remaining bits/endian.h cruft.
6538 2005-12-13  Ulrich Drepper  <drepper@redhat.com>
6540         * sysdeps/generic/signame.c: Removed.
6541         * sysdeps/generic/signame.h: Removed.
6542         * sysdeps/generic/configure.in: Removed.
6543         * sysdeps/generic/Dist: Remove these files.
6545         * sysdeps/generic/det_endian.c: Removed.
6546         * sysdeps/generic/Makefile: Remove rule to build it.
6547         * sysdeps/generic/Dist: Don't distribute it.
6549 2005-12-13  Roland McGrath  <roland@redhat.com>
6551         * sysdeps/powerpc/dl-procinfo.c: New file.
6552         * sysdeps/powerpc/dl-procinfo.h: New file.
6554 2005-12-12  Ulrich Drepper  <drepper@redhat.com>
6556         * io/sys/stat.h: Add restrict to fstatat declarations.
6558 2005-12-10  Ulrich Drepper  <drepper@redhat.com>
6560         * posix/regex_internal.h: Include <stdint.h> if available.
6562 2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
6564         * posix/regex_internal.h (SIZE_MAX): Provide a default definition.
6566 2005-12-08  Ulrich Drepper  <drepper@redhat.com>
6568         * nis/nis_call.c (inetstr2int): Optimize.
6570 2005-12-08  Jakub Jelinek  <jakub@redhat.com>
6572         * nis/nis_call.c (__nisbind_create): Remove __nisbind_destroy,
6573         ->clnt cannot be != NULL.
6574         (__do_niscall): No need to use __nisbind_destroy, __nisbind_next
6575         did it.
6576         (__nisbind_connect): use_auth is already TRUE, otherwise we would
6577         not be here.
6579         * nis/nis_lookup.c (nis_lookup): Remove unnecessary
6580         __nisbind_destroy calls.  __nisbind_next does all that.
6582         * nis/ypclnt.c (yp_update): Before trying default authentication,
6583         free DES descriptor.
6585 2005-12-07  Jakub Jelinek  <jakub@redhat.com>
6587         * nis/nis_table.c (nis_list): Fix memory handling in error case.
6589 2005-12-07  Ulrich Drepper  <drepper@redhat.com>
6591         * nis/nis_table.c (nis_list): Remove have_tablepath, just use the
6592         pointer value itself.
6594 2005-12-06  Ulrich Drepper  <drepper@redhat.com>
6596         * catgets/gencat.c: Use GPL, not LGPL.
6597         * elf/cache.c: Likewise.
6598         * elf/chroot_canon.c: Likewise.
6599         * elf/ldconfig.c: Likewise.
6600         * elf/readlib.c: Likewise.
6601         * iconv/dummy-repertoire.c: Likewise.
6602         * iconv/iconv_charmap.c: Likewise.
6603         * iconv/iconv_prog.c: Likewise.
6604         * iconv/iconvconfig.c: Likewise.
6605         * locale/programs/3level.h: Likewise.
6606         * locale/programs/charmap-dir.c: Likewise.
6607         * locale/programs/charmap-dir.h: Likewise.
6608         * locale/programs/charmap-kw.gperf: Likewise.
6609         * locale/programs/charmap.c: Likewise.
6610         * locale/programs/charmap.h: Likewise.
6611         * locale/programs/config.h: Likewise.
6612         * locale/programs/ld-address.c: Likewise.
6613         * locale/programs/ld-collate.c: Likewise.
6614         * locale/programs/ld-ctype.c: Likewise.
6615         * locale/programs/ld-identification.c: Likewise.
6616         * locale/programs/ld-measurement.c: Likewise.
6617         * locale/programs/ld-messages.c: Likewise.
6618         * locale/programs/ld-monetary.c: Likewise.
6619         * locale/programs/ld-name.c: Likewise.
6620         * locale/programs/ld-numeric.c: Likewise.
6621         * locale/programs/ld-paper.c: Likewise.
6622         * locale/programs/ld-telephone.c: Likewise.
6623         * locale/programs/ld-time.c: Likewise.
6624         * locale/programs/linereader.c: Likewise.
6625         * locale/programs/linereader.h: Likewise.
6626         * locale/programs/locale-spec.c: Likewise.
6627         * locale/programs/locale.c: Likewise.
6628         * locale/programs/localedef.c: Likewise.
6629         * locale/programs/localedef.h: Likewise.
6630         * locale/programs/locarchive.c: Likewise.
6631         * locale/programs/locfile-kw.gperf: Likewise.
6632         * locale/programs/locfile-token.h: Likewise.
6633         * locale/programs/locfile.c: Likewise.
6634         * locale/programs/locfile.h: Likewise.
6635         * locale/programs/repertoire.c: Likewise.
6636         * locale/programs/repertoire.h: Likewise.
6637         * locale/programs/simple-hash.c: Likewise.
6638         * locale/programs/simple-hash.h: Likewise.
6639         * locale/programs/xmalloc.c: Likewise.
6640         * locale/programs/xstrdup.c: Likewise.
6641         * malloc/memusagestat.c: Likewise.
6642         * nscd/aicache.c: Likewise.
6643         * nscd/cache.c: Likewise.
6644         * nscd/connections.c: Likewise.
6645         * nscd/dbg_log.c: Likewise.
6646         * nscd/gai.c: Likewise.
6647         * nscd/getgrgid_r.c: Likewise.
6648         * nscd/getgrnam_r.c: Likewise.
6649         * nscd/gethstbyad_r.c: Likewise.
6650         * nscd/gethstbynm2_r.c: Likewise.
6651         * nscd/getpwnam_r.c: Likewise.
6652         * nscd/getpwuid_r.c: Likewise.
6653         * nscd/grpcache.c: Likewise.
6654         * nscd/hstcache.c: Likewise.
6655         * nscd/initgrcache.c: Likewise.
6656         * nscd/mem.c: Likewise.
6657         * nscd/nscd.c: Likewise.
6658         * nscd/nscd_conf.c: Likewise.
6659         * nscd/pwdcache.c: Likewise.
6660         * posix/getconf.c: Likewise.
6661         * sysdeps/generic/nscd_setup_thread.c: Likewise.
6662         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
6664         * sunrpc/auth_des.c (authdes_pk_create): If conversation key
6665         cannot be created, free memory.
6666         Reported by rprasad@vmware.com.
6668 2005-11-15  Mike Frysinger  <vapier@gentoo.org>
6670         * sysdeps/hppa/bits/setjmp.h: Add _BITS_SETJMP_H preprocessor
6671         protection and allow pthread.h to include bits/setjmp.h as well as
6672         setjmp.h.
6673         * sysdeps/m68k/bits/setjmp.h: Likewise.
6674         * sysdeps/s390/bits/setjmp.h: Make sure only setjmp.h or pthread.h
6675         are allow to include bits/setjmp.h.
6676         * sysdeps/mips/bits/setjmp.h (_JMPBUF_UNWINDS): Cast rhs to match lhs
6677         cast of address.
6678         * sysdeps/sh/bits/setjmp.h: Likewise.
6680 2005-11-12  Jim Meyering  <jim@meyering.net>
6682         * sysdeps/unix/opendir.c (__alloc_dir): Declare STATP parameter
6683         to be pointer to const.
6684         * include/dirent.h: Update decl.
6686 2005-12-05  Roland McGrath  <roland@redhat.com>
6688         * hurd/hurdmalloc.c: Remove $ tag $ magic.
6689         * mach/err_kern.sub: Likewise.
6690         * mach/err_server.sub: Likewise.
6691         * mach/err_us.sub: Likewise.
6692         * mach/error_compat.c: Likewise.
6693         * mach/errorlib.h: Likewise.
6694         * mach/errstring.c: Likewise.
6695         * mach/mach/error.h: Likewise.
6696         * mach/mach_error.c: Likewise.
6697         * mach/mach_error.h: Likewise.
6698         * mach/msg-destroy.c: Likewise.
6699         * mach/msgserver.c: Likewise.
6700         * sysdeps/mach/sys/reboot.h: Likewise.
6702         * sysdeps/generic/dwarf2.h: Replace license text with glibc LGPL.
6704 2005-11-28  Jakub Jelinek  <jakub@redhat.com>
6706         * malloc/tst-mallocfork.c (do_test): Make sure sa_flags is
6707         initialized.  Reported by John Reiser <jreiser@BitWagon.com>.
6709 2005-12-05  Daniel Jacobowitz  <dan@codesourcery.com>
6711         * stdlib/longlong.h: Update from GCC.
6713 2005-12-04  Joseph S. Myers  <joseph@codesourcery.com>
6715         * soft-fp/soft-fp.h: Include <stdlib.h>.
6717         * soft-fp/floatdisf.c (__floatdisf): Return float.
6719 2005-12-05  Roland McGrath  <roland@redhat.com>
6721         * sysdeps/unix/sysv/linux/kernel-features.h
6722         (__ASSUME_POSIX_CPU_TIMERS): New macro, for 2.6.12 and later.
6724 2005-12-03  Ulrich Drepper  <drepper@redhat.com>
6726         * nis/nis_table.c (nis_list): Optimize freeing and reallocation of
6727         result record.
6729         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyaddr_r):
6730         Better sized buffers.  Correct error case handling.
6731         * nis/nis_error.c (nis_sperror_r): Let snprintf determine whether
6732         there is an overflow.
6733         * nis/nss_nisplus/nisplus-service.c: Fix locking to use
6734         _nss_create_tablename.  Avoid unnecessary copying, remove
6735         unnecessary variables, general cleanup.
6736         * nis/nss_nisplus/nisplus-rpc.c: Likewise.
6737         * nis/nss_nisplus/nisplus-proto.c: Likewise..
6738         * nis/nss_nisplus/nisplus-network.c: Fix locking to use
6739         _nss_create_tablename.  Avoid unnecessary copying, general cleanup.
6740         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_getipnodebyname_r):
6741         Removed.
6742         Fix locking to use _nss_create_tablename.  Avoid unnecessary copying,
6743         general cleanup.
6744         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_getntohost_r):
6745         Correctly construct request.
6746         Fix locking to use _nss_create_tablename.  Avoid unnecessary copying,
6747         general cleanup.
6748         * nis/nss_nisplus/nisplus-alias.c: Fix locking to use
6749         _nss_create_tablename.  Avoid unnecessary copying, general cleanup.
6750         * nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_setnetgrent):
6751         Rewrite to use snprintf.
6752         * nis/nss_nisplus/nisplus-publickey.c (_nss_nisplus_netname2user):
6753         Likewise.
6755 2005-12-02  Ulrich Drepper  <drepper@redhat.com>
6757         * nis/nss_nisplus/nisplus-pwd.c (_nss_pwd_create_tablename):
6758         Renamed from _nss_create_tablename.  Export from file (but not DSO).
6759         (pwd_tablename_val): Renamed from tablename_val, mark hidden.
6760         (pwd_tablename_len): Renamed from tablename_len, mark hidden.
6761         Change all users.
6762         * nis/nss_nisplus/nisplus-spwd.c (_nss_create_tablename): Removed.
6763         Use _nss_pwd_create_tablename now.  Use pwd_tablename_val and
6764         pwd_tablename_len.  Remove unnecessary variables, general cleanup.
6766         * nis/nss_nisplus/nisplus-pwd.c: Fix locking to use
6767         _nss_create_tablename.  Avoid unnecessary copying, remove
6768         unnecessary variables, general cleanup.
6769         * nis/nss_nisplus/nisplus-grp.c: Likewise.
6771         * io/Makefile (routines): Add mknodat, xmknodat, mkdirat, mkfifoat.
6772         (static-only-routines): Add mknodat.
6773         * io/Versions [GLIBC_2.4]: Add mkdirat, mkfifoat, __xmknodat.
6774         * io/sys/stat.h: Declare mkditat, mknodat, mkfifoat, __xmknodat.
6775         Define mknodat inline function.
6776         * include/sys/stat.h: Add hidden proto for __xmknodat.
6777         * sysdeps/generic/mkdirat.c: New file.
6778         * sysdeps/generic/mkfifoat.c: New file.
6779         * sysdeps/generic/mknodat.c: New file.
6780         * sysdeps/generic/xmknodat.c: New file.
6781         * sysdeps/unix/mkfifoat.c: New file.
6782         * sysdeps/unix/sysv/linux/mkdirat.c: New file.
6783         * sysdeps/unix/sysv/linux/xmknodat.c: New file.
6785         * sysdeps/generic/xmknod.c: Add one more parameter check.
6787 2005-11-28  Andreas Jaeger  <aj@suse.de>
6789         * sysdeps/unix/sysv/linux/mips/bits/mman.h (MREMAP_FIXED): Added,
6790         Patch by René Rebe <rene@exactcode.de>.
6792 2005-11-27  Ulrich Drepper  <drepper@redhat.com>
6794         * sysdeps/posix/getaddrinfo.c: Avoid RFC 3484 sorting if there are
6795         multiple return records but only one address.
6797         * sysdeps/posix/getaddrinfo.c (gaih_inet): Avoid some code duplication.
6799 2005-11-27  Roland McGrath  <roland@redhat.com>
6801         * sysdeps/unix/sysv/linux/fchownat.c: Include alloca.h, sysdep.h.
6802         Reported by René Rebe <rene@exactcode.de>.
6804 2005-11-27  Ulrich Drepper  <drepper@redhat.com>
6806         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Don't cache
6807         euid and egid.
6809         * nis/nis_table.c (nis_list): Add more free calls in error cases.
6811 2005-11-26  Richard Henderson  <rth@redhat.com>
6813         * sysdeps/alpha/strncmp.S: Don't read too much data when pointers
6814         are co-aligned, and count is aligned with the end of the word.
6816 2005-11-26  Ulrich Drepper  <drepper@redhat.com>
6818         * nis/nis_lookup.c (nis_lookup): Mark RPCTIMEOUT as const.  Pretty
6819         printing.
6821         * nis/nis_table.c (__create_ib_request): Use strdupa instead of
6822         variable size array.
6823         (RPCTIMEOUT): Mark as const.
6825         * nis/ypclnt.c (yp_bind_ypbindprog): Initialize clnt_saddr by hand.
6826         (ypdomainname): Renamed from __ypdomainname.  No need for initializer.
6827         (ypbindlist): Renamed from __ypbindlist.
6828         (do_ypcall): Check memory allocation suceeded before calling
6829         yp_bind_ypbindprog.
6830         (yperr_string): Reduce size of function by using only one gettext call.
6831         (ypbinderr_string): Likewise.
6832         (yp_match): Free response in case memory for return value cannot be
6833         allocated.
6834         (yp_first): Likewise.
6835         (yp_next): Likewise.
6836         (do_ypcall_tr): New function which translates error codes as well.
6837         (yp_match, yp_next, yp_master, yp_order, yp_maplist): Use it.
6838         (yp_all): Correct test for invalid parameter.
6839         Pretty printing.
6840         (RPCTIMEOUT, UDPTIMEOUT): Mark as const.
6842 2005-11-25  Richard Henderson  <rth@redhat.com>
6844         * sysdeps/unix/sysv/linux/alpha/fxstatat.c (__fxstatat): Fix typo.
6845         (__fxstatat64): Alias from __fxstatat; remove other cnp errors.
6846         * sysdeps/unix/sysv/linux/alpha/sigaction.c: Include sys/cdefs.h
6847         and stddef.h.
6848         * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MREMAP_FIXED): Define.
6850 2005-11-25  Ulrich Drepper  <drepper@redhat.com>
6852         * Makeconfig (+cflags): Add -fmerge-all-constants by default.
6854         [BZ #1912]
6855         * nss/function.def: Add entry to use gethostbyname2 for files.
6857 2005-11-25  Thorsten Kukuk  <kukuk@suse.de>
6859         * sysdeps/unix/sysv/linux/fxstatat64.c: Include string.h.
6861 2005-11-25  Ulrich Drepper  <drepper@redhat.com>
6863         [BZ #1926]
6864         * nss/nss_files/files-netgrp.c (_nss_files_endnetgrent): Change
6865         return value type to match expected type.
6867         [BZ #1925]
6868         * nis/ypclnt.c (yp_order): Correct test for invalid parameter.
6870 2005-11-24  Ulrich Drepper  <drepper@redhat.com>
6872         * scripts/check-c++-types.sh: Improve comments.
6874         * scripts/check-local-headers.sh: New file.
6875         * Makefile (tests): Run check-local-headers.sh.
6877 2005-11-23  Thorsten Kukuk  <kukuk@suse.de>
6879         * include/sys/sendfile.h: New file.
6881 2005-11-24  Andreas Schwab  <schwab@suse.de>
6883         * time/sys/time.h: Remove nonnull attribute from futimesat.
6885 2005-11-22  Ulrich Drepper  <drepper@redhat.com>
6887         * nscd/connections.c (sendfileall): Define.
6888         (handle_request): Use it instead of sendfile call.
6889         * nscd/nscd-client.h: Declare sendfileall.
6890         * nscd/aicache.c: Use sendfileall instead of sendfile.
6891         * nscd/grpcache.c: Likewise.
6892         * nscd/hstcache.c: Likewise.
6893         * nscd/initgrcache.c: Likewise.
6894         * nscd/pwdcache.c: Likewise.
6896         [BZ #1908]
6897         * manual/install.texi (Tools for Compilation): Require gawk.
6899 2005-11-22  Jakub Jelinek  <jakub@redhat.com>
6901         * sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
6902         unused is_static field from slotinfo array.
6904 2005-11-21  Jakub Jelinek  <jakub@redhat.com>
6906         * sunrpc/bindrsvprt.c (bindresvport): Wrap around to startport
6907         in the loop if port is bigger than endport, initially set to
6908         ENDPORT.  When changing startport, set endport and port
6909         appropriately.
6911 2005-11-21  Ulrich Drepper  <drepper@redhat.com>
6913         * Makefile.in: Remove RCS ID line.
6914         * config-name.in: Likewise.
6915         * config.make.in: Likewise.
6916         * malloc/arena.c: Likewise.
6917         * malloc/hooks.c: Likewise.
6918         * malloc/malloc.c: Likewise.
6919         * manual/dir: Likewise.
6920         * math/math_private.h: Likewise.
6921         * resolv/gethnamaddr.c: Likewise.
6922         * scripts/mkinstalldirs: Likewise.
6923         * sunrpc/rpc_clntout.c: Likewise.
6924         * sunrpc/rpc_cout.c: Likewise.
6925         * sunrpc/rpc_hout.c: Likewise.
6926         * sunrpc/rpc_main.c: Likewise.
6927         * sunrpc/rpc_parse.c: Likewise.
6928         * sunrpc/rpc_sample.c: Likewise.
6929         * sunrpc/rpc_scan.c: Likewise.
6930         * sunrpc/rpc_svcout.c: Likewise.
6931         * sunrpc/rpc_tblout.c: Likewise.
6932         * sunrpc/rpc_util.c: Likewise.
6933         * sysdeps/unix/sysv/linux/sys/quote.h: Likewise.
6935         * nscd/nscd_helper.c: Pretty printing.
6937 2005-11-19  Roland McGrath  <roland@redhat.com>
6939         * elf/elf.h: Revert last change.
6941 2005-11-19  Jakub Jelinek  <jakub@redhat.com>
6943         * sysdeps/unix/sysv/linux/ia64/bits/shm.h (shmatt_t): New type.
6944         (struct shmid_ds): Use it for shm_nattch field.
6946 2005-11-18  Jakub Jelinek  <jakub@redhat.com>
6948         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): If FILE is NULL,
6949         set access and modification times of the file referenced by FD.
6950         * sysdeps/generic/futimesat.c (futimesat): Don't return EINVAL if
6951         FILE is NULL.  Don't check FD if FILE is absolute path.
6953 2005-11-19  Ulrich Drepper  <drepper@redhat.com>
6955         * nscd/nscd_gethst_r.c (nscd_gethst_r): Avoid unnecesary read call
6956         if there are no aliases.
6958         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-connections.c,
6959         CFLAGS-pwdcache.c, CFLAGS-grpcache.c, CFLAGS-hstcache.c,
6960         CFLAGS-aicache.c, CFLAGS-initgrcache.c): Add -DHAVE_SENDFILE.
6961         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_SENDFILE):
6962         Define.
6963         * nscd/pwdcache.c [HAVE_SENDFILE]: Include <sys/sendfile.h> and
6964         <kernel-features.h>.
6965         [HAVE_SENDFILE] (cache_addpw): Use sendfile to transmit positive
6966         result.
6967         * nscd/grpcache.c: Likewise.
6968         * nscd/hstcache.c: Likewise.
6969         * nscd/aicache.c: Likewise.
6970         * nscd/initgrcache.c: Likewise.
6971         * nscd/connectionc.c: Likewise.
6973 2005-11-18  Andreas Schwab  <schwab@suse.de>
6975         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Remove useless alias.
6977         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S: Handle
6978         NO_WEAK_ALIAS.
6979         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S: Likewise.
6981 2005-11-18  Paul Brook  <paul@codesourcery.com>
6983         * sysdeps/unix/sysv/linux/m68k/bits/mman.h (MREMAP_FIXED): New macro.
6985         * nscd/grpcache.c: Include <sys/socket.h>.
6986         * nscd/nscd_stat.c: Likewise.
6987         * nscd/pwdcache.c: Likewise.
6988         * sysdeps/unix/sysv/linux/unlinkat.c: Include <stdlib.h>, <sysdep.h>.
6990 2005-11-17  Ulrich Drepper  <drepper@redhat.com>
6992         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Define SHM_NORESERVE.
6993         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
6994         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
6995         * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Likewise.
6996         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
6997         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
6998         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
6999         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
7001 2005-11-17  Steven Munroe  <sjmunroe@us.ibm.com>
7003         [BZ #1877]
7004         * string/test-strncmp.c (do_test_limit): Handle zero length and
7005         non-zero align values.
7006         (test_main): Correct do_test_limit tests for 64-bit.
7008 2005-11-15  Steven Munroe  <sjmunroe@us.ibm.com>
7010         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_HAS_SPE,
7011         PPC_FEATURE_HAS_EFP_SINGLE, PPC_FEATURE_HAS_EFP_DOUBLE,
7012         PPC_FEATURE_NO_TB, PPC_FEATURE_POWER4, PPC_FEATURE_POWER5,
7013         PPC_FEATURE_POWER5_PLUS, PPC_FEATURE_CELL, PPC_FEATURE_970):
7014         Define to match 2.6.15 kernel.
7016         * sysdeps/powerpc/fpu/e_sqrt.c: Remove dl-procinfo.h include.
7017         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
7018         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
7020 2005-11-17  Roland McGrath  <roland@redhat.com>
7022         * elf/elf.h (R_PPC64_ADDR30): Renamed to R_PPC64_REL30.
7024 2005-11-17  Jakub Jelinek  <jakub@redhat.com>
7026         * io/sys/stat.h (fstatat): If __REDIRECT_NTH isn't defined,
7027         define fstatat to fstatat64.
7029 2005-11-17  Steven Munroe  <sjmunroe@us.ibm.com>
7031         [BZ #1877]
7032         * string/test-strncmp.c (do_test_limit): New function.
7033         (do_test) Add cast to eliminate compiler warnings.
7034         (do_random_tests) Add cast to eliminate compiler warnings.
7035         (test_main) Add do_test_limit tests.
7036         * sysdeps/powerpc/powerpc32/strncmp.S: Test length before unaligned
7037         load.
7038         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
7040 2005-11-17  Ulrich Drepper  <drepper@redhat.com>
7042         * include/resolv.h: Include <stdbool.h>.
7043         Patch by Paul Brook.
7045         * io/sys/stat.h: Use __const not const in fstatat prototypes.
7047 2005-11-08  H.J. Lu  <hongjiu.lu@intel.com>
7049         * sysdeps/wordsize-32/Makefile (CPPFLAGS-divdi3.c): Set to
7050         -Din_divdi3_c.
7051         * sysdeps/wordsize-32/symbol-hacks.h: Skip if in_divdi3_c is defined.
7053 2005-11-16  Jakub Jelinek  <jakub@redhat.com>
7055         * sysdeps/unix/sysv/linux/fchownat.c: Include string.h.
7056         * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
7057         * sysdeps/unix/sysv/linux/i386/fchownat.c: Likewise.
7058         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Likewise.
7059         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
7060         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
7061         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
7062         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Likewise.
7064 2005-11-16  Ulrich Drepper  <drepper@redhat.com>
7066         * iconvdata/Makefile (modules): Add ISO_11548-1.
7067         (distribute): Add iso_11548-1.c.
7068         * iconvdata/gconv-modules: Add entries for ISO 11548-1.
7069         * iconvdata/TESTS: Add entry for ISO 11548-1.
7071         [BZ 1872]
7072         * iconvdata/iso_11548-1.c: New file.
7073         * iconvdata/testdata/ISO_11548-1: New file.
7074         * iconvdata/testdata/ISO_11548-1..UTF8: New file.
7075         Patch by Samuel Thibault <samuel.thibault@ens-lyon.org>.
7077 2005-11-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
7079         * sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.
7081 2005-11-15  Ulrich Drepper  <drepper@redhat.com>
7083         [BZ 1865]
7084         * inet/netinet/icmp6.h: More updates for RFC3542.
7085         * inet/netinet/ip6.h: Likewise.
7086         * sysdeps/unix/sysv/linux/bits/in.h: Adjust for current kernel sources.
7087         Patch by David L Stevens <dlstevens@us.ibm.com>.
7089         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
7090         Return -1 on failure.
7091         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
7092         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise..
7093         * sysdeps/unix/sysv/linux/fxstatat64.c [__ASSUME_STAT64_SYSCALL]
7094         (__fxstatat64): Handle errors.
7096         * io/sys/poll.h: Add comment explaining poll is a cancellation  point.
7098         * sysdeps/unix/sysv/linux/syscalls.list (epoll_wait): Align with
7099         poll, make cancelable.
7100         * sysdeps/unix/sysv/linux/sys/epoll.h: Add comment explaining
7101         epoll_wait is a cancellation point.
7103 2005-11-15  Jakub Jelinek  <jakub@redhat.com>
7105         * io/sys/stat.h (fstatat): Don't use __THROW together with
7106         __REDIRECT_NTH.
7108 2005-11-14  Ulrich Drepper  <drepper@redhat.com>
7110         * elf/dl-open.c [!SHARED]: Remove _dl_tls_static_size definition.
7111         * sysdeps/generic/libc-tls.c: Initialize _dl_tls_static_size here.
7113 2005-11-11  Ulrich Drepper  <drepper@redhat.com>
7115         * io/Makefile (routines): Add fstatat, fstatat64, fxstatat, fxstatat64,
7116         fchownat, and unlinkat.
7117         (static-only-routines): Add fstatat and fstatat64.
7118         (tests): Add tst-unlinkat, tst-fstatat, tst-futimesat, tst-renameat,
7119         and tst-fchownat.
7120         * io/Versions [GLIBC_2.4]: Add fchownat, __fxstatat, __fxstatat64,
7121         and unlinkat.
7122         * io/fcntl.h: Define AT_FDCWD, AT_SYMLINK_NOFOLLOW, and AT_REMOVEDIR.
7123         * io/fstatat.c: New file.
7124         * io/fstatat64.c: New file.
7125         * io/sys/stat.h: Declare fstatat, fstatat64, __fxstatat, __fxstatat64
7126         and define fstatat and fstatat64 inline functions.
7127         * libio/stdio.h: Declare renameat.
7128         * misc/Makefile (routines): Add futimesat.
7129         * misc/Versions [GLIBC_2.4]: Add futimesat.
7130         * posix/unistd.h: Declare fchownat and unlinkat.
7131         * stdio-common/Makefile (routines): Add renameat.
7132         * stdio-common/Versions [GLIBC_2.4]: Add renameat.
7133         * sysdeps/generic/fchownat.c: New file.
7134         * sysdeps/generic/futimesat.c: New file.
7135         * sysdeps/generic/fxstatat.c: New file.
7136         * sysdeps/generic/fxstatat64.c: New file.
7137         * sysdeps/generic/renameat.c: New file.
7138         * sysdeps/generic/unlinkat.c: New file.
7139         * sysdeps/unix/sysv/linux/fchownat.c: New file.
7140         * sysdeps/unix/sysv/linux/futimesat.c: New file.
7141         * sysdeps/unix/sysv/linux/fxstatat.c: New file.
7142         * sysdeps/unix/sysv/linux/fxstatat64.c: New file.
7143         * sysdeps/unix/sysv/linux/renameat.c: New file.
7144         * sysdeps/unix/sysv/linux/unlinkat.c: New file.
7145         * sysdeps/unix/sysv/linux/alpha/fxstatat.c: New file.
7146         * sysdeps/unix/sysv/linux/i386/fchownat.c: New file.
7147         * sysdeps/unix/sysv/linux/i386/fxstatat.c: New file.
7148         * sysdeps/unix/sysv/linux/m68k/fchownat.c: New file.
7149         * sysdeps/unix/sysv/linux/m68k/fxstatat.c: New file.
7150         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: New file.
7151         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fxstatat.c: New file.
7152         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: New file.
7153         * sysdeps/unix/sysv/linux/s390/s390-32/fxstatat.c: New file.
7154         * sysdeps/unix/sysv/linux/sh/fchownat.c: New file.
7155         * sysdeps/unix/sysv/linux/sh/fxstatat.c: New file.
7156         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: New file.
7157         * sysdeps/unix/sysv/linux/sparc/sparc32/fxstatat.c: New file.
7158         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstatat.c: New file.
7159         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: New file.
7160         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat64.c: New file.
7161         * time/sys/time.h: Declare futimesat.
7162         * include/fcntl.h: Declare __atfct_seterrno.
7163         * sysdeps/unix/sysv/linux/openat.c (__atfct_seterrno): New function.
7164         Split out from openat code and called.
7165         (do_test): Allow openat to fail with ENOSYS.  Handle AT_FDCWD.
7166         * sysdeps/generic/openat.c: Handle AT_FDCWD.
7167         * sysdeps/generic/openat64.c: Likewise.
7168         * io/tst-unlinkat.c: New file.
7169         * io/tst-fstatat.c: New file.
7170         * io/tst-futimesat.c: New file.
7171         * io/tst-renameat.c: New file.
7172         * io/tst-fchownat.c: New file.
7173         * io/tst-openat.c: Don't fail if openat is not implemented.
7175         * sysdeps/unix/sysv/linux/powerpc/chown.c: Don't provide backward
7176         compatibility code if new kernel is guaranteed.
7178         * time/sys/time.h: Add a few nonnull attributes.
7180 2005-11-09  Ulrich Drepper  <drepper@redhat.com>
7182         * io/fcntl.h: Declare openat and openat64.
7183         * io/Makefile (routines): Add openat and openat64.
7184         (tests): Add tst-openat.
7185         * io/Versions: Add openat and openat64 for GLIBC_2.4.
7186         * sysdeps/generic/openat.c: New file.
7187         * sysdeps/generic/openat64.c: New file.
7188         * sysdeps/unix/sysv/linux/openat.c: New file.
7189         * sysdeps/unix/sysv/linux/openat64.c: New file.
7190         * io/tst-openat.c: New file.
7192         * sysdeps/generic/check_fds.c (check_one_fd): For writable
7193         descriptors, use /dev/full.
7194         (__libc_check_standard_fds): Reverse modes so that common operations on
7195         the descriptors fail.
7196         * sysdeps/unix/sysv/linux/device-nrs.h: Add info for /dev/full.
7198 2005-11-07  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
7200         * elf/elf.h (R_M32R_REL32): New macro.
7202 2005-11-05  Marcus Brinkmann  <marcus@gnu.org>
7204         * sysdeps/mach/hurd/bits/stat.h (S_IMMAP0): New macro.
7205         (S_ISPARE): Unset the S_IMMAP0 flag.
7207 2005-11-07  Roland McGrath  <roland@redhat.com>
7209         * configure.in: Grok --with-cpu=CPU option.  If given, search for
7210         sysdeps/.../machine/CPU subdirs, and give error if none are found.
7211         * configure: Regenerated.
7212         * config.make.in (with-cpu): New substituted variable.
7213         * Makeconfig (+cflags): Add -mcpu=$(with-cpu) if set.
7215         * malloc/malloc.c (munmap_chunk): Suppress warnings from last change.
7217         * sysdeps/unix/bsd/sun: Directory and all subdirectories removed,
7218         saved in ports repository.
7219         * sysdeps/unix/sysv/linux/tcflush.c: Rewritten.
7220         * sysdeps/unix/sysv/linux/tcflow.c: Rewritten.
7222 2005-11-06  Ulrich Drepper  <drepper@redhat.com>
7224         * malloc/malloc.c (munmap_chunk): Add sanity checks.
7226         * sysdeps/pthread/configure: Fix comment.
7228 2005-11-05  Ulrich Drepper  <drepper@redhat.com>
7230         * configure.in: Remove gnu_as definition and everything using it.
7231         * config.make.in: Remove gnu-as.
7232         * config.h.in: Remove HAVE_GNU_AS.
7234         * configure.in: Remove gnu_ld definition and everything using it.
7235         * config.h.in: Remove HAVE_GNU_LD.
7236         * config.make.in: Remove gnu-ld.
7237         * csu/Makefile: Remove use of gnu-ld.
7238         * csu/munch.awk: Removed.
7239         * csu/munch-tmpl.c: Removed.
7240         * include/libc-symbols.h: Remove use of HAVE_GNU_LD.
7241         * posix/execl.c: Likewise.
7242         * posix/execv.c: Likewise.
7243         * stdio-common/psignal.c: Likewise.
7244         * stdlib/exit.c: Likewise.
7245         * string/strsignal.c: Likewise.
7246         * string/tester.c: Likewise.
7247         * sysdeps/generic/errlist.c: Likewise.
7248         * sysdeps/generic/getenv.c: Likewise.
7249         * sysdeps/generic/getgroups.c: Likewise.
7250         * sysdeps/generic/init-posix.c: Likewise.
7251         * sysdeps/posix/gettimeofday.c: Likewise.
7252         * sysdeps/posix/system.c: Likewise.
7253         * sysdeps/unix/bsd/init-posix.c: Likewise.
7254         * sysdeps/unix/bsd/ulimit.c: Likewise.
7255         * sysdeps/unix/bsd/sun/m68k/brk.S: Likewise.
7256         * sysdeps/unix/bsd/sun/m68k/sethostid.S: Likewise.
7257         * sysdeps/unix/bsd/sun/sparc/sethostid.S: Likewise.
7258         * sysdeps/unix/i386/brk.S: Likewise.
7259         * sysdeps/unix/sparc/brk.S: Likewise.
7261         * configure.in: Remove test for support for subtracting local labels.
7262         * config.h.in: Remove HAVE_SUBTRACT_LOCAL_LABELS.
7263         * stdio-common/vfprintf.c: Remove test of
7264         HAVE_SUBTRACT_LOCAL_LABELS.
7266         * configure.in: If init_array/fini_array support is not available,
7267         bail out.
7268         * config.h.in: Remove trace of optional init_array/fini_array support.
7269         * config.make.in: Likewise.
7270         * csu/elf-init.c: Likewise.
7271         * dlfcn/dlfcn.c: Likewise.
7272         * elf/soinit.c: Likewise.
7273         * sysdeps/ia64/elf/initfinit.c: Likewise.
7275 2005-11-04  Roland McGrath  <roland@redhat.com>
7277         * sysdeps/i386/configure.in (libc_mtune_example): Variable removed.
7278         * sysdeps/i386/configure: Regenerated.
7280         [BZ #1089]
7281         * configure.in: Change order of add-on sysdeps directories,
7282         so they are interleaved with main sysdeps directories.
7283         * configure: Regenerated.
7285 2005-11-03  Roland McGrath  <roland@redhat.com>
7287         * NEWS: Synch with 2.3 branch updates.
7289 2005-11-03  Ulrich Drepper  <drepper@redhat.com>
7291         * sunrpc/svc.c (svc_getreq_poll): Fix inefficient loop test.
7293 2005-11-03  Roland McGrath  <roland@redhat.com>
7295         [BZ #1548]
7296         * sunrpc/svc.c (svc_getreqset): Use ffsl instead of ffs on fd_mask,
7297         make sure constant is long.
7298         From Jay Lan <jlan@engr.sgi.com>.
7300 2005-11-03  Ulrich Drepper  <drepper@redhat.com>
7302         [BZ #1774]
7303         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use simple
7304         gethostbyname2 lookup if AI_V4MAPPED|AI_ALL is set.
7306         * sysdeps/posix/getaddrinfo.c (gaih_inet): Avoid alloca when possible
7307         while looking for scope delimiter.
7308         Some pretty printing.
7310 2005-10-31  Steven Munroe  <sjmunroe@us.ibm.com>
7312         * sysdeps/powerpc/powerpc64/Makefile
7313         (sysdep_routines, elide-routines.os): Add hp-timing.
7314         * sysdeps/powerpc/powerpc64/hp-timing.c: New file.
7315         * sysdeps/powerpc/powerpc64/hp-timing.h: New file.
7316         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: New file.
7318 2005-10-31  Ulrich Drepper  <drepper@redhat.com>
7320         * resolv/res_init.c (__res_iclose): New function.  Broken out of
7321         res_nclose.  Take addition parameter which determines whether
7322         addresses should be freed.
7323         (res_nclose): Call __res_iclose.
7324         (res_thread_freeres): Likewise.
7325         * resolv/res_data.c (res_close): Call __res_iclose.
7326         * resolv/res_libc.c (res_init): No need to separately free the
7327         addresses.
7328         (__res_maybe_init): Likewise.
7329         * resolv/res_send.c: Use __res_iclose instead of res_nclose.
7330         * resolv/Versions [GLIBC_PRIVATE]: Add __res_iclose.
7331         * include/resolv.h: Declare __res_iclose.
7332         Add libc_hidden_proto for __res_iclose.
7333         * hesiod/hesiod.c (__hesiod_res_set): No need to free name server
7334         addresses here again.
7336         [BZ #1579]
7337         * debug/execinfo.h: Change backtrace_symbols_fd comment.
7339 2005-10-24  H.J. Lu  <hongjiu.lu@intel.com>
7341         * sysdeps/ia64/fpu/libm-symbols.h (WEAK_LIBM_ENTRY): Add "__"
7342         prefix to LOCAL_LIBM_ENTRY.
7343         (WEAK_LIBM_END): Add "__" prefix to LOCAL_LIBM_END.
7345 2005-10-26  Jakub Jelinek  <jakub@redhat.com>
7347         * elf/dl-conflict.c (_dl_resolve_conflicts): Use _dl_debug_printf
7348         instead of _dl_printf to print conflict processing debug message.
7349         Reported by John Reiser <jreiser@BitWagon.com>.
7351 2005-10-30  Ulrich Drepper  <drepper@redhat.com>
7353         * misc/hsearch_r.c (hsearch_r): Remove duplicate test.
7354         Patch by Chris Caputo <ccaputo@alt.net>.
7356 2005-10-28  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
7358         * sysdeps/unix/sh/sysdep.S: Remove unnecessary weak_alias.
7359         * sysdeps/unix/sysv/linux/sh/socket.S: Honor NO_WEAK_ALIAS.
7361 2005-10-28  Thorsten Kukuk  <kukuk@suse.de>
7363         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey): Fix off
7364         by one error.
7366 2005-10-24  Roland McGrath  <roland@redhat.com>
7368         [BZ #1534]
7369         * include/string.h: Use libc_hidden_proto for strnlen,
7370         not libc_hidden_builtin_proto.
7372 2005-10-23  Ulrich Drepper  <drepper@redhat.com>
7374         * rt/mqueue.h: Cleanups.
7376 2005-10-22  Roland McGrath  <roland@redhat.com>
7378         [BZ #1254]
7379         * sysdeps/mach/hurd/getpeername.c (__getpeername): Fix last change.
7380         From Samuel Thibault <samuel.thibault@ens-lyon.org>.
7382 2005-10-17  Thomas Schwinge  <tschwinge@gnu.org>
7384         [BZ #1252]
7385         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Don't use ?: as lvalue.
7386         * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
7388 2005-10-20  Ulrich Drepper  <drepper@redhat.com>
7390         * iconvdata/ibm1364.h (__ucs4_to_ibm1364sb): Fix one mapping.
7391         * iconvdata/ibm1388.h (__ucs4_to_ibm1388sb): Likewise.
7392         * iconvdata/testdata/IBM1364: Add missing valid input.
7393         * iconvdata/testdata/IBM1388: Likewise.
7394         * iconvdata/testdata/IBM1364..UTF8: Adjust appropriately.
7395         * iconvdata/testdata/IBM1388..UTF8: Likewise.
7396         Patch by Masahide Washizawa <washi@jp.ibm.com>.
7398 2005-08-23  GOTO Masanori  <gotom@debian.or.jp>
7400         [BZ #1498]
7401         * sysdeps/alpha/remqu.S: Return the correct result when the same
7402         dividend and divisor are provided, and they're negative numbers.
7403         * sysdeps/alpha/divqu.S: Likewise.
7405 2005-10-18  Steven Munroe  <sjmunroe@us.ibm.com>
7407         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h (TESTS):
7408         Define.
7409         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h (TESTS):
7410         Likewise.
7412 2005-10-19  Ulrich Drepper  <drepper@redhat.com>
7414         * iconvdata/Makefile (modules): Add IBM1364, IBM1371, IBM1388, IBM1390,
7415         and IBM1399.
7416         (distribute): Add ibm1364.c, ibm1364.h, ibm1371.c, ibm1371.h,
7417         ibm1388.c, ibm1388.h, ibm1390.c, ibm1390.h, ibm1399.c, and ibm1399.h.
7418         * iconvdata/TESTS: Add entries for IBM1364, IBM1371, IBM1388, IBM1390,
7419         and IBM1399.
7420         * iconvdata/gconv-modules: Likewise.
7421         * iconvdata/ibm1364.c: New file.
7422         * iconvdata/ibm1364.h: New file.
7423         * iconvdata/ibm1371.c: New file.
7424         * iconvdata/ibm1371.h: New file.
7425         * iconvdata/ibm1388.c: New file.
7426         * iconvdata/ibm1388.h: New file.
7427         * iconvdata/ibm1390.c: New file.
7428         * iconvdata/ibm1390.h: New file.
7429         * iconvdata/ibm1399.c: New file.
7430         * iconvdata/ibm1399.h: New file.
7431         * iconvdata/testdata/IBM1364: New file.
7432         * iconvdata/testdata/IBM1364..UTF8: New file.
7433         * iconvdata/testdata/IBM1371: New file.
7434         * iconvdata/testdata/IBM1371..UTF8: New file.
7435         * iconvdata/testdata/IBM1388: New file.
7436         * iconvdata/testdata/IBM1388..UTF8: New file
7437         * iconvdata/testdata/IBM1390: New file.
7438         * iconvdata/testdata/IBM1390..UTF8: New file.
7439         * iconvdata/testdata/IBM1399: New file.
7440         * iconvdata/testdata/IBM1399..UTF8: New file.
7441         Original patch by Masahide Washizawa <washi@jp.ibm.com>.
7443 2005-10-17  Roland McGrath  <roland@redhat.com>
7445         * elf/dl-load.c (MAP_COPY): When undefined, define to
7446         MAP_PRIVATE|MAP_DENYWRITE instead of just MAP_PRIVATE.
7447         (_dl_map_object_from_fd): Don't use MAP_DENYWRITE explicitly.
7449 2005-10-17  Martin Schwidefsky  <schwidefsky@de.ibm.com>
7451         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h (SC_STSZ, TESTS):
7452         Define.
7453         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.h (SC_STSZ, TESTS):
7454         Likewise.
7456 2005-10-17  Ulrich Drepper  <drepper@redhat.com>
7458         * libio/oldfileops.c (_IO_old_file_xsputn): Fix last patch.
7459         Return EOF not 0.
7461         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Also
7462         allow EACCES errors when opening /proc for now.
7464         * wctype/wcfuncs.c: Don't use expensive wide char lookups in isw*
7465         functions if character is in ASCII range.
7466         * wctype/wcfuncs_l.c: Likewise.
7468 2005-05-03  Robert Millan  <robertmh@gnu.org>
7470         * abi-tags (.*-.*-knetbsd.*-gnu.*): New match, with ABI value 4.
7471         * elf/cache.c (print_entry): Match the kNetBSD ABI tag.
7473 2005-10-16  Alfred M. Szmidt  <ams@gnu.org>
7475         * sysdeps/generic/bits/mman.h
7476         [__USE_GNU] (MREMAP_MAYMOVE, REMAP_FIXED): New macros.
7478 2005-10-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
7480         * sysdeps/unix/sysv/linux/sh/makecontext.S: New file.
7481         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: New file.
7482         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: New file.
7483         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: New file.
7484         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: New file.
7485         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: New file.
7486         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: New file.
7487         * sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h: New file.
7488         * sysdeps/unix/sysv/linux/sh/sh4/ucontext_i.h: New file.
7489         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Removed.
7490         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: New file.
7491         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: New file.
7493 2005-09-13  Jakub Jelinek  <jakub@redhat.com>
7495         [BZ #1228]
7496         * include/limits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Make sure these
7497         are defined for -D_GNU_SOURCE or -D_ISOC99_SOURCE even when not
7498         -std=c99.
7500 2005-10-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
7502         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Define MREMAP_FIXED.
7504 2005-08-05  Alfred M. Szmidt  <ams@gnu.org>
7506         [BZ #1252]
7507         * sysdeps/mach/hurd/setitimer.c (restart_itimer): Move static fn
7508         forward decl out of function body.
7509         * sysdeps/mach/hurd/profil.c: Likewise.
7511 2005-10-16  Roland McGrath  <roland@frob.com>
7513         [BZ #1254]
7514         * sysdeps/mach/hurd/getpeername.c (__getpeername): Respect *LEN
7515         byte limit when setting ADDR->sa_family.
7516         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
7518         [BZ #1253]
7519         * sysdeps/mach/hurd/dl-sysdep.h
7520         [SHARED] (DL_ARGV_NOT_RELRO): New macro.
7522         [BZ #1253]
7523         * sysdeps/mach/hurd/i386/init-first.c (init): Make cast kosher.
7524         (_hurd_stack_setup): Don't declare with arguments and ellipsis.
7525         Use __builtin_frame_address and __builtin_return_address.
7526         (_dl_init_first): Likewise.
7528         [BZ #1249]
7529         * sysdeps/mach/hurd/i386/init-first.c (_cthread_init_routine): Declare
7530         as weak extern.
7531         (init): Check for it being undefined.
7533 2005-10-16  Daniel Jacobowitz  <dan@codesourcery.com>
7534             Roland McGrath  <roland@redhat.com>
7536         * Makerules [module-names] (extra-modules-build): New variable.
7537         ($(extra-modules-build:%=$(objpfx)%.so)): New static pattern rule.
7538         Depend on libc.so and libc_nonshared.a.
7539         * dlfcn/Makefile ($(test-modules)): Remove static pattern rule.
7540         * elf/Makefile (modules-names-nobuild): New variable, add filtmod1.
7541         ($(test-modules)): Remove static pattern rule.
7543 2005-10-15  Thomas Schwinge  <tschwinge@gnu.org>
7545         * include/dirent.h: Include <stdbool.h>.
7546         * sysdeps/mach/hurd/fdopendir.c: Include <fcntl.h>.
7547         (fdopendir): Correct argument to _hurd_fd_get().
7548         * sysdeps/mach/hurd/opendir.c (__opendir): Remove stray `}'.
7550 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
7552         [BZ #1224]
7553         * posix/regcomp.c (init_word_char, duplicate_node_closure,
7554         fetch_token, peek_token_bracket, build_range_exp,
7555         build_collating_symbol): Remove forward decls; no longer needed
7556         now that we use prototypes.
7558 2005-10-15  Ulrich Drepper  <drepper@redhat.com>
7560         [BZ #1221]
7561         * posix/regex_internal.h: Remove last traces of
7562         RE_NO_INTERNAL_PROTOTYPES.
7564         [BZ #968]
7565         * string/strxfrm_l.c (STRXFRM): Fix exit conditions of two loops.
7567         * sysdeps/unix/fdopendir.c (fdopendir): Make sure descriptor
7568         allows reading.
7570         * wcsmbs/tst-mbrtowc2.c: Use de_DE.UTF-8 instead of en_US.UTF-8.
7571         * wcsmbs/Makefile: Define tst-mbrtowc2-ENV.
7573         * posix/regexec.c: Finish prototyping of static functions.
7574         * posix/regex_internal.c: Likewise.
7576 2005-10-14  Roland McGrath  <roland@frob.com>
7578         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): New function, broken
7579         out of ...
7580         (__opendir): ... here.  Call it.
7581         * sysdeps/mach/hurd/fdopendir.c: New file.
7583 2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7585         [BZ #865]
7586         * math/tgmath.h: Correctly determine result type for
7587         __TGMATH_BINARY_REAL_ONLY,
7588         __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
7589         __TGMATH_TERNARY_REAL_ONLY, and __TGMATH_BINARY_REAL_IMAG.
7591 2005-09-17  Andreas Jaeger  <aj@suse.de>
7593         [BZ #865]
7594         * math/test-tgmath-int.c: New file.
7595         * math/Makefile (tests): Add test-tgmath-int.
7597 2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7599         [BZ #804]
7600         * malloc/tst-mtrace.sh: Work around for bootstraping.
7602         * locale/programs/ld-collate.c (collate_output): Fix counting of
7603         elements.  Don't limit table size.  Use correct secondary hash
7604         function.
7605         * locale/localeinfo.h (LIMAGIC): Change value returned for LC_COLLATE.
7606         * posix/fnmatch_loop.c: Adjust for changed secondary hash function.
7607         * posix/regcomp.c: Likewise.
7609         * time/asctime.c (asctime_internal): Use __snprintf instead of
7610         snprintf to avoid PLT entry.
7612         * sysdeps/unix/opendir.c (__opendir): Pass extra argument to
7613         __alloc_dir.
7614         (__alloc_dir): Only close descriptor on error if new parameter is true.
7615         * sysdeps/unix/fdopendir.c (fdopendir): Pass extra argument to
7616         __alloc_dir.  Don't close fd on error.
7617         * include/dirent.h (__alloc_dir): Adjust prototype.
7619         * stdlib/Makefile (tests): Add tst-ucontext-off.
7620         * stdlib/tst-ucontext-off.c: New file.
7621         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h (TESTS): Define.
7622         * sysdeps/unix/sysv/linux/i386/ucontext_i.h (TESTS): Likewise.
7624         [BZ #1468]
7625         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Fix values for
7626         oFPREGS, oSIGMASK, oFPREGSMEM, and oMXCSR.
7627         Patch by Nicholas Miell <nmiell@comcast.net>.
7629         [BZ #1460]
7630         * time/asctime.c (asctime_internal): New function, derived from
7631         asctime_r.  Takes additional parameter which is the buffer length.
7632         Use snprintf instead sprintf, if it overflows, fail.
7633         (asctime_r): Call asctime_internal with 26 as buffer length.
7634         (asctime): Call asctime_internal with length of internal buffer.
7635         * time/Makefile (tests): Add bug-asctime_r.
7636         * time/bug-asctime_r.c: New file.
7638         [BZ #1459]
7639         * time/asctime.c (__asctime_r): Check for tm_year computation to
7640         overflow and fail in this case.
7641         * time/Makefile (tests): Add bug-asctime.
7642         * time/bug-asctime.c: New file.
7644         [BZ #1458]
7645         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MREMAP_FIXED.
7646         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
7647         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
7648         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
7649         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
7650         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
7651         * misc/sys/mman.h: Add ellipsis after last parameter of mremap and
7652         adjust leading comment.
7653         * sysdeps/unix/sysv/linux/syscalls.list: Add pointer parameter to
7654         mremap syscall.
7655         * include/sys/mman.h (__mremap): Add ellipsis.
7656         * malloc/memusage.c: Adjust mremap wrapper for optional additional
7657         parameter.
7659 2005-10-13  Ulrich Drepper  <drepper@redhat.com>
7661         [BZ #1405]
7662         * libio/iogetdelim.c (_IO_getdelim): Fix truncation of return
7663         value.  Avoid overflow in computation.
7665         [BZ #1373]
7666         * argp/argp.h: Remove __NTH for __argp_usage inline function.
7668 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
7670         [BZ #1248]
7671         * posix/regex_internal.h (bitset_not, bitset_merge, bitset_not_merge,
7672         bitset_mask, re_string_allocate, re_string_construct,
7673         re_string_reconstruct, re_string_destruct, re_string_elem_size_at,
7674         re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case,
7675         re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1,
7676         re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect,
7677         re_node_set_init_union, re_node_set_merge, re_node_set_insert,
7678         re_node_set_insert_last, re_node_set_compare, re_node_set_contains,
7679         re_node_set_remove_at, re_dfa_add_node, re_acquire_state,
7680         re_acquire_state_context): Remove unnecessary forward decls.
7681         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
7682         Put __attribute at function definition, now that the function decl
7683         has been removed.
7684         * posix/regex_internal.c (re_string_peek_byte_case,
7685         re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
7686         Likewise.
7688 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
7690         [BZ #1231]
7691         * posix/regex_internal.c (re_string_skip_chars, register_state,
7692         calc_state_hash): Remove forward decls.
7693         * posix/regexec.c (acquire_init_state_context, check_halt_node_context,
7694         proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes,
7695         clean_state_log_if_needed): Likewise.
7697 2005-10-13  Ulrich Drepper  <drepper@redhat.com>
7699         * posix/regex.c: No need to use K&R definitions for static functions.
7700         * posix/regex_internal.c: Likewise.
7701         * posix/regcomp.c: Likewise.
7703         [BZ #1466]
7704         * sysdeps/generic/s_csqrt.c (__csqrt): For zero real part, return
7705         principal square root.
7706         * sysdeps/generic/s_csqrtf.c (__csqrtf): Likewise.
7707         * sysdeps/generic/s_csqrtl.c (__csqrtl): Likewise.
7708         * math/libm-test.inc (csqrt_test): Add test for returning
7709         principal value.
7711         * include/features.h: Define _POSIX_C_SOURCE to 200112 for
7712         _XOPEN_SOURCE == 600.
7714 2005-10-12  Ulrich Drepper  <drepper@redhat.com>
7716         * malloc/malloc.c (_int_free): Fail if block size is obviously wrong.
7718         * include/malloc.h: Remove _int_new_arena prototype.
7719         * malloc/arena.c (_int_new_arena): Move definition ahead of
7720         arena_get2 and make static.
7722         Correctly implement M_MXFAST.
7723         * malloc/malloc.c (struct malloc_state): Replace max_fast with flags
7724         fields.
7725         (global_max_fast): New variable.
7726         (set_max_fast): Change to not require arena parameter and to modify
7727         global_max_fast.  Change all callers.
7728         (get_max_fast): New macro.  Use this instead of directly accessing
7729         now removed max_fast arena member.
7730         (have_fastchunks): Use flags instead of max_fast.
7731         (clear_fastchunks): Likewise.
7732         (set_fastchunks): Likewise.
7733         (contiguous): Likewise.
7734         (noncontiguous): Likewise.
7735         (set_noncontiguous): Likewise.
7736         (set_contiguous): Likewise.
7737         (malloc_init_state): Explicitly set FASTCHUNKS_BIT.  Call set_max_fast
7738         only for main arena.
7739         * malloc/hooks.c (public_sET_STATe): Adjust set_max_fast use.
7741 2005-10-10  Daniel Jacobowitz  <dan@codesourcery.com>
7743         * sysdeps/generic/bits/byteswap.h (__bswap_constant_16): New macro.
7744         (__bswap_16): Use it.
7745         (__bswap_constant_32): New macro.
7746         (__bswap_32): Use it.
7748 2005-10-10  Ulrich Drepper  <drepper@redhat.com>
7750         * malloc/arena.c (ptmalloc_unlock_all2): Reset atfork_recursive_cntr.
7752 2005-10-08  Jakub Jelinek  <jakub@redhat.com>
7754         * nss/getent.c (hosts_keys): Pass INADDRSZ as size rather
7755         than IN6ADDRSZ to AF_INET gethostbyaddr.
7757 2005-10-07  Roland McGrath  <roland@redhat.com>
7759         [BZ #1438]
7760         * include/features.h: Make tests on _FORTIFY_SOURCE and __OPTIMIZE__
7761         friendly to -Wundef.
7762         (__USE_FORTIFY_LEVEL): Always define it, to 0 if nothing else.
7764 2005-10-06  Ulrich Drepper  <drepper@redhat.com>
7766         * sysdeps/unix/sysv/linux/readonly-area.c: Allow fopen to fail because
7767         the file does not exist.
7769 2005-10-05  Simon Josefsson  <jas@extundo.com>
7771         [BZ #1423]
7772         * crypt/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): New macros.
7774 2005-10-05  Roland McGrath  <roland@redhat.com>
7776         * crypt/Makefile (distribute): Remove duplicate defn.
7778         * sysdeps/generic/ldsodefs.h (struct audit_ifaces):
7779         Use ARCH_PLTENTER_MEMBERS and ARCH_PLTEXIT_MEMBERS macros if defined.
7780         * elf/tst-auditmod1.c: Include <tst-audit.h> to define more
7781         architecture-specific code.
7782         * sysdeps/generic/tst-audit.h: New file.
7783         * elf/Makefile (distribute): Add it.
7785 2005-10-05  Daniel Jacobowitz  <dan@codesourcery.com>
7787         * elf/elf.h (R_ARM_TLS_DTPMOD32, R_ARM_TLS_DTPOFF32,
7788         R_ARM_TLS_TPOFF32, R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
7789         R_ARM_TLS_LDO32, R_ARM_TLS_IE32, R_ARM_TLS_LE32): New macros.
7791 2005-10-03  Roland McGrath  <roland@redhat.com>
7793         * sysdeps/powerpc/nofpu: Directory removed, saved in ports repository.
7795 2005-09-30  Ulrich Drepper  <drepper@redhat.com>
7797         * posix/regex.h: Pretty printing.
7798         Clean up namespace a bit.
7800 2005-09-30  Jakub Jelinek  <jakub@redhat.com>
7802         * posix/regexec.c (update_cur_sifted_state, check_arrival,
7803         check_arrival_add_next_nodes): Avoid using uninitialized variable.
7805         * malloc/memusage.c (dest): Fix a bunch of warnings on 32-bit arches.
7807         * sysdeps/i386/fpu/libm-test-ulps: Update for GCC 4.0.x.
7809 2005-09-29  Ulrich Drepper  <drepper@redhat.com>
7811         * iconvdata/Makefile (modules): Add IBM803, IBM901, IBM902, IBM921,
7812         IBM1008, IBM1008_420, IBM1097, IBM1112, IBM1123, IBM1130, IBM1140,
7813         IBM1141, IBM1142, IBM1143, IBM1144, IBM1145, IBM1146, IBM1147, IBM1148,
7814         IBM1149, IBM1166, IBM1167, IBM4517, IBM4899, IBM4909, IBM4971,
7815         IBM5347, IBM9030, IBM9066, IBM9448, IBM12712, IBM16804.
7816         (distribute): Add ibm803.c, ibm803.h, ibm901.c, ibm901.h, ibm902.c,
7817         ibm902.h, ibm921.c, ibm921.h, ibm1008.c, ibm1008.h, ibm1008_420.c,
7818         ibm1097.c, ibm1097.h, ibm1112.c, ibm1112.h, ibm1123.c, ibm1123.h,
7819         ibm1130.c, ibm1130.h, ibm1140.c, ibm1140.h, ibm1141.c, ibm1141.h,
7820         ibm1142.c, ibm1142.h, ibm1143.c, ibm1143.h, ibm1144.c, ibm1144.h,
7821         ibm1145.c, ibm1145.h, ibm1146.c, ibm1146.h, ibm1147.c, ibm1147.h,
7822         ibm1148.c, ibm1148.h, ibm1149.c, ibm1149.h, ibm1166.c, ibm1166.h,
7823         ibm1167.c, ibm1167.h, ibm4517.c, ibm4517.h, ibm4899.c, ibm4899.h,
7824         ibm4909.c, ibm4909.h, ibm4971.c, ibm4971.h, ibm5347.c, ibm5347.h,
7825         ibm9030.c, ibm9030.h, ibm9066.c, ibm9066.h, ibm9448.c, ibm9448.h,
7826         ibm12712.c, ibm12712.h, ibm16804.c, ibm16804.h.
7827         * iconvdata/TESTS: Add entries for new modules.
7828         * iconvdata/gconv-modules: Likewise.
7829         * iconvdata/ibm803.c: New file.
7830         * iconvdata/ibm803.h: New file.
7831         * iconvdata/ibm901.c: New file.
7832         * iconvdata/ibm901.h: New file.
7833         * iconvdata/ibm902.c: New file.
7834         * iconvdata/ibm902.h: New file.
7835         * iconvdata/ibm921.c: New file.
7836         * iconvdata/ibm921.h: New file.
7837         * iconvdata/ibm1008.c: New file.
7838         * iconvdata/ibm1008.h: New file.
7839         * iconvdata/ibm1008_420.c: New file.
7840         * iconvdata/ibm1097.c: New file.
7841         * iconvdata/ibm1097.h: New file.
7842         * iconvdata/ibm1112.c: New file.
7843         * iconvdata/ibm1112.h: New file.
7844         * iconvdata/ibm1123.c: New file.
7845         * iconvdata/ibm1123.h: New file.
7846         * iconvdata/ibm1130.c: New file.
7847         * iconvdata/ibm1130.h: New file.
7848         * iconvdata/ibm1140.c: New file.
7849         * iconvdata/ibm1140.h: New file.
7850         * iconvdata/ibm1141.c: New file.
7851         * iconvdata/ibm1141.h: New file.
7852         * iconvdata/ibm1142.c: New file.
7853         * iconvdata/ibm1142.h: New file.
7854         * iconvdata/ibm1143.c: New file.
7855         * iconvdata/ibm1143.h: New file.
7856         * iconvdata/ibm1144.c: New file.
7857         * iconvdata/ibm1144.h: New file.
7858         * iconvdata/ibm1145.c: New file.
7859         * iconvdata/ibm1145.h: New file.
7860         * iconvdata/ibm1146.c: New file.
7861         * iconvdata/ibm1146.h: New file.
7862         * iconvdata/ibm1147.c: New file.
7863         * iconvdata/ibm1147.h: New file.
7864         * iconvdata/ibm1148.c: New file.
7865         * iconvdata/ibm1148.h: New file.
7866         * iconvdata/ibm1149.c: New file.
7867         * iconvdata/ibm1149.h: New file.
7868         * iconvdata/ibm1166.c: New file.
7869         * iconvdata/ibm1166.h: New file.
7870         * iconvdata/ibm1167.c: New file.
7871         * iconvdata/ibm1167.h: New file.
7872         * iconvdata/ibm4517.c: New file.
7873         * iconvdata/ibm4517.h: New file.
7874         * iconvdata/ibm4899.c: New file.
7875         * iconvdata/ibm4899.h: New file.
7876         * iconvdata/ibm4909.c: New file.
7877         * iconvdata/ibm4909.h: New file.
7878         * iconvdata/ibm4971.c: New file.
7879         * iconvdata/ibm4971.h: New file.
7880         * iconvdata/ibm5347.c: New file.
7881         * iconvdata/ibm5347.h: New file.
7882         * iconvdata/ibm9030.c: New file.
7883         * iconvdata/ibm9030.h: New file.
7884         * iconvdata/ibm9066.c: New file.
7885         * iconvdata/ibm9066.h: New file.
7886         * iconvdata/ibm9448.c: New file.
7887         * iconvdata/ibm9448.h: New file.
7888         * iconvdata/ibm12712.c: New file.
7889         * iconvdata/ibm12712.h: New file.
7890         * iconvdata/ibm16804.c: New file.
7891         * iconvdata/ibm16804.h: New file.
7892         * iconvdata/testdata/IBM803: New file.
7893         * iconvdata/testdata/IBM803..UTF8: New file.
7894         * iconvdata/testdata/IBM901: New file.
7895         * iconvdata/testdata/IBM901..UTF8: New file.
7896         * iconvdata/testdata/IBM902: New file.
7897         * iconvdata/testdata/IBM902..UTF8: New file.
7898         * iconvdata/testdata/IBM921: New file.
7899         * iconvdata/testdata/IBM921..UTF8: New file.
7900         * iconvdata/testdata/IBM1008: New file.
7901         * iconvdata/testdata/IBM1008..UTF8: New file.
7902         * iconvdata/testdata/IBM1097: New file.
7903         * iconvdata/testdata/IBM1097..UTF8: New file.
7904         * iconvdata/testdata/IBM1112: New file.
7905         * iconvdata/testdata/IBM1112..UTF8: New file.
7906         * iconvdata/testdata/IBM1123: New file.
7907         * iconvdata/testdata/IBM1123..UTF8: New file.
7908         * iconvdata/testdata/IBM1130: New file.
7909         * iconvdata/testdata/IBM1130..UTF8: New file.
7910         * iconvdata/testdata/IBM1140: New file.
7911         * iconvdata/testdata/IBM1140..UTF8: New file.
7912         * iconvdata/testdata/IBM1141: New file.
7913         * iconvdata/testdata/IBM1141..UTF8: New file.
7914         * iconvdata/testdata/IBM1142: New file.
7915         * iconvdata/testdata/IBM1142..UTF8: New file.
7916         * iconvdata/testdata/IBM1143: New file.
7917         * iconvdata/testdata/IBM1143..UTF8: New file.
7918         * iconvdata/testdata/IBM1144: New file.
7919         * iconvdata/testdata/IBM1144..UTF8: New file.
7920         * iconvdata/testdata/IBM1145: New file.
7921         * iconvdata/testdata/IBM1145..UTF8: New file.
7922         * iconvdata/testdata/IBM1146: New file.
7923         * iconvdata/testdata/IBM1146..UTF8: New file.
7924         * iconvdata/testdata/IBM1147: New file.
7925         * iconvdata/testdata/IBM1147..UTF8: New file.
7926         * iconvdata/testdata/IBM1148: New file.
7927         * iconvdata/testdata/IBM1148..UTF8: New file.
7928         * iconvdata/testdata/IBM1149: New file.
7929         * iconvdata/testdata/IBM1149..UTF8: New file.
7930         * iconvdata/testdata/IBM1166: New file.
7931         * iconvdata/testdata/IBM1166..UTF8: New file.
7932         * iconvdata/testdata/IBM1167: New file.
7933         * iconvdata/testdata/IBM1167..UTF8: New file.
7934         * iconvdata/testdata/IBM4517: New file.
7935         * iconvdata/testdata/IBM4517..UTF8: New file.
7936         * iconvdata/testdata/IBM4899: New file.
7937         * iconvdata/testdata/IBM4899..UTF8: New file.
7938         * iconvdata/testdata/IBM4909: New file.
7939         * iconvdata/testdata/IBM4909..UTF8: New file.
7940         * iconvdata/testdata/IBM4971: New file.
7941         * iconvdata/testdata/IBM4971..UTF8: New file.
7942         * iconvdata/testdata/IBM5347: New file.
7943         * iconvdata/testdata/IBM5347..UTF8: New file.
7944         * iconvdata/testdata/IBM9030: New file.
7945         * iconvdata/testdata/IBM9030..UTF8: New file.
7946         * iconvdata/testdata/IBM9066: New file.
7947         * iconvdata/testdata/IBM9066..UTF8: New file.
7948         * iconvdata/testdata/IBM9448: New file.
7949         * iconvdata/testdata/IBM9448..UTF8: New file.
7950         * iconvdata/testdata/IBM12712: New file.
7951         * iconvdata/testdata/IBM12712..UTF8: New file.
7952         * iconvdata/testdata/IBM16804: New file.
7953         * iconvdata/testdata/IBM16804..UTF8: New file.
7954         Patch by Masahide WASHIZAWA <washi@jp.ibm.com>.
7956         * iconvdata/run-iconv-test.sh: Run ASCII->encoding->ASCII suntzus
7957         test only if $subset is N.
7959 2005-09-29  Roland McGrath  <roland@redhat.com>
7961         [BZ #1392]
7962         * posix/sys/wait.h [!__GNUC__ || __cplusplus] (__WAIT_INT): Use const.
7964 2005-09-29  Alfred M. Szmidt  <ams@gnu.org>
7966         * elf/rtld.c [DL_ARGV_NOT_RELRO] (_dl_argc, _dl_skip_args):
7967         Don't use attribute_relro.
7969 2005-09-29  Roland McGrath  <roland@redhat.com>
7971         [BZ #1392]
7972         * posix/sys/wait.h (__WAIT_INT): Rewrite using an initializer,
7973         in case __typeof yields a const-qualified type.
7975 2005-09-28  Ulrich Drepper  <drepper@redhat.com>
7977         * dirent/dirent.h: Declare fdopendir.
7978         * dirent/Versions: Export fdopendir for GLIBC_2.4.
7979         * dirent/Makefile (routines): Add fdopendir.
7980         (tests): Add tst-fdopendir.
7981         * dirent/tst-fdopendir.c: New file.
7982         * include/dirent.h: Declare __alloc_dir.
7983         * sysdeps/generic/fdopendir.c: New file.
7984         * sysdeps/unix/fdopendir.c: New file.
7985         * sysdeps/unix/opendir.c: Split off back part of opendir into new
7986         function __alloc_dir.
7988 2005-09-26  Steven Munroe  <sjmunroe@us.ibm.com>
7990         [BZ #1384]
7991         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust expected y1, y1f, yn,
7992         ynf results.
7994 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7995             Ulrich Drepper  <drepper@redhat.com>
7997         [BZ #1302]
7998         Change bitset word type from unsigned int to unsigned long int,
7999         as this has better performance on typical 64-bit hosts.  Change
8000         bitset type name to bitset_t.
8001         * posix/regcomp.c (build_equiv_class, build_charclass):
8002         (build_range_exp, build_collating_symbol):
8003         Prefer bitset_t to re_bitset_ptr_t in prototypes, when the actual
8004         argument is a bitset.  This is merely a style issue, but it makes
8005         it clearer that an entire array is expected.
8006         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps,
8007         lower_subexp): Adjust for new bitset_t definition.
8008         (lower_subexp, parse_bracket_exp, built_charclass_op): Likewise.
8009         * posix/regex_internal.h (bitset_set, bitset_clear, bitset_contain,
8010         bitset_not, bitset_merge, bitset_set_all, bitset_mask): Likewise.
8011         * posix/regexec.c (check_dst_limits_calc_pos_1,
8012         check_subexp_matching_top, build_trtable, group_nodes_into_DFAstates):
8013         Likewise.
8014         * posix/regcomp.c (utf8_sb_map): Don't assume initializer
8015         == 0xffffffff.
8016         * posix/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
8017         All uses changed.
8018         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
8019         (bitset_word_t): New type, replacing 'unsigned int' for bitset uses.
8020         All uses changed.
8021         (BITSET_WORD_MAX): New macro.
8022         (bitset_set, bitset_clear, bitset_contain, bitset_empty,
8023         (bitset_set_all, bitset_copy):  Adjust for bitset_t change.
8024         (bitset_empty, bitset_copy):
8025         Prefer sizeof (bitset_t) to multiplying it out ourselves.
8026         (bitset_not_merge): Remove; unused.
8027         (bitset_contain): Return bool, not unsigned int with one bit on.
8028         All callers changed.
8029         * posix/regexec.c (build_trtable): Don't assume bitset_t has no
8030         stricter alignment than re_node_set; do this by defining a new
8031         internal type struct dests_alloc and using it to allocate memory.
8033 2005-09-27  Ulrich Drepper  <drepper@redhat.com>
8035         [BZ #1230]
8036         * stdlib/strtod_l.c (STRNCASECMP): Always use C locale object.
8037         (TOLOWER_C): Define.  Use it when recognizing inf and nan.
8038         * stdlib/Makefile (tests): Add bug-strtod2.
8039         * stdlib/bug-strtod2.c: New file.
8041 2005-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8043         [BZ #1361]
8044         * argp/argp-fmtstream.h [HAVE_CONFIG_H]: Do not #include <config.h>.
8045         * argp/argp-eexst.c, argp/argp-fmtstream.c, argp/argp-fs-xinl.c,
8046         argp/argp-xinl.c: Fix up whitespace.
8048 2005-09-27  Ulrich Drepper  <drepper@redhat.com>
8050         [BZ #1158]
8051         * stdlib/cxa_atexit.c (__new_exitfn): Rewrite to preserve order in
8052         which the functions were registered.
8053         * dlfcn/Makefile: Add rules to build and run bug-atexit1 and
8054         bug-atexit2.
8055         * dlfcn/bug-atexit1.c: New file.
8056         * dlfcn/bug-atexit1-lib.c: New file.
8057         * dlfcn/bug-atexit2.c: New file.
8058         * dlfcn/bug-atexit2-lib.c: New file.
8060         [BZ #1078]
8061         * libio/fileops.c (_IO_new_file_xsputn): Determine amount of
8062         available space in non-line-buffered buffer correctly.
8063         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
8064         * stdio-common/Makefile (tests): Add tst-fwrite.
8065         * stdio-common/tst-fwrite.c: New file.
8067 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
8069         [BZ #838]
8070         * malloc/arena.c (ptmalloc_lock_all): If global lock already taken
8071         by the same thread, just bump the counter.
8072         (ptmalloc_unlock_all): If counter for recursive locks hasn't reached
8073         zero, don't do anything else.
8074         * malloc/Makefile (tests): Add tst-mallocfork.
8075         * malloc/tst-mallocfork.c: New file.
8077         [BZ #808]
8078         * malloc/malloc.c (_int_realloc): Make error message clearer.
8080         [BZ #713]
8081         * libio/iofgets.c: Treat N==1 correctly.
8082         * libio/iofgets_u.c: Likewise.
8083         * libio/iofgetws.c: Likewise.
8084         * libio/iofgetws_u.c: Likewise.
8085         * stdio-common/Makefile (tests): Add tst-fgets.
8086         * stdio-common/tst-fgets.c: New file.
8088 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
8090         [BZ #652]
8091         * posix/getconf.c: Add new option -a to print the names of
8092         the current system configuration variables to stdout.
8093         Based on patch from Josh Aas <josha@sgi.com>.
8095 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
8097         [BZ #644]
8098         * sysdeps/posix/getaddrinfo.c (fls): New function.
8099         (gaih_inet): Don't use ffs, use fls.  Convert address to native byte
8100         order first.
8101         * posix/Makefile (tests): Add tst-rfc3484.
8102         * posix/tst-rfc3484.c: New file.
8104         [BZ #627]
8105         * libio/iofclose.c (_IO_new_fclose): Unlock the internal lock
8106         before destroying it as part of the _IO_FINISH call.
8107         * libio/oldiofclose.c (_IO_old_fclose): Likewise.
8109         [BZ #524]
8110         * sysdeps/posix/getaddrinfo.c (match_prefix): Fix matching loop if
8111         number of bits is multiple of 8.
8112         Patch by Fredrik Tolf <fredrik@dolda2000.com>.
8114         [BZ #516]
8115         * elf/dl-load.c: Report failed loading due to ELF class mismatch
8116         with better words.
8118         [BZ #162]
8119         * manual/llio.texi (Waiting for I/O): Correct description of read
8120         conditions reported by select.
8122 2005-09-24  Jakub Jelinek  <jakub@redhat.com>
8124         * inet/getnetgrent_r.c (innetgr): Call endfct even if result != 0.
8125         Return 1 only if result == 1.  Patch by Benoit Capelle.
8127 2005-09-25  Ulrich Drepper  <drepper@redhat.com>
8129         [BZ #278]
8130         * manual/stdio.texi (Hook Functions): Correct type of position
8131         parameter of seeker and fix fallout of the change in the text.
8133         [BZ #714]
8134         * iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of
8135         left-over bytes and store them correctly.
8136         * wcsmbs/tst-mbrtowc2.c: New file.
8137         * wcsmbs/Makefile (tests): Add tst-mbrtowc2.
8139 2005-09-24  Roland McGrath  <roland@redhat.com>
8141         * sysdeps/unix/sysv/i386/signal.S: Removed, saved in ports repository.
8142         * sysdeps/unix/sysv/i386/sigreturn.S: Likewise.
8144 2005-09-24  Ulrich Drepper  <drepper@redhat.com>
8146         [BZ #545]
8147         * locale/iso-639.def: More updates from the current spec.
8149         * locale/programs/ld-address.c (address_finish): Produce better
8150         error messages for invalid lang_ab use.
8152         * locale/iso-639.def: Add a few updates from current spec.
8154 2005-09-23  Ulrich Drepper  <drepper@redhat.com>
8156         [BZ #704]
8157         * locale/iso-4217.def: Replace MGF with MGA.
8159         * iconvdata/jis0208.c (__jisx0208_from_ucs4_lat1): Reduce size of
8160         array.
8161         * iconvdata/jis0208.h (ucs4_to_jisx0208): Adjust access.
8163 2004-08-13  GOTO Masanori  <gotom@debian.or.jp>
8165         [BZ #395]
8166         * iconvdata/jis0208.c: Remove 0x005C mapping from
8167         __jisx0208_from_ucs4_lat1.
8168         Reported by Fumitoshi UKAI <ukai@debian.or.jp>
8170 2005-09-23  Ulrich Drepper  <drepper@redhat.com>
8172         [BZ #394]
8173         * libio/fmemopen.c (fmemopen_write): Return 0 instead of -1 if
8174         nothing can be written.
8175         * libio/iofopncook.c (_IO_cookie_write): If something went wrong,
8176         set error bit.
8178 2005-09-22  Ulrich Drepper  <drepper@redhat.com>
8180         [BZ #281]
8181         * posix/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
8182         * posix/regcomp.c: Remove unnecessary uses of
8183         unsigned RE_TRANSLATE_TYPE.
8184         * posix/regex_internal.h: Likewise.
8185         * posix/regex_internal.c: Likewise.
8186         * posix/regexexec.c: Likewise.
8187         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
8189         [BZ #1035]
8190         * locale/iso-4217.def: Replace TRL entry with TRY for new Turkish Lira.
8192         [BZ #1363]
8193         * nscd/nscd_getpw_r.c (nscd_getpw_r): Remove incorrectly C&Ped
8194         free call in code handling detection of GC runs.
8196 2005-09-22  Roland McGrath  <roland@redhat.com>
8198         * elf/dl-tsd.c (__libc_dl_error_tsd): Use attribute_tls_model_ie for
8199         static __thread variable.
8200         From Alexandre Oliva <aoliva@redhat.com>
8202         * Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command.
8203         Reported by Alexandre Oliva <aoliva@redhat.com>.
8205 2005-09-20  Jakub Jelinek  <jakub@redhat.com>
8207         * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
8209 2005-09-20  Roland McGrath  <roland@redhat.com>
8211         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl.
8213         [BZ #1346]
8214         * elf/dl-load.c (_dl_map_object_from_fd) [HAVE_Z_RELRO]: Do relro
8215         magic on __stack_prot only if [SHARED].  Skip mprotect if __stack_prot
8216         lies outside the page-rounded-down relro region.
8218 2005-09-19  Richard Henderson  <rth@redhat.com>
8220         [BZ #1358]
8221         * sysdeps/unix/alpha/sysdep.h (inline_syscall1): Copy argument(s)
8222         to a temporary first.
8223         (inline_syscall2, inline_syscall3, inline_syscall4): Likewise.
8224         (inline_syscall5, inline_syscall6): Likewise.
8226         * sysdeps/alpha/ldiv.S (lldiv): Add alias.
8228 2005-09-17  Ulrich Drepper  <drepper@redhat.com>
8230         [BZ #1010]
8231         * sysdeps/unix/sockatmark.c (sockatmark): Use SIOCATMARK correctly.
8233         [BZ #1053]
8234         * debug/xtrace.sh: Add missing escape character in -? match.
8235         Patch by Peter Breitenlohner <peb@mppmu.mpg.de>.
8237         [BZ #1051]
8238         * wctype/wctype.h: Remove stray __END_NAMESPACE_C99.
8239         * stdlib/stdlib.h: Use __END_NAMESPACE_STD instead of
8240         __END_NAMESPACE_C99 in one place.
8241         * scripts/begin-end-check.pl: New file.
8242         Patch by Ralph Loader <suckfish@ihug.co.nz>.
8243         * Makefile: Add rules to run scripts/begin-end-check.pl.
8245 2005-09-17  Andreas Jaeger  <aj@suse.de>
8247         * timezone/zdump.c: Include ctype.h.
8249 2005-09-16  Andreas Jaeger  <aj@suse.de>
8251         [BZ #1047]
8252         * sysdeps/unix/sysv/linux/mips/getpagesize.c: New file.
8254 2005-09-16  Maciej W. Rozycki  <macro@linux-mips.org>
8256         [BZ #933]
8257         * sysdeps/unix/sysv/linux/mips/brk.c (__brk): Load the number of
8258         the syscall immediately before invocation.
8259         * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl): Likewise.
8260         * sysdeps/unix/sysv/linux/mips/mips64/syscall.S (syscall): Likewise.
8262         * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl): Use
8263         macros to handle GP.
8264         * sysdeps/unix/sysv/linux/mips/mips64/syscall.S (syscall):
8265         Likewise.  Update inaccurate comments.
8267 2005-09-13  Ulrich Drepper  <drepper@redhat.com>
8269         * sysdeps/posix/spawni.c (__spawni): Automatically recognize some
8270         more cases when we can use vfork.
8272 2005-08-29  Thomas Schwinge  <schwinge@nic-nac-project.de>
8274         [BZ #1261]
8275         * manual/memory.texi (Hooks for Malloc): Correct prototype of
8276         my_init_hook and definition of my_free_hook.
8278 2005-09-12  Roland McGrath  <roland@redhat.com>
8280         [BZ #1331]
8281         * malloc/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
8282         macro argument.
8283         Reported by Matej Vela <vela@debian.org>.
8285 2005-09-12  Jakub Jelinek  <jakub@redhat.com>
8287         * malloc/malloc.c (struct malloc_chunk): Fix comment typo.
8288         (public_cALLOc): For mmapped chunks and perturb_byte != 0,
8289         don't clear SIZE_SZ bytes more than should be cleared.
8291 2005-09-09  Jakub Jelinek  <jakub@redhat.com>
8293         * inet/getnetgrent_r.c: Include assert.
8294         (setup): Remove FUNC_NAME and ALL arguments, assume they are always
8295         "setnetgrent" and 1.
8296         (endnetgrent_hook): New function.
8297         (internal_endnetgrent): Use it.
8298         (__internal_setnetgrent_reuse): Use it.  Adjust setup caller.
8299         If status is NSS_STATUS_SUCCESS, yet action is continue, call
8300         endnetgrent hook.
8301         (internal_getnetgrent_r): Use __nss_lookup_function rather than
8302         setup.  Recompute getfct pointer after successful
8303         __internal_setnetgrent_reuse.  Don't use __nss_next.
8304         (innetgr): Use __nss_lookup_function instead of __nss_lookup.
8305         Adjust setup caller.
8306         * nss/nss_files/files-netgrp.c (_nss_files_endnetgrent): Always clear
8307         data_size and cursor.  Add libnss_files_hidden_proto and
8308         libnss_files_hidden_def.
8309         (_nss_files_setnetgrent): Call _nss_files_endnetgrent on failure.
8310         * nis/nss_nis/nis-netgrp.c (internal_endnetgrent): Always clear
8311         data_size and cursor.
8312         (_nss_nis_setnetgrent): Don't call internal_endnetgrent.
8313         (_nss_nis_getnetgrent_r): Remove result->cursor == NULL handling.
8314         * nis/nss_nisplus/nisplus-netgrp.c (internal_endnetgrent): Always clear
8315         data_size and position.
8316         (_nss_nisplus_setnetgrent): Don't call internal_endnetgrent.
8318 2005-09-09  Ulrich Drepper  <drepper@redhat.com>
8320         * nss/getent.c (netgroup_keys): Call endnetgrent.
8321         (main): Call mtrace.
8323         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): We don't
8324         need locking for the stream.  Use feof_unlocked.
8326 2005-09-09  Jakub Jelinek  <jakub@redhat.com>
8328         [BZ #1318]
8329         * locale/loadarchive.c (_nl_load_locale_from_archive): Free
8330         normalized_codeset even if p was already normalized.
8331         Reported by Jaroslav Snajdr <jsnajdr@kerio.com>.
8333 2005-09-08  Roland McGrath  <roland@redhat.com>
8335         * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Decode DSOCAPS
8336         properly, first byte is bit number in mask.  Skip disabled caps.
8338 2005-07-11  Derek R. Price  <derek@ximbiot.com>
8340         [BZ #1061]
8341         * sysdeps/generic/glob.c (glob): Only a 0 return from
8342         getlogin_r means success, according to POSIX 1003.2.
8344 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
8346         [BZ #1033]
8347         * time/mktime.c: Import from gnulib.
8348         The following macros are now consistent with other gnulib code.
8349         This does not change mktime's behavior.
8350         (TYPE_IS_INTEGER): New macro.
8351         (time_t_is_integer): Use it.
8352         (TYPE_TWOS_COMPLEMENT): New macro.
8353         (twos_complement_arithmetic): Use it.
8354         (TYPE_ONES_COMPLEMENT): New macro.
8355         (TYPE_MINIMUM, TYPE_MAXIMUM): Now supports signed-magnitude.
8356         mktime doesn't use this, but the code now matches other gnulib code.
8357         (ranged_convert): Pacify GCC 4.0 in a different way, which
8358         generates a few bytes less code.
8359         (ranged_convert, __mktime_internal): When calling a function via a
8360         pointer P, use P () rather than (*P) (), as we now assume C89 or
8361         better.
8363 2005-09-07  Alexandre Oliva  <aoliva@redhat.com>
8365         * timezone/test-tz.c: Update to match tzdata2005m.
8366         * timezone/tst-timezone.c: Likewise.
8368 2005-09-07  Ulrich Drepper  <drepper@redhat.com>
8370         * posix/regexec.c (find_recover_state): Remove unnecessary
8371         initialization.
8372         (transit_state_bkref): Make DFA a const pointer.
8373         (get_subexp): Likewise.
8374         (check_arrival): Likewise.
8375         (update_cur_sifted_state): Likewise.
8376         (re_search_internal): Likewise.
8377         (prune_impossible_nodes): Likewise.
8378         (acquire_init_state_context): Likewise.
8379         (proceed_next_node): Likewise.
8380         (set_regs): Likewise.
8381         (free_fail_stack_return): Likewise.
8382         (check_arrival_expand_ecl): Mark DFA parameter as const.
8383         (check_arrival_expand_ecl_sub): Likewise.
8384         (check_subexp_limits): Likewise.
8385         (sub_epsilon_src_nodes):  Likewise.
8386         (add_epsilon_src_nodes):  Likewise.
8387         (merge_state_array): Likewise.
8388         (update_regs): Likewise.
8389         (build_trtable): Likewise.
8390         (sift_states_backward): Mark MCTX parameter as const.
8391         (build_sifted_states): Likewise.
8392         (update_cur_sifted_state): Likewise.
8393         (sift_states_mkref): Likewise.
8394         (check_arrival_expand_ecl): Mark eclosure as const.
8395         (check_dst_limits_calc_pos_1): Likewise.
8396         * posix/regex_internal.h (re_match_context_t): Make dfa a const
8397         pointer.
8399 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8401         * timezone/africa: Update from tzdata2005m.
8402         * timezone/asia: Likewise.
8403         * timezone/australasia: Likewise.
8404         * timezone/backward: Likewise.
8405         * timezone/europe: Likewise.
8406         * timezone/northamerica: Likewise.
8407         * timezone/southamerica: Likewise.
8408         * timezone/zone.tab: Likewise.
8409         * timezone/zdump.c: Update from tzcode2005m.
8411         * posix/regexec.c (merge_state_with_log): Define dfa as const pointer.
8412         (transit_state_sb): Likewise.
8413         (transit_state_mb): Likewise.
8414         (sift_states_iter_mb): Likewise.
8415         (check_arrival_add_next_nodes): Likewise.
8416         (check_node_accept_bytes): Change first parameter to pointer-to-const.
8417         [_LIBC] (re_search_2_stub): Use mempcpy.
8419         * posix/regex_internal.c (re_string_reconstruct): Avoid calling
8420         mbrtowc for very simple UTF-8 case.
8422 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
8424         * posix/regex_internal.c (build_wcs_upper_buffer): Fix portability
8425         bugs in int versus size_t comparisons.
8427 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8429         * posix/regex_internal.c (re_acquire_state): Make DFA pointer arg
8430         a pointer-to-const.
8431         (re_acquire_state_context): Likewise.
8432         * posix/regex_internal.h: Adjust prototypes.
8434 2005-08-31  Jim Meyering  <jim@meyering.net>
8436         * posix/regcomp.c (search_duplicated_node): Make first pointer arg
8437         a pointer-to-const.
8438         * posix/regex_internal.c (create_ci_newstate, create_cd_newstate,
8439         register_state): Likewise.
8440         * posix/regexec.c (search_cur_bkref_entry, check_dst_limits):
8441         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
8442         (group_nodes_into_DFAstates): Likewise.
8444 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
8446         * posix/regexec.c (re_search_internal): Simplify update of
8447         rm_so and rm_eo by replacing "if (A == B) A += C - B;"
8448         with the equivalent of "if (A == B) A = C;".
8450 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8452         * posix/regcomp.c (re_compile_internal): Change third parameter type
8453         to size_t.
8454         (init_dfa): Likewise.  Make sure that arithmetic on pat_len doesn't
8455         overflow.
8456         * posix/regex_internal.h (struct re_dfa_t): Change type of nodes_alloc
8457         and nodes_len to size_t.
8458         * posix/regex_internal.c (re_dfa_add_node): Use size_t as type for
8459         new_nodes_alloc.  Check for overflow.
8461 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
8463         * posix/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
8464         (optimize_subexps, lower_subexp):
8465         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
8466         since the signed shift might overflow.  Use 1u<<31 instead.
8467         * posix/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
8468         Likewise.
8469         * posix/regexec.c (check_dst_limits_calc_pos_1): Likewise.
8470         (check_subexp_matching_top): Likewise.
8471         * posix/regcomp.c (optimize_subexps, lower_subexp):
8472         Use CHAR_BIT rather than 8, for clarity.
8473         * posix/regexec.c (check_dst_limits_calc_pos_1):
8474         (check_subexp_matching_top): Likewise.
8475         * posix/regcomp.c (init_dfa): Make table_size unsigned, so that we
8476         don't have to worry about portability issues when shifting it left.
8477         Remove no-longer-needed test for table_size > 0.
8478         * posix/regcomp.c (parse_sub_exp): Do not shift more bits than there
8479         are in a word, as the resulting behavior is undefined.
8480         * posix/regexec.c (check_dst_limits_calc_pos_1): Likewise;
8481         in one case, a <= should have been an <, and in another case the
8482         whole test was missing.
8483         * posix/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
8484         the standard name CHAR_BIT.
8486         * posix/regex_internal.h (re_sub_match_top_t): Remove unused member
8487         next_last_offset.
8488         (struct re_dfa_t): Remove unused member states_alloc.
8489         * posix/regcomp.c (init_dfa): Don't initialize unused members.
8491 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
8493         * posix/regexec.c (set_regs): Don't alloca with an unbounded size.
8495         alloca modernization/simplification for regex.
8496         * posix/regex.c: Remove portability cruft for alloca.  This no longer
8497         needs to be at the start of the file, and can be moved into
8498         regex_internal.h and simplified.
8499         * posix/regex_internal.h: Include <alloca.h>.
8500         (__libc_use_alloca) [!defined _LIBC]: New macro.
8501         * posix/regexec.c (build_trtable): Remove "#ifdef _LIBC",
8502         since the code now works outside glibc.
8504 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8506         * include/regex.h: Remove use of _RE_ARGS.
8508 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
8510         * posix/regexec.c (find_recover_state): Change "err" to "*err".
8512 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
8514         * posix/regcomp.c (regerror): Pointer args are 'restrict',
8515         as per POSIX.
8516         * posix/regex.h (regerror): Likewise.
8517         * manual/pattern.texi (POSIX Regexp Compilation): Likewise.
8518         Similarly for regcomp and regexec.  Also, first 2 args of regexec
8519         and 2nd arg of regerror are const.
8521         * posix/regex.c: Do not include <sys/types.h>, as POSIX no longer
8522         requires this.  (The code never needed it.)
8524 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
8526         * posix/regexec.c (sift_states_bkref): re_node_set_insert returns
8527         int, not reg_errcode_t.
8529         * posix/regex_internal.c (calc_state_hash): Put 'inline' before type,
8530         since some broken compilers warn about it otherwise.
8532         * posix/regcomp.c (create_initial_state): Remove duplicate decl.
8534 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
8536         * posix/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
8537         C89 or better.  All uses removed.
8539 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8541         * posix/regex.c: Prevent using C++ compilers.
8543 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
8545         * posix/regcomp.c (duplicate_node): Return new index, not an error
8546         code, and let the caller return REG_ESPACE if out of space.  This
8547         removes an uninitialied-variable warning with GCC 4.0.1, and also
8548         avoids taking the address of a local variable.  All callers
8549         changed.
8551 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8553         * include/time.h (__strptime_internal): Rename parameter to avoid
8554         bogus compiler warning.
8556 2005-08-19  Jim Meyering  <jim@meyering.net>
8558         * posix/regexec.c (proceed_next_node): Redo local variables to
8559         avoid GCC shadowing warnings.
8561 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8563         * posix/regex_internal.c (re_acquire_state): Minor code rearrangement.
8564         (re_acquire_state_context): Likewise.
8566 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
8568         * posix/regex_internal.c (re_string_realloc_buffers):
8569         (re_node_set_insert, re_node_set_insert_last, re_dfa_add_node):
8570         Rename local variables to avoid GCC shadowing warnings.
8572 2005-07-08  Eric Blake  <ebb9@byu.net>
8573             Paul Eggert  <eggert@cs.ucla.edu>
8575         * posix/regcomp.c (init_dfa): Store __btowc value in wint_t, not
8576         wchar_t.  Remove now-unnecessary cast.
8577         (build_range_exp): Likewise.
8579 2005-08-31  Bob Wilson  <bob.wilson@acm.org>
8581         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf):  Remove the
8582         exponent bias from the increment value for scaling by 2^60.
8584 2005-09-05  Alexandre Oliva  <aoliva@redhat.com>
8586         * configure.in: Compile source test file with -fPIC for -shared.
8588 2005-09-04  Ulrich Drepper  <drepper@redhat.com>
8590         * iconv/skeleton.c: Eliminate DEFINE_DIRECTION_OBJECTS macro use,
8591         it wasn't used.  Remove use of from_object and to_object variable,
8592         replace with some constants.  Adjust users.
8594         * sysdeps/i386/bits/string.h: Removed.
8596         * stdio-common/Makefile (tests): Add tst-put-error.
8597         * stdio-common/tst-put-error.c: New file.
8598         * libio/fileops.c (_IO_new_file_xsputn): If overflow fails and no more
8599         data would have to be written signal error.
8600         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
8602         * libio/fileops.c (_IO_new_file_overflow): Use NULL not 0.
8604 2005-09-02  Ulrich Drepper  <drepper@redhat.com>
8606         * elf/dl-load.c (_dl_map_object_from_fd): No need to change
8607         protection of memory used for the last segment.
8609 2005-08-22  Robert Millan  <robertmh@gnu.org>
8611         * sysdeps/mach/hurd/nfs/nfs.h: Move to ...
8612         * sysdeps/generic/nfs/nfs.h: ... here.
8614 2005-09-01  Ulrich Drepper  <drepper@redhat.com>
8616         * libio/stdio.h: Remove __wur from ungetc, sscanf, and vsscanf.
8617         Add __wur to feof{,_unlocked}, ferror{,_unlocked},
8618         fileno{,_unlocked}, and popen.
8620 2005-08-30  Ulrich Drepper  <drepper@redhat.com>
8622         * sysdeps/ieee754/flt-32/e_hypotf.c [!__STDC__]: Fix function name.
8624 2005-08-01  Bob Wilson  <bob.wilson@acm.org>
8625             Richard Sandiford  <richard@codesourcery.com>
8627         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Add missing
8628         exponent bias to the value for 2^126.
8630 2005-08-30  Jakub Jelinek  <jakub@redhat.com>
8631             Alan Modra  <amodra@bigpond.net.au>
8633         * elf/dl-addr.c (_dl_addr): Use DL_ADDR_SYM_MATCH macro.
8634         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): Define.
8635         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h: New file.
8637 2005-08-23  Ulrich Drepper  <drepper@redhat.com>
8639         * nscd/nscd.c (main): Use error while process isn't running in the
8640         background, not dbg_log.
8641         * nscd/nscd_conf.c (nscd_parse_file): Likewise.
8642         Mark messages with _().  Unify testing for database name.
8644         * nscd/connection.c (DEFAULT_DATASIZE_PER_BUCKET): Move to nscd.h.
8645         (dbs): Initialize max_db_size fields.
8646         (nscd_init): When mapping the database, use max_db_size as the
8647         mapping size even if it is bigger than the file size.
8648         * nscd/mem.c (mempool_alloc): When resizing the file make sure the
8649         limit in max_db_size is not exceeded.  Don't use mremap, just
8650         posix_fallocate is enough (according to Linus).  Use posix_fallocate
8651         correctly.
8652         * nscd/nscd.conf: Add max-db-size parameters.
8653         * nscd/nscd.h (struct database_dyn): Add max_db_size field.
8654         Define DEFAULT_MAX_DB_SIZE and DEFAULT_DATASIZE_PER_BUCKET.
8655         Temporarily define TEMP_FAILURE_RETRY_VAL here.
8656         * nscd/nscd_conf.c (nscd_parse_file): Parse max-db-size parameter
8657         and add sanity checks for it.
8659         * nscd/aicache.c (addhstaiX): Use send with MSG_NOSIGNAL not write to
8660         send reply.
8661         * nscd/connection.c (writeall): Likewise.
8662         (handle_request): Likewise.
8663         * nscd/grpcache.c (cache_addgr): Likewise.
8664         * nscd/hstcache.c (cache_addhst): Likewise.
8665         * nscd/initgrcache.c (addinitgroupsX): Likewise.
8666         * nscd/nscd.c (parse_opt): Likewise.
8667         * nscd/nscd_stat.c (send_stats): Likewise.
8668         (receive_print_stats): Likewise.
8669         * nscd/pwdcache.c (cache_addpw): Likewise.
8671         * sysdeps/unix/sysv/linux/Versions: Export inotify_* syscalls.
8673 2005-08-22  Jakub Jelinek  <jakub@redhat.com>
8675         * stdlib/bits/stdlib.h (mbstowcs): Divide __bos (__dst) by
8676         sizeof (wchar_t) rather than multiplying __len by sizeof (wchar_t).
8677         Pass __bos (__dst) / sizeof (wchar_t) to the *_chk routine.
8678         * wcsmbs/bits/wchar2.h (mbsrtowcs, mbsnrtowcs): Likewise.
8679         * debug/mbsnrtowcs_chk.c (__mbsnrtowcs_chk): Don't multiply
8680         len by sizeof (wchar_t).
8681         * debug/mbsrtowcs_chk.c (__mbsrtowcs_chk): Likewise.
8682         * debug/mbstowcs_chk.c (__mbstowcs_chk): Likewise.
8683         Fix type of SRC argument.  Pass &SRC rather than SRC to
8684         __mbsrtowcs.
8685         * debug/wcstombs_chk.c (__wcstombs_chk): Pass &SRC rather than SRC
8686         to __wcsrtombs.
8687         * debug/tst-chk1.c: Include assert.h.
8688         (do_test): Change enough array from VLA into a fixed size array.
8689         Assert that MB_CUR_MAX is <= sizeof (enough).  Use FAIL () macro
8690         instead of print error details.  Add several new tests.
8691         Kill some unused variable warnings.
8693 2005-08-21  Ulrich Drepper  <drepper@redhat.com>
8695         * resolv/res_send.c (Aerror): Fix printing IP address.
8697         * resolv/res_send.c (send_vc): Pass correct sockaddr size to connect.
8699 2005-08-19  H.J. Lu  <hongjiu.lu@intel.com>
8701         * sysdeps/ia64/fpu/libm_error.c (__libm_error_support): Don't abort.
8703 2005-08-17  Robert Love  <rml@novell.com>
8705         * sysdeps/unix/sysv/linux/sys/inotify.h: Add IN_MOVE_SELF event.
8707 2005-08-19  Bruno Haible  <bruno@clisp.org>
8709         * intl/localealias.c (read_alias_file): In case of failure, close the
8710         file descriptor and sort the array before returning.
8712 2005-08-19  Ulrich Drepper  <drepper@redhat.com>
8714         * malloc/Makefile: Link libmemusage.so with ld.so.
8715         * malloc/memusage.c: Use atomic operations for all counter and size
8716          computations.  Handle thread stacks.
8717         * sysdeps/generic/memusage.h: Define memusage_cntr_t and
8718         memusage_size_t.
8719         * sysdeps/i386/i686/memusage.h: New file.
8720         * include/atomic.h: Define atomic_max and atomic_min.
8722         * debug/tst-chk1.c: Add tests for mbstowcs and wcstombs.
8724 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
8726         [BZ #1207]
8727         * posix/regex.h: Remove spurious space-before-tab.  From gnulib.
8729 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
8731         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
8732         sys/inotify.h.
8733         * sysdeps/unix/sysv/linux/sys/inotify.h: New file.
8734         * sysdeps/unix/sysv/linux/syscalls.list: Add inotify syscalls.
8736         * nscd/cache.c (prune_cache): Add more debug output.  Only for
8737         debug level 3 and higher and very verbose.
8739         * nscd/cache.c (prune_cache): Use stat64 not stat.
8740         * nscd/connections.c (nscd_init): Likewise.
8742 2005-08-10  Sergio Gelato  <Sergio.Gelato@astro.su.se>
8744         [BZ #1188]
8745         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Change assert check
8746         from (len > 0) to (len >= 0).
8748 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
8750         * nis/nis_xdr.c (_xdr_nis_result): Fix type of res variable.
8751         Reported by Thomas Schwinge.
8753 2005-08-15  Jakub Jelinek  <jakub@redhat.com>
8755         * nis/nis_subr.c (nis_leaf_of_r): Handle buflen == 0 correctly.
8757 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
8759         * nss/getent.c (more_help): Use open_memstream instead of handling
8760         memory allocation ourselves.
8762 2005-08-16  Jay Fenlason  <fenlason@redhat.com>
8764         * nss/getent.c (parse_options): change the -s option to support
8765         {database}:{search} to override /etc/resolv.conf for only the
8766         specified database.
8768 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
8770         * nscd/connections.c (main_loop_epoll): Pass NULL as event
8771         argument for epoll_ctl(EPOLL_CTL_DEL) calls.
8773         * nscd/nscd_stat.c (receive_print_stats): Really print values of
8774         thread number, paranoia, and restart interval the server is using.
8776         * argp/argp-help.c: Use _IO_vasprintf instead of vasprintf.
8777         * include/stdio.h: Add libc_hidden_proto for __vfprintf_chk.
8778         * debug/vfprintf_chk.c: Add libc_hidden_def.
8780 2005-08-08  Roland McGrath  <roland@redhat.com>
8782         * argp/argp-help.c (__argp_error): __asprintf -> vasprintf.
8783         (__argp_failure): Likewise.
8785 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
8787         * nscd/cache.c (cache_add): Commit hash table and header to disk.
8789         * nscd/mem.c (mempool_alloc): Use posix_fallocate instead of ftruncate.
8790         * nscd/connections.c (nscd_init): Likewise.
8792 2005-08-08  Jakub Jelinek  <jakub@redhat.com>
8794         * stdio-common/fxprintf.c: Include libioP.h.
8796         * posix/bits/unistd.h (confstr, getgroups, ttyname_r, gethostname,
8797         getdomainname): Add __NTH.
8798         * stdlib/bits/stdlib.h (ptsname_r, wctomb, mbstowcs, wcstombs):
8799         Likewise.
8800         (realpath): Likewise.  Use __const instead of const.  Add __restrict
8801         keywords.
8802         * socket/bits/socket2.h (recvfrom): Add __restrict keyword to __buf.
8803         * wcsmbs/bits/wchar2.h (wmemcpy, wmemmove, wmempcpy, wmemset,
8804         wcscpy, wcpcpy, wcsncpy, wcpncpy, wcscat, wcsncat, vswprintf, wcrtomb,
8805         mbsrtowcs, wcsrtombs, mbsnrtowcs, wcsnrtombs): Add __NTH.
8806         * string/bits/string3.h (__memset_ichk): Likewise.
8807         (__memcpy_ichk, __memmove_ichk, __mempcpy_ichk, __strcpy_ichk,
8808         __stpcpy_ichk, __strncpy_ichk, stpncpy, __strcat_ichk,
8809         __strncat_ichk): Likewise.  Use __const instead of const.
8810         (__stpncpy_chk): Use __const instead of const.
8811         (__stpncpy_alias): Use __REDIRECT_NTH instead of __REDIRECT.
8813 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
8814             Jakub Jelinek  <jakub@redhat.com>
8816         * nscd/mem.c (BLOCK_ALIGN_LOG, BLOCK_ALIGN, BLOCK_ALIGN_M1): Move
8817         definitions to...
8818         * nscd/nscd.h (BLOCK_ALIGN_LOG, BLOCK_ALIGN, BLOCK_ALIGN_M1): ...here.
8819         * nscd/connections.c (usekey): New enum.
8820         (check_use, verify_persistent_db): New functions.
8821         (nscd_init): If persistent database is corrupted, unlink it and
8822         recreate rather than falling back to non-persistent database.
8823         Call verify_persistent_db.  Avoid overflows in total computation.
8825 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
8827         * iconvdata/utf-16.c (PREPARE_LOOP): Minor cleanups to make code
8828         better readable.  Avoid passing var to loop function, it's not
8829         necessary at all.
8831 2005-08-07  Ulrich Drepper  <drepper@redhat.com>
8833         * elf/elf.h (DT_ALPHA_PLTRO): Use symbolic name in DT_ALPHA_PLTRO
8834         definition.
8836 2005-08-05  Ulrich Drepper  <drepper@redhat.com>
8838         * timezone/checktab.awk: Update from tzcode2005k.
8839         * timezone/private.h: Likewise.
8840         * timezone/scheck.c: Likewise.
8841         * timezone/tzselect.ksh: Likewise.
8842         * timezone/zdump.c: Likewise.
8843         * timezone/zic.c: Likewise.
8844         * timezone/africa: Update from tzdata2005k.
8845         * timezone/antarctica: Likewise.
8846         * timezone/asia: Likewise.
8847         * timezone/australasia: Likewise.
8848         * timezone/europe: Likewise.
8849         * timezone/iso3166.tab: Likewise.
8850         * timezone/leapseconds: Likewise.
8851         * timezone/northamerica: Likewise.
8852         * timezone/solar87: Likewise.
8853         * timezone/solar88: Likewise.
8854         * timezone/solar89: Likewise.
8855         * timezone/southamerica: Likewise.
8856         * timezone/zone.tab: Likewise.
8858 2005-08-05  Roland McGrath  <roland@frob.com>
8860         [BZ #1251]
8861         * mach/shortcut.awk: Ignore `weak_alias' lines.
8862         Reported by Alfred M. Szmidt <ams@gnu.org>.
8864         [BZ #1250]
8865         * sysdeps/mach/hurd/mig-reply.c (reply_port): Don't use ?: as lvalue.
8866         Reported by Alfred M. Szmidt <ams@gnu.org>.
8868 2005-08-03  Dwayne Grant McConnell  <dgm69@us.ibm.com>
8870         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s):
8871         Use +=, not =, to append.  Remove duplicate flags.
8872         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
8873         Likewise.  Fix comments.
8875 2005-08-01  Ulrich Drepper  <drepper@redhat.com>
8877         * sysdeps/unix/sysv/linux/sigwait.c (do_sigwait): Restart system
8878         call if it returned EINTR.
8880 2005-07-31  Ulrich Drepper  <drepper@redhat.com>
8882         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Move
8883         helper variable into .data.rel.ro.  Simplify the code.  Extend
8884         comment to explain prelinking.
8886 2005-07-31  Andreas Jaeger  <aj@suse.de>
8888         * include/bits/syslog.h: New file.
8890 2005-07-30  Ulrich Drepper  <drepper@redhat.com>
8892         * elf/dl-load.c [__WORDSIZE==64] (FILEBUF_SIZE): Adjust the value
8893         up.  We have more program header entries now and the note section
8894         was normally not loaded.
8896         * nis/nis_subr.c: Some minor code cleanups.
8898 2005-07-29  Ulrich Drepper  <drepper@redhat.com>
8900         * misc/bits/syslog.h: New file.
8901         * misc/sys/syslog.h: Include <bits/syslog.h> for fortification.
8902         * misc/Makefile (headers): Add bits/syslog.h.
8903         * include/sys/syslog.h: Add __vsyslog_chk prototype and hidden_proto.
8904         * sysdeps/generic/syslog.c: Change vsyslog function to __vsyslog_chk.
8905         Call __vfprintf_chk if necessary.  Make vsyslog a wrapper.  Add
8906         __syslog_chk.
8907         * misc/Versions: Export __syslog_chk and __vsyslog_chk.
8909 2005-07-28  Thomas Schwinge  <schwinge@nic-nac-project.de>
8911         [BZ #1137]
8912         * misc/error.c [_LIBC]: Include <stdbool.h> and <stdint.h>.
8914 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
8916         * nis/nis_xdr.c: Help gcc to avoid generating unnecessary wrapper
8917         functions.
8919 2005-07-28  Jakub Jelinek  <jakub@redhat.com>
8921         * stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf
8922         call.
8923         * gmon/gmon.c (write_gmon): Use __snprintf rather than snprintf.
8925 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
8927         * nis/nis_file.c: Rewrite the two pairs of functions into wrappers
8928         around a pair of new, generalized functions.  22% size reduction.
8930 2005-07-27  Ulrich Drepper  <drepper@redhat.com>
8932         * nis/nis_xdr.c: Remove unnecessary cast which might hide bugs.
8933         Rearrange code.  This reduces the code size 10%.
8935 2005-07-26  Jakub Jelinek  <jakub@redhat.com>
8937         * misc/error.c (error_tail): Fix a comment typo.
8939 2005-07-25  Ulrich Drepper  <drepper@redhat.com>
8941         * po/zh_TW.po: Update from translation team.
8943         * debug/mbstowcs_chk.c: New file.
8944         * debug/wcstombs_chk.c: New file.
8945         * debug/Makefile (routines): Add mbstowcs_chk and wcstombs_chk.
8946         * debug/Versions: Add __mbstowcs_chk and __wcstombs_chk.
8947         * stdlib/bits/stdlib.h: Add definitions for mbstowcs and wcstombs.
8949         * wcsmbs/bits/wchar2.h (mbsrtowcs): Pretty printing.
8951 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
8953         * string/test-memset.c (test_main): Use negative byte value in
8954         test.
8956         * string/test-memset.c (do_one_test): Compare effect of call, not
8957         only return value.
8958         Add a few casts to avoid warnings.
8960 2005-07-24  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
8962         * sysdeps/sh/memset.S (memset): Correct 2nd argument handling.
8964 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
8966         [BZ #1125]
8967         * posix/Makefile (tests): Add tst-execvp4.
8968         * posix/tst-execvp4.c: New file.
8970 2005-07-24  Jakub Jelinek  <jakub@redhat.com>
8972         [BZ #1125]
8973         * posix/execvp.c (execvp): Change path_malloc to
8974         char *, free that pointer on failure.
8976 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
8978         * wcsmbs/bits/wchar2.h: Use __FILE not FILE.
8979         * wcsmbs/Makefile: Add rules to build and run tst-wchar-h.
8980         * wcsmbs/tst-wchar-h.c: New file.
8982 2005-07-22  Ulrich Drepper  <drepper@redhat.com>
8984         * stdio-common/fxprintf.c (__fxprintf): Define variable more local.
8986 2005-07-22  Jakub Jelinek  <jakub@redhat.com>
8988         * wcsmbs/bits/wchar2.h (__vfwprintf_chk, __vwprintf_chk): Use
8989         __gnuc_va_list rather than _G_va_list.
8991 2005-07-22  Roland McGrath  <roland@redhat.com>
8993         [BZ #869]
8994         * Makerules ($(objpfx)stubs): Fix last change.
8996 2005-07-21  Roland McGrath  <roland@redhat.com>
8998         * nscd/Makefile ($(objpfx)nscd): Pass $(nscd-cflags) to $(LINK.o).
9000         * stdlib/Makefile (headers): Move bits/wchar.h to ...
9001         * wcsmbs/Makefile (headers): ... here.  Add bits/wchar2.h too.
9003 2005-07-21  Jakub Jelinek  <jakub@redhat.com>
9005         * wcsmbs/bits/wchar2.h (swprintf): Remove format argument.
9006         * debug/tst-chk1.c (do_test): Add test for swprintf with format
9007         being the last argument.
9009 2005-07-21  Thorsten Kukuk  <kukuk@suse.de>
9011         * debug/getgroups_chk.c (__getgroups_chk): Fix return value.
9013         * stdio-common/fxprintf.c: Include string.h.
9015 2005-07-20  Ulrich Drepper  <drepper@redhat.com>
9017         [BZ #1138]
9018         * sysdeps/x86_64/fpu/libm-test-ulps: Adjust expected atan2f results.
9019         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
9020         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
9022 2005-07-20  Bob Wilson  <bob.wilson@acm.org>
9023             Darin Petkov  <darin@tensilica.com>
9025         [BZ #1138]
9026         * sysdeps/ieee754/flt-32/e_atan2f.c (pi_lo): Correct exponent value.
9028 2005-07-20  Jakub Jelinek  <jakub@redhat.com>
9030         * include/stdio.h (__fxprintf): Remove wfmt argument.
9031         * stdio-common/fxprintf.c: Include assert.h, ctype.h and wchar.h.
9032         (__fxprintf): Remove wfmt argument, create wfmt format string on
9033         the fly from fmt.
9034         * argp/argp-fmtstream.c: Adjust all __fxprintf callers.
9035         * argp/argp-help.c: Likewise.
9036         * assert/assert-perr.c: Likewise.
9037         * assert/assert.c: Likewise.
9038         * gmon/gmon.c: Likewise.
9039         * inet/rcmd.c: Likewise.
9040         * malloc/obstack.c: Likewise.
9041         * misc/error.c: Likewise.
9042         * misc/getpass.c: Likewise.
9043         * posix/getopt.c: Likewise.
9044         * resolv/res_hconf.c: Likewise.
9045         * stdio-common/perror.c: Likewise.
9046         * stdio-common/psignal.c: Likewise.
9047         * stdlib/fmtmsg.c: Likewise.
9048         * sunrpc/auth_unix.c: Likewise.
9049         * sunrpc/clnt_perr.c: Likewise.
9050         * sunrpc/clnt_tcp.c: Likewise.
9051         * sunrpc/clnt_udp.c: Likewise.
9052         * sunrpc/clnt_unix.c: Likewise.
9053         * sunrpc/svc_simple.c: Likewise.
9054         * sunrpc/svc_tcp.c: Likewise.
9055         * sunrpc/svc_udp.c: Likewise.
9056         * sunrpc/svc_unix.c: Likewise.
9057         * sunrpc/xdr.c: Likewise.
9058         * sunrpc/xdr_array.c: Likewise.
9059         * sunrpc/xdr_rec.c: Likewise.
9060         * sunrpc/xdr_ref.c: Likewise.
9061         * sysdeps/generic/wordexp.c: Likewise.
9063 2005-07-20  Ulrich Drepper  <drepper@redhat.com>
9065         * wcsmbs/bits/wchar2.h: Add definitions for wcrtomb, mbsrtowcs,
9066         wcsrtombs, mbsnrtowcs, and wcsnrtombs.
9067         * debug/Makefile (routines): Add wcrtomb_chk, mbsrtowcs_chk,
9068         wcsrtombs_chk, mbsnrtowcs_chk, and wcsnrtombs_chk.
9069         * debug/Versions: Add __wcrtomb_chk, __mbsrtowcs_chk,
9070         __wcsrtombs_chk, __mbsnrtowcs_chk, and __wcsnrtombs_chk.
9071         * debug/tst-chk1.c: Add tests for new functions.
9072         * debug/mbsnrtowcs_chk.c: New file.
9073         * debug/mbsrtowcs_chk.c: New file.
9074         * debug/wcrtomb_chk.c: New file.
9075         * debug/wcsnrtombs_chk.c: New file.
9076         * debug/wcsrtombs_chk.c: New file.
9078 2005-07-19  Ulrich Drepper  <drepper@redhat.com>
9080         * stdio-common/Makefile (aux): Add fxprintf.
9081         * stdio-common/fxprintf.c: New file.
9082         * include/stdio.h: Add declaration for __fxprintf.
9083         * argp/argp-fmtstream.c: Use __fxprintf instead of inline stream
9084         orientation test and two separate function calls.
9085         * argp/argp-help.c: Likewise.
9086         * assert/assert-perr.c: Likewise.
9087         * assert/assert.c: Likewise.
9088         * gmon/gmon.c: Likewise.
9089         * inet/rcmd.c: Likewise.
9090         * malloc/obstack.c: Likewise.
9091         * misc/error.c: Likewise.
9092         * misc/getpass.c: Likewise.
9093         * posix/getopt.c: Likewise.
9094         * resolv/res_hconf.c: Likewise.
9095         * stdio-common/perror.c: Likewise.
9096         * stdio-common/psignal.c: Likewise.
9097         * stdlib/fmtmsg.c: Likewise.
9098         * sunrpc/auth_unix.c: Likewise.
9099         * sunrpc/clnt_perr.c: Likewise.
9100         * sunrpc/clnt_tcp.c: Likewise.
9101         * sunrpc/clnt_udp.c: Likewise.
9102         * sunrpc/clnt_unix.c: Likewise.
9103         * sunrpc/svc_simple.c: Likewise.
9104         * sunrpc/svc_tcp.c: Likewise.
9105         * sunrpc/svc_udp.c: Likewise.
9106         * sunrpc/svc_unix.c: Likewise.
9107         * sunrpc/xdr.c: Likewise.
9108         * sunrpc/xdr_array.c: Likewise.
9109         * sunrpc/xdr_rec.c: Likewise.
9110         * sunrpc/xdr_ref.c: Likewise.
9111         * sysdeps/generic/wordexp.c: Likewise.
9113         [BZ #1137]
9114         * misc/Makefile: Add rules to build and run tst-error1.
9115         * misc/tst-error1.c: New file.
9116         * misc/error.c: Fix memory leak and possibly endless loop.
9118         * configure.in: Check for -fstack-protector gcc option.
9119         * config.make.in (have-ssp): Add template.
9120         * nscd/Makefile (nscd-cflags): Add -fstack-protector if supported.
9122         * nscd/nscd.c (main): Don't ignore result of chdir call.
9124 2005-07-18  Roland McGrath  <roland@redhat.com>
9126         [BZ #869]
9127         * Makerules ($(objpfx)stubs): Do cd into $(objdir) to reduce size of
9128         objdump command line.
9130 2005-07-18  Ulrich Drepper  <drepper@redhat.com>
9132         * nscd/Makefile (nscd-cflags): Add _FORTIFY_SOURCE.
9134         * nscd/connections.c: Fix a few wur warnings.
9136         [BZ #1113]
9137         * nscd/grpcache.c (cache_addgr): Use correct maximum for group ID
9138         length.  Patch by Ivan Gyurdiev <ivg2@cornell.edu>.
9140         * debug/confstr_chk.c: New file.
9141         * debug/getdomainname_chk.c: New file.
9142         * debug/getgroups_chk.c: New file.
9143         * debug/gethostname_chk.c: New file.
9144         * debug/getlogin_r_chk.c: New file.
9145         * debug/ttyname_r_chk.c: New file.
9146         * posix/bits/unistd.h: Add definitions for new debug versions.
9147         * debug/tst-chk1.c: Add tests for new functions.
9148         * debug/Versions: Export new functions.
9149         * debug/Makefile (routines): Add new files.
9151         * stdlib/bits/stdlib.h: Fix typo.
9153 2005-07-13  Thorsten Kukuk  <kukuk@suse.de>
9155         * manual/Makefile (libc/index.html): Depend on dir-add.texi.
9157 2005-07-15  Ulrich Drepper  <drepper@redhat.com>
9159         * stdlib/bits/stdlib.h: Use __REDIRECT_NTH instead of __REDIRECT
9160         where necessary.
9161         * wcsmbs/bits/wchar2.h: Likewise.
9163 2005-07-15  Andreas Jaeger  <aj@suse.de>
9165         * debug/Makefile (tst-lfschk3-ENV): New, set locale.
9166         (tst-lfschk2-ENV): New.
9167         (tst-lfschk1-ENV): New.
9168         (tst-chk3-ENV): New.
9169         (tst-chk2-ENV): New.
9170         (tst-chk1-ENV): New.
9172         [BZ #1079]
9173         * include/stdlib.h: Remove malloc attribute from __posix_memalign.
9174         * stdlib/stdlib.h: Likewise.
9176 2005-07-15  Ulrich Drepper  <drepper@redhat.com>
9178         * wcsmbs/bits/wchar2.h: New file.
9179         * include/bits/wchar2.h: New file.
9180         * wcsmbs/wchar.h: Include <bits/wchar2.h> if fortification is
9181         requested.
9182         * wcsmbs/wcsncpy.c: Add __wcsncpy alias.
9183         * string/bits/string3.h: Add fortified stpncpy definitions.
9184         * sysdeps/generic/stpncpy_chk.c: New file.
9185         * libio/vswprintf.c: Move _IO_wstrnfile definition to strfile.h.
9186         Export _IO_wstrn_jumps.
9187         * libio/strfile.h: Define _IO_wstrnfile and declare _IO_wstrn_jumps.
9188         * include/wchar.h: Declare __wcsncpy and __vswprintf_chk.
9189         * debug/fgetws_chk.c: New file.
9190         * debug/fgetws_u_chk.c: New file.
9191         * debug/fwprintf_chk.c: New file.
9192         * debug/swprintf_chk.c: New file.
9193         * debug/vfwprintf_chk.c: New file.
9194         * debug/vswprintf_chk.c: New file.
9195         * debug/vwprintf_chk.c: New file.
9196         * debug/wcpcpy_chk.c: New file.
9197         * debug/wcpncpy_chk.c: New file.
9198         * debug/wcscat_chk.c: New file.
9199         * debug/wcscpy_chk.c: New file.
9200         * debug/wcsncat_chk.c: New file.
9201         * debug/wcsncpy_chk.c: New file.
9202         * debug/wmemcpy_chk.c: New file.
9203         * debug/wmemmove_chk.c: New file.
9204         * debug/wmempcpy_chk.c: New file.
9205         * debug/wmemset_chk.c: New file.
9206         * debug/wprintf_chk.c: New file.
9207         * debug/tst-chk1.c: Add tests for new functions.
9208         * debug/Versions: Export new functions.
9209         * debug/Makefile (routines): Add new functions.
9211 2005-07-13  Ulrich Drepper  <drepper@redhat.com>
9213         * nscd/nscd_helper.c: Add a few __builtin_expect.
9215         [BZ #1080]
9216         * nscd/connections.c (send_ro_fd): Make sure BUF is aligned correctly.
9217         * nscd/nscd_helper.c (wait_on_socket): New function.
9218         (get_mapping): Use wait_on_socket instead of poll.  The former handles
9219         EINTR of poll correctly.
9220         (__nscd_open_socket): Likewise.
9221         (get_mapping): Make sure BUF is aligned correctly.
9222         (get_mapping): Use munmap on correct pointer.
9224 2005-07-12  Ulrich Drepper  <drepper@redhat.com>
9226         * include/libc-symbols.h: Define macros for librt hidden symbols.
9227         * include/time.h: Add librt_hidden_proto definition for clock_gettime.
9228         * sysdeps/generic/clock_gettime.c: Add librt_hidden_def.
9229         * sysdeps/unix/clock_gettime.c: Likewise.
9231         * stdlib/bits/stdlib.h: New file.
9232         * stdlib/stdlib.h: Include <bits/stdlib.h> if fortification is
9233         requested.
9234         * Makefile (headers): Add bits/stdlib.h.
9235         * include/bits/stdlib.h: New file.
9236         * debug/Depend: New file.
9237         * debug/ptsname_r_chk.c: New file.
9238         * debug/realpath_chk.c: New file.
9239         * debug/wctomb_chk.c: New file.
9240         * debug/Makefile (routines): Add ptsname_r_chk, realpath_chk, and
9241         wctomb_chk.
9242         * debug/Versions: Export __ptsname_r_chk, __realpath_chk, and
9243         __wctomb_chk.
9244         * debug/tst-chk1.c: Add tests for __ptsname_r_chk, __realpath_chk, and
9245         __wctomb_chk.
9247 2005-07-12  Jakub Jelinek  <jakub@redhat.com>
9249         [BZ #1106]
9250         * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c: Include not-cancel.h.
9251         (has_cpuclock): Use open_not_cancel_2 instead of open, read_not_cancel
9252         instead of read and close_not_cancel_no_status instead of close.
9254         [BZ #1106]
9255         * sysdeps/s390/s390-64/bcopy.S (__bcopy): Use
9256         HIDDEN_BUILTIN_JUMPTARGET to jump to memmove.
9258 2005-06-27  Carlos O'Donell  <carlos@systemhalted.org>
9260         * posix/regcomp.c (re_compile_internal): Call __libc_lock_init
9261         after init_dfa.
9263 2005-07-08  Ulrich Drepper  <drepper@redhat.com>
9265         * sysdeps/x86_64/fpu/s_sincosl.S: Use retq not ret.  Remove
9266         alignment.
9267         * sysdeps/x86_64/fpu/s_sincos.S: New file.
9269         * include/fenv.h: Add libm_hidden_proto for fesetround and
9270         feholdexcept.
9271         * sysdeps/alpha/fpu/feholdexcpt.c: Add libm_hidden_def.
9272         * sysdeps/alpha/fpu/fesetround.c: Likewise.
9273         * sysdeps/generic/feholdexcpt.c: Likewise.
9274         * sysdeps/generic/fesetround.c: Likewise.
9275         * sysdeps/i386/fpu/feholdexcpt.c: Likewise.
9276         * sysdeps/i386/fpu/fesetround.c: Likewise.
9277         * sysdeps/ia64/fpu/feholdexcpt.c: Likewise.
9278         * sysdeps/ia64/fpu/fesetround.c: Likewise.
9279         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
9280         * sysdeps/powerpc/fpu/fesetround.c: Likewise.
9281         * sysdeps/s390/fpu/feholdexcpt.c: Likewise.
9282         * sysdeps/s390/fpu/fesetround.c: Likewise.
9283         * sysdeps/sh/sh4/fpu/feholdexcpt.c: Likewise.
9284         * sysdeps/sh/sh4/fpu/fesetround.c: Likewise.
9285         * sysdeps/sparc/fpu/feholdexcpt.c: Likewise.
9286         * sysdeps/sparc/fpu/fesetround.c: Likewise.
9287         * sysdeps/x86_64/fpu/feholdexcpt.c: Likewise.
9288         * sysdeps/x86_64/fpu/fesetround.c: Likewise.
9289         * sysdeps/generic/s_significand.c (__significand): Use __ilogb not
9290         ilogb.
9291         * sysdeps/generic/s_significandf.c (__significandf): Use __ilogbf
9292         not ilogbf.
9293         * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and
9294         __cos, not sin and cos.
9296 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
9298         * resolv/res_send.c (send_dg): Recognize referral results and
9299         treat them as server errors.
9300         Based on a patch by Jason Vas Dias <jvdias@redhat.com>.
9302 2005-07-08  Carlos O'Donell  <carlos@systemhalted.org>
9304         * sysdeps/hppa/setjmp.S (__sigsetjmp): Use %r1 not %r19.
9306         * sysdeps/hppa/add_n.s (__mpn_add_n): Use sr0 or r0, not 0.
9307         * sysdeps/hppa/lshift.s (__mpn_lshift): Likewise.
9308         * sysdeps/hppa/rshift.s (__mpn_rshift): Likewise.
9309         * sysdeps/hppa/sub_n.s (__mpn_sub_n): Likewise.
9310         * sysdeps/hppa/udiv_qrnnd.s (__udiv_qrnnd): Likewise.
9311         * sysdeps/hppa/hppa1.1/udiv_qrnnd.s (__udiv_qrnnd): Likewise.
9313 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
9315         * sysdeps/generic/s_ctanh.c (__ctanh): Handle case of zero den better.
9316         * sysdeps/generic/s_ctanhf.c (__ctanhf): Likewise.
9317         * sysdeps/generic/s_ctanhl.c (__ctanhl): Likewise.
9318         * sysdeps/generic/s_ctan.c (__ctan): Likewise.
9319         * sysdeps/generic/s_ctanf.c (__ctanf): Likewise.
9320         * sysdeps/generic/s_ctanl.c (__ctanl): Likewise.
9322 2005-04-13  H.J. Lu  <hongjiu.lu@intel.com>
9324         [BZ #974]
9325         * csu/elf-init.c (__preinit_array_start): Take int, char **, char **.
9326         (__preinit_array_end): Likewise.
9327         (__init_array_start): Likewise.
9328         (__init_array_end): Likewise.
9329         (__libc_csu_init): Take int argc, char **argv, char **envp.
9330         Call preinit_array and init_array with argc, argv, envp.
9331         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Remove
9332         INIT_MAIN_ARGS.
9333         * sysdeps/powerpc/elf/libc-start.c (INIT_MAIN_ARGS): Removed.
9334         * elf/Makefile (distribute): Add tst-array5.c, tst-array5-static.c,
9335         tst-array5dep.c, and tst-array5.exp.
9336         (tests): Add tst-array5.
9337         (tests-static): Add tst-array5-static.
9338         ($(objpfx)tst-array5): New target.
9339         ($(objpfx)tst-array5.out): Likewise.
9340         ($(objpfx)tst-array5-static.out): Likewise.
9341         * elf/tst-array5-static.c: New file.
9342         * elf/tst-array5-static.exp: Likewise.
9343         * elf/tst-array5.c: Likewise.
9344         * elf/tst-array5.exp: Likewise.
9345         * elf/tst-array5dep.c: Likewise.
9347 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
9349         * sysdeps/unix/sysv/linux/bits/sched.h: Adjust clone prototype.
9351 2005-07-05  Jakub Jelinek  <jakub@redhat.com>
9353         * elf/stackguard-macros.h (STACK_CHK_GUARD): Fix s390/s390x definition.
9354         Reported by Ulrich Weigand <uweigand@de.ibm.com>.
9356         * elf/stackguard-macros.h (STACK_CHK_GUARD): Add ia64 definition.
9358 2005-07-06  Ulrich Drepper  <drepper@redhat.com>
9360         * elf/dl-error.c (_dl_signal_error): When testing for executable
9361         being relocated, take into account that nothing might even be loaded.
9363         * elf/dl-reloc.c [PROF] (_dl_relocate_object): Define
9364         consider_profiling always to zero.  Don't count of compiler to
9365         remove unreached if block.
9366         * sysdeps/x86_64/dl-trampoline.S [PROF] (_dl_runtime_profile):
9367         Don't compile.
9368         * sysdeps/i386/dl-trampoline.S [PROF] (_dl_runtime_profile): Likewise.
9369         * sysdeps/ia64/dl-trampoline.S [PROF] (_dl_runtime_profile): Likewise.
9370         * sysdeps/s390/s390-64/dl-trampoline.S [PROF] (_dl_runtime_profile):
9371         Likewise.
9372         * sysdeps/s390/s390-32/dl-trampoline.S [PROF] (_dl_runtime_profile):
9373         Likewise.
9374         * sysdeps/powerpc/powerpc64/dl-trampoline.S [PROF]
9375         (_dl_profile_resolve): Likewise.
9376         * sysdeps/powerpc/powerpc32/dl-trampoline.S [PROF]
9377         (_dl_profile_resolve): Likewise.
9378         * gmon/Makefile: Add rules to build and run tst-profile-static.
9379         * gmon/tst-profile-static.c: New file.
9380         * Makeconfig (+link-static): Allow passing program-specific flags.
9382 2005-07-05  Thorsten Kukuk  <kukuk@suse.de>
9384         [BZ #1111]
9385         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Check if NSS
9386         module provides getgrgid_r.
9387         (getgrnam_plusgroup): Preserve original return value.
9388         * nis/nss_compat/compat-pwd.c (getpwnam_plususer): Preserve
9389         original return value.
9390         * nis/nss_compat/compat-spwd.c (getspnam_plususer): Likewise.
9392 2005-07-05  Ulrich Drepper  <drepper@redhat.com>
9394         [BZ #1101]
9395         * posix/regex_internal.c (build_wcs_buffer): Use MB_LEN_MAX not
9396         MB_CUR_MAX.
9397         (build_wcs_upper_buffer): Likewise.
9399         * csu/elf-init.c (__libc_csu_fini): Pretty printing.
9401 2005-07-02  Roland McGrath  <roland@redhat.com>
9403         * NEWS: Note LinuxThreads removal.
9404         * manual/install.texi (Installation): Don't mention linuxthreads.
9405         (Configuring and compiling): Don't use linuxthreads as example.
9407         * sysdeps/unix/sysv/linux/configure.in: Check for nptl add-on only,
9408         not linuxthreads.
9409         * sysdeps/unix/sysv/linux/configure: Regenerated.
9410         * resolv/Depend: Add nptl.
9411         * rt/Depend: Likewise.
9413         * linuxthreads, linuxthreads_db: Directories removed (preserved in
9414         ports repository).
9416 2005-06-27  Jakub Jelinek  <jj@ultra.linux.cz>
9418         [BZ #1037]
9419         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: -mv8 is deprecated,
9420         use -mcpu=v8.
9422 2005-06-16  Jakub Jelinek  <jakub@redhat.com>
9424         [BZ #1016]
9425         * sysdeps/ia64/strlen.S (strlen): Change l2 into a local label.
9427 2005-06-23  Thorsten Kukuk  <kukuk@suse.de>
9429         [BZ #1109]
9430         * nscd/nscd_stat.c (receive_print_stats): Replace YESSTR/NOSTR
9431         with own translation.
9433 2005-06-25  Jakub Jelinek  <jakub@redhat.com>
9435         [BZ #1097]
9436         * sunrpc/xdr.c (xdr_hyper, xdr_u_hyper): When decoding, cast
9437         t2 to uint32_t instead of ulong.
9438         * sunrpc/Makefile (tests): Add tst-xdrmem.
9439         * sunrpc/tst-xdrmem.c: New test.
9441         * Versions.def (ld): Add GLIBC_2.4.
9442         * configure.in: Add --enable-stackguard-randomization option.
9443         (ENABLE_STACKGUARD_RANDOMIZE): New define.
9444         * config.h.in (ENABLE_STACKGUARD_RANDOMIZE): Add.
9445         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include stdint.h.
9446         (_dl_setup_stack_chk_guard): New inline function.
9447         * sysdeps/generic/dl-osinfo.h: Include stdint.h.
9448         (_dl_setup_stack_chk_guard): New inline function.
9449         * elf/rtld.c (__stack_chk_guard): New variable.
9450         (dl_main): Remove all traces of TLS_INIT_TP_EXPENSIVE.
9451         Set __stack_chk_guard to _dl_setup_stack_chk_guard (),
9452         use THREAD_SET_STACK_GUARD if defined.
9453         * elf/Versions (ld): Export __stack_chk_guard@@GLIBC_2.4.
9454         * sysdeps/generic/libc-start.c (__stack_chk_guard): New variable.
9455         (__libc_start_main): Set __stack_chk_guard to
9456         _dl_setup_stack_chk_guard (), use THREAD_SET_STACK_GUARD if defined.
9457         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Remove all
9458         traces of TLS_INIT_TP_EXPENSIVE.
9459         * debug/Versions (libc): Export __stack_chk_fail@@GLIBC_2.4.
9460         * debug/Makefile (routines): Add stack_chk_fail.
9461         (static-only-routines): Add stack_chk_fail_local.
9462         * debug/stack_chk_fail_local.c: New file.
9463         * debug/stack_chk_fail.c: New file.
9464         * elf/Makefile: Add rules to build and run tst-stackguard1{,-static}
9465         tests.
9466         * elf/tst-stackguard1.c: New file.
9467         * elf/tst-stackguard1-static.c: New file.
9468         * elf/stackguard-macros.h: New file.
9470 2005-06-21  Ulrich Drepper  <drepper@redhat.com>
9472         * resource/Makefile (tests): Add tst-getrlimit.
9473         * resource/tst-getrlimit.c: New file.
9475         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTPRIO): Fix typo.
9476         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
9477         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
9479 2005-06-20  Ulrich Drepper  <drepper@redhat.com>
9481         * nscd/nscd.init: Get more in line with lsb3.
9482         * nscd/nscd.c: Adjust some error codes to fit in better with lsb3.
9483         * nscd/connections.c: Likewise.
9485 2005-06-20  Jakub Jelinek  <jakub@redhat.com>
9487         [BZ #653]
9488         * sysdeps/unix/sysv/linux/sys/quota.h: Add definitions and types for
9489         _LINUX_QUOTA_VERSION >= 2.
9490         (_LINUX_QUOTA_VERSION): Define if not yet defined.
9492         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_NICE,
9493         RLIMIT_RTPRIO): Add.
9494         (RLIMIT_NLIMITS): Adjust.
9495         * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIMIT_NICE,
9496         RLIMIT_RTPRIO): Add.
9497         (RLIMIT_NLIMITS): Adjust.
9498         * sysdeps/unix/sysv/linux/mips/bits/resource.h (RLIMIT_NICE,
9499         RLIMIT_RTPRIO): Add.
9500         (RLIMIT_NLIMITS): Adjust.
9501         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIMIT_NICE,
9502         RLIMIT_RTPRIO): Add.
9503         (RLIMIT_NLIMITS): Adjust.
9505 2005-06-17  Ulrich Drepper  <drepper@redhat.com>
9507         [BZ #1106]
9508         * time/mktime.c: Always include <string.h> for prototype of
9509         implicitly used memcpy.
9511         [BZ #1104]
9512         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
9513         (truncate64): Use __truncate, not truncate.
9514         (__have_no_truncate64): Renamed from have_no_truncate64.
9515         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c
9516         (__have_no_truncate64): Renamed from have_no_truncate64.
9518         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ulps for complex
9519         float functions for gcc 4.
9521 2005-06-10  Jakub Jelinek  <jakub@redhat.com>
9523         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_runtime_setup):
9524         Handle prelinked libraries and binaries with new style PLT.
9526 2005-06-07  Jakub Jelinek  <jakub@redhat.com>
9528         * elf/elf.h (R_PPC_REL16, R_PPC_REL16_LO, R_PPC_REL16_HI,
9529         R_PPC_REL16_HA): Define.
9531 2005-06-14  Alan Modra  <amodra@bigpond.net.au>
9533         * config.h.in (HAVE_ASM_PPC_REL16): Add.
9534         * elf/elf.h (DT_PPC_GOT, DT_PPC_NUM): Define.
9535         * elf/tls-macros.h (PowerPC32): Include config.h.  Add variants of
9536         TLS_IE, TLS_LD and TLS_GD for new PLT/GOT layout.
9537         * sysdeps/powerpc/powerpc32/configure.in: New file,
9538         * sysdeps/powerpc/powerpc32/dl-dtprocnum.h: New file.
9539         * sysdeps/powerpc/powerpc32/dl-machine.h (DT_PPC): Define.
9540         (ppc_got): New inline function.
9541         (elf_machine_dynamic): Use ppc_got.  Add attribute const.
9542         (elf_machine_load_address): Add attribute const.  Don't use int vars.
9543         Use bcl rather than bl to save trashing branch target stack.  Use
9544         elf_machine_dynamic rather than duplicating code here.
9545         (elf_machine_runtime_setup): New inline function replacing define.
9546         Handle new PLT.
9547         (elf_machine_fixup_plt): Handle new PLT.
9548         (elf_machine_rela): Likewise.
9549         * sysdeps/powerpc/powerpc32/sysdep.h: Include config.h.
9550         (CALL_MCOUNT): Don't set up counter vars.
9551         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Correct comment.
9552         * sysdeps/powerpc/powerpc32/elf/start.S (start_addressesp): Don't
9553         define when HAVE_ASM_PPC_REL16.
9554         (_start): Add HAVE_ASM_PPC_REL16 code.
9555         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Don't bl
9556         into the GOT when HAVE_ASM_PPC_REL16.
9557         * sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
9558         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Ditto.
9559         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S (__ceil): Likewise.
9560         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S (__ceilf): Likewise.
9561         * sysdeps/powerpc/powerpc32/fpu/s_floor.S (__floor): Likewise.
9562         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S (__floorf): Likewise.
9563         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Likewise.
9564         * sysdeps/powerpc/powerpc32/fpu/s_rint.S (__rint): Likewise.
9565         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S (__rintf): Likewise.
9566         * sysdeps/powerpc/powerpc32/fpu/s_round.S (__round): Likewise.
9567         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S (__roundf): Likewise.
9568         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S (__trunc): Likewise.
9569         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S (__truncf): Likewise.
9570         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp):
9571         Likewise.
9572         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S (__brk): Likewise.
9573         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
9574         (__getcontext): Likewise.
9575         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
9576         (__setcontext): Likewise.
9577         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
9578         (__swapcontext): Likewise.
9579         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (stackblock):
9580         Comment.
9581         (__socket): Bomb if NARGS >= 7.  Invoke CGOTSETUP and CGOTRESTORE.
9583 2005-06-17  Ulrich Drepper  <drepper@redhat.com>
9585         [BZ #1106]
9586         * sysdeps/posix/sigignore.c: Include <string.h> to tell the compiler
9587         to use __GI_memset.
9588         * sysdeps/posix/signal.c: Likewise.
9589         * sysdeps/posix/sigset.c: Likewise.
9590         * sysdeps/posix/sysv_signal.c: Likewise.
9591         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
9592         * sysdeps/unix/sysv/linux/sysctl.c: Likewise.
9593         * sysdeps/unix/sysv/linux/system.c: Likewise.
9595 2005-06-15  Jakub Jelinek  <jakub@redhat.com>
9597         [BZ #1088]
9598         * hesiod/hesiod.c (hesiod_init): Don't check for ctx->classes[0] == 0
9599         or both classes equal here.
9600         (parse_config_file): If both classes are equal, clear the second one.
9602 2005-06-08  Karl Kelley  <kekelley@iastate.edu>
9604         [BZ #1088]
9605         * hesiod/hesiod_p.h (struct hesiod_p): Add classes array.
9606         * hesiod/hesiod.c (hesiod_init): Initialize classes.  Fail if no
9607         valid classes were given or if both are equal.
9608         (hesiod_resolve): Use ctx->classes instead of hardcoded C_IN
9609         and C_HS order.
9610         (parse_config_file): Handle classes keyword.
9611         * hesiod/README.hesiod: Mention addition of the classes keyword.
9613 2005-06-14  Ulrich Drepper  <drepper@redhat.com>
9615         [BZ #1085]
9616         * configure.in: Add test for availability of libaudit.
9617         * config.h.in: Define HAVE_LIBAUDIT.
9618         * config.make.in: Define have-libaudit.
9619         * nscd/Makefile: If libaudit is available, link nscd with it.
9620         * nscd/selinux.c: If HAVE_LIBAUDIT is defined, log using libaudit.
9621         Patch by Steve Grubb <sgrubb@redhat.com>.
9623         * debug/pread64_chk.c: Use __libc_pread64 instead of __pread64.
9624         * sysdeps/posix/posix_fallocate64.c: Likewise.
9625         * include/string.h: Use libc_hidden_proto for strnlen.
9626         * sysdeps/generic/strnlen.c: Add libc_hidden_def.
9627         * include/libintl.h: Use libc_hidden_proto for __dcgettext.
9628         * intl/dcgettext.c: Add libc_hidden_def.
9629         * include/execinfo.h: Add libc_hidden_proto for __backtrace and
9630         __backtrace_symbols_fd.
9631         * sysdeps/generic/backtrace.c: Add libc_hidden_def.
9632         * sysdeps/generic/backtracesymsfd.c: Likewise.
9633         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
9634         * sysdeps/i386/backtrace.c: Likewise.
9635         * sysdeps/ia64/backtrace.c: Likewise.
9636         * sysdeps/powerpc/powerpc32/backtrace.c: Likewise.
9637         * sysdeps/powerpc/powerpc64/backtrace.c: Likewise.
9638         * sysdeps/s390/s390-32/backtrace.c: Likewise.
9639         * sysdeps/s390/s390-64/backtrace.c: Likewise.
9641 2005-06-13  Ulrich Drepper  <drepper@redhat.com>
9643         * sysdeps/unix/clock_gettime.c (clock_gettime): Implement case
9644         where HANDLED_REALTIME is not defined.  [BZ #966]
9646 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
9648         [BZ #1096]
9649         * sysdeps/unix/sysv/linux/netlinkaccess.h (__netlink_sendreq,
9650         __netlink_receive): Remove prototypes.
9651         (__netlink_request): New prototype.
9652         * sysdeps/unix/sysv/linux/ifaddrs.c: Include <alloca.h> and
9653         <stdint.h>.
9654         (__netlink_sendreq): Make static.
9655         (__netlink_receive): Rename to...
9656         (__netlink_request): ... this.  Add type argument, call
9657         __netlink_sendreq.  If MSG_TRUNC is set after recvmsg, retry
9658         with a bigger buffer.  Don't record buffers that contain no
9659         messages we are expecting.
9660         (getifaddrs): Use __netlink_request instead of __netlink_sendreq
9661         and __netlink_receive pairs.  Formatting.
9662         * sysdeps/unix/sysv/linux/if_index.c (if_nameindex_netlink): Use
9663         __netlink_request instead of __netlink_sendreq and __netlink_receive
9664         pair.
9666 2005-06-13  Thorsten Kukuk  <kukuk@suse.de>
9668         * sysdeps/unix/sysv/linux/netinet/if_tr.h: Don't include kernel
9669         headers, instead copy important structs/defines.
9671 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
9673         * elf/rtld.c (dl_main): Move DT_DEBUG setup before first
9674         _dl_debug_state call.
9676 2005-06-12  Ulrich Drepper  <drepper@redhat.com>
9678         * elf/dl-error.c (_dl_signal_error): Store information about use of
9679         real malloc in the catch object.
9680         (_dl_catch_error): Forward information about malloc use to caller
9681         in new parameter.
9682         (_dl_out_of_memory): Make static.
9683         * elf/dl-deps.c: Adjust callers of _dl_catch_error.
9684         * elf/dl-libc.c: Likewise.
9685         * elf/dl-open.c: Likewise.
9686         * elf/rtld.c: Likewise.
9687         Add new --audit option.
9688         * sysdeps/generic/ldsodefs.h: Remove _dl_out_of_memory declaration.
9689         (rtld_global_ro._dl_signal_error): Add new parameter.
9690         * include/dlfcn.h (_dl_catch_error): Add new parameter.
9691         * dlfcn/dlfcn.c (_dlerror_run): Pass additional parameter to
9692         _dl_catch_error.  Only free if the returned newly value says so.
9694 2005-06-01  Roland McGrath  <roland@redhat.com>
9696         [BZ #959]
9697         * posix/tst-mmap.c (main): Fill the test file with enough data for the
9698         page size.
9700 2005-05-30  Jakub Jelinek  <jakub@redhat.com>
9702         * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): If
9703         GLRO(dl_osversion) has been already set to a value smaller than
9704         _dl_discover_osversion (), don't overwrite it here.
9706 2005-05-24  Thomas Schwinge  <schwinge@nic-nac-project.de>
9708         * sysdeps/mach/i386/syscall.S (syscall): Call END.
9710 2005-05-28  Richard Henderson  <rth@redhat.com>
9712         * elf/elf.h (DT_ALPHA_PLTRO, DT_ALPHA_NUM): New.
9713         * sysdeps/alpha/dl-dtprocnum.h: New file.
9714         * sysdeps/alpha/dl-machine.h (DT_ALPHA): New.
9715         (elf_machine_load_address): Simplify to rely on gprel relocations.
9716         (elf_machine_runtime_setup): Handle DT_ALPHA_PLTRO plt format.
9717         Remove thread safety workaround for binutils 2.6.
9718         (elf_machine_fixup_plt): Handle DT_ALPHA_PLTRO plt format.
9719         * sysdeps/alpha/dl-trampoline.S (_dl_runtime_resolve_new): New.
9720         (_dl_runtime_profile_new): New.
9721         (_dl_runtime_resolve_old): Rename from _dl_runtime_resolve.
9722         (_dl_runtime_profile_old): Rename from _dl_runtime_profile.  Fix
9723         typo in _dl_call_pltexit argument loading.
9725         * sysdeps/alpha/div_libc.h (funcnoplt): New.
9726         * sysdeps/alpha/divl.S: Use it.
9727         * sysdeps/alpha/divq.S: Likewise
9728         * sysdeps/alpha/divqu.S: Likewise.
9729         * sysdeps/alpha/reml.S: Likewise.
9730         * sysdeps/alpha/remq.S: Likewise.
9731         * sysdeps/alpha/remqu.S: Likewise.
9733 2005-05-26  Andreas Schwab  <schwab@suse.de>
9735         * locale/Makefile (CFLAGS-loadlocale.c): Don't define.
9737 2005-05-26  Ulrich Drepper  <drepper@redhat.com>
9739         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_DIRECT): Fix value.
9740         Reported by Colin Gibbs <colin@gibbsonline.net>.  [BZ #954]
9742 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
9744         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Corrent
9745         _dl_hwcap access in PIC && !SHARED case.
9746         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
9748 2005-05-25  Dwayne Grant McConnell  <dgm69@us.ibm.com>
9750         * gmon/gmon.c: Add space in weak_alias use.
9751         * linuxthreads/sysdeps/unix/sysv/linux/mips/vfork.S: Likewise.
9752         * sysdeps/alpha/htonl.S: Likewise.
9753         * sysdeps/alpha/htons.S: Likewise.
9754         * sysdeps/alpha/elf/start.S: Likewise.
9755         * sysdeps/i386/i386-mcount.S: Likewise.
9756         * sysdeps/ia64/strchr.S: Likewise.
9757         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
9758         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
9759         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
9760         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
9761         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
9762         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
9763         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
9764         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
9765         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
9766         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
9767         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
9768         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
9769         * sysdeps/mach/hurd/readdir64_r.c: Likewise.
9770         * sysdeps/mach/hurd/sigaltstack.c: Likewise.
9771         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
9772         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
9773         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
9774         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
9775         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
9776         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
9777         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
9778         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
9779         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
9780         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
9781         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
9782         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
9783         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
9784         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
9785         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
9786         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
9787         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
9788         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
9789         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
9790         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
9791         * sysdeps/sparc/sparc32/memset.S: Likewise.
9792         * sysdeps/sparc/sparc32/stpcpy.S: Likewise.
9793         * sysdeps/sparc/sparc32/strchr.S: Likewise.
9794         * sysdeps/sparc/sparc32/strchr.S: Likewise.
9795         * sysdeps/sparc/sparc64/memcmp.S: Likewise.
9796         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
9797         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
9798         * sysdeps/sparc/sparc64/memset.S: Likewise.
9799         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
9800         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
9801         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
9802         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
9803         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
9804         * sysdeps/unix/sysv/linux/alpha/clone.S: Likewise.
9805         * sysdeps/unix/sysv/linux/alpha/getcontext.S: Likewise.
9806         * sysdeps/unix/sysv/linux/alpha/getrusage.S: Likewise.
9807         * sysdeps/unix/sysv/linux/alpha/setcontext.S: Likewise.
9808         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Likewise.
9809         * sysdeps/unix/sysv/linux/alpha/swapcontext.S: Likewise.
9810         * sysdeps/unix/sysv/linux/alpha/syscall.S: Likewise.
9811         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
9812         * sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
9813         * sysdeps/unix/sysv/linux/hppa/clone.S: Likewise.
9814         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
9815         * sysdeps/unix/sysv/linux/i386/makecontext.S: Likewise.
9816         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
9817         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
9818         * sysdeps/unix/sysv/linux/ia64/getcontext.S: Likewise.
9819         * sysdeps/unix/sysv/linux/ia64/setcontext.S: Likewise.
9820         * sysdeps/unix/sysv/linux/mips/clone.S: Likewise.
9821         * sysdeps/unix/sysv/linux/mips/vfork.S: Likewise.
9822         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
9823         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
9824         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
9825         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
9826         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
9827         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
9828         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
9829         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Likewise.
9830         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Likewise.
9831         * sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S: Likewise.
9832         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
9833         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
9834         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
9835         * sysdeps/unix/sysv/linux/wordsize-64/getdents.c: Likewise.
9836         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
9837         * sysdeps/unix/sysv/linux/x86_64/makecontext.c: Likewise.
9838         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
9839         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
9840         * sysdeps/x86_64/_mcount.S: Likewise.
9842 2005-05-24  Roland McGrath  <roland@redhat.com>
9844         * sysdeps/unix/sysv/linux/i386/sysdep.h
9845         (SETUP_PIC_REG, LOAD_PIC_REG): Move these macros ...
9846         * sysdeps/i386/sysdep.h [PIC]: ... to here.
9848 2005-05-23  Roland McGrath  <roland@redhat.com>
9850         * sysdeps/arm, sysdeps/unix/arm, sysdeps/unix/sysv/linux/arm:
9851         Subdirectories moved to ports repository.
9852         * configure.in (base_machine): Remove arm* and thumb* patterns.
9853         * shlib-versions (arm.*-.*-linux.*): Remove this pattern.
9855 2005-05-23  Ulrich Drepper  <drepper@redhat.com>
9857         [BZ #1086]
9858         * sunrpc/bindrsvprt.c (LOWPORT): Apparently some mountd
9859         implementations are broken and don't accept ports < 512.
9861 2005-05-22  Dmitry V. Levin  <ldv@altlinux.org>
9863         [BZ #961]
9864         * io/sys/sendfile.h: Remove __nonnull from sendfile and sendfile64
9865         declarations.
9867 2005-05-23  Ulrich Drepper  <drepper@redhat.com>
9869         [BZ #1086]
9870         * sunrpc/pm_getport.c (__get_socket): New function.
9871         (pmap_getport): Use it to open a non-reserved socket to the portmapper
9872         for TCP.
9873         * include/rpc/pmap_clnt.h (__get_socket): Declare.
9874         * sunrpc/pm_getmaps.c (pmap_getmaps): Use __get_socket to get an
9875         non-reserved socket for the portmapper.
9876         Based on a patch by Steve Dickson <steved@redhat.com>.
9878         [BZ #1086]
9879         * sunrpc/bindrsvprt.c (bindresvport): Try harder to find a port.
9880         If we tried looking at the usual range without success extend the
9881         range to even lower ports.
9883         * sysdeps/unix/clock_gettime.c (clock_gettime): Revert last patch.
9885 2005-05-22  Andreas Schwab  <schwab@suse.de>
9887         * elf/rtld.c: Include <dl-osinfo.h>.
9889 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
9891         * sysdeps/powerpc/powerpc32/sysdep.h (PSEUDO_RET): Don't use
9892         JUMPTARGET.  Instead append @local to __syscall_error.
9893         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Delete all occurrences
9894         of JUMPTARGET.  Instead append @local to labels.
9895         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
9896         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
9897         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Likewise.
9898         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
9899         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
9900         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
9901         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
9902         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Likewise.
9903         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
9904         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
9905         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
9907         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Use float constants.
9908         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
9909         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Likewise.
9910         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
9911         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.  Use one GOT
9912         slot to access both constants.
9913         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
9914         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
9916         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S (TWO52.0): Delete.
9917         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S (TWO23.0): Delete.
9918         * sysdeps/powerpc/powerpc32/fpu/s_floor.S (TWO52.0): Delete.
9919         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S (TWO23.0): Delete.
9920         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Comment typo.
9921         (NEGZERO.0, POINTFIVE.0): Delete.
9922         * sysdeps/powerpc/powerpc32/fpu/s_rint.S (TWO52.0): Delete.
9923         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S (TWO23.0): Delete.
9924         * sysdeps/powerpc/powerpc32/fpu/s_round.S (__round): Code in .text.
9925         (TWO52.0, POINTFIVE.0): Delete.
9926         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S (__roundf): Code in .text.
9927         (TWO23.0, POINTFIVE.0): Delete.
9928         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S (__trunc): Code in .text.
9929         (TWO52.0): Delete.
9930         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S (__truncf): Code in .text.
9931         (TWO23.0): Delete.
9932         * sysdeps/powerpc/powerpc32/memset.S (memset): Formatting.
9934 2005-05-19  Richard Henderson  <rth@redhat.com>
9936         * sysdeps/unix/clock_gettime.c (clock_gettime): Fix typo around
9937         CLOCK_REALTIME.
9939         * sysdeps/ia64/bits/atomic.h (__arch_compare_and_exchange_bool_32_acq,
9940         __arch_compare_and_exchange_bool_64_acq,
9941         __arch_compare_and_exchange_val_32_acq,
9942         __arch_compare_and_exchange_val_64_acq, atomic_exchange_and_add):
9943         Use __sync builtin without _si or _di suffix.
9945 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
9947         [BZ #955]
9948         * iconvdata/ibm939.c (BODY): Avoid segfaults with input characters
9949         <UFFFF> and above.
9951 2005-05-17  Andreas Schwab  <schwab@suse.de>
9953         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
9954         (clock_getcpuclockid): Always return a defined value.
9956 2005-05-17  Neal H. Walfield  <neal@gnu.org>
9958         [BZ #1350]
9959         * sysdeps/posix/getaddrinfo.c (gaih_local): Check [_HAVE_SA_LEN]
9960         instead of [SALEN].
9961         (gaih_inet): Likewise.
9963 2005-05-11  Ulrich Drepper  <drepper@redhat.com>
9965         * elf/elf.h (Elf32_auxv_t): Make cross-compile safe.
9966         (Elf64_auxv_t): Likewise.
9967         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Adjust for
9968         removal of a_ptr element in ElfXX_auxv_t.
9969         * elf/dl-support.c (_dl_aux_init): Likewise.
9971 2005-05-09  Daniel Jacobowitz  <dan@codesourcery.com>
9973         * sysdeps/unix/sysv/linux/clock_getres.c: Include <time.h>.
9974         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
9976 2005-05-09  Alan Modra  <amodra@bigpond.net.au>
9978         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
9979         .pushsection/.popsection in place of .section/.previous.
9981 2005-05-08  Ulrich Drepper  <drepper@redhat.com>
9983         * MakeTAGS: Make xgettext not look into test cases.
9985         * MakeTAGS: Make sure translations in error calls are marked with
9986         c-format by xgettext.
9988 2005-05-07  Ulrich Drepper  <drepper@redhat.com>
9990         * intl/libintl.h: Always use __attribute_format_arg__ for gettext
9991         functions since gcc sometimes forgets the attribute for the
9992         standard functions.
9994 2005-05-06  Jakub Jelinek  <jakub@redhat.com>
9996         [BZ #934]
9997         * posix/regex_internal.h: Include bits/libc-lock.h or define dummy
9998         __libc_lock_* macros if not _LIBC.
9999         (struct re_dfa_t): Add lock.
10000         * posix/regcomp.c (re_compile_internal): Add __libc_lock_init.
10001         * posix/regexec.c (regexec, re_search_stub): Add locking.
10003 2005-05-04  Jakub Jelinek  <jakub@redhat.com>
10005         * intl/Makefile (tst-gettext[45].out): Pass also $(run-program-prefix)
10006         as argument to the scripts.
10007         * intl/tst-gettext2.sh: Use mkdir -p instead of test -d + mkdir.
10008         * intl/tst-gettext4.sh: Likewise.  Use run_program_prefix argument.
10009         * intl/tst-gettext5.sh: Likewise.
10011         * intl/tst-translit.sh: Add mkdir -p.
10013         * sysdeps/unix/sysv/linux/i386/sysdep.h (SETUP_PIC_REG): Use
10014         .ifndef/.endif to allow use of this macro more than once per .S
10015         file.
10016         (LOAD_PIC_REG): New macro.
10017         * sysdeps/unix/sysv/linux/i386/makecontext.S: Add call frame
10018         information.
10019         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
10020         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
10021         * sysdeps/i386/fpu/s_asinh.S: Use LOAD_PIC_REG macro.  Add call frame
10022         information.
10023         * sysdeps/i386/fpu/e_log10f.S: Likewise.
10024         * sysdeps/i386/fpu/s_expm1.S: Likewise.
10025         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
10026         * sysdeps/i386/fpu/e_log2l.S: Likewise.
10027         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
10028         * sysdeps/i386/fpu/s_lrint.S: Likewise.
10029         * sysdeps/i386/fpu/s_llrint.S: Likewise.
10030         * sysdeps/i386/fpu/s_ilogbf.S: Likewise.
10031         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
10032         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
10033         * sysdeps/i386/fpu/e_log.S: Likewise.
10034         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
10035         * sysdeps/i386/fpu/s_lrintl.S: Likewise.
10036         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
10037         * sysdeps/i386/fpu/e_scalb.S: Likewise.
10038         * sysdeps/i386/fpu/s_log1p.S: Likewise.
10039         * sysdeps/i386/fpu/s_nearbyintl.S: Likewise.
10040         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
10041         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
10042         * sysdeps/i386/fpu/s_nearbyintf.S: Likewise.
10043         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
10044         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
10045         * sysdeps/i386/fpu/s_lrintf.S: Likewise.
10046         * sysdeps/i386/fpu/e_acosh.S: Likewise.
10047         * sysdeps/i386/fpu/s_cexp.S: Likewise.
10048         * sysdeps/i386/fpu/s_ilogbl.S: Likewise.
10049         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
10050         * sysdeps/i386/fpu/e_powl.S: Likewise.
10051         * sysdeps/i386/fpu/e_powf.S: Likewise.
10052         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
10053         * sysdeps/i386/fpu/e_logl.S: Likewise.
10054         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
10055         * sysdeps/i386/fpu/s_frexp.S: Likewise.
10056         * sysdeps/i386/fpu/e_pow.S: Likewise.
10057         * sysdeps/i386/fpu/e_logf.S: Likewise.
10058         * sysdeps/i386/fpu/e_log2.S: Likewise.
10059         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
10060         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
10061         * sysdeps/i386/fpu/s_llrintf.S: Likewise.
10062         * sysdeps/i386/fpu/s_ilogb.S: Likewise.
10063         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
10064         * sysdeps/i386/fpu/e_atanh.S: Likewise.
10065         * sysdeps/i386/fpu/e_log10.S: Likewise.
10066         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
10067         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
10068         * sysdeps/i386/fpu/s_llrintl.S: Likewise.
10069         * sysdeps/i386/fpu/e_log10l.S: Likewise.
10070         * sysdeps/i386/fpu/s_nearbyint.S: Likewise.
10071         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
10072         * sysdeps/i386/fpu/e_log2f.S: Likewise.
10073         * sysdeps/i386/addmul_1.S: Various fixes to cfi handling.
10074         * sysdeps/i386/mul_1.S: Likewise.
10075         * sysdeps/i386/strtok.S: Likewise.
10076         * sysdeps/i386/sub_n.S: Likewise.
10077         * sysdeps/i386/submul_1.S: Likewise.
10078         * sysdeps/i386/i586/addmul_1.S: Likewise.
10079         * sysdeps/i386/i586/memcpy.S: Likewise.
10080         * sysdeps/i386/i586/mul_1.S: Likewise.
10081         * sysdeps/i386/i586/rshift.S: Likewise.
10082         * sysdeps/i386/i586/sub_n.S: Likewise.
10083         * sysdeps/i386/i586/submul_1.S: Likewise.
10084         * sysdeps/i386/i686/memcmp.S: Likewise.
10085         * sysdeps/i386/i686/memmove.S: Likewise.
10086         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
10087         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
10088         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
10089         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
10091 2005-05-03  Ulrich Drepper  <drepper@redhat.com>
10093         * sysdeps/i386/add_n.S: Add call frame information.
10094         * sysdeps/i386/addmul_1.S: Likewise.
10095         * sysdeps/i386/bsd-setjmp.S: Likewise.
10096         * sysdeps/i386/lshift.S: Likewise.
10097         * sysdeps/i386/memchr.S: Likewise.
10098         * sysdeps/i386/memcmp.S: Likewise.
10099         * sysdeps/i386/mul_1.S: Likewise.
10100         * sysdeps/i386/rawmemchr.S: Likewise.
10101         * sysdeps/i386/rshift.S: Likewise.
10102         * sysdeps/i386/stpncpy.S: Likewise.
10103         * sysdeps/i386/strchr.S: Likewise.
10104         * sysdeps/i386/strchrnul.S: Likewise.
10105         * sysdeps/i386/strcspn.S: Likewise.
10106         * sysdeps/i386/strpbrk.S: Likewise.
10107         * sysdeps/i386/strrchr.S: Likewise.
10108         * sysdeps/i386/strspn.S: Likewise.
10109         * sysdeps/i386/strtok.S: Likewise.
10110         * sysdeps/i386/sub_n.S: Likewise.
10111         * sysdeps/i386/submul_1.S: Likewise.
10112         * sysdeps/i386/elf/bsd-setjmp.S: Likewise.
10113         * sysdeps/i386/i486/strcat.S: Likewise.
10114         * sysdeps/i386/i586/add_n.S: Likewise.
10115         * sysdeps/i386/i586/addmul_1.S: Likewise.
10116         * sysdeps/i386/i586/lshift.S: Likewise.
10117         * sysdeps/i386/i586/memcpy.S: Likewise.
10118         * sysdeps/i386/i586/memset.S: Likewise.
10119         * sysdeps/i386/i586/mul_1.S: Likewise.
10120         * sysdeps/i386/i586/rshift.S: Likewise.
10121         * sysdeps/i386/i586/strchr.S: Likewise.
10122         * sysdeps/i386/i586/strcpy.S: Likewise.
10123         * sysdeps/i386/i586/sub_n.S: Likewise.
10124         * sysdeps/i386/i586/submul_1.S: Likewise.
10125         * sysdeps/i386/i686/add_n.S: Likewise.
10126         * sysdeps/i386/i686/memcmp.S: Likewise.
10127         * sysdeps/i386/i686/memmove.S: Likewise.
10128         * sysdeps/i386/i686/mempcpy.S: Likewise.
10129         * sysdeps/i386/i686/memset.S: Likewise.
10130         * sysdeps/i386/i686/strtok.S: Likewise.
10131         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
10132         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
10133         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
10134         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Likewise.
10135         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
10136         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
10138         * sysdeps/i386/fpu/libm-test-ulps: Adjust for gcc 4.
10140         * sysdeps/unix/sysv/linux/kernel-features.h: waitid is available
10141         on ppc in 2.6.12.
10143 2005-04-29  Jakub Jelinek  <jakub@redhat.com>
10145         [BZ #1083]
10146         * sysdeps/posix/posix_fallocate.c (posix_fallocate): If len == 0,
10147         call ftruncate if offset is bigger than current size.  Make sure
10148         the file is offset + len bytes long if that is more than current size.
10149         Don't overwrite previous content of the file.
10150         * sysdeps/posix/posix_fallocate64.c (__posix_fallocate64_l64):
10151         Likewise.
10153 2005-05-02  Roland McGrath  <roland@redhat.com>
10155         [BZ #924]
10156         * crypt/md5.c [! HAVE_MEMCPY] (memcpy): Yield proper expression value.
10158 2005-04-29  Roland McGrath  <roland@redhat.com>
10160         * timezone/africa: Update from tzdata2005i.
10161         * timezone/asia: Likewise.
10162         * timezone/northamerica: Likewise.
10163         * timezone/yearistype: Likewise.
10165         * sysdeps/i386/sysdep.h (CALL_MCOUNT): Fix typo in last change.
10167 2005-04-29  Ulrich Drepper  <drepper@redhat.com>
10169         [BZ #1093]
10170         * nis/nis_table.c: Fix realloc handling.
10171         * nis/nis_removemember.c: Likewise.
10173 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
10175         [BZ #798]
10176         * nscd/Makefile: Help losers who use --with-headers.
10178 2005-04-28  Roland McGrath  <roland@redhat.com>
10180         [BZ #796]
10181         * sysdeps/unix/sysv/linux/dl-sysdep.h: New file.
10182         Define NEED_DL_SYSINFO_DSO for all platforms.
10184         * sysdeps/generic/dl-sysdep.h: Remove multiple inclusion protection.
10185         * sysdeps/alpha/dl-sysdep.h: Likewise.
10186         Use #include_next instead of duplicating generic file's contents.
10187         * sysdeps/ia64/dl-sysdep.h: Likewise.
10188         * sysdeps/sparc/dl-sysdep.h: Likewise.
10190 2005-03-22  Steven Munroe  <sjmunroe@us.ibm.com>
10192         * sysdeps/powerpc/powerpc64/memset.S (memset): Make ___memset local.
10194 2005-03-07  Steven Munroe  <sjmunroe@us.ibm.com>
10196         [BZ #781]
10197         * sysdeps/unix/sysv/linux/kernel-features.h
10198         (__ASSUME_TGKILL): Define for powerpc32/64 starting with 2.6.1.
10199         (__ASSUME_UTIMES): Define for powerpc32/64 starting with 2.6.1.
10200         (__ASSUME_FADVISE64_64_SYSCALL): Define for powerpc32 only starting
10201         with 2.6.1.
10202         (__ASSUME_WAITID_SYSCALL): Don't define for powerpc32/64.
10204 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
10206         * sysdeps/i386/sysdep.h: Add cfi instrumentation to asm fragments.
10207         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
10208         * sysdeps/unix/sysv/linux/i386/socket.S: Remove now duplicate
10209         cfi_startproc and cfi_endproc.
10211         * configure.in: Remove ultrasparc names.
10213         * sysdeps/i386/i686/memcmp.S: Move misplaced END.
10215 2005-03-27  Bruno Haible  <bruno@clisp.org>
10217         Make it possible for multiple threads to use gettext() in different
10218         locales.
10219         * intl/dcigettext.c (HAVE_PER_THREAD_LOCALE): New macro.
10220         (struct known_translation_t): If HAVE_PER_THREAD_LOCALE, add localename
10221         field.
10222         (transcmp): If HAVE_PER_THREAD_LOCALE, compare localename fields.
10223         (DCIGETTEXT): If HAVE_PER_THREAD_LOCALE, fill the localename field in
10224         search and newp.
10226         * intl/tst-gettext4.c: New file.
10227         * intl/tst-gettext4.sh: New file.
10228         * intl/tst-gettext4-de.po: New file.
10229         * intl/tst-gettext4-fr.po: New file.
10230         * intl/tst-gettext5.c: New file.
10231         * intl/tst-gettext5.sh: New file.
10232         * intl/Makefile (distribute): Add tst-gettext4.sh, tst-gettext4-de.po,
10233         tst-gettext4-fr.po, tst-gettext5.sh.
10234         (multithread-test-srcs): New variable.
10235         (test-srcs): Add its contents.
10236         (tests): Depend on tst-gettext4.out, tst-gettext5.out.
10237         (tst-gettext4.out, tst-gettext5.out): New rules.
10238         (CFLAGS-tst-gettext4.c, CFLAGS-tst-gettext5.c): New variables.
10239         Add rule for linking the multithread-test-srcs with the appropriate
10240         thread-library.
10242 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
10244         * po/rw.po: New file.  From translation team.
10246         * scripts/config.guess: Update from upstream.
10247         * scripts/config.sub: Likewise.
10249 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
10251         [BZ #1094]
10252         * nscd/connections.c (nscd_run): Use time() value in prune_cache
10253         call, not timeout value, since the latter might be from another clock.
10255 2005-04-27  Roland McGrath  <roland@redhat.com>
10257         [BZ #877]
10258         * posix/unistd.h: Remove __nonnull from acct decl.
10260         * rt/tst-cpuclock1.c: New file.
10261         * rt/tst-cpuclock2.c: New file.
10262         * rt/tst-cputimer1.c: New file.
10263         * rt/tst-cputimer2.c: New file.
10264         * rt/tst-cputimer3.c: New file.
10265         * rt/Makefile (tests): Add them.
10267         * sysdeps/unix/sysv/linux/kernel-posix-cpu-timers.h: New file.
10268         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: New file.
10269         * sysdeps/unix/sysv/linux/ia64/clock_getcpuclockid.c
10270         (HAS_CPUCLOCK): New macro.
10271         (clock_getcpuclockid): Function removed.
10272         #include the new linux file to define it instead.
10273         * sysdeps/unix/clock_gettime.c [HP_TIMING_AVAIL] (hp_timing_gettime):
10274         New function, broken out of ...
10275         (clock_gettime) [HP_TIMING_AVAIL]: ... here.  Call it.
10276         (realtime_gettime): New function, broken out of ...
10277         (clock_gettime) [! HANDLED_REALTIME]: ... here.  Call it.
10278         (clock_gettime) [SYSDEP_GETTIME_CPU]: Use new macro in default case.
10279         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): New macro.
10280         (SYSDEP_GETTIME_CPUTIME): New macro.
10281         (SYSDEP_GETTIME): Use both.
10282         [! __ASSUME_POSIX_TIMERS] (maybe_syscall_gettime): New function, broken
10283         out of ...
10284         (SYSDEP_GETTIME): ... here.  Use it.
10285         [__NR_clock_gettime] (HANDLED_CPUTIME): Define it.
10286         (SYSDEP_GETTIME_CPUTIME): New macro.  Handle CPU timers by trying
10287         kernel support and falling back to hp-timing code.
10288         * sysdeps/posix/clock_getres.c
10289         [HP_TIMING_AVAIL] (hp_timing_getres): New function, broken out of ...
10290         (clock_getres) [HP_TIMING_AVAIL]: ... here.  Call it.
10291         (realtime_getres): New function, broken out of ...
10292         (clock_getres) [! HANDLED_REALTIME]: ... here.  Call it.
10293         (clock_getres) [SYSDEP_GETRES_CPU]: Use new macro in default case.
10294         * sysdeps/unix/sysv/linux/clock_getres.c (SYSCALL_GETRES): New macro.
10295         (SYSDEP_GETRES_CPUTIME): New macro.
10296         (SYSDEP_GETRES): Use both.
10297         [! __ASSUME_POSIX_TIMERS] (maybe_syscall_getres): New function, broken
10298         out of ...
10299         (SYSDEP_GETRES): ... here.  Use it.
10300         [__NR_clock_getres] (HANDLED_CPUTIME): Define it.
10301         (SYSDEP_GETRES_CPUTIME): New macro.  Handle CPU timers by trying
10302         kernel support and falling back to hp-timing code.
10303         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Handle
10304         CLOCK_PROCESS_CPUTIME_ID and CLOCK_PROCESS_THREAD_ID specially,
10305         translating to the kernel clockid_t for our own process/thread clock.
10307 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
10309         * stdlib/test-canon.c: Make doesExist a directory and add more tests
10310         for the new error case.
10312 2004-06-02  Dmitry V. Levin  <ldv@altlinux.org>
10313             Ranjani Murthy <ranmur@gmail.com>
10315         * stdlib/canonicalize.c (__realpath): Change realpath(3) to
10316         return NULL and set errno to ENOTDIR for such pathnames like
10317         "/path/to/existing-non-directory/".
10319 2005-04-26  Ulrich Drepper  <drepper@redhat.com>
10321         [BZ #1105]
10322         * time/strptime_l.c (__strptime_internal): Handle 'z' to set
10323         tm_gmtoff.
10324         * time/Makefile (tests): Add tst-strptime2.
10325         * time/tst-strptime2.c: New file.
10327 2005-04-26  Jakub Jelinek  <jakub@redhat.com>
10329         [BZ #1081]
10330         * elf/dl-close.c: Include stddef.h.
10331         (_dl_close): If called recursively, just remember GC needs to be rerun
10332         and decrease l_direct_opencount.  Avoid GC if l_direct_opencount
10333         decreased to 1.  Rerun GC at the end if any destructor unloaded some
10334         additional libraries.
10335         * elf/Makefile: Add rules to build and run unload6 test.
10336         * elf/unload6.c: New test.
10337         * elf/unload6mod1.c: New file.
10338         * elf/unload6mod2.c: New file.
10339         * elf/unload6mod3.c: New file.
10341         * malloc/hooks.c (mem2chunk_check): Add magic_p argument, set *magic_p
10342         if magic_p is not NULL.
10343         (top_check): Invoke MALLOC_FAILURE_ACTION if MORECORE failed.
10344         (malloc_check): Fail if sz == -1.
10345         (free_check): Adjust mem2chunk_check caller.
10346         (realloc_check): Likewise.  Fail if bytes == -1.  If bytes == 0 and
10347         oldmem != NULL, call free_check and return NULL.  If reallocating
10348         and returning NULL, invert magic byte again to make oldmem valid
10349         region for further checking.
10350         (memalign_check): Fail if bytes == -1.
10351         * malloc/Makefile: Add rules to build and run tst-mcheck.
10352         * malloc/tst-mcheck.c: New test.
10354 2005-04-26  Ulrich Drepper  <drepper@redhat.com>
10356         [BZ #1110]
10357         * stdio-common/vfscanf.c: Correctly account for characters of
10358         decimal points right after +-.
10360 2005-04-26  Roland McGrath  <roland@redhat.com>
10362         * elf/rtld-Rules (rtld-all): Test ifndef rtld-modules instead of
10363         ifeq ($(subdir),elf) to distinguish main driver from subdir runs.
10365 2005-04-25  Roland McGrath  <roland@redhat.com>
10367         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
10368         (INTERNAL_SYSCALL_ERROR_P): Fix typo in last change.
10370         * sunrpc/xdr.c (xdr_u_int): Use `long' for L and cast where needed.
10372         * elf/dl-load.c: Revert last change.
10374 2005-04-24  Ulrich Drepper  <drepper@redhat.com>
10376         [BZ #1110]
10377         * stdio-common/vfscanf.c: Fix parsing of decimal point after +-.
10378         Patch by Hamed Malek <hamed@bamdad.org>.
10380 2005-04-21  Roland McGrath  <roland@redhat.com>
10382         * elf/dl-load.c (_dl_map_object_from_fd): Don't use MAP_DENYWRITE,
10383         since Linux ignores it in user mmap calls.
10385 2005-04-17  David S. Miller  <davem@davemloft.net>
10387         * sysdeps/sparc/sparc32/elf/start.S: Define __data_start.
10388         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
10390 2005-04-15  Roland McGrath  <roland@redhat.com>
10392         * timezone/Makefile (zic-deps): New variable.
10393         ($(testdata)/America/New_York): Use it instead of explicit deps.
10394         ($(testdata)/Etc/UTC, $(testdata)/Australia/Melbourne): Likewise.
10395         ($(testdata)/America/Sao_Paulo, $(testdata)/Asia/Tokyo): Likewise.
10396         (%/UTC %/Universal): New pattern rule, replaces ...
10397         ($(testdata)/UTC, $(testdata)/Universal): ... these removed targets.
10398         ($(testdata)/%/Berlin $(testdata)/%/London): New pattern rule.
10399         ($(testdata)/Europe/London, $(testdata)/Europe/Berlin): Removed.
10401 2005-04-14  Roland McGrath  <roland@redhat.com>
10403         * MakeTAGS ($P/$(domain).pot): Depend on distinfo file as well.
10404         (extract): Filter-out distinfo file name.
10406         [BZ #253]
10407         * MakeTAGS (text-srcs): Match %.bash.in files too.
10409         [BZ #253]
10410         * nscd/Makefile (all-nscd-modules): New variable, include selinux
10411         module regardless of configuration.
10412         (distribute): Use that instead of $(nscd-modules).
10414 2005-04-13  David S. Miller  <davem@davemloft.net>
10416         Add sparc64 TLS and NPTL support.
10417         * elf/tls-macros.h: Add Sparc64 defines.
10418         * sysdeps/sparc/sparc64/dl-machine.h (sparc64_fixup_plt): Mark as
10419         always_inline.
10420         (elf_machine_fixup_plt): Likewise.
10421         (elf_machine_rela): Handle TLS relocations.
10422         (elf_machine_type_cleaa): Likewise.
10423         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
10424         (SYSCALL_ERROR_HANDLER_ENTRY): Use sethi/or for GOT reloc.
10425         It does not always fit in R_SPARC_GOT13 when building -fPIC.
10426         Also, add TLS handling.
10427         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
10428         Increase it to 2.4.21 for sparc64.
10429         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: NULL terminate
10430         backtrace by zero'ing out %fp.  Store away flags, func_ptr,
10431         and func_arg in global registers not local registers.
10432         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Handle PTID, TLS,
10433         and CTID arguments properly.  Add RESET_PID handling.
10434         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Rework so that we
10435         do not invoke __sigprocmask().  We can always assume rt signals
10436         are present on sparc64, so just do an inline syscall.
10438 2005-04-13  Jakub Jelinek  <jakub@redhat.com>
10440         * sysdeps/sparc/sparc64/dl-machine.h: Add dl_machine_h multiple
10441         inclusion guard for the first half of the header.
10442         (elf_machine_type_class, ELF_MACHINE_JMP_SLOT, ELF_MACHINE_NO_REL,
10443         ELF_MACHINE_PLTREL_OVERLAP, elf_machine_runtime_setup,
10444         elf_machine_relplt, DL_STACK_END, RTLD_START): Move into the
10445         #ifndef dl_machine_h guarded part of the header.
10447 2005-04-14  Ulrich Drepper  <drepper@redhat.com>
10449         [BZ #851]
10450         * posix/execvp.c (execvp): Use file name including path when
10451         trying to run it with shell.
10452         * posix/Makefile: Add rules to build and run tst-execvp3.
10453         * posix/tst-execvp3.c: New file.
10455 2005-04-12  Ulrich Drepper  <drepper@redhat.com>
10457         [BZ #1090]
10458         * stdlib/random_r.c (__initstate_r): Don't use non-existing state.
10459         * string/tst-strfry.c: New file.
10460         * string/Makefile (tests): Add tst-strfry.
10462 2005-04-11  James A. Morrison  <ja2morri@uwaterloo.ca>
10464         * manual/string.texi: Fix typo in wmemcpy decl.
10466 2005-04-10  David S. Miller  <davem@davemloft.net>
10468         * sysdeps/sparc/sparc32/dl-trampoline.S: Use std not stx.
10470 2005-04-08  Carlos O'Donell <carlos@baldric.uwo.ca>
10472         * FAQ.in: Explain why `make' might fail running rpcgen.
10473         * FAQ: Regenerated.
10475 2005-04-07  Roland McGrath  <roland@redhat.com>
10477         * po/libc.pot: Regenerated.
10479 2005-04-07  Roland McGrath  <roland@redhat.com>
10481         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion)
10482         [(NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO) && SHARED]: Scan
10483         GLRO(dl_sysinfo_map) for PT_NOTE giving Linux kernel version,
10484         we can skip the uname call if it's there.
10485         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Don't use
10486         DL_SYSDEP_OSCHECK here.
10487         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]: Do it here instead.
10489         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro):
10490         Add _dl_sysinfo_map.
10491         * elf/rtld.c (dl_main): Don't call _dl_init_paths early in the
10492         rtld_is_main case.  Call it unconditionally later.
10493         Move GLRO(dl_sysinfo_dso) handling earlier, before _dl_init_paths call.
10494         Initialize GLRO(dl_sysinfo_map).
10495         * elf/dl-load.c (open_path): Bail out if _dl_init_paths wasn't called.
10496         * sysdeps/generic/dl-sysdep.c (_DL_FIRST_EXTRA): New macro.
10497         (_dl_important_hwcaps)
10498         [(NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO) && SHARED]: Scan
10499         GLRO(dl_sysinfo_map) for PT_NOTE giving synthetic hwcap names
10500         and bit values.
10501         * elf/ldconfig.c (_DL_FIRST_EXTRA): New macro.
10502         (hwcap_extra): New static variable.
10503         (is_hwcap_platform): Check hwcap_extra for a matching name.
10504         Remove tls special case.
10505         (path_hwcap): Likewise.
10506         (parse_conf): Parse "hwcap" directive to define synthetic hwcap bits
10507         and their names, stored in hwcap_extra.
10508         (main) [USE_TLS]: Initialize final synthetic hwcap bit as "tls".
10510         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Use uint64_t for
10511         _dl_hwcap and _dl_hwcap_mask.
10512         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Cast a_val for
10513         AT_HWCAP to unsigned long int.
10514         * elf/dl-support.c (_dl_aux_init): Likewise.
10515         (_dl_hwcap): Update defn.
10517         * elf/cache.c (print_entry): Pad hwcap value with 0s in diagnostic.
10518         * elf/ldconfig.c (search_dir): Likewise.
10520 2005-04-05  Roland McGrath  <roland@redhat.com>
10522         * NEWS: Copy 2.3.5 section from 2.3 branch.
10524         * intl/tst-codeset.sh: Use mkdir -p.  Put msgfmt output in temporary
10525         file and mv it into place.
10526         * intl/tst-gettext3.sh: Likewise.
10528         * Makefile (glibc-%.tar rule): Use make -q to ensure configure scripts
10529         are up to date in srcdir.  Touch all configure scripts after export.
10531         * iconv/gconv_int.h: Include <ctype.h> and <string.h>.
10533 2005-04-05  H.J. Lu  <hongjiu.lu@intel.com>
10535         [BZ #592]
10536         * sysdeps/ia64/fpu/e_acosh.S: Update from Intel libm 2005-04-05
10537         (comment changes only).
10538         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
10539         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
10540         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
10541         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
10542         * sysdeps/ia64/fpu/e_exp.S: Likewise.
10543         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
10544         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
10545         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
10546         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
10547         * sysdeps/ia64/fpu/e_expf.S: Likewise.
10548         * sysdeps/ia64/fpu/e_log.S: Likewise.
10549         * sysdeps/ia64/fpu/e_logf.S: Likewise.
10550         * sysdeps/ia64/fpu/e_pow.S: Likewise.
10551         * sysdeps/ia64/fpu/e_powf.S: Likewise.
10552         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
10553         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
10554         * sysdeps/ia64/fpu/libm_error.c: Likewise.
10555         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
10556         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
10557         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
10558         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
10559         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
10560         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
10561         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
10562         * sysdeps/ia64/fpu/s_cos.S: Likewise.
10563         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
10564         * sysdeps/ia64/fpu/s_erf.S: Likewise.
10565         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
10566         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
10567         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
10568         * sysdeps/ia64/fpu/s_erff.S: Likewise.
10569         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
10570         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
10571         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
10572         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
10573         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
10574         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
10575         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
10576         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
10577         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
10579 2005-04-05  Roland McGrath  <roland@redhat.com>
10581         * scripts/config.guess: Update from master, timestamp='2005-03-24'.
10582         * scripts/config.sub: Update from master, timestamp='2005-02-10'.
10584 2005-04-04  David S. Miller  <davem@davemloft.net>
10586         * sysdeps/sparc/sparc32/dl-trampoline.S: New file.
10587         * sysdeps/sparc/sparc32/dl-machine.h: Move PLT trampolines there.
10588         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
10589         (elf_machine_runtime_setup): Test for dl_profile non-null.
10590         * sysdeps/sparc/sparc64/dl-trampoline.S: New file.
10591         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
10592         * sysdeps/sparc/sparc64/dl-machine.h: Move PLT trampolines there.
10593         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
10594         (elf_machine_runtime_setup): Test for dl_profile non-null.
10595         * sysdeps/sparc/bits/link.h: New file.
10596         * sysdeps/generic/ldsodefs.h (La_sparc32_regs, La_sparc32_retval,
10597         La_sparc64_regs, La_sparc64_retval): New.
10598         (struct audit_ifaces): Add sparc entries.
10599         * elf/tst-auditmod1.c: Add sparc entries.
10601 2005-03-27  Bruno Haible  <bruno@clisp.org>
10603         * intl/tst-gettext3.c: New file.
10604         * intl/tst-gettext3.sh: New file.
10605         * intl/Makefile (distribute): Add tst-gettext3.sh.
10606         (test-srcs): Add tst-gettext3.
10607         (tests): Depend on tst-gettext3.out.
10608         (tst-gettext3.out): New rule.
10609         (CFLAGS-tst-gettext3.c): New variable.
10611         Fix bug exposed by tst-gettext3.
10612         * intl/gettextP.h (struct converted_domain): New type.
10613         (struct loaded_domain): Remove the conv, conv_tab fields. Add
10614         conversions, nconversions fields.
10615         (_nl_init_domain_conv): Remove declaration.
10616         (_nl_free_domain_conv): Remove declaration.
10617         (_nl_find_msg): Add convert argument.
10618         * intl/dcigettext.c (DCIGETTEXT): Call _nl_find_msg with convert=1.
10619         (_nl_find_msg): Add convert argument. When a conversion to a different
10620         charset is needed, create a new converted_domain element, instead of
10621         throwing away the old converted translations.
10622         (get_output_charset): New function.
10623         * intl/loadmsgcat.c (_nl_init_domain_conv): Remove function.
10624         (_nl_free_domain_conv): Remove function.
10625         (_nl_load_domain): Initialize the conversions array to empty. Use
10626         _nl_find_msg instead of _nl_init_domain_conv to retrieve the header
10627         entry.
10628         (_nl_unload_domain): Free the conversions array and its contents.
10630         * intl/gettextP.h (struct loaded_domain): Remove codeset_cntr field.
10631         (struct binding): Likewise.
10632         * intl/bindtextdom.c (set_binding_values): Drop codeset_cntr
10633         modifications.
10635 2005-04-04  Jakub Jelinek  <jakub@redhat.com>
10637         [BZ #1082]
10638         * sunrpc/pmap_rmt.c (xdr_rmtcall_args): Use a dummy arglen instead
10639         of trying to encode uninitialized arglen.
10641 2005-04-04  Ulrich Drepper  <drepper@redhat.com>
10643         [BZ #825]
10644         * timezone/scheck.c: Update from tzcode2005h.
10645         * timezone/tzfile.h: Likewise.
10646         * timezone/zdump.c: Likewise.
10647         * timezone/zic.c: Likewise.
10649         [BZ #825]
10650         * timezone/antarctica: Update from tzdata2005h.
10651         * timezone/asia: Likewise.
10652         * timezone/australasia: Likewise.
10653         * timezone/etcetera: Likewise.
10654         * timezone/europe: Likewise.
10655         * timezone/northamerica: Likewise.
10656         * timezone/southamerica: Likewise.
10657         * timezone/leapseconds: Likewise.
10658         * timezone/iso3166.tab: Likewise.
10660 2005-03-31  H.J. Lu  <hongjiu.lu@intel.com>
10662         [BZ #592]
10663         * sysdeps/ia64/fpu/libm_cpu_defs.h: Update copyright.
10665 2005-04-01  Ulrich Drepper  <drepper@redhat.com>
10667         * wcsmbs/btowc.c (__btowc): Optimize parameters in ASCII range.
10668         * wcsmbs/wctob.c (wctob): Likewise.
10669         * wcsmbs/wchar.h (btowc): Add optimized inline function.
10670         (wctob): Likewise.
10672 2005-03-31  Jakub Jelinek  <jakub@redhat.com>
10674         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Use functionally
10675         equivalent, but shorter instructions.
10676         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
10677         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
10678         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
10679         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
10680         * sysdeps/unix/x86_64/sysdep.S: Likewise.
10681         * sysdeps/x86_64/strchr.S: Likewise.
10682         * sysdeps/x86_64/memset.S: Likewise.
10683         * sysdeps/x86_64/strcspn.S: Likewise.
10684         * sysdeps/x86_64/strcmp.S: Likewise.
10685         * sysdeps/x86_64/elf/start.S: Likewise.
10686         * sysdeps/x86_64/strspn.S: Likewise.
10687         * sysdeps/x86_64/dl-machine.h: Likewise.
10688         * sysdeps/x86_64/bsd-_setjmp.S: Likewise.
10689         * sysdeps/x86_64/bsd-setjmp.S: Likewise.
10690         * sysdeps/x86_64/strtok.S: Likewise.
10692 2005-03-30  H.J. Lu  <hongjiu.lu@intel.com>
10694         [BZ #592]
10695         * sysdeps/ia64/fpu/e_acosf.S: Update from Intel libm 2005-03-21.
10696         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
10697         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
10698         * sysdeps/ia64/fpu/e_acosh.S: Likewise.
10699         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
10700         * sysdeps/ia64/fpu/e_acos.S: Likewise.
10701         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
10702         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
10703         * sysdeps/ia64/fpu/e_asin.S: Likewise.
10704         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
10705         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
10706         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
10707         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
10708         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
10709         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
10710         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
10711         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
10712         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
10713         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
10714         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
10715         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
10716         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
10717         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
10718         * sysdeps/ia64/fpu/e_expf.S: Likewise.
10719         * sysdeps/ia64/fpu/e_exp.S: Likewise.
10720         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
10721         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
10722         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
10723         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
10724         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
10725         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
10726         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
10727         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
10728         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
10729         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
10730         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
10731         * sysdeps/ia64/fpu/e_log2.S: Likewise.
10732         * sysdeps/ia64/fpu/e_logf.S: Likewise.
10733         * sysdeps/ia64/fpu/e_logl.S: Likewise.
10734         * sysdeps/ia64/fpu/e_log.S: Likewise.
10735         * sysdeps/ia64/fpu/e_powf.S: Likewise.
10736         * sysdeps/ia64/fpu/e_powl.S: Likewise.
10737         * sysdeps/ia64/fpu/e_pow.S: Likewise.
10738         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
10739         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
10740         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
10741         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
10742         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
10743         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
10744         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
10745         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
10746         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
10747         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
10748         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
10749         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
10750         * sysdeps/ia64/fpu/libm_error.c: Likewise.
10751         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
10752         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
10753         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
10754         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
10755         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
10756         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
10757         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
10758         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
10759         * sysdeps/ia64/fpu/libm_support.h: Likewise.
10760         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
10761         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
10762         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
10763         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
10764         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
10765         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
10766         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
10767         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
10768         * sysdeps/ia64/fpu/s_cos.S: Likewise.
10769         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
10770         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
10771         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
10772         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
10773         * sysdeps/ia64/fpu/s_erf.S: Likewise.
10774         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
10775         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
10776         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
10777         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
10778         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
10779         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
10780         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
10781         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
10782         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
10783         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
10784         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
10785         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
10786         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
10787         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
10788         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
10789         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
10790         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
10791         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
10792         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
10793         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
10794         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
10795         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
10796         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
10797         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
10798         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
10799         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
10800         * sysdeps/ia64/fpu/s_logb.S: Likewise.
10801         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
10802         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
10803         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
10804         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
10805         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
10806         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
10807         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
10808         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
10809         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
10810         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
10811         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
10812         * sysdeps/ia64/fpu/s_round.S: Likewise.
10813         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
10814         * sysdeps/ia64/fpu/s_scalbn.c: Likewise.
10815         * sysdeps/ia64/fpu/s_scalbnf.c: Likewise.
10816         * sysdeps/ia64/fpu/s_scalbnl.c: Likewise.
10817         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
10818         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
10819         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
10820         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
10821         * sysdeps/ia64/fpu/s_tan.S: Likewise.
10822         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
10823         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
10824         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
10825         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
10826         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
10827         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
10829         [BZ #592]
10830         * sysdeps/ia64/fpu/libm_cpu_defs.h: New file.
10831         * sysdeps/ia64/fpu/libm_error_codes.h: New file.
10833         [BZ #592]
10834         * sysdeps/ia64/fpu/gen_import_file_list: Updated for Intel libm
10835         2005-03-21.
10836         * sysdeps/ia64/fpu/import_file.awk: Likewise.
10837         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
10838         * sysdeps/ia64/fpu/Makefile: Likewise.
10840 2005-03-29  Jakub Jelinek  <jakub@redhat.com>
10842         [BZ #1087]
10843         * posix/fnmatch.c (fnmatch): For short patterns or strings attempt to
10844         avoid calling mbsrtowcs twice.
10846 2005-03-29  Roland McGrath  <roland@redhat.com>
10848         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): New
10849         function, inline broken out of ...
10850         (DL_SYSDEP_OSCHECK): ... here.  Use that.
10851         Do the discovery and set GLRO(dl_osversion) if successful,
10852         if __LINUX_KERNEL_VERSION <= 0.
10853         * elf/dl-load.c: Don't include dl-osinfo.h here.
10855 2005-03-29  Alfred M. Szmidt  <ams@gnu.org>
10857         * manual/install.texi (Tools for Compilation): GNU binutils 2.15
10858         is now needed.
10860 2005-03-19  Bruno Haible  <bruno@clisp.org>
10862         * intl/dcigettext.c (struct known_translation_t): Change type of
10863         domainname field to 'const char *'.
10864         (DCIGETTEXT): Remove const-cast.
10866 2005-03-29  Thorsten Kukuk  <kukuk@suse.de>
10868         [BZ #661]
10869         * grp/initgroups.c (internal_getgrouplist): Check if we have
10870         enough space before adding the primary group to the list.
10872         * posix/tst-execle1.c (do_test): Fix execle arguments.
10873         * posix/tst-execle2.c (do_test): Likewise.
10875 2005-03-28  Roland McGrath  <roland@redhat.com>
10877         * sysdeps/generic/w_exp2.c [NO_LONG_DOUBLE]: Fix typos in alias names.
10878         Reported by Mark Mitchell <mark@codesourcery.com>.
10879         * Versions.def (libm): Define GLIBC_2.4 set.
10880         * math/Versions (libm: GLIBC_2.4): Add this set, with exp2l.
10881         * sysdeps/i386/Versions (libm: GLIBC_2.1): Add this set, with exp2l.
10882         * sysdeps/ia64/Versions: Likewise.
10883         * sysdeps/m68k/Versions: Likewise.
10884         * sysdeps/sparc/sparc64/Versions: Likewise.
10885         * sysdeps/x86_64/Versions: New file.
10886         * sysdeps/mips/mips64/Versions: New file.
10888         * locale/langinfo.h (_NL_LOCALE_NAME): New macro.
10889         [__USE_GNU] (NL_LOCALE_NAME): New macro.
10890         * locale/nl_langinfo.c: Grok special item value for _NL_LOCALE_NAME,
10891         return locale name string for the category.
10893 2005-03-25  Jakub Jelinek  <jakub@redhat.com>
10895         [BZ #721]
10896         * sysdeps/generic/wcstoul_l.c: Include "wcstol_l.c" rather than
10897         <wcstol_l.c>.
10899 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
10901         * sysdeps/mips/atomicity.h: Remove unused file.
10902         * sysdeps/mips/dl-machine.h (elf_machine_rel): Add TLS relocations.
10903         * sysdeps/mips/dl-tls.h: New file.
10904         * sysdeps/mips/libc-tls.c: New file.
10905         * sysdeps/mips/tls-macros.h: New file.
10906         * sysdeps/mips/bits/atomic.h: New file.
10907         * sysdeps/mips/bits/setjmp.h: Protect against multiple inclusion.
10908         * sysdeps/mips/elf/configure.in: New file.
10909         * sysdeps/mips/elf/configure: Generated.
10910         * sysdeps/mips/sys/asm.h: New file.
10911         * sysdeps/unix/sysv/linux/mips/vfork.S: New file.
10912         * sysdeps/unix/sysv/linux/mips/clone.S: Add NPTL and five-argument
10913         clone support.
10914         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
10915         (INTERNAL_SYSCALL_NCS): New.
10916         (INTERNAL_SYSCALL): Update for non-constant support.
10917         (internal_syscall0): Likewise.
10918         (internal_syscall1): Likewise.
10919         (internal_syscall2): Likewise.
10920         (internal_syscall3): Likewise.
10921         (internal_syscall4): Likewise.
10922         (internal_syscall5): Likewise.
10923         (internal_syscall6): Likewise.
10924         (internal_syscall7): Likewise.
10925         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (SIGEV_THREAD):
10926         Update to match the kernel.
10927         (SIGEV_CALLBACK): Likewise.
10928         (SIGEV_THREAD_ID): Likewise.
10930 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
10932         [BZ #783]
10933         * elf/tst-auditmod1.c: Add MIPS support.
10934         * sysdeps/generic/ldsodefs.h (La_mips_32_regs): New.
10935         (La_mips_32_retval): New.
10936         (La_mips_64_regs): New.
10937         (La_mips_64_retval): New.
10938         (struct audit_ifaces): Add MIPS entries.
10939         * sysdeps/mips/dl-machine.h: Check RESOLVE_MAP instead of RESOLVE.
10940         (elf_machine_runtime_link_map, ELF_DL_FRAME_SIZE,
10941         ELF_DL_SAVE_ARG_REGS, ELF_DL_RESTORE_ARG_REGS,
10942         ELF_MACHINE_RUNTIME_TRAMPOLINE): Move to dl-trampoline.c.
10943         (RTLD_START): Align the stack before calling _dl_init_internal.
10944         Use .ent for _dl_start_user.
10945         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): Define.
10946         (elf_machine_rel, elf_machine_rel_relative, elf_machine_lazy_rel)
10947         (elf_machine_runtime_setup): Use "auto inline".
10948         (elf_machine_rela, elf_machine_rela_relative): Provide empty versions.
10949         (elf_machine_got_rel): Likewise.  Use RESOLVE_MAP.
10950         * sysdeps/mips/dl-trampoline.c: New file.
10951         * sysdeps/mips/bits/link.h: New file.
10952         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
10953         (internal_syscall5): Use register operands instead of non-lvalue
10954         memory operands.
10955         (internal_syscall6): Likewise.
10956         (internal_syscall7): Likewise.
10958 2005-03-27  Andreas Jaeger  <aj@suse.de>
10960         * debug/warning-nop.c (__builtin___memcpy_chk): Define away to
10961         avoid warnings with older compiler.
10962         (__builtin___memcpy_chk): Likewise.
10963         (__builtin___memmove_chk: Likewise.
10964         (__builtin___mempcpy_chk): Likewise.
10965         (__builtin___memset_chk): Likewise.
10966         (__builtin___stpcpy_chk): Likewise.
10967         (__builtin___strcat_chk): Likewise.
10968         (__builtin___strcpy_chk): Likewise.
10969         (__builtin___strncat_chk): Likewise.
10970         (__builtin___strncpy_chk): Likewise.
10971         (__builtin_object_size): Likewise.
10973 2005-03-27  Daniel Jacobowitz  <dan@codesourcery.com>
10975         * elf/tls-macros.h: Correct typo.
10977 2005-03-23  Jakub Jelinek  <jakub@redhat.com>
10979         [BZ #822]
10980         * nis/ypclnt.c (yp_2_yperr): Revert 2004-11-30 patch.
10981         (ypprot_err): Use yp_2_yperr table also for YP_NODOM .. YP_NOMORE.
10983 2005-03-22  Roland McGrath  <roland@redhat.com>
10985         * locale/setlocale.c: Comment typo.
10987         * scripts/versions.awk: No errors for GLIBC_PRIVATE.
10989         * Versions.def (libdl, librt): Add GLIBC_2.3.4 version.
10991         * scripts/versions.awk: Print all errors and die at the end.
10992         Use library name in versions array keys.
10994 2005-03-22  Daniel Jacobowitz  <dan@codesourcery.com>
10996         * elf/elf.h (PT_ARM_EXIDX): New macro.
10998 2005-03-21  Thorsten Kukuk  <kukuk@suse.de>
11000         [BZ #1098]
11001         * sunrpc/xdr_stdio.c (xdrstdio_getlong, xdrstdio_putlong):
11002         Convert correctly between long/int on 64bit big-endian.
11004 2005-03-21  David Mosberger  <davidm@hpl.hp.com>
11006         * sysdeps/ia64/_mcount.S: Newer kernels don't like register-frames
11007         with more than 8 output registers.  Fix this by passing original
11008         ar.pfs to _mcount_ret_helper via r3.
11010 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
11012         [BZ #786]
11013         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Handle
11014         GL(dl_tls_static_nelem) == GL(dl_tls_max_dtv_idx).
11015         * elf/Makefile: Add rules to build and run tst-tls15.
11016         * elf/tst-tls15.c: New test.
11017         * elf/tst-tlsmod15a.c: New file.
11018         * elf/tst-tlsmod15b.c: New file.
11020 2005-03-20  Ulrich Drepper  <drepper@redhat.com>
11022         * elf/rtld.c (dl_main): Always call init_tls if we have audit modules.
11024 2005-03-20  Alfred M. Szmidt  <ams@gnu.org>
11026         * elf/dl-open.c (dl_open_worker): Fix typo.
11028 2005-03-20  Ulrich Drepper  <drepper@redhat.com>
11030         * malloc/malloc.c (public_cALLOc): We cannot skip the memory
11031         clearing if perturb_byte != 0.
11033 2005-03-20  Jakub Jelinek  <jakub@redhat.com>
11035         * posix/bits/unistd.h (pread) [__USE_FILE_OFFSET64]: Use __off64_t
11036         instead of __off_t for last argument.
11037         * debug/Makefile (tests): Add tst-lfschk{1,2,3}.
11038         * debug/tst-lfschk1.c: New test.
11039         * debug/tst-lfschk2.c: New test.
11040         * debug/tst-lfschk3.c: New test.
11042 2005-02-09  Jakub Jelinek  <jakub@redhat.com>
11044         * sysdeps/unix/sysv/linux/bits/termios.h (CMSPAR): Define.
11045         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Add __USE_MISC
11046         and __USE_XOPEN guards to match linux/bits/termios.h.
11047         * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
11048         (CMSPAR): Define.
11049         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
11051 2005-02-10  H.J. Lu  <hongjiu.lu@intel.com>
11053         [BZ #1076]
11054         * sysdeps/ia64/elf/initfini.c: Add local _init and _fini labels.
11056 2005-02-27  Denis Barbier  <barbier@debian.org>
11058         [BZ #549]
11059         * locale/iso-4217.def: Add CSD currency.
11061 2005-03-19  Ulrich Drepper  <drepper@redhat.com>
11063         * inet/test-ifaddrs.c: Use test-skeleton.
11064         * inet/test_ifindex.c: Likewise.
11066         [BZ #821]
11067         * elf/dl-lookup.c (add_dependency): Always search l_initfini if
11068         the list exists.
11070         [BZ #821]
11071         * elf/Makefile: Add rules to build and run order2.
11072         * elf/order2.c: New file.
11073         * elf/order2mod1.c: New file.
11074         * elf/order2mod2.c: New file.
11075         * elf/order2mod3.c: New file.
11076         * elf/order2mod4.c: New file.
11078 2005-03-19  Jakub Jelinek  <jakub@redhat.com>
11080         [BZ #821]
11081         * elf/dl-open.c (dl_open_worker): Print exact l_direct_opencount value,
11082         it has been incremented before.
11084 2005-03-18  Ulrich Drepper  <drepper@redhat.com>
11086         [BZ #821]
11087         * elf/dl-fini.c (_dl_fini): Split sorting of the maps in separate
11088         function _dl_sort_fini.
11089         (_dl_sort_fini): New function.
11090         * sysdeps/generic/ldsodefs.h: Declare _dl_sort_fini.
11091         * elf/dl-close.c (_dl_close): Call _dl_sort_fini before running
11092         destructors to call them in the right order.
11094 2005-02-07  Steven Munroe  <sjmunroe@us.ibm.com>
11096         * sysdeps/powerpc/bits/link.h (La_ppc64_regs): Add lr_vrsave.
11097         (La_ppc64_retval): Correct size of lrc_fp.
11098         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_profile_resolve):
11099         Fix up ABI problems and complete function.
11101 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
11103         * math/test-misc.c (main): Add some more tests.
11105 2005-03-17  Jakub Jelinek  <jakub@redhat.com>
11107         * posix/regcomp.c (re_compile_fastmap_iter): Fix check for failed
11108         __wcrtomb.  Check return values of other __wcrtomb calls.
11109         * posix/regex_internal.c (build_wcs_buffer, re_string_skip_chars):
11110         Change mbclen type to size_t.
11111         (build_wcs_upper_buffer): Change mbclen and mbcdlen type to size_t.
11112         Handle mb chars whose upper case doesn't have multibyte representation
11113         in locale's charset.
11115 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
11117         * malloc/malloc.c (_int_icalloc, _int_icomalloc, iALLOc,
11118         public_iCALLOc, public_iCALLOc, public_iCOMALLOc): Protect with
11119         #ifndef _LIBC.
11121         [BZ #779]
11122         * malloc/malloc.c (public_mTRIm): Initialize malloc if not yet
11123         initialized.
11125 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
11127         * misc/sys/cdefs.h (__always_inline): Define.
11128         * posix/bits/unistd.h (read, pread, pread64, readlink, getcwd, getwd):
11129         Use __always_inline instead of __inline.
11130         * socket/bits/socket2.h (recv, recvfrom): Likewise.
11131         * libio/bits/stdio2.h (gets, fgets, fgets_unlocked): Likewise.
11132         * string/bits/string3.h (__memcpy_ichk, __memmove_ichk, __mempcpy_ichk,
11133         __memset_ichk, __strcpy_ichk, __stpcpy_ichk, __strncpy_ichk,
11134         __strcat_ichk, __strncat_ichk): Use __always_inline instead of
11135         __inline__ __attribute__ ((__always_inline__)).
11137 2005-03-09  Jakub Jelinek  <jakub@redhat.com>
11139         * debug/tst-chk1.c: Include sys/socket.h and sys/un.h.
11140         (do_test): Add new tests for recv, recvfrom, getcwd, getwd and
11141         readlink.  Add some more tests for read, pread, pread64, fgets and
11142         fgets_unlocked.
11144         * posix/bits/unistd.h (read, pread, pread64, readlink,
11145         getcwd, getwd): Change macros into extern inline functions.
11146         (__read_alias, __pread_alias, __pread64_alias, __readlink_alias,
11147         __getcwd_alias, __getwd_alias): New prototypes.
11148         * socket/bits/socket2.h (recv, recvfrom): Change macros into
11149         extern inline functions.
11150         (__recv_alias, __recvfrom_alias): New prototypes.
11151         * libio/bits/stdio2.h (gets, fgets, fgets_unlocked): Change macros
11152         into extern inline functions.
11153         (__gets_alias, __fgets_alias, __fgets_unlocked_alias): New prototypes.
11155         * debug/pread_chk.c (__pread_chk): Fix order of arguments passed
11156         to __pread.
11157         * debug/pread64_chk.c (__pread64_chk): Fix order of arguments passed
11158         to __pread64.
11160 2005-03-18  Daniel Jacobowitz  <dan@codesourcery.com>
11162         * configure.in: Use %function instead of @function.
11164 2005-03-18  Ulrich Drepper  <drepper@redhat.com>
11166         [BZ #821]
11167         * include/link.h (struct link_map): Remove l_opencount.  Add l_removed.
11168         Change type of l_idx to int.
11169         * elf/dl-close.c: Basically rewrite.  Do not use l_opencount to
11170         determine whether a DSO has to be unloaded.  Instead compute this
11171         in this function.
11172         * elf/dl-deps.c: No need to manipulate l_opencount anymore.
11173         * elf/dl-lookup.c: Likewise.
11174         * elf/rtld.c: Likewise
11175         * elf/dl-open.c: Likewise.  Use l_init_called to determine whether
11176         object was just loaded.
11177         * elf/dl-fini.c: Bump l_direct_opencount instead of l_opencount.
11178         * elf/dl-load.c (_dl_map_object_from_fd): Do not recognize DSO which
11179         is about to be unloaded as a match.
11180         (_dl_map_object): Likewise.
11181         * elf/do-lookup.h (do_lookup_x): Do not look into DSO which is about
11182         to be unloaded.
11183         * elf/circleload1.c: Don't use l_opencount anymore.
11184         * elf/neededtest.c: Likewise.
11185         * elf/neededtest2.c: Likewise.
11186         * elf/neededtest3.c: Likewise.
11187         * elf/neededtest4.c: Likewise.
11188         * elf/unload.c: Likewise.
11189         * elf/unload2.c: Likewise.
11190         * elf/loadtest.c: Likewise.
11192         [BZ #821]
11193         * elf/rtld.c: Preloading errors are now never fatal.
11195 2005-03-08  Jakub Jelinek  <jakub@redhat.com>
11197         [BZ #821]
11198         * elf/Makefile: Add rules to build and run unload5 test.
11199         * elf/unload5.c: New file.
11201         [BZ #821]
11202         * elf/Makefile: Add rules to build and run unload4 test.
11203         * elf/unload4.c: New file.
11204         * elf/unload4mod1.c: New file.
11205         * elf/unload4mod2.c: New file.
11206         * elf/unload4mod3.c: New file.
11207         * elf/unload4mod4.c: New file.
11209 2005-03-17  Roland McGrath  <roland@redhat.com>
11211         * nscd/aicache.c (addhstaiX): Tweak type to avoid warning.
11213 2005-03-16  Richard Henderson  <rth@redhat.com>
11215         [BZ #721]
11216         * include/libc-symbols.h (__hidden_proto): Remove bogus declaration
11217         of internal.
11218         (__hidden_def1, __hidden_dot_def1): Remove.
11219         (__hidden_def2, __hidden_def3): Remove.
11220         (__hidden_ver1): New.
11221         (hidden_ver, hidden_def, hidden_weak): Use it.
11222         (hidden_data_ver, hidden_data_ver, hidden_data_weak): Use non-data
11223         version of the macro.
11225         [BZ #721]
11226         * include/wchar.h (__wcscoll): Remove.
11227         * wcsmbs/wcscoll.c: Define wcscoll directly instead of via __wcscoll.
11228         * string/strcoll.c: Don't issue libc_hidden_def STRCOLL redefined.
11230 2005-03-16  Daniel Jacobowitz  <dan@codesourcery.com>
11232         * elf/elf.h: Define MIPS TLS relocations.
11234 2005-03-16  Ulrich Drepper  <drepper@redhat.com>
11236         * elf/circleload1.c (main): Pretty printing.
11238 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
11240         * sysdeps/generic/wordexp.c (exec_comm_child): Add inline keyword.
11241         Patch by Dan Kegel <dank@kegel.com>.
11243         [BZ #721]
11244         * elf/dynamic-link.h (elf_machine_rel, elf_machine_rel_relative,
11245         elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel):
11246         Add inline keyword.
11247         * sysdeps/alpha/dl-machine.h (elf_machine_rela,
11248         elf_machine_rela_relative, elf_machine_lazy_rel): Add always_inline
11249         attribute.
11250         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
11251         elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.  Change
11252         static inline into auto inline.
11253         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
11254         elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
11255         * sysdeps/generic/dl-machine.h (elf_machine_rel, elf_machine_rela):
11256         Likewise.
11257         * sysdeps/arm/dl-machine.h (elf_machine_rel, elf_machine_rel_relative,
11258         elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel):
11259         Likewise.
11261 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
11263         [BZ #789]
11264         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Fix asm constraints.
11265         Remove memory clobber.
11267         * sysdeps/x86_64/hp-timing.h (HP_TIMING_ACCUM): Make the addition
11268         thread-safe.  Subtract GLRO(dl_hp_timing_overhead) from Diff.
11270 2005-03-14  Jakub Jelinek  <jakub@redhat.com>
11272         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Don't include
11273         asm/types.h.
11275 2005-03-10  GOTO Masanori  <gotom@debian.or.jp>
11277         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Define MAP_POPULATE and
11278         MAP_NONBLOCK.
11279         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
11280         Correct MAP_GROWSDOWN value.
11282 2005-03-13  Roland McGrath  <roland@redhat.com>
11284         * elf/tls-macros.h: #include_next <tls-macros.h> to get a sysdeps
11285         version if there is one.  Only #error if macros are then undefined.
11286         * sysdeps/generic/tls-macros.h: New file.
11288 2005-03-10  GOTO Masanori  <gotom@debian.or.jp>
11290         * sysdeps/hppa/configure.in: Remove old Makefile leftovers.
11291         * sysdeps/hppa/configure: Regenerated.
11293 2005-03-08  Roland McGrath  <roland@redhat.com>
11295         * sysdeps/gnu/errlist-compat.awk: Use NERR in all array decls, so
11296         array types match exactly in C alias decls.
11298 2005-03-07  Ulrich Drepper  <drepper@redhat.com>
11300         * malloc/arena.c (ptmalloc_init): Recognize MALLOC_PERTURB_ and call
11301         mallopt appropriately.
11302         * malloc/malloc.h: Define M_PERTURB.
11303         * malloc/malloc.c (perturb_byte): New variable.
11304         (alloc_perturb, free_perturb): New macros.
11305         (_int_malloc): Before returning, overwrite the memory if this is
11306         requested.
11307         (_int_free): Overwrite freed memory if requested.
11308         (mALLOPt): Handle M_PERTURB.
11309         * test-skeleton.c: Add call to mallopt with M_PERTURB command.
11311         * elf/dl-close.c (_dl_close): Decrement l_opencount before
11312         printing debug message.
11313         * elf/dl-open.c (dl_open_worker): Always print the new opencount
11314         in debug messages.
11316 2005-03-06  Ulrich Drepper  <drepper@redhat.com>
11318         * elf/dl-close.c (_dl_close): Unify debug message format.
11320         * elf/dl-close.c (_dl_close): Print debug message just before
11321         destroying a link map.
11323         * elf/do-lookup.h (do_lookup_x): Add namespace info to debug output.
11324         * elf/dl-version.c (match_symbol): Likewise.
11326         * posix/bits/unistd.h (pread): Fix typo in __USE_FILE_OFFSET64 code.
11328         * debug/recv_chk.c (__recv_chk): Always fail if request could
11329         overflow the buffer.
11330         * debug/recvfrom_chk.c (__recvfrom_chk): Likewise.
11331         * socket/bits/socket2.h (recv): Avoid calls to the _chk variant if
11332         we know the call succeeds.
11333         (recvfrom): Likewise.
11335 2005-03-05  Ulrich Drepper  <drepper@redhat.com>
11337         * posix/regexec.c (check_node_accept_bytes): Correct cast to avoid
11338         warning.
11339         * posix/regex_internal.c (re_string_reconstruct): Add cast to
11340         avoid warning.
11341         (build_wcs_upper_buffer): Change type of bug to plain char.
11342         * locale/weightwc.h (findidx): Add casts to avoid warnings.
11343         * time/mktime.c (ranged_convert): Initialize tm to make the
11344         compiler happy.
11345         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Add casts to avoid warnings.
11346         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Add casts to avoid warnings.
11347         * wcsmbs/mbsnrtowcs.c: Add casts to avoid warnings.
11348         * wcsmbs/wcsrtombs.c (__wcsrtombs): Add casts to avoid warnings.
11349         * wcsmbs/wcrtomb.c (__wcrtomb): Add casts to avoid warnings.
11350         * wcsmbs/mbrtowc.c (__mbrtowc): Use unsigned char for outbuf.
11351         * wcsmbs/wctob.c (wctob): Make buf array of unsigned char.
11352         * sysdeps/generic/strchrnul.c: Add cast to avoid warning.
11353         * libio/iofwide.c: Add casts to avoid warnings.
11354         * stdio-common/printf-prs.c (parse_printf_format): Introduce new
11355         variable f to avoid warnings.
11356         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
11357         Fix a few casts to avoid warnings.
11358         * iconv/gconv_simple.c (internal_utf8_loop): Make start unsigned
11359         to avoid warning.
11361         [BZ #1101]
11362         * posix/regex_internal.c [_LIBC] (build_wcs_buffer): Avoid using
11363         dynamically sized array.
11364         (build_wcs_upper_buffer): Likewise.
11366 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
11368         * include/bits/unistd.h: New file.
11369         * include/bits/socket2.h: New file.
11371 2005-03-05  Ulrich Drepper  <drepper@redhat.com>
11373         * sunrpc/key_call.c: Remove doors support.
11374         * sunrpc/Makefile: Remove CPPFLAGS-key_call.c definition.
11375         * configure.in: Remove test for doors support which never existed.
11376         * config.make.in: Remove have_doors entry.
11378         * configure.in: Make sure at least gcc 3.4 is used.  Undo last change.
11379         * config.make.in: Undo last change.
11381         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Unconditionally use
11382         -mtune.
11384 2005-03-05  Roland McGrath  <roland@redhat.com>
11386         * sysdeps/generic/ldsodefs.h (_dl_out_of_memory_internal): Remove decl.
11387         (_dl_out_of_memory): Use rtld_hidden_proto.
11388         * elf/dl-error.c (_dl_out_of_memory): Use rtld_hidden_data_def.
11389         (_dl_signal_error): Don't use INTUSE on _dl_out_of_memory.
11390         * elf/dl-open.c (_dl_open): Likewise.
11391         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
11393         * sunrpc/des_impl.c (des_set_key): Make first argument unsigned char *.
11395         * elf/dl-addr.c (_dl_addr): Add a cast.
11397         [BZ #821]
11398         * elf/unload3mod4.c: Declare foo.
11399         * elf/testobj2.c: Include <stdio.h>.
11401         * sysdeps/gnu/errlist.awk: Emit NERR macro for _sys_nerr_internal
11402         value constant, and use it in the defn.
11403         * sysdeps/gnu/errlist-compat.awk: Use NERR in array decl.
11404         Use actual size for compat array decls.
11406         * config.make.in (cc-mtune): New substituted variable.
11407         * configure.in (libc_cv_cc_mtune): New test for -mtune= switch,
11408         done only if libc_mtune_example is defined.
11409         * sysdeps/i386/configure.in (libc_mtune_example): Set it.
11410         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Use $(cc-mtune).
11412 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
11414         [BZ #721]
11415         * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define
11416         unconditionally to (defined RTLD_BOOTSTRAP).
11417         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Likewise.
11419 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
11421         * Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of
11422         $(inst_slibdir) in AS_NEEDED directive.
11424 2005-03-03  Jakub Jelinek  <jakub@redhat.com>
11426         * posix/bits/unistd.h (pread, pread64): Don't swap function arguments.
11428 2005-03-01  H.J. Lu  <hongjiu.lu@intel.com>
11430         [BZ #776]
11431         * iconv/iconvconfig.c: Fix comment for the output file.
11432         (write_output): Clear padding in header.
11434 2005-03-03  Ulrich Drepper  <drepper@redhat.com>
11436         [BZ #821]
11437         * elf/dl-close.c (_dl_close): Don't try to set up new searchpath if the
11438         loader is closed.  Fixes unload3.
11439         * elf/tst-global1.c: New file.
11440         * elf/Makefile (tests): Add tst-global1.
11441         * elf/testobj2.c (p): New function.
11443 2005-03-03  Jakub Jelinek  <jakub@redhat.com>
11445         [BZ #821]
11446         * elf/Makefile: Add rules to build and run unload3 test.
11447         * elf/unload3.c: New test.
11448         * elf/unload3mod1.c: New file.
11449         * elf/unload3mod2.c: New file.
11450         * elf/unload3mod3.c: New file.
11451         * elf/unload3mod4.c: New file.
11453 2005-02-21  Alan Modra <amodra@bigpond.net.au>
11455         [BZ #1394]
11456         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Don't
11457         use __uint128_t.
11459 2005-03-01  Jakub Jelinek  <jakub@redhat.com>
11461         * posix/bits/unistd.h (read, pread, pread64): Use __bos0 instead
11462         of __bos.
11463         * socket/bits/socket2.h (recv, recvfrom): Likewise.
11465 2005-03-01  Roland McGrath  <roland@redhat.com>
11467         [BZ #721]
11468         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Define this outside
11469         of [RESOLVE_MAP].
11471 2005-03-01  Alfred M. Szmidt  <ams@gnu.org>
11473         [BZ #777]
11474         * elf/dl-load.c (__stack_prot) [!PROT_GROWSUP && !PROT_GROWSDOWN]:
11475         Add missing initializer.
11477         [BZ #777]
11478         * malloc/arena.c: #include <stdbool.h> outside of [SHARED &&
11479         USE_TLS && !USE___THREAD].
11481 2005-02-26  GOTO Masanori  <gotom@debian.or.jp>
11483         * csu/Makefile: Use printf instead of echo for some shells.
11485 2005-02-28  Roland McGrath  <roland@redhat.com>
11487         * debug/warning-nop.c (__nop): Rename to nop, make it static.
11488         (__warndecl): Use alias attribute directly, instead of strong_alias
11489         macro.  Add attribute_hidden.
11491 2005-02-28  Ulrich Drepper  <drepper@redhat.com>
11493         * posix/bits/unistd.h: Avoid calling __*_chk variants if we can
11494         determine the call will never trigger a failure.
11495         * debug/read_chk.c (__read_chk): Always fail if the buffer is too
11496         small.
11497         * debug/readlink_chk.c (__readlink_chk): Likewise.
11498         * debug/pread64_chk.c (__pread64_chk): Likewise.
11499         * debug/pread_chk.c (__pread_chk): Likewise.
11501         * sysdeps/i386/i686/memset_chk.S: Remove alias and warning.
11502         * sysdeps/x86_64/memset_chk.S: Likewise.
11504 2005-02-24  Roland McGrath  <roland@redhat.com>
11506         * debug/Versions (libc: GLIBC_2.4): Remove
11507         __memset_zero_constant_len_parameter.
11508         * sysdeps/generic/memset_chk.c: Remove alias and warning.
11509         * misc/sys/cdefs.h (__warndecl): New macro.
11510         * debug/warning-nop.c: New file.
11511         * string/bits/string3.h (memset): Call __warn_memset_zero_len with no
11512         arguments, instead of calling __memset_zero_constant_len_parameter.
11513         Use __warndecl for __warn_memset_zero_len.
11514         * debug/Makefile (routines): Add $(static-only-routines).
11515         (static-only-routines): New variable.
11517 2005-02-27  Ulrich Drepper  <drepper@redhat.com>
11519         * po/tr.po: Update from translation team.
11521 2005-02-26  Ulrich Drepper  <drepper@redhat.com>
11523         * elf/dl-addr.c: Cleanups.  Move declaration next to first use.
11525         * dlfcn/dlerror.c (check_free): New function.  Extract common code
11526         from fini and free_key_mem.  Check whether this is libdl in the
11527         base namespace.
11529 2005-02-25  Ulrich Drepper  <drepper@redhat.com>
11531         * elf/dl-lookup.c (_dl_debug_bindings): Add namespace information
11532         to debug output.
11534 2004-11-11  Richard Sandiford  <rsandifo@redhat.com>
11536         [BZ #758]
11537         * sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h): Only
11538         preprocess <asm/unistd.h> if it defines ABI-prefixed syscall names
11539         like __NR_N32_open.  Just include <asm/unistd.h> otherwise.
11540         * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
11541         * sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h: Delete
11542         * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h (SYS_ify): Use the
11543         standard __NR prefix.
11544         * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h (SYS_ify): Likewise.
11545         * sysdeps/unix/sysv/linux/mips/Makefile (syscall-%.h): Rework so that
11546         the output file is compatible with both pre-2.6 and 2.6 kernel headers.
11547         Extract separate syscall lists for each ABI.
11549 2005-02-23  Ulrich Drepper  <drepper@redhat.com>
11551         * Makerules (libc.so): Add AS_NEEDED line for dynamic linker.
11553         [BZ #719]
11554         * elf/Makefile: Run tst-tls9-static again.
11556 2005-02-22  Ulrich Drepper  <drepper@redhat.com>
11558         [BZ #719]
11559         * sysdeps/generic/libc-tls.c (static_dtv): Size the same as the
11560         slotinfo array.
11561         (__libc_setup_tls): Initialize length of DTV based on array length.
11562         * elf/dl-load.c: Revert last change.
11563         * sysdeps/generic/dl-tls.c: Revert last change.
11565         * posix/Makefile (tests): Add tst-execvp1, tst-execvp2, tst-execlp1,
11566         tst-execlp2, tst-execv1, tst-execv2, tst-execl1, tst-execl2,
11567         tst-execve1, tst-execve2, tst-execle1, and tst-execle2.
11568         * posix/tst-execl1.c: New file.
11569         * posix/tst-execl2.c: New file.
11570         * posix/tst-execle1.c: New file.
11571         * posix/tst-execle2.c: New file.
11572         * posix/tst-execlp1.c: New file.
11573         * posix/tst-execlp2.c: New file.
11574         * posix/tst-execv1.c: New file.
11575         * posix/tst-execv2.c: New file.
11576         * posix/tst-execve1.c: New file.
11577         * posix/tst-execve2.c: New file.
11578         * posix/tst-execvp1.c: New file.
11579         * posix/tst-execvp2.c: New file.
11581 2005-02-22  Roland McGrath  <roland@redhat.com>
11583         * include/signal.h: Revert last change.
11584         (__sigemptyset): Use __builtin_memset instead of memset.
11586 2005-02-22  Ulrich Drepper  <drepper@redhat.com>
11588         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Use
11589         non-cancelable I/O functions.
11591 2005-02-22  Jakub Jelinek  <jakub@redhat.com>
11593         [BZ #769]
11594         * nscd/nscd-client.h: Include sys/uio.h.
11595         (__readall, __readvall, writeall): New prototypes.
11596         * nscd/connections.c (writeall): New function.
11597         (handle_request): Use it.
11598         * nscd/aicache.c (addhstaiX): Likewise.
11599         * nscd/initgrcache.c (addinitgroupsX): Likewise.
11600         * nscd/hstcache.c (cache_addhst): Likewise.
11601         * nscd/grpcache.c (cache_addgr): Likewise.
11602         * nscd/pwdcache.c (cache_addpw): Likewise.
11603         * nscd/nscd_helper.c (__readall, __readvall): New functions.
11604         * nscd/nscd_getai.c (__nscd_getai): Use them.
11605         * nscd/nscd_getpw_r.c (__nscd_getpw_r): Likewise.
11606         * nscd/nscd_getgr_r.c (__nscd_getgr_r): Likewise.
11607         * nscd/nscd_gethst_r.c (__nscd_gethst_r): Likewise.
11608         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
11610 2005-02-22  Roland McGrath  <roland@redhat.com>
11612         * include/sys/socket.h: Declare __recv.
11613         * sysdeps/generic/recv.c (recv): Rename to __recv, and add weak alias.
11614         * sysdeps/mach/hurd/recv.c: Likewise.
11616         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <execinfo.h> for
11617         __backtrace_* decls.
11619         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
11620         (INTERNAL_SYSCALL_ERROR_P): Evalute VAL.  Parenthesize ERR.
11621         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
11623         * include/signal.h: Include <string.h> for memset decl.
11625 2005-02-22  Andreas Schwab  <schwab@suse.de>
11627         * posix/execvp.c (execvp): Fix invalid free.
11629 2005-02-22  Jakub Jelinek  <jakub@redhat.com>
11631         [BZ #1095]
11632         * malloc/Makefile (CFLAGS-mcheck-init.c): Add.
11633         * sunrpc/Makefile: Add $(PIC-ccflag) to CFLAGS-x* for
11634         librpcsvc.a objects.
11636 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
11638         [BZ #1107]
11639         * iconvdata/ibm930.h: Correct Yen mapping.
11640         * iconvdata/ibm939.h: Likewise.
11641         * iconvdata/testdata/IBM930..UTF8: Adjust test data.
11642         * iconvdata/testdata/IBM939..UTF8: Likewise.
11643         Patch by Jiro Sekiba <SEKIBA@jp.ibm.com>.
11645         * iconvdata/Makefile (modules): Add IBM1025, IBM1122, IBM1137, IBM1153,
11646         IBM1154, IBM1155, IBM1156, IBM1157, and IBM1158.
11647         (distribute): Add ibm1025.c, ibm1025.h, ibm1122.c, ibm1122.h,
11648         ibm1137.c, ibm1137.h, ibm1153.c, ibm1153.h, ibm1154.c, ibm1154.h,
11649         ibm1155.c, ibm1155.h, ibm1156.c, ibm1156.h, ibm1157.c, ibm1157.h,
11650         ibm1158.c, and ibm1158.h.
11651         * iconvdata/TESTS: Add IBM1025, IBM1122, IBM1137, IBM1153,
11652         IBM1154, IBM1155, IBM1156, IBM1157, and IBM1158.
11653         * iconvdata/gconv-modules: Likewise.
11654         * iconvdata/ibm1025.c: New file.
11655         * iconvdata/ibm1025.h: New file.
11656         * iconvdata/ibm1122.c: New file.
11657         * iconvdata/ibm1122.h: New file.
11658         * iconvdata/ibm1137.c: New file.
11659         * iconvdata/ibm1137.h: New file.
11660         * iconvdata/ibm1153.c: New file.
11661         * iconvdata/ibm1153.h: New file.
11662         * iconvdata/ibm1154.c: New file.
11663         * iconvdata/ibm1154.h: New file.
11664         * iconvdata/ibm1155.c: New file.
11665         * iconvdata/ibm1155.h: New file.
11666         * iconvdata/ibm1156.c: New file.
11667         * iconvdata/ibm1156.h: New file.
11668         * iconvdata/ibm1157.c: New file.
11669         * iconvdata/ibm1157.h: New file.
11670         * iconvdata/ibm1158.c: New file.
11671         * iconvdata/ibm1158.h: New file.
11672         * iconvdata/testdata/IBM1025: New file.
11673         * iconvdata/testdata/IBM1025..UTF8: New file.
11674         * iconvdata/testdata/IBM1122: New file.
11675         * iconvdata/testdata/IBM1122..UTF8: New file.
11676         * iconvdata/testdata/IBM1137: New file.
11677         * iconvdata/testdata/IBM1137..UTF8: New file.
11678         * iconvdata/testdata/IBM1153: New file.
11679         * iconvdata/testdata/IBM1153..UTF8: New file.
11680         * iconvdata/testdata/IBM1154: New file.
11681         * iconvdata/testdata/IBM1154..UTF8: New file.
11682         * iconvdata/testdata/IBM1155: New file.
11683         * iconvdata/testdata/IBM1155..UTF8: New file.
11684         * iconvdata/testdata/IBM1156: New file.
11685         * iconvdata/testdata/IBM1156..UTF8: New file.
11686         * iconvdata/testdata/IBM1157: New file.
11687         * iconvdata/testdata/IBM1157..UTF8: New file.
11688         * iconvdata/testdata/IBM1158: New file.
11689         * iconvdata/testdata/IBM1158..UTF8: New file.
11690         Contributed by Jiro Sekiba <SEKIBA@jp.ibm.com>.
11692 2005-02-10  Paolo Bonzini  <bonzini@gnu.org>
11694         * posix/regcomp.c (lower_subexp): Do not optimize empty
11695         subexpressions even with REG_NOSUB.
11696         * posix/rxspencer/tests: Add a previously failing testcase.
11698 2005-02-21  Alan Modra <amodra@bigpond.net.au>
11700         [BZ #719]
11701         * elf/dl-reloc.c (_dl_nothread_init_static_tls): Assert that dtv
11702         array index is within bounds.
11704 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
11706         [BZ #719]
11707         * elf/dl-load.c: Do not allow PT_TLS in modules loaded in statically
11708         linked code.
11709         * sysdeps/generic/dl-tls.c [!SHARED]: Don't build _dl_next_tls_modid.
11710         * elf/Makefile: Remove rules to build and run tst-tls9-static.
11712         [BZ #719]
11713         * elf/dl-reloc.c (_dl_nothread_init_static_tls): Avoid using
11714         THREAD_DTV multiple times, this minimally reduces code size on
11715         some archs.
11717 2005-02-21  Jakub Jelinek  <jakub@redhat.com>
11719         [BZ #768]
11720         * nscd/nscd_gethst_r.c (nscd_gethst_r): Set *h_errnop to
11721         NETDB_INTERNAL if buffer is too small.
11723         [BZ #768]
11724         * nscd/hstcache.c (INCR): Remove.
11725         (addhstbyX): Double buflen in each iteration rather than add INCR.
11726         * nscd/grpcache.c: Likewise.
11727         * nscd/pwdcache.c: Likewise.
11729 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
11731         * sysdeps/unix/sysv/linux/libc_fatal.c: Print backtrace and memory
11732         map if requested.
11733         * debug/chk_fail.c: Request backtrace and memory map dump.
11735         * Versions.def: Add GLIBC_2.4 for libc.
11736         * debug/fgets_chk.c: New file.
11737         * debug/fgets_u_chk.c: New file.
11738         * debug/getcwd_chk.c: New file.
11739         * debug/getwd_chk.c: New file.
11740         * debug/readlink_chk.c: New file.
11741         * debug/read_chk.c: New file.
11742         * debug/pread_chk.c: New file.
11743         * debug/pread64_chk.c: New file.
11744         * debug/recv_chk.c: New file.
11745         * debug/recvfrom_chk.c: New file.
11746         * debug/Versions: Add all new functions with version GLIBC_2.4.
11747         * debug/Makefile (routines): Add fgets_chk, fgets_u_chk, read_chk,
11748         pread_chk, pread64_chk, recv_chk, recvfrom_chk, readlink_chk,
11749         getwd_chk, and getcwd_chk.  Plus appropriate CFLAGS definitions.
11750         * debug/tst-chk1.c: Add more tests.
11751         * libio/bits/stdio2.h: Add macros for fgets and fgets_unlocked.
11752         * include/stdio.h: Declare __fgets_chk and __fgets_unlocked_chk.
11753         * posix/unistd.h: Include <bits/unistd.h> for fortification.
11754         * posix/bits/unistd.h: New file.
11755         * posix/Makefile (headers): Add bits/unistd.h.
11756         * socket/sys/socket.h: Include <bits/socket2.h> for fortification.
11757         * socket/bits/socket2.h: New file.
11758         * socket/Makefile (headers): Add bits/socket2.h.
11760         * string/bits/string3.h: Extend memset macro to check for zero 3rd
11761         parameter and use __memset_zero_constant_len_parameter in that case.
11762         * sysdeps/generic/memset_chk.c: Add
11763         __memset_zero_constant_len_parameter alias and linker warning.
11764         * debug/Versions: Add __memset_zero_constant_len_parameter to libc
11765         with version GLIBC_2.4.
11767         * sysdeps/generic/bits/types.h: Don't unnecessarily use __extension__
11768         in __STD_TYPE definition.
11770 2005-02-21  Jakub Jelinek  <jakub@redhat.com>
11772         * malloc/malloc.c (malloc_printerr): If MALLOC_CHECK_={5,7}, print
11773         the error message rather than program name.
11775 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
11777         [BZ #767]
11778         * posix/unistd.h: symlink and readlink are unconditionally
11779         available in the 2001 spec.
11781 2005-02-16  Roland McGrath  <roland@redhat.com>
11783         * intl/dcigettext.c (_nl_find_msg): Add a cast.
11785         * nis/nis_clone_dir.c (nis_clone_directory): Use char * for ADDR.
11786         * nis/nis_clone_obj.c (nis_clone_object): Likewise.
11787         * nis/nis_clone_res.c (nis_clone_result): Likewise.
11789         * resolv/nss_dns/dns-network.c (getanswer_r): Use const unsigned char *
11790         for END_OF_MESSAGE and CP.
11792         * resolv/res_send.c (send_dg): Add else branch for case impossible
11793         unless `poll' is buggy.
11795         * crypt/crypt_util.c (__setkey_r): Add a cast.
11797         * locale/programs/linereader.c (get_toplvl_escape): Use size_t for
11798         NBYTES, and unsigned char * for BYTES.
11800         * locale/programs/charmap.c (charmap_new_char): Use size_t and
11801         unsighed char * for NBYTES, BYTES parameters.
11803         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Take const char * argument
11804         and cast it.
11805         * sysdeps/i386/i686/dl-hash.h (_dl_elf_hash): Likewise.
11807         * sunrpc/create_xid.c (_create_xid): Don't use unsigned long for RES.
11809         * sunrpc/svcauth_des.c (_svcauth_des): Fix cast type.
11811         * sunrpc/auth_des.c (authdes_create): Don't use u_char for PKEY_DATA.
11812         (authdes_marshal): Don't use unsigned int for LEN.
11813         * sunrpc/xdr.c (xdr_hyper): Don't use unsigned long for T2.
11814         (xdr_u_hyper): Likewise.
11815         (xdr_u_short): Don't use u_long for L.
11816         * sunrpc/xdr_intXX_t.c (xdr_int64_t): Don't use uint32_t for T2.
11818         * inet/rexec.c (rexec_af): Use socklen_t.
11819         * sunrpc/key_call.c (getkeyserv_handle): Likewise.
11820         * sunrpc/rtime.c (rtime): Likewise.
11821         * resolv/res_send.c (send_vc, send_dg): Likewise.
11822         * nis/nis_callback.c (__nis_create_callback): Likewise.
11824         * sysdeps/generic/libc-start.c: Use unsigned int for nthreads ptr.
11826         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix type of ADDR local.
11828         * libio/libio.h (_IO_BE): Add parenthesis around EXPR.
11830         * intl/dcigettext.c (INTVARDEF, INTUSE): Macros removed.
11831         (_nl_default_dirname): Use libc_hidden_data_def instead of INTVARDEF.
11832         (libc_freeres_fn, DCIGETTEXT): Don't use INTUSE.
11833         * intl/bindtextdom.c (INTUSE): Macro removed.
11834         (_nl_default_dirname): Use libc_hidden_proto.
11835         (set_binding_values): Don't use INTUSE.
11836         * include/libintl.h (_libc_intl_domainname_internal): Decl removed.
11837         (_libc_intl_domainname): Use libc_hidden_proto.
11838         * posix/regex_internal.h (gettext): Remove INTUSE on it.
11839         * locale/SYS_libc.c (_libc_intl_domainname): Use libc_hidden_data_def
11840         rather than INTDEF.
11841         * include/libintl.h (_): Don't use *_internal name.
11843         * ctype/ctype-extn.c (__ctype_tolower, __ctype_toupper): Use int32_t,
11844         not uint32_t.
11845         * locale/lc-ctype.c (_nl_postload_ctype): Likewise for assignments.
11847         * iconv/gconv_open.c (__gconv_open): Remove useless cast.
11849         [BZ #721]
11850         * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define this outside
11851         of [RESOLVE_MAP].
11852         * sysdeps/sh/dl-machine.h (ELF_MACHINE_NO_REL): Likewise.
11853         * sysdeps/powerpc/powerpc32/dl-machine.h
11854         (elf_machine_rel, elf_machine_rel_relative): Removed.
11855         * sysdeps/powerpc/powerpc64/dl-machine.h
11856         (elf_machine_rel, elf_machine_rel_relative): Removed.
11858 2005-02-03  Alexandre Oliva  <aoliva@redhat.com>
11860         [BZ #721]
11861         * elf/dynamic-link.h: Don't declare nested auto functions that are
11862         not going to be defined.
11864 2004-07-23  Jakub Jelinek  <jakub@redhat.com>
11866         [BZ #284]
11867         * include/features.h (_POSIX_SOURCE, _POSIX_C_SOURCE): Define
11868         if _XOPEN_SOURCE >= 500 even if __STRICT_ANSI__ is defined.
11870 2005-02-16  Roland McGrath  <roland@redhat.com>
11872         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Move UBP_EV defn
11873         inside [! SHARED] where it's used.
11875 2005-02-15  Ulrich Drepper  <drepper@redhat.com>
11877         * sysdeps/generic/bits/byteswap.h: Make sure result of all the
11878         functions and macros is unsigned.
11880 2005-02-11  Barry deFrese  <bddebian@comcast.net>
11882         [BZ #722]
11883         * sysdeps/mach/hurd/setresgid.c: Use weak_alias.
11884         * sysdeps/mach/hurd/setresuid.c: Likewise.
11886 2005-02-14  GOTO Masanori  <gotom@debian.or.jp>
11888         * misc/sys/syslog.h: Fix typo in comment.
11890 2005-02-14  Roland McGrath  <roland@redhat.com>
11892         [BZ #720]
11893         * sysdeps/unix/sysv/linux/sys/kd.h: Don't leave _LINUX_TYPES_H defined
11894         if it wasn't originally.
11896 2005-02-14  GOTO Masanori  <gotom@debian.or.jp>
11898         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove the duplicated
11899         getpeername entry.
11900         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
11901         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
11903 2005-02-11  Jakub Jelinek  <jakub@redhat.com>
11905         * scripts/soversions.awk: Only record first WORDSIZE{32,64}
11906         matching line.
11908 2005-02-14  Alan Modra  <amodra@bigpond.net.au>
11910         [BZ #721]
11911         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Define
11912         with auto inline, and attribute always_inline.
11913         (elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
11914         (elf_machine_rel, elf_machine_rel_relative): Likewise.
11915         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
11916         (elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
11917         (elf_machine_rel, elf_machine_rel_relative): Likewise.
11918         (elf_machine_tprel): Likewise.
11920 2005-02-14  Andreas Schwab  <schwab@suse.de>
11922         * manual/filesys.texi (Random Access Directory): Fix type of file
11923         position value for telldir and seekdir.
11924         (Attribute Meanings): Fix typo.
11926 2005-02-14  H.J. Lu  <hongjiu.lu@intel.com>
11928         * csu/elf-init.c (__libc_csu_fini): Enable if LIBC_NONSHARED
11929         isn't defined.
11930         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Call fini
11931         if SHARED isn't defined.
11932         * elf/Makefile (tests-static): Add tst-array1-static.
11933         ($(objpfx)tst-array1-static.out): New target.
11934         * elf/tst-array1-static.c: New file.
11936 2005-02-11  Jakub Jelinek  <jakub@redhat.com>
11938         [BZ #1100]
11939         * debug/chk_fail.c (__chk_fail): Add a while (1) loop around
11940         __libc_message to kill GCC warning about noreturn function returning.
11942         * elf/rtld.c (dlmain): If LD_TRACE_PRELINKING, clear l_relocated flag
11943         before relocating ld.so again.
11945         * elf/rtld.c (_dl_start): Set bootstrap_map.l_relocated even
11946         for already prelinked ld.so.
11948 2005-02-11  Roland McGrath  <roland@redhat.com>
11950         [BZ #715]
11951         * Makefile (installed-stubs): New variable.
11952         Set to $(inst_includedir)/gnu/stubs.h if $(biarch) is no,
11953         or to $(inst_includedir)/gnu/stubs-$(biarch).h if otherwise.
11954         [$(biarch) != no] (install-others-nosubdir): Add $(installed-stubs).
11955         ($(inst_includedir)/gnu/stubs.h): Use $(installed-stubs) for this
11956         rule's target.
11957         ($(inst_includedir)/gnu/stubs.h): New target, install from ...
11958         * include/stubs-biarch.h: New file.
11960         * shlib-versions (i.86-.*-.*): Add WORDSIZE64 line mapping to x86_64.
11962         * Makeconfig ($(common-objpfx)soversions.mk): Depend on Makeconfig.
11963         Emit defn for variable `biarch'.
11965         * include/stub-tag.h: Update comment.
11967         * scripts/soversions.awk: Fix default version set handling.
11969 2005-02-10  Roland McGrath  <roland@redhat.com>
11971         [BZ #157]
11972         * include/libc-symbols.h (stub_warning): Emit a marker section called
11973         .gnu.glibc-stub.NAME.
11974         * Makerules ($(objpfx)stubs): Depend on object files, not dep files.
11975         Use objdump to collect those marker section names.
11976         ($(common-objpfx)shlib.lds): Discard .gnu.glibc-stub.* sections.
11978         * Rules (subdir_objs, subdir_stubs): New phony targets.
11979         * Makefile (+subdir_targets): Add them.
11981         * Makerules ($(common-objpfx)Versions.all): Grok new leading column in
11982         soversions.i.
11984         * scripts/lib-names.awk: Consider [0-9].* a "number", not just [0-9]+.
11985         Reported by H.J. Lu <hongjiu.lu@intel.com>.
11987         * scripts/lib-names.awk: Always print WORDSIZE32 section first when
11988         doing two.
11990 2005-02-10  Jakub Jelinek  <jakub@redhat.com>
11992         * sysdeps/powerpc/powerpc32/bits/link.h: Removed.
11993         * sysdeps/powerpc/powerpc64/bits/link.h: Moved to...
11994         * sysdeps/powerpc/bits/link.h: ... here.  New file.
11996 2005-02-09  Jakub Jelinek  <jakub@redhat.com>
11998         [BZ #710]
11999         * stdlib/random_r.c (__initstate_r): Save old state.
12000         * stdlib/Makefile (tests): Add tst-random2.
12001         * stdlib/tst-random2.c: New test.
12002         Reported by Peter Bergner <bergner@vnet.ibm.com>.
12004 2005-01-25  H.J. Lu  <hongjiu.lu@intel.com>
12006         * dlfcn/dlfcn.c (init): Put it in .init_array section.
12008 2005-02-10  Roland McGrath  <roland@redhat.com>
12010         [BZ #632]
12011         * scripts/soversions.awk: Expect cpu, vendor, os as separate variables
12012         from command line.
12013         Grok shlib-versions lines with WORDSIZE* in second column.
12014         Add new leading column to output, DEFAULT for existing output lines.
12015         Also emit lines with WORDSIZE* for alternate configurations.
12016         * Makeconfig ($(common-objpfx)soversions.i): Pass those variables.
12017         ($(common-objpfx)soversions.mk): Grok new column, use only DEFAULT.
12018         ($(common-objpfx)gnu/lib-names.stmp): Depend on soversions.i instead
12019         of soversions.mk; replace inline shell script with use of ...
12020         * scripts/lib-names.awk: New file.  If input has non-DEFAULT lines,
12021         emit multiple sets of macros under #if.
12022         * shlib-versions (x86_64-.*-.*): Add WORDSIZE32 line mapping to i686.
12023         (s390x-.*-.*): Likewise for s390.
12024         (powerpc64-.*-.*): Likewise for powerpc.
12025         (sparc64-.*-.*): Likewise for sparc.
12026         (s390-.*-.*, powerpc.*-.*-.*, sparc.*-.*-.*): Add WORDSIZE64 entries
12027         for these mapping back to the above.
12029 2005-02-08  Jakub Jelinek  <jakub@redhat.com>
12031         * elf/dl-load.c (_dl_map_object_from_fd): Fix a typo.
12033 2005-02-08  Andreas Schwab  <schwab@suse.de>
12035         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Remove use of
12036         RESOLVE.
12038 2005-02-07  Richard Henderson  <rth@redhat.com>
12040         [BZ #721]
12041         * iconvdata/jis0208.h (struct jisx0208_ucs_idx): Move before use.
12043 2005-02-08  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
12045         * sysdeps/sh/dl-machine.h (elf_machine_rela): Remove code using
12046         RESOLVE.
12048 2005-02-07  Ulrich Drepper  <drepper@redhat.com>
12050         * elf/dl-load.c (_dl_map_object_from_fd): Make sure registers are
12051         set correctly.
12053 2005-01-07  Richard Henderson  <rth@redhat.com>
12055         [BZ #721]
12056         * math/math_private.h (__copysign): Define as builtin for gcc 4.
12057         (__copysignf, __copysignl): Likewise.
12058         * sysdeps/alpha/fpu/bits/mathinline.h (copysign): Don't define
12059         for gcc 4.0.
12060         (copysignf, copysignl, fabsf, fabs): Likewise.
12061         (__copysign, __copysignf, __copysignl): Remove.
12062         (__fabs, __fabsf): Remove.
12064 2005-01-07  Jakub Jelinek  <jakub@redhat.com>
12066         [BZ #738]
12067         * elf/dl-load.c (open_path): If rtld_search_dirs is in RELRO segment,
12068         avoid writing to it if none of the standard search directories exist.
12070 2005-02-07  Steven Munroe  <sjmunroe@us.ibm.com>
12072         [BZ #700]
12073         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
12074         (__novec_setcontext, __setcontext): Fix typo so CCR is restored.
12075         Load MSR as a doubleword.
12076         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
12077         (__novec_swapcontext, __swapcontext): Likewise.
12079 2005-02-07  Ulrich Drepper  <drepper@redhat.com>
12081         * iconv/iconv_prog.c (main): Provide more help in case on an error.
12083         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Define.
12085 2005-02-07  Jakub Jelinek  <jakub@redhat.com>
12087         [BZ #741]
12088         * nscd/nscd.c (termination_handler): Avoid segfault if some database
12089         is not enabled.
12091         [BZ #741]
12092         * nscd/nscd_getai.c (__nscd_getai): If ai_resp->found == -1, set
12093         __nss_not_use_nscd_hosts and return -1.
12094         * nscd/nscd_initgroups.c (__nscd_getgrouplist): If
12095         initgr_resp->found == -1, set __nss_not_use_nscd_group and return -1.
12096         Avoid leaking sockets.
12098 2005-01-28  Andreas Schwab  <schwab@suse.de>
12099             H.J. Lu  <hongjiu.lu@intel.com>
12101         [BZ #677]
12102         * elf/dl-runtime.c (fixup): Change return type to
12103         DL_FIXUP_VALUE_TYPE. Use DL_FIXUP_VALUE_TYPE,
12104         DL_FIXUP_MAKE_VALUE and DL_FIXUP_VALUE_CODE_ADDR for relocation
12105         values. Use DL_FIXUP_VALUE_ADDR and DL_FIXUP_ADDR_VALUE to
12106         store and retrieve relocation values.
12107         (profile_fixup): Likewise.
12108         * include/link.h (link_map): Use DL_FIXUP_VALUE_TYPE for
12109         l_reloc_result.
12110         * sysdeps/generic/dl-fptr.h (link_map): Forward declaration.
12111         * sysdeps/generic/dl-lookupcfg.h (DL_FIXUP_VALUE_TYPE): New.
12112         (DL_FIXUP_MAKE_VALUE): Likewise.
12113         (DL_FIXUP_VALUE_CODE_ADDR): Likewise.
12114         (DL_FIXUP_VALUE_ADDR): Likewise.
12115         (DL_FIXUP_ADDR_VALUE): Likewise.
12116         * sysdeps/ia64/dl-lookupcfg.h: Include <dl-fptr.h> for "struct fdesc".
12117         (DL_FIXUP_VALUE_TYPE): New.
12118         (DL_FIXUP_MAKE_VALUE): Likewise.
12119         (DL_FIXUP_VALUE_CODE_ADDR): Likewise.
12120         (DL_FIXUP_VALUE_ADDR): Likewise.
12121         (DL_FIXUP_ADDR_VALUE): Likewise.
12122         * sysdeps/ia64/dl-machine.h (elf_machine_profile_fixup_plt): Removed.
12123         (elf_machine_profile_plt): Removed.
12124         (elf_machine_fixup_plt): Change return type and type of value
12125         parameter to struct fdesc.
12126         (elf_machine_plt_value): Likewise.
12127         (elf_machine_rela): Use DL_FIXUP_MAKE_VALUE to construct
12128         argument for elf_machine_fixup_plt.
12130 2005-02-07  Jakub Jelinek  <jakub@redhat.com>
12132         [BZ #742]
12133         * nscd/nscd.init (reload): Print Reloading nscd: before and a newline
12134         after the status string printed by killproc.
12136 2004-11-18  Alexandre Oliva  <aoliva@redhat.com>
12138         * manual/.cvsignore: Add dir-add.texi.
12140 2005-02-06  Richard Henderson  <rth@redhat.com>
12142         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Use RESOLVE_MAP
12143         all the time.
12145 2004-11-03  Marcus Brinkmann  <marcus@gnu.org>
12147         * configure.in (sysnames): Append sysdeps/generic for each add-on.
12148         * configure: Regenerated.
12150 2005-02-02  Alfred M. Szmidt  <ams@gnu.org>
12152         * sysdeps/mach/hurd/tls.h: Include <stdbool.h>
12153         (dtv_t): Change pointer type to be a struct which also contains
12154         information whether the memory pointed to is static TLS or not.
12156         * sysdeps/generic/syslog.c (send_flags) [!send_flags]: Define it.
12158         * shadow/sgetspent_r.c (FALSE): Macro renamed to ...
12159         (FALSEP): ... this.  Updated all references.
12161         [BZ #765]
12162         * libio/fmemopen.c: Include <stdint.h>.
12164 2005-01-30  Ulrich Drepper  <drepper@redhat.com>
12166         [BZ #1103]
12167         * nscd/nscd_helper.c (get_mapping): Use MSG_NOSIGNAL if available.
12168         * nscd/connections.c (send_ro_fd): Likewise.
12170 2005-01-28  H.J. Lu  <hongjiu.lu@intel.com>
12172         * elf/tst-auditmod1.c: Add ia64 entries.
12173         * sysdeps/generic/ldsodefs.h (La_ia64_regs): New.
12174         (La_ia64_retval): New.
12175         (audit_ifaces): Add ia64 entries.
12176         * sysdeps/ia64/bits/link.h: New file.
12177         * sysdeps/ia64/dl-machine.h (elf_machine_runtime_setup): Test
12178         for dl_profile non-null.
12179         (ARCH_LA_PLTENTER): New.
12180         (ARCH_LA_PLTEXIT): New.
12181         * sysdeps/ia64/dl-trampoline.S (_dl_runtime_resolve): Allocate
12182         only 2 output registers. Allocate stack to save/restore
12183         8 incoming fp registers. Call _dl_fixup instead of fixup.
12184         (_dl_runtime_profile): Rewrite.
12186 2005-01-28  Martin Schwidefsky  <schwidefsky@de.ibm.com>
12188         * sysdeps/s390/bits/link.h: New file.
12189         * sysdeps/s390/s390-32/dl-trampoline.S: New file.
12190         * sysdeps/s390/s390-64/dl-trampoline.S: New file.
12191         * sysdeps/s390/s390-32/dl-machine.h: Move PLT trampolines to
12192         dl-trampoline.S. Use RESOLVE_MAP instead of RESOLVE to protect
12193         relocation code.
12194         (elf_machine_runtime_setup): Test for dl_profile non-null.
12195         (elf_machine_rela): Remove code using RESOLVE.
12196         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
12197         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
12198         * sysdeps/generic/ldsodefs.h (La_s390_32_regs, La_s390_32_retval,
12199         La_s390_64_regs, La_s390_64_retval): New.
12200         * elf/tst-auditmod1.c: Add s390 entries.
12202         [BZ #743]
12203         * sysdeps/s390/bits/string.h (strlen, strncpy, strcat, strncat,
12204         strncat, memchr, strcmp): Add missing memory clobber.
12206 2005-01-27  Ulrich Drepper  <drepper@redhat.com>
12208         * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_globfree): Also
12209         copy gl_offs.  Patch by Sergey Tikhonov <tsv@solvo.ru>.
12211 2005-01-27  Paolo Bonzini  <bonzini@gnu.org>
12213         [BZ #558]
12214         * posix/regcomp.c (calc_inveclosure): Return reg_errcode_t.
12215         Initialize the node sets in dfa->inveclosures.
12216         (analyze): Initialize inveclosures only if it is needed.
12217         Check errors from calc_inveclosure.
12218         * posix/regex_internal.c (re_dfa_add_node): Do not initialize
12219         the inveclosure node set.
12220         * posix/regexec.c (re_search_internal): If nmatch includes unused
12221         subexpressions, reset them to { rm_so: -1, rm_eo: -1 } here.
12223         * posix/regcomp.c (parse_bracket_exp) [!RE_ENABLE_I18N]:
12224         Do build a SIMPLE_BRACKET token.
12226         * posix/regexec.c (transit_state_mb): Do not examine nodes
12227         where ACCEPT_MB is not set.
12229 2005-01-27  Jakub Jelinek  <jakub@redhat.com>
12231         * stdlib/tst-fmtmsg.c: Include stdlib.h.
12232         * stdio-common/tst-fmemopen2.c: Include string.h.
12233         * posix/execvp.c: Include stdbool.h.
12235 2004-12-13  Paolo Bonzini  <bonzini@gnu.org>
12237         Separate parsing and creation of the NFA.  Avoided recursion on
12238         the (very unbalanced) parse tree.
12239         [BZ #611]
12240         * posix/regcomp.c (struct subexp_optimize, analyze_tree, calc_epsdest,
12241         re_dfa_add_tree_node, mark_opt_subexp_iter): Removed.
12242         (optimize_subexps, duplicate_tree, calc_first, calc_next,
12243         mark_opt_subexp): Rewritten.
12244         (preorder, postorder, lower_subexps, lower_subexp, link_nfa_nodes,
12245         create_token_tree, free_tree, free_token): New.
12246         (analyze): Accept a regex_t *.  Invoke the passes via the preorder and
12247         postorder generic visitors.  Do not initialize the fields in the
12248         re_dfa_t that represent the transitions.
12249         (free_dfa_content): Use free_token.
12250         (re_compile_internal): Analyze before UTF-8 optimizations.  Do not
12251         include optimization of subexpressions.
12252         (create_initial_state): Fetch the DFA node index from the first node's
12253         bin_tree_t *.
12254         (optimize_utf8): Abort on unexpected nodes, including OP_DUP_QUESTION.
12255         Return on COMPLEX_BRACKET.
12256         (duplicate_node_closure): Fix comment.
12257         (duplicate_node): Do not initialize the fields in the
12258         re_dfa_t that represent the transitions.
12259         (calc_eclosure, calc_inveclosure): Do not handle OP_DELETED_SUBEXP.
12260         (create_tree): Remove final argument.  All callers adjusted.  Rewritten
12261         to use create_token_tree.
12262         (parse_reg_exp, parse_branch, parse_expression, parse_bracket_exp,
12263         build_charclass_op): Use create_tree or create_token_tree instead
12264         of re_dfa_add_tree_node.
12265         (parse_dup_op): Likewise.  Also free the tree using free_tree for
12266         "<re>{0}", and lower OP_DUP_QUESTION to OP_ALT: "a?" is equivalent
12267         to "a|".  Adjust invocation of mark_opt_subexp.
12268         (parse_sub_exp): Create a single SUBEXP node.
12269         * posix/regex_internal.c (re_dfa_add_node): Remove last parameter,
12270         always perform as if it was 1.  Do not initialize OPT_SUBEXP and
12271         DUPLICATED, and initialize the DFA fields representing the transitions.
12272         * posix/regex_internal.h (re_dfa_add_node): Adjust prototype.
12273         (re_token_type_t): Move OP_DUP_PLUS and OP_DUP_QUESTION to the tokens
12274         section.  Add a tree-only code SUBEXP.  Remove OP_DELETED_SUBEXP.
12275         (bin_tree_t): Include a full re_token_t for TOKEN.  Turn FIRST and
12276         NEXT into pointers to trees.  Remove ECLOSURE.
12278 2004-12-28  Paolo Bonzini  <bonzini@gnu.org >
12280         [BZ #605]
12281         * posix/regcomp.c (parse_bracket_exp): Do not modify DFA nodes
12282         that were already created.
12283         * posix/regex_internal.c (re_dfa_add_node): Set accept_mb field
12284         in the token if needed.
12285         (create_ci_newstate, create_cd_newstate): Set accept_mb field
12286         from the tokens' field.
12287         * posix/regex_internal.h (re_token_t): Add accept_mb field.
12288         (ACCEPT_MB_NODE): Removed.
12289         * posix/regexec.c (proceed_next_node, transit_states_mb,
12290         build_sifted_states, check_arrival_add_next_nodes): Use
12291         accept_mb instead of ACCEPT_MB_NODE.
12293 2005-01-26  Ulrich Drepper  <drepper@redhat.com>
12295         [BZ #1100]
12296         * debug/chk_fail.c (__chk_fail): Print program name in final message.
12298         * sysdeps/unix/sysv/linux/kernel-features.h: Found reference to
12299         MSG_NOSIGNAL being in 2.2 kernels.
12301 2005-01-26  Jakub Jelinek  <jakub@redhat.com>
12303         * sysdeps/unix/sysv/linux/i386/sysdep.h
12304         (SYSCALL_ERROR_HANDLER_TLS_STORE): Remove unnecessary 0 imm.
12306         [BZ #693]
12307         * posix/regex_internal.h (DUMMY_CONSTRAINT): Rename to...
12308         (WORD_DELIM_CONSTRAINT): ...this.
12309         (NOT_WORD_DELIM_CONSTRAINT): Define.
12310         (re_context_type): Add INSIDE_NOTWORD and NOT_WORD_DELIM,
12311         change WORD_DELIM to use WORD_DELIM_CONSTRAINT.
12312         * posix/regcomp.c (peek_token): For \B create NOT_WORD_DELIM
12313         anchor instead of INSIDE_WORD.
12314         (parse_expression): Handle NOT_WORD_DELIM constraint.
12315         * posix/bug-regex19.c (tests): Adjust tests that relied on \B
12316         being inside word instead of not word delim.
12317         * posix/tst-rxspencer.c (mb_frob_pattern): Don't frob escaped
12318         characters.
12319         * posix/rxspencer/tests: Add some new tests.
12321 2005-01-14  GOTO Masanori  <gotom@debian.or.jp>
12323         [BZ #1108]
12324         * sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
12325         irrespective of Cflag.
12327         * manual/memory.texi (sbrk): Fix definition.
12328         * manual/string.texi (strcasestr): Fix example typo.
12330 2005-01-25  Roland McGrath  <roland@redhat.com>
12332         * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
12334 2005-01-23  Roland McGrath  <roland@redhat.com>
12336         [BZ #737]
12337         * sysdeps/i386/Makefile (defines): If -mno-tls-direct-seg-refs appears
12338         in $(CFLAGS), add -DNO_TLS_DIRECT_SEG_REFS.
12339         * sysdeps/unix/sysv/linux/i386/sysdep.h [USE___THREAD]
12340         (SYSCALL_ERROR_HANDLER) [NO_TLS_DIRECT_SEG_REFS]: Load thread pointer
12341         from %gs:0 and add to that value, rather that direct %gs:OFFSET access.
12342         * sysdeps/unix/i386/sysdep.S [NO_TLS_DIRECT_SEG_REFS]: Likewise.
12344 2005-01-25  Jakub Jelinek  <jakub@redhat.com>
12346         [BZ #731]
12347         * stdlib/fmtmsg.c (addseverity): Remove new_string variable.
12348         (free_mem): Don't free string.
12349         * stdlib/tst-fmtmsg.c: Include string.h.
12350         (main): Add some more tests.
12352 2005-01-25  Andreas Schwab  <schwab@suse.de>
12354         [BZ #736]
12355         * timezone/asia: Update from tzdata2005c.
12356         * timezone/backward: Likewise.
12357         * timezone/europe: Likewise.
12358         * timezone/leapseconds: Likewise.
12359         * timezone/northamerica: Likewise.
12360         * timezone/southamerica: Likewise.
12362         [BZ #736]
12363         * timezone/private.h: Update from tzcode2005c.
12364         * timezone/tzfile.h: Likewise.
12365         * timezone/zdump.c: Likewise.
12366         * timezone/zic.c: Likewise.
12368 2005-01-25  Ulrich Drepper  <drepper@redhat.com>
12370         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove code using
12371         RESOLVE.
12372         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Remove code
12373         using RESOLVE.
12374         * elf/rtld.c (_dl_start): Remove RESOLVE definition.
12376 2005-01-25  Alan Modra  <amodra@bigpond.net.au>
12378         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Test
12379         sym_map, not sym, against zero.
12381 2005-01-24  Ulrich Drepper  <drepper@redhat.com>
12383         [BZ #671]
12384         * misc/syslog.c: Moved to...
12385         * sysdeps/generic/syslog.c: ...here.
12386         [NO_SIGIPE]: Don't install SIGPIPE handler.
12387         * sysdeps/unix/sysv/linux/syslog.c: New file.
12388         * sysdeps/unix/sysv/linux/kernel-features.h: Define
12389         __ASSUME_MSG_NOSIGNAL.
12391 2005-01-22  Richard Henderson  <rth@redhat.com>
12393         * sysdeps/alpha/dl-trampoline.S: New file.
12394         * sysdeps/alpha/dl-machine.h: Move PLT trampolines there.
12395         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
12396         (elf_machine_runtime_setup): Test for dl_profile non-null.
12397         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
12398         * sysdeps/alpha/bits/link.h: New file.
12399         * sysdeps/generic/ldsodefs.h (La_alpha_regs, La_alpha_retval): New.
12400         (struct audit_ifaces): Add alpha entries.
12401         * elf/tst-auditmod1.c: Add alpha entries.
12403 2005-01-22  Ulrich Drepper  <drepper@redhat.com>
12405         * sysdeps/ia64/dl-machine.h: Remove PLT trampolines here.
12406         * sysdeps/ia64/dl-trampoline.S: New file.
12408         * sysdeps/x86_64/bits/link.h: Use namespace-safe identifiers in
12409         La_x86_64_xmm definition.
12411         * posix/Makefile: Use CFLAGS-*.os instead of CFLAGS-*.c for frame
12412         pointer option.
12413         * stdlib/Makefile (CFLAGS-system.os): Use this instead of
12414         CFLAGS-system.c for frame pointer option.
12416 2005-01-21  Roland McGrath  <roland@redhat.com>
12418         * elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS.
12419         * sysdeps/i386/dl-machine.h: Update decl.
12421 2005-01-21  Jakub Jelinek  <jakub@redhat.com>
12423         [BZ #735]
12424         * elf/Makefile: Add rules to build and run tst-align2.
12425         * elf/tst-align2.c: New test.
12426         * elf/tst-alignmod2.c: New file.
12427         * sysdeps/powerpc/tst-stack-align.h: New file.
12428         * sysdeps/i386/dl-machine.h (RTLD_START): Align stack and clear frame
12429         pointer before calling _dl_init.
12430         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
12432 2005-01-20  Ulrich Drepper  <drepper@redhat.com>
12434         * posix/execl.c: Do not allocate potentially large buffers on the
12435         stack.
12436         * posix/execle.c: Likewise.
12437         * posix/execlp.c: Likewise.
12438         * posix/execvp.c: Likewise.
12439         (script_execute): Removed.
12440         (allocate_scripts_argv): New function.  Called at most once to
12441         allocate memory, not every time a script is run.  Adjust caller.
12443         * sysdeps/generic/wordexp.c (exec_comm): Add a few
12444         TEMP_FAILURE_RETRY.  Reorganize code to avoid multiple calls to
12445         exec_comm_child.
12446         (exec_comm_child): Can now be inlined.
12448         * posix/Makefile: Add -fomit-frame-pointer for a few more files.
12449         * stdlib/Makefile: Likewise.
12451 2005-01-19  Roland McGrath  <roland@redhat.com>
12453         [BZ #681]
12454         * sunrpc/openchild.c (_openchild): Use NULL instead of 0 for trailing
12455         argument to execlp.
12456         Reported by Marcus Meissner <meissner@suse.de>.
12458 2005-01-19  Jakub Jelinek  <jakub@redhat.com>
12460         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Fix a typo
12461         in assert.
12462         * iconv/strtab.c (strtabfinalize): Likewise.
12464         * libio/iofopncook.c (_IO_cookie_seekoff): Add prototype.
12466 2005-01-17  Roland McGrath  <roland@redhat.com>
12468         [BZ #745]
12469         * nscd/Makefile (LDLIBS-nscd): New variable.
12470         ($(objpfx)nscd): Use that instead of selinux-LIBS.
12472         * Makeconfig (link-extra-libs): Define just as $(LDLIBS-$(@F)).
12473         (link-extra-libs-static): Define to $(link-extra-libs).
12474         (link-extra-libs-bounded): Likewise.
12476 2005-01-17  Ulrich Drepper  <drepper@redhat.com>
12478         * include/link.h: Remove stray definition of pltenter.
12480 2005-01-16  GOTO Masanori  <gotom@debian.or.jp>
12482         [BZ #734]
12483         * sysdeps/unix/rewinddir.c: Reset filepos.
12484         * dirent/tst-seekdir.c: Check telldir value after calling rewinddir.
12486 2005-01-15  Ulrich Drepper  <drepper@redhat.com>
12488         * elf/tst-auditmod1.c: Reduce duplication.
12490 2005-01-16  Andreas Schwab  <schwab@suse.de>
12492         * sysdeps/m68k/dl-machine.h: Remove trampoline code.  Define
12493         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
12494         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
12495         GLRO(dl_profile) != NULL.
12496         * sysdeps/m68k/dl-trampoline.S: New file.
12497         * sysdeps/m68k/bits/link.h: New file.
12498         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add m68k
12499         variants.
12500         * elf/tst-auditmod1.c: Add m68k support.
12502 2005-01-14  Ulrich Drepper  <drepper@redhat.com>
12504         * posix/regcomp.c [!_LIBC] (init_dfa): Fix determining of relevant
12505         LC_* variable.  Patch by Aharon Robbins <arnold@skeeve.com>.
12507         [BZ #731]
12508         * stdlib/fmtmsg.c (internal_addseverity): Remove incorrect free call.
12509         * stdlib/tst-fmtmsg.c (main): Add another addseverity test.
12511 2005-01-12  Ulrich Drepper  <drepper@redhat.com>
12513         * elf/dl-load.c (_dl_map_object_from_fd): We don't have to allow
12514         callers from libc anymore.
12516         * elf/dl-open.c (dl_open_worker): Pass __RTLD_AUDIT flag from caller
12517         to _dl_map_object_deps.
12518         * elf/dl-load.c (_dl_map_object_from_fd): Don't change memory
12519         protections when loading auditing modules.
12521         * dlfcn/dlopen.c (dlopen_doit): Catch invalid mode arguments and fail.
12523         * posix/getconf.c: Update copyright year.
12524         * nss/getent.c: Likewise.
12525         * nscd/nscd_nischeck.c: Likewise.
12526         * iconv/iconvconfig.c: Likewise.
12527         * iconv/iconv_prog.c: Likewise.
12528         * elf/ldconfig.c: Likewise.
12529         * catgets/gencat.c: Likewise.
12530         * csu/version.c: Likewise.
12531         * elf/ldd.bash.in: Likewise.
12532         * elf/sprof.c (print_version): Likewise.
12533         * locale/programs/locale.c: Likewise.
12534         * locale/programs/localedef.c: Likewise.
12535         * nscd/nscd.c (print_version): Likewise.
12536         * debug/xtrace.sh: Likewise.
12537         * malloc/memusage.sh: Likewise.
12538         * malloc/mtrace.pl: Likewise.
12539         * debug/catchsegv.sh: Likewise.
12541 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
12543         [BZ #733]
12544         * sunrpc/svc_tcp.c (svctcp_create): Call listen with SOMAXCONN
12545         as backlog.
12546         * sunrpc/svc_unix.c (svcunix_create): Likewise.
12548         [BZ #1099]
12549         * grp/putgrent.c (putgrent): Don't write 0 as group
12550         ID if groupname starts with + or -.
12551         * pwd/putpwent.c (putpwent): Don't write 0 as user or
12552         group ID if user name starts with + or -.
12554 2005-01-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
12556         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add sh variants.
12557         * sysdeps/elf/tst-auditmod1.c: Add sh support.
12558         * sysdeps/sh/bits/link.h: New.
12559         * sysdeps/sh/dl-machine.h: Remove trampoline code here.  Define
12560         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.  Remove obsolete comments.
12561         (RTLD_START): Define __fpscr_values.
12562         * sysdeps/sh/dl-trampoline.S: New file.
12563         * sysdeps/sh/sh4/dl-trampoline.S: New file.
12564         * sysdeps/sh/sh4/Versions [ld]: Add __fpscr_values.
12565         * sysdeps/sh/sh4/dl-machine.h: Remove.
12567 2005-01-10  Jakub Jelinek  <jakub@redhat.com>
12569         [BZ #732]
12570         * time/tst-strptime.c (day_tests): Add 2 new tests.
12571         (test_tm, main): Issue an error instead of segfaulting if
12572         strptime returns NULL.
12574 2005-01-10  H.J. Lu  <hongjiu.lu@intel.com>
12576         * sysdeps/alpha/libc-tls.c (__tls_get_addr): Updated for dtv_t union.
12577         * sysdeps/ia64/libc-tls.c (__tls_get_addr): Likewise.
12579 2005-01-11  Ulrich Drepper  <drepper@redhat.com>
12581         * malloc/malloc.h: Remove no-glibc support.
12583 2005-01-12  GOTO Masanori  <gotom@debian.or.jp>
12585         [BZ #650]
12586         * malloc/malloc.h: Always include features.h.
12588 2005-01-10  Roland McGrath  <roland@redhat.com>
12590         * sysdeps/ia64/fpu/e_logl.c: File removed.
12592         * dlfcn/dlfcn.c (init): Fix typo in attribute decl.
12594 2005-01-10  Ulrich Drepper  <drepper@redhat.com>
12596         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Fix assertion and
12597         recognition of last entry.
12599 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
12601         * elf/dl-runtime.c: Include <sys/param.h>.
12603         * elf/Makefile (headers): Add bits/link.h.
12605 2005-01-09  Andreas Schwab  <schwab@suse.de>
12607         * elf/rtld.c (dl_main): Create main_map with __RTLD_OPENEXEC.
12609 2005-01-09  Andreas Jaeger  <aj@suse.de>
12611         [BZ #732]
12612         * time/strptime_l.c (__strptime_internal): Add braces to avoid
12613         warning.
12615         * sysdeps/x86_64/bits/link.h: Use vector_size for GCC 4.0.
12617         * elf/rtld.c (dl_main): Call _dl_add_to_slotinfo only if USE_TLS.
12619 2005-01-08  Jakub Jelinek  <jakub@redhat.com>
12621         * elf/Makefile (generated): Add tst-pie1{,.out,.o}.
12623 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
12625         * elf/dl-fini.c (_dl_fini): Call destructors of audit DSOs after
12626         those of all the regular objects.
12628         * elf/dl-debug.c (_dl_debug_initialize): Take extra parameter and
12629         use it to select the r_debug structure for that namespace.
12630         * elf/dl-close.c (_dl_close): Adjust call to _dl_debug_initialize.
12631         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
12632         * elf/dl-open.c (_dl_open): Likewise.
12633         * elf/rtld.c (dl_main): Likewise.
12634         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Add _ns_debug
12635         member.
12636         (_dl_debug_initialize): Add new parameter in declaration.
12638         * elf/dl-close.c (_dl_close): Make sure auditing callbacks are not
12639         called for the auditing objects themselves.
12640         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
12642 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
12644         * sysdeps/powerpc/powerpc64/dl-machine.h
12645         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
12646         GLRO(dl_profile) != NULL.
12647         * sysdeps/powerpc/powerpc64/bits/link.h (struct la_ppc64_regs): Add
12648         padding.
12649         * sysdeps/powerpc/powerpc64/dl-trampoline.S: (_dl_profile_resolve):
12650         Extend _dl_prof_resolve to add pass extra parameters to
12651         _dl_profile_fixup and set up structure with register content.
12653         * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_runtime_setup):
12654         If profile != 0 does not anymore mean GLRO(dl_profile) != NULL.
12655         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_prof_resolve):
12656         Extend _dl_prof_resolve to add pass extra parameters to
12657         _dl_profile_fixup and set up structure with register content.
12658         * sysdeps/powerpc/powerpc32/bits/link.h: Fix types of some fields in
12659         the register and result structures.
12660         * sysdeps/powerpc/powerpc64/bits/link.h: Fix types of some fields
12661         in the 32-bit register and result structures.
12663         * sysdeps/powerpc/powerpc64/dl-trampoline.S: Use register names.
12665         * sysdeps/powerpc/powerpc32/dl-trampoline.S: New file.
12666         * sysdeps/powerpc/powerpc32/dl-machine.h: Remove trampoline code here.
12667         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
12668         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc32 variants.
12669         * elf/tst-auditmod1.c: Add ppc32 support.
12670         * sysdeps/powerpc/powerpc32/bits/link.h: New file.
12671         * sysdeps/powerpc/powerpc64/bits/link.h: Add ppc32 definitions.
12673         * malloc/malloc.c (malloc_printerr): Print program name as part of
12674         error message.
12676         * misc/sys/cdefs.h (__attribute_warn_unused_result__): Define.
12677         * stdlib/stdlib.h: Make realloc with
12678         __attribute_warn_unused_result__ instead of __wur.
12679         * malloc/malloc.h: Add __wur and __attribute_warn_unused_result__
12680         markers as in <stdlib.h>.
12682         * libio/stdio.h: Remove __wur from rename and remove.
12683         * posix/unistd.h: Remove __wur from dup2.
12685 2005-01-03  Andreas Jaeger  <aj@suse.de>
12687         * elf/Makefile (tests): Revert patch from 2005-01-03.
12689 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
12691         * sysdeps/unix/sysv/linux/init-first.c (__libc_init_first): Don't
12692         make __libc_init_first hidden.
12694         * elf/rtld.c [!DONT_USE_BOOTSTRAP_MAP] (_dl_start_final): Initialize
12695         l_relocated of rtld map.
12696         * sysdeps/powerpc/powerpc64/dl-trampoline.S: New file.
12697         * sysdeps/powerpc/powerpc64/dl-machine.h: Remove trampoline code here.
12698         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
12699         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc64 variants.
12700         * elf/tst-auditmod1.c: Add ppc64 support.
12701         * sysdeps/powerpc/powerpc64/bits/link.h: New file.
12703 2005-01-06  Roland McGrath  <roland@redhat.com>
12705         [BZ #633]
12706         * sysdeps/unix/sysv/linux/futimes.c (__futimes): Catch errno values
12707         indicating file-name lookup errors, and return ENOSYS or EBADF instead.
12709 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
12711         * csu/elf-init.c (__libc_csu_fini): Don't do anything here.
12712         * sysdeps/generic/libc-start.c: Don't register program destructor here.
12714         * dlfcn/Makefile: Add rules to build dlfcn.c.
12715         (LDFLAGS-dl.so): Removed.
12716         * dlfcn/dlclose.c: _dl_close is now in ld.so, use function pointer
12717         table.
12718         * dlfcn/dlmopen.c: Likewise for _dl_open.
12719         * dlfcn/dlopen.c: Likewise.
12720         * dlfcn/dlopenold.c: Likewise.
12721         * elf/dl-libc.c: Likewise for _dl_open and _dl_close.
12722         * elf/Makefile (routines): Remove dl-open and dl-close.
12723         (dl-routines): Add dl-open, dl-close, and dl-trampoline.
12724         Add rules to build and run tst-audit1.
12725         * elf/tst-audit1.c: New file.
12726         * elf/tst-auditmod1.c: New file.
12727         * elf/Versions [libc]: Remove _dl_open and _dl_close.
12728         * elf/dl-close.c: Change for use inside ld.so instead of libc.so.
12729         * elf/dl-open.c: Likewise.
12730         * elf/dl-debug.c (_dl_debug_initialize): Allow reinitialization,
12731         signaled by nonzero parameter.
12732         * elf/dl-init.c: Fix use of r_state.
12733         * elf/dl-load.c: Likewise.
12735         * elf/dl-close.c: Add auditing checkpoints.
12736         * elf/dl-open.c: Likewise.
12737         * elf/dl-fini.c: Likewise.
12738         * elf/dl-load.c: Likewise.
12739         * elf/dl-sym.c: Likewise.
12740         * sysdeps/generic/libc-start.c: Likewise.
12741         * elf/dl-object.c: Allocate memory for auditing information.
12742         * elf/dl-reloc.c: Remove RESOLV.  We now always need the map.
12743         Correctly initialize slotinfo.
12744         * elf/dynamic-link.h: Adjust after removal of RESOLV.
12745         * sysdeps/hppa/dl-lookupcfg.h: Likewise.
12746         * sysdeps/ia64/dl-lookupcfg.h: Likewise.
12747         * sysdeps/powerpc/powerpc64/dl-lookupcfg.h: Removed.
12748         * elf/dl-runtime.c (_dl_fixup): Little cleanup.
12749         (_dl_profile_fixup): New parameters to point to register struct and
12750         variable for frame size.
12751         Add auditing checkpoints.
12752         (_dl_call_pltexit): New function.
12753         Don't define trampoline code here.
12754         * elf/rtld.c: Recognize LD_AUDIT.  Load modules on startup.
12755         Remove all the functions from _rtld_global_ro which only _dl_open
12756         and _dl_close needed.
12757         Add auditing checkpoints.
12758         * elf/link.h: Define symbols for auditing interfaces.
12759         * include/link.h: Likewise.
12760         * include/dlfcn.h: Define __RTLD_AUDIT.
12761         Remove prototypes for _dl_open and _dl_close.
12762         Adjust access to argc and argv in libdl.
12763         * dlfcn/dlfcn.c: New file.
12764         * sysdeps/generic/dl-lookupcfg.h: Remove all content now that RESOLVE
12765         is gone.
12766         * sysdeps/generic/ldsodefs.h: Add definitions for auditing interfaces.
12767         * sysdeps/generic/unsecvars.h: Add LD_AUDIT.
12768         * sysdeps/i386/dl-machine.h: Remove trampoline code here.
12769         Adjust for removal of RESOLVE.
12770         * sysdeps/x86_64/dl-machine.h: Likewise.
12771         * sysdeps/generic/dl-trampoline.c: New file.
12772         * sysdeps/i386/dl-trampoline.c: New file.
12773         * sysdeps/x86_64/dl-trampoline.c: New file.
12775         * sysdeps/generic/dl-tls.c: Cleanups.  Fixup for dtv_t change.
12776         Fix updating of DTV.
12777         * sysdeps/generic/libc-tls.c: Likewise.
12779         * sysdeps/arm/bits/link.h: Renamed to ...
12780         * sysdeps/arm/bits/linkmap.h: ...this.
12781         * sysdeps/generic/bits/link.h: Renamed to...
12782         * sysdeps/generic/bits/linkmap.h: ...this.
12783         * sysdeps/hppa/bits/link.h: Renamed to...
12784         * sysdeps/hppa/bits/linkmap.h: ...this.
12785         * sysdeps/i386/bits/link.h: Renamed to...
12786         * sysdeps/i386/bits/linkmap.h: ...this.
12787         * sysdeps/ia64/bits/link.h: Renamed to...
12788         * sysdeps/ia64/bits/linkmap.h: ...this.
12789         * sysdeps/s390/bits/link.h: Renamed to...
12790         * sysdeps/s390/bits/linkmap.h: ...this.
12791         * sysdeps/sh/bits/link.h: Renamed to...
12792         * sysdeps/sh/bits/linkmap.h: ...this.
12793         * sysdeps/x86_64/bits/link.h: Renamed to...
12794         * sysdeps/x86_64/bits/linkmap.h: ...this.
12796         * posix/unistd.h: Declare ftruncate for POSIX 2003.  [BZ #640]
12798 2004-12-22  Steven Munroe  <sjmunroe@us.ibm.com>
12800         [BZ #602]
12801         * math/libm-test.inc (rint_test_tonearest): New test.
12802         (rint_test_towardzero): New test.
12803         (rint_test_downward): New test.
12804         (rint_test_upward): New test.
12805         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Fix -0.0 case.
12806         Remove redundant const values.
12807         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Fix -0.0 case.
12808         Remove redundant const values.  Use float const.
12809         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Fix -0.0 case.
12810         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Fix -0.0 case.
12811         Use float const.
12812         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Fix -0.0 case.
12813         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Fix -0.0 case.
12814         Use float const.
12815         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Fix -0.0 case.
12816         Remove redundant const values.
12817         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Fix -0.0 case.
12818         Remove redundant const values.  Use float const.
12819         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Fix -0.0 case.
12820         Remove redundant const values.
12821         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Fix -0.0 case.
12822         Remove redundant const values.  Use float const.
12823         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Use EALIGN for Quadword
12824         alignment.  Fix -0.0 case.  Remove redundant const values.
12825         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Use EALIGN for Quadword
12826         alignment.  Fix -0.0 case.  Remove redundant const values.
12827         Use float const.
12828         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Use EALIGN for Quadword
12829         alignment.  Fix -0.0 case.
12830         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Use EALIGN for Quadword
12831         alignment.  Fix -0.0 case.  Use float const.
12832         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Use EALIGN for Quadword
12833         alignment.  Fix -0.0 case.
12834         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Use EALIGN for Quadword
12835         alignment.  Fix -0.0 case.  Use float const.
12836         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Use EALIGN for Quadword
12837         alignment.  Fix -0.0 case.  Remove redundant const values.
12838         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Use EALIGN for Quadword
12839         alignment.  Fix -0.0 case.  Remove redundant const values.
12840         Use float const.
12841         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Use EALIGN for Quadword
12842         alignment.  Fix -0.0 case.
12843         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Use EALIGN for Quadword
12844         alignment.  Fix -0.0 case.  Remove redundant const values.
12845         Use float const.
12847 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
12849         * misc/sys/cdefs.h: Define __wur.
12850         * libio/stdio.h: Use __wur for a number of interfaces.
12851         * posix/unistd.h: Likewise.
12852         * stdlib/stdlib.h: Likewise.
12854 2004-12-29  Jakub Jelinek  <jakub@redhat.com>
12856         [BZ #592]
12857         * sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Use
12858         libc_hidden_proto instead of HIDDEN_PROTO.
12859         * sysdeps/ia64/fpu/libm-symbols.h (HIDDEN_PROTO): Remove.
12860         (__libm_error_support): If ASSEMBLER and in libc, define to
12861         HIDDEN_JUMPTARGET(__libm_error_support).
12863 2004-12-28  David Mosberger  <davidm@hpl.hp.com>
12865         [BZ #592]
12866         * sysdeps/ia64/fpu/Makefile (duplicated-routines): New macro.
12867         (sysdep_routines): Replace libm_ldexp{,f,l} and libm_scalbn{,f,l}
12868         with $(duplicated-routines).
12869         (libm-sysdep_routines): Likewise, but substitute "s_" prefix for
12870         "m_" prefix.
12872 2004-12-27  David Mosberger  <davidm@hpl.hp.com>
12874         [BZ #592]
12875         * sysdeps/ia64/fpu/libm-symbols.h: Add include of <sysdep.h> and
12876         undefine "ret" macro.  Add __libm_error_support hidden definitions.
12878         [BZ #592]
12879         * sysdeps/ia64/fpu/e_lgamma_r.c: Remove CVS-id comment.  Add
12880         missing portion of copyright statement.
12881         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
12882         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
12884         [BZ #592]
12885         * sysdeps/ia64/fpu/w_lgamma.c: Remove CVS-id comment.  Add
12886         missing portion of copyright statement.
12887         (__ieee754_lgamma): Rename from lgamma().  Make lgamma() a weak alias.
12888         (__ieee754_gamma): Likewise.
12889         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
12890         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
12892 2004-12-09  H.J. Lu <hjl@lucon.org>
12894         [BZ #592]
12895         * sysdeps/ia64/fpu/s_nextafterl.c: Remove.
12896         * sysdeps/ia64/fpu/s_nexttoward.c: Likewise.
12897         * sysdeps/ia64/fpu/s_nexttowardf.c: Likewise.
12898         * sysdeps/ia64/fpu/e_atan2l.S: Remove (duplicate of e_atan2l.c).
12899         * sysdeps/ia64/fpu/e_expl.S: Likewise.
12900         * sysdeps/ia64/fpu/e_logl.c: Remove (conflicts with e_logl.S).
12902 2004-11-18  David Mosberger  <davidm@hpl.hp.com>
12904         [BZ #592]
12905         * sysdeps/ia64/fpu/README: New file.
12906         * sysdeps/ia64/fpu/gen_import_file_list: New file.
12907         * sysdeps/ia64/fpu/import_check: Likewise.
12908         * sysdeps/ia64/fpu/import_diffs: Likewise.
12909         * sysdeps/ia64/fpu/import_file.awk: Likewise.
12910         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
12911         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
12913         [BZ #592]
12914         * sysdeps/ia64/fpu/e_acos.S: Update from Intel libm v2.1+.
12915         * sysdeps/ia64/fpu/e_acosf.S: Likewise.
12916         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
12917         * sysdeps/ia64/fpu/e_asin.S: Likewise.
12918         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
12919         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
12920         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
12921         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
12922         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
12923         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
12924         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
12925         * sysdeps/ia64/fpu/e_exp.S: Likewise.
12926         * sysdeps/ia64/fpu/e_expf.S: Likewise.
12927         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
12928         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
12929         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
12930         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
12931         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
12932         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
12933         * sysdeps/ia64/fpu/e_log.S: Likewise.
12934         * sysdeps/ia64/fpu/e_log2.S: Likewise.
12935         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
12936         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
12937         * sysdeps/ia64/fpu/e_logf.S: Likewise.
12938         * sysdeps/ia64/fpu/e_pow.S: Likewise.
12939         * sysdeps/ia64/fpu/e_powf.S: Likewise.
12940         * sysdeps/ia64/fpu/e_powl.S: Likewise.
12941         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
12942         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
12943         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
12944         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
12945         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
12946         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
12947         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
12948         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
12949         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
12950         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
12951         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
12952         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
12953         * sysdeps/ia64/fpu/libm_error.c: Likewise.
12954         * sysdeps/ia64/fpu/libm_reduce.c: Likewise.
12955         * sysdeps/ia64/fpu/libm_support.h: Likewise.
12956         * sysdeps/ia64/fpu/s_atan.S: Likewise.
12957         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
12958         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
12959         * sysdeps/ia64/fpu/s_cbrt.S: Likewise.
12960         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
12961         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
12962         * sysdeps/ia64/fpu/s_ceil.S: Likewise.
12963         * sysdeps/ia64/fpu/s_ceilf.S: Likewise.
12964         * sysdeps/ia64/fpu/s_ceill.S: Likewise.
12965         * sysdeps/ia64/fpu/s_cos.S: Likewise.
12966         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
12967         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
12968         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
12969         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
12970         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
12971         * sysdeps/ia64/fpu/s_fabs.S: Likewise.
12972         * sysdeps/ia64/fpu/s_fabsf.S: Likewise.
12973         * sysdeps/ia64/fpu/s_fabsl.S: Likewise.
12974         * sysdeps/ia64/fpu/s_floor.S: Likewise.
12975         * sysdeps/ia64/fpu/s_floorf.S: Likewise.
12976         * sysdeps/ia64/fpu/s_floorl.S: Likewise.
12977         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
12978         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
12979         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
12980         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
12981         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
12982         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
12983         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
12984         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
12985         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
12986         * sysdeps/ia64/fpu/s_logb.S: Likewise.
12987         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
12988         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
12989         * sysdeps/ia64/fpu/s_modf.S: Likewise.
12990         * sysdeps/ia64/fpu/s_modff.S: Likewise.
12991         * sysdeps/ia64/fpu/s_modfl.S: Likewise.
12992         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
12993         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
12994         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
12995         * sysdeps/ia64/fpu/s_rint.S: Likewise.
12996         * sysdeps/ia64/fpu/s_rintf.S: Likewise.
12997         * sysdeps/ia64/fpu/s_rintl.S: Likewise.
12998         * sysdeps/ia64/fpu/s_round.S: Likewise.
12999         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
13000         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
13001         * sysdeps/ia64/fpu/s_significand.S: Likewise.
13002         * sysdeps/ia64/fpu/s_significandf.S: Likewise.
13003         * sysdeps/ia64/fpu/s_significandl.S: Likewise.
13004         * sysdeps/ia64/fpu/s_tan.S: Likewise.
13005         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
13006         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
13007         * sysdeps/ia64/fpu/s_trunc.S: Likewise.
13008         * sysdeps/ia64/fpu/s_truncf.S: Likewise.
13009         * sysdeps/ia64/fpu/s_truncl.S: Likewise.
13011         [BZ #592]
13012         * sysdeps/ia64/fpu/e_acosh.S: New file from Intel libm v2.1+.
13013         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
13014         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
13015         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
13016         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
13017         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
13018         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
13019         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
13020         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
13021         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
13022         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
13023         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
13024         * sysdeps/ia64/fpu/e_lgamma_r.S: Likewise.
13025         * sysdeps/ia64/fpu/e_lgammaf_r.S: Likewise.
13026         * sysdeps/ia64/fpu/e_lgammal_r.S: Likewise.
13027         * sysdeps/ia64/fpu/e_logl.S: Likewise.
13028         * sysdeps/ia64/fpu/libm_frexp.S: Likewise.
13029         * sysdeps/ia64/fpu/libm_frexpf.S: Likewise.
13030         * sysdeps/ia64/fpu/libm_frexpl.S: Likewise.
13031         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
13032         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
13033         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
13034         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
13035         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
13036         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
13037         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
13038         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
13039         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
13040         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
13041         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
13042         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
13043         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
13044         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
13045         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
13046         * sysdeps/ia64/fpu/s_asinhf.S: Likewise.
13047         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
13048         * sysdeps/ia64/fpu/s_erf.S: Likewise.
13049         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
13050         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
13051         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
13052         * sysdeps/ia64/fpu/s_erff.S: Likewise.
13053         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
13054         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
13055         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
13056         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
13057         * sysdeps/ia64/fpu/s_fma.S: Likewise.
13058         * sysdeps/ia64/fpu/s_fmaf.S: Likewise.
13059         * sysdeps/ia64/fpu/s_fmal.S: Likewise.
13060         * sysdeps/ia64/fpu/s_fmax.S: Likewise.
13061         * sysdeps/ia64/fpu/s_fmaxf.S: Likewise.
13062         * sysdeps/ia64/fpu/s_fmaxl.S: Likewise.
13063         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
13064         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
13065         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
13066         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
13067         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
13068         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
13069         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
13070         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
13071         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
13072         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
13073         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
13074         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
13075         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
13076         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
13077         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
13078         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
13079         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
13080         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
13081         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
13083         [BZ #592]
13084         * sysdeps/ia64/fpu/e_gamma_r.c: New empty dummy-file.
13085         * sysdeps/ia64/fpu/e_gammaf_r.c: Likewise.
13086         * sysdeps/ia64/fpu/e_gammal_r.c: Likewise.
13087         * sysdeps/ia64/fpu/w_acosh.c: Likewise.
13088         * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
13089         * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
13090         * sysdeps/ia64/fpu/w_atanh.c: Likewise.
13091         * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
13092         * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
13093         * sysdeps/ia64/fpu/w_exp10.c: Likewise.
13094         * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
13095         * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
13096         * sysdeps/ia64/fpu/w_exp2.c: Likewise.
13097         * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
13098         * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
13099         * sysdeps/ia64/fpu/w_expl.c: Likewise.
13100         * sysdeps/ia64/fpu/e_expl.S: Likewise.
13101         * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
13102         * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
13103         * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
13104         * sysdeps/ia64/fpu/w_log2.c: Likewise.
13105         * sysdeps/ia64/fpu/w_log2f.c: Likewise.
13106         * sysdeps/ia64/fpu/w_log2l.c: Likewise.
13107         * sysdeps/ia64/fpu/w_sinh.c: Likewise.
13108         * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
13109         * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
13111         [BZ #592]
13112         * sysdeps/ia64/fpu/libm_atan2_reg.S: Remove.
13113         * sysdeps/ia64/fpu/s_ldexp.S: Likewise.
13114         * sysdeps/ia64/fpu/s_ldexpf.S: Likewise.
13115         * sysdeps/ia64/fpu/s_ldexpl.S: Likewise.
13116         * sysdeps/ia64/fpu/s_scalbn.S: Likewise.
13117         * sysdeps/ia64/fpu/s_scalbnf.S: Likewise.
13118         * sysdeps/ia64/fpu/s_scalbnl.S: Likewise.
13120         [BZ #592]
13121         * sysdeps/ia64/fpu/s_sincos.c: Make it an empty dummy-file.
13122         * sysdeps/ia64/fpu/s_sincosf.c: Likewise.
13123         * sysdeps/ia64/fpu/s_sincosl.c: Likewise.
13125         [BZ #592]
13126         * sysdeps/ia64/fpu/e_atan2l.S: Add "Not needed" comment.
13128         [BZ #592]
13129         * sysdeps/ia64/fpu/s_copysign.S: Add __libm_copysign{,f,l}
13130         alias for use by libm_error.c
13132         [BZ #592]
13133         * sysdeps/ia64/fpu/Makefile (libm-sysdep_routines): Remove
13134         libm_atan2_reg, libm_tan, libm_frexp4{f,l}.
13135         Mention s_erfc{,f,l}, libm_frexp{,f,l}, libm_ldexp{,f,l},
13136         libm_sincos{,f,l}, libm_sincos_large, libm_lgamma{,f,l},
13137         libm_scalbn{,f,l}, libm_scalblnf.
13138         (sysdep_routines): Remove libm_frexp4{,f,l}.
13139         Mention libm_frexp{,f,l}, libm_ldexp{,f,l}, and libm_scalbn{,f,l}.
13140         (sysdep-CPPFLAGS): Add -include libm-symbols.h, -D__POSIX__,
13141         _D_LIB_VERSIONIMF=_LIB_VERSION, -DSIZE_LONG_INT_64, and
13142         -DSIZE_LONG_LONG_INT_64.
13144 2005-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
13146         [BZ #729]
13147         * elf/rtld.c (dl_main) [NEED_DL_SYSINFO_DSO]: Insure l_map_end and
13148         l_text_end are set for a VDSO with a single PT_LOAD entry.
13150 2005-01-05  Ulrich Drepper  <drepper@redhat.com>
13152         [BZ #730]
13153         * libio/iofopncook.c (_IO_cookie_seekoff): Define.  Mark offset as
13154         invalid to disable optimizations in fileops which won't work here.
13155         (_IO_cookie_jumps): Use it.
13156         (_IO_old_cookie_jumps): Likewise.
13157         * libio/fmemopen.c (fmemopen_seek): Result must be returned in *P,
13158         not the return value.
13159         * stdio-common/Makefile (tests): Add tst-fmemopen2.
13160         * stdio-common/tst-fmemopen2.c: New file.
13162         * sysdeps/unix/sysv/linux/bits/waitflags.h: Define __WNOTHREAD.
13164 2005-01-05  Roland McGrath  <roland@redhat.com>
13166         * configure.in (libc_cv_cpp_asm_debuginfo): Checked moved ...
13167         * sysdeps/i386/configure.in: ... here.  New file.
13169 2005-01-03  Ulrich Drepper  <drepper@redhat.com>
13171         [BZ #727]
13172         * sysdeps/generic/libc-start.c [SHARED] (__libc_start_main): Don't
13173         initialize __environ again.
13174         * stdlib/Makefile: Add rules to build and run tst-putenv.
13175         * stdlib/tst-putenv.c: New file.
13176         * stdlib/tst-putenvmod.c: New file.
13178         * sysdeps/unix/sysv/linux/init-first.c: Clean file up.  Don't
13179         define unnecessary wrappers or aliases of static functions.
13181 2005-01-03  Andreas Jaeger  <aj@suse.de>
13183         * csu/Makefile (generated): Add start.os and start.ob.
13185         * elf/Makefile (tests): Change rule for tst-pie1 so that make
13186         clean works.
13188 2004-12-29  Roland McGrath  <roland@redhat.com>
13190         [BZ #626]
13191         * sysdeps/unix/alarm.c (alarm): Round return value to nearest rather
13192         than always up; when nearest is zero, round up to one.
13194 2004-12-28  Ulrich Drepper  <drepper@redhat.com>
13196         * po/es.po: Update from translation team.
13198         [BZ #726]
13199         * sysdeps/generic/dl-tls.c (__tls_get_addr): Fix typo.
13201 2004-12-27  Ulrich Drepper  <drepper@redhat.com>
13203         [BZ #744]
13204         * include/signal.h: Define __sigemptyset.
13206 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
13208         * posix/regex_internal.h (struct re_dfastate_t): Make
13209         word_trtable a pointer to the 512-item transition table.
13210         * posix/regexec.c (build_trtable): Fill in either state->trtable
13211         or state->word_trtable.  Return a boolean indicating success.
13212         (transit_state): Expect state->trtable to be a 256-item
13213         transition table.  Reorganize code to have less tests in
13214         the common case, and to save an indentation level.
13215         * posix/regex_internal.c (free_state): Free word_trtable.
13217 2004-12-21  Jakub Jelinek  <jakub@redhat.com>
13219         [BZ #723]
13220         * sysdeps/unix/sysv/linux/i386/clone.S (__clone): Make sure %esp when
13221         calling fn is 16 byte aligned.
13222         * sysdeps/i386/tst-stack-align.h: New file.
13224         [BZ #725]
13225         * misc/efgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
13226         (ecvt_r): Special case denormals.
13227         * misc/qefgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
13228         * misc/tst-efgcvt.c: Include float.h.
13229         (ecvt_tests): Add 2 new tests.
13231 2004-12-20  Roland McGrath  <roland@frob.com>
13233         * version.h (RELEASE, VERSION): development, 2.3.90
13234         * include/features.h (__GLIBC_MINOR__): Now 4.
13237 See ChangeLog.15 for earlier changes.