2005-12-05 Roland McGrath <roland@redhat.com>
[glibc.git] / ChangeLog
blob654d032f08e0e206dc134c377958abb3bcb8d63d
1 2005-12-03  Ulrich Drepper  <drepper@redhat.com>
3         * nis/nis_table.c (nis_list): Optimize freeing and reallocation of
4         result record.
6         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyaddr_r):
7         Better sized buffers.  Correct error case handling.
8         * nis/nis_error.c (nis_sperror_r): Let snprintf determine whether
9         there is an overflow.
10         * nis/nss_nisplus/nisplus-service.c: Fix locking to use
11         _nss_create_tablename.  Avoid unnecessary copying, remove
12         unnecessary variables, general cleanup.
13         * nis/nss_nisplus/nisplus-rpc.c: Likewise.
14         * nis/nss_nisplus/nisplus-proto.c: Likewise..
15         * nis/nss_nisplus/nisplus-network.c: Fix locking to use
16         _nss_create_tablename.  Avoid unnecessary copying, general cleanup.
17         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_getipnodebyname_r):
18         Removed.
19         Fix locking to use _nss_create_tablename.  Avoid unnecessary copying,
20         general cleanup.
21         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_getntohost_r):
22         Correctly construct request.
23         Fix locking to use _nss_create_tablename.  Avoid unnecessary copying,
24         general cleanup.
25         * nis/nss_nisplus/nisplus-alias.c: Fix locking to use
26         _nss_create_tablename.  Avoid unnecessary copying, general cleanup.
27         * nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_setnetgrent):
28         Rewrite to use snprintf.
29         * nis/nss_nisplus/nisplus-publickey.c (_nss_nisplus_netname2user):
30         Likewise.
32 2005-12-02  Ulrich Drepper  <drepper@redhat.com>
34         * nis/nss_nisplus/nisplus-pwd.c (_nss_pwd_create_tablename):
35         Renamed from _nss_create_tablename.  Export from file (but not DSO).
36         (pwd_tablename_val): Renamed from tablename_val, mark hidden.
37         (pwd_tablename_len): Renamed from tablename_len, mark hidden.
38         Change all users.
39         * nis/nss_nisplus/nisplus-spwd.c (_nss_create_tablename): Removed.
40         Use _nss_pwd_create_tablename now.  Use pwd_tablename_val and
41         pwd_tablename_len.  Remove unnecessary variables, general cleanup.
43         * nis/nss_nisplus/nisplus-pwd.c: Fix locking to use
44         _nss_create_tablename.  Avoid unnecessary copying, remove
45         unnecessary variables, general cleanup.
46         * nis/nss_nisplus/nisplus-grp.c: Likewise.
48         * io/Makefile (routines): Add mknodat, xmknodat, mkdirat, mkfifoat.
49         (static-only-routines): Add mknodat.
50         * io/Versions [GLIBC_2.4]: Add mkdirat, mkfifoat, __xmknodat.
51         * io/sys/stat.h: Declare mkditat, mknodat, mkfifoat, __xmknodat.
52         Define mknodat inline function.
53         * include/sys/stat.h: Add hidden proto for __xmknodat.
54         * sysdeps/generic/mkdirat.c: New file.
55         * sysdeps/generic/mkfifoat.c: New file.
56         * sysdeps/generic/mknodat.c: New file.
57         * sysdeps/generic/xmknodat.c: New file.
58         * sysdeps/unix/mkfifoat.c: New file.
59         * sysdeps/unix/sysv/linux/mkdirat.c: New file.
60         * sysdeps/unix/sysv/linux/xmknodat.c: New file.
62         * sysdeps/generic/xmknod.c: Add one more parameter check.
64 2005-11-28  Andreas Jaeger  <aj@suse.de>
66         * sysdeps/unix/sysv/linux/mips/bits/mman.h (MREMAP_FIXED): Added,
67         Patch by RenĂ© Rebe <rene@exactcode.de>.
69 2005-11-27  Ulrich Drepper  <drepper@redhat.com>
71         * sysdeps/posix/getaddrinfo.c: Avoid RFC 3484 sorting if there are
72         multiple return records but only one address.
74         * sysdeps/posix/getaddrinfo.c (gaih_inet): Avoid some code duplication.
76 2005-11-27  Roland McGrath  <roland@redhat.com>
78         * sysdeps/unix/sysv/linux/fchownat.c: Include alloca.h, sysdep.h.
79         Reported by RenĂ© Rebe <rene@exactcode.de>.
81 2005-11-27  Ulrich Drepper  <drepper@redhat.com>
83         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Don't cache
84         euid and egid.
86         * nis/nis_table.c (nis_list): Add more free calls in error cases.
88 2005-11-26  Richard Henderson  <rth@redhat.com>
90         * sysdeps/alpha/strncmp.S: Don't read too much data when pointers
91         are co-aligned, and count is aligned with the end of the word.
93 2005-11-26  Ulrich Drepper  <drepper@redhat.com>
95         * nis/nis_lookup.c (nis_lookup): Mark RPCTIMEOUT as const.  Pretty
96         printing.
98         * nis/nis_table.c (__create_ib_request): Use strdupa instead of
99         variable size array.
100         (RPCTIMEOUT): Mark as const.
102         * nis/ypclnt.c (yp_bind_ypbindprog): Initialize clnt_saddr by hand.
103         (ypdomainname): Renamed from __ypdomainname.  No need for initializer.
104         (ypbindlist): Renamed from __ypbindlist.
105         (do_ypcall): Check memory allocation suceeded before calling
106         yp_bind_ypbindprog.
107         (yperr_string): Reduce size of function by using only one gettext call.
108         (ypbinderr_string): Likewise.
109         (yp_match): Free response in case memory for return value cannot be
110         allocated.
111         (yp_first): Likewise.
112         (yp_next): Likewise.
113         (do_ypcall_tr): New function which translates error codes as well.
114         (yp_match, yp_next, yp_master, yp_order, yp_maplist): Use it.
115         (yp_all): Correct test for invalid parameter.
116         Pretty printing.
117         (RPCTIMEOUT, UDPTIMEOUT): Mark as const.
119 2005-11-25  Richard Henderson  <rth@redhat.com>
121         * sysdeps/unix/sysv/linux/alpha/fxstatat.c (__fxstatat): Fix typo.
122         (__fxstatat64): Alias from __fxstatat; remove other cnp errors.
123         * sysdeps/unix/sysv/linux/alpha/sigaction.c: Include sys/cdefs.h
124         and stddef.h.
125         * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MREMAP_FIXED): Define.
127 2005-11-25  Ulrich Drepper  <drepper@redhat.com>
129         * Makeconfig (+cflags): Add -fmerge-all-constants by default.
131         [BZ #1912]
132         * nss/function.def: Add entry to use gethostbyname2 for files.
134 2005-11-25  Thorsten Kukuk  <kukuk@suse.de>
136         * sysdeps/unix/sysv/linux/fxstatat64.c: Include string.h.
138 2005-11-25  Ulrich Drepper  <drepper@redhat.com>
140         [BZ #1926]
141         * nss/nss_files/files-netgrp.c (_nss_files_endnetgrent): Change
142         return value type to match expected type.
144         [BZ #1925]
145         * nis/ypclnt.c (yp_order): Correct test for invalid parameter.
147 2005-11-24  Ulrich Drepper  <drepper@redhat.com>
149         * scripts/check-c++-types.sh: Improve comments.
151         * scripts/check-local-headers.sh: New file.
152         * Makefile (tests): Run check-local-headers.sh.
154 2005-11-23  Thorsten Kukuk  <kukuk@suse.de>
156         * include/sys/sendfile.h: New file.
158 2005-11-24  Andreas Schwab  <schwab@suse.de>
160         * time/sys/time.h: Remove nonnull attribute from futimesat.
162 2005-11-22  Ulrich Drepper  <drepper@redhat.com>
164         * nscd/connections.c (sendfileall): Define.
165         (handle_request): Use it instead of sendfile call.
166         * nscd/nscd-client.h: Declare sendfileall.
167         * nscd/aicache.c: Use sendfileall instead of sendfile.
168         * nscd/grpcache.c: Likewise.
169         * nscd/hstcache.c: Likewise.
170         * nscd/initgrcache.c: Likewise.
171         * nscd/pwdcache.c: Likewise.
173         [BZ #1908]
174         * manual/install.texi (Tools for Compilation): Require gawk.
176 2005-11-22  Jakub Jelinek  <jakub@redhat.com>
178         * sysdeps/generic/ldsodefs.h (struct rtld_global): Remove
179         unused is_static field from slotinfo array.
181 2005-11-21  Jakub Jelinek  <jakub@redhat.com>
183         * sunrpc/bindrsvprt.c (bindresvport): Wrap around to startport
184         in the loop if port is bigger than endport, initially set to
185         ENDPORT.  When changing startport, set endport and port
186         appropriately.
188 2005-11-21  Ulrich Drepper  <drepper@redhat.com>
190         * Makefile.in: Remove RCS ID line.
191         * config-name.in: Likewise.
192         * config.make.in: Likewise.
193         * malloc/arena.c: Likewise.
194         * malloc/hooks.c: Likewise.
195         * malloc/malloc.c: Likewise.
196         * manual/dir: Likewise.
197         * math/math_private.h: Likewise.
198         * resolv/gethnamaddr.c: Likewise.
199         * scripts/mkinstalldirs: Likewise.
200         * sunrpc/rpc_clntout.c: Likewise.
201         * sunrpc/rpc_cout.c: Likewise.
202         * sunrpc/rpc_hout.c: Likewise.
203         * sunrpc/rpc_main.c: Likewise.
204         * sunrpc/rpc_parse.c: Likewise.
205         * sunrpc/rpc_sample.c: Likewise.
206         * sunrpc/rpc_scan.c: Likewise.
207         * sunrpc/rpc_svcout.c: Likewise.
208         * sunrpc/rpc_tblout.c: Likewise.
209         * sunrpc/rpc_util.c: Likewise.
210         * sysdeps/unix/sysv/linux/sys/quote.h: Likewise.
212         * nscd/nscd_helper.c: Pretty printing.
214 2005-11-19  Roland McGrath  <roland@redhat.com>
216         * elf/elf.h: Revert last change.
218 2005-11-19  Jakub Jelinek  <jakub@redhat.com>
220         * sysdeps/unix/sysv/linux/ia64/bits/shm.h (shmatt_t): New type.
221         (struct shmid_ds): Use it for shm_nattch field.
223 2005-11-18  Jakub Jelinek  <jakub@redhat.com>
225         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): If FILE is NULL,
226         set access and modification times of the file referenced by FD.
227         * sysdeps/generic/futimesat.c (futimesat): Don't return EINVAL if
228         FILE is NULL.  Don't check FD if FILE is absolute path.
230 2005-11-19  Ulrich Drepper  <drepper@redhat.com>
232         * nscd/nscd_gethst_r.c (nscd_gethst_r): Avoid unnecesary read call
233         if there are no aliases.
235         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-connections.c,
236         CFLAGS-pwdcache.c, CFLAGS-grpcache.c, CFLAGS-hstcache.c,
237         CFLAGS-aicache.c, CFLAGS-initgrcache.c): Add -DHAVE_SENDFILE.
238         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_SENDFILE):
239         Define.
240         * nscd/pwdcache.c [HAVE_SENDFILE]: Include <sys/sendfile.h> and
241         <kernel-features.h>.
242         [HAVE_SENDFILE] (cache_addpw): Use sendfile to transmit positive
243         result.
244         * nscd/grpcache.c: Likewise.
245         * nscd/hstcache.c: Likewise.
246         * nscd/aicache.c: Likewise.
247         * nscd/initgrcache.c: Likewise.
248         * nscd/connectionc.c: Likewise.
250 2005-11-18  Andreas Schwab  <schwab@suse.de>
252         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Remove useless alias.
254         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S: Handle
255         NO_WEAK_ALIAS.
256         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S: Likewise.
258 2005-11-18  Paul Brook  <paul@codesourcery.com>
260         * sysdeps/unix/sysv/linux/m68k/bits/mman.h (MREMAP_FIXED): New macro.
262         * nscd/grpcache.c: Include <sys/socket.h>.
263         * nscd/nscd_stat.c: Likewise.
264         * nscd/pwdcache.c: Likewise.
265         * sysdeps/unix/sysv/linux/unlinkat.c: Include <stdlib.h>, <sysdep.h>.
267 2005-11-17  Ulrich Drepper  <drepper@redhat.com>
269         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Define SHM_NORESERVE.
270         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
271         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
272         * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Likewise.
273         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
274         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
275         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
276         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
278 2005-11-17  Steven Munroe  <sjmunroe@us.ibm.com>
280         [BZ #1877]
281         * string/test-strncmp.c (do_test_limit): Handle zero length and
282         non-zero align values.
283         (test_main): Correct do_test_limit tests for 64-bit.
285 2005-11-15  Steven Munroe  <sjmunroe@us.ibm.com>
287         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_HAS_SPE,
288         PPC_FEATURE_HAS_EFP_SINGLE, PPC_FEATURE_HAS_EFP_DOUBLE,
289         PPC_FEATURE_NO_TB, PPC_FEATURE_POWER4, PPC_FEATURE_POWER5,
290         PPC_FEATURE_POWER5_PLUS, PPC_FEATURE_CELL, PPC_FEATURE_970):
291         Define to match 2.6.15 kernel.
293         * sysdeps/powerpc/fpu/e_sqrt.c: Remove dl-procinfo.h include.
294         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
295         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
297 2005-11-17  Roland McGrath  <roland@redhat.com>
299         * elf/elf.h (R_PPC64_ADDR30): Renamed to R_PPC64_REL30.
301 2005-11-17  Jakub Jelinek  <jakub@redhat.com>
303         * io/sys/stat.h (fstatat): If __REDIRECT_NTH isn't defined,
304         define fstatat to fstatat64.
306 2005-11-17  Steven Munroe  <sjmunroe@us.ibm.com>
308         [BZ #1877]
309         * string/test-strncmp.c (do_test_limit): New function.
310         (do_test) Add cast to eliminate compiler warnings.
311         (do_random_tests) Add cast to eliminate compiler warnings.
312         (test_main) Add do_test_limit tests.
313         * sysdeps/powerpc/powerpc32/strncmp.S: Test length before unaligned
314         load.
315         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
317 2005-11-17  Ulrich Drepper  <drepper@redhat.com>
319         * include/resolv.h: Include <stdbool.h>.
320         Patch by Paul Brook.
322         * io/sys/stat.h: Use __const not const in fstatat prototypes.
324 2005-11-08  H.J. Lu  <hongjiu.lu@intel.com>
326         * sysdeps/wordsize-32/Makefile (CPPFLAGS-divdi3.c): Set to
327         -Din_divdi3_c.
328         * sysdeps/wordsize-32/symbol-hacks.h: Skip if in_divdi3_c is defined.
330 2005-11-16  Jakub Jelinek  <jakub@redhat.com>
332         * sysdeps/unix/sysv/linux/fchownat.c: Include string.h.
333         * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
334         * sysdeps/unix/sysv/linux/i386/fchownat.c: Likewise.
335         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Likewise.
336         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
337         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
338         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
339         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Likewise.
341 2005-11-16  Ulrich Drepper  <drepper@redhat.com>
343         * iconvdata/Makefile (modules): Add ISO_11548-1.
344         (distribute): Add iso_11548-1.c.
345         * iconvdata/gconv-modules: Add entries for ISO 11548-1.
346         * iconvdata/TESTS: Add entry for ISO 11548-1.
348         [BZ 1872]
349         * iconvdata/iso_11548-1.c: New file.
350         * iconvdata/testdata/ISO_11548-1: New file.
351         * iconvdata/testdata/ISO_11548-1..UTF8: New file.
352         Patch by Samuel Thibault <samuel.thibault@ens-lyon.org>.
354 2005-11-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
356         * sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.
358 2005-11-15  Ulrich Drepper  <drepper@redhat.com>
360         [BZ 1865]
361         * inet/netinet/icmp6.h: More updates for RFC3542.
362         * inet/netinet/ip6.h: Likewise.
363         * sysdeps/unix/sysv/linux/bits/in.h: Adjust for current kernel sources.
364         Patch by David L Stevens <dlstevens@us.ibm.com>.
366         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
367         Return -1 on failure.
368         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
369         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise..
370         * sysdeps/unix/sysv/linux/fxstatat64.c [__ASSUME_STAT64_SYSCALL]
371         (__fxstatat64): Handle errors.
373         * io/sys/poll.h: Add comment explaining poll is a cancellation  point.
375         * sysdeps/unix/sysv/linux/syscalls.list (epoll_wait): Align with
376         poll, make cancelable.
377         * sysdeps/unix/sysv/linux/sys/epoll.h: Add comment explaining
378         epoll_wait is a cancellation point.
380 2005-11-15  Jakub Jelinek  <jakub@redhat.com>
382         * io/sys/stat.h (fstatat): Don't use __THROW together with
383         __REDIRECT_NTH.
385 2005-11-14  Ulrich Drepper  <drepper@redhat.com>
387         * elf/dl-open.c [!SHARED]: Remove _dl_tls_static_size definition.
388         * sysdeps/generic/libc-tls.c: Initialize _dl_tls_static_size here.
390 2005-11-11  Ulrich Drepper  <drepper@redhat.com>
392         * io/Makefile (routines): Add fstatat, fstatat64, fxstatat, fxstatat64,
393         fchownat, and unlinkat.
394         (static-only-routines): Add fstatat and fstatat64.
395         (tests): Add tst-unlinkat, tst-fstatat, tst-futimesat, tst-renameat,
396         and tst-fchownat.
397         * io/Versions [GLIBC_2.4]: Add fchownat, __fxstatat, __fxstatat64,
398         and unlinkat.
399         * io/fcntl.h: Define AT_FDCWD, AT_SYMLINK_NOFOLLOW, and AT_REMOVEDIR.
400         * io/fstatat.c: New file.
401         * io/fstatat64.c: New file.
402         * io/sys/stat.h: Declare fstatat, fstatat64, __fxstatat, __fxstatat64
403         and define fstatat and fstatat64 inline functions.
404         * libio/stdio.h: Declare renameat.
405         * misc/Makefile (routines): Add futimesat.
406         * misc/Versions [GLIBC_2.4]: Add futimesat.
407         * posix/unistd.h: Declare fchownat and unlinkat.
408         * stdio-common/Makefile (routines): Add renameat.
409         * stdio-common/Versions [GLIBC_2.4]: Add renameat.
410         * sysdeps/generic/fchownat.c: New file.
411         * sysdeps/generic/futimesat.c: New file.
412         * sysdeps/generic/fxstatat.c: New file.
413         * sysdeps/generic/fxstatat64.c: New file.
414         * sysdeps/generic/renameat.c: New file.
415         * sysdeps/generic/unlinkat.c: New file.
416         * sysdeps/unix/sysv/linux/fchownat.c: New file.
417         * sysdeps/unix/sysv/linux/futimesat.c: New file.
418         * sysdeps/unix/sysv/linux/fxstatat.c: New file.
419         * sysdeps/unix/sysv/linux/fxstatat64.c: New file.
420         * sysdeps/unix/sysv/linux/renameat.c: New file.
421         * sysdeps/unix/sysv/linux/unlinkat.c: New file.
422         * sysdeps/unix/sysv/linux/alpha/fxstatat.c: New file.
423         * sysdeps/unix/sysv/linux/i386/fchownat.c: New file.
424         * sysdeps/unix/sysv/linux/i386/fxstatat.c: New file.
425         * sysdeps/unix/sysv/linux/m68k/fchownat.c: New file.
426         * sysdeps/unix/sysv/linux/m68k/fxstatat.c: New file.
427         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: New file.
428         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fxstatat.c: New file.
429         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: New file.
430         * sysdeps/unix/sysv/linux/s390/s390-32/fxstatat.c: New file.
431         * sysdeps/unix/sysv/linux/sh/fchownat.c: New file.
432         * sysdeps/unix/sysv/linux/sh/fxstatat.c: New file.
433         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: New file.
434         * sysdeps/unix/sysv/linux/sparc/sparc32/fxstatat.c: New file.
435         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstatat.c: New file.
436         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: New file.
437         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat64.c: New file.
438         * time/sys/time.h: Declare futimesat.
439         * include/fcntl.h: Declare __atfct_seterrno.
440         * sysdeps/unix/sysv/linux/openat.c (__atfct_seterrno): New function.
441         Split out from openat code and called.
442         (do_test): Allow openat to fail with ENOSYS.  Handle AT_FDCWD.
443         * sysdeps/generic/openat.c: Handle AT_FDCWD.
444         * sysdeps/generic/openat64.c: Likewise.
445         * io/tst-unlinkat.c: New file.
446         * io/tst-fstatat.c: New file.
447         * io/tst-futimesat.c: New file.
448         * io/tst-renameat.c: New file.
449         * io/tst-fchownat.c: New file.
450         * io/tst-openat.c: Don't fail if openat is not implemented.
452         * sysdeps/unix/sysv/linux/powerpc/chown.c: Don't provide backward
453         compatibility code if new kernel is guaranteed.
455         * time/sys/time.h: Add a few nonnull attributes.
457 2005-11-09  Ulrich Drepper  <drepper@redhat.com>
459         * io/fcntl.h: Declare openat and openat64.
460         * io/Makefile (routines): Add openat and openat64.
461         (tests): Add tst-openat.
462         * io/Versions: Add openat and openat64 for GLIBC_2.4.
463         * sysdeps/generic/openat.c: New file.
464         * sysdeps/generic/openat64.c: New file.
465         * sysdeps/unix/sysv/linux/openat.c: New file.
466         * sysdeps/unix/sysv/linux/openat64.c: New file.
467         * io/tst-openat.c: New file.
469         * sysdeps/generic/check_fds.c (check_one_fd): For writable
470         descriptors, use /dev/full.
471         (__libc_check_standard_fds): Reverse modes so that common operations on
472         the descriptors fail.
473         * sysdeps/unix/sysv/linux/device-nrs.h: Add info for /dev/full.
475 2005-11-07  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
477         * elf/elf.h (R_M32R_REL32): New macro.
479 2005-11-05  Marcus Brinkmann  <marcus@gnu.org>
481         * sysdeps/mach/hurd/bits/stat.h (S_IMMAP0): New macro.
482         (S_ISPARE): Unset the S_IMMAP0 flag.
484 2005-11-07  Roland McGrath  <roland@redhat.com>
486         * configure.in: Grok --with-cpu=CPU option.  If given, search for
487         sysdeps/.../machine/CPU subdirs, and give error if none are found.
488         * configure: Regenerated.
489         * config.make.in (with-cpu): New substituted variable.
490         * Makeconfig (+cflags): Add -mcpu=$(with-cpu) if set.
492         * malloc/malloc.c (munmap_chunk): Suppress warnings from last change.
494         * sysdeps/unix/bsd/sun: Directory and all subdirectories removed,
495         saved in ports repository.
496         * sysdeps/unix/sysv/linux/tcflush.c: Rewritten.
497         * sysdeps/unix/sysv/linux/tcflow.c: Rewritten.
499 2005-11-06  Ulrich Drepper  <drepper@redhat.com>
501         * malloc/malloc.c (munmap_chunk): Add sanity checks.
503         * sysdeps/pthread/configure: Fix comment.
505 2005-11-05  Ulrich Drepper  <drepper@redhat.com>
507         * configure.in: Remove gnu_as definition and everything using it.
508         * config.make.in: Remove gnu-as.
509         * config.h.in: Remove HAVE_GNU_AS.
511         * configure.in: Remove gnu_ld definition and everything using it.
512         * config.h.in: Remove HAVE_GNU_LD.
513         * config.make.in: Remove gnu-ld.
514         * csu/Makefile: Remove use of gnu-ld.
515         * csu/munch.awk: Removed.
516         * csu/munch-tmpl.c: Removed.
517         * include/libc-symbols.h: Remove use of HAVE_GNU_LD.
518         * posix/execl.c: Likewise.
519         * posix/execv.c: Likewise.
520         * stdio-common/psignal.c: Likewise.
521         * stdlib/exit.c: Likewise.
522         * string/strsignal.c: Likewise.
523         * string/tester.c: Likewise.
524         * sysdeps/generic/errlist.c: Likewise.
525         * sysdeps/generic/getenv.c: Likewise.
526         * sysdeps/generic/getgroups.c: Likewise.
527         * sysdeps/generic/init-posix.c: Likewise.
528         * sysdeps/posix/gettimeofday.c: Likewise.
529         * sysdeps/posix/system.c: Likewise.
530         * sysdeps/unix/bsd/init-posix.c: Likewise.
531         * sysdeps/unix/bsd/ulimit.c: Likewise.
532         * sysdeps/unix/bsd/sun/m68k/brk.S: Likewise.
533         * sysdeps/unix/bsd/sun/m68k/sethostid.S: Likewise.
534         * sysdeps/unix/bsd/sun/sparc/sethostid.S: Likewise.
535         * sysdeps/unix/i386/brk.S: Likewise.
536         * sysdeps/unix/sparc/brk.S: Likewise.
538         * configure.in: Remove test for support for subtracting local labels.
539         * config.h.in: Remove HAVE_SUBTRACT_LOCAL_LABELS.
540         * stdio-common/vfprintf.c: Remove test of
541         HAVE_SUBTRACT_LOCAL_LABELS.
543         * configure.in: If init_array/fini_array support is not available,
544         bail out.
545         * config.h.in: Remove trace of optional init_array/fini_array support.
546         * config.make.in: Likewise.
547         * csu/elf-init.c: Likewise.
548         * dlfcn/dlfcn.c: Likewise.
549         * elf/soinit.c: Likewise.
550         * sysdeps/ia64/elf/initfinit.c: Likewise.
552 2005-11-04  Roland McGrath  <roland@redhat.com>
554         * sysdeps/i386/configure.in (libc_mtune_example): Variable removed.
555         * sysdeps/i386/configure: Regenerated.
557         [BZ #1089]
558         * configure.in: Change order of add-on sysdeps directories,
559         so they are interleaved with main sysdeps directories.
560         * configure: Regenerated.
562 2005-11-03  Roland McGrath  <roland@redhat.com>
564         * NEWS: Synch with 2.3 branch updates.
566 2005-11-03  Ulrich Drepper  <drepper@redhat.com>
568         * sunrpc/svc.c (svc_getreq_poll): Fix inefficient loop test.
570 2005-11-03  Roland McGrath  <roland@redhat.com>
572         [BZ #1548]
573         * sunrpc/svc.c (svc_getreqset): Use ffsl instead of ffs on fd_mask,
574         make sure constant is long.
575         From Jay Lan <jlan@engr.sgi.com>.
577 2005-11-03  Ulrich Drepper  <drepper@redhat.com>
579         [BZ #1774]
580         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use simple
581         gethostbyname2 lookup if AI_V4MAPPED|AI_ALL is set.
583         * sysdeps/posix/getaddrinfo.c (gaih_inet): Avoid alloca when possible
584         while looking for scope delimiter.
585         Some pretty printing.
587 2005-10-31  Steven Munroe  <sjmunroe@us.ibm.com>
589         * sysdeps/powerpc/powerpc64/Makefile
590         (sysdep_routines, elide-routines.os): Add hp-timing.
591         * sysdeps/powerpc/powerpc64/hp-timing.c: New file.
592         * sysdeps/powerpc/powerpc64/hp-timing.h: New file.
593         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: New file.
595 2005-10-31  Ulrich Drepper  <drepper@redhat.com>
597         * resolv/res_init.c (__res_iclose): New function.  Broken out of
598         res_nclose.  Take addition parameter which determines whether
599         addresses should be freed.
600         (res_nclose): Call __res_iclose.
601         (res_thread_freeres): Likewise.
602         * resolv/res_data.c (res_close): Call __res_iclose.
603         * resolv/res_libc.c (res_init): No need to separately free the
604         addresses.
605         (__res_maybe_init): Likewise.
606         * resolv/res_send.c: Use __res_iclose instead of res_nclose.
607         * resolv/Versions [GLIBC_PRIVATE]: Add __res_iclose.
608         * include/resolv.h: Declare __res_iclose.
609         Add libc_hidden_proto for __res_iclose.
610         * hesiod/hesiod.c (__hesiod_res_set): No need to free name server
611         addresses here again.
613         [BZ #1579]
614         * debug/execinfo.h: Change backtrace_symbols_fd comment.
616 2005-10-24  H.J. Lu  <hongjiu.lu@intel.com>
618         * sysdeps/ia64/fpu/libm-symbols.h (WEAK_LIBM_ENTRY): Add "__"
619         prefix to LOCAL_LIBM_ENTRY.
620         (WEAK_LIBM_END): Add "__" prefix to LOCAL_LIBM_END.
622 2005-10-26  Jakub Jelinek  <jakub@redhat.com>
624         * elf/dl-conflict.c (_dl_resolve_conflicts): Use _dl_debug_printf
625         instead of _dl_printf to print conflict processing debug message.
626         Reported by John Reiser <jreiser@BitWagon.com>.
628 2005-10-30  Ulrich Drepper  <drepper@redhat.com>
630         * misc/hsearch_r.c (hsearch_r): Remove duplicate test.
631         Patch by Chris Caputo <ccaputo@alt.net>.
633 2005-10-28  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
635         * sysdeps/unix/sh/sysdep.S: Remove unnecessary weak_alias.
636         * sysdeps/unix/sysv/linux/sh/socket.S: Honor NO_WEAK_ALIAS.
638 2005-10-28  Thorsten Kukuk  <kukuk@suse.de>
640         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey): Fix off
641         by one error.
643 2005-10-24  Roland McGrath  <roland@redhat.com>
645         [BZ #1534]
646         * include/string.h: Use libc_hidden_proto for strnlen,
647         not libc_hidden_builtin_proto.
649 2005-10-23  Ulrich Drepper  <drepper@redhat.com>
651         * rt/mqueue.h: Cleanups.
653 2005-10-22  Roland McGrath  <roland@redhat.com>
655         [BZ #1254]
656         * sysdeps/mach/hurd/getpeername.c (__getpeername): Fix last change.
657         From Samuel Thibault <samuel.thibault@ens-lyon.org>.
659 2005-10-17  Thomas Schwinge  <tschwinge@gnu.org>
661         [BZ #1252]
662         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Don't use ?: as lvalue.
663         * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
665 2005-10-20  Ulrich Drepper  <drepper@redhat.com>
667         * iconvdata/ibm1364.h (__ucs4_to_ibm1364sb): Fix one mapping.
668         * iconvdata/ibm1388.h (__ucs4_to_ibm1388sb): Likewise.
669         * iconvdata/testdata/IBM1364: Add missing valid input.
670         * iconvdata/testdata/IBM1388: Likewise.
671         * iconvdata/testdata/IBM1364..UTF8: Adjust appropriately.
672         * iconvdata/testdata/IBM1388..UTF8: Likewise.
673         Patch by Masahide Washizawa <washi@jp.ibm.com>.
675 2005-08-23  GOTO Masanori  <gotom@debian.or.jp>
677         [BZ #1498]
678         * sysdeps/alpha/remqu.S: Return the correct result when the same
679         dividend and divisor are provided, and they're negative numbers.
680         * sysdeps/alpha/divqu.S: Likewise.
682 2005-10-18  Steven Munroe  <sjmunroe@us.ibm.com>
684         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h (TESTS):
685         Define.
686         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h (TESTS):
687         Likewise.
689 2005-10-19  Ulrich Drepper  <drepper@redhat.com>
691         * iconvdata/Makefile (modules): Add IBM1364, IBM1371, IBM1388, IBM1390,
692         and IBM1399.
693         (distribute): Add ibm1364.c, ibm1364.h, ibm1371.c, ibm1371.h,
694         ibm1388.c, ibm1388.h, ibm1390.c, ibm1390.h, ibm1399.c, and ibm1399.h.
695         * iconvdata/TESTS: Add entries for IBM1364, IBM1371, IBM1388, IBM1390,
696         and IBM1399.
697         * iconvdata/gconv-modules: Likewise.
698         * iconvdata/ibm1364.c: New file.
699         * iconvdata/ibm1364.h: New file.
700         * iconvdata/ibm1371.c: New file.
701         * iconvdata/ibm1371.h: New file.
702         * iconvdata/ibm1388.c: New file.
703         * iconvdata/ibm1388.h: New file.
704         * iconvdata/ibm1390.c: New file.
705         * iconvdata/ibm1390.h: New file.
706         * iconvdata/ibm1399.c: New file.
707         * iconvdata/ibm1399.h: New file.
708         * iconvdata/testdata/IBM1364: New file.
709         * iconvdata/testdata/IBM1364..UTF8: New file.
710         * iconvdata/testdata/IBM1371: New file.
711         * iconvdata/testdata/IBM1371..UTF8: New file.
712         * iconvdata/testdata/IBM1388: New file.
713         * iconvdata/testdata/IBM1388..UTF8: New file
714         * iconvdata/testdata/IBM1390: New file.
715         * iconvdata/testdata/IBM1390..UTF8: New file.
716         * iconvdata/testdata/IBM1399: New file.
717         * iconvdata/testdata/IBM1399..UTF8: New file.
718         Original patch by Masahide Washizawa <washi@jp.ibm.com>.
720 2005-10-17  Roland McGrath  <roland@redhat.com>
722         * elf/dl-load.c (MAP_COPY): When undefined, define to
723         MAP_PRIVATE|MAP_DENYWRITE instead of just MAP_PRIVATE.
724         (_dl_map_object_from_fd): Don't use MAP_DENYWRITE explicitly.
726 2005-10-17  Martin Schwidefsky  <schwidefsky@de.ibm.com>
728         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h (SC_STSZ, TESTS):
729         Define.
730         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.h (SC_STSZ, TESTS):
731         Likewise.
733 2005-10-17  Ulrich Drepper  <drepper@redhat.com>
735         * libio/oldfileops.c (_IO_old_file_xsputn): Fix last patch.
736         Return EOF not 0.
738         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Also
739         allow EACCES errors when opening /proc for now.
741         * wctype/wcfuncs.c: Don't use expensive wide char lookups in isw*
742         functions if character is in ASCII range.
743         * wctype/wcfuncs_l.c: Likewise.
745 2005-05-03  Robert Millan  <robertmh@gnu.org>
747         * abi-tags (.*-.*-knetbsd.*-gnu.*): New match, with ABI value 4.
748         * elf/cache.c (print_entry): Match the kNetBSD ABI tag.
750 2005-10-16  Alfred M. Szmidt  <ams@gnu.org>
752         * sysdeps/generic/bits/mman.h
753         [__USE_GNU] (MREMAP_MAYMOVE, REMAP_FIXED): New macros.
755 2005-10-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
757         * sysdeps/unix/sysv/linux/sh/makecontext.S: New file.
758         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: New file.
759         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: New file.
760         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: New file.
761         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: New file.
762         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: New file.
763         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: New file.
764         * sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h: New file.
765         * sysdeps/unix/sysv/linux/sh/sh4/ucontext_i.h: New file.
766         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Removed.
767         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: New file.
768         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: New file.
770 2005-09-13  Jakub Jelinek  <jakub@redhat.com>
772         [BZ #1228]
773         * include/limits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Make sure these
774         are defined for -D_GNU_SOURCE or -D_ISOC99_SOURCE even when not
775         -std=c99.
777 2005-10-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
779         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Define MREMAP_FIXED.
781 2005-08-05  Alfred M. Szmidt  <ams@gnu.org>
783         [BZ #1252]
784         * sysdeps/mach/hurd/setitimer.c (restart_itimer): Move static fn
785         forward decl out of function body.
786         * sysdeps/mach/hurd/profil.c: Likewise.
788 2005-10-16  Roland McGrath  <roland@frob.com>
790         [BZ #1254]
791         * sysdeps/mach/hurd/getpeername.c (__getpeername): Respect *LEN
792         byte limit when setting ADDR->sa_family.
793         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
795         [BZ #1253]
796         * sysdeps/mach/hurd/dl-sysdep.h
797         [SHARED] (DL_ARGV_NOT_RELRO): New macro.
799         [BZ #1253]
800         * sysdeps/mach/hurd/i386/init-first.c (init): Make cast kosher.
801         (_hurd_stack_setup): Don't declare with arguments and ellipsis.
802         Use __builtin_frame_address and __builtin_return_address.
803         (_dl_init_first): Likewise.
805         [BZ #1249]
806         * sysdeps/mach/hurd/i386/init-first.c (_cthread_init_routine): Declare
807         as weak extern.
808         (init): Check for it being undefined.
810 2005-10-16  Daniel Jacobowitz  <dan@codesourcery.com>
811             Roland McGrath  <roland@redhat.com>
813         * Makerules [module-names] (extra-modules-build): New variable.
814         ($(extra-modules-build:%=$(objpfx)%.so)): New static pattern rule.
815         Depend on libc.so and libc_nonshared.a.
816         * dlfcn/Makefile ($(test-modules)): Remove static pattern rule.
817         * elf/Makefile (modules-names-nobuild): New variable, add filtmod1.
818         ($(test-modules)): Remove static pattern rule.
820 2005-10-15  Thomas Schwinge  <tschwinge@gnu.org>
822         * include/dirent.h: Include <stdbool.h>.
823         * sysdeps/mach/hurd/fdopendir.c: Include <fcntl.h>.
824         (fdopendir): Correct argument to _hurd_fd_get().
825         * sysdeps/mach/hurd/opendir.c (__opendir): Remove stray `}'.
827 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
829         [BZ #1224]
830         * posix/regcomp.c (init_word_char, duplicate_node_closure,
831         fetch_token, peek_token_bracket, build_range_exp,
832         build_collating_symbol): Remove forward decls; no longer needed
833         now that we use prototypes.
835 2005-10-15  Ulrich Drepper  <drepper@redhat.com>
837         [BZ #1221]
838         * posix/regex_internal.h: Remove last traces of
839         RE_NO_INTERNAL_PROTOTYPES.
841         [BZ #968]
842         * string/strxfrm_l.c (STRXFRM): Fix exit conditions of two loops.
844         * sysdeps/unix/fdopendir.c (fdopendir): Make sure descriptor
845         allows reading.
847         * wcsmbs/tst-mbrtowc2.c: Use de_DE.UTF-8 instead of en_US.UTF-8.
848         * wcsmbs/Makefile: Define tst-mbrtowc2-ENV.
850         * posix/regexec.c: Finish prototyping of static functions.
851         * posix/regex_internal.c: Likewise.
853 2005-10-14  Roland McGrath  <roland@frob.com>
855         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): New function, broken
856         out of ...
857         (__opendir): ... here.  Call it.
858         * sysdeps/mach/hurd/fdopendir.c: New file.
860 2005-10-14  Ulrich Drepper  <drepper@redhat.com>
862         [BZ #865]
863         * math/tgmath.h: Correctly determine result type for
864         __TGMATH_BINARY_REAL_ONLY,
865         __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
866         __TGMATH_TERNARY_REAL_ONLY, and __TGMATH_BINARY_REAL_IMAG.
868 2005-09-17  Andreas Jaeger  <aj@suse.de>
870         [BZ #865]
871         * math/test-tgmath-int.c: New file.
872         * math/Makefile (tests): Add test-tgmath-int.
874 2005-10-14  Ulrich Drepper  <drepper@redhat.com>
876         [BZ #804]
877         * malloc/tst-mtrace.sh: Work around for bootstraping.
879         * locale/programs/ld-collate.c (collate_output): Fix counting of
880         elements.  Don't limit table size.  Use correct secondary hash
881         function.
882         * locale/localeinfo.h (LIMAGIC): Change value returned for LC_COLLATE.
883         * posix/fnmatch_loop.c: Adjust for changed secondary hash function.
884         * posix/regcomp.c: Likewise.
886         * time/asctime.c (asctime_internal): Use __snprintf instead of
887         snprintf to avoid PLT entry.
889         * sysdeps/unix/opendir.c (__opendir): Pass extra argument to
890         __alloc_dir.
891         (__alloc_dir): Only close descriptor on error if new parameter is true.
892         * sysdeps/unix/fdopendir.c (fdopendir): Pass extra argument to
893         __alloc_dir.  Don't close fd on error.
894         * include/dirent.h (__alloc_dir): Adjust prototype.
896         * stdlib/Makefile (tests): Add tst-ucontext-off.
897         * stdlib/tst-ucontext-off.c: New file.
898         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h (TESTS): Define.
899         * sysdeps/unix/sysv/linux/i386/ucontext_i.h (TESTS): Likewise.
901         [BZ #1468]
902         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Fix values for
903         oFPREGS, oSIGMASK, oFPREGSMEM, and oMXCSR.
904         Patch by Nicholas Miell <nmiell@comcast.net>.
906         [BZ #1460]
907         * time/asctime.c (asctime_internal): New function, derived from
908         asctime_r.  Takes additional parameter which is the buffer length.
909         Use snprintf instead sprintf, if it overflows, fail.
910         (asctime_r): Call asctime_internal with 26 as buffer length.
911         (asctime): Call asctime_internal with length of internal buffer.
912         * time/Makefile (tests): Add bug-asctime_r.
913         * time/bug-asctime_r.c: New file.
915         [BZ #1459]
916         * time/asctime.c (__asctime_r): Check for tm_year computation to
917         overflow and fail in this case.
918         * time/Makefile (tests): Add bug-asctime.
919         * time/bug-asctime.c: New file.
921         [BZ #1458]
922         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MREMAP_FIXED.
923         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
924         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
925         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
926         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
927         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
928         * misc/sys/mman.h: Add ellipsis after last parameter of mremap and
929         adjust leading comment.
930         * sysdeps/unix/sysv/linux/syscalls.list: Add pointer parameter to
931         mremap syscall.
932         * include/sys/mman.h (__mremap): Add ellipsis.
933         * malloc/memusage.c: Adjust mremap wrapper for optional additional
934         parameter.
936 2005-10-13  Ulrich Drepper  <drepper@redhat.com>
938         [BZ #1405]
939         * libio/iogetdelim.c (_IO_getdelim): Fix truncation of return
940         value.  Avoid overflow in computation.
942         [BZ #1373]
943         * argp/argp.h: Remove __NTH for __argp_usage inline function.
945 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
947         [BZ #1248]
948         * posix/regex_internal.h (bitset_not, bitset_merge, bitset_not_merge,
949         bitset_mask, re_string_allocate, re_string_construct,
950         re_string_reconstruct, re_string_destruct, re_string_elem_size_at,
951         re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case,
952         re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1,
953         re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect,
954         re_node_set_init_union, re_node_set_merge, re_node_set_insert,
955         re_node_set_insert_last, re_node_set_compare, re_node_set_contains,
956         re_node_set_remove_at, re_dfa_add_node, re_acquire_state,
957         re_acquire_state_context): Remove unnecessary forward decls.
958         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
959         Put __attribute at function definition, now that the function decl
960         has been removed.
961         * posix/regex_internal.c (re_string_peek_byte_case,
962         re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
963         Likewise.
965 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
967         [BZ #1231]
968         * posix/regex_internal.c (re_string_skip_chars, register_state,
969         calc_state_hash): Remove forward decls.
970         * posix/regexec.c (acquire_init_state_context, check_halt_node_context,
971         proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes,
972         clean_state_log_if_needed): Likewise.
974 2005-10-13  Ulrich Drepper  <drepper@redhat.com>
976         * posix/regex.c: No need to use K&R definitions for static functions.
977         * posix/regex_internal.c: Likewise.
978         * posix/regcomp.c: Likewise.
980         [BZ #1466]
981         * sysdeps/generic/s_csqrt.c (__csqrt): For zero real part, return
982         principal square root.
983         * sysdeps/generic/s_csqrtf.c (__csqrtf): Likewise.
984         * sysdeps/generic/s_csqrtl.c (__csqrtl): Likewise.
985         * math/libm-test.inc (csqrt_test): Add test for returning
986         principal value.
988         * include/features.h: Define _POSIX_C_SOURCE to 200112 for
989         _XOPEN_SOURCE == 600.
991 2005-10-12  Ulrich Drepper  <drepper@redhat.com>
993         * malloc/malloc.c (_int_free): Fail if block size is obviously wrong.
995         * include/malloc.h: Remove _int_new_arena prototype.
996         * malloc/arena.c (_int_new_arena): Move definition ahead of
997         arena_get2 and make static.
999         Correctly implement M_MXFAST.
1000         * malloc/malloc.c (struct malloc_state): Replace max_fast with flags
1001         fields.
1002         (global_max_fast): New variable.
1003         (set_max_fast): Change to not require arena parameter and to modify
1004         global_max_fast.  Change all callers.
1005         (get_max_fast): New macro.  Use this instead of directly accessing
1006         now removed max_fast arena member.
1007         (have_fastchunks): Use flags instead of max_fast.
1008         (clear_fastchunks): Likewise.
1009         (set_fastchunks): Likewise.
1010         (contiguous): Likewise.
1011         (noncontiguous): Likewise.
1012         (set_noncontiguous): Likewise.
1013         (set_contiguous): Likewise.
1014         (malloc_init_state): Explicitly set FASTCHUNKS_BIT.  Call set_max_fast
1015         only for main arena.
1016         * malloc/hooks.c (public_sET_STATe): Adjust set_max_fast use.
1018 2005-10-10  Daniel Jacobowitz  <dan@codesourcery.com>
1020         * sysdeps/generic/bits/byteswap.h (__bswap_constant_16): New macro.
1021         (__bswap_16): Use it.
1022         (__bswap_constant_32): New macro.
1023         (__bswap_32): Use it.
1025 2005-10-10  Ulrich Drepper  <drepper@redhat.com>
1027         * malloc/arena.c (ptmalloc_unlock_all2): Reset atfork_recursive_cntr.
1029 2005-10-08  Jakub Jelinek  <jakub@redhat.com>
1031         * nss/getent.c (hosts_keys): Pass INADDRSZ as size rather
1032         than IN6ADDRSZ to AF_INET gethostbyaddr.
1034 2005-10-07  Roland McGrath  <roland@redhat.com>
1036         [BZ #1438]
1037         * include/features.h: Make tests on _FORTIFY_SOURCE and __OPTIMIZE__
1038         friendly to -Wundef.
1039         (__USE_FORTIFY_LEVEL): Always define it, to 0 if nothing else.
1041 2005-10-06  Ulrich Drepper  <drepper@redhat.com>
1043         * sysdeps/unix/sysv/linux/readonly-area.c: Allow fopen to fail because
1044         the file does not exist.
1046 2005-10-05  Simon Josefsson  <jas@extundo.com>
1048         [BZ #1423]
1049         * crypt/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): New macros.
1051 2005-10-05  Roland McGrath  <roland@redhat.com>
1053         * crypt/Makefile (distribute): Remove duplicate defn.
1055         * sysdeps/generic/ldsodefs.h (struct audit_ifaces):
1056         Use ARCH_PLTENTER_MEMBERS and ARCH_PLTEXIT_MEMBERS macros if defined.
1057         * elf/tst-auditmod1.c: Include <tst-audit.h> to define more
1058         architecture-specific code.
1059         * sysdeps/generic/tst-audit.h: New file.
1060         * elf/Makefile (distribute): Add it.
1062 2005-10-05  Daniel Jacobowitz  <dan@codesourcery.com>
1064         * elf/elf.h (R_ARM_TLS_DTPMOD32, R_ARM_TLS_DTPOFF32,
1065         R_ARM_TLS_TPOFF32, R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
1066         R_ARM_TLS_LDO32, R_ARM_TLS_IE32, R_ARM_TLS_LE32): New macros.
1068 2005-10-03  Roland McGrath  <roland@redhat.com>
1070         * sysdeps/powerpc/nofpu: Directory removed, saved in ports repository.
1072 2005-09-30  Ulrich Drepper  <drepper@redhat.com>
1074         * posix/regex.h: Pretty printing.
1075         Clean up namespace a bit.
1077 2005-09-30  Jakub Jelinek  <jakub@redhat.com>
1079         * posix/regexec.c (update_cur_sifted_state, check_arrival,
1080         check_arrival_add_next_nodes): Avoid using uninitialized variable.
1082         * malloc/memusage.c (dest): Fix a bunch of warnings on 32-bit arches.
1084         * sysdeps/i386/fpu/libm-test-ulps: Update for GCC 4.0.x.
1086 2005-09-29  Ulrich Drepper  <drepper@redhat.com>
1088         * iconvdata/Makefile (modules): Add IBM803, IBM901, IBM902, IBM921,
1089         IBM1008, IBM1008_420, IBM1097, IBM1112, IBM1123, IBM1130, IBM1140,
1090         IBM1141, IBM1142, IBM1143, IBM1144, IBM1145, IBM1146, IBM1147, IBM1148,
1091         IBM1149, IBM1166, IBM1167, IBM4517, IBM4899, IBM4909, IBM4971,
1092         IBM5347, IBM9030, IBM9066, IBM9448, IBM12712, IBM16804.
1093         (distribute): Add ibm803.c, ibm803.h, ibm901.c, ibm901.h, ibm902.c,
1094         ibm902.h, ibm921.c, ibm921.h, ibm1008.c, ibm1008.h, ibm1008_420.c,
1095         ibm1097.c, ibm1097.h, ibm1112.c, ibm1112.h, ibm1123.c, ibm1123.h,
1096         ibm1130.c, ibm1130.h, ibm1140.c, ibm1140.h, ibm1141.c, ibm1141.h,
1097         ibm1142.c, ibm1142.h, ibm1143.c, ibm1143.h, ibm1144.c, ibm1144.h,
1098         ibm1145.c, ibm1145.h, ibm1146.c, ibm1146.h, ibm1147.c, ibm1147.h,
1099         ibm1148.c, ibm1148.h, ibm1149.c, ibm1149.h, ibm1166.c, ibm1166.h,
1100         ibm1167.c, ibm1167.h, ibm4517.c, ibm4517.h, ibm4899.c, ibm4899.h,
1101         ibm4909.c, ibm4909.h, ibm4971.c, ibm4971.h, ibm5347.c, ibm5347.h,
1102         ibm9030.c, ibm9030.h, ibm9066.c, ibm9066.h, ibm9448.c, ibm9448.h,
1103         ibm12712.c, ibm12712.h, ibm16804.c, ibm16804.h.
1104         * iconvdata/TESTS: Add entries for new modules.
1105         * iconvdata/gconv-modules: Likewise.
1106         * iconvdata/ibm803.c: New file.
1107         * iconvdata/ibm803.h: New file.
1108         * iconvdata/ibm901.c: New file.
1109         * iconvdata/ibm901.h: New file.
1110         * iconvdata/ibm902.c: New file.
1111         * iconvdata/ibm902.h: New file.
1112         * iconvdata/ibm921.c: New file.
1113         * iconvdata/ibm921.h: New file.
1114         * iconvdata/ibm1008.c: New file.
1115         * iconvdata/ibm1008.h: New file.
1116         * iconvdata/ibm1008_420.c: New file.
1117         * iconvdata/ibm1097.c: New file.
1118         * iconvdata/ibm1097.h: New file.
1119         * iconvdata/ibm1112.c: New file.
1120         * iconvdata/ibm1112.h: New file.
1121         * iconvdata/ibm1123.c: New file.
1122         * iconvdata/ibm1123.h: New file.
1123         * iconvdata/ibm1130.c: New file.
1124         * iconvdata/ibm1130.h: New file.
1125         * iconvdata/ibm1140.c: New file.
1126         * iconvdata/ibm1140.h: New file.
1127         * iconvdata/ibm1141.c: New file.
1128         * iconvdata/ibm1141.h: New file.
1129         * iconvdata/ibm1142.c: New file.
1130         * iconvdata/ibm1142.h: New file.
1131         * iconvdata/ibm1143.c: New file.
1132         * iconvdata/ibm1143.h: New file.
1133         * iconvdata/ibm1144.c: New file.
1134         * iconvdata/ibm1144.h: New file.
1135         * iconvdata/ibm1145.c: New file.
1136         * iconvdata/ibm1145.h: New file.
1137         * iconvdata/ibm1146.c: New file.
1138         * iconvdata/ibm1146.h: New file.
1139         * iconvdata/ibm1147.c: New file.
1140         * iconvdata/ibm1147.h: New file.
1141         * iconvdata/ibm1148.c: New file.
1142         * iconvdata/ibm1148.h: New file.
1143         * iconvdata/ibm1149.c: New file.
1144         * iconvdata/ibm1149.h: New file.
1145         * iconvdata/ibm1166.c: New file.
1146         * iconvdata/ibm1166.h: New file.
1147         * iconvdata/ibm1167.c: New file.
1148         * iconvdata/ibm1167.h: New file.
1149         * iconvdata/ibm4517.c: New file.
1150         * iconvdata/ibm4517.h: New file.
1151         * iconvdata/ibm4899.c: New file.
1152         * iconvdata/ibm4899.h: New file.
1153         * iconvdata/ibm4909.c: New file.
1154         * iconvdata/ibm4909.h: New file.
1155         * iconvdata/ibm4971.c: New file.
1156         * iconvdata/ibm4971.h: New file.
1157         * iconvdata/ibm5347.c: New file.
1158         * iconvdata/ibm5347.h: New file.
1159         * iconvdata/ibm9030.c: New file.
1160         * iconvdata/ibm9030.h: New file.
1161         * iconvdata/ibm9066.c: New file.
1162         * iconvdata/ibm9066.h: New file.
1163         * iconvdata/ibm9448.c: New file.
1164         * iconvdata/ibm9448.h: New file.
1165         * iconvdata/ibm12712.c: New file.
1166         * iconvdata/ibm12712.h: New file.
1167         * iconvdata/ibm16804.c: New file.
1168         * iconvdata/ibm16804.h: New file.
1169         * iconvdata/testdata/IBM803: New file.
1170         * iconvdata/testdata/IBM803..UTF8: New file.
1171         * iconvdata/testdata/IBM901: New file.
1172         * iconvdata/testdata/IBM901..UTF8: New file.
1173         * iconvdata/testdata/IBM902: New file.
1174         * iconvdata/testdata/IBM902..UTF8: New file.
1175         * iconvdata/testdata/IBM921: New file.
1176         * iconvdata/testdata/IBM921..UTF8: New file.
1177         * iconvdata/testdata/IBM1008: New file.
1178         * iconvdata/testdata/IBM1008..UTF8: New file.
1179         * iconvdata/testdata/IBM1097: New file.
1180         * iconvdata/testdata/IBM1097..UTF8: New file.
1181         * iconvdata/testdata/IBM1112: New file.
1182         * iconvdata/testdata/IBM1112..UTF8: New file.
1183         * iconvdata/testdata/IBM1123: New file.
1184         * iconvdata/testdata/IBM1123..UTF8: New file.
1185         * iconvdata/testdata/IBM1130: New file.
1186         * iconvdata/testdata/IBM1130..UTF8: New file.
1187         * iconvdata/testdata/IBM1140: New file.
1188         * iconvdata/testdata/IBM1140..UTF8: New file.
1189         * iconvdata/testdata/IBM1141: New file.
1190         * iconvdata/testdata/IBM1141..UTF8: New file.
1191         * iconvdata/testdata/IBM1142: New file.
1192         * iconvdata/testdata/IBM1142..UTF8: New file.
1193         * iconvdata/testdata/IBM1143: New file.
1194         * iconvdata/testdata/IBM1143..UTF8: New file.
1195         * iconvdata/testdata/IBM1144: New file.
1196         * iconvdata/testdata/IBM1144..UTF8: New file.
1197         * iconvdata/testdata/IBM1145: New file.
1198         * iconvdata/testdata/IBM1145..UTF8: New file.
1199         * iconvdata/testdata/IBM1146: New file.
1200         * iconvdata/testdata/IBM1146..UTF8: New file.
1201         * iconvdata/testdata/IBM1147: New file.
1202         * iconvdata/testdata/IBM1147..UTF8: New file.
1203         * iconvdata/testdata/IBM1148: New file.
1204         * iconvdata/testdata/IBM1148..UTF8: New file.
1205         * iconvdata/testdata/IBM1149: New file.
1206         * iconvdata/testdata/IBM1149..UTF8: New file.
1207         * iconvdata/testdata/IBM1166: New file.
1208         * iconvdata/testdata/IBM1166..UTF8: New file.
1209         * iconvdata/testdata/IBM1167: New file.
1210         * iconvdata/testdata/IBM1167..UTF8: New file.
1211         * iconvdata/testdata/IBM4517: New file.
1212         * iconvdata/testdata/IBM4517..UTF8: New file.
1213         * iconvdata/testdata/IBM4899: New file.
1214         * iconvdata/testdata/IBM4899..UTF8: New file.
1215         * iconvdata/testdata/IBM4909: New file.
1216         * iconvdata/testdata/IBM4909..UTF8: New file.
1217         * iconvdata/testdata/IBM4971: New file.
1218         * iconvdata/testdata/IBM4971..UTF8: New file.
1219         * iconvdata/testdata/IBM5347: New file.
1220         * iconvdata/testdata/IBM5347..UTF8: New file.
1221         * iconvdata/testdata/IBM9030: New file.
1222         * iconvdata/testdata/IBM9030..UTF8: New file.
1223         * iconvdata/testdata/IBM9066: New file.
1224         * iconvdata/testdata/IBM9066..UTF8: New file.
1225         * iconvdata/testdata/IBM9448: New file.
1226         * iconvdata/testdata/IBM9448..UTF8: New file.
1227         * iconvdata/testdata/IBM12712: New file.
1228         * iconvdata/testdata/IBM12712..UTF8: New file.
1229         * iconvdata/testdata/IBM16804: New file.
1230         * iconvdata/testdata/IBM16804..UTF8: New file.
1231         Patch by Masahide WASHIZAWA <washi@jp.ibm.com>.
1233         * iconvdata/run-iconv-test.sh: Run ASCII->encoding->ASCII suntzus
1234         test only if $subset is N.
1236 2005-09-29  Roland McGrath  <roland@redhat.com>
1238         [BZ #1392]
1239         * posix/sys/wait.h [!__GNUC__ || __cplusplus] (__WAIT_INT): Use const.
1241 2005-09-29  Alfred M. Szmidt  <ams@gnu.org>
1243         * elf/rtld.c [DL_ARGV_NOT_RELRO] (_dl_argc, _dl_skip_args):
1244         Don't use attribute_relro.
1246 2005-09-29  Roland McGrath  <roland@redhat.com>
1248         [BZ #1392]
1249         * posix/sys/wait.h (__WAIT_INT): Rewrite using an initializer,
1250         in case __typeof yields a const-qualified type.
1252 2005-09-28  Ulrich Drepper  <drepper@redhat.com>
1254         * dirent/dirent.h: Declare fdopendir.
1255         * dirent/Versions: Export fdopendir for GLIBC_2.4.
1256         * dirent/Makefile (routines): Add fdopendir.
1257         (tests): Add tst-fdopendir.
1258         * dirent/tst-fdopendir.c: New file.
1259         * include/dirent.h: Declare __alloc_dir.
1260         * sysdeps/generic/fdopendir.c: New file.
1261         * sysdeps/unix/fdopendir.c: New file.
1262         * sysdeps/unix/opendir.c: Split off back part of opendir into new
1263         function __alloc_dir.
1265 2005-09-26  Steven Munroe  <sjmunroe@us.ibm.com>
1267         [BZ #1384]
1268         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust expected y1, y1f, yn,
1269         ynf results.
1271 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1272             Ulrich Drepper  <drepper@redhat.com>
1274         [BZ #1302]
1275         Change bitset word type from unsigned int to unsigned long int,
1276         as this has better performance on typical 64-bit hosts.  Change
1277         bitset type name to bitset_t.
1278         * posix/regcomp.c (build_equiv_class, build_charclass):
1279         (build_range_exp, build_collating_symbol):
1280         Prefer bitset_t to re_bitset_ptr_t in prototypes, when the actual
1281         argument is a bitset.  This is merely a style issue, but it makes
1282         it clearer that an entire array is expected.
1283         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps,
1284         lower_subexp): Adjust for new bitset_t definition.
1285         (lower_subexp, parse_bracket_exp, built_charclass_op): Likewise.
1286         * posix/regex_internal.h (bitset_set, bitset_clear, bitset_contain,
1287         bitset_not, bitset_merge, bitset_set_all, bitset_mask): Likewise.
1288         * posix/regexec.c (check_dst_limits_calc_pos_1,
1289         check_subexp_matching_top, build_trtable, group_nodes_into_DFAstates):
1290         Likewise.
1291         * posix/regcomp.c (utf8_sb_map): Don't assume initializer
1292         == 0xffffffff.
1293         * posix/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
1294         All uses changed.
1295         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
1296         (bitset_word_t): New type, replacing 'unsigned int' for bitset uses.
1297         All uses changed.
1298         (BITSET_WORD_MAX): New macro.
1299         (bitset_set, bitset_clear, bitset_contain, bitset_empty,
1300         (bitset_set_all, bitset_copy):  Adjust for bitset_t change.
1301         (bitset_empty, bitset_copy):
1302         Prefer sizeof (bitset_t) to multiplying it out ourselves.
1303         (bitset_not_merge): Remove; unused.
1304         (bitset_contain): Return bool, not unsigned int with one bit on.
1305         All callers changed.
1306         * posix/regexec.c (build_trtable): Don't assume bitset_t has no
1307         stricter alignment than re_node_set; do this by defining a new
1308         internal type struct dests_alloc and using it to allocate memory.
1310 2005-09-27  Ulrich Drepper  <drepper@redhat.com>
1312         [BZ #1230]
1313         * stdlib/strtod_l.c (STRNCASECMP): Always use C locale object.
1314         (TOLOWER_C): Define.  Use it when recognizing inf and nan.
1315         * stdlib/Makefile (tests): Add bug-strtod2.
1316         * stdlib/bug-strtod2.c: New file.
1318 2005-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1320         [BZ #1361]
1321         * argp/argp-fmtstream.h [HAVE_CONFIG_H]: Do not #include <config.h>.
1322         * argp/argp-eexst.c, argp/argp-fmtstream.c, argp/argp-fs-xinl.c,
1323         argp/argp-xinl.c: Fix up whitespace.
1325 2005-09-27  Ulrich Drepper  <drepper@redhat.com>
1327         [BZ #1158]
1328         * stdlib/cxa_atexit.c (__new_exitfn): Rewrite to preserve order in
1329         which the functions were registered.
1330         * dlfcn/Makefile: Add rules to build and run bug-atexit1 and
1331         bug-atexit2.
1332         * dlfcn/bug-atexit1.c: New file.
1333         * dlfcn/bug-atexit1-lib.c: New file.
1334         * dlfcn/bug-atexit2.c: New file.
1335         * dlfcn/bug-atexit2-lib.c: New file.
1337         [BZ #1078]
1338         * libio/fileops.c (_IO_new_file_xsputn): Determine amount of
1339         available space in non-line-buffered buffer correctly.
1340         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
1341         * stdio-common/Makefile (tests): Add tst-fwrite.
1342         * stdio-common/tst-fwrite.c: New file.
1344 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
1346         [BZ #838]
1347         * malloc/arena.c (ptmalloc_lock_all): If global lock already taken
1348         by the same thread, just bump the counter.
1349         (ptmalloc_unlock_all): If counter for recursive locks hasn't reached
1350         zero, don't do anything else.
1351         * malloc/Makefile (tests): Add tst-mallocfork.
1352         * malloc/tst-mallocfork.c: New file.
1354         [BZ #808]
1355         * malloc/malloc.c (_int_realloc): Make error message clearer.
1357         [BZ #713]
1358         * libio/iofgets.c: Treat N==1 correctly.
1359         * libio/iofgets_u.c: Likewise.
1360         * libio/iofgetws.c: Likewise.
1361         * libio/iofgetws_u.c: Likewise.
1362         * stdio-common/Makefile (tests): Add tst-fgets.
1363         * stdio-common/tst-fgets.c: New file.
1365 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
1367         [BZ #652]
1368         * posix/getconf.c: Add new option -a to print the names of
1369         the current system configuration variables to stdout.
1370         Based on patch from Josh Aas <josha@sgi.com>.
1372 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
1374         [BZ #644]
1375         * sysdeps/posix/getaddrinfo.c (fls): New function.
1376         (gaih_inet): Don't use ffs, use fls.  Convert address to native byte
1377         order first.
1378         * posix/Makefile (tests): Add tst-rfc3484.
1379         * posix/tst-rfc3484.c: New file.
1381         [BZ #627]
1382         * libio/iofclose.c (_IO_new_fclose): Unlock the internal lock
1383         before destroying it as part of the _IO_FINISH call.
1384         * libio/oldiofclose.c (_IO_old_fclose): Likewise.
1386         [BZ #524]
1387         * sysdeps/posix/getaddrinfo.c (match_prefix): Fix matching loop if
1388         number of bits is multiple of 8.
1389         Patch by Fredrik Tolf <fredrik@dolda2000.com>.
1391         [BZ #516]
1392         * elf/dl-load.c: Report failed loading due to ELF class mismatch
1393         with better words.
1395         [BZ #162]
1396         * manual/llio.texi (Waiting for I/O): Correct description of read
1397         conditions reported by select.
1399 2005-09-24  Jakub Jelinek  <jakub@redhat.com>
1401         * inet/getnetgrent_r.c (innetgr): Call endfct even if result != 0.
1402         Return 1 only if result == 1.  Patch by Benoit Capelle.
1404 2005-09-25  Ulrich Drepper  <drepper@redhat.com>
1406         [BZ #278]
1407         * manual/stdio.texi (Hook Functions): Correct type of position
1408         parameter of seeker and fix fallout of the change in the text.
1410         [BZ #714]
1411         * iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of
1412         left-over bytes and store them correctly.
1413         * wcsmbs/tst-mbrtowc2.c: New file.
1414         * wcsmbs/Makefile (tests): Add tst-mbrtowc2.
1416 2005-09-24  Roland McGrath  <roland@redhat.com>
1418         * sysdeps/unix/sysv/i386/signal.S: Removed, saved in ports repository.
1419         * sysdeps/unix/sysv/i386/sigreturn.S: Likewise.
1421 2005-09-24  Ulrich Drepper  <drepper@redhat.com>
1423         [BZ #545]
1424         * locale/iso-639.def: More updates from the current spec.
1426         * locale/programs/ld-address.c (address_finish): Produce better
1427         error messages for invalid lang_ab use.
1429         * locale/iso-639.def: Add a few updates from current spec.
1431 2005-09-23  Ulrich Drepper  <drepper@redhat.com>
1433         [BZ #704]
1434         * locale/iso-4217.def: Replace MGF with MGA.
1436         * iconvdata/jis0208.c (__jisx0208_from_ucs4_lat1): Reduce size of
1437         array.
1438         * iconvdata/jis0208.h (ucs4_to_jisx0208): Adjust access.
1440 2004-08-13  GOTO Masanori  <gotom@debian.or.jp>
1442         [BZ #395]
1443         * iconvdata/jis0208.c: Remove 0x005C mapping from
1444         __jisx0208_from_ucs4_lat1.
1445         Reported by Fumitoshi UKAI <ukai@debian.or.jp>
1447 2005-09-23  Ulrich Drepper  <drepper@redhat.com>
1449         [BZ #394]
1450         * libio/fmemopen.c (fmemopen_write): Return 0 instead of -1 if
1451         nothing can be written.
1452         * libio/iofopncook.c (_IO_cookie_write): If something went wrong,
1453         set error bit.
1455 2005-09-22  Ulrich Drepper  <drepper@redhat.com>
1457         [BZ #281]
1458         * posix/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
1459         * posix/regcomp.c: Remove unnecessary uses of
1460         unsigned RE_TRANSLATE_TYPE.
1461         * posix/regex_internal.h: Likewise.
1462         * posix/regex_internal.c: Likewise.
1463         * posix/regexexec.c: Likewise.
1464         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
1466         [BZ #1035]
1467         * locale/iso-4217.def: Replace TRL entry with TRY for new Turkish Lira.
1469         [BZ #1363]
1470         * nscd/nscd_getpw_r.c (nscd_getpw_r): Remove incorrectly C&Ped
1471         free call in code handling detection of GC runs.
1473 2005-09-22  Roland McGrath  <roland@redhat.com>
1475         * elf/dl-tsd.c (__libc_dl_error_tsd): Use attribute_tls_model_ie for
1476         static __thread variable.
1477         From Alexandre Oliva <aoliva@redhat.com>
1479         * Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command.
1480         Reported by Alexandre Oliva <aoliva@redhat.com>.
1482 2005-09-20  Jakub Jelinek  <jakub@redhat.com>
1484         * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
1486 2005-09-20  Roland McGrath  <roland@redhat.com>
1488         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use execv, not execl.
1490         [BZ #1346]
1491         * elf/dl-load.c (_dl_map_object_from_fd) [HAVE_Z_RELRO]: Do relro
1492         magic on __stack_prot only if [SHARED].  Skip mprotect if __stack_prot
1493         lies outside the page-rounded-down relro region.
1495 2005-09-19  Richard Henderson  <rth@redhat.com>
1497         [BZ #1358]
1498         * sysdeps/unix/alpha/sysdep.h (inline_syscall1): Copy argument(s)
1499         to a temporary first.
1500         (inline_syscall2, inline_syscall3, inline_syscall4): Likewise.
1501         (inline_syscall5, inline_syscall6): Likewise.
1503         * sysdeps/alpha/ldiv.S (lldiv): Add alias.
1505 2005-09-17  Ulrich Drepper  <drepper@redhat.com>
1507         [BZ #1010]
1508         * sysdeps/unix/sockatmark.c (sockatmark): Use SIOCATMARK correctly.
1510         [BZ #1053]
1511         * debug/xtrace.sh: Add missing escape character in -? match.
1512         Patch by Peter Breitenlohner <peb@mppmu.mpg.de>.
1514         [BZ #1051]
1515         * wctype/wctype.h: Remove stray __END_NAMESPACE_C99.
1516         * stdlib/stdlib.h: Use __END_NAMESPACE_STD instead of
1517         __END_NAMESPACE_C99 in one place.
1518         * scripts/begin-end-check.pl: New file.
1519         Patch by Ralph Loader <suckfish@ihug.co.nz>.
1520         * Makefile: Add rules to run scripts/begin-end-check.pl.
1522 2005-09-17  Andreas Jaeger  <aj@suse.de>
1524         * timezone/zdump.c: Include ctype.h.
1526 2005-09-16  Andreas Jaeger  <aj@suse.de>
1528         [BZ #1047]
1529         * sysdeps/unix/sysv/linux/mips/getpagesize.c: New file.
1531 2005-09-16  Maciej W. Rozycki  <macro@linux-mips.org>
1533         [BZ #933]
1534         * sysdeps/unix/sysv/linux/mips/brk.c (__brk): Load the number of
1535         the syscall immediately before invocation.
1536         * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl): Likewise.
1537         * sysdeps/unix/sysv/linux/mips/mips64/syscall.S (syscall): Likewise.
1539         * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl): Use
1540         macros to handle GP.
1541         * sysdeps/unix/sysv/linux/mips/mips64/syscall.S (syscall):
1542         Likewise.  Update inaccurate comments.
1544 2005-09-13  Ulrich Drepper  <drepper@redhat.com>
1546         * sysdeps/posix/spawni.c (__spawni): Automatically recognize some
1547         more cases when we can use vfork.
1549 2005-08-29  Thomas Schwinge  <schwinge@nic-nac-project.de>
1551         [BZ #1261]
1552         * manual/memory.texi (Hooks for Malloc): Correct prototype of
1553         my_init_hook and definition of my_free_hook.
1555 2005-09-12  Roland McGrath  <roland@redhat.com>
1557         [BZ #1331]
1558         * malloc/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
1559         macro argument.
1560         Reported by Matej Vela <vela@debian.org>.
1562 2005-09-12  Jakub Jelinek  <jakub@redhat.com>
1564         * malloc/malloc.c (struct malloc_chunk): Fix comment typo.
1565         (public_cALLOc): For mmapped chunks and perturb_byte != 0,
1566         don't clear SIZE_SZ bytes more than should be cleared.
1568 2005-09-09  Jakub Jelinek  <jakub@redhat.com>
1570         * inet/getnetgrent_r.c: Include assert.
1571         (setup): Remove FUNC_NAME and ALL arguments, assume they are always
1572         "setnetgrent" and 1.
1573         (endnetgrent_hook): New function.
1574         (internal_endnetgrent): Use it.
1575         (__internal_setnetgrent_reuse): Use it.  Adjust setup caller.
1576         If status is NSS_STATUS_SUCCESS, yet action is continue, call
1577         endnetgrent hook.
1578         (internal_getnetgrent_r): Use __nss_lookup_function rather than
1579         setup.  Recompute getfct pointer after successful
1580         __internal_setnetgrent_reuse.  Don't use __nss_next.
1581         (innetgr): Use __nss_lookup_function instead of __nss_lookup.
1582         Adjust setup caller.
1583         * nss/nss_files/files-netgrp.c (_nss_files_endnetgrent): Always clear
1584         data_size and cursor.  Add libnss_files_hidden_proto and
1585         libnss_files_hidden_def.
1586         (_nss_files_setnetgrent): Call _nss_files_endnetgrent on failure.
1587         * nis/nss_nis/nis-netgrp.c (internal_endnetgrent): Always clear
1588         data_size and cursor.
1589         (_nss_nis_setnetgrent): Don't call internal_endnetgrent.
1590         (_nss_nis_getnetgrent_r): Remove result->cursor == NULL handling.
1591         * nis/nss_nisplus/nisplus-netgrp.c (internal_endnetgrent): Always clear
1592         data_size and position.
1593         (_nss_nisplus_setnetgrent): Don't call internal_endnetgrent.
1595 2005-09-09  Ulrich Drepper  <drepper@redhat.com>
1597         * nss/getent.c (netgroup_keys): Call endnetgrent.
1598         (main): Call mtrace.
1600         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): We don't
1601         need locking for the stream.  Use feof_unlocked.
1603 2005-09-09  Jakub Jelinek  <jakub@redhat.com>
1605         [BZ #1318]
1606         * locale/loadarchive.c (_nl_load_locale_from_archive): Free
1607         normalized_codeset even if p was already normalized.
1608         Reported by Jaroslav Snajdr <jsnajdr@kerio.com>.
1610 2005-09-08  Roland McGrath  <roland@redhat.com>
1612         * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Decode DSOCAPS
1613         properly, first byte is bit number in mask.  Skip disabled caps.
1615 2005-07-11  Derek R. Price  <derek@ximbiot.com>
1617         [BZ #1061]
1618         * sysdeps/generic/glob.c (glob): Only a 0 return from
1619         getlogin_r means success, according to POSIX 1003.2.
1621 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1623         [BZ #1033]
1624         * time/mktime.c: Import from gnulib.
1625         The following macros are now consistent with other gnulib code.
1626         This does not change mktime's behavior.
1627         (TYPE_IS_INTEGER): New macro.
1628         (time_t_is_integer): Use it.
1629         (TYPE_TWOS_COMPLEMENT): New macro.
1630         (twos_complement_arithmetic): Use it.
1631         (TYPE_ONES_COMPLEMENT): New macro.
1632         (TYPE_MINIMUM, TYPE_MAXIMUM): Now supports signed-magnitude.
1633         mktime doesn't use this, but the code now matches other gnulib code.
1634         (ranged_convert): Pacify GCC 4.0 in a different way, which
1635         generates a few bytes less code.
1636         (ranged_convert, __mktime_internal): When calling a function via a
1637         pointer P, use P () rather than (*P) (), as we now assume C89 or
1638         better.
1640 2005-09-07  Alexandre Oliva  <aoliva@redhat.com>
1642         * timezone/test-tz.c: Update to match tzdata2005m.
1643         * timezone/tst-timezone.c: Likewise.
1645 2005-09-07  Ulrich Drepper  <drepper@redhat.com>
1647         * posix/regexec.c (find_recover_state): Remove unnecessary
1648         initialization.
1649         (transit_state_bkref): Make DFA a const pointer.
1650         (get_subexp): Likewise.
1651         (check_arrival): Likewise.
1652         (update_cur_sifted_state): Likewise.
1653         (re_search_internal): Likewise.
1654         (prune_impossible_nodes): Likewise.
1655         (acquire_init_state_context): Likewise.
1656         (proceed_next_node): Likewise.
1657         (set_regs): Likewise.
1658         (free_fail_stack_return): Likewise.
1659         (check_arrival_expand_ecl): Mark DFA parameter as const.
1660         (check_arrival_expand_ecl_sub): Likewise.
1661         (check_subexp_limits): Likewise.
1662         (sub_epsilon_src_nodes):  Likewise.
1663         (add_epsilon_src_nodes):  Likewise.
1664         (merge_state_array): Likewise.
1665         (update_regs): Likewise.
1666         (build_trtable): Likewise.
1667         (sift_states_backward): Mark MCTX parameter as const.
1668         (build_sifted_states): Likewise.
1669         (update_cur_sifted_state): Likewise.
1670         (sift_states_mkref): Likewise.
1671         (check_arrival_expand_ecl): Mark eclosure as const.
1672         (check_dst_limits_calc_pos_1): Likewise.
1673         * posix/regex_internal.h (re_match_context_t): Make dfa a const
1674         pointer.
1676 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1678         * timezone/africa: Update from tzdata2005m.
1679         * timezone/asia: Likewise.
1680         * timezone/australasia: Likewise.
1681         * timezone/backward: Likewise.
1682         * timezone/europe: Likewise.
1683         * timezone/northamerica: Likewise.
1684         * timezone/southamerica: Likewise.
1685         * timezone/zone.tab: Likewise.
1686         * timezone/zdump.c: Update from tzcode2005m.
1688         * posix/regexec.c (merge_state_with_log): Define dfa as const pointer.
1689         (transit_state_sb): Likewise.
1690         (transit_state_mb): Likewise.
1691         (sift_states_iter_mb): Likewise.
1692         (check_arrival_add_next_nodes): Likewise.
1693         (check_node_accept_bytes): Change first parameter to pointer-to-const.
1694         [_LIBC] (re_search_2_stub): Use mempcpy.
1696         * posix/regex_internal.c (re_string_reconstruct): Avoid calling
1697         mbrtowc for very simple UTF-8 case.
1699 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1701         * posix/regex_internal.c (build_wcs_upper_buffer): Fix portability
1702         bugs in int versus size_t comparisons.
1704 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1706         * posix/regex_internal.c (re_acquire_state): Make DFA pointer arg
1707         a pointer-to-const.
1708         (re_acquire_state_context): Likewise.
1709         * posix/regex_internal.h: Adjust prototypes.
1711 2005-08-31  Jim Meyering  <jim@meyering.net>
1713         * posix/regcomp.c (search_duplicated_node): Make first pointer arg
1714         a pointer-to-const.
1715         * posix/regex_internal.c (create_ci_newstate, create_cd_newstate,
1716         register_state): Likewise.
1717         * posix/regexec.c (search_cur_bkref_entry, check_dst_limits):
1718         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
1719         (group_nodes_into_DFAstates): Likewise.
1721 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
1723         * posix/regexec.c (re_search_internal): Simplify update of
1724         rm_so and rm_eo by replacing "if (A == B) A += C - B;"
1725         with the equivalent of "if (A == B) A = C;".
1727 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1729         * posix/regcomp.c (re_compile_internal): Change third parameter type
1730         to size_t.
1731         (init_dfa): Likewise.  Make sure that arithmetic on pat_len doesn't
1732         overflow.
1733         * posix/regex_internal.h (struct re_dfa_t): Change type of nodes_alloc
1734         and nodes_len to size_t.
1735         * posix/regex_internal.c (re_dfa_add_node): Use size_t as type for
1736         new_nodes_alloc.  Check for overflow.
1738 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
1740         * posix/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
1741         (optimize_subexps, lower_subexp):
1742         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
1743         since the signed shift might overflow.  Use 1u<<31 instead.
1744         * posix/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
1745         Likewise.
1746         * posix/regexec.c (check_dst_limits_calc_pos_1): Likewise.
1747         (check_subexp_matching_top): Likewise.
1748         * posix/regcomp.c (optimize_subexps, lower_subexp):
1749         Use CHAR_BIT rather than 8, for clarity.
1750         * posix/regexec.c (check_dst_limits_calc_pos_1):
1751         (check_subexp_matching_top): Likewise.
1752         * posix/regcomp.c (init_dfa): Make table_size unsigned, so that we
1753         don't have to worry about portability issues when shifting it left.
1754         Remove no-longer-needed test for table_size > 0.
1755         * posix/regcomp.c (parse_sub_exp): Do not shift more bits than there
1756         are in a word, as the resulting behavior is undefined.
1757         * posix/regexec.c (check_dst_limits_calc_pos_1): Likewise;
1758         in one case, a <= should have been an <, and in another case the
1759         whole test was missing.
1760         * posix/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
1761         the standard name CHAR_BIT.
1763         * posix/regex_internal.h (re_sub_match_top_t): Remove unused member
1764         next_last_offset.
1765         (struct re_dfa_t): Remove unused member states_alloc.
1766         * posix/regcomp.c (init_dfa): Don't initialize unused members.
1768 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1770         * posix/regexec.c (set_regs): Don't alloca with an unbounded size.
1772         alloca modernization/simplification for regex.
1773         * posix/regex.c: Remove portability cruft for alloca.  This no longer
1774         needs to be at the start of the file, and can be moved into
1775         regex_internal.h and simplified.
1776         * posix/regex_internal.h: Include <alloca.h>.
1777         (__libc_use_alloca) [!defined _LIBC]: New macro.
1778         * posix/regexec.c (build_trtable): Remove "#ifdef _LIBC",
1779         since the code now works outside glibc.
1781 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1783         * include/regex.h: Remove use of _RE_ARGS.
1785 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1787         * posix/regexec.c (find_recover_state): Change "err" to "*err".
1789 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1791         * posix/regcomp.c (regerror): Pointer args are 'restrict',
1792         as per POSIX.
1793         * posix/regex.h (regerror): Likewise.
1794         * manual/pattern.texi (POSIX Regexp Compilation): Likewise.
1795         Similarly for regcomp and regexec.  Also, first 2 args of regexec
1796         and 2nd arg of regerror are const.
1798         * posix/regex.c: Do not include <sys/types.h>, as POSIX no longer
1799         requires this.  (The code never needed it.)
1801 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
1803         * posix/regexec.c (sift_states_bkref): re_node_set_insert returns
1804         int, not reg_errcode_t.
1806         * posix/regex_internal.c (calc_state_hash): Put 'inline' before type,
1807         since some broken compilers warn about it otherwise.
1809         * posix/regcomp.c (create_initial_state): Remove duplicate decl.
1811 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
1813         * posix/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
1814         C89 or better.  All uses removed.
1816 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1818         * posix/regex.c: Prevent using C++ compilers.
1820 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
1822         * posix/regcomp.c (duplicate_node): Return new index, not an error
1823         code, and let the caller return REG_ESPACE if out of space.  This
1824         removes an uninitialied-variable warning with GCC 4.0.1, and also
1825         avoids taking the address of a local variable.  All callers
1826         changed.
1828 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1830         * include/time.h (__strptime_internal): Rename parameter to avoid
1831         bogus compiler warning.
1833 2005-08-19  Jim Meyering  <jim@meyering.net>
1835         * posix/regexec.c (proceed_next_node): Redo local variables to
1836         avoid GCC shadowing warnings.
1838 2005-09-06  Ulrich Drepper  <drepper@redhat.com>
1840         * posix/regex_internal.c (re_acquire_state): Minor code rearrangement.
1841         (re_acquire_state_context): Likewise.
1843 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
1845         * posix/regex_internal.c (re_string_realloc_buffers):
1846         (re_node_set_insert, re_node_set_insert_last, re_dfa_add_node):
1847         Rename local variables to avoid GCC shadowing warnings.
1849 2005-07-08  Eric Blake  <ebb9@byu.net>
1850             Paul Eggert  <eggert@cs.ucla.edu>
1852         * posix/regcomp.c (init_dfa): Store __btowc value in wint_t, not
1853         wchar_t.  Remove now-unnecessary cast.
1854         (build_range_exp): Likewise.
1856 2005-08-31  Bob Wilson  <bob.wilson@acm.org>
1858         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf):  Remove the
1859         exponent bias from the increment value for scaling by 2^60.
1861 2005-09-05  Alexandre Oliva  <aoliva@redhat.com>
1863         * configure.in: Compile source test file with -fPIC for -shared.
1865 2005-09-04  Ulrich Drepper  <drepper@redhat.com>
1867         * iconv/skeleton.c: Eliminate DEFINE_DIRECTION_OBJECTS macro use,
1868         it wasn't used.  Remove use of from_object and to_object variable,
1869         replace with some constants.  Adjust users.
1871         * sysdeps/i386/bits/string.h: Removed.
1873         * stdio-common/Makefile (tests): Add tst-put-error.
1874         * stdio-common/tst-put-error.c: New file.
1875         * libio/fileops.c (_IO_new_file_xsputn): If overflow fails and no more
1876         data would have to be written signal error.
1877         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
1879         * libio/fileops.c (_IO_new_file_overflow): Use NULL not 0.
1881 2005-09-02  Ulrich Drepper  <drepper@redhat.com>
1883         * elf/dl-load.c (_dl_map_object_from_fd): No need to change
1884         protection of memory used for the last segment.
1886 2005-08-22  Robert Millan  <robertmh@gnu.org>
1888         * sysdeps/mach/hurd/nfs/nfs.h: Move to ...
1889         * sysdeps/generic/nfs/nfs.h: ... here.
1891 2005-09-01  Ulrich Drepper  <drepper@redhat.com>
1893         * libio/stdio.h: Remove __wur from ungetc, sscanf, and vsscanf.
1894         Add __wur to feof{,_unlocked}, ferror{,_unlocked},
1895         fileno{,_unlocked}, and popen.
1897 2005-08-30  Ulrich Drepper  <drepper@redhat.com>
1899         * sysdeps/ieee754/flt-32/e_hypotf.c [!__STDC__]: Fix function name.
1901 2005-08-01  Bob Wilson  <bob.wilson@acm.org>
1902             Richard Sandiford  <richard@codesourcery.com>
1904         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Add missing
1905         exponent bias to the value for 2^126.
1907 2005-08-30  Jakub Jelinek  <jakub@redhat.com>
1908             Alan Modra  <amodra@bigpond.net.au>
1910         * elf/dl-addr.c (_dl_addr): Use DL_ADDR_SYM_MATCH macro.
1911         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): Define.
1912         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h: New file.
1914 2005-08-23  Ulrich Drepper  <drepper@redhat.com>
1916         * nscd/nscd.c (main): Use error while process isn't running in the
1917         background, not dbg_log.
1918         * nscd/nscd_conf.c (nscd_parse_file): Likewise.
1919         Mark messages with _().  Unify testing for database name.
1921         * nscd/connection.c (DEFAULT_DATASIZE_PER_BUCKET): Move to nscd.h.
1922         (dbs): Initialize max_db_size fields.
1923         (nscd_init): When mapping the database, use max_db_size as the
1924         mapping size even if it is bigger than the file size.
1925         * nscd/mem.c (mempool_alloc): When resizing the file make sure the
1926         limit in max_db_size is not exceeded.  Don't use mremap, just
1927         posix_fallocate is enough (according to Linus).  Use posix_fallocate
1928         correctly.
1929         * nscd/nscd.conf: Add max-db-size parameters.
1930         * nscd/nscd.h (struct database_dyn): Add max_db_size field.
1931         Define DEFAULT_MAX_DB_SIZE and DEFAULT_DATASIZE_PER_BUCKET.
1932         Temporarily define TEMP_FAILURE_RETRY_VAL here.
1933         * nscd/nscd_conf.c (nscd_parse_file): Parse max-db-size parameter
1934         and add sanity checks for it.
1936         * nscd/aicache.c (addhstaiX): Use send with MSG_NOSIGNAL not write to
1937         send reply.
1938         * nscd/connection.c (writeall): Likewise.
1939         (handle_request): Likewise.
1940         * nscd/grpcache.c (cache_addgr): Likewise.
1941         * nscd/hstcache.c (cache_addhst): Likewise.
1942         * nscd/initgrcache.c (addinitgroupsX): Likewise.
1943         * nscd/nscd.c (parse_opt): Likewise.
1944         * nscd/nscd_stat.c (send_stats): Likewise.
1945         (receive_print_stats): Likewise.
1946         * nscd/pwdcache.c (cache_addpw): Likewise.
1948         * sysdeps/unix/sysv/linux/Versions: Export inotify_* syscalls.
1950 2005-08-22  Jakub Jelinek  <jakub@redhat.com>
1952         * stdlib/bits/stdlib.h (mbstowcs): Divide __bos (__dst) by
1953         sizeof (wchar_t) rather than multiplying __len by sizeof (wchar_t).
1954         Pass __bos (__dst) / sizeof (wchar_t) to the *_chk routine.
1955         * wcsmbs/bits/wchar2.h (mbsrtowcs, mbsnrtowcs): Likewise.
1956         * debug/mbsnrtowcs_chk.c (__mbsnrtowcs_chk): Don't multiply
1957         len by sizeof (wchar_t).
1958         * debug/mbsrtowcs_chk.c (__mbsrtowcs_chk): Likewise.
1959         * debug/mbstowcs_chk.c (__mbstowcs_chk): Likewise.
1960         Fix type of SRC argument.  Pass &SRC rather than SRC to
1961         __mbsrtowcs.
1962         * debug/wcstombs_chk.c (__wcstombs_chk): Pass &SRC rather than SRC
1963         to __wcsrtombs.
1964         * debug/tst-chk1.c: Include assert.h.
1965         (do_test): Change enough array from VLA into a fixed size array.
1966         Assert that MB_CUR_MAX is <= sizeof (enough).  Use FAIL () macro
1967         instead of print error details.  Add several new tests.
1968         Kill some unused variable warnings.
1970 2005-08-21  Ulrich Drepper  <drepper@redhat.com>
1972         * resolv/res_send.c (Aerror): Fix printing IP address.
1974         * resolv/res_send.c (send_vc): Pass correct sockaddr size to connect.
1976 2005-08-19  H.J. Lu  <hongjiu.lu@intel.com>
1978         * sysdeps/ia64/fpu/libm_error.c (__libm_error_support): Don't abort.
1980 2005-08-17  Robert Love  <rml@novell.com>
1982         * sysdeps/unix/sysv/linux/sys/inotify.h: Add IN_MOVE_SELF event.
1984 2005-08-19  Bruno Haible  <bruno@clisp.org>
1986         * intl/localealias.c (read_alias_file): In case of failure, close the
1987         file descriptor and sort the array before returning.
1989 2005-08-19  Ulrich Drepper  <drepper@redhat.com>
1991         * malloc/Makefile: Link libmemusage.so with ld.so.
1992         * malloc/memusage.c: Use atomic operations for all counter and size
1993          computations.  Handle thread stacks.
1994         * sysdeps/generic/memusage.h: Define memusage_cntr_t and
1995         memusage_size_t.
1996         * sysdeps/i386/i686/memusage.h: New file.
1997         * include/atomic.h: Define atomic_max and atomic_min.
1999         * debug/tst-chk1.c: Add tests for mbstowcs and wcstombs.
2001 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
2003         [BZ #1207]
2004         * posix/regex.h: Remove spurious space-before-tab.  From gnulib.
2006 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
2008         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
2009         sys/inotify.h.
2010         * sysdeps/unix/sysv/linux/sys/inotify.h: New file.
2011         * sysdeps/unix/sysv/linux/syscalls.list: Add inotify syscalls.
2013         * nscd/cache.c (prune_cache): Add more debug output.  Only for
2014         debug level 3 and higher and very verbose.
2016         * nscd/cache.c (prune_cache): Use stat64 not stat.
2017         * nscd/connections.c (nscd_init): Likewise.
2019 2005-08-10  Sergio Gelato  <Sergio.Gelato@astro.su.se>
2021         [BZ #1188]
2022         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Change assert check
2023         from (len > 0) to (len >= 0).
2025 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
2027         * nis/nis_xdr.c (_xdr_nis_result): Fix type of res variable.
2028         Reported by Thomas Schwinge.
2030 2005-08-15  Jakub Jelinek  <jakub@redhat.com>
2032         * nis/nis_subr.c (nis_leaf_of_r): Handle buflen == 0 correctly.
2034 2005-08-16  Ulrich Drepper  <drepper@redhat.com>
2036         * nss/getent.c (more_help): Use open_memstream instead of handling
2037         memory allocation ourselves.
2039 2005-08-16  Jay Fenlason  <fenlason@redhat.com>
2041         * nss/getent.c (parse_options): change the -s option to support
2042         {database}:{search} to override /etc/resolv.conf for only the
2043         specified database.
2045 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
2047         * nscd/connections.c (main_loop_epoll): Pass NULL as event
2048         argument for epoll_ctl(EPOLL_CTL_DEL) calls.
2050         * nscd/nscd_stat.c (receive_print_stats): Really print values of
2051         thread number, paranoia, and restart interval the server is using.
2053         * argp/argp-help.c: Use _IO_vasprintf instead of vasprintf.
2054         * include/stdio.h: Add libc_hidden_proto for __vfprintf_chk.
2055         * debug/vfprintf_chk.c: Add libc_hidden_def.
2057 2005-08-08  Roland McGrath  <roland@redhat.com>
2059         * argp/argp-help.c (__argp_error): __asprintf -> vasprintf.
2060         (__argp_failure): Likewise.
2062 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
2064         * nscd/cache.c (cache_add): Commit hash table and header to disk.
2066         * nscd/mem.c (mempool_alloc): Use posix_fallocate instead of ftruncate.
2067         * nscd/connections.c (nscd_init): Likewise.
2069 2005-08-08  Jakub Jelinek  <jakub@redhat.com>
2071         * stdio-common/fxprintf.c: Include libioP.h.
2073         * posix/bits/unistd.h (confstr, getgroups, ttyname_r, gethostname,
2074         getdomainname): Add __NTH.
2075         * stdlib/bits/stdlib.h (ptsname_r, wctomb, mbstowcs, wcstombs):
2076         Likewise.
2077         (realpath): Likewise.  Use __const instead of const.  Add __restrict
2078         keywords.
2079         * socket/bits/socket2.h (recvfrom): Add __restrict keyword to __buf.
2080         * wcsmbs/bits/wchar2.h (wmemcpy, wmemmove, wmempcpy, wmemset,
2081         wcscpy, wcpcpy, wcsncpy, wcpncpy, wcscat, wcsncat, vswprintf, wcrtomb,
2082         mbsrtowcs, wcsrtombs, mbsnrtowcs, wcsnrtombs): Add __NTH.
2083         * string/bits/string3.h (__memset_ichk): Likewise.
2084         (__memcpy_ichk, __memmove_ichk, __mempcpy_ichk, __strcpy_ichk,
2085         __stpcpy_ichk, __strncpy_ichk, stpncpy, __strcat_ichk,
2086         __strncat_ichk): Likewise.  Use __const instead of const.
2087         (__stpncpy_chk): Use __const instead of const.
2088         (__stpncpy_alias): Use __REDIRECT_NTH instead of __REDIRECT.
2090 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
2091             Jakub Jelinek  <jakub@redhat.com>
2093         * nscd/mem.c (BLOCK_ALIGN_LOG, BLOCK_ALIGN, BLOCK_ALIGN_M1): Move
2094         definitions to...
2095         * nscd/nscd.h (BLOCK_ALIGN_LOG, BLOCK_ALIGN, BLOCK_ALIGN_M1): ...here.
2096         * nscd/connections.c (usekey): New enum.
2097         (check_use, verify_persistent_db): New functions.
2098         (nscd_init): If persistent database is corrupted, unlink it and
2099         recreate rather than falling back to non-persistent database.
2100         Call verify_persistent_db.  Avoid overflows in total computation.
2102 2005-08-08  Ulrich Drepper  <drepper@redhat.com>
2104         * iconvdata/utf-16.c (PREPARE_LOOP): Minor cleanups to make code
2105         better readable.  Avoid passing var to loop function, it's not
2106         necessary at all.
2108 2005-08-07  Ulrich Drepper  <drepper@redhat.com>
2110         * elf/elf.h (DT_ALPHA_PLTRO): Use symbolic name in DT_ALPHA_PLTRO
2111         definition.
2113 2005-08-05  Ulrich Drepper  <drepper@redhat.com>
2115         * timezone/checktab.awk: Update from tzcode2005k.
2116         * timezone/private.h: Likewise.
2117         * timezone/scheck.c: Likewise.
2118         * timezone/tzselect.ksh: Likewise.
2119         * timezone/zdump.c: Likewise.
2120         * timezone/zic.c: Likewise.
2121         * timezone/africa: Update from tzdata2005k.
2122         * timezone/antarctica: Likewise.
2123         * timezone/asia: Likewise.
2124         * timezone/australasia: Likewise.
2125         * timezone/europe: Likewise.
2126         * timezone/iso3166.tab: Likewise.
2127         * timezone/leapseconds: Likewise.
2128         * timezone/northamerica: Likewise.
2129         * timezone/solar87: Likewise.
2130         * timezone/solar88: Likewise.
2131         * timezone/solar89: Likewise.
2132         * timezone/southamerica: Likewise.
2133         * timezone/zone.tab: Likewise.
2135 2005-08-05  Roland McGrath  <roland@frob.com>
2137         [BZ #1251]
2138         * mach/shortcut.awk: Ignore `weak_alias' lines.
2139         Reported by Alfred M. Szmidt <ams@gnu.org>.
2141         [BZ #1250]
2142         * sysdeps/mach/hurd/mig-reply.c (reply_port): Don't use ?: as lvalue.
2143         Reported by Alfred M. Szmidt <ams@gnu.org>.
2145 2005-08-03  Dwayne Grant McConnell  <dgm69@us.ibm.com>
2147         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s):
2148         Use +=, not =, to append.  Remove duplicate flags.
2149         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
2150         Likewise.  Fix comments.
2152 2005-08-01  Ulrich Drepper  <drepper@redhat.com>
2154         * sysdeps/unix/sysv/linux/sigwait.c (do_sigwait): Restart system
2155         call if it returned EINTR.
2157 2005-07-31  Ulrich Drepper  <drepper@redhat.com>
2159         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Move
2160         helper variable into .data.rel.ro.  Simplify the code.  Extend
2161         comment to explain prelinking.
2163 2005-07-31  Andreas Jaeger  <aj@suse.de>
2165         * include/bits/syslog.h: New file.
2167 2005-07-30  Ulrich Drepper  <drepper@redhat.com>
2169         * elf/dl-load.c [__WORDSIZE==64] (FILEBUF_SIZE): Adjust the value
2170         up.  We have more program header entries now and the note section
2171         was normally not loaded.
2173         * nis/nis_subr.c: Some minor code cleanups.
2175 2005-07-29  Ulrich Drepper  <drepper@redhat.com>
2177         * misc/bits/syslog.h: New file.
2178         * misc/sys/syslog.h: Include <bits/syslog.h> for fortification.
2179         * misc/Makefile (headers): Add bits/syslog.h.
2180         * include/sys/syslog.h: Add __vsyslog_chk prototype and hidden_proto.
2181         * sysdeps/generic/syslog.c: Change vsyslog function to __vsyslog_chk.
2182         Call __vfprintf_chk if necessary.  Make vsyslog a wrapper.  Add
2183         __syslog_chk.
2184         * misc/Versions: Export __syslog_chk and __vsyslog_chk.
2186 2005-07-28  Thomas Schwinge  <schwinge@nic-nac-project.de>
2188         [BZ #1137]
2189         * misc/error.c [_LIBC]: Include <stdbool.h> and <stdint.h>.
2191 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
2193         * nis/nis_xdr.c: Help gcc to avoid generating unnecessary wrapper
2194         functions.
2196 2005-07-28  Jakub Jelinek  <jakub@redhat.com>
2198         * stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf
2199         call.
2200         * gmon/gmon.c (write_gmon): Use __snprintf rather than snprintf.
2202 2005-07-28  Ulrich Drepper  <drepper@redhat.com>
2204         * nis/nis_file.c: Rewrite the two pairs of functions into wrappers
2205         around a pair of new, generalized functions.  22% size reduction.
2207 2005-07-27  Ulrich Drepper  <drepper@redhat.com>
2209         * nis/nis_xdr.c: Remove unnecessary cast which might hide bugs.
2210         Rearrange code.  This reduces the code size 10%.
2212 2005-07-26  Jakub Jelinek  <jakub@redhat.com>
2214         * misc/error.c (error_tail): Fix a comment typo.
2216 2005-07-25  Ulrich Drepper  <drepper@redhat.com>
2218         * po/zh_TW.po: Update from translation team.
2220         * debug/mbstowcs_chk.c: New file.
2221         * debug/wcstombs_chk.c: New file.
2222         * debug/Makefile (routines): Add mbstowcs_chk and wcstombs_chk.
2223         * debug/Versions: Add __mbstowcs_chk and __wcstombs_chk.
2224         * stdlib/bits/stdlib.h: Add definitions for mbstowcs and wcstombs.
2226         * wcsmbs/bits/wchar2.h (mbsrtowcs): Pretty printing.
2228 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
2230         * string/test-memset.c (test_main): Use negative byte value in
2231         test.
2233         * string/test-memset.c (do_one_test): Compare effect of call, not
2234         only return value.
2235         Add a few casts to avoid warnings.
2237 2005-07-24  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
2239         * sysdeps/sh/memset.S (memset): Correct 2nd argument handling.
2241 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
2243         [BZ #1125]
2244         * posix/Makefile (tests): Add tst-execvp4.
2245         * posix/tst-execvp4.c: New file.
2247 2005-07-24  Jakub Jelinek  <jakub@redhat.com>
2249         [BZ #1125]
2250         * posix/execvp.c (execvp): Change path_malloc to
2251         char *, free that pointer on failure.
2253 2005-07-24  Ulrich Drepper  <drepper@redhat.com>
2255         * wcsmbs/bits/wchar2.h: Use __FILE not FILE.
2256         * wcsmbs/Makefile: Add rules to build and run tst-wchar-h.
2257         * wcsmbs/tst-wchar-h.c: New file.
2259 2005-07-22  Ulrich Drepper  <drepper@redhat.com>
2261         * stdio-common/fxprintf.c (__fxprintf): Define variable more local.
2263 2005-07-22  Jakub Jelinek  <jakub@redhat.com>
2265         * wcsmbs/bits/wchar2.h (__vfwprintf_chk, __vwprintf_chk): Use
2266         __gnuc_va_list rather than _G_va_list.
2268 2005-07-22  Roland McGrath  <roland@redhat.com>
2270         [BZ #869]
2271         * Makerules ($(objpfx)stubs): Fix last change.
2273 2005-07-21  Roland McGrath  <roland@redhat.com>
2275         * nscd/Makefile ($(objpfx)nscd): Pass $(nscd-cflags) to $(LINK.o).
2277         * stdlib/Makefile (headers): Move bits/wchar.h to ...
2278         * wcsmbs/Makefile (headers): ... here.  Add bits/wchar2.h too.
2280 2005-07-21  Jakub Jelinek  <jakub@redhat.com>
2282         * wcsmbs/bits/wchar2.h (swprintf): Remove format argument.
2283         * debug/tst-chk1.c (do_test): Add test for swprintf with format
2284         being the last argument.
2286 2005-07-21  Thorsten Kukuk  <kukuk@suse.de>
2288         * debug/getgroups_chk.c (__getgroups_chk): Fix return value.
2290         * stdio-common/fxprintf.c: Include string.h.
2292 2005-07-20  Ulrich Drepper  <drepper@redhat.com>
2294         [BZ #1138]
2295         * sysdeps/x86_64/fpu/libm-test-ulps: Adjust expected atan2f results.
2296         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
2297         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
2299 2005-07-20  Bob Wilson  <bob.wilson@acm.org>
2300             Darin Petkov  <darin@tensilica.com>
2302         [BZ #1138]
2303         * sysdeps/ieee754/flt-32/e_atan2f.c (pi_lo): Correct exponent value.
2305 2005-07-20  Jakub Jelinek  <jakub@redhat.com>
2307         * include/stdio.h (__fxprintf): Remove wfmt argument.
2308         * stdio-common/fxprintf.c: Include assert.h, ctype.h and wchar.h.
2309         (__fxprintf): Remove wfmt argument, create wfmt format string on
2310         the fly from fmt.
2311         * argp/argp-fmtstream.c: Adjust all __fxprintf callers.
2312         * argp/argp-help.c: Likewise.
2313         * assert/assert-perr.c: Likewise.
2314         * assert/assert.c: Likewise.
2315         * gmon/gmon.c: Likewise.
2316         * inet/rcmd.c: Likewise.
2317         * malloc/obstack.c: Likewise.
2318         * misc/error.c: Likewise.
2319         * misc/getpass.c: Likewise.
2320         * posix/getopt.c: Likewise.
2321         * resolv/res_hconf.c: Likewise.
2322         * stdio-common/perror.c: Likewise.
2323         * stdio-common/psignal.c: Likewise.
2324         * stdlib/fmtmsg.c: Likewise.
2325         * sunrpc/auth_unix.c: Likewise.
2326         * sunrpc/clnt_perr.c: Likewise.
2327         * sunrpc/clnt_tcp.c: Likewise.
2328         * sunrpc/clnt_udp.c: Likewise.
2329         * sunrpc/clnt_unix.c: Likewise.
2330         * sunrpc/svc_simple.c: Likewise.
2331         * sunrpc/svc_tcp.c: Likewise.
2332         * sunrpc/svc_udp.c: Likewise.
2333         * sunrpc/svc_unix.c: Likewise.
2334         * sunrpc/xdr.c: Likewise.
2335         * sunrpc/xdr_array.c: Likewise.
2336         * sunrpc/xdr_rec.c: Likewise.
2337         * sunrpc/xdr_ref.c: Likewise.
2338         * sysdeps/generic/wordexp.c: Likewise.
2340 2005-07-20  Ulrich Drepper  <drepper@redhat.com>
2342         * wcsmbs/bits/wchar2.h: Add definitions for wcrtomb, mbsrtowcs,
2343         wcsrtombs, mbsnrtowcs, and wcsnrtombs.
2344         * debug/Makefile (routines): Add wcrtomb_chk, mbsrtowcs_chk,
2345         wcsrtombs_chk, mbsnrtowcs_chk, and wcsnrtombs_chk.
2346         * debug/Versions: Add __wcrtomb_chk, __mbsrtowcs_chk,
2347         __wcsrtombs_chk, __mbsnrtowcs_chk, and __wcsnrtombs_chk.
2348         * debug/tst-chk1.c: Add tests for new functions.
2349         * debug/mbsnrtowcs_chk.c: New file.
2350         * debug/mbsrtowcs_chk.c: New file.
2351         * debug/wcrtomb_chk.c: New file.
2352         * debug/wcsnrtombs_chk.c: New file.
2353         * debug/wcsrtombs_chk.c: New file.
2355 2005-07-19  Ulrich Drepper  <drepper@redhat.com>
2357         * stdio-common/Makefile (aux): Add fxprintf.
2358         * stdio-common/fxprintf.c: New file.
2359         * include/stdio.h: Add declaration for __fxprintf.
2360         * argp/argp-fmtstream.c: Use __fxprintf instead of inline stream
2361         orientation test and two separate function calls.
2362         * argp/argp-help.c: Likewise.
2363         * assert/assert-perr.c: Likewise.
2364         * assert/assert.c: Likewise.
2365         * gmon/gmon.c: Likewise.
2366         * inet/rcmd.c: Likewise.
2367         * malloc/obstack.c: Likewise.
2368         * misc/error.c: Likewise.
2369         * misc/getpass.c: Likewise.
2370         * posix/getopt.c: Likewise.
2371         * resolv/res_hconf.c: Likewise.
2372         * stdio-common/perror.c: Likewise.
2373         * stdio-common/psignal.c: Likewise.
2374         * stdlib/fmtmsg.c: Likewise.
2375         * sunrpc/auth_unix.c: Likewise.
2376         * sunrpc/clnt_perr.c: Likewise.
2377         * sunrpc/clnt_tcp.c: Likewise.
2378         * sunrpc/clnt_udp.c: Likewise.
2379         * sunrpc/clnt_unix.c: Likewise.
2380         * sunrpc/svc_simple.c: Likewise.
2381         * sunrpc/svc_tcp.c: Likewise.
2382         * sunrpc/svc_udp.c: Likewise.
2383         * sunrpc/svc_unix.c: Likewise.
2384         * sunrpc/xdr.c: Likewise.
2385         * sunrpc/xdr_array.c: Likewise.
2386         * sunrpc/xdr_rec.c: Likewise.
2387         * sunrpc/xdr_ref.c: Likewise.
2388         * sysdeps/generic/wordexp.c: Likewise.
2390         [BZ #1137]
2391         * misc/Makefile: Add rules to build and run tst-error1.
2392         * misc/tst-error1.c: New file.
2393         * misc/error.c: Fix memory leak and possibly endless loop.
2395         * configure.in: Check for -fstack-protector gcc option.
2396         * config.make.in (have-ssp): Add template.
2397         * nscd/Makefile (nscd-cflags): Add -fstack-protector if supported.
2399         * nscd/nscd.c (main): Don't ignore result of chdir call.
2401 2005-07-18  Roland McGrath  <roland@redhat.com>
2403         [BZ #869]
2404         * Makerules ($(objpfx)stubs): Do cd into $(objdir) to reduce size of
2405         objdump command line.
2407 2005-07-18  Ulrich Drepper  <drepper@redhat.com>
2409         * nscd/Makefile (nscd-cflags): Add _FORTIFY_SOURCE.
2411         * nscd/connections.c: Fix a few wur warnings.
2413         [BZ #1113]
2414         * nscd/grpcache.c (cache_addgr): Use correct maximum for group ID
2415         length.  Patch by Ivan Gyurdiev <ivg2@cornell.edu>.
2417         * debug/confstr_chk.c: New file.
2418         * debug/getdomainname_chk.c: New file.
2419         * debug/getgroups_chk.c: New file.
2420         * debug/gethostname_chk.c: New file.
2421         * debug/getlogin_r_chk.c: New file.
2422         * debug/ttyname_r_chk.c: New file.
2423         * posix/bits/unistd.h: Add definitions for new debug versions.
2424         * debug/tst-chk1.c: Add tests for new functions.
2425         * debug/Versions: Export new functions.
2426         * debug/Makefile (routines): Add new files.
2428         * stdlib/bits/stdlib.h: Fix typo.
2430 2005-07-13  Thorsten Kukuk  <kukuk@suse.de>
2432         * manual/Makefile (libc/index.html): Depend on dir-add.texi.
2434 2005-07-15  Ulrich Drepper  <drepper@redhat.com>
2436         * stdlib/bits/stdlib.h: Use __REDIRECT_NTH instead of __REDIRECT
2437         where necessary.
2438         * wcsmbs/bits/wchar2.h: Likewise.
2440 2005-07-15  Andreas Jaeger  <aj@suse.de>
2442         * debug/Makefile (tst-lfschk3-ENV): New, set locale.
2443         (tst-lfschk2-ENV): New.
2444         (tst-lfschk1-ENV): New.
2445         (tst-chk3-ENV): New.
2446         (tst-chk2-ENV): New.
2447         (tst-chk1-ENV): New.
2449         [BZ #1079]
2450         * include/stdlib.h: Remove malloc attribute from __posix_memalign.
2451         * stdlib/stdlib.h: Likewise.
2453 2005-07-15  Ulrich Drepper  <drepper@redhat.com>
2455         * wcsmbs/bits/wchar2.h: New file.
2456         * include/bits/wchar2.h: New file.
2457         * wcsmbs/wchar.h: Include <bits/wchar2.h> if fortification is
2458         requested.
2459         * wcsmbs/wcsncpy.c: Add __wcsncpy alias.
2460         * string/bits/string3.h: Add fortified stpncpy definitions.
2461         * sysdeps/generic/stpncpy_chk.c: New file.
2462         * libio/vswprintf.c: Move _IO_wstrnfile definition to strfile.h.
2463         Export _IO_wstrn_jumps.
2464         * libio/strfile.h: Define _IO_wstrnfile and declare _IO_wstrn_jumps.
2465         * include/wchar.h: Declare __wcsncpy and __vswprintf_chk.
2466         * debug/fgetws_chk.c: New file.
2467         * debug/fgetws_u_chk.c: New file.
2468         * debug/fwprintf_chk.c: New file.
2469         * debug/swprintf_chk.c: New file.
2470         * debug/vfwprintf_chk.c: New file.
2471         * debug/vswprintf_chk.c: New file.
2472         * debug/vwprintf_chk.c: New file.
2473         * debug/wcpcpy_chk.c: New file.
2474         * debug/wcpncpy_chk.c: New file.
2475         * debug/wcscat_chk.c: New file.
2476         * debug/wcscpy_chk.c: New file.
2477         * debug/wcsncat_chk.c: New file.
2478         * debug/wcsncpy_chk.c: New file.
2479         * debug/wmemcpy_chk.c: New file.
2480         * debug/wmemmove_chk.c: New file.
2481         * debug/wmempcpy_chk.c: New file.
2482         * debug/wmemset_chk.c: New file.
2483         * debug/wprintf_chk.c: New file.
2484         * debug/tst-chk1.c: Add tests for new functions.
2485         * debug/Versions: Export new functions.
2486         * debug/Makefile (routines): Add new functions.
2488 2005-07-13  Ulrich Drepper  <drepper@redhat.com>
2490         * nscd/nscd_helper.c: Add a few __builtin_expect.
2492         [BZ #1080]
2493         * nscd/connections.c (send_ro_fd): Make sure BUF is aligned correctly.
2494         * nscd/nscd_helper.c (wait_on_socket): New function.
2495         (get_mapping): Use wait_on_socket instead of poll.  The former handles
2496         EINTR of poll correctly.
2497         (__nscd_open_socket): Likewise.
2498         (get_mapping): Make sure BUF is aligned correctly.
2499         (get_mapping): Use munmap on correct pointer.
2501 2005-07-12  Ulrich Drepper  <drepper@redhat.com>
2503         * include/libc-symbols.h: Define macros for librt hidden symbols.
2504         * include/time.h: Add librt_hidden_proto definition for clock_gettime.
2505         * sysdeps/generic/clock_gettime.c: Add librt_hidden_def.
2506         * sysdeps/unix/clock_gettime.c: Likewise.
2508         * stdlib/bits/stdlib.h: New file.
2509         * stdlib/stdlib.h: Include <bits/stdlib.h> if fortification is
2510         requested.
2511         * Makefile (headers): Add bits/stdlib.h.
2512         * include/bits/stdlib.h: New file.
2513         * debug/Depend: New file.
2514         * debug/ptsname_r_chk.c: New file.
2515         * debug/realpath_chk.c: New file.
2516         * debug/wctomb_chk.c: New file.
2517         * debug/Makefile (routines): Add ptsname_r_chk, realpath_chk, and
2518         wctomb_chk.
2519         * debug/Versions: Export __ptsname_r_chk, __realpath_chk, and
2520         __wctomb_chk.
2521         * debug/tst-chk1.c: Add tests for __ptsname_r_chk, __realpath_chk, and
2522         __wctomb_chk.
2524 2005-07-12  Jakub Jelinek  <jakub@redhat.com>
2526         [BZ #1106]
2527         * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c: Include not-cancel.h.
2528         (has_cpuclock): Use open_not_cancel_2 instead of open, read_not_cancel
2529         instead of read and close_not_cancel_no_status instead of close.
2531         [BZ #1106]
2532         * sysdeps/s390/s390-64/bcopy.S (__bcopy): Use
2533         HIDDEN_BUILTIN_JUMPTARGET to jump to memmove.
2535 2005-06-27  Carlos O'Donell  <carlos@systemhalted.org>
2537         * posix/regcomp.c (re_compile_internal): Call __libc_lock_init
2538         after init_dfa.
2540 2005-07-08  Ulrich Drepper  <drepper@redhat.com>
2542         * sysdeps/x86_64/fpu/s_sincosl.S: Use retq not ret.  Remove
2543         alignment.
2544         * sysdeps/x86_64/fpu/s_sincos.S: New file.
2546         * include/fenv.h: Add libm_hidden_proto for fesetround and
2547         feholdexcept.
2548         * sysdeps/alpha/fpu/feholdexcpt.c: Add libm_hidden_def.
2549         * sysdeps/alpha/fpu/fesetround.c: Likewise.
2550         * sysdeps/generic/feholdexcpt.c: Likewise.
2551         * sysdeps/generic/fesetround.c: Likewise.
2552         * sysdeps/i386/fpu/feholdexcpt.c: Likewise.
2553         * sysdeps/i386/fpu/fesetround.c: Likewise.
2554         * sysdeps/ia64/fpu/feholdexcpt.c: Likewise.
2555         * sysdeps/ia64/fpu/fesetround.c: Likewise.
2556         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
2557         * sysdeps/powerpc/fpu/fesetround.c: Likewise.
2558         * sysdeps/s390/fpu/feholdexcpt.c: Likewise.
2559         * sysdeps/s390/fpu/fesetround.c: Likewise.
2560         * sysdeps/sh/sh4/fpu/feholdexcpt.c: Likewise.
2561         * sysdeps/sh/sh4/fpu/fesetround.c: Likewise.
2562         * sysdeps/sparc/fpu/feholdexcpt.c: Likewise.
2563         * sysdeps/sparc/fpu/fesetround.c: Likewise.
2564         * sysdeps/x86_64/fpu/feholdexcpt.c: Likewise.
2565         * sysdeps/x86_64/fpu/fesetround.c: Likewise.
2566         * sysdeps/generic/s_significand.c (__significand): Use __ilogb not
2567         ilogb.
2568         * sysdeps/generic/s_significandf.c (__significandf): Use __ilogbf
2569         not ilogbf.
2570         * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and
2571         __cos, not sin and cos.
2573 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
2575         * resolv/res_send.c (send_dg): Recognize referral results and
2576         treat them as server errors.
2577         Based on a patch by Jason Vas Dias <jvdias@redhat.com>.
2579 2005-07-08  Carlos O'Donell  <carlos@systemhalted.org>
2581         * sysdeps/hppa/setjmp.S (__sigsetjmp): Use %r1 not %r19.
2583         * sysdeps/hppa/add_n.s (__mpn_add_n): Use sr0 or r0, not 0.
2584         * sysdeps/hppa/lshift.s (__mpn_lshift): Likewise.
2585         * sysdeps/hppa/rshift.s (__mpn_rshift): Likewise.
2586         * sysdeps/hppa/sub_n.s (__mpn_sub_n): Likewise.
2587         * sysdeps/hppa/udiv_qrnnd.s (__udiv_qrnnd): Likewise.
2588         * sysdeps/hppa/hppa1.1/udiv_qrnnd.s (__udiv_qrnnd): Likewise.
2590 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
2592         * sysdeps/generic/s_ctanh.c (__ctanh): Handle case of zero den better.
2593         * sysdeps/generic/s_ctanhf.c (__ctanhf): Likewise.
2594         * sysdeps/generic/s_ctanhl.c (__ctanhl): Likewise.
2595         * sysdeps/generic/s_ctan.c (__ctan): Likewise.
2596         * sysdeps/generic/s_ctanf.c (__ctanf): Likewise.
2597         * sysdeps/generic/s_ctanl.c (__ctanl): Likewise.
2599 2005-04-13  H.J. Lu  <hongjiu.lu@intel.com>
2601         [BZ #974]
2602         * csu/elf-init.c (__preinit_array_start): Take int, char **, char **.
2603         (__preinit_array_end): Likewise.
2604         (__init_array_start): Likewise.
2605         (__init_array_end): Likewise.
2606         (__libc_csu_init): Take int argc, char **argv, char **envp.
2607         Call preinit_array and init_array with argc, argv, envp.
2608         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Remove
2609         INIT_MAIN_ARGS.
2610         * sysdeps/powerpc/elf/libc-start.c (INIT_MAIN_ARGS): Removed.
2611         * elf/Makefile (distribute): Add tst-array5.c, tst-array5-static.c,
2612         tst-array5dep.c, and tst-array5.exp.
2613         (tests): Add tst-array5.
2614         (tests-static): Add tst-array5-static.
2615         ($(objpfx)tst-array5): New target.
2616         ($(objpfx)tst-array5.out): Likewise.
2617         ($(objpfx)tst-array5-static.out): Likewise.
2618         * elf/tst-array5-static.c: New file.
2619         * elf/tst-array5-static.exp: Likewise.
2620         * elf/tst-array5.c: Likewise.
2621         * elf/tst-array5.exp: Likewise.
2622         * elf/tst-array5dep.c: Likewise.
2624 2005-07-07  Ulrich Drepper  <drepper@redhat.com>
2626         * sysdeps/unix/sysv/linux/bits/sched.h: Adjust clone prototype.
2628 2005-07-05  Jakub Jelinek  <jakub@redhat.com>
2630         * elf/stackguard-macros.h (STACK_CHK_GUARD): Fix s390/s390x definition.
2631         Reported by Ulrich Weigand <uweigand@de.ibm.com>.
2633         * elf/stackguard-macros.h (STACK_CHK_GUARD): Add ia64 definition.
2635 2005-07-06  Ulrich Drepper  <drepper@redhat.com>
2637         * elf/dl-error.c (_dl_signal_error): When testing for executable
2638         being relocated, take into account that nothing might even be loaded.
2640         * elf/dl-reloc.c [PROF] (_dl_relocate_object): Define
2641         consider_profiling always to zero.  Don't count of compiler to
2642         remove unreached if block.
2643         * sysdeps/x86_64/dl-trampoline.S [PROF] (_dl_runtime_profile):
2644         Don't compile.
2645         * sysdeps/i386/dl-trampoline.S [PROF] (_dl_runtime_profile): Likewise.
2646         * sysdeps/ia64/dl-trampoline.S [PROF] (_dl_runtime_profile): Likewise.
2647         * sysdeps/s390/s390-64/dl-trampoline.S [PROF] (_dl_runtime_profile):
2648         Likewise.
2649         * sysdeps/s390/s390-32/dl-trampoline.S [PROF] (_dl_runtime_profile):
2650         Likewise.
2651         * sysdeps/powerpc/powerpc64/dl-trampoline.S [PROF]
2652         (_dl_profile_resolve): Likewise.
2653         * sysdeps/powerpc/powerpc32/dl-trampoline.S [PROF]
2654         (_dl_profile_resolve): Likewise.
2655         * gmon/Makefile: Add rules to build and run tst-profile-static.
2656         * gmon/tst-profile-static.c: New file.
2657         * Makeconfig (+link-static): Allow passing program-specific flags.
2659 2005-07-05  Thorsten Kukuk  <kukuk@suse.de>
2661         [BZ #1111]
2662         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Check if NSS
2663         module provides getgrgid_r.
2664         (getgrnam_plusgroup): Preserve original return value.
2665         * nis/nss_compat/compat-pwd.c (getpwnam_plususer): Preserve
2666         original return value.
2667         * nis/nss_compat/compat-spwd.c (getspnam_plususer): Likewise.
2669 2005-07-05  Ulrich Drepper  <drepper@redhat.com>
2671         [BZ #1101]
2672         * posix/regex_internal.c (build_wcs_buffer): Use MB_LEN_MAX not
2673         MB_CUR_MAX.
2674         (build_wcs_upper_buffer): Likewise.
2676         * csu/elf-init.c (__libc_csu_fini): Pretty printing.
2678 2005-07-02  Roland McGrath  <roland@redhat.com>
2680         * NEWS: Note LinuxThreads removal.
2681         * manual/install.texi (Installation): Don't mention linuxthreads.
2682         (Configuring and compiling): Don't use linuxthreads as example.
2684         * sysdeps/unix/sysv/linux/configure.in: Check for nptl add-on only,
2685         not linuxthreads.
2686         * sysdeps/unix/sysv/linux/configure: Regenerated.
2687         * resolv/Depend: Add nptl.
2688         * rt/Depend: Likewise.
2690         * linuxthreads, linuxthreads_db: Directories removed (preserved in
2691         ports repository).
2693 2005-06-27  Jakub Jelinek  <jj@ultra.linux.cz>
2695         [BZ #1037]
2696         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: -mv8 is deprecated,
2697         use -mcpu=v8.
2699 2005-06-16  Jakub Jelinek  <jakub@redhat.com>
2701         [BZ #1016]
2702         * sysdeps/ia64/strlen.S (strlen): Change l2 into a local label.
2704 2005-06-23  Thorsten Kukuk  <kukuk@suse.de>
2706         [BZ #1109]
2707         * nscd/nscd_stat.c (receive_print_stats): Replace YESSTR/NOSTR
2708         with own translation.
2710 2005-06-25  Jakub Jelinek  <jakub@redhat.com>
2712         [BZ #1097]
2713         * sunrpc/xdr.c (xdr_hyper, xdr_u_hyper): When decoding, cast
2714         t2 to uint32_t instead of ulong.
2715         * sunrpc/Makefile (tests): Add tst-xdrmem.
2716         * sunrpc/tst-xdrmem.c: New test.
2718         * Versions.def (ld): Add GLIBC_2.4.
2719         * configure.in: Add --enable-stackguard-randomization option.
2720         (ENABLE_STACKGUARD_RANDOMIZE): New define.
2721         * config.h.in (ENABLE_STACKGUARD_RANDOMIZE): Add.
2722         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include stdint.h.
2723         (_dl_setup_stack_chk_guard): New inline function.
2724         * sysdeps/generic/dl-osinfo.h: Include stdint.h.
2725         (_dl_setup_stack_chk_guard): New inline function.
2726         * elf/rtld.c (__stack_chk_guard): New variable.
2727         (dl_main): Remove all traces of TLS_INIT_TP_EXPENSIVE.
2728         Set __stack_chk_guard to _dl_setup_stack_chk_guard (),
2729         use THREAD_SET_STACK_GUARD if defined.
2730         * elf/Versions (ld): Export __stack_chk_guard@@GLIBC_2.4.
2731         * sysdeps/generic/libc-start.c (__stack_chk_guard): New variable.
2732         (__libc_start_main): Set __stack_chk_guard to
2733         _dl_setup_stack_chk_guard (), use THREAD_SET_STACK_GUARD if defined.
2734         * sysdeps/generic/libc-tls.c (__libc_setup_tls): Remove all
2735         traces of TLS_INIT_TP_EXPENSIVE.
2736         * debug/Versions (libc): Export __stack_chk_fail@@GLIBC_2.4.
2737         * debug/Makefile (routines): Add stack_chk_fail.
2738         (static-only-routines): Add stack_chk_fail_local.
2739         * debug/stack_chk_fail_local.c: New file.
2740         * debug/stack_chk_fail.c: New file.
2741         * elf/Makefile: Add rules to build and run tst-stackguard1{,-static}
2742         tests.
2743         * elf/tst-stackguard1.c: New file.
2744         * elf/tst-stackguard1-static.c: New file.
2745         * elf/stackguard-macros.h: New file.
2747 2005-06-21  Ulrich Drepper  <drepper@redhat.com>
2749         * resource/Makefile (tests): Add tst-getrlimit.
2750         * resource/tst-getrlimit.c: New file.
2752         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTPRIO): Fix typo.
2753         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
2754         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
2756 2005-06-20  Ulrich Drepper  <drepper@redhat.com>
2758         * nscd/nscd.init: Get more in line with lsb3.
2759         * nscd/nscd.c: Adjust some error codes to fit in better with lsb3.
2760         * nscd/connections.c: Likewise.
2762 2005-06-20  Jakub Jelinek  <jakub@redhat.com>
2764         [BZ #653]
2765         * sysdeps/unix/sysv/linux/sys/quota.h: Add definitions and types for
2766         _LINUX_QUOTA_VERSION >= 2.
2767         (_LINUX_QUOTA_VERSION): Define if not yet defined.
2769         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_NICE,
2770         RLIMIT_RTPRIO): Add.
2771         (RLIMIT_NLIMITS): Adjust.
2772         * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIMIT_NICE,
2773         RLIMIT_RTPRIO): Add.
2774         (RLIMIT_NLIMITS): Adjust.
2775         * sysdeps/unix/sysv/linux/mips/bits/resource.h (RLIMIT_NICE,
2776         RLIMIT_RTPRIO): Add.
2777         (RLIMIT_NLIMITS): Adjust.
2778         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIMIT_NICE,
2779         RLIMIT_RTPRIO): Add.
2780         (RLIMIT_NLIMITS): Adjust.
2782 2005-06-17  Ulrich Drepper  <drepper@redhat.com>
2784         [BZ #1106]
2785         * time/mktime.c: Always include <string.h> for prototype of
2786         implicitly used memcpy.
2788         [BZ #1104]
2789         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
2790         (truncate64): Use __truncate, not truncate.
2791         (__have_no_truncate64): Renamed from have_no_truncate64.
2792         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c
2793         (__have_no_truncate64): Renamed from have_no_truncate64.
2795         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ulps for complex
2796         float functions for gcc 4.
2798 2005-06-10  Jakub Jelinek  <jakub@redhat.com>
2800         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_runtime_setup):
2801         Handle prelinked libraries and binaries with new style PLT.
2803 2005-06-07  Jakub Jelinek  <jakub@redhat.com>
2805         * elf/elf.h (R_PPC_REL16, R_PPC_REL16_LO, R_PPC_REL16_HI,
2806         R_PPC_REL16_HA): Define.
2808 2005-06-14  Alan Modra  <amodra@bigpond.net.au>
2810         * config.h.in (HAVE_ASM_PPC_REL16): Add.
2811         * elf/elf.h (DT_PPC_GOT, DT_PPC_NUM): Define.
2812         * elf/tls-macros.h (PowerPC32): Include config.h.  Add variants of
2813         TLS_IE, TLS_LD and TLS_GD for new PLT/GOT layout.
2814         * sysdeps/powerpc/powerpc32/configure.in: New file,
2815         * sysdeps/powerpc/powerpc32/dl-dtprocnum.h: New file.
2816         * sysdeps/powerpc/powerpc32/dl-machine.h (DT_PPC): Define.
2817         (ppc_got): New inline function.
2818         (elf_machine_dynamic): Use ppc_got.  Add attribute const.
2819         (elf_machine_load_address): Add attribute const.  Don't use int vars.
2820         Use bcl rather than bl to save trashing branch target stack.  Use
2821         elf_machine_dynamic rather than duplicating code here.
2822         (elf_machine_runtime_setup): New inline function replacing define.
2823         Handle new PLT.
2824         (elf_machine_fixup_plt): Handle new PLT.
2825         (elf_machine_rela): Likewise.
2826         * sysdeps/powerpc/powerpc32/sysdep.h: Include config.h.
2827         (CALL_MCOUNT): Don't set up counter vars.
2828         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Correct comment.
2829         * sysdeps/powerpc/powerpc32/elf/start.S (start_addressesp): Don't
2830         define when HAVE_ASM_PPC_REL16.
2831         (_start): Add HAVE_ASM_PPC_REL16 code.
2832         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Don't bl
2833         into the GOT when HAVE_ASM_PPC_REL16.
2834         * sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
2835         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Ditto.
2836         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S (__ceil): Likewise.
2837         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S (__ceilf): Likewise.
2838         * sysdeps/powerpc/powerpc32/fpu/s_floor.S (__floor): Likewise.
2839         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S (__floorf): Likewise.
2840         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Likewise.
2841         * sysdeps/powerpc/powerpc32/fpu/s_rint.S (__rint): Likewise.
2842         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S (__rintf): Likewise.
2843         * sysdeps/powerpc/powerpc32/fpu/s_round.S (__round): Likewise.
2844         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S (__roundf): Likewise.
2845         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S (__trunc): Likewise.
2846         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S (__truncf): Likewise.
2847         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp):
2848         Likewise.
2849         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S (__brk): Likewise.
2850         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
2851         (__getcontext): Likewise.
2852         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
2853         (__setcontext): Likewise.
2854         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
2855         (__swapcontext): Likewise.
2856         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (stackblock):
2857         Comment.
2858         (__socket): Bomb if NARGS >= 7.  Invoke CGOTSETUP and CGOTRESTORE.
2860 2005-06-17  Ulrich Drepper  <drepper@redhat.com>
2862         [BZ #1106]
2863         * sysdeps/posix/sigignore.c: Include <string.h> to tell the compiler
2864         to use __GI_memset.
2865         * sysdeps/posix/signal.c: Likewise.
2866         * sysdeps/posix/sigset.c: Likewise.
2867         * sysdeps/posix/sysv_signal.c: Likewise.
2868         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
2869         * sysdeps/unix/sysv/linux/sysctl.c: Likewise.
2870         * sysdeps/unix/sysv/linux/system.c: Likewise.
2872 2005-06-15  Jakub Jelinek  <jakub@redhat.com>
2874         [BZ #1088]
2875         * hesiod/hesiod.c (hesiod_init): Don't check for ctx->classes[0] == 0
2876         or both classes equal here.
2877         (parse_config_file): If both classes are equal, clear the second one.
2879 2005-06-08  Karl Kelley  <kekelley@iastate.edu>
2881         [BZ #1088]
2882         * hesiod/hesiod_p.h (struct hesiod_p): Add classes array.
2883         * hesiod/hesiod.c (hesiod_init): Initialize classes.  Fail if no
2884         valid classes were given or if both are equal.
2885         (hesiod_resolve): Use ctx->classes instead of hardcoded C_IN
2886         and C_HS order.
2887         (parse_config_file): Handle classes keyword.
2888         * hesiod/README.hesiod: Mention addition of the classes keyword.
2890 2005-06-14  Ulrich Drepper  <drepper@redhat.com>
2892         [BZ #1085]
2893         * configure.in: Add test for availability of libaudit.
2894         * config.h.in: Define HAVE_LIBAUDIT.
2895         * config.make.in: Define have-libaudit.
2896         * nscd/Makefile: If libaudit is available, link nscd with it.
2897         * nscd/selinux.c: If HAVE_LIBAUDIT is defined, log using libaudit.
2898         Patch by Steve Grubb <sgrubb@redhat.com>.
2900         * debug/pread64_chk.c: Use __libc_pread64 instead of __pread64.
2901         * sysdeps/posix/posix_fallocate64.c: Likewise.
2902         * include/string.h: Use libc_hidden_proto for strnlen.
2903         * sysdeps/generic/strnlen.c: Add libc_hidden_def.
2904         * include/libintl.h: Use libc_hidden_proto for __dcgettext.
2905         * intl/dcgettext.c: Add libc_hidden_def.
2906         * include/execinfo.h: Add libc_hidden_proto for __backtrace and
2907         __backtrace_symbols_fd.
2908         * sysdeps/generic/backtrace.c: Add libc_hidden_def.
2909         * sysdeps/generic/backtracesymsfd.c: Likewise.
2910         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
2911         * sysdeps/i386/backtrace.c: Likewise.
2912         * sysdeps/ia64/backtrace.c: Likewise.
2913         * sysdeps/powerpc/powerpc32/backtrace.c: Likewise.
2914         * sysdeps/powerpc/powerpc64/backtrace.c: Likewise.
2915         * sysdeps/s390/s390-32/backtrace.c: Likewise.
2916         * sysdeps/s390/s390-64/backtrace.c: Likewise.
2918 2005-06-13  Ulrich Drepper  <drepper@redhat.com>
2920         * sysdeps/unix/clock_gettime.c (clock_gettime): Implement case
2921         where HANDLED_REALTIME is not defined.  [BZ #966]
2923 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
2925         [BZ #1096]
2926         * sysdeps/unix/sysv/linux/netlinkaccess.h (__netlink_sendreq,
2927         __netlink_receive): Remove prototypes.
2928         (__netlink_request): New prototype.
2929         * sysdeps/unix/sysv/linux/ifaddrs.c: Include <alloca.h> and
2930         <stdint.h>.
2931         (__netlink_sendreq): Make static.
2932         (__netlink_receive): Rename to...
2933         (__netlink_request): ... this.  Add type argument, call
2934         __netlink_sendreq.  If MSG_TRUNC is set after recvmsg, retry
2935         with a bigger buffer.  Don't record buffers that contain no
2936         messages we are expecting.
2937         (getifaddrs): Use __netlink_request instead of __netlink_sendreq
2938         and __netlink_receive pairs.  Formatting.
2939         * sysdeps/unix/sysv/linux/if_index.c (if_nameindex_netlink): Use
2940         __netlink_request instead of __netlink_sendreq and __netlink_receive
2941         pair.
2943 2005-06-13  Thorsten Kukuk  <kukuk@suse.de>
2945         * sysdeps/unix/sysv/linux/netinet/if_tr.h: Don't include kernel
2946         headers, instead copy important structs/defines.
2948 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
2950         * elf/rtld.c (dl_main): Move DT_DEBUG setup before first
2951         _dl_debug_state call.
2953 2005-06-12  Ulrich Drepper  <drepper@redhat.com>
2955         * elf/dl-error.c (_dl_signal_error): Store information about use of
2956         real malloc in the catch object.
2957         (_dl_catch_error): Forward information about malloc use to caller
2958         in new parameter.
2959         (_dl_out_of_memory): Make static.
2960         * elf/dl-deps.c: Adjust callers of _dl_catch_error.
2961         * elf/dl-libc.c: Likewise.
2962         * elf/dl-open.c: Likewise.
2963         * elf/rtld.c: Likewise.
2964         Add new --audit option.
2965         * sysdeps/generic/ldsodefs.h: Remove _dl_out_of_memory declaration.
2966         (rtld_global_ro._dl_signal_error): Add new parameter.
2967         * include/dlfcn.h (_dl_catch_error): Add new parameter.
2968         * dlfcn/dlfcn.c (_dlerror_run): Pass additional parameter to
2969         _dl_catch_error.  Only free if the returned newly value says so.
2971 2005-06-01  Roland McGrath  <roland@redhat.com>
2973         [BZ #959]
2974         * posix/tst-mmap.c (main): Fill the test file with enough data for the
2975         page size.
2977 2005-05-30  Jakub Jelinek  <jakub@redhat.com>
2979         * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): If
2980         GLRO(dl_osversion) has been already set to a value smaller than
2981         _dl_discover_osversion (), don't overwrite it here.
2983 2005-05-24  Thomas Schwinge  <schwinge@nic-nac-project.de>
2985         * sysdeps/mach/i386/syscall.S (syscall): Call END.
2987 2005-05-28  Richard Henderson  <rth@redhat.com>
2989         * elf/elf.h (DT_ALPHA_PLTRO, DT_ALPHA_NUM): New.
2990         * sysdeps/alpha/dl-dtprocnum.h: New file.
2991         * sysdeps/alpha/dl-machine.h (DT_ALPHA): New.
2992         (elf_machine_load_address): Simplify to rely on gprel relocations.
2993         (elf_machine_runtime_setup): Handle DT_ALPHA_PLTRO plt format.
2994         Remove thread safety workaround for binutils 2.6.
2995         (elf_machine_fixup_plt): Handle DT_ALPHA_PLTRO plt format.
2996         * sysdeps/alpha/dl-trampoline.S (_dl_runtime_resolve_new): New.
2997         (_dl_runtime_profile_new): New.
2998         (_dl_runtime_resolve_old): Rename from _dl_runtime_resolve.
2999         (_dl_runtime_profile_old): Rename from _dl_runtime_profile.  Fix
3000         typo in _dl_call_pltexit argument loading.
3002         * sysdeps/alpha/div_libc.h (funcnoplt): New.
3003         * sysdeps/alpha/divl.S: Use it.
3004         * sysdeps/alpha/divq.S: Likewise
3005         * sysdeps/alpha/divqu.S: Likewise.
3006         * sysdeps/alpha/reml.S: Likewise.
3007         * sysdeps/alpha/remq.S: Likewise.
3008         * sysdeps/alpha/remqu.S: Likewise.
3010 2005-05-26  Andreas Schwab  <schwab@suse.de>
3012         * locale/Makefile (CFLAGS-loadlocale.c): Don't define.
3014 2005-05-26  Ulrich Drepper  <drepper@redhat.com>
3016         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_DIRECT): Fix value.
3017         Reported by Colin Gibbs <colin@gibbsonline.net>.  [BZ #954]
3019 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
3021         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Corrent
3022         _dl_hwcap access in PIC && !SHARED case.
3023         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
3025 2005-05-25  Dwayne Grant McConnell  <dgm69@us.ibm.com>
3027         * gmon/gmon.c: Add space in weak_alias use.
3028         * linuxthreads/sysdeps/unix/sysv/linux/mips/vfork.S: Likewise.
3029         * sysdeps/alpha/htonl.S: Likewise.
3030         * sysdeps/alpha/htons.S: Likewise.
3031         * sysdeps/alpha/elf/start.S: Likewise.
3032         * sysdeps/i386/i386-mcount.S: Likewise.
3033         * sysdeps/ia64/strchr.S: Likewise.
3034         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
3035         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
3036         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
3037         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
3038         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
3039         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
3040         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
3041         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
3042         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
3043         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
3044         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
3045         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
3046         * sysdeps/mach/hurd/readdir64_r.c: Likewise.
3047         * sysdeps/mach/hurd/sigaltstack.c: Likewise.
3048         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
3049         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
3050         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
3051         * sysdeps/powerpc/fpu/s_fabs.S: Likewise.
3052         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
3053         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
3054         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
3055         * sysdeps/powerpc/fpu/s_fmax.S: Likewise.
3056         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
3057         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
3058         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
3059         * sysdeps/powerpc/fpu/s_fmin.S: Likewise.
3060         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
3061         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
3062         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
3063         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
3064         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
3065         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
3066         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
3067         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
3068         * sysdeps/sparc/sparc32/memset.S: Likewise.
3069         * sysdeps/sparc/sparc32/stpcpy.S: Likewise.
3070         * sysdeps/sparc/sparc32/strchr.S: Likewise.
3071         * sysdeps/sparc/sparc32/strchr.S: Likewise.
3072         * sysdeps/sparc/sparc64/memcmp.S: Likewise.
3073         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
3074         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
3075         * sysdeps/sparc/sparc64/memset.S: Likewise.
3076         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
3077         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
3078         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
3079         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
3080         * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: Likewise.
3081         * sysdeps/unix/sysv/linux/alpha/clone.S: Likewise.
3082         * sysdeps/unix/sysv/linux/alpha/getcontext.S: Likewise.
3083         * sysdeps/unix/sysv/linux/alpha/getrusage.S: Likewise.
3084         * sysdeps/unix/sysv/linux/alpha/setcontext.S: Likewise.
3085         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Likewise.
3086         * sysdeps/unix/sysv/linux/alpha/swapcontext.S: Likewise.
3087         * sysdeps/unix/sysv/linux/alpha/syscall.S: Likewise.
3088         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
3089         * sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
3090         * sysdeps/unix/sysv/linux/hppa/clone.S: Likewise.
3091         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
3092         * sysdeps/unix/sysv/linux/i386/makecontext.S: Likewise.
3093         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
3094         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
3095         * sysdeps/unix/sysv/linux/ia64/getcontext.S: Likewise.
3096         * sysdeps/unix/sysv/linux/ia64/setcontext.S: Likewise.
3097         * sysdeps/unix/sysv/linux/mips/clone.S: Likewise.
3098         * sysdeps/unix/sysv/linux/mips/vfork.S: Likewise.
3099         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
3100         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
3101         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
3102         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
3103         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
3104         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
3105         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
3106         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Likewise.
3107         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Likewise.
3108         * sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S: Likewise.
3109         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
3110         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
3111         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Likewise.
3112         * sysdeps/unix/sysv/linux/wordsize-64/getdents.c: Likewise.
3113         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
3114         * sysdeps/unix/sysv/linux/x86_64/makecontext.c: Likewise.
3115         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
3116         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
3117         * sysdeps/x86_64/_mcount.S: Likewise.
3119 2005-05-24  Roland McGrath  <roland@redhat.com>
3121         * sysdeps/unix/sysv/linux/i386/sysdep.h
3122         (SETUP_PIC_REG, LOAD_PIC_REG): Move these macros ...
3123         * sysdeps/i386/sysdep.h [PIC]: ... to here.
3125 2005-05-23  Roland McGrath  <roland@redhat.com>
3127         * sysdeps/arm, sysdeps/unix/arm, sysdeps/unix/sysv/linux/arm:
3128         Subdirectories moved to ports repository.
3129         * configure.in (base_machine): Remove arm* and thumb* patterns.
3130         * shlib-versions (arm.*-.*-linux.*): Remove this pattern.
3132 2005-05-23  Ulrich Drepper  <drepper@redhat.com>
3134         [BZ #1086]
3135         * sunrpc/bindrsvprt.c (LOWPORT): Apparently some mountd
3136         implementations are broken and don't accept ports < 512.
3138 2005-05-22  Dmitry V. Levin  <ldv@altlinux.org>
3140         [BZ #961]
3141         * io/sys/sendfile.h: Remove __nonnull from sendfile and sendfile64
3142         declarations.
3144 2005-05-23  Ulrich Drepper  <drepper@redhat.com>
3146         [BZ #1086]
3147         * sunrpc/pm_getport.c (__get_socket): New function.
3148         (pmap_getport): Use it to open a non-reserved socket to the portmapper
3149         for TCP.
3150         * include/rpc/pmap_clnt.h (__get_socket): Declare.
3151         * sunrpc/pm_getmaps.c (pmap_getmaps): Use __get_socket to get an
3152         non-reserved socket for the portmapper.
3153         Based on a patch by Steve Dickson <steved@redhat.com>.
3155         [BZ #1086]
3156         * sunrpc/bindrsvprt.c (bindresvport): Try harder to find a port.
3157         If we tried looking at the usual range without success extend the
3158         range to even lower ports.
3160         * sysdeps/unix/clock_gettime.c (clock_gettime): Revert last patch.
3162 2005-05-22  Andreas Schwab  <schwab@suse.de>
3164         * elf/rtld.c: Include <dl-osinfo.h>.
3166 2005-05-17  Alan Modra  <amodra@bigpond.net.au>
3168         * sysdeps/powerpc/powerpc32/sysdep.h (PSEUDO_RET): Don't use
3169         JUMPTARGET.  Instead append @local to __syscall_error.
3170         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Delete all occurrences
3171         of JUMPTARGET.  Instead append @local to labels.
3172         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
3173         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
3174         * sysdeps/powerpc/powerpc32/ppc-mcount.S: Likewise.
3175         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
3176         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
3177         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
3178         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
3179         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Likewise.
3180         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
3181         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
3182         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
3184         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Use float constants.
3185         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
3186         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Likewise.
3187         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
3188         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.  Use one GOT
3189         slot to access both constants.
3190         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
3191         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
3193         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S (TWO52.0): Delete.
3194         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S (TWO23.0): Delete.
3195         * sysdeps/powerpc/powerpc32/fpu/s_floor.S (TWO52.0): Delete.
3196         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S (TWO23.0): Delete.
3197         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Comment typo.
3198         (NEGZERO.0, POINTFIVE.0): Delete.
3199         * sysdeps/powerpc/powerpc32/fpu/s_rint.S (TWO52.0): Delete.
3200         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S (TWO23.0): Delete.
3201         * sysdeps/powerpc/powerpc32/fpu/s_round.S (__round): Code in .text.
3202         (TWO52.0, POINTFIVE.0): Delete.
3203         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S (__roundf): Code in .text.
3204         (TWO23.0, POINTFIVE.0): Delete.
3205         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S (__trunc): Code in .text.
3206         (TWO52.0): Delete.
3207         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S (__truncf): Code in .text.
3208         (TWO23.0): Delete.
3209         * sysdeps/powerpc/powerpc32/memset.S (memset): Formatting.
3211 2005-05-19  Richard Henderson  <rth@redhat.com>
3213         * sysdeps/unix/clock_gettime.c (clock_gettime): Fix typo around
3214         CLOCK_REALTIME.
3216         * sysdeps/ia64/bits/atomic.h (__arch_compare_and_exchange_bool_32_acq,
3217         __arch_compare_and_exchange_bool_64_acq,
3218         __arch_compare_and_exchange_val_32_acq,
3219         __arch_compare_and_exchange_val_64_acq, atomic_exchange_and_add):
3220         Use __sync builtin without _si or _di suffix.
3222 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
3224         [BZ #955]
3225         * iconvdata/ibm939.c (BODY): Avoid segfaults with input characters
3226         <UFFFF> and above.
3228 2005-05-17  Andreas Schwab  <schwab@suse.de>
3230         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
3231         (clock_getcpuclockid): Always return a defined value.
3233 2005-05-17  Neal H. Walfield  <neal@gnu.org>
3235         [BZ #1350]
3236         * sysdeps/posix/getaddrinfo.c (gaih_local): Check [_HAVE_SA_LEN]
3237         instead of [SALEN].
3238         (gaih_inet): Likewise.
3240 2005-05-11  Ulrich Drepper  <drepper@redhat.com>
3242         * elf/elf.h (Elf32_auxv_t): Make cross-compile safe.
3243         (Elf64_auxv_t): Likewise.
3244         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Adjust for
3245         removal of a_ptr element in ElfXX_auxv_t.
3246         * elf/dl-support.c (_dl_aux_init): Likewise.
3248 2005-05-09  Daniel Jacobowitz  <dan@codesourcery.com>
3250         * sysdeps/unix/sysv/linux/clock_getres.c: Include <time.h>.
3251         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
3253 2005-05-09  Alan Modra  <amodra@bigpond.net.au>
3255         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
3256         .pushsection/.popsection in place of .section/.previous.
3258 2005-05-08  Ulrich Drepper  <drepper@redhat.com>
3260         * MakeTAGS: Make xgettext not look into test cases.
3262         * MakeTAGS: Make sure translations in error calls are marked with
3263         c-format by xgettext.
3265 2005-05-07  Ulrich Drepper  <drepper@redhat.com>
3267         * intl/libintl.h: Always use __attribute_format_arg__ for gettext
3268         functions since gcc sometimes forgets the attribute for the
3269         standard functions.
3271 2005-05-06  Jakub Jelinek  <jakub@redhat.com>
3273         [BZ #934]
3274         * posix/regex_internal.h: Include bits/libc-lock.h or define dummy
3275         __libc_lock_* macros if not _LIBC.
3276         (struct re_dfa_t): Add lock.
3277         * posix/regcomp.c (re_compile_internal): Add __libc_lock_init.
3278         * posix/regexec.c (regexec, re_search_stub): Add locking.
3280 2005-05-04  Jakub Jelinek  <jakub@redhat.com>
3282         * intl/Makefile (tst-gettext[45].out): Pass also $(run-program-prefix)
3283         as argument to the scripts.
3284         * intl/tst-gettext2.sh: Use mkdir -p instead of test -d + mkdir.
3285         * intl/tst-gettext4.sh: Likewise.  Use run_program_prefix argument.
3286         * intl/tst-gettext5.sh: Likewise.
3288         * intl/tst-translit.sh: Add mkdir -p.
3290         * sysdeps/unix/sysv/linux/i386/sysdep.h (SETUP_PIC_REG): Use
3291         .ifndef/.endif to allow use of this macro more than once per .S
3292         file.
3293         (LOAD_PIC_REG): New macro.
3294         * sysdeps/unix/sysv/linux/i386/makecontext.S: Add call frame
3295         information.
3296         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
3297         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
3298         * sysdeps/i386/fpu/s_asinh.S: Use LOAD_PIC_REG macro.  Add call frame
3299         information.
3300         * sysdeps/i386/fpu/e_log10f.S: Likewise.
3301         * sysdeps/i386/fpu/s_expm1.S: Likewise.
3302         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
3303         * sysdeps/i386/fpu/e_log2l.S: Likewise.
3304         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
3305         * sysdeps/i386/fpu/s_lrint.S: Likewise.
3306         * sysdeps/i386/fpu/s_llrint.S: Likewise.
3307         * sysdeps/i386/fpu/s_ilogbf.S: Likewise.
3308         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
3309         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
3310         * sysdeps/i386/fpu/e_log.S: Likewise.
3311         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
3312         * sysdeps/i386/fpu/s_lrintl.S: Likewise.
3313         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
3314         * sysdeps/i386/fpu/e_scalb.S: Likewise.
3315         * sysdeps/i386/fpu/s_log1p.S: Likewise.
3316         * sysdeps/i386/fpu/s_nearbyintl.S: Likewise.
3317         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
3318         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
3319         * sysdeps/i386/fpu/s_nearbyintf.S: Likewise.
3320         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
3321         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
3322         * sysdeps/i386/fpu/s_lrintf.S: Likewise.
3323         * sysdeps/i386/fpu/e_acosh.S: Likewise.
3324         * sysdeps/i386/fpu/s_cexp.S: Likewise.
3325         * sysdeps/i386/fpu/s_ilogbl.S: Likewise.
3326         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
3327         * sysdeps/i386/fpu/e_powl.S: Likewise.
3328         * sysdeps/i386/fpu/e_powf.S: Likewise.
3329         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
3330         * sysdeps/i386/fpu/e_logl.S: Likewise.
3331         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
3332         * sysdeps/i386/fpu/s_frexp.S: Likewise.
3333         * sysdeps/i386/fpu/e_pow.S: Likewise.
3334         * sysdeps/i386/fpu/e_logf.S: Likewise.
3335         * sysdeps/i386/fpu/e_log2.S: Likewise.
3336         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
3337         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
3338         * sysdeps/i386/fpu/s_llrintf.S: Likewise.
3339         * sysdeps/i386/fpu/s_ilogb.S: Likewise.
3340         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
3341         * sysdeps/i386/fpu/e_atanh.S: Likewise.
3342         * sysdeps/i386/fpu/e_log10.S: Likewise.
3343         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
3344         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
3345         * sysdeps/i386/fpu/s_llrintl.S: Likewise.
3346         * sysdeps/i386/fpu/e_log10l.S: Likewise.
3347         * sysdeps/i386/fpu/s_nearbyint.S: Likewise.
3348         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
3349         * sysdeps/i386/fpu/e_log2f.S: Likewise.
3350         * sysdeps/i386/addmul_1.S: Various fixes to cfi handling.
3351         * sysdeps/i386/mul_1.S: Likewise.
3352         * sysdeps/i386/strtok.S: Likewise.
3353         * sysdeps/i386/sub_n.S: Likewise.
3354         * sysdeps/i386/submul_1.S: Likewise.
3355         * sysdeps/i386/i586/addmul_1.S: Likewise.
3356         * sysdeps/i386/i586/memcpy.S: Likewise.
3357         * sysdeps/i386/i586/mul_1.S: Likewise.
3358         * sysdeps/i386/i586/rshift.S: Likewise.
3359         * sysdeps/i386/i586/sub_n.S: Likewise.
3360         * sysdeps/i386/i586/submul_1.S: Likewise.
3361         * sysdeps/i386/i686/memcmp.S: Likewise.
3362         * sysdeps/i386/i686/memmove.S: Likewise.
3363         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
3364         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
3365         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
3366         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
3368 2005-05-03  Ulrich Drepper  <drepper@redhat.com>
3370         * sysdeps/i386/add_n.S: Add call frame information.
3371         * sysdeps/i386/addmul_1.S: Likewise.
3372         * sysdeps/i386/bsd-setjmp.S: Likewise.
3373         * sysdeps/i386/lshift.S: Likewise.
3374         * sysdeps/i386/memchr.S: Likewise.
3375         * sysdeps/i386/memcmp.S: Likewise.
3376         * sysdeps/i386/mul_1.S: Likewise.
3377         * sysdeps/i386/rawmemchr.S: Likewise.
3378         * sysdeps/i386/rshift.S: Likewise.
3379         * sysdeps/i386/stpncpy.S: Likewise.
3380         * sysdeps/i386/strchr.S: Likewise.
3381         * sysdeps/i386/strchrnul.S: Likewise.
3382         * sysdeps/i386/strcspn.S: Likewise.
3383         * sysdeps/i386/strpbrk.S: Likewise.
3384         * sysdeps/i386/strrchr.S: Likewise.
3385         * sysdeps/i386/strspn.S: Likewise.
3386         * sysdeps/i386/strtok.S: Likewise.
3387         * sysdeps/i386/sub_n.S: Likewise.
3388         * sysdeps/i386/submul_1.S: Likewise.
3389         * sysdeps/i386/elf/bsd-setjmp.S: Likewise.
3390         * sysdeps/i386/i486/strcat.S: Likewise.
3391         * sysdeps/i386/i586/add_n.S: Likewise.
3392         * sysdeps/i386/i586/addmul_1.S: Likewise.
3393         * sysdeps/i386/i586/lshift.S: Likewise.
3394         * sysdeps/i386/i586/memcpy.S: Likewise.
3395         * sysdeps/i386/i586/memset.S: Likewise.
3396         * sysdeps/i386/i586/mul_1.S: Likewise.
3397         * sysdeps/i386/i586/rshift.S: Likewise.
3398         * sysdeps/i386/i586/strchr.S: Likewise.
3399         * sysdeps/i386/i586/strcpy.S: Likewise.
3400         * sysdeps/i386/i586/sub_n.S: Likewise.
3401         * sysdeps/i386/i586/submul_1.S: Likewise.
3402         * sysdeps/i386/i686/add_n.S: Likewise.
3403         * sysdeps/i386/i686/memcmp.S: Likewise.
3404         * sysdeps/i386/i686/memmove.S: Likewise.
3405         * sysdeps/i386/i686/mempcpy.S: Likewise.
3406         * sysdeps/i386/i686/memset.S: Likewise.
3407         * sysdeps/i386/i686/strtok.S: Likewise.
3408         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
3409         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
3410         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
3411         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Likewise.
3412         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
3413         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
3415         * sysdeps/i386/fpu/libm-test-ulps: Adjust for gcc 4.
3417         * sysdeps/unix/sysv/linux/kernel-features.h: waitid is available
3418         on ppc in 2.6.12.
3420 2005-04-29  Jakub Jelinek  <jakub@redhat.com>
3422         [BZ #1083]
3423         * sysdeps/posix/posix_fallocate.c (posix_fallocate): If len == 0,
3424         call ftruncate if offset is bigger than current size.  Make sure
3425         the file is offset + len bytes long if that is more than current size.
3426         Don't overwrite previous content of the file.
3427         * sysdeps/posix/posix_fallocate64.c (__posix_fallocate64_l64):
3428         Likewise.
3430 2005-05-02  Roland McGrath  <roland@redhat.com>
3432         [BZ #924]
3433         * crypt/md5.c [! HAVE_MEMCPY] (memcpy): Yield proper expression value.
3435 2005-04-29  Roland McGrath  <roland@redhat.com>
3437         * timezone/africa: Update from tzdata2005i.
3438         * timezone/asia: Likewise.
3439         * timezone/northamerica: Likewise.
3440         * timezone/yearistype: Likewise.
3442         * sysdeps/i386/sysdep.h (CALL_MCOUNT): Fix typo in last change.
3444 2005-04-29  Ulrich Drepper  <drepper@redhat.com>
3446         [BZ #1093]
3447         * nis/nis_table.c: Fix realloc handling.
3448         * nis/nis_removemember.c: Likewise.
3450 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
3452         [BZ #798]
3453         * nscd/Makefile: Help losers who use --with-headers.
3455 2005-04-28  Roland McGrath  <roland@redhat.com>
3457         [BZ #796]
3458         * sysdeps/unix/sysv/linux/dl-sysdep.h: New file.
3459         Define NEED_DL_SYSINFO_DSO for all platforms.
3461         * sysdeps/generic/dl-sysdep.h: Remove multiple inclusion protection.
3462         * sysdeps/alpha/dl-sysdep.h: Likewise.
3463         Use #include_next instead of duplicating generic file's contents.
3464         * sysdeps/ia64/dl-sysdep.h: Likewise.
3465         * sysdeps/sparc/dl-sysdep.h: Likewise.
3467 2005-03-22  Steven Munroe  <sjmunroe@us.ibm.com>
3469         * sysdeps/powerpc/powerpc64/memset.S (memset): Make ___memset local.
3471 2005-03-07  Steven Munroe  <sjmunroe@us.ibm.com>
3473         [BZ #781]
3474         * sysdeps/unix/sysv/linux/kernel-features.h
3475         (__ASSUME_TGKILL): Define for powerpc32/64 starting with 2.6.1.
3476         (__ASSUME_UTIMES): Define for powerpc32/64 starting with 2.6.1.
3477         (__ASSUME_FADVISE64_64_SYSCALL): Define for powerpc32 only starting
3478         with 2.6.1.
3479         (__ASSUME_WAITID_SYSCALL): Don't define for powerpc32/64.
3481 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
3483         * sysdeps/i386/sysdep.h: Add cfi instrumentation to asm fragments.
3484         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3485         * sysdeps/unix/sysv/linux/i386/socket.S: Remove now duplicate
3486         cfi_startproc and cfi_endproc.
3488         * configure.in: Remove ultrasparc names.
3490         * sysdeps/i386/i686/memcmp.S: Move misplaced END.
3492 2005-03-27  Bruno Haible  <bruno@clisp.org>
3494         Make it possible for multiple threads to use gettext() in different
3495         locales.
3496         * intl/dcigettext.c (HAVE_PER_THREAD_LOCALE): New macro.
3497         (struct known_translation_t): If HAVE_PER_THREAD_LOCALE, add localename
3498         field.
3499         (transcmp): If HAVE_PER_THREAD_LOCALE, compare localename fields.
3500         (DCIGETTEXT): If HAVE_PER_THREAD_LOCALE, fill the localename field in
3501         search and newp.
3503         * intl/tst-gettext4.c: New file.
3504         * intl/tst-gettext4.sh: New file.
3505         * intl/tst-gettext4-de.po: New file.
3506         * intl/tst-gettext4-fr.po: New file.
3507         * intl/tst-gettext5.c: New file.
3508         * intl/tst-gettext5.sh: New file.
3509         * intl/Makefile (distribute): Add tst-gettext4.sh, tst-gettext4-de.po,
3510         tst-gettext4-fr.po, tst-gettext5.sh.
3511         (multithread-test-srcs): New variable.
3512         (test-srcs): Add its contents.
3513         (tests): Depend on tst-gettext4.out, tst-gettext5.out.
3514         (tst-gettext4.out, tst-gettext5.out): New rules.
3515         (CFLAGS-tst-gettext4.c, CFLAGS-tst-gettext5.c): New variables.
3516         Add rule for linking the multithread-test-srcs with the appropriate
3517         thread-library.
3519 2005-04-28  Ulrich Drepper  <drepper@redhat.com>
3521         * po/rw.po: New file.  From translation team.
3523         * scripts/config.guess: Update from upstream.
3524         * scripts/config.sub: Likewise.
3526 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
3528         [BZ #1094]
3529         * nscd/connections.c (nscd_run): Use time() value in prune_cache
3530         call, not timeout value, since the latter might be from another clock.
3532 2005-04-27  Roland McGrath  <roland@redhat.com>
3534         [BZ #877]
3535         * posix/unistd.h: Remove __nonnull from acct decl.
3537         * rt/tst-cpuclock1.c: New file.
3538         * rt/tst-cpuclock2.c: New file.
3539         * rt/tst-cputimer1.c: New file.
3540         * rt/tst-cputimer2.c: New file.
3541         * rt/tst-cputimer3.c: New file.
3542         * rt/Makefile (tests): Add them.
3544         * sysdeps/unix/sysv/linux/kernel-posix-cpu-timers.h: New file.
3545         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: New file.
3546         * sysdeps/unix/sysv/linux/ia64/clock_getcpuclockid.c
3547         (HAS_CPUCLOCK): New macro.
3548         (clock_getcpuclockid): Function removed.
3549         #include the new linux file to define it instead.
3550         * sysdeps/unix/clock_gettime.c [HP_TIMING_AVAIL] (hp_timing_gettime):
3551         New function, broken out of ...
3552         (clock_gettime) [HP_TIMING_AVAIL]: ... here.  Call it.
3553         (realtime_gettime): New function, broken out of ...
3554         (clock_gettime) [! HANDLED_REALTIME]: ... here.  Call it.
3555         (clock_gettime) [SYSDEP_GETTIME_CPU]: Use new macro in default case.
3556         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): New macro.
3557         (SYSDEP_GETTIME_CPUTIME): New macro.
3558         (SYSDEP_GETTIME): Use both.
3559         [! __ASSUME_POSIX_TIMERS] (maybe_syscall_gettime): New function, broken
3560         out of ...
3561         (SYSDEP_GETTIME): ... here.  Use it.
3562         [__NR_clock_gettime] (HANDLED_CPUTIME): Define it.
3563         (SYSDEP_GETTIME_CPUTIME): New macro.  Handle CPU timers by trying
3564         kernel support and falling back to hp-timing code.
3565         * sysdeps/posix/clock_getres.c
3566         [HP_TIMING_AVAIL] (hp_timing_getres): New function, broken out of ...
3567         (clock_getres) [HP_TIMING_AVAIL]: ... here.  Call it.
3568         (realtime_getres): New function, broken out of ...
3569         (clock_getres) [! HANDLED_REALTIME]: ... here.  Call it.
3570         (clock_getres) [SYSDEP_GETRES_CPU]: Use new macro in default case.
3571         * sysdeps/unix/sysv/linux/clock_getres.c (SYSCALL_GETRES): New macro.
3572         (SYSDEP_GETRES_CPUTIME): New macro.
3573         (SYSDEP_GETRES): Use both.
3574         [! __ASSUME_POSIX_TIMERS] (maybe_syscall_getres): New function, broken
3575         out of ...
3576         (SYSDEP_GETRES): ... here.  Use it.
3577         [__NR_clock_getres] (HANDLED_CPUTIME): Define it.
3578         (SYSDEP_GETRES_CPUTIME): New macro.  Handle CPU timers by trying
3579         kernel support and falling back to hp-timing code.
3580         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Handle
3581         CLOCK_PROCESS_CPUTIME_ID and CLOCK_PROCESS_THREAD_ID specially,
3582         translating to the kernel clockid_t for our own process/thread clock.
3584 2005-04-27  Ulrich Drepper  <drepper@redhat.com>
3586         * stdlib/test-canon.c: Make doesExist a directory and add more tests
3587         for the new error case.
3589 2004-06-02  Dmitry V. Levin  <ldv@altlinux.org>
3590             Ranjani Murthy <ranmur@gmail.com>
3592         * stdlib/canonicalize.c (__realpath): Change realpath(3) to
3593         return NULL and set errno to ENOTDIR for such pathnames like
3594         "/path/to/existing-non-directory/".
3596 2005-04-26  Ulrich Drepper  <drepper@redhat.com>
3598         [BZ #1105]
3599         * time/strptime_l.c (__strptime_internal): Handle 'z' to set
3600         tm_gmtoff.
3601         * time/Makefile (tests): Add tst-strptime2.
3602         * time/tst-strptime2.c: New file.
3604 2005-04-26  Jakub Jelinek  <jakub@redhat.com>
3606         [BZ #1081]
3607         * elf/dl-close.c: Include stddef.h.
3608         (_dl_close): If called recursively, just remember GC needs to be rerun
3609         and decrease l_direct_opencount.  Avoid GC if l_direct_opencount
3610         decreased to 1.  Rerun GC at the end if any destructor unloaded some
3611         additional libraries.
3612         * elf/Makefile: Add rules to build and run unload6 test.
3613         * elf/unload6.c: New test.
3614         * elf/unload6mod1.c: New file.
3615         * elf/unload6mod2.c: New file.
3616         * elf/unload6mod3.c: New file.
3618         * malloc/hooks.c (mem2chunk_check): Add magic_p argument, set *magic_p
3619         if magic_p is not NULL.
3620         (top_check): Invoke MALLOC_FAILURE_ACTION if MORECORE failed.
3621         (malloc_check): Fail if sz == -1.
3622         (free_check): Adjust mem2chunk_check caller.
3623         (realloc_check): Likewise.  Fail if bytes == -1.  If bytes == 0 and
3624         oldmem != NULL, call free_check and return NULL.  If reallocating
3625         and returning NULL, invert magic byte again to make oldmem valid
3626         region for further checking.
3627         (memalign_check): Fail if bytes == -1.
3628         * malloc/Makefile: Add rules to build and run tst-mcheck.
3629         * malloc/tst-mcheck.c: New test.
3631 2005-04-26  Ulrich Drepper  <drepper@redhat.com>
3633         [BZ #1110]
3634         * stdio-common/vfscanf.c: Correctly account for characters of
3635         decimal points right after +-.
3637 2005-04-26  Roland McGrath  <roland@redhat.com>
3639         * elf/rtld-Rules (rtld-all): Test ifndef rtld-modules instead of
3640         ifeq ($(subdir),elf) to distinguish main driver from subdir runs.
3642 2005-04-25  Roland McGrath  <roland@redhat.com>
3644         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
3645         (INTERNAL_SYSCALL_ERROR_P): Fix typo in last change.
3647         * sunrpc/xdr.c (xdr_u_int): Use `long' for L and cast where needed.
3649         * elf/dl-load.c: Revert last change.
3651 2005-04-24  Ulrich Drepper  <drepper@redhat.com>
3653         [BZ #1110]
3654         * stdio-common/vfscanf.c: Fix parsing of decimal point after +-.
3655         Patch by Hamed Malek <hamed@bamdad.org>.
3657 2005-04-21  Roland McGrath  <roland@redhat.com>
3659         * elf/dl-load.c (_dl_map_object_from_fd): Don't use MAP_DENYWRITE,
3660         since Linux ignores it in user mmap calls.
3662 2005-04-17  David S. Miller  <davem@davemloft.net>
3664         * sysdeps/sparc/sparc32/elf/start.S: Define __data_start.
3665         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
3667 2005-04-15  Roland McGrath  <roland@redhat.com>
3669         * timezone/Makefile (zic-deps): New variable.
3670         ($(testdata)/America/New_York): Use it instead of explicit deps.
3671         ($(testdata)/Etc/UTC, $(testdata)/Australia/Melbourne): Likewise.
3672         ($(testdata)/America/Sao_Paulo, $(testdata)/Asia/Tokyo): Likewise.
3673         (%/UTC %/Universal): New pattern rule, replaces ...
3674         ($(testdata)/UTC, $(testdata)/Universal): ... these removed targets.
3675         ($(testdata)/%/Berlin $(testdata)/%/London): New pattern rule.
3676         ($(testdata)/Europe/London, $(testdata)/Europe/Berlin): Removed.
3678 2005-04-14  Roland McGrath  <roland@redhat.com>
3680         * MakeTAGS ($P/$(domain).pot): Depend on distinfo file as well.
3681         (extract): Filter-out distinfo file name.
3683         [BZ #253]
3684         * MakeTAGS (text-srcs): Match %.bash.in files too.
3686         [BZ #253]
3687         * nscd/Makefile (all-nscd-modules): New variable, include selinux
3688         module regardless of configuration.
3689         (distribute): Use that instead of $(nscd-modules).
3691 2005-04-13  David S. Miller  <davem@davemloft.net>
3693         Add sparc64 TLS and NPTL support.
3694         * elf/tls-macros.h: Add Sparc64 defines.
3695         * sysdeps/sparc/sparc64/dl-machine.h (sparc64_fixup_plt): Mark as
3696         always_inline.
3697         (elf_machine_fixup_plt): Likewise.
3698         (elf_machine_rela): Handle TLS relocations.
3699         (elf_machine_type_cleaa): Likewise.
3700         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
3701         (SYSCALL_ERROR_HANDLER_ENTRY): Use sethi/or for GOT reloc.
3702         It does not always fit in R_SPARC_GOT13 when building -fPIC.
3703         Also, add TLS handling.
3704         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
3705         Increase it to 2.4.21 for sparc64.
3706         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: NULL terminate
3707         backtrace by zero'ing out %fp.  Store away flags, func_ptr,
3708         and func_arg in global registers not local registers.
3709         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Handle PTID, TLS,
3710         and CTID arguments properly.  Add RESET_PID handling.
3711         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Rework so that we
3712         do not invoke __sigprocmask().  We can always assume rt signals
3713         are present on sparc64, so just do an inline syscall.
3715 2005-04-13  Jakub Jelinek  <jakub@redhat.com>
3717         * sysdeps/sparc/sparc64/dl-machine.h: Add dl_machine_h multiple
3718         inclusion guard for the first half of the header.
3719         (elf_machine_type_class, ELF_MACHINE_JMP_SLOT, ELF_MACHINE_NO_REL,
3720         ELF_MACHINE_PLTREL_OVERLAP, elf_machine_runtime_setup,
3721         elf_machine_relplt, DL_STACK_END, RTLD_START): Move into the
3722         #ifndef dl_machine_h guarded part of the header.
3724 2005-04-14  Ulrich Drepper  <drepper@redhat.com>
3726         [BZ #851]
3727         * posix/execvp.c (execvp): Use file name including path when
3728         trying to run it with shell.
3729         * posix/Makefile: Add rules to build and run tst-execvp3.
3730         * posix/tst-execvp3.c: New file.
3732 2005-04-12  Ulrich Drepper  <drepper@redhat.com>
3734         [BZ #1090]
3735         * stdlib/random_r.c (__initstate_r): Don't use non-existing state.
3736         * string/tst-strfry.c: New file.
3737         * string/Makefile (tests): Add tst-strfry.
3739 2005-04-11  James A. Morrison  <ja2morri@uwaterloo.ca>
3741         * manual/string.texi: Fix typo in wmemcpy decl.
3743 2005-04-10  David S. Miller  <davem@davemloft.net>
3745         * sysdeps/sparc/sparc32/dl-trampoline.S: Use std not stx.
3747 2005-04-08  Carlos O'Donell <carlos@baldric.uwo.ca>
3749         * FAQ.in: Explain why `make' might fail running rpcgen.
3750         * FAQ: Regenerated.
3752 2005-04-07  Roland McGrath  <roland@redhat.com>
3754         * po/libc.pot: Regenerated.
3756 2005-04-07  Roland McGrath  <roland@redhat.com>
3758         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion)
3759         [(NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO) && SHARED]: Scan
3760         GLRO(dl_sysinfo_map) for PT_NOTE giving Linux kernel version,
3761         we can skip the uname call if it's there.
3762         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Don't use
3763         DL_SYSDEP_OSCHECK here.
3764         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]: Do it here instead.
3766         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro):
3767         Add _dl_sysinfo_map.
3768         * elf/rtld.c (dl_main): Don't call _dl_init_paths early in the
3769         rtld_is_main case.  Call it unconditionally later.
3770         Move GLRO(dl_sysinfo_dso) handling earlier, before _dl_init_paths call.
3771         Initialize GLRO(dl_sysinfo_map).
3772         * elf/dl-load.c (open_path): Bail out if _dl_init_paths wasn't called.
3773         * sysdeps/generic/dl-sysdep.c (_DL_FIRST_EXTRA): New macro.
3774         (_dl_important_hwcaps)
3775         [(NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO) && SHARED]: Scan
3776         GLRO(dl_sysinfo_map) for PT_NOTE giving synthetic hwcap names
3777         and bit values.
3778         * elf/ldconfig.c (_DL_FIRST_EXTRA): New macro.
3779         (hwcap_extra): New static variable.
3780         (is_hwcap_platform): Check hwcap_extra for a matching name.
3781         Remove tls special case.
3782         (path_hwcap): Likewise.
3783         (parse_conf): Parse "hwcap" directive to define synthetic hwcap bits
3784         and their names, stored in hwcap_extra.
3785         (main) [USE_TLS]: Initialize final synthetic hwcap bit as "tls".
3787         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Use uint64_t for
3788         _dl_hwcap and _dl_hwcap_mask.
3789         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Cast a_val for
3790         AT_HWCAP to unsigned long int.
3791         * elf/dl-support.c (_dl_aux_init): Likewise.
3792         (_dl_hwcap): Update defn.
3794         * elf/cache.c (print_entry): Pad hwcap value with 0s in diagnostic.
3795         * elf/ldconfig.c (search_dir): Likewise.
3797 2005-04-05  Roland McGrath  <roland@redhat.com>
3799         * NEWS: Copy 2.3.5 section from 2.3 branch.
3801         * intl/tst-codeset.sh: Use mkdir -p.  Put msgfmt output in temporary
3802         file and mv it into place.
3803         * intl/tst-gettext3.sh: Likewise.
3805         * Makefile (glibc-%.tar rule): Use make -q to ensure configure scripts
3806         are up to date in srcdir.  Touch all configure scripts after export.
3808         * iconv/gconv_int.h: Include <ctype.h> and <string.h>.
3810 2005-04-05  H.J. Lu  <hongjiu.lu@intel.com>
3812         [BZ #592]
3813         * sysdeps/ia64/fpu/e_acosh.S: Update from Intel libm 2005-04-05
3814         (comment changes only).
3815         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
3816         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
3817         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
3818         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
3819         * sysdeps/ia64/fpu/e_exp.S: Likewise.
3820         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
3821         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
3822         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
3823         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
3824         * sysdeps/ia64/fpu/e_expf.S: Likewise.
3825         * sysdeps/ia64/fpu/e_log.S: Likewise.
3826         * sysdeps/ia64/fpu/e_logf.S: Likewise.
3827         * sysdeps/ia64/fpu/e_pow.S: Likewise.
3828         * sysdeps/ia64/fpu/e_powf.S: Likewise.
3829         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
3830         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
3831         * sysdeps/ia64/fpu/libm_error.c: Likewise.
3832         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
3833         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
3834         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
3835         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
3836         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
3837         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
3838         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
3839         * sysdeps/ia64/fpu/s_cos.S: Likewise.
3840         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
3841         * sysdeps/ia64/fpu/s_erf.S: Likewise.
3842         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
3843         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
3844         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
3845         * sysdeps/ia64/fpu/s_erff.S: Likewise.
3846         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
3847         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
3848         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
3849         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
3850         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
3851         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
3852         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
3853         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
3854         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
3856 2005-04-05  Roland McGrath  <roland@redhat.com>
3858         * scripts/config.guess: Update from master, timestamp='2005-03-24'.
3859         * scripts/config.sub: Update from master, timestamp='2005-02-10'.
3861 2005-04-04  David S. Miller  <davem@davemloft.net>
3863         * sysdeps/sparc/sparc32/dl-trampoline.S: New file.
3864         * sysdeps/sparc/sparc32/dl-machine.h: Move PLT trampolines there.
3865         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
3866         (elf_machine_runtime_setup): Test for dl_profile non-null.
3867         * sysdeps/sparc/sparc64/dl-trampoline.S: New file.
3868         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
3869         * sysdeps/sparc/sparc64/dl-machine.h: Move PLT trampolines there.
3870         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
3871         (elf_machine_runtime_setup): Test for dl_profile non-null.
3872         * sysdeps/sparc/bits/link.h: New file.
3873         * sysdeps/generic/ldsodefs.h (La_sparc32_regs, La_sparc32_retval,
3874         La_sparc64_regs, La_sparc64_retval): New.
3875         (struct audit_ifaces): Add sparc entries.
3876         * elf/tst-auditmod1.c: Add sparc entries.
3878 2005-03-27  Bruno Haible  <bruno@clisp.org>
3880         * intl/tst-gettext3.c: New file.
3881         * intl/tst-gettext3.sh: New file.
3882         * intl/Makefile (distribute): Add tst-gettext3.sh.
3883         (test-srcs): Add tst-gettext3.
3884         (tests): Depend on tst-gettext3.out.
3885         (tst-gettext3.out): New rule.
3886         (CFLAGS-tst-gettext3.c): New variable.
3888         Fix bug exposed by tst-gettext3.
3889         * intl/gettextP.h (struct converted_domain): New type.
3890         (struct loaded_domain): Remove the conv, conv_tab fields. Add
3891         conversions, nconversions fields.
3892         (_nl_init_domain_conv): Remove declaration.
3893         (_nl_free_domain_conv): Remove declaration.
3894         (_nl_find_msg): Add convert argument.
3895         * intl/dcigettext.c (DCIGETTEXT): Call _nl_find_msg with convert=1.
3896         (_nl_find_msg): Add convert argument. When a conversion to a different
3897         charset is needed, create a new converted_domain element, instead of
3898         throwing away the old converted translations.
3899         (get_output_charset): New function.
3900         * intl/loadmsgcat.c (_nl_init_domain_conv): Remove function.
3901         (_nl_free_domain_conv): Remove function.
3902         (_nl_load_domain): Initialize the conversions array to empty. Use
3903         _nl_find_msg instead of _nl_init_domain_conv to retrieve the header
3904         entry.
3905         (_nl_unload_domain): Free the conversions array and its contents.
3907         * intl/gettextP.h (struct loaded_domain): Remove codeset_cntr field.
3908         (struct binding): Likewise.
3909         * intl/bindtextdom.c (set_binding_values): Drop codeset_cntr
3910         modifications.
3912 2005-04-04  Jakub Jelinek  <jakub@redhat.com>
3914         [BZ #1082]
3915         * sunrpc/pmap_rmt.c (xdr_rmtcall_args): Use a dummy arglen instead
3916         of trying to encode uninitialized arglen.
3918 2005-04-04  Ulrich Drepper  <drepper@redhat.com>
3920         [BZ #825]
3921         * timezone/scheck.c: Update from tzcode2005h.
3922         * timezone/tzfile.h: Likewise.
3923         * timezone/zdump.c: Likewise.
3924         * timezone/zic.c: Likewise.
3926         [BZ #825]
3927         * timezone/antarctica: Update from tzdata2005h.
3928         * timezone/asia: Likewise.
3929         * timezone/australasia: Likewise.
3930         * timezone/etcetera: Likewise.
3931         * timezone/europe: Likewise.
3932         * timezone/northamerica: Likewise.
3933         * timezone/southamerica: Likewise.
3934         * timezone/leapseconds: Likewise.
3935         * timezone/iso3166.tab: Likewise.
3937 2005-03-31  H.J. Lu  <hongjiu.lu@intel.com>
3939         [BZ #592]
3940         * sysdeps/ia64/fpu/libm_cpu_defs.h: Update copyright.
3942 2005-04-01  Ulrich Drepper  <drepper@redhat.com>
3944         * wcsmbs/btowc.c (__btowc): Optimize parameters in ASCII range.
3945         * wcsmbs/wctob.c (wctob): Likewise.
3946         * wcsmbs/wchar.h (btowc): Add optimized inline function.
3947         (wctob): Likewise.
3949 2005-03-31  Jakub Jelinek  <jakub@redhat.com>
3951         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Use functionally
3952         equivalent, but shorter instructions.
3953         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3954         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
3955         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
3956         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
3957         * sysdeps/unix/x86_64/sysdep.S: Likewise.
3958         * sysdeps/x86_64/strchr.S: Likewise.
3959         * sysdeps/x86_64/memset.S: Likewise.
3960         * sysdeps/x86_64/strcspn.S: Likewise.
3961         * sysdeps/x86_64/strcmp.S: Likewise.
3962         * sysdeps/x86_64/elf/start.S: Likewise.
3963         * sysdeps/x86_64/strspn.S: Likewise.
3964         * sysdeps/x86_64/dl-machine.h: Likewise.
3965         * sysdeps/x86_64/bsd-_setjmp.S: Likewise.
3966         * sysdeps/x86_64/bsd-setjmp.S: Likewise.
3967         * sysdeps/x86_64/strtok.S: Likewise.
3969 2005-03-30  H.J. Lu  <hongjiu.lu@intel.com>
3971         [BZ #592]
3972         * sysdeps/ia64/fpu/e_acosf.S: Update from Intel libm 2005-03-21.
3973         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
3974         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
3975         * sysdeps/ia64/fpu/e_acosh.S: Likewise.
3976         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
3977         * sysdeps/ia64/fpu/e_acos.S: Likewise.
3978         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
3979         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
3980         * sysdeps/ia64/fpu/e_asin.S: Likewise.
3981         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
3982         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
3983         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
3984         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
3985         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
3986         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
3987         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
3988         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
3989         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
3990         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
3991         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
3992         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
3993         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
3994         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
3995         * sysdeps/ia64/fpu/e_expf.S: Likewise.
3996         * sysdeps/ia64/fpu/e_exp.S: Likewise.
3997         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
3998         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
3999         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
4000         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
4001         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
4002         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
4003         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
4004         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
4005         * sysdeps/ia64/fpu/e_lgamma_r.c: Likewise.
4006         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
4007         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
4008         * sysdeps/ia64/fpu/e_log2.S: Likewise.
4009         * sysdeps/ia64/fpu/e_logf.S: Likewise.
4010         * sysdeps/ia64/fpu/e_logl.S: Likewise.
4011         * sysdeps/ia64/fpu/e_log.S: Likewise.
4012         * sysdeps/ia64/fpu/e_powf.S: Likewise.
4013         * sysdeps/ia64/fpu/e_powl.S: Likewise.
4014         * sysdeps/ia64/fpu/e_pow.S: Likewise.
4015         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
4016         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
4017         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
4018         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
4019         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
4020         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
4021         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
4022         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
4023         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
4024         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
4025         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
4026         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
4027         * sysdeps/ia64/fpu/libm_error.c: Likewise.
4028         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
4029         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
4030         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
4031         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
4032         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
4033         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
4034         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
4035         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
4036         * sysdeps/ia64/fpu/libm_support.h: Likewise.
4037         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
4038         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
4039         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
4040         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
4041         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
4042         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
4043         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
4044         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
4045         * sysdeps/ia64/fpu/s_cos.S: Likewise.
4046         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
4047         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
4048         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
4049         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
4050         * sysdeps/ia64/fpu/s_erf.S: Likewise.
4051         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
4052         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
4053         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
4054         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
4055         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
4056         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
4057         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
4058         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
4059         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
4060         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
4061         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
4062         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
4063         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
4064         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
4065         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
4066         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
4067         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
4068         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
4069         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
4070         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
4071         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
4072         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
4073         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
4074         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
4075         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
4076         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
4077         * sysdeps/ia64/fpu/s_logb.S: Likewise.
4078         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
4079         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
4080         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
4081         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
4082         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
4083         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
4084         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
4085         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
4086         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
4087         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
4088         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
4089         * sysdeps/ia64/fpu/s_round.S: Likewise.
4090         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
4091         * sysdeps/ia64/fpu/s_scalbn.c: Likewise.
4092         * sysdeps/ia64/fpu/s_scalbnf.c: Likewise.
4093         * sysdeps/ia64/fpu/s_scalbnl.c: Likewise.
4094         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
4095         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
4096         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
4097         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
4098         * sysdeps/ia64/fpu/s_tan.S: Likewise.
4099         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
4100         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
4101         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
4102         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
4103         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
4104         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
4106         [BZ #592]
4107         * sysdeps/ia64/fpu/libm_cpu_defs.h: New file.
4108         * sysdeps/ia64/fpu/libm_error_codes.h: New file.
4110         [BZ #592]
4111         * sysdeps/ia64/fpu/gen_import_file_list: Updated for Intel libm
4112         2005-03-21.
4113         * sysdeps/ia64/fpu/import_file.awk: Likewise.
4114         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
4115         * sysdeps/ia64/fpu/Makefile: Likewise.
4117 2005-03-29  Jakub Jelinek  <jakub@redhat.com>
4119         [BZ #1087]
4120         * posix/fnmatch.c (fnmatch): For short patterns or strings attempt to
4121         avoid calling mbsrtowcs twice.
4123 2005-03-29  Roland McGrath  <roland@redhat.com>
4125         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): New
4126         function, inline broken out of ...
4127         (DL_SYSDEP_OSCHECK): ... here.  Use that.
4128         Do the discovery and set GLRO(dl_osversion) if successful,
4129         if __LINUX_KERNEL_VERSION <= 0.
4130         * elf/dl-load.c: Don't include dl-osinfo.h here.
4132 2005-03-29  Alfred M. Szmidt  <ams@gnu.org>
4134         * manual/install.texi (Tools for Compilation): GNU binutils 2.15
4135         is now needed.
4137 2005-03-19  Bruno Haible  <bruno@clisp.org>
4139         * intl/dcigettext.c (struct known_translation_t): Change type of
4140         domainname field to 'const char *'.
4141         (DCIGETTEXT): Remove const-cast.
4143 2005-03-29  Thorsten Kukuk  <kukuk@suse.de>
4145         [BZ #661]
4146         * grp/initgroups.c (internal_getgrouplist): Check if we have
4147         enough space before adding the primary group to the list.
4149         * posix/tst-execle1.c (do_test): Fix execle arguments.
4150         * posix/tst-execle2.c (do_test): Likewise.
4152 2005-03-28  Roland McGrath  <roland@redhat.com>
4154         * sysdeps/generic/w_exp2.c [NO_LONG_DOUBLE]: Fix typos in alias names.
4155         Reported by Mark Mitchell <mark@codesourcery.com>.
4156         * Versions.def (libm): Define GLIBC_2.4 set.
4157         * math/Versions (libm: GLIBC_2.4): Add this set, with exp2l.
4158         * sysdeps/i386/Versions (libm: GLIBC_2.1): Add this set, with exp2l.
4159         * sysdeps/ia64/Versions: Likewise.
4160         * sysdeps/m68k/Versions: Likewise.
4161         * sysdeps/sparc/sparc64/Versions: Likewise.
4162         * sysdeps/x86_64/Versions: New file.
4163         * sysdeps/mips/mips64/Versions: New file.
4165         * locale/langinfo.h (_NL_LOCALE_NAME): New macro.
4166         [__USE_GNU] (NL_LOCALE_NAME): New macro.
4167         * locale/nl_langinfo.c: Grok special item value for _NL_LOCALE_NAME,
4168         return locale name string for the category.
4170 2005-03-25  Jakub Jelinek  <jakub@redhat.com>
4172         [BZ #721]
4173         * sysdeps/generic/wcstoul_l.c: Include "wcstol_l.c" rather than
4174         <wcstol_l.c>.
4176 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
4178         * sysdeps/mips/atomicity.h: Remove unused file.
4179         * sysdeps/mips/dl-machine.h (elf_machine_rel): Add TLS relocations.
4180         * sysdeps/mips/dl-tls.h: New file.
4181         * sysdeps/mips/libc-tls.c: New file.
4182         * sysdeps/mips/tls-macros.h: New file.
4183         * sysdeps/mips/bits/atomic.h: New file.
4184         * sysdeps/mips/bits/setjmp.h: Protect against multiple inclusion.
4185         * sysdeps/mips/elf/configure.in: New file.
4186         * sysdeps/mips/elf/configure: Generated.
4187         * sysdeps/mips/sys/asm.h: New file.
4188         * sysdeps/unix/sysv/linux/mips/vfork.S: New file.
4189         * sysdeps/unix/sysv/linux/mips/clone.S: Add NPTL and five-argument
4190         clone support.
4191         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
4192         (INTERNAL_SYSCALL_NCS): New.
4193         (INTERNAL_SYSCALL): Update for non-constant support.
4194         (internal_syscall0): Likewise.
4195         (internal_syscall1): Likewise.
4196         (internal_syscall2): Likewise.
4197         (internal_syscall3): Likewise.
4198         (internal_syscall4): Likewise.
4199         (internal_syscall5): Likewise.
4200         (internal_syscall6): Likewise.
4201         (internal_syscall7): Likewise.
4202         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (SIGEV_THREAD):
4203         Update to match the kernel.
4204         (SIGEV_CALLBACK): Likewise.
4205         (SIGEV_THREAD_ID): Likewise.
4207 2005-03-28  Daniel Jacobowitz  <dan@codesourcery.com>
4209         [BZ #783]
4210         * elf/tst-auditmod1.c: Add MIPS support.
4211         * sysdeps/generic/ldsodefs.h (La_mips_32_regs): New.
4212         (La_mips_32_retval): New.
4213         (La_mips_64_regs): New.
4214         (La_mips_64_retval): New.
4215         (struct audit_ifaces): Add MIPS entries.
4216         * sysdeps/mips/dl-machine.h: Check RESOLVE_MAP instead of RESOLVE.
4217         (elf_machine_runtime_link_map, ELF_DL_FRAME_SIZE,
4218         ELF_DL_SAVE_ARG_REGS, ELF_DL_RESTORE_ARG_REGS,
4219         ELF_MACHINE_RUNTIME_TRAMPOLINE): Move to dl-trampoline.c.
4220         (RTLD_START): Align the stack before calling _dl_init_internal.
4221         Use .ent for _dl_start_user.
4222         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): Define.
4223         (elf_machine_rel, elf_machine_rel_relative, elf_machine_lazy_rel)
4224         (elf_machine_runtime_setup): Use "auto inline".
4225         (elf_machine_rela, elf_machine_rela_relative): Provide empty versions.
4226         (elf_machine_got_rel): Likewise.  Use RESOLVE_MAP.
4227         * sysdeps/mips/dl-trampoline.c: New file.
4228         * sysdeps/mips/bits/link.h: New file.
4229         * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
4230         (internal_syscall5): Use register operands instead of non-lvalue
4231         memory operands.
4232         (internal_syscall6): Likewise.
4233         (internal_syscall7): Likewise.
4235 2005-03-27  Andreas Jaeger  <aj@suse.de>
4237         * debug/warning-nop.c (__builtin___memcpy_chk): Define away to
4238         avoid warnings with older compiler.
4239         (__builtin___memcpy_chk): Likewise.
4240         (__builtin___memmove_chk: Likewise.
4241         (__builtin___mempcpy_chk): Likewise.
4242         (__builtin___memset_chk): Likewise.
4243         (__builtin___stpcpy_chk): Likewise.
4244         (__builtin___strcat_chk): Likewise.
4245         (__builtin___strcpy_chk): Likewise.
4246         (__builtin___strncat_chk): Likewise.
4247         (__builtin___strncpy_chk): Likewise.
4248         (__builtin_object_size): Likewise.
4250 2005-03-27  Daniel Jacobowitz  <dan@codesourcery.com>
4252         * elf/tls-macros.h: Correct typo.
4254 2005-03-23  Jakub Jelinek  <jakub@redhat.com>
4256         [BZ #822]
4257         * nis/ypclnt.c (yp_2_yperr): Revert 2004-11-30 patch.
4258         (ypprot_err): Use yp_2_yperr table also for YP_NODOM .. YP_NOMORE.
4260 2005-03-22  Roland McGrath  <roland@redhat.com>
4262         * locale/setlocale.c: Comment typo.
4264         * scripts/versions.awk: No errors for GLIBC_PRIVATE.
4266         * Versions.def (libdl, librt): Add GLIBC_2.3.4 version.
4268         * scripts/versions.awk: Print all errors and die at the end.
4269         Use library name in versions array keys.
4271 2005-03-22  Daniel Jacobowitz  <dan@codesourcery.com>
4273         * elf/elf.h (PT_ARM_EXIDX): New macro.
4275 2005-03-21  Thorsten Kukuk  <kukuk@suse.de>
4277         [BZ #1098]
4278         * sunrpc/xdr_stdio.c (xdrstdio_getlong, xdrstdio_putlong):
4279         Convert correctly between long/int on 64bit big-endian.
4281 2005-03-21  David Mosberger  <davidm@hpl.hp.com>
4283         * sysdeps/ia64/_mcount.S: Newer kernels don't like register-frames
4284         with more than 8 output registers.  Fix this by passing original
4285         ar.pfs to _mcount_ret_helper via r3.
4287 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
4289         [BZ #786]
4290         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Handle
4291         GL(dl_tls_static_nelem) == GL(dl_tls_max_dtv_idx).
4292         * elf/Makefile: Add rules to build and run tst-tls15.
4293         * elf/tst-tls15.c: New test.
4294         * elf/tst-tlsmod15a.c: New file.
4295         * elf/tst-tlsmod15b.c: New file.
4297 2005-03-20  Ulrich Drepper  <drepper@redhat.com>
4299         * elf/rtld.c (dl_main): Always call init_tls if we have audit modules.
4301 2005-03-20  Alfred M. Szmidt  <ams@gnu.org>
4303         * elf/dl-open.c (dl_open_worker): Fix typo.
4305 2005-03-20  Ulrich Drepper  <drepper@redhat.com>
4307         * malloc/malloc.c (public_cALLOc): We cannot skip the memory
4308         clearing if perturb_byte != 0.
4310 2005-03-20  Jakub Jelinek  <jakub@redhat.com>
4312         * posix/bits/unistd.h (pread) [__USE_FILE_OFFSET64]: Use __off64_t
4313         instead of __off_t for last argument.
4314         * debug/Makefile (tests): Add tst-lfschk{1,2,3}.
4315         * debug/tst-lfschk1.c: New test.
4316         * debug/tst-lfschk2.c: New test.
4317         * debug/tst-lfschk3.c: New test.
4319 2005-02-09  Jakub Jelinek  <jakub@redhat.com>
4321         * sysdeps/unix/sysv/linux/bits/termios.h (CMSPAR): Define.
4322         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Add __USE_MISC
4323         and __USE_XOPEN guards to match linux/bits/termios.h.
4324         * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
4325         (CMSPAR): Define.
4326         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
4328 2005-02-10  H.J. Lu  <hongjiu.lu@intel.com>
4330         [BZ #1076]
4331         * sysdeps/ia64/elf/initfini.c: Add local _init and _fini labels.
4333 2005-02-27  Denis Barbier  <barbier@debian.org>
4335         [BZ #549]
4336         * locale/iso-4217.def: Add CSD currency.
4338 2005-03-19  Ulrich Drepper  <drepper@redhat.com>
4340         * inet/test-ifaddrs.c: Use test-skeleton.
4341         * inet/test_ifindex.c: Likewise.
4343         [BZ #821]
4344         * elf/dl-lookup.c (add_dependency): Always search l_initfini if
4345         the list exists.
4347         [BZ #821]
4348         * elf/Makefile: Add rules to build and run order2.
4349         * elf/order2.c: New file.
4350         * elf/order2mod1.c: New file.
4351         * elf/order2mod2.c: New file.
4352         * elf/order2mod3.c: New file.
4353         * elf/order2mod4.c: New file.
4355 2005-03-19  Jakub Jelinek  <jakub@redhat.com>
4357         [BZ #821]
4358         * elf/dl-open.c (dl_open_worker): Print exact l_direct_opencount value,
4359         it has been incremented before.
4361 2005-03-18  Ulrich Drepper  <drepper@redhat.com>
4363         [BZ #821]
4364         * elf/dl-fini.c (_dl_fini): Split sorting of the maps in separate
4365         function _dl_sort_fini.
4366         (_dl_sort_fini): New function.
4367         * sysdeps/generic/ldsodefs.h: Declare _dl_sort_fini.
4368         * elf/dl-close.c (_dl_close): Call _dl_sort_fini before running
4369         destructors to call them in the right order.
4371 2005-02-07  Steven Munroe  <sjmunroe@us.ibm.com>
4373         * sysdeps/powerpc/bits/link.h (La_ppc64_regs): Add lr_vrsave.
4374         (La_ppc64_retval): Correct size of lrc_fp.
4375         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_profile_resolve):
4376         Fix up ABI problems and complete function.
4378 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
4380         * math/test-misc.c (main): Add some more tests.
4382 2005-03-17  Jakub Jelinek  <jakub@redhat.com>
4384         * posix/regcomp.c (re_compile_fastmap_iter): Fix check for failed
4385         __wcrtomb.  Check return values of other __wcrtomb calls.
4386         * posix/regex_internal.c (build_wcs_buffer, re_string_skip_chars):
4387         Change mbclen type to size_t.
4388         (build_wcs_upper_buffer): Change mbclen and mbcdlen type to size_t.
4389         Handle mb chars whose upper case doesn't have multibyte representation
4390         in locale's charset.
4392 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
4394         * malloc/malloc.c (_int_icalloc, _int_icomalloc, iALLOc,
4395         public_iCALLOc, public_iCALLOc, public_iCOMALLOc): Protect with
4396         #ifndef _LIBC.
4398         [BZ #779]
4399         * malloc/malloc.c (public_mTRIm): Initialize malloc if not yet
4400         initialized.
4402 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
4404         * misc/sys/cdefs.h (__always_inline): Define.
4405         * posix/bits/unistd.h (read, pread, pread64, readlink, getcwd, getwd):
4406         Use __always_inline instead of __inline.
4407         * socket/bits/socket2.h (recv, recvfrom): Likewise.
4408         * libio/bits/stdio2.h (gets, fgets, fgets_unlocked): Likewise.
4409         * string/bits/string3.h (__memcpy_ichk, __memmove_ichk, __mempcpy_ichk,
4410         __memset_ichk, __strcpy_ichk, __stpcpy_ichk, __strncpy_ichk,
4411         __strcat_ichk, __strncat_ichk): Use __always_inline instead of
4412         __inline__ __attribute__ ((__always_inline__)).
4414 2005-03-09  Jakub Jelinek  <jakub@redhat.com>
4416         * debug/tst-chk1.c: Include sys/socket.h and sys/un.h.
4417         (do_test): Add new tests for recv, recvfrom, getcwd, getwd and
4418         readlink.  Add some more tests for read, pread, pread64, fgets and
4419         fgets_unlocked.
4421         * posix/bits/unistd.h (read, pread, pread64, readlink,
4422         getcwd, getwd): Change macros into extern inline functions.
4423         (__read_alias, __pread_alias, __pread64_alias, __readlink_alias,
4424         __getcwd_alias, __getwd_alias): New prototypes.
4425         * socket/bits/socket2.h (recv, recvfrom): Change macros into
4426         extern inline functions.
4427         (__recv_alias, __recvfrom_alias): New prototypes.
4428         * libio/bits/stdio2.h (gets, fgets, fgets_unlocked): Change macros
4429         into extern inline functions.
4430         (__gets_alias, __fgets_alias, __fgets_unlocked_alias): New prototypes.
4432         * debug/pread_chk.c (__pread_chk): Fix order of arguments passed
4433         to __pread.
4434         * debug/pread64_chk.c (__pread64_chk): Fix order of arguments passed
4435         to __pread64.
4437 2005-03-18  Daniel Jacobowitz  <dan@codesourcery.com>
4439         * configure.in: Use %function instead of @function.
4441 2005-03-18  Ulrich Drepper  <drepper@redhat.com>
4443         [BZ #821]
4444         * include/link.h (struct link_map): Remove l_opencount.  Add l_removed.
4445         Change type of l_idx to int.
4446         * elf/dl-close.c: Basically rewrite.  Do not use l_opencount to
4447         determine whether a DSO has to be unloaded.  Instead compute this
4448         in this function.
4449         * elf/dl-deps.c: No need to manipulate l_opencount anymore.
4450         * elf/dl-lookup.c: Likewise.
4451         * elf/rtld.c: Likewise
4452         * elf/dl-open.c: Likewise.  Use l_init_called to determine whether
4453         object was just loaded.
4454         * elf/dl-fini.c: Bump l_direct_opencount instead of l_opencount.
4455         * elf/dl-load.c (_dl_map_object_from_fd): Do not recognize DSO which
4456         is about to be unloaded as a match.
4457         (_dl_map_object): Likewise.
4458         * elf/do-lookup.h (do_lookup_x): Do not look into DSO which is about
4459         to be unloaded.
4460         * elf/circleload1.c: Don't use l_opencount anymore.
4461         * elf/neededtest.c: Likewise.
4462         * elf/neededtest2.c: Likewise.
4463         * elf/neededtest3.c: Likewise.
4464         * elf/neededtest4.c: Likewise.
4465         * elf/unload.c: Likewise.
4466         * elf/unload2.c: Likewise.
4467         * elf/loadtest.c: Likewise.
4469         [BZ #821]
4470         * elf/rtld.c: Preloading errors are now never fatal.
4472 2005-03-08  Jakub Jelinek  <jakub@redhat.com>
4474         [BZ #821]
4475         * elf/Makefile: Add rules to build and run unload5 test.
4476         * elf/unload5.c: New file.
4478         [BZ #821]
4479         * elf/Makefile: Add rules to build and run unload4 test.
4480         * elf/unload4.c: New file.
4481         * elf/unload4mod1.c: New file.
4482         * elf/unload4mod2.c: New file.
4483         * elf/unload4mod3.c: New file.
4484         * elf/unload4mod4.c: New file.
4486 2005-03-17  Roland McGrath  <roland@redhat.com>
4488         * nscd/aicache.c (addhstaiX): Tweak type to avoid warning.
4490 2005-03-16  Richard Henderson  <rth@redhat.com>
4492         [BZ #721]
4493         * include/libc-symbols.h (__hidden_proto): Remove bogus declaration
4494         of internal.
4495         (__hidden_def1, __hidden_dot_def1): Remove.
4496         (__hidden_def2, __hidden_def3): Remove.
4497         (__hidden_ver1): New.
4498         (hidden_ver, hidden_def, hidden_weak): Use it.
4499         (hidden_data_ver, hidden_data_ver, hidden_data_weak): Use non-data
4500         version of the macro.
4502         [BZ #721]
4503         * include/wchar.h (__wcscoll): Remove.
4504         * wcsmbs/wcscoll.c: Define wcscoll directly instead of via __wcscoll.
4505         * string/strcoll.c: Don't issue libc_hidden_def STRCOLL redefined.
4507 2005-03-16  Daniel Jacobowitz  <dan@codesourcery.com>
4509         * elf/elf.h: Define MIPS TLS relocations.
4511 2005-03-16  Ulrich Drepper  <drepper@redhat.com>
4513         * elf/circleload1.c (main): Pretty printing.
4515 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
4517         * sysdeps/generic/wordexp.c (exec_comm_child): Add inline keyword.
4518         Patch by Dan Kegel <dank@kegel.com>.
4520         [BZ #721]
4521         * elf/dynamic-link.h (elf_machine_rel, elf_machine_rel_relative,
4522         elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel):
4523         Add inline keyword.
4524         * sysdeps/alpha/dl-machine.h (elf_machine_rela,
4525         elf_machine_rela_relative, elf_machine_lazy_rel): Add always_inline
4526         attribute.
4527         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
4528         elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.  Change
4529         static inline into auto inline.
4530         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
4531         elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
4532         * sysdeps/generic/dl-machine.h (elf_machine_rel, elf_machine_rela):
4533         Likewise.
4534         * sysdeps/arm/dl-machine.h (elf_machine_rel, elf_machine_rel_relative,
4535         elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel):
4536         Likewise.
4538 2005-03-15  Jakub Jelinek  <jakub@redhat.com>
4540         [BZ #789]
4541         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Fix asm constraints.
4542         Remove memory clobber.
4544         * sysdeps/x86_64/hp-timing.h (HP_TIMING_ACCUM): Make the addition
4545         thread-safe.  Subtract GLRO(dl_hp_timing_overhead) from Diff.
4547 2005-03-14  Jakub Jelinek  <jakub@redhat.com>
4549         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Don't include
4550         asm/types.h.
4552 2005-03-10  GOTO Masanori  <gotom@debian.or.jp>
4554         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Define MAP_POPULATE and
4555         MAP_NONBLOCK.
4556         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
4557         Correct MAP_GROWSDOWN value.
4559 2005-03-13  Roland McGrath  <roland@redhat.com>
4561         * elf/tls-macros.h: #include_next <tls-macros.h> to get a sysdeps
4562         version if there is one.  Only #error if macros are then undefined.
4563         * sysdeps/generic/tls-macros.h: New file.
4565 2005-03-10  GOTO Masanori  <gotom@debian.or.jp>
4567         * sysdeps/hppa/configure.in: Remove old Makefile leftovers.
4568         * sysdeps/hppa/configure: Regenerated.
4570 2005-03-08  Roland McGrath  <roland@redhat.com>
4572         * sysdeps/gnu/errlist-compat.awk: Use NERR in all array decls, so
4573         array types match exactly in C alias decls.
4575 2005-03-07  Ulrich Drepper  <drepper@redhat.com>
4577         * malloc/arena.c (ptmalloc_init): Recognize MALLOC_PERTURB_ and call
4578         mallopt appropriately.
4579         * malloc/malloc.h: Define M_PERTURB.
4580         * malloc/malloc.c (perturb_byte): New variable.
4581         (alloc_perturb, free_perturb): New macros.
4582         (_int_malloc): Before returning, overwrite the memory if this is
4583         requested.
4584         (_int_free): Overwrite freed memory if requested.
4585         (mALLOPt): Handle M_PERTURB.
4586         * test-skeleton.c: Add call to mallopt with M_PERTURB command.
4588         * elf/dl-close.c (_dl_close): Decrement l_opencount before
4589         printing debug message.
4590         * elf/dl-open.c (dl_open_worker): Always print the new opencount
4591         in debug messages.
4593 2005-03-06  Ulrich Drepper  <drepper@redhat.com>
4595         * elf/dl-close.c (_dl_close): Unify debug message format.
4597         * elf/dl-close.c (_dl_close): Print debug message just before
4598         destroying a link map.
4600         * elf/do-lookup.h (do_lookup_x): Add namespace info to debug output.
4601         * elf/dl-version.c (match_symbol): Likewise.
4603         * posix/bits/unistd.h (pread): Fix typo in __USE_FILE_OFFSET64 code.
4605         * debug/recv_chk.c (__recv_chk): Always fail if request could
4606         overflow the buffer.
4607         * debug/recvfrom_chk.c (__recvfrom_chk): Likewise.
4608         * socket/bits/socket2.h (recv): Avoid calls to the _chk variant if
4609         we know the call succeeds.
4610         (recvfrom): Likewise.
4612 2005-03-05  Ulrich Drepper  <drepper@redhat.com>
4614         * posix/regexec.c (check_node_accept_bytes): Correct cast to avoid
4615         warning.
4616         * posix/regex_internal.c (re_string_reconstruct): Add cast to
4617         avoid warning.
4618         (build_wcs_upper_buffer): Change type of bug to plain char.
4619         * locale/weightwc.h (findidx): Add casts to avoid warnings.
4620         * time/mktime.c (ranged_convert): Initialize tm to make the
4621         compiler happy.
4622         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Add casts to avoid warnings.
4623         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Add casts to avoid warnings.
4624         * wcsmbs/mbsnrtowcs.c: Add casts to avoid warnings.
4625         * wcsmbs/wcsrtombs.c (__wcsrtombs): Add casts to avoid warnings.
4626         * wcsmbs/wcrtomb.c (__wcrtomb): Add casts to avoid warnings.
4627         * wcsmbs/mbrtowc.c (__mbrtowc): Use unsigned char for outbuf.
4628         * wcsmbs/wctob.c (wctob): Make buf array of unsigned char.
4629         * sysdeps/generic/strchrnul.c: Add cast to avoid warning.
4630         * libio/iofwide.c: Add casts to avoid warnings.
4631         * stdio-common/printf-prs.c (parse_printf_format): Introduce new
4632         variable f to avoid warnings.
4633         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
4634         Fix a few casts to avoid warnings.
4635         * iconv/gconv_simple.c (internal_utf8_loop): Make start unsigned
4636         to avoid warning.
4638         [BZ #1101]
4639         * posix/regex_internal.c [_LIBC] (build_wcs_buffer): Avoid using
4640         dynamically sized array.
4641         (build_wcs_upper_buffer): Likewise.
4643 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
4645         * include/bits/unistd.h: New file.
4646         * include/bits/socket2.h: New file.
4648 2005-03-05  Ulrich Drepper  <drepper@redhat.com>
4650         * sunrpc/key_call.c: Remove doors support.
4651         * sunrpc/Makefile: Remove CPPFLAGS-key_call.c definition.
4652         * configure.in: Remove test for doors support which never existed.
4653         * config.make.in: Remove have_doors entry.
4655         * configure.in: Make sure at least gcc 3.4 is used.  Undo last change.
4656         * config.make.in: Undo last change.
4658         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Unconditionally use
4659         -mtune.
4661 2005-03-05  Roland McGrath  <roland@redhat.com>
4663         * sysdeps/generic/ldsodefs.h (_dl_out_of_memory_internal): Remove decl.
4664         (_dl_out_of_memory): Use rtld_hidden_proto.
4665         * elf/dl-error.c (_dl_out_of_memory): Use rtld_hidden_data_def.
4666         (_dl_signal_error): Don't use INTUSE on _dl_out_of_memory.
4667         * elf/dl-open.c (_dl_open): Likewise.
4668         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
4670         * sunrpc/des_impl.c (des_set_key): Make first argument unsigned char *.
4672         * elf/dl-addr.c (_dl_addr): Add a cast.
4674         [BZ #821]
4675         * elf/unload3mod4.c: Declare foo.
4676         * elf/testobj2.c: Include <stdio.h>.
4678         * sysdeps/gnu/errlist.awk: Emit NERR macro for _sys_nerr_internal
4679         value constant, and use it in the defn.
4680         * sysdeps/gnu/errlist-compat.awk: Use NERR in array decl.
4681         Use actual size for compat array decls.
4683         * config.make.in (cc-mtune): New substituted variable.
4684         * configure.in (libc_cv_cc_mtune): New test for -mtune= switch,
4685         done only if libc_mtune_example is defined.
4686         * sysdeps/i386/configure.in (libc_mtune_example): Set it.
4687         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Use $(cc-mtune).
4689 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
4691         [BZ #721]
4692         * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define
4693         unconditionally to (defined RTLD_BOOTSTRAP).
4694         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Likewise.
4696 2005-03-05  Jakub Jelinek  <jakub@redhat.com>
4698         * Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of
4699         $(inst_slibdir) in AS_NEEDED directive.
4701 2005-03-03  Jakub Jelinek  <jakub@redhat.com>
4703         * posix/bits/unistd.h (pread, pread64): Don't swap function arguments.
4705 2005-03-01  H.J. Lu  <hongjiu.lu@intel.com>
4707         [BZ #776]
4708         * iconv/iconvconfig.c: Fix comment for the output file.
4709         (write_output): Clear padding in header.
4711 2005-03-03  Ulrich Drepper  <drepper@redhat.com>
4713         [BZ #821]
4714         * elf/dl-close.c (_dl_close): Don't try to set up new searchpath if the
4715         loader is closed.  Fixes unload3.
4716         * elf/tst-global1.c: New file.
4717         * elf/Makefile (tests): Add tst-global1.
4718         * elf/testobj2.c (p): New function.
4720 2005-03-03  Jakub Jelinek  <jakub@redhat.com>
4722         [BZ #821]
4723         * elf/Makefile: Add rules to build and run unload3 test.
4724         * elf/unload3.c: New test.
4725         * elf/unload3mod1.c: New file.
4726         * elf/unload3mod2.c: New file.
4727         * elf/unload3mod3.c: New file.
4728         * elf/unload3mod4.c: New file.
4730 2005-02-21  Alan Modra <amodra@bigpond.net.au>
4732         [BZ #1394]
4733         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Don't
4734         use __uint128_t.
4736 2005-03-01  Jakub Jelinek  <jakub@redhat.com>
4738         * posix/bits/unistd.h (read, pread, pread64): Use __bos0 instead
4739         of __bos.
4740         * socket/bits/socket2.h (recv, recvfrom): Likewise.
4742 2005-03-01  Roland McGrath  <roland@redhat.com>
4744         [BZ #721]
4745         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_RELA): Define this outside
4746         of [RESOLVE_MAP].
4748 2005-03-01  Alfred M. Szmidt  <ams@gnu.org>
4750         [BZ #777]
4751         * elf/dl-load.c (__stack_prot) [!PROT_GROWSUP && !PROT_GROWSDOWN]:
4752         Add missing initializer.
4754         [BZ #777]
4755         * malloc/arena.c: #include <stdbool.h> outside of [SHARED &&
4756         USE_TLS && !USE___THREAD].
4758 2005-02-26  GOTO Masanori  <gotom@debian.or.jp>
4760         * csu/Makefile: Use printf instead of echo for some shells.
4762 2005-02-28  Roland McGrath  <roland@redhat.com>
4764         * debug/warning-nop.c (__nop): Rename to nop, make it static.
4765         (__warndecl): Use alias attribute directly, instead of strong_alias
4766         macro.  Add attribute_hidden.
4768 2005-02-28  Ulrich Drepper  <drepper@redhat.com>
4770         * posix/bits/unistd.h: Avoid calling __*_chk variants if we can
4771         determine the call will never trigger a failure.
4772         * debug/read_chk.c (__read_chk): Always fail if the buffer is too
4773         small.
4774         * debug/readlink_chk.c (__readlink_chk): Likewise.
4775         * debug/pread64_chk.c (__pread64_chk): Likewise.
4776         * debug/pread_chk.c (__pread_chk): Likewise.
4778         * sysdeps/i386/i686/memset_chk.S: Remove alias and warning.
4779         * sysdeps/x86_64/memset_chk.S: Likewise.
4781 2005-02-24  Roland McGrath  <roland@redhat.com>
4783         * debug/Versions (libc: GLIBC_2.4): Remove
4784         __memset_zero_constant_len_parameter.
4785         * sysdeps/generic/memset_chk.c: Remove alias and warning.
4786         * misc/sys/cdefs.h (__warndecl): New macro.
4787         * debug/warning-nop.c: New file.
4788         * string/bits/string3.h (memset): Call __warn_memset_zero_len with no
4789         arguments, instead of calling __memset_zero_constant_len_parameter.
4790         Use __warndecl for __warn_memset_zero_len.
4791         * debug/Makefile (routines): Add $(static-only-routines).
4792         (static-only-routines): New variable.
4794 2005-02-27  Ulrich Drepper  <drepper@redhat.com>
4796         * po/tr.po: Update from translation team.
4798 2005-02-26  Ulrich Drepper  <drepper@redhat.com>
4800         * elf/dl-addr.c: Cleanups.  Move declaration next to first use.
4802         * dlfcn/dlerror.c (check_free): New function.  Extract common code
4803         from fini and free_key_mem.  Check whether this is libdl in the
4804         base namespace.
4806 2005-02-25  Ulrich Drepper  <drepper@redhat.com>
4808         * elf/dl-lookup.c (_dl_debug_bindings): Add namespace information
4809         to debug output.
4811 2004-11-11  Richard Sandiford  <rsandifo@redhat.com>
4813         [BZ #758]
4814         * sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h): Only
4815         preprocess <asm/unistd.h> if it defines ABI-prefixed syscall names
4816         like __NR_N32_open.  Just include <asm/unistd.h> otherwise.
4817         * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
4818         * sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h: Delete
4819         * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h (SYS_ify): Use the
4820         standard __NR prefix.
4821         * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h (SYS_ify): Likewise.
4822         * sysdeps/unix/sysv/linux/mips/Makefile (syscall-%.h): Rework so that
4823         the output file is compatible with both pre-2.6 and 2.6 kernel headers.
4824         Extract separate syscall lists for each ABI.
4826 2005-02-23  Ulrich Drepper  <drepper@redhat.com>
4828         * Makerules (libc.so): Add AS_NEEDED line for dynamic linker.
4830         [BZ #719]
4831         * elf/Makefile: Run tst-tls9-static again.
4833 2005-02-22  Ulrich Drepper  <drepper@redhat.com>
4835         [BZ #719]
4836         * sysdeps/generic/libc-tls.c (static_dtv): Size the same as the
4837         slotinfo array.
4838         (__libc_setup_tls): Initialize length of DTV based on array length.
4839         * elf/dl-load.c: Revert last change.
4840         * sysdeps/generic/dl-tls.c: Revert last change.
4842         * posix/Makefile (tests): Add tst-execvp1, tst-execvp2, tst-execlp1,
4843         tst-execlp2, tst-execv1, tst-execv2, tst-execl1, tst-execl2,
4844         tst-execve1, tst-execve2, tst-execle1, and tst-execle2.
4845         * posix/tst-execl1.c: New file.
4846         * posix/tst-execl2.c: New file.
4847         * posix/tst-execle1.c: New file.
4848         * posix/tst-execle2.c: New file.
4849         * posix/tst-execlp1.c: New file.
4850         * posix/tst-execlp2.c: New file.
4851         * posix/tst-execv1.c: New file.
4852         * posix/tst-execv2.c: New file.
4853         * posix/tst-execve1.c: New file.
4854         * posix/tst-execve2.c: New file.
4855         * posix/tst-execvp1.c: New file.
4856         * posix/tst-execvp2.c: New file.
4858 2005-02-22  Roland McGrath  <roland@redhat.com>
4860         * include/signal.h: Revert last change.
4861         (__sigemptyset): Use __builtin_memset instead of memset.
4863 2005-02-22  Ulrich Drepper  <drepper@redhat.com>
4865         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Use
4866         non-cancelable I/O functions.
4868 2005-02-22  Jakub Jelinek  <jakub@redhat.com>
4870         [BZ #769]
4871         * nscd/nscd-client.h: Include sys/uio.h.
4872         (__readall, __readvall, writeall): New prototypes.
4873         * nscd/connections.c (writeall): New function.
4874         (handle_request): Use it.
4875         * nscd/aicache.c (addhstaiX): Likewise.
4876         * nscd/initgrcache.c (addinitgroupsX): Likewise.
4877         * nscd/hstcache.c (cache_addhst): Likewise.
4878         * nscd/grpcache.c (cache_addgr): Likewise.
4879         * nscd/pwdcache.c (cache_addpw): Likewise.
4880         * nscd/nscd_helper.c (__readall, __readvall): New functions.
4881         * nscd/nscd_getai.c (__nscd_getai): Use them.
4882         * nscd/nscd_getpw_r.c (__nscd_getpw_r): Likewise.
4883         * nscd/nscd_getgr_r.c (__nscd_getgr_r): Likewise.
4884         * nscd/nscd_gethst_r.c (__nscd_gethst_r): Likewise.
4885         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
4887 2005-02-22  Roland McGrath  <roland@redhat.com>
4889         * include/sys/socket.h: Declare __recv.
4890         * sysdeps/generic/recv.c (recv): Rename to __recv, and add weak alias.
4891         * sysdeps/mach/hurd/recv.c: Likewise.
4893         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <execinfo.h> for
4894         __backtrace_* decls.
4896         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
4897         (INTERNAL_SYSCALL_ERROR_P): Evalute VAL.  Parenthesize ERR.
4898         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
4900         * include/signal.h: Include <string.h> for memset decl.
4902 2005-02-22  Andreas Schwab  <schwab@suse.de>
4904         * posix/execvp.c (execvp): Fix invalid free.
4906 2005-02-22  Jakub Jelinek  <jakub@redhat.com>
4908         [BZ #1095]
4909         * malloc/Makefile (CFLAGS-mcheck-init.c): Add.
4910         * sunrpc/Makefile: Add $(PIC-ccflag) to CFLAGS-x* for
4911         librpcsvc.a objects.
4913 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
4915         [BZ #1107]
4916         * iconvdata/ibm930.h: Correct Yen mapping.
4917         * iconvdata/ibm939.h: Likewise.
4918         * iconvdata/testdata/IBM930..UTF8: Adjust test data.
4919         * iconvdata/testdata/IBM939..UTF8: Likewise.
4920         Patch by Jiro Sekiba <SEKIBA@jp.ibm.com>.
4922         * iconvdata/Makefile (modules): Add IBM1025, IBM1122, IBM1137, IBM1153,
4923         IBM1154, IBM1155, IBM1156, IBM1157, and IBM1158.
4924         (distribute): Add ibm1025.c, ibm1025.h, ibm1122.c, ibm1122.h,
4925         ibm1137.c, ibm1137.h, ibm1153.c, ibm1153.h, ibm1154.c, ibm1154.h,
4926         ibm1155.c, ibm1155.h, ibm1156.c, ibm1156.h, ibm1157.c, ibm1157.h,
4927         ibm1158.c, and ibm1158.h.
4928         * iconvdata/TESTS: Add IBM1025, IBM1122, IBM1137, IBM1153,
4929         IBM1154, IBM1155, IBM1156, IBM1157, and IBM1158.
4930         * iconvdata/gconv-modules: Likewise.
4931         * iconvdata/ibm1025.c: New file.
4932         * iconvdata/ibm1025.h: New file.
4933         * iconvdata/ibm1122.c: New file.
4934         * iconvdata/ibm1122.h: New file.
4935         * iconvdata/ibm1137.c: New file.
4936         * iconvdata/ibm1137.h: New file.
4937         * iconvdata/ibm1153.c: New file.
4938         * iconvdata/ibm1153.h: New file.
4939         * iconvdata/ibm1154.c: New file.
4940         * iconvdata/ibm1154.h: New file.
4941         * iconvdata/ibm1155.c: New file.
4942         * iconvdata/ibm1155.h: New file.
4943         * iconvdata/ibm1156.c: New file.
4944         * iconvdata/ibm1156.h: New file.
4945         * iconvdata/ibm1157.c: New file.
4946         * iconvdata/ibm1157.h: New file.
4947         * iconvdata/ibm1158.c: New file.
4948         * iconvdata/ibm1158.h: New file.
4949         * iconvdata/testdata/IBM1025: New file.
4950         * iconvdata/testdata/IBM1025..UTF8: New file.
4951         * iconvdata/testdata/IBM1122: New file.
4952         * iconvdata/testdata/IBM1122..UTF8: New file.
4953         * iconvdata/testdata/IBM1137: New file.
4954         * iconvdata/testdata/IBM1137..UTF8: New file.
4955         * iconvdata/testdata/IBM1153: New file.
4956         * iconvdata/testdata/IBM1153..UTF8: New file.
4957         * iconvdata/testdata/IBM1154: New file.
4958         * iconvdata/testdata/IBM1154..UTF8: New file.
4959         * iconvdata/testdata/IBM1155: New file.
4960         * iconvdata/testdata/IBM1155..UTF8: New file.
4961         * iconvdata/testdata/IBM1156: New file.
4962         * iconvdata/testdata/IBM1156..UTF8: New file.
4963         * iconvdata/testdata/IBM1157: New file.
4964         * iconvdata/testdata/IBM1157..UTF8: New file.
4965         * iconvdata/testdata/IBM1158: New file.
4966         * iconvdata/testdata/IBM1158..UTF8: New file.
4967         Contributed by Jiro Sekiba <SEKIBA@jp.ibm.com>.
4969 2005-02-10  Paolo Bonzini  <bonzini@gnu.org>
4971         * posix/regcomp.c (lower_subexp): Do not optimize empty
4972         subexpressions even with REG_NOSUB.
4973         * posix/rxspencer/tests: Add a previously failing testcase.
4975 2005-02-21  Alan Modra <amodra@bigpond.net.au>
4977         [BZ #719]
4978         * elf/dl-reloc.c (_dl_nothread_init_static_tls): Assert that dtv
4979         array index is within bounds.
4981 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
4983         [BZ #719]
4984         * elf/dl-load.c: Do not allow PT_TLS in modules loaded in statically
4985         linked code.
4986         * sysdeps/generic/dl-tls.c [!SHARED]: Don't build _dl_next_tls_modid.
4987         * elf/Makefile: Remove rules to build and run tst-tls9-static.
4989         [BZ #719]
4990         * elf/dl-reloc.c (_dl_nothread_init_static_tls): Avoid using
4991         THREAD_DTV multiple times, this minimally reduces code size on
4992         some archs.
4994 2005-02-21  Jakub Jelinek  <jakub@redhat.com>
4996         [BZ #768]
4997         * nscd/nscd_gethst_r.c (nscd_gethst_r): Set *h_errnop to
4998         NETDB_INTERNAL if buffer is too small.
5000         [BZ #768]
5001         * nscd/hstcache.c (INCR): Remove.
5002         (addhstbyX): Double buflen in each iteration rather than add INCR.
5003         * nscd/grpcache.c: Likewise.
5004         * nscd/pwdcache.c: Likewise.
5006 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
5008         * sysdeps/unix/sysv/linux/libc_fatal.c: Print backtrace and memory
5009         map if requested.
5010         * debug/chk_fail.c: Request backtrace and memory map dump.
5012         * Versions.def: Add GLIBC_2.4 for libc.
5013         * debug/fgets_chk.c: New file.
5014         * debug/fgets_u_chk.c: New file.
5015         * debug/getcwd_chk.c: New file.
5016         * debug/getwd_chk.c: New file.
5017         * debug/readlink_chk.c: New file.
5018         * debug/read_chk.c: New file.
5019         * debug/pread_chk.c: New file.
5020         * debug/pread64_chk.c: New file.
5021         * debug/recv_chk.c: New file.
5022         * debug/recvfrom_chk.c: New file.
5023         * debug/Versions: Add all new functions with version GLIBC_2.4.
5024         * debug/Makefile (routines): Add fgets_chk, fgets_u_chk, read_chk,
5025         pread_chk, pread64_chk, recv_chk, recvfrom_chk, readlink_chk,
5026         getwd_chk, and getcwd_chk.  Plus appropriate CFLAGS definitions.
5027         * debug/tst-chk1.c: Add more tests.
5028         * libio/bits/stdio2.h: Add macros for fgets and fgets_unlocked.
5029         * include/stdio.h: Declare __fgets_chk and __fgets_unlocked_chk.
5030         * posix/unistd.h: Include <bits/unistd.h> for fortification.
5031         * posix/bits/unistd.h: New file.
5032         * posix/Makefile (headers): Add bits/unistd.h.
5033         * socket/sys/socket.h: Include <bits/socket2.h> for fortification.
5034         * socket/bits/socket2.h: New file.
5035         * socket/Makefile (headers): Add bits/socket2.h.
5037         * string/bits/string3.h: Extend memset macro to check for zero 3rd
5038         parameter and use __memset_zero_constant_len_parameter in that case.
5039         * sysdeps/generic/memset_chk.c: Add
5040         __memset_zero_constant_len_parameter alias and linker warning.
5041         * debug/Versions: Add __memset_zero_constant_len_parameter to libc
5042         with version GLIBC_2.4.
5044         * sysdeps/generic/bits/types.h: Don't unnecessarily use __extension__
5045         in __STD_TYPE definition.
5047 2005-02-21  Jakub Jelinek  <jakub@redhat.com>
5049         * malloc/malloc.c (malloc_printerr): If MALLOC_CHECK_={5,7}, print
5050         the error message rather than program name.
5052 2005-02-21  Ulrich Drepper  <drepper@redhat.com>
5054         [BZ #767]
5055         * posix/unistd.h: symlink and readlink are unconditionally
5056         available in the 2001 spec.
5058 2005-02-16  Roland McGrath  <roland@redhat.com>
5060         * intl/dcigettext.c (_nl_find_msg): Add a cast.
5062         * nis/nis_clone_dir.c (nis_clone_directory): Use char * for ADDR.
5063         * nis/nis_clone_obj.c (nis_clone_object): Likewise.
5064         * nis/nis_clone_res.c (nis_clone_result): Likewise.
5066         * resolv/nss_dns/dns-network.c (getanswer_r): Use const unsigned char *
5067         for END_OF_MESSAGE and CP.
5069         * resolv/res_send.c (send_dg): Add else branch for case impossible
5070         unless `poll' is buggy.
5072         * crypt/crypt_util.c (__setkey_r): Add a cast.
5074         * locale/programs/linereader.c (get_toplvl_escape): Use size_t for
5075         NBYTES, and unsigned char * for BYTES.
5077         * locale/programs/charmap.c (charmap_new_char): Use size_t and
5078         unsighed char * for NBYTES, BYTES parameters.
5080         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Take const char * argument
5081         and cast it.
5082         * sysdeps/i386/i686/dl-hash.h (_dl_elf_hash): Likewise.
5084         * sunrpc/create_xid.c (_create_xid): Don't use unsigned long for RES.
5086         * sunrpc/svcauth_des.c (_svcauth_des): Fix cast type.
5088         * sunrpc/auth_des.c (authdes_create): Don't use u_char for PKEY_DATA.
5089         (authdes_marshal): Don't use unsigned int for LEN.
5090         * sunrpc/xdr.c (xdr_hyper): Don't use unsigned long for T2.
5091         (xdr_u_hyper): Likewise.
5092         (xdr_u_short): Don't use u_long for L.
5093         * sunrpc/xdr_intXX_t.c (xdr_int64_t): Don't use uint32_t for T2.
5095         * inet/rexec.c (rexec_af): Use socklen_t.
5096         * sunrpc/key_call.c (getkeyserv_handle): Likewise.
5097         * sunrpc/rtime.c (rtime): Likewise.
5098         * resolv/res_send.c (send_vc, send_dg): Likewise.
5099         * nis/nis_callback.c (__nis_create_callback): Likewise.
5101         * sysdeps/generic/libc-start.c: Use unsigned int for nthreads ptr.
5103         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix type of ADDR local.
5105         * libio/libio.h (_IO_BE): Add parenthesis around EXPR.
5107         * intl/dcigettext.c (INTVARDEF, INTUSE): Macros removed.
5108         (_nl_default_dirname): Use libc_hidden_data_def instead of INTVARDEF.
5109         (libc_freeres_fn, DCIGETTEXT): Don't use INTUSE.
5110         * intl/bindtextdom.c (INTUSE): Macro removed.
5111         (_nl_default_dirname): Use libc_hidden_proto.
5112         (set_binding_values): Don't use INTUSE.
5113         * include/libintl.h (_libc_intl_domainname_internal): Decl removed.
5114         (_libc_intl_domainname): Use libc_hidden_proto.
5115         * posix/regex_internal.h (gettext): Remove INTUSE on it.
5116         * locale/SYS_libc.c (_libc_intl_domainname): Use libc_hidden_data_def
5117         rather than INTDEF.
5118         * include/libintl.h (_): Don't use *_internal name.
5120         * ctype/ctype-extn.c (__ctype_tolower, __ctype_toupper): Use int32_t,
5121         not uint32_t.
5122         * locale/lc-ctype.c (_nl_postload_ctype): Likewise for assignments.
5124         * iconv/gconv_open.c (__gconv_open): Remove useless cast.
5126         [BZ #721]
5127         * sysdeps/i386/dl-machine.h (ELF_MACHINE_NO_RELA): Define this outside
5128         of [RESOLVE_MAP].
5129         * sysdeps/sh/dl-machine.h (ELF_MACHINE_NO_REL): Likewise.
5130         * sysdeps/powerpc/powerpc32/dl-machine.h
5131         (elf_machine_rel, elf_machine_rel_relative): Removed.
5132         * sysdeps/powerpc/powerpc64/dl-machine.h
5133         (elf_machine_rel, elf_machine_rel_relative): Removed.
5135 2005-02-03  Alexandre Oliva  <aoliva@redhat.com>
5137         [BZ #721]
5138         * elf/dynamic-link.h: Don't declare nested auto functions that are
5139         not going to be defined.
5141 2004-07-23  Jakub Jelinek  <jakub@redhat.com>
5143         [BZ #284]
5144         * include/features.h (_POSIX_SOURCE, _POSIX_C_SOURCE): Define
5145         if _XOPEN_SOURCE >= 500 even if __STRICT_ANSI__ is defined.
5147 2005-02-16  Roland McGrath  <roland@redhat.com>
5149         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Move UBP_EV defn
5150         inside [! SHARED] where it's used.
5152 2005-02-15  Ulrich Drepper  <drepper@redhat.com>
5154         * sysdeps/generic/bits/byteswap.h: Make sure result of all the
5155         functions and macros is unsigned.
5157 2005-02-11  Barry deFrese  <bddebian@comcast.net>
5159         [BZ #722]
5160         * sysdeps/mach/hurd/setresgid.c: Use weak_alias.
5161         * sysdeps/mach/hurd/setresuid.c: Likewise.
5163 2005-02-14  GOTO Masanori  <gotom@debian.or.jp>
5165         * misc/sys/syslog.h: Fix typo in comment.
5167 2005-02-14  Roland McGrath  <roland@redhat.com>
5169         [BZ #720]
5170         * sysdeps/unix/sysv/linux/sys/kd.h: Don't leave _LINUX_TYPES_H defined
5171         if it wasn't originally.
5173 2005-02-14  GOTO Masanori  <gotom@debian.or.jp>
5175         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove the duplicated
5176         getpeername entry.
5177         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
5178         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
5180 2005-02-11  Jakub Jelinek  <jakub@redhat.com>
5182         * scripts/soversions.awk: Only record first WORDSIZE{32,64}
5183         matching line.
5185 2005-02-14  Alan Modra  <amodra@bigpond.net.au>
5187         [BZ #721]
5188         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Define
5189         with auto inline, and attribute always_inline.
5190         (elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
5191         (elf_machine_rel, elf_machine_rel_relative): Likewise.
5192         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
5193         (elf_machine_rela_relative, elf_machine_lazy_rel): Likewise.
5194         (elf_machine_rel, elf_machine_rel_relative): Likewise.
5195         (elf_machine_tprel): Likewise.
5197 2005-02-14  Andreas Schwab  <schwab@suse.de>
5199         * manual/filesys.texi (Random Access Directory): Fix type of file
5200         position value for telldir and seekdir.
5201         (Attribute Meanings): Fix typo.
5203 2005-02-14  H.J. Lu  <hongjiu.lu@intel.com>
5205         * csu/elf-init.c (__libc_csu_fini): Enable if LIBC_NONSHARED
5206         isn't defined.
5207         * sysdeps/generic/libc-start.c (LIBC_START_MAIN): Call fini
5208         if SHARED isn't defined.
5209         * elf/Makefile (tests-static): Add tst-array1-static.
5210         ($(objpfx)tst-array1-static.out): New target.
5211         * elf/tst-array1-static.c: New file.
5213 2005-02-11  Jakub Jelinek  <jakub@redhat.com>
5215         [BZ #1100]
5216         * debug/chk_fail.c (__chk_fail): Add a while (1) loop around
5217         __libc_message to kill GCC warning about noreturn function returning.
5219         * elf/rtld.c (dlmain): If LD_TRACE_PRELINKING, clear l_relocated flag
5220         before relocating ld.so again.
5222         * elf/rtld.c (_dl_start): Set bootstrap_map.l_relocated even
5223         for already prelinked ld.so.
5225 2005-02-11  Roland McGrath  <roland@redhat.com>
5227         [BZ #715]
5228         * Makefile (installed-stubs): New variable.
5229         Set to $(inst_includedir)/gnu/stubs.h if $(biarch) is no,
5230         or to $(inst_includedir)/gnu/stubs-$(biarch).h if otherwise.
5231         [$(biarch) != no] (install-others-nosubdir): Add $(installed-stubs).
5232         ($(inst_includedir)/gnu/stubs.h): Use $(installed-stubs) for this
5233         rule's target.
5234         ($(inst_includedir)/gnu/stubs.h): New target, install from ...
5235         * include/stubs-biarch.h: New file.
5237         * shlib-versions (i.86-.*-.*): Add WORDSIZE64 line mapping to x86_64.
5239         * Makeconfig ($(common-objpfx)soversions.mk): Depend on Makeconfig.
5240         Emit defn for variable `biarch'.
5242         * include/stub-tag.h: Update comment.
5244         * scripts/soversions.awk: Fix default version set handling.
5246 2005-02-10  Roland McGrath  <roland@redhat.com>
5248         [BZ #157]
5249         * include/libc-symbols.h (stub_warning): Emit a marker section called
5250         .gnu.glibc-stub.NAME.
5251         * Makerules ($(objpfx)stubs): Depend on object files, not dep files.
5252         Use objdump to collect those marker section names.
5253         ($(common-objpfx)shlib.lds): Discard .gnu.glibc-stub.* sections.
5255         * Rules (subdir_objs, subdir_stubs): New phony targets.
5256         * Makefile (+subdir_targets): Add them.
5258         * Makerules ($(common-objpfx)Versions.all): Grok new leading column in
5259         soversions.i.
5261         * scripts/lib-names.awk: Consider [0-9].* a "number", not just [0-9]+.
5262         Reported by H.J. Lu <hongjiu.lu@intel.com>.
5264         * scripts/lib-names.awk: Always print WORDSIZE32 section first when
5265         doing two.
5267 2005-02-10  Jakub Jelinek  <jakub@redhat.com>
5269         * sysdeps/powerpc/powerpc32/bits/link.h: Removed.
5270         * sysdeps/powerpc/powerpc64/bits/link.h: Moved to...
5271         * sysdeps/powerpc/bits/link.h: ... here.  New file.
5273 2005-02-09  Jakub Jelinek  <jakub@redhat.com>
5275         [BZ #710]
5276         * stdlib/random_r.c (__initstate_r): Save old state.
5277         * stdlib/Makefile (tests): Add tst-random2.
5278         * stdlib/tst-random2.c: New test.
5279         Reported by Peter Bergner <bergner@vnet.ibm.com>.
5281 2005-01-25  H.J. Lu  <hongjiu.lu@intel.com>
5283         * dlfcn/dlfcn.c (init): Put it in .init_array section.
5285 2005-02-10  Roland McGrath  <roland@redhat.com>
5287         [BZ #632]
5288         * scripts/soversions.awk: Expect cpu, vendor, os as separate variables
5289         from command line.
5290         Grok shlib-versions lines with WORDSIZE* in second column.
5291         Add new leading column to output, DEFAULT for existing output lines.
5292         Also emit lines with WORDSIZE* for alternate configurations.
5293         * Makeconfig ($(common-objpfx)soversions.i): Pass those variables.
5294         ($(common-objpfx)soversions.mk): Grok new column, use only DEFAULT.
5295         ($(common-objpfx)gnu/lib-names.stmp): Depend on soversions.i instead
5296         of soversions.mk; replace inline shell script with use of ...
5297         * scripts/lib-names.awk: New file.  If input has non-DEFAULT lines,
5298         emit multiple sets of macros under #if.
5299         * shlib-versions (x86_64-.*-.*): Add WORDSIZE32 line mapping to i686.
5300         (s390x-.*-.*): Likewise for s390.
5301         (powerpc64-.*-.*): Likewise for powerpc.
5302         (sparc64-.*-.*): Likewise for sparc.
5303         (s390-.*-.*, powerpc.*-.*-.*, sparc.*-.*-.*): Add WORDSIZE64 entries
5304         for these mapping back to the above.
5306 2005-02-08  Jakub Jelinek  <jakub@redhat.com>
5308         * elf/dl-load.c (_dl_map_object_from_fd): Fix a typo.
5310 2005-02-08  Andreas Schwab  <schwab@suse.de>
5312         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Remove use of
5313         RESOLVE.
5315 2005-02-07  Richard Henderson  <rth@redhat.com>
5317         [BZ #721]
5318         * iconvdata/jis0208.h (struct jisx0208_ucs_idx): Move before use.
5320 2005-02-08  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
5322         * sysdeps/sh/dl-machine.h (elf_machine_rela): Remove code using
5323         RESOLVE.
5325 2005-02-07  Ulrich Drepper  <drepper@redhat.com>
5327         * elf/dl-load.c (_dl_map_object_from_fd): Make sure registers are
5328         set correctly.
5330 2005-01-07  Richard Henderson  <rth@redhat.com>
5332         [BZ #721]
5333         * math/math_private.h (__copysign): Define as builtin for gcc 4.
5334         (__copysignf, __copysignl): Likewise.
5335         * sysdeps/alpha/fpu/bits/mathinline.h (copysign): Don't define
5336         for gcc 4.0.
5337         (copysignf, copysignl, fabsf, fabs): Likewise.
5338         (__copysign, __copysignf, __copysignl): Remove.
5339         (__fabs, __fabsf): Remove.
5341 2005-01-07  Jakub Jelinek  <jakub@redhat.com>
5343         [BZ #738]
5344         * elf/dl-load.c (open_path): If rtld_search_dirs is in RELRO segment,
5345         avoid writing to it if none of the standard search directories exist.
5347 2005-02-07  Steven Munroe  <sjmunroe@us.ibm.com>
5349         [BZ #700]
5350         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
5351         (__novec_setcontext, __setcontext): Fix typo so CCR is restored.
5352         Load MSR as a doubleword.
5353         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
5354         (__novec_swapcontext, __swapcontext): Likewise.
5356 2005-02-07  Ulrich Drepper  <drepper@redhat.com>
5358         * iconv/iconv_prog.c (main): Provide more help in case on an error.
5360         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Define.
5362 2005-02-07  Jakub Jelinek  <jakub@redhat.com>
5364         [BZ #741]
5365         * nscd/nscd.c (termination_handler): Avoid segfault if some database
5366         is not enabled.
5368         [BZ #741]
5369         * nscd/nscd_getai.c (__nscd_getai): If ai_resp->found == -1, set
5370         __nss_not_use_nscd_hosts and return -1.
5371         * nscd/nscd_initgroups.c (__nscd_getgrouplist): If
5372         initgr_resp->found == -1, set __nss_not_use_nscd_group and return -1.
5373         Avoid leaking sockets.
5375 2005-01-28  Andreas Schwab  <schwab@suse.de>
5376             H.J. Lu  <hongjiu.lu@intel.com>
5378         [BZ #677]
5379         * elf/dl-runtime.c (fixup): Change return type to
5380         DL_FIXUP_VALUE_TYPE. Use DL_FIXUP_VALUE_TYPE,
5381         DL_FIXUP_MAKE_VALUE and DL_FIXUP_VALUE_CODE_ADDR for relocation
5382         values. Use DL_FIXUP_VALUE_ADDR and DL_FIXUP_ADDR_VALUE to
5383         store and retrieve relocation values.
5384         (profile_fixup): Likewise.
5385         * include/link.h (link_map): Use DL_FIXUP_VALUE_TYPE for
5386         l_reloc_result.
5387         * sysdeps/generic/dl-fptr.h (link_map): Forward declaration.
5388         * sysdeps/generic/dl-lookupcfg.h (DL_FIXUP_VALUE_TYPE): New.
5389         (DL_FIXUP_MAKE_VALUE): Likewise.
5390         (DL_FIXUP_VALUE_CODE_ADDR): Likewise.
5391         (DL_FIXUP_VALUE_ADDR): Likewise.
5392         (DL_FIXUP_ADDR_VALUE): Likewise.
5393         * sysdeps/ia64/dl-lookupcfg.h: Include <dl-fptr.h> for "struct fdesc".
5394         (DL_FIXUP_VALUE_TYPE): New.
5395         (DL_FIXUP_MAKE_VALUE): Likewise.
5396         (DL_FIXUP_VALUE_CODE_ADDR): Likewise.
5397         (DL_FIXUP_VALUE_ADDR): Likewise.
5398         (DL_FIXUP_ADDR_VALUE): Likewise.
5399         * sysdeps/ia64/dl-machine.h (elf_machine_profile_fixup_plt): Removed.
5400         (elf_machine_profile_plt): Removed.
5401         (elf_machine_fixup_plt): Change return type and type of value
5402         parameter to struct fdesc.
5403         (elf_machine_plt_value): Likewise.
5404         (elf_machine_rela): Use DL_FIXUP_MAKE_VALUE to construct
5405         argument for elf_machine_fixup_plt.
5407 2005-02-07  Jakub Jelinek  <jakub@redhat.com>
5409         [BZ #742]
5410         * nscd/nscd.init (reload): Print Reloading nscd: before and a newline
5411         after the status string printed by killproc.
5413 2004-11-18  Alexandre Oliva  <aoliva@redhat.com>
5415         * manual/.cvsignore: Add dir-add.texi.
5417 2005-02-06  Richard Henderson  <rth@redhat.com>
5419         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Use RESOLVE_MAP
5420         all the time.
5422 2004-11-03  Marcus Brinkmann  <marcus@gnu.org>
5424         * configure.in (sysnames): Append sysdeps/generic for each add-on.
5425         * configure: Regenerated.
5427 2005-02-02  Alfred M. Szmidt  <ams@gnu.org>
5429         * sysdeps/mach/hurd/tls.h: Include <stdbool.h>
5430         (dtv_t): Change pointer type to be a struct which also contains
5431         information whether the memory pointed to is static TLS or not.
5433         * sysdeps/generic/syslog.c (send_flags) [!send_flags]: Define it.
5435         * shadow/sgetspent_r.c (FALSE): Macro renamed to ...
5436         (FALSEP): ... this.  Updated all references.
5438         [BZ #765]
5439         * libio/fmemopen.c: Include <stdint.h>.
5441 2005-01-30  Ulrich Drepper  <drepper@redhat.com>
5443         [BZ #1103]
5444         * nscd/nscd_helper.c (get_mapping): Use MSG_NOSIGNAL if available.
5445         * nscd/connections.c (send_ro_fd): Likewise.
5447 2005-01-28  H.J. Lu  <hongjiu.lu@intel.com>
5449         * elf/tst-auditmod1.c: Add ia64 entries.
5450         * sysdeps/generic/ldsodefs.h (La_ia64_regs): New.
5451         (La_ia64_retval): New.
5452         (audit_ifaces): Add ia64 entries.
5453         * sysdeps/ia64/bits/link.h: New file.
5454         * sysdeps/ia64/dl-machine.h (elf_machine_runtime_setup): Test
5455         for dl_profile non-null.
5456         (ARCH_LA_PLTENTER): New.
5457         (ARCH_LA_PLTEXIT): New.
5458         * sysdeps/ia64/dl-trampoline.S (_dl_runtime_resolve): Allocate
5459         only 2 output registers. Allocate stack to save/restore
5460         8 incoming fp registers. Call _dl_fixup instead of fixup.
5461         (_dl_runtime_profile): Rewrite.
5463 2005-01-28  Martin Schwidefsky  <schwidefsky@de.ibm.com>
5465         * sysdeps/s390/bits/link.h: New file.
5466         * sysdeps/s390/s390-32/dl-trampoline.S: New file.
5467         * sysdeps/s390/s390-64/dl-trampoline.S: New file.
5468         * sysdeps/s390/s390-32/dl-machine.h: Move PLT trampolines to
5469         dl-trampoline.S. Use RESOLVE_MAP instead of RESOLVE to protect
5470         relocation code.
5471         (elf_machine_runtime_setup): Test for dl_profile non-null.
5472         (elf_machine_rela): Remove code using RESOLVE.
5473         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
5474         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
5475         * sysdeps/generic/ldsodefs.h (La_s390_32_regs, La_s390_32_retval,
5476         La_s390_64_regs, La_s390_64_retval): New.
5477         * elf/tst-auditmod1.c: Add s390 entries.
5479         [BZ #743]
5480         * sysdeps/s390/bits/string.h (strlen, strncpy, strcat, strncat,
5481         strncat, memchr, strcmp): Add missing memory clobber.
5483 2005-01-27  Ulrich Drepper  <drepper@redhat.com>
5485         * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_globfree): Also
5486         copy gl_offs.  Patch by Sergey Tikhonov <tsv@solvo.ru>.
5488 2005-01-27  Paolo Bonzini  <bonzini@gnu.org>
5490         [BZ #558]
5491         * posix/regcomp.c (calc_inveclosure): Return reg_errcode_t.
5492         Initialize the node sets in dfa->inveclosures.
5493         (analyze): Initialize inveclosures only if it is needed.
5494         Check errors from calc_inveclosure.
5495         * posix/regex_internal.c (re_dfa_add_node): Do not initialize
5496         the inveclosure node set.
5497         * posix/regexec.c (re_search_internal): If nmatch includes unused
5498         subexpressions, reset them to { rm_so: -1, rm_eo: -1 } here.
5500         * posix/regcomp.c (parse_bracket_exp) [!RE_ENABLE_I18N]:
5501         Do build a SIMPLE_BRACKET token.
5503         * posix/regexec.c (transit_state_mb): Do not examine nodes
5504         where ACCEPT_MB is not set.
5506 2005-01-27  Jakub Jelinek  <jakub@redhat.com>
5508         * stdlib/tst-fmtmsg.c: Include stdlib.h.
5509         * stdio-common/tst-fmemopen2.c: Include string.h.
5510         * posix/execvp.c: Include stdbool.h.
5512 2004-12-13  Paolo Bonzini  <bonzini@gnu.org>
5514         Separate parsing and creation of the NFA.  Avoided recursion on
5515         the (very unbalanced) parse tree.
5516         [BZ #611]
5517         * posix/regcomp.c (struct subexp_optimize, analyze_tree, calc_epsdest,
5518         re_dfa_add_tree_node, mark_opt_subexp_iter): Removed.
5519         (optimize_subexps, duplicate_tree, calc_first, calc_next,
5520         mark_opt_subexp): Rewritten.
5521         (preorder, postorder, lower_subexps, lower_subexp, link_nfa_nodes,
5522         create_token_tree, free_tree, free_token): New.
5523         (analyze): Accept a regex_t *.  Invoke the passes via the preorder and
5524         postorder generic visitors.  Do not initialize the fields in the
5525         re_dfa_t that represent the transitions.
5526         (free_dfa_content): Use free_token.
5527         (re_compile_internal): Analyze before UTF-8 optimizations.  Do not
5528         include optimization of subexpressions.
5529         (create_initial_state): Fetch the DFA node index from the first node's
5530         bin_tree_t *.
5531         (optimize_utf8): Abort on unexpected nodes, including OP_DUP_QUESTION.
5532         Return on COMPLEX_BRACKET.
5533         (duplicate_node_closure): Fix comment.
5534         (duplicate_node): Do not initialize the fields in the
5535         re_dfa_t that represent the transitions.
5536         (calc_eclosure, calc_inveclosure): Do not handle OP_DELETED_SUBEXP.
5537         (create_tree): Remove final argument.  All callers adjusted.  Rewritten
5538         to use create_token_tree.
5539         (parse_reg_exp, parse_branch, parse_expression, parse_bracket_exp,
5540         build_charclass_op): Use create_tree or create_token_tree instead
5541         of re_dfa_add_tree_node.
5542         (parse_dup_op): Likewise.  Also free the tree using free_tree for
5543         "<re>{0}", and lower OP_DUP_QUESTION to OP_ALT: "a?" is equivalent
5544         to "a|".  Adjust invocation of mark_opt_subexp.
5545         (parse_sub_exp): Create a single SUBEXP node.
5546         * posix/regex_internal.c (re_dfa_add_node): Remove last parameter,
5547         always perform as if it was 1.  Do not initialize OPT_SUBEXP and
5548         DUPLICATED, and initialize the DFA fields representing the transitions.
5549         * posix/regex_internal.h (re_dfa_add_node): Adjust prototype.
5550         (re_token_type_t): Move OP_DUP_PLUS and OP_DUP_QUESTION to the tokens
5551         section.  Add a tree-only code SUBEXP.  Remove OP_DELETED_SUBEXP.
5552         (bin_tree_t): Include a full re_token_t for TOKEN.  Turn FIRST and
5553         NEXT into pointers to trees.  Remove ECLOSURE.
5555 2004-12-28  Paolo Bonzini  <bonzini@gnu.org >
5557         [BZ #605]
5558         * posix/regcomp.c (parse_bracket_exp): Do not modify DFA nodes
5559         that were already created.
5560         * posix/regex_internal.c (re_dfa_add_node): Set accept_mb field
5561         in the token if needed.
5562         (create_ci_newstate, create_cd_newstate): Set accept_mb field
5563         from the tokens' field.
5564         * posix/regex_internal.h (re_token_t): Add accept_mb field.
5565         (ACCEPT_MB_NODE): Removed.
5566         * posix/regexec.c (proceed_next_node, transit_states_mb,
5567         build_sifted_states, check_arrival_add_next_nodes): Use
5568         accept_mb instead of ACCEPT_MB_NODE.
5570 2005-01-26  Ulrich Drepper  <drepper@redhat.com>
5572         [BZ #1100]
5573         * debug/chk_fail.c (__chk_fail): Print program name in final message.
5575         * sysdeps/unix/sysv/linux/kernel-features.h: Found reference to
5576         MSG_NOSIGNAL being in 2.2 kernels.
5578 2005-01-26  Jakub Jelinek  <jakub@redhat.com>
5580         * sysdeps/unix/sysv/linux/i386/sysdep.h
5581         (SYSCALL_ERROR_HANDLER_TLS_STORE): Remove unnecessary 0 imm.
5583         [BZ #693]
5584         * posix/regex_internal.h (DUMMY_CONSTRAINT): Rename to...
5585         (WORD_DELIM_CONSTRAINT): ...this.
5586         (NOT_WORD_DELIM_CONSTRAINT): Define.
5587         (re_context_type): Add INSIDE_NOTWORD and NOT_WORD_DELIM,
5588         change WORD_DELIM to use WORD_DELIM_CONSTRAINT.
5589         * posix/regcomp.c (peek_token): For \B create NOT_WORD_DELIM
5590         anchor instead of INSIDE_WORD.
5591         (parse_expression): Handle NOT_WORD_DELIM constraint.
5592         * posix/bug-regex19.c (tests): Adjust tests that relied on \B
5593         being inside word instead of not word delim.
5594         * posix/tst-rxspencer.c (mb_frob_pattern): Don't frob escaped
5595         characters.
5596         * posix/rxspencer/tests: Add some new tests.
5598 2005-01-14  GOTO Masanori  <gotom@debian.or.jp>
5600         [BZ #1108]
5601         * sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
5602         irrespective of Cflag.
5604         * manual/memory.texi (sbrk): Fix definition.
5605         * manual/string.texi (strcasestr): Fix example typo.
5607 2005-01-25  Roland McGrath  <roland@redhat.com>
5609         * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
5611 2005-01-23  Roland McGrath  <roland@redhat.com>
5613         [BZ #737]
5614         * sysdeps/i386/Makefile (defines): If -mno-tls-direct-seg-refs appears
5615         in $(CFLAGS), add -DNO_TLS_DIRECT_SEG_REFS.
5616         * sysdeps/unix/sysv/linux/i386/sysdep.h [USE___THREAD]
5617         (SYSCALL_ERROR_HANDLER) [NO_TLS_DIRECT_SEG_REFS]: Load thread pointer
5618         from %gs:0 and add to that value, rather that direct %gs:OFFSET access.
5619         * sysdeps/unix/i386/sysdep.S [NO_TLS_DIRECT_SEG_REFS]: Likewise.
5621 2005-01-25  Jakub Jelinek  <jakub@redhat.com>
5623         [BZ #731]
5624         * stdlib/fmtmsg.c (addseverity): Remove new_string variable.
5625         (free_mem): Don't free string.
5626         * stdlib/tst-fmtmsg.c: Include string.h.
5627         (main): Add some more tests.
5629 2005-01-25  Andreas Schwab  <schwab@suse.de>
5631         [BZ #736]
5632         * timezone/asia: Update from tzdata2005c.
5633         * timezone/backward: Likewise.
5634         * timezone/europe: Likewise.
5635         * timezone/leapseconds: Likewise.
5636         * timezone/northamerica: Likewise.
5637         * timezone/southamerica: Likewise.
5639         [BZ #736]
5640         * timezone/private.h: Update from tzcode2005c.
5641         * timezone/tzfile.h: Likewise.
5642         * timezone/zdump.c: Likewise.
5643         * timezone/zic.c: Likewise.
5645 2005-01-25  Ulrich Drepper  <drepper@redhat.com>
5647         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove code using
5648         RESOLVE.
5649         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Remove code
5650         using RESOLVE.
5651         * elf/rtld.c (_dl_start): Remove RESOLVE definition.
5653 2005-01-25  Alan Modra  <amodra@bigpond.net.au>
5655         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Test
5656         sym_map, not sym, against zero.
5658 2005-01-24  Ulrich Drepper  <drepper@redhat.com>
5660         [BZ #671]
5661         * misc/syslog.c: Moved to...
5662         * sysdeps/generic/syslog.c: ...here.
5663         [NO_SIGIPE]: Don't install SIGPIPE handler.
5664         * sysdeps/unix/sysv/linux/syslog.c: New file.
5665         * sysdeps/unix/sysv/linux/kernel-features.h: Define
5666         __ASSUME_MSG_NOSIGNAL.
5668 2005-01-22  Richard Henderson  <rth@redhat.com>
5670         * sysdeps/alpha/dl-trampoline.S: New file.
5671         * sysdeps/alpha/dl-machine.h: Move PLT trampolines there.
5672         Use RESOLVE_MAP instead of RESOLVE to protect relocation code.
5673         (elf_machine_runtime_setup): Test for dl_profile non-null.
5674         (ARCH_LA_PLTENTER, ARCH_LA_PLTEXIT): New.
5675         * sysdeps/alpha/bits/link.h: New file.
5676         * sysdeps/generic/ldsodefs.h (La_alpha_regs, La_alpha_retval): New.
5677         (struct audit_ifaces): Add alpha entries.
5678         * elf/tst-auditmod1.c: Add alpha entries.
5680 2005-01-22  Ulrich Drepper  <drepper@redhat.com>
5682         * sysdeps/ia64/dl-machine.h: Remove PLT trampolines here.
5683         * sysdeps/ia64/dl-trampoline.S: New file.
5685         * sysdeps/x86_64/bits/link.h: Use namespace-safe identifiers in
5686         La_x86_64_xmm definition.
5688         * posix/Makefile: Use CFLAGS-*.os instead of CFLAGS-*.c for frame
5689         pointer option.
5690         * stdlib/Makefile (CFLAGS-system.os): Use this instead of
5691         CFLAGS-system.c for frame pointer option.
5693 2005-01-21  Roland McGrath  <roland@redhat.com>
5695         * elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS.
5696         * sysdeps/i386/dl-machine.h: Update decl.
5698 2005-01-21  Jakub Jelinek  <jakub@redhat.com>
5700         [BZ #735]
5701         * elf/Makefile: Add rules to build and run tst-align2.
5702         * elf/tst-align2.c: New test.
5703         * elf/tst-alignmod2.c: New file.
5704         * sysdeps/powerpc/tst-stack-align.h: New file.
5705         * sysdeps/i386/dl-machine.h (RTLD_START): Align stack and clear frame
5706         pointer before calling _dl_init.
5707         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
5709 2005-01-20  Ulrich Drepper  <drepper@redhat.com>
5711         * posix/execl.c: Do not allocate potentially large buffers on the
5712         stack.
5713         * posix/execle.c: Likewise.
5714         * posix/execlp.c: Likewise.
5715         * posix/execvp.c: Likewise.
5716         (script_execute): Removed.
5717         (allocate_scripts_argv): New function.  Called at most once to
5718         allocate memory, not every time a script is run.  Adjust caller.
5720         * sysdeps/generic/wordexp.c (exec_comm): Add a few
5721         TEMP_FAILURE_RETRY.  Reorganize code to avoid multiple calls to
5722         exec_comm_child.
5723         (exec_comm_child): Can now be inlined.
5725         * posix/Makefile: Add -fomit-frame-pointer for a few more files.
5726         * stdlib/Makefile: Likewise.
5728 2005-01-19  Roland McGrath  <roland@redhat.com>
5730         [BZ #681]
5731         * sunrpc/openchild.c (_openchild): Use NULL instead of 0 for trailing
5732         argument to execlp.
5733         Reported by Marcus Meissner <meissner@suse.de>.
5735 2005-01-19  Jakub Jelinek  <jakub@redhat.com>
5737         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Fix a typo
5738         in assert.
5739         * iconv/strtab.c (strtabfinalize): Likewise.
5741         * libio/iofopncook.c (_IO_cookie_seekoff): Add prototype.
5743 2005-01-17  Roland McGrath  <roland@redhat.com>
5745         [BZ #745]
5746         * nscd/Makefile (LDLIBS-nscd): New variable.
5747         ($(objpfx)nscd): Use that instead of selinux-LIBS.
5749         * Makeconfig (link-extra-libs): Define just as $(LDLIBS-$(@F)).
5750         (link-extra-libs-static): Define to $(link-extra-libs).
5751         (link-extra-libs-bounded): Likewise.
5753 2005-01-17  Ulrich Drepper  <drepper@redhat.com>
5755         * include/link.h: Remove stray definition of pltenter.
5757 2005-01-16  GOTO Masanori  <gotom@debian.or.jp>
5759         [BZ #734]
5760         * sysdeps/unix/rewinddir.c: Reset filepos.
5761         * dirent/tst-seekdir.c: Check telldir value after calling rewinddir.
5763 2005-01-15  Ulrich Drepper  <drepper@redhat.com>
5765         * elf/tst-auditmod1.c: Reduce duplication.
5767 2005-01-16  Andreas Schwab  <schwab@suse.de>
5769         * sysdeps/m68k/dl-machine.h: Remove trampoline code.  Define
5770         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
5771         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
5772         GLRO(dl_profile) != NULL.
5773         * sysdeps/m68k/dl-trampoline.S: New file.
5774         * sysdeps/m68k/bits/link.h: New file.
5775         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add m68k
5776         variants.
5777         * elf/tst-auditmod1.c: Add m68k support.
5779 2005-01-14  Ulrich Drepper  <drepper@redhat.com>
5781         * posix/regcomp.c [!_LIBC] (init_dfa): Fix determining of relevant
5782         LC_* variable.  Patch by Aharon Robbins <arnold@skeeve.com>.
5784         [BZ #731]
5785         * stdlib/fmtmsg.c (internal_addseverity): Remove incorrect free call.
5786         * stdlib/tst-fmtmsg.c (main): Add another addseverity test.
5788 2005-01-12  Ulrich Drepper  <drepper@redhat.com>
5790         * elf/dl-load.c (_dl_map_object_from_fd): We don't have to allow
5791         callers from libc anymore.
5793         * elf/dl-open.c (dl_open_worker): Pass __RTLD_AUDIT flag from caller
5794         to _dl_map_object_deps.
5795         * elf/dl-load.c (_dl_map_object_from_fd): Don't change memory
5796         protections when loading auditing modules.
5798         * dlfcn/dlopen.c (dlopen_doit): Catch invalid mode arguments and fail.
5800         * posix/getconf.c: Update copyright year.
5801         * nss/getent.c: Likewise.
5802         * nscd/nscd_nischeck.c: Likewise.
5803         * iconv/iconvconfig.c: Likewise.
5804         * iconv/iconv_prog.c: Likewise.
5805         * elf/ldconfig.c: Likewise.
5806         * catgets/gencat.c: Likewise.
5807         * csu/version.c: Likewise.
5808         * elf/ldd.bash.in: Likewise.
5809         * elf/sprof.c (print_version): Likewise.
5810         * locale/programs/locale.c: Likewise.
5811         * locale/programs/localedef.c: Likewise.
5812         * nscd/nscd.c (print_version): Likewise.
5813         * debug/xtrace.sh: Likewise.
5814         * malloc/memusage.sh: Likewise.
5815         * malloc/mtrace.pl: Likewise.
5816         * debug/catchsegv.sh: Likewise.
5818 2005-01-11  Thorsten Kukuk  <kukuk@suse.de>
5820         [BZ #733]
5821         * sunrpc/svc_tcp.c (svctcp_create): Call listen with SOMAXCONN
5822         as backlog.
5823         * sunrpc/svc_unix.c (svcunix_create): Likewise.
5825         [BZ #1099]
5826         * grp/putgrent.c (putgrent): Don't write 0 as group
5827         ID if groupname starts with + or -.
5828         * pwd/putpwent.c (putpwent): Don't write 0 as user or
5829         group ID if user name starts with + or -.
5831 2005-01-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
5833         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add sh variants.
5834         * sysdeps/elf/tst-auditmod1.c: Add sh support.
5835         * sysdeps/sh/bits/link.h: New.
5836         * sysdeps/sh/dl-machine.h: Remove trampoline code here.  Define
5837         ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.  Remove obsolete comments.
5838         (RTLD_START): Define __fpscr_values.
5839         * sysdeps/sh/dl-trampoline.S: New file.
5840         * sysdeps/sh/sh4/dl-trampoline.S: New file.
5841         * sysdeps/sh/sh4/Versions [ld]: Add __fpscr_values.
5842         * sysdeps/sh/sh4/dl-machine.h: Remove.
5844 2005-01-10  Jakub Jelinek  <jakub@redhat.com>
5846         [BZ #732]
5847         * time/tst-strptime.c (day_tests): Add 2 new tests.
5848         (test_tm, main): Issue an error instead of segfaulting if
5849         strptime returns NULL.
5851 2005-01-10  H.J. Lu  <hongjiu.lu@intel.com>
5853         * sysdeps/alpha/libc-tls.c (__tls_get_addr): Updated for dtv_t union.
5854         * sysdeps/ia64/libc-tls.c (__tls_get_addr): Likewise.
5856 2005-01-11  Ulrich Drepper  <drepper@redhat.com>
5858         * malloc/malloc.h: Remove no-glibc support.
5860 2005-01-12  GOTO Masanori  <gotom@debian.or.jp>
5862         [BZ #650]
5863         * malloc/malloc.h: Always include features.h.
5865 2005-01-10  Roland McGrath  <roland@redhat.com>
5867         * sysdeps/ia64/fpu/e_logl.c: File removed.
5869         * dlfcn/dlfcn.c (init): Fix typo in attribute decl.
5871 2005-01-10  Ulrich Drepper  <drepper@redhat.com>
5873         * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Fix assertion and
5874         recognition of last entry.
5876 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
5878         * elf/dl-runtime.c: Include <sys/param.h>.
5880         * elf/Makefile (headers): Add bits/link.h.
5882 2005-01-09  Andreas Schwab  <schwab@suse.de>
5884         * elf/rtld.c (dl_main): Create main_map with __RTLD_OPENEXEC.
5886 2005-01-09  Andreas Jaeger  <aj@suse.de>
5888         [BZ #732]
5889         * time/strptime_l.c (__strptime_internal): Add braces to avoid
5890         warning.
5892         * sysdeps/x86_64/bits/link.h: Use vector_size for GCC 4.0.
5894         * elf/rtld.c (dl_main): Call _dl_add_to_slotinfo only if USE_TLS.
5896 2005-01-08  Jakub Jelinek  <jakub@redhat.com>
5898         * elf/Makefile (generated): Add tst-pie1{,.out,.o}.
5900 2005-01-09  Ulrich Drepper  <drepper@redhat.com>
5902         * elf/dl-fini.c (_dl_fini): Call destructors of audit DSOs after
5903         those of all the regular objects.
5905         * elf/dl-debug.c (_dl_debug_initialize): Take extra parameter and
5906         use it to select the r_debug structure for that namespace.
5907         * elf/dl-close.c (_dl_close): Adjust call to _dl_debug_initialize.
5908         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
5909         * elf/dl-open.c (_dl_open): Likewise.
5910         * elf/rtld.c (dl_main): Likewise.
5911         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Add _ns_debug
5912         member.
5913         (_dl_debug_initialize): Add new parameter in declaration.
5915         * elf/dl-close.c (_dl_close): Make sure auditing callbacks are not
5916         called for the auditing objects themselves.
5917         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
5919 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
5921         * sysdeps/powerpc/powerpc64/dl-machine.h
5922         (elf_machine_runtime_setup): If profile != 0 does not anymore mean
5923         GLRO(dl_profile) != NULL.
5924         * sysdeps/powerpc/powerpc64/bits/link.h (struct la_ppc64_regs): Add
5925         padding.
5926         * sysdeps/powerpc/powerpc64/dl-trampoline.S: (_dl_profile_resolve):
5927         Extend _dl_prof_resolve to add pass extra parameters to
5928         _dl_profile_fixup and set up structure with register content.
5930         * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_runtime_setup):
5931         If profile != 0 does not anymore mean GLRO(dl_profile) != NULL.
5932         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_prof_resolve):
5933         Extend _dl_prof_resolve to add pass extra parameters to
5934         _dl_profile_fixup and set up structure with register content.
5935         * sysdeps/powerpc/powerpc32/bits/link.h: Fix types of some fields in
5936         the register and result structures.
5937         * sysdeps/powerpc/powerpc64/bits/link.h: Fix types of some fields
5938         in the 32-bit register and result structures.
5940         * sysdeps/powerpc/powerpc64/dl-trampoline.S: Use register names.
5942         * sysdeps/powerpc/powerpc32/dl-trampoline.S: New file.
5943         * sysdeps/powerpc/powerpc32/dl-machine.h: Remove trampoline code here.
5944         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
5945         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc32 variants.
5946         * elf/tst-auditmod1.c: Add ppc32 support.
5947         * sysdeps/powerpc/powerpc32/bits/link.h: New file.
5948         * sysdeps/powerpc/powerpc64/bits/link.h: Add ppc32 definitions.
5950         * malloc/malloc.c (malloc_printerr): Print program name as part of
5951         error message.
5953         * misc/sys/cdefs.h (__attribute_warn_unused_result__): Define.
5954         * stdlib/stdlib.h: Make realloc with
5955         __attribute_warn_unused_result__ instead of __wur.
5956         * malloc/malloc.h: Add __wur and __attribute_warn_unused_result__
5957         markers as in <stdlib.h>.
5959         * libio/stdio.h: Remove __wur from rename and remove.
5960         * posix/unistd.h: Remove __wur from dup2.
5962 2005-01-03  Andreas Jaeger  <aj@suse.de>
5964         * elf/Makefile (tests): Revert patch from 2005-01-03.
5966 2005-01-07  Ulrich Drepper  <drepper@redhat.com>
5968         * sysdeps/unix/sysv/linux/init-first.c (__libc_init_first): Don't
5969         make __libc_init_first hidden.
5971         * elf/rtld.c [!DONT_USE_BOOTSTRAP_MAP] (_dl_start_final): Initialize
5972         l_relocated of rtld map.
5973         * sysdeps/powerpc/powerpc64/dl-trampoline.S: New file.
5974         * sysdeps/powerpc/powerpc64/dl-machine.h: Remove trampoline code here.
5975         Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT.
5976         * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add ppc64 variants.
5977         * elf/tst-auditmod1.c: Add ppc64 support.
5978         * sysdeps/powerpc/powerpc64/bits/link.h: New file.
5980 2005-01-06  Roland McGrath  <roland@redhat.com>
5982         [BZ #633]
5983         * sysdeps/unix/sysv/linux/futimes.c (__futimes): Catch errno values
5984         indicating file-name lookup errors, and return ENOSYS or EBADF instead.
5986 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
5988         * csu/elf-init.c (__libc_csu_fini): Don't do anything here.
5989         * sysdeps/generic/libc-start.c: Don't register program destructor here.
5991         * dlfcn/Makefile: Add rules to build dlfcn.c.
5992         (LDFLAGS-dl.so): Removed.
5993         * dlfcn/dlclose.c: _dl_close is now in ld.so, use function pointer
5994         table.
5995         * dlfcn/dlmopen.c: Likewise for _dl_open.
5996         * dlfcn/dlopen.c: Likewise.
5997         * dlfcn/dlopenold.c: Likewise.
5998         * elf/dl-libc.c: Likewise for _dl_open and _dl_close.
5999         * elf/Makefile (routines): Remove dl-open and dl-close.
6000         (dl-routines): Add dl-open, dl-close, and dl-trampoline.
6001         Add rules to build and run tst-audit1.
6002         * elf/tst-audit1.c: New file.
6003         * elf/tst-auditmod1.c: New file.
6004         * elf/Versions [libc]: Remove _dl_open and _dl_close.
6005         * elf/dl-close.c: Change for use inside ld.so instead of libc.so.
6006         * elf/dl-open.c: Likewise.
6007         * elf/dl-debug.c (_dl_debug_initialize): Allow reinitialization,
6008         signaled by nonzero parameter.
6009         * elf/dl-init.c: Fix use of r_state.
6010         * elf/dl-load.c: Likewise.
6012         * elf/dl-close.c: Add auditing checkpoints.
6013         * elf/dl-open.c: Likewise.
6014         * elf/dl-fini.c: Likewise.
6015         * elf/dl-load.c: Likewise.
6016         * elf/dl-sym.c: Likewise.
6017         * sysdeps/generic/libc-start.c: Likewise.
6018         * elf/dl-object.c: Allocate memory for auditing information.
6019         * elf/dl-reloc.c: Remove RESOLV.  We now always need the map.
6020         Correctly initialize slotinfo.
6021         * elf/dynamic-link.h: Adjust after removal of RESOLV.
6022         * sysdeps/hppa/dl-lookupcfg.h: Likewise.
6023         * sysdeps/ia64/dl-lookupcfg.h: Likewise.
6024         * sysdeps/powerpc/powerpc64/dl-lookupcfg.h: Removed.
6025         * elf/dl-runtime.c (_dl_fixup): Little cleanup.
6026         (_dl_profile_fixup): New parameters to point to register struct and
6027         variable for frame size.
6028         Add auditing checkpoints.
6029         (_dl_call_pltexit): New function.
6030         Don't define trampoline code here.
6031         * elf/rtld.c: Recognize LD_AUDIT.  Load modules on startup.
6032         Remove all the functions from _rtld_global_ro which only _dl_open
6033         and _dl_close needed.
6034         Add auditing checkpoints.
6035         * elf/link.h: Define symbols for auditing interfaces.
6036         * include/link.h: Likewise.
6037         * include/dlfcn.h: Define __RTLD_AUDIT.
6038         Remove prototypes for _dl_open and _dl_close.
6039         Adjust access to argc and argv in libdl.
6040         * dlfcn/dlfcn.c: New file.
6041         * sysdeps/generic/dl-lookupcfg.h: Remove all content now that RESOLVE
6042         is gone.
6043         * sysdeps/generic/ldsodefs.h: Add definitions for auditing interfaces.
6044         * sysdeps/generic/unsecvars.h: Add LD_AUDIT.
6045         * sysdeps/i386/dl-machine.h: Remove trampoline code here.
6046         Adjust for removal of RESOLVE.
6047         * sysdeps/x86_64/dl-machine.h: Likewise.
6048         * sysdeps/generic/dl-trampoline.c: New file.
6049         * sysdeps/i386/dl-trampoline.c: New file.
6050         * sysdeps/x86_64/dl-trampoline.c: New file.
6052         * sysdeps/generic/dl-tls.c: Cleanups.  Fixup for dtv_t change.
6053         Fix updating of DTV.
6054         * sysdeps/generic/libc-tls.c: Likewise.
6056         * sysdeps/arm/bits/link.h: Renamed to ...
6057         * sysdeps/arm/bits/linkmap.h: ...this.
6058         * sysdeps/generic/bits/link.h: Renamed to...
6059         * sysdeps/generic/bits/linkmap.h: ...this.
6060         * sysdeps/hppa/bits/link.h: Renamed to...
6061         * sysdeps/hppa/bits/linkmap.h: ...this.
6062         * sysdeps/i386/bits/link.h: Renamed to...
6063         * sysdeps/i386/bits/linkmap.h: ...this.
6064         * sysdeps/ia64/bits/link.h: Renamed to...
6065         * sysdeps/ia64/bits/linkmap.h: ...this.
6066         * sysdeps/s390/bits/link.h: Renamed to...
6067         * sysdeps/s390/bits/linkmap.h: ...this.
6068         * sysdeps/sh/bits/link.h: Renamed to...
6069         * sysdeps/sh/bits/linkmap.h: ...this.
6070         * sysdeps/x86_64/bits/link.h: Renamed to...
6071         * sysdeps/x86_64/bits/linkmap.h: ...this.
6073         * posix/unistd.h: Declare ftruncate for POSIX 2003.  [BZ #640]
6075 2004-12-22  Steven Munroe  <sjmunroe@us.ibm.com>
6077         [BZ #602]
6078         * math/libm-test.inc (rint_test_tonearest): New test.
6079         (rint_test_towardzero): New test.
6080         (rint_test_downward): New test.
6081         (rint_test_upward): New test.
6082         * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Fix -0.0 case.
6083         Remove redundant const values.
6084         * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Fix -0.0 case.
6085         Remove redundant const values.  Use float const.
6086         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Fix -0.0 case.
6087         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Fix -0.0 case.
6088         Use float const.
6089         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Fix -0.0 case.
6090         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Fix -0.0 case.
6091         Use float const.
6092         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Fix -0.0 case.
6093         Remove redundant const values.
6094         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Fix -0.0 case.
6095         Remove redundant const values.  Use float const.
6096         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Fix -0.0 case.
6097         Remove redundant const values.
6098         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Fix -0.0 case.
6099         Remove redundant const values.  Use float const.
6100         * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Use EALIGN for Quadword
6101         alignment.  Fix -0.0 case.  Remove redundant const values.
6102         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Use EALIGN for Quadword
6103         alignment.  Fix -0.0 case.  Remove redundant const values.
6104         Use float const.
6105         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Use EALIGN for Quadword
6106         alignment.  Fix -0.0 case.
6107         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Use EALIGN for Quadword
6108         alignment.  Fix -0.0 case.  Use float const.
6109         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Use EALIGN for Quadword
6110         alignment.  Fix -0.0 case.
6111         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Use EALIGN for Quadword
6112         alignment.  Fix -0.0 case.  Use float const.
6113         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Use EALIGN for Quadword
6114         alignment.  Fix -0.0 case.  Remove redundant const values.
6115         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Use EALIGN for Quadword
6116         alignment.  Fix -0.0 case.  Remove redundant const values.
6117         Use float const.
6118         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Use EALIGN for Quadword
6119         alignment.  Fix -0.0 case.
6120         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Use EALIGN for Quadword
6121         alignment.  Fix -0.0 case.  Remove redundant const values.
6122         Use float const.
6124 2005-01-06  Ulrich Drepper  <drepper@redhat.com>
6126         * misc/sys/cdefs.h: Define __wur.
6127         * libio/stdio.h: Use __wur for a number of interfaces.
6128         * posix/unistd.h: Likewise.
6129         * stdlib/stdlib.h: Likewise.
6131 2004-12-29  Jakub Jelinek  <jakub@redhat.com>
6133         [BZ #592]
6134         * sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Use
6135         libc_hidden_proto instead of HIDDEN_PROTO.
6136         * sysdeps/ia64/fpu/libm-symbols.h (HIDDEN_PROTO): Remove.
6137         (__libm_error_support): If ASSEMBLER and in libc, define to
6138         HIDDEN_JUMPTARGET(__libm_error_support).
6140 2004-12-28  David Mosberger  <davidm@hpl.hp.com>
6142         [BZ #592]
6143         * sysdeps/ia64/fpu/Makefile (duplicated-routines): New macro.
6144         (sysdep_routines): Replace libm_ldexp{,f,l} and libm_scalbn{,f,l}
6145         with $(duplicated-routines).
6146         (libm-sysdep_routines): Likewise, but substitute "s_" prefix for
6147         "m_" prefix.
6149 2004-12-27  David Mosberger  <davidm@hpl.hp.com>
6151         [BZ #592]
6152         * sysdeps/ia64/fpu/libm-symbols.h: Add include of <sysdep.h> and
6153         undefine "ret" macro.  Add __libm_error_support hidden definitions.
6155         [BZ #592]
6156         * sysdeps/ia64/fpu/e_lgamma_r.c: Remove CVS-id comment.  Add
6157         missing portion of copyright statement.
6158         * sysdeps/ia64/fpu/e_lgammaf_r.c: Likewise.
6159         * sysdeps/ia64/fpu/e_lgammal_r.c: Likewise.
6161         [BZ #592]
6162         * sysdeps/ia64/fpu/w_lgamma.c: Remove CVS-id comment.  Add
6163         missing portion of copyright statement.
6164         (__ieee754_lgamma): Rename from lgamma().  Make lgamma() a weak alias.
6165         (__ieee754_gamma): Likewise.
6166         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
6167         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
6169 2004-12-09  H.J. Lu <hjl@lucon.org>
6171         [BZ #592]
6172         * sysdeps/ia64/fpu/s_nextafterl.c: Remove.
6173         * sysdeps/ia64/fpu/s_nexttoward.c: Likewise.
6174         * sysdeps/ia64/fpu/s_nexttowardf.c: Likewise.
6175         * sysdeps/ia64/fpu/e_atan2l.S: Remove (duplicate of e_atan2l.c).
6176         * sysdeps/ia64/fpu/e_expl.S: Likewise.
6177         * sysdeps/ia64/fpu/e_logl.c: Remove (conflicts with e_logl.S).
6179 2004-11-18  David Mosberger  <davidm@hpl.hp.com>
6181         [BZ #592]
6182         * sysdeps/ia64/fpu/README: New file.
6183         * sysdeps/ia64/fpu/gen_import_file_list: New file.
6184         * sysdeps/ia64/fpu/import_check: Likewise.
6185         * sysdeps/ia64/fpu/import_diffs: Likewise.
6186         * sysdeps/ia64/fpu/import_file.awk: Likewise.
6187         * sysdeps/ia64/fpu/import_intel_libm: Likewise.
6188         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
6190         [BZ #592]
6191         * sysdeps/ia64/fpu/e_acos.S: Update from Intel libm v2.1+.
6192         * sysdeps/ia64/fpu/e_acosf.S: Likewise.
6193         * sysdeps/ia64/fpu/e_acosl.S: Likewise.
6194         * sysdeps/ia64/fpu/e_asin.S: Likewise.
6195         * sysdeps/ia64/fpu/e_asinf.S: Likewise.
6196         * sysdeps/ia64/fpu/e_asinl.S: Likewise.
6197         * sysdeps/ia64/fpu/e_atan2.S: Likewise.
6198         * sysdeps/ia64/fpu/e_atan2f.S: Likewise.
6199         * sysdeps/ia64/fpu/e_cosh.S: Likewise.
6200         * sysdeps/ia64/fpu/e_coshf.S: Likewise.
6201         * sysdeps/ia64/fpu/e_coshl.S: Likewise.
6202         * sysdeps/ia64/fpu/e_exp.S: Likewise.
6203         * sysdeps/ia64/fpu/e_expf.S: Likewise.
6204         * sysdeps/ia64/fpu/e_fmod.S: Likewise.
6205         * sysdeps/ia64/fpu/e_fmodf.S: Likewise.
6206         * sysdeps/ia64/fpu/e_fmodl.S: Likewise.
6207         * sysdeps/ia64/fpu/e_hypot.S: Likewise.
6208         * sysdeps/ia64/fpu/e_hypotf.S: Likewise.
6209         * sysdeps/ia64/fpu/e_hypotl.S: Likewise.
6210         * sysdeps/ia64/fpu/e_log.S: Likewise.
6211         * sysdeps/ia64/fpu/e_log2.S: Likewise.
6212         * sysdeps/ia64/fpu/e_log2f.S: Likewise.
6213         * sysdeps/ia64/fpu/e_log2l.S: Likewise.
6214         * sysdeps/ia64/fpu/e_logf.S: Likewise.
6215         * sysdeps/ia64/fpu/e_pow.S: Likewise.
6216         * sysdeps/ia64/fpu/e_powf.S: Likewise.
6217         * sysdeps/ia64/fpu/e_powl.S: Likewise.
6218         * sysdeps/ia64/fpu/e_remainder.S: Likewise.
6219         * sysdeps/ia64/fpu/e_remainderf.S: Likewise.
6220         * sysdeps/ia64/fpu/e_remainderl.S: Likewise.
6221         * sysdeps/ia64/fpu/e_scalb.S: Likewise.
6222         * sysdeps/ia64/fpu/e_scalbf.S: Likewise.
6223         * sysdeps/ia64/fpu/e_scalbl.S: Likewise.
6224         * sysdeps/ia64/fpu/e_sinh.S: Likewise.
6225         * sysdeps/ia64/fpu/e_sinhf.S: Likewise.
6226         * sysdeps/ia64/fpu/e_sinhl.S: Likewise.
6227         * sysdeps/ia64/fpu/e_sqrt.S: Likewise.
6228         * sysdeps/ia64/fpu/e_sqrtf.S: Likewise.
6229         * sysdeps/ia64/fpu/e_sqrtl.S: Likewise.
6230         * sysdeps/ia64/fpu/libm_error.c: Likewise.
6231         * sysdeps/ia64/fpu/libm_reduce.c: Likewise.
6232         * sysdeps/ia64/fpu/libm_support.h: Likewise.
6233         * sysdeps/ia64/fpu/s_atan.S: Likewise.
6234         * sysdeps/ia64/fpu/s_atanf.S: Likewise.
6235         * sysdeps/ia64/fpu/s_atanl.S: Likewise.
6236         * sysdeps/ia64/fpu/s_cbrt.S: Likewise.
6237         * sysdeps/ia64/fpu/s_cbrtf.S: Likewise.
6238         * sysdeps/ia64/fpu/s_cbrtl.S: Likewise.
6239         * sysdeps/ia64/fpu/s_ceil.S: Likewise.
6240         * sysdeps/ia64/fpu/s_ceilf.S: Likewise.
6241         * sysdeps/ia64/fpu/s_ceill.S: Likewise.
6242         * sysdeps/ia64/fpu/s_cos.S: Likewise.
6243         * sysdeps/ia64/fpu/s_cosf.S: Likewise.
6244         * sysdeps/ia64/fpu/s_cosl.S: Likewise.
6245         * sysdeps/ia64/fpu/s_expm1.S: Likewise.
6246         * sysdeps/ia64/fpu/s_expm1f.S: Likewise.
6247         * sysdeps/ia64/fpu/s_expm1l.S: Likewise.
6248         * sysdeps/ia64/fpu/s_fabs.S: Likewise.
6249         * sysdeps/ia64/fpu/s_fabsf.S: Likewise.
6250         * sysdeps/ia64/fpu/s_fabsl.S: Likewise.
6251         * sysdeps/ia64/fpu/s_floor.S: Likewise.
6252         * sysdeps/ia64/fpu/s_floorf.S: Likewise.
6253         * sysdeps/ia64/fpu/s_floorl.S: Likewise.
6254         * sysdeps/ia64/fpu/s_frexp.c: Likewise.
6255         * sysdeps/ia64/fpu/s_frexpf.c: Likewise.
6256         * sysdeps/ia64/fpu/s_frexpl.c: Likewise.
6257         * sysdeps/ia64/fpu/s_ilogb.S: Likewise.
6258         * sysdeps/ia64/fpu/s_ilogbf.S: Likewise.
6259         * sysdeps/ia64/fpu/s_ilogbl.S: Likewise.
6260         * sysdeps/ia64/fpu/s_log1p.S: Likewise.
6261         * sysdeps/ia64/fpu/s_log1pf.S: Likewise.
6262         * sysdeps/ia64/fpu/s_log1pl.S: Likewise.
6263         * sysdeps/ia64/fpu/s_logb.S: Likewise.
6264         * sysdeps/ia64/fpu/s_logbf.S: Likewise.
6265         * sysdeps/ia64/fpu/s_logbl.S: Likewise.
6266         * sysdeps/ia64/fpu/s_modf.S: Likewise.
6267         * sysdeps/ia64/fpu/s_modff.S: Likewise.
6268         * sysdeps/ia64/fpu/s_modfl.S: Likewise.
6269         * sysdeps/ia64/fpu/s_nearbyint.S: Likewise.
6270         * sysdeps/ia64/fpu/s_nearbyintf.S: Likewise.
6271         * sysdeps/ia64/fpu/s_nearbyintl.S: Likewise.
6272         * sysdeps/ia64/fpu/s_rint.S: Likewise.
6273         * sysdeps/ia64/fpu/s_rintf.S: Likewise.
6274         * sysdeps/ia64/fpu/s_rintl.S: Likewise.
6275         * sysdeps/ia64/fpu/s_round.S: Likewise.
6276         * sysdeps/ia64/fpu/s_roundf.S: Likewise.
6277         * sysdeps/ia64/fpu/s_roundl.S: Likewise.
6278         * sysdeps/ia64/fpu/s_significand.S: Likewise.
6279         * sysdeps/ia64/fpu/s_significandf.S: Likewise.
6280         * sysdeps/ia64/fpu/s_significandl.S: Likewise.
6281         * sysdeps/ia64/fpu/s_tan.S: Likewise.
6282         * sysdeps/ia64/fpu/s_tanf.S: Likewise.
6283         * sysdeps/ia64/fpu/s_tanl.S: Likewise.
6284         * sysdeps/ia64/fpu/s_trunc.S: Likewise.
6285         * sysdeps/ia64/fpu/s_truncf.S: Likewise.
6286         * sysdeps/ia64/fpu/s_truncl.S: Likewise.
6288         [BZ #592]
6289         * sysdeps/ia64/fpu/e_acosh.S: New file from Intel libm v2.1+.
6290         * sysdeps/ia64/fpu/e_acoshf.S: Likewise.
6291         * sysdeps/ia64/fpu/e_acoshl.S: Likewise.
6292         * sysdeps/ia64/fpu/e_atanh.S: Likewise.
6293         * sysdeps/ia64/fpu/e_atanhf.S: Likewise.
6294         * sysdeps/ia64/fpu/e_atanhl.S: Likewise.
6295         * sysdeps/ia64/fpu/e_exp10.S: Likewise.
6296         * sysdeps/ia64/fpu/e_exp10f.S: Likewise.
6297         * sysdeps/ia64/fpu/e_exp10l.S: Likewise.
6298         * sysdeps/ia64/fpu/e_exp2.S: Likewise.
6299         * sysdeps/ia64/fpu/e_exp2f.S: Likewise.
6300         * sysdeps/ia64/fpu/e_exp2l.S: Likewise.
6301         * sysdeps/ia64/fpu/e_lgamma_r.S: Likewise.
6302         * sysdeps/ia64/fpu/e_lgammaf_r.S: Likewise.
6303         * sysdeps/ia64/fpu/e_lgammal_r.S: Likewise.
6304         * sysdeps/ia64/fpu/e_logl.S: Likewise.
6305         * sysdeps/ia64/fpu/libm_frexp.S: Likewise.
6306         * sysdeps/ia64/fpu/libm_frexpf.S: Likewise.
6307         * sysdeps/ia64/fpu/libm_frexpl.S: Likewise.
6308         * sysdeps/ia64/fpu/s_libm_ldexp.S: Likewise.
6309         * sysdeps/ia64/fpu/s_libm_ldexpf.S: Likewise.
6310         * sysdeps/ia64/fpu/s_libm_ldexpl.S: Likewise.
6311         * sysdeps/ia64/fpu/s_libm_scalbn.S: Likewise.
6312         * sysdeps/ia64/fpu/s_libm_scalbnf.S: Likewise.
6313         * sysdeps/ia64/fpu/s_libm_scalbnl.S: Likewise.
6314         * sysdeps/ia64/fpu/libm_lgamma.S: Likewise.
6315         * sysdeps/ia64/fpu/libm_lgammaf.S: Likewise.
6316         * sysdeps/ia64/fpu/libm_lgammal.S: Likewise.
6317         * sysdeps/ia64/fpu/libm_sincos.S: Likewise.
6318         * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
6319         * sysdeps/ia64/fpu/libm_sincosf.S: Likewise.
6320         * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
6321         * sysdeps/ia64/fpu/libm_scalblnf.S: Likewise.
6322         * sysdeps/ia64/fpu/s_asinh.S: Likewise.
6323         * sysdeps/ia64/fpu/s_asinhf.S: Likewise.
6324         * sysdeps/ia64/fpu/s_asinhl.S: Likewise.
6325         * sysdeps/ia64/fpu/s_erf.S: Likewise.
6326         * sysdeps/ia64/fpu/s_erfc.S: Likewise.
6327         * sysdeps/ia64/fpu/s_erfcf.S: Likewise.
6328         * sysdeps/ia64/fpu/s_erfcl.S: Likewise.
6329         * sysdeps/ia64/fpu/s_erff.S: Likewise.
6330         * sysdeps/ia64/fpu/s_erfl.S: Likewise.
6331         * sysdeps/ia64/fpu/s_fdim.S: Likewise.
6332         * sysdeps/ia64/fpu/s_fdimf.S: Likewise.
6333         * sysdeps/ia64/fpu/s_fdiml.S: Likewise.
6334         * sysdeps/ia64/fpu/s_fma.S: Likewise.
6335         * sysdeps/ia64/fpu/s_fmaf.S: Likewise.
6336         * sysdeps/ia64/fpu/s_fmal.S: Likewise.
6337         * sysdeps/ia64/fpu/s_fmax.S: Likewise.
6338         * sysdeps/ia64/fpu/s_fmaxf.S: Likewise.
6339         * sysdeps/ia64/fpu/s_fmaxl.S: Likewise.
6340         * sysdeps/ia64/fpu/s_ldexp.c: Likewise.
6341         * sysdeps/ia64/fpu/s_ldexpf.c: Likewise.
6342         * sysdeps/ia64/fpu/s_ldexpl.c: Likewise.
6343         * sysdeps/ia64/fpu/s_nextafter.S: Likewise.
6344         * sysdeps/ia64/fpu/s_nextafterf.S: Likewise.
6345         * sysdeps/ia64/fpu/s_nextafterl.S: Likewise.
6346         * sysdeps/ia64/fpu/s_nexttoward.S: Likewise.
6347         * sysdeps/ia64/fpu/s_nexttowardf.S: Likewise.
6348         * sysdeps/ia64/fpu/s_nexttowardl.S: Likewise.
6349         * sysdeps/ia64/fpu/s_tanh.S: Likewise.
6350         * sysdeps/ia64/fpu/s_tanhf.S: Likewise.
6351         * sysdeps/ia64/fpu/s_tanhl.S: Likewise.
6352         * sysdeps/ia64/fpu/s_scalblnf.c: Likewise.
6353         * sysdeps/ia64/fpu/w_lgamma.c: Likewise.
6354         * sysdeps/ia64/fpu/w_lgammaf.c: Likewise.
6355         * sysdeps/ia64/fpu/w_lgammal.c: Likewise.
6356         * sysdeps/ia64/fpu/w_tgamma.S: Likewise.
6357         * sysdeps/ia64/fpu/w_tgammaf.S: Likewise.
6358         * sysdeps/ia64/fpu/w_tgammal.S: Likewise.
6360         [BZ #592]
6361         * sysdeps/ia64/fpu/e_gamma_r.c: New empty dummy-file.
6362         * sysdeps/ia64/fpu/e_gammaf_r.c: Likewise.
6363         * sysdeps/ia64/fpu/e_gammal_r.c: Likewise.
6364         * sysdeps/ia64/fpu/w_acosh.c: Likewise.
6365         * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
6366         * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
6367         * sysdeps/ia64/fpu/w_atanh.c: Likewise.
6368         * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
6369         * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
6370         * sysdeps/ia64/fpu/w_exp10.c: Likewise.
6371         * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
6372         * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
6373         * sysdeps/ia64/fpu/w_exp2.c: Likewise.
6374         * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
6375         * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
6376         * sysdeps/ia64/fpu/w_expl.c: Likewise.
6377         * sysdeps/ia64/fpu/e_expl.S: Likewise.
6378         * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
6379         * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
6380         * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
6381         * sysdeps/ia64/fpu/w_log2.c: Likewise.
6382         * sysdeps/ia64/fpu/w_log2f.c: Likewise.
6383         * sysdeps/ia64/fpu/w_log2l.c: Likewise.
6384         * sysdeps/ia64/fpu/w_sinh.c: Likewise.
6385         * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
6386         * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
6388         [BZ #592]
6389         * sysdeps/ia64/fpu/libm_atan2_reg.S: Remove.
6390         * sysdeps/ia64/fpu/s_ldexp.S: Likewise.
6391         * sysdeps/ia64/fpu/s_ldexpf.S: Likewise.
6392         * sysdeps/ia64/fpu/s_ldexpl.S: Likewise.
6393         * sysdeps/ia64/fpu/s_scalbn.S: Likewise.
6394         * sysdeps/ia64/fpu/s_scalbnf.S: Likewise.
6395         * sysdeps/ia64/fpu/s_scalbnl.S: Likewise.
6397         [BZ #592]
6398         * sysdeps/ia64/fpu/s_sincos.c: Make it an empty dummy-file.
6399         * sysdeps/ia64/fpu/s_sincosf.c: Likewise.
6400         * sysdeps/ia64/fpu/s_sincosl.c: Likewise.
6402         [BZ #592]
6403         * sysdeps/ia64/fpu/e_atan2l.S: Add "Not needed" comment.
6405         [BZ #592]
6406         * sysdeps/ia64/fpu/s_copysign.S: Add __libm_copysign{,f,l}
6407         alias for use by libm_error.c
6409         [BZ #592]
6410         * sysdeps/ia64/fpu/Makefile (libm-sysdep_routines): Remove
6411         libm_atan2_reg, libm_tan, libm_frexp4{f,l}.
6412         Mention s_erfc{,f,l}, libm_frexp{,f,l}, libm_ldexp{,f,l},
6413         libm_sincos{,f,l}, libm_sincos_large, libm_lgamma{,f,l},
6414         libm_scalbn{,f,l}, libm_scalblnf.
6415         (sysdep_routines): Remove libm_frexp4{,f,l}.
6416         Mention libm_frexp{,f,l}, libm_ldexp{,f,l}, and libm_scalbn{,f,l}.
6417         (sysdep-CPPFLAGS): Add -include libm-symbols.h, -D__POSIX__,
6418         _D_LIB_VERSIONIMF=_LIB_VERSION, -DSIZE_LONG_INT_64, and
6419         -DSIZE_LONG_LONG_INT_64.
6421 2005-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
6423         [BZ #729]
6424         * elf/rtld.c (dl_main) [NEED_DL_SYSINFO_DSO]: Insure l_map_end and
6425         l_text_end are set for a VDSO with a single PT_LOAD entry.
6427 2005-01-05  Ulrich Drepper  <drepper@redhat.com>
6429         [BZ #730]
6430         * libio/iofopncook.c (_IO_cookie_seekoff): Define.  Mark offset as
6431         invalid to disable optimizations in fileops which won't work here.
6432         (_IO_cookie_jumps): Use it.
6433         (_IO_old_cookie_jumps): Likewise.
6434         * libio/fmemopen.c (fmemopen_seek): Result must be returned in *P,
6435         not the return value.
6436         * stdio-common/Makefile (tests): Add tst-fmemopen2.
6437         * stdio-common/tst-fmemopen2.c: New file.
6439         * sysdeps/unix/sysv/linux/bits/waitflags.h: Define __WNOTHREAD.
6441 2005-01-05  Roland McGrath  <roland@redhat.com>
6443         * configure.in (libc_cv_cpp_asm_debuginfo): Checked moved ...
6444         * sysdeps/i386/configure.in: ... here.  New file.
6446 2005-01-03  Ulrich Drepper  <drepper@redhat.com>
6448         [BZ #727]
6449         * sysdeps/generic/libc-start.c [SHARED] (__libc_start_main): Don't
6450         initialize __environ again.
6451         * stdlib/Makefile: Add rules to build and run tst-putenv.
6452         * stdlib/tst-putenv.c: New file.
6453         * stdlib/tst-putenvmod.c: New file.
6455         * sysdeps/unix/sysv/linux/init-first.c: Clean file up.  Don't
6456         define unnecessary wrappers or aliases of static functions.
6458 2005-01-03  Andreas Jaeger  <aj@suse.de>
6460         * csu/Makefile (generated): Add start.os and start.ob.
6462         * elf/Makefile (tests): Change rule for tst-pie1 so that make
6463         clean works.
6465 2004-12-29  Roland McGrath  <roland@redhat.com>
6467         [BZ #626]
6468         * sysdeps/unix/alarm.c (alarm): Round return value to nearest rather
6469         than always up; when nearest is zero, round up to one.
6471 2004-12-28  Ulrich Drepper  <drepper@redhat.com>
6473         * po/es.po: Update from translation team.
6475         [BZ #726]
6476         * sysdeps/generic/dl-tls.c (__tls_get_addr): Fix typo.
6478 2004-12-27  Ulrich Drepper  <drepper@redhat.com>
6480         [BZ #744]
6481         * include/signal.h: Define __sigemptyset.
6483 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
6485         * posix/regex_internal.h (struct re_dfastate_t): Make
6486         word_trtable a pointer to the 512-item transition table.
6487         * posix/regexec.c (build_trtable): Fill in either state->trtable
6488         or state->word_trtable.  Return a boolean indicating success.
6489         (transit_state): Expect state->trtable to be a 256-item
6490         transition table.  Reorganize code to have less tests in
6491         the common case, and to save an indentation level.
6492         * posix/regex_internal.c (free_state): Free word_trtable.
6494 2004-12-21  Jakub Jelinek  <jakub@redhat.com>
6496         [BZ #723]
6497         * sysdeps/unix/sysv/linux/i386/clone.S (__clone): Make sure %esp when
6498         calling fn is 16 byte aligned.
6499         * sysdeps/i386/tst-stack-align.h: New file.
6501         [BZ #725]
6502         * misc/efgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
6503         (ecvt_r): Special case denormals.
6504         * misc/qefgcvt_r.c (FLOAT_MIN_10_EXP, FLOAT_MIN_10_NORM): Define.
6505         * misc/tst-efgcvt.c: Include float.h.
6506         (ecvt_tests): Add 2 new tests.
6508 2004-12-20  Roland McGrath  <roland@frob.com>
6510         * version.h (RELEASE, VERSION): development, 2.3.90
6511         * include/features.h (__GLIBC_MINOR__): Now 4.
6514 See ChangeLog.15 for earlier changes.