1 2001-07-23 Ulrich Drepper <drepper@redhat.com>
3 * libio/genops.c (_IO_list_all_stamp): New variable.
4 (_IO_un_link): Bump _IO_list_all_stamp after removing from list.
5 (_IO_link): Likewise for insertion.
6 (flush_cleanup): New function.
7 (_IO_flush_all): Get list_all_lock and all individual locks for the
8 streams. Detect and handle changes to the _IO_list_all list.
9 (_IO_flush_all_linebuffered): Likewise.
10 * sysdeps/generic/bits/stdio-lock.h: Define
11 _IO_cleanup_region_start_noarg.
12 * sysdeps/mach/hurd/bits/stdio-lock.c: Likewise.
14 * stdio-common/printf.h: Fix typo in comment.
16 * iconv/gconv_cache.c (__gconv_lookup_cache): Handle encoding from
18 * iconv/iconvconfig.c: Create a special record for the INTERNAL
19 encoding name in the output file.
21 2001-07-23 Jakub Jelinek <jakub@redhat.com>
23 * sunrpc/svc_tcp.c (svctcp_rendezvous_abort): New.
24 (svctcp_rendezvous_op): Use it.
25 * sunrpc/svc_unix.c (svcunix_rendezvous_abort): New.
26 (svcunix_rendezvous_op): Use it.
28 2001-07-23 Andreas Schwab <schwab@suse.de>
30 * math/Makefile (CPPFLAGS-test-ifloat.c, CPPFLAGS-test-idouble.c,
31 CPPFLAGS-test-ildoubl.c): Renamed from CFLAGS-*.
32 (math-CPPFLAGS): Set this instead of CPPFLAGS.
34 2001-07-23 Ulrich Drepper <drepper@redhat.com>
36 * elf/elf.h: Add more definitions from Sun's latest version.
38 2001-07-23 Stephen L Moshier <moshier@mediaone.net>
40 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Return proper
41 sign for 0 input and set divide by zero exception for -1 input.
42 Return argument if NaN or infinity.
44 2001-07-23 Andreas Jaeger <aj@suse.de>
46 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Add some deltas.
48 2001-07-23 Ulrich Drepper <drepper@redhat.com>
50 * iconv/gconv_cache.c (__gconv_lookup_cache): Select correct
51 module for conversion direction.
53 2001-07-23 Stephen L Moshier <moshier@mediaone.net>
55 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Return proper
56 sign for 0 input. Return NaN with no exception for NaN input.
58 2001-07-23 Ulrich Drepper <drepper@redhat.com>
60 * iconv/gconv_builtin.h: ISO-106464/UTF-8/ transformation must
63 2001-07-23 Andreas Jaeger <aj@suse.de>
65 * iconv/iconvconfig.c: Include <sys/cdefs.h> and use
66 __attribute_malloc__ for older GCC versions.
67 * iconv/strtab.c: Likewise.
68 Add prototypes to avoid warnings.
70 2001-07-22 Roland McGrath <roland@frob.com>
72 * hurd/hurdsig.c (_hurd_internal_post_signal): Support SA_RESETHAND
73 and SA_NODEFER options. Spurred to action by Igor Khavkine.
75 * sysdeps/generic/bits/sigaction.h [__USE_UNIX98 || __USE_MISC]
76 (SA_NODEFER, SA_RESETHAND): New macros, same bit values as FreeBSD.
77 [__USE_MISC] (SA_INTERRUPT): New macro, value 0.
78 [__USE_MISC] (SA_NOMASK, SA_ONESHOT, SA_STACK): New macros, aliases
79 as in other sysdeps versions of this file.
81 * sysdeps/generic/bits/sigaction.h (struct sigaction): Use a union
82 and provide sa_handler and sa_sigaction member names as macros, as
83 done in other sysdeps versions of this file.
84 Suggested by Igor Khavkine <i_khavki@alcor.concordia.ca>.
86 2001-07-23 Ulrich Drepper <drepper@redhat.com>
88 * posix/regex.c: Revamp memory allocation for WCHAR functions to
89 not use too much stack.
91 2001-07-22 Ulrich Drepper <drepper@redhat.com>
93 * iconv/iconvconfig.c (write_output): Update comment explaining
96 * elf/dl-load.c (_dl_dst_count): In SUID binaries expand $ORIGIN
98 (_dl_dst_substitute): Likewise.
100 * iconv/iconvconfig.c: Remove --verbose option. Comment out
103 * iconv/strtab.c (morememory): Fix little memory handling problem.
105 2001-07-22 Andreas Schwab <schwab@suse.de>
107 * sysdeps/unix/sysv/linux/m68k/sysdep.h (INLINE_SYSCALL): Don't
108 mark asm input operand as clobbered.
109 * sysdeps/unix/sysv/linux/m68k/brk.c (__brk): Likewise.
111 2001-07-22 Ulrich Drepper <drepper@redhat.com>
113 * iconv/gconv_builtin.c (struct builtin_map): Remove init and end
115 (BUILTIN_TRANSFORMATION): Remove Init and End parameters.
116 (__gconv_get_builtin_trans): Initialize __init_fct and __end_fct to
118 * iconv/gconv_builtin.h: Remove NULL parameters for Init and End in
119 all BUILTIN_TRANSFORMATION calls.
120 * iconv/gconv_conf.c (BUILTIN_TRANSFORMATION): Remove Init and End
122 * iconv/gconv_simple.c: Likewise.
123 * iconv/gconv_db.c (gen_steps): Internal converters don't have
124 initializers, move the code accordingly.
126 * iconv/gconv_conf.c (__gconv_read_conf): Don't read configuration
127 file if STATIC_GCONV is defined.
129 * iconv/gconv_conf.c (__gconv_path_envvar): New global variable.
130 (__gconv_get_path): Use it instead of call getenv.
131 (__gconv_read_conf): First see whether cache can be used. If yes,
132 don't do any work here.
133 * iconv/gconv_db.c (__gconv_release_step): Renamed from release_step
134 and exported. Change callers.
135 (__gconv_find_transform): First call __gconv_lookup_cache and only
136 continue if it signals no cache available. Remove some unnecessary
138 * iconv/gconv_int.h: Declare __gconv_path_envvar, __gconv_lookup_cache,
139 __gconv_release_step, and __gconv_loaded_cache.
140 * iconv/gconv_cache.c: New file.
141 * iconv/iconvconfig.c: New file.
142 * iconv/iconvconfig.h: New file.
143 * iconv/strtab.c: New file.
144 * iconv/Makefile: Add rules to build new files and programs.
146 2001-07-20 Roland McGrath <roland@frob.com>
148 * sysdeps/generic/device-nrs.h (DEV_TTY_P): Change argument type
149 from `dev_t' (st_rdev value) `const struct stat *'.
150 * sysdeps/unix/sysv/linux/device-nrs.h (DEV_TTY_P): Likewise.
151 * libio/filedoalloc.c (_IO_file_doallocate): Change caller.
152 * sysdeps/mach/hurd/device-nrs.h: New file.
154 * libio/stdio_ext.h: Moved to ...
155 * stdio-common/stdio_ext.h: ... here.
156 * libio/Makefile (headers): Move stdio_ext.h from here ...
157 * stdio-common/Makefile (headers): ... to here.
158 * include/stdio_ext.h: New file.
159 * stdio/Makefile (routines): Add the stdio_ext.h functions here.
160 * stdio/Versions (GLIBC_2.2.4): Export the stdio_ext.h functions.
161 * stdio/__flbf.c: New file.
162 * stdio/__fbufsize.c: New file.
163 * stdio/__fpending.c: New file.
164 * stdio/__fpurge.c: New file.
165 * stdio/__freadable.c: New file.
166 * stdio/__freading.c: New file.
167 * stdio/__fsetlocking.c: New file.
168 * stdio/__fwritable.c: New file.
169 * stdio/__fwriting.c: New file.
171 2001-07-20 Ulrich Drepper <drepper@redhat.com>
172 Andreas Jaeger <aj@suse.de>
174 * elf/ldconfig.c (search_dir): Avoid use of uninitialized memory.
175 Add a few __builtin_expect to mark unlikely error cases.
177 2001-07-20 Andreas Jaeger <aj@suse.de>
179 * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Synch with kernel.
180 Patch by Daniel Jacobowitz <dan@debian.org>.
182 2001-07-19 Ulrich Drepper <drepper@redhat.com>
184 * intl/localealias.c: Remove unnecessary prototype.
186 * Makefile: Add html goal.
187 * manual/Makefile: Likewise.
189 2001-07-18 Ulrich Drepper <drepper@redhat.com>
191 * libio/filedoalloc.c (_IO_file_doallocate): A few more minor
192 cleanups and improvements.
194 2001-07-18 Andreas Schwab <schwab@suse.de>
196 * posix/regex.c (WORDCHAR_P) [WCHAR]: Also return true for the
197 underscore character.
199 2001-07-18 Jakub Jelinek <jakub@redhat.com>
201 * malloc/malloc (new_heap): Don't call munmap for zero length.
203 2001-07-18 Ulrich Drepper <drepper@redhat.com>
205 * libio/filedoalloc.c (_IO_file_doallocate): Use DEV_TTY_P if
206 available to determine whether descriptor is for tty before
209 * sysdeps/unix/sysv/linux/device-nrs.h: Define DEV_TTY_P.
210 * sysdeps/generic/device-nrs.h: Likewise.
212 2001-07-18 Andreas Jaeger <aj@suse.de>
214 * time/Makefile (tst-getdate-ENV): Add TZDIR to environment.
216 * time/Depend: New, add dependency on timezone.
218 * time/tst-getdate.c: Add testcase for bug report by Hendrik
219 Uhlmann <HUhlmann@stn-atlas.de>.
220 * time/datemsk: Likewise.
222 2001-07-17 Ulrich Drepper <drepper@redhat.com>
224 * elf/ldconfig.c (parse_conf): Disable implicit locking for the
225 stream. Remove some unnecessary initializers.
227 2001-07-17 Andreas Jaeger <aj@suse.de>
229 * elf/ldconfig.c: Add new variable hwcap_mask to honour LD_HWCAP_MASK.
230 (is_hwcap_platform): Use it.
231 (set_hwcap): New function to set hwcap_mask.
232 (main): Call set_hwcap.
234 2001-07-17 Jakub Jelinek <jakub@redhat.com>
236 * time/getdate.c (__getdate_r): Initialize tm_isdst, tm_gmtoff and
237 tm_zone before calling strptime.
239 2001-07-17 Andreas Schwab <schwab@suse.de>
241 * sysdeps/unix/sysv/linux/m68k/getpagesize.c: Fix last change.
243 2001-07-17 Ulrich Drepper <drepper@redhat.com>
245 * inet/rcmd.c (iruserfopen): Disable implicit locking for the stream.
246 * inet/ruserpass.c (ruserpass): Likewise.
247 * nss/nsswitch.c (nss_parse_file): Likewise.
248 * resolv/res_hconf.c (_res_hconf_init): Likewise.
249 * resolv/res_init.c (__res_vinit): Likewise.
250 * gmon/bb_exit_func.c (__bb_exit_func): Likewise.
251 * misc/getpass.c (getpass): Likewise.
252 * misc/getusershell.c (initshells): Likewise.
253 * misc/getttyent.c (setttyent): Likewise.
254 * misc/mntent_r.c (__setmntent): Likewise.
255 * time/getdate.c (__getdate_r): Likewise.
256 * time/tzfile.c (__tzfile_read): Likewise.
257 * iconv/gconv_conf.c (read_conf_file): Likewise.
258 * intl/localealias.c (read_alias_file): Disable implicit locking
259 for the stream. Use _unlocked functions for glibc.
260 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Disable
261 implicit locking for the stream.
262 (__get_nprocs_conf): Likewise.
263 (phys_pages_info): Likewise.
265 2001-07-16 Ulrich Drepper <drepper@redhat.com>
267 * nscd/connections.c: Print messages caused by user application
268 only if debug_level > 0. Add little performance improvements.
269 Use TEMP_FAILURE_RETRY around write calls.
270 * nscd/grpcache.c: Likewise.
271 * nscd/hstcache.c: Likewise.
272 * nscd/pwdcache.c: Likewise.
274 2001-07-13 H.J. Lu <hjl@gnu.org>
276 * sysdeps/mips/dl-machine.h (MAP_BASE_ADDR): Removed.
277 (elf_machine_got_rel): Defined only if RTLD_BOOTSTRAP is not defined.
278 (RESOLVE_GOTSYM): Rewrite to use RESOLVE.
280 * sysdeps/mips/rtld-ldscript.in: Removed.
281 * sysdeps/mips/rtld-parms: Likewise.
282 * sysdeps/mips/mips64/rtld-parms: Likewise.
283 * sysdeps/mips/mipsel/rtld-parms: Likewise.
285 2001-07-16 Ulrich Drepper <drepper@redhat.com>
287 * catgets/test-gencat.sh: Use <<"EOF" instead of <<EOF to prevent
288 substitution in here document.
290 2001-07-16 Andreas Schwab <schwab@suse.de>
292 * sysdeps/posix/spawni.c: Fix typo when iterating over signal numbers.
294 2001-07-16 Andreas Schwab <schwab@suse.de>
296 * math/libm-test.inc (check_float_internal): Fix sign bit test of
299 2001-07-16 Jakub Jelinek <jakub@redhat.com>
301 * sysdeps/i386/fpu/e_expl.c (__ieee754_expl): Make it PIC friendly.
303 2001-07-15 Ulrich Drepper <drepper@redhat.com>
305 * malloc/obstack.c: Define __attribute__ for non-gcc compilers.
306 Patch by Jim Meyering <jim@meyering.net>.
308 2001-07-12 Martin Schwidefsky <schwidefsky@de.ibm.com>
310 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigaction.h: Reorder
311 fields in the sigaction struct to match the definition in the kernel.
313 2001-07-12 Martin Schwidefsky <schwidefsky@de.ibm.com>
315 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Correct the
318 2001-07-12 Martin Schwidefsky <schwidefsky@de.ibm.com>
320 * sysdeps/s390/s390-32/bits/setjmp.h: Add leading underscores
321 to the entries in the __jmp_buf structure.
322 * sysdeps/s390/s390-64/bits/setjmp.h: Likewise.
324 2001-07-12 Martin Schwidefsky <schwidefsky@de.ibm.com>
326 * sysdeps/s390/s390-32/bcopy.S: Use mvcle for big blocks
327 (> 64K) and a mvc loop for small blocks.
328 * sysdeps/s390/s390-32/memcpy.S: Likewise.
329 * sysdeps/s390/s390-64/bcopy.S: Likewise.
330 * sysdeps/s390/s390-64/memcpy.S: Likewise.
332 2001-07-15 Andreas Schwab <schwab@suse.de>
334 * sysdeps/unix/sysv/linux/m68k/sys/procfs.h: New file.
335 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h: New file.
337 * sysdeps/unix/sysv/linux/m68k/getpagesize.c: Check _dl_pagesize
338 first. Default to 4096, not EXEC_PAGESIZE.
340 * iconv/loop.c (put16) [!_STRING_ARCH_unaligned && BIG_ENDIAN]:
343 2001-07-09 Andreas Jaeger <aj@suse.de>
345 * sysdeps/unix/sysv/linux/i386/dl-procinfo.c: Name entry for xmm2.
347 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Add HWCAP_I386_XMM,
348 HWCAP_I386_XMM2 to enum.
350 2001-07-13 Andreas Jaeger <aj@suse.de>
352 * libio/fileops.c: Include unistd.h for lseek64 prototype. Closes
355 2001-07-12 Ulrich Drepper <drepper@redhat.com>
357 * Makeconfig: Add some more changes to handle AIX linker better.
359 2001-07-12 H.J. Lu <hjl@gnu.org>
361 * sysdeps/generic/segfault.c: Include <errno.h>.
363 2001-07-01 Andreas Jaeger <aj@suse.de>
365 * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk): Remove duplicate
366 sbrk. Closes PR libc/2312.
368 2001-07-01 Andreas Jaeger <aj@suse.de>
370 * sysdeps/generic/segfault.c (install_handler): Handle case that
371 the output file does not exists. Closes PR libc/2345.
373 2001-07-11 Ulrich Drepper <drepper@redhat.com>
375 * intl/locale.alias: Use he language code for hebrew, not il
378 2001-07-11 Jakub Jelinek <jakub@redhat.com>
380 * iconv/gconv_int.h: Fix comment typo.
382 2001-07-11 Igor Khavkine <i_khavki@alcor.concordia.ca>
384 * hurd/hurdsig.c (_hurdsig_init): Remove a useless line of code.
386 2001-07-07 Roland McGrath <roland@frob.com>
388 * hurd/hurdsig.c (_hurd_thread_sigstate): Use MACH_PORT_NULL, not 0.
390 2001-07-10 Stephen L Moshier <moshier@mediaone.net>
392 * sysdeps/ieee754/ldbl-128/e_acosl.c (__ieee754_acosl): Fix
393 backwards conditional in test for x == 1.0.
395 2001-07-10 Andreas Jaeger <aj@suse.de>
397 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Add ulps for tanh
400 2001-07-09 Andreas Jaeger <aj@suse.de>
402 * sysdeps/unix/sysv/linux/configure.in: Revert patch from
403 2001-07-05 for sysconfdir handling.
404 * config.make.in (sysconfdir): Likewise.
405 * configure.in: Likewise.
407 * configure.in: Always assign libc_cv_sysconfdir.
409 2001-07-08 Ulrich Drepper <drepper@redhat.com>
411 * Makerules [AIX] (build-shlib-helper): Precede linker options
414 * Makeconfig (config-LDFLAGS): Add ld.so only for ELF.
416 * sysdeps/unix/make_errlist.c: Adjust sys_errlist declaration to
417 what we define in <stdio.h>.
419 * iconv/iconv_prog.c (main): Don't unconditionally define
420 variables only use if _POSIX_MAPPED_FILES is defined.
422 * sysdeps/unix/sysv/aix/sendmsg.c (sendmsg): Fix return type.
423 * sysdeps/unix/sysv/aix/recvmsg.c (recvmsg): Likewise.
425 * sysdeps/unix/sysv/aix/recv.c: New file.
427 * sysdeps/unix/sysv/aix/recvfrom.c: Fix various types.
429 2001-07-07 Ulrich Drepper <drepper@redhat.com>
431 * sysdeps/generic/recv.c: Fix return type.
433 * sysdeps/unix/sysv/aix/dl-libc.c (__libc_dlclose): Fix typo.
435 * sysdeps/unix/sysv/aix/gettimeofday.c (__gettimeofday): Add
436 declarations for asm functions.
438 * include/libc-symbols.h: Provide more dummy definitions for the
439 case if GNU ld isn't used.
441 * libio/freopen.c: Include <stdlib.h> for free declaration.
442 * libio/freopen64.c: Likewise.
444 * sysdeps/alpha/fpu/libm-test-ulps: Add deltas for tanh(-0.7).
446 2001-07-06 Jakub Jelinek <jakub@redhat.com>
448 * sysdeps/unix/sysv/linux/i386/sigaction.c (RESTORE2): Put asm
449 explicitly into .text section.
451 2001-04-16 Jes Sorensen <jes@linuxcare.com>
453 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h (struct sigcontext):
454 Add 16 longwords reserved for future use to match changes in the
457 2001-07-03 Jes Sorensen <jes@trained-monkey.org>
459 * sysdeps/ia64/strncpy.S: Call strnlen() when determining the
460 string length rather than strlen(). Solves the performance problem
461 of doing strlen on a 5MB string when strncpy was called with a
462 length argument of 5 bytes.
464 2001-07-02 Jakub Jelinek <jakub@redhat.com>
466 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
467 R_SPARC_UA16 and R_SPARC_UA32.
468 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
470 2001-07-01 Stephen L Moshier <moshier@mediaone.net>
472 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl):
473 acosh(x) = ln(2x) if x > 2^30.
474 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl):
475 acosh(x) = ln(2x) if x > 2^54.
477 2001-07-07 Mark Kettenis <kettenis@gnu.org>
479 * sysdeps/mach/hurd/i386/exc2signal.c (_hurd_exception2signal):
480 Generate SIGSEGV instead of SIGBUS for KERN_INVALID_ADDRESS and
481 KERN_WRITE_PROTECTION_FAILURE.
483 2001-07-07 Ulrich Drepper <drepper@redhat.com>
485 * posix/regex.c: Limit string length printed in debug messages to
488 * configure.in: Don't warn about versioning if not on ELF system.
490 2001-07-07 Andreas Jaeger <aj@suse.de>
492 * sysdeps/*: Put files from GNU MP Library under LGPL v2.1.
494 2001-07-06 Ulrich Drepper <drepper@redhat.com>
496 * po/gl.po: Update from translation team.
498 2001-07-06 Andreas Jaeger <aj@suse.de>
500 * sysdeps/unix/sysv/linux/configure.in: Fix handling of
503 * manual/libc-texinfo.sh: Add note for the FDL.
505 * manual/argp.texi (Argp Example 4): Fix texinfo warning.
507 * manual/libc.texinfo: Regenerated.
509 * manual/fdl.texi: Fix node.
511 * config.make.in (sysconfdir): Replace correctly.
512 Closes PR libc/2369, reported by Peter Simons <simons@cryp.to>.
514 * sysdeps/unix/sysv/linux/alpha/configure.in: Removed, it's no
517 * sysdeps/unix/sysv/linux/configure.in (libc_cv_linuxVER): Add
519 Rework handling of missing linuxthreads add-on.
521 * configure.in: Remove unused sysconfdir substitution.
523 * manual/Makefile (texis): Add fdl.texi.
524 * manual/fdl.texi: New.
525 * manual/socket.texi (Host Names): Improve grammar, fix overflow hbox.
526 * manual/libc.texinfo: Add fdl, update titlepage.
527 Patches by Brian Youmans <3diff@gnu.org>.
529 * sysdeps/unix/make_errlist.c (main): Print LGPL v2.1 for
532 2001-07-06 Paul Eggert <eggert@twinsun.com>
534 * manual/argp.texi: Remove ignored LGPL copyright notice; it's
535 not appropriate for documentation anyway.
536 * manual/libc-texinfo.sh: "Library General Public License" ->
537 "Lesser General Public License".
538 * COPYING: Fix Y2k bug in sample copyright notices.
539 * manual/lesser.texi: Renamed from manual/lgpl.texinfo,
540 as fsf.org uses the name "lesser.texi".
541 * manual/Makefile (texis): Follow rename.
543 2001-07-06 Andreas Jaeger <aj@suse.de>
545 * All files under GPL/LGPL version 2: Place under LGPL version
548 2001-07-05 Andreas Jaeger <aj@suse.de>
550 Synch with Linux 2.4.6:
551 * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_BLUETOOTH):
555 * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h
559 * sysdeps/unix/sysv/linux/mips/bits/socket.h (AF_BLUETOOTH): New.
562 * sysdeps/unix/sysv/linux/ia64/bits/socket.h (AF_BLUETOOTH): New.
565 * sysdeps/unix/sysv/linux/alpha/bits/socket.h (PF_BLUETOOTH): New.
568 * sysdeps/unix/sysv/linux/bits/socket.h (PF_BLUETOOTH): New.
571 * sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_IEEE80211): New.
573 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (N_HCI): New.
575 * sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h (N_HCI): New.
577 * sysdeps/unix/sysv/linux/bits/ioctl-types.h (N_HCI): New.
579 2001-07-04 Roland McGrath <roland@frob.com>
581 * hurd/hurdsig.c (_hurd_internal_post_signal): For SS->suspended
582 wakeup message, use MACH_MSG_TYPE_MAKE_SEND for the receiver port
583 rather than doing a mach_port_insert_right call first.
585 2001-06-26 Roland McGrath <roland@frob.com>
587 * hurd/hurdioctl.c: Include <string.h> for memcpy decl.
589 2001-07-03 Andreas Jaeger <aj@suse.de>
591 * sysdeps/unix/sysv/sysv4/solaris2/configure.in: Remove check for
594 2001-07-01 Mark Kettenis <kettenis@gnu.org>
596 * sysdeps/mach/hurd/if_index.c: Redone to use new interfaces in
597 the Hurd pfinet server, using equivalent code from the Linux
598 version in sysdeps/unix/sysv/linux/if_index.c. In detail:
599 Include <unistd.h>, <error.h>, <sys/ioctl.h>, <hurd/ioctl.h> and
600 <hurd/pfinet.h>. Don't include <sys/mman.h> and <hurd/fsys.h>
602 (if_nametoindex): New implementation using SIOCGIFINDEX.
603 (if_freenameindex): Straight copy of the Linux version.
604 (if_nameindex): New implementation based on pfinet_siocgifconf and
606 (if_indextoname): New implementation using SIOCGIFNAME.
607 (map_interfaces): Function removed.
608 From Marcus Brinkmann <marcus@gnu.org>.
610 2001-06-30 Jakub Jelinek <jakub@redhat.com>
612 * sysdeps/powerpc/dl-machine.c (__elf_preferred_address): Prefer
613 gaps below main executable.
615 2001-06-19 Andreas Jaeger <aj@suse.de>
617 * sysdeps/powerpc/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE):
620 2001-06-29 Andreas Jaeger <aj@suse.de>
622 * sysdeps/ieee754/ldbl-128/s_asinhl.c: New file.
623 Patch by Stephen L Moshier <moshier@mediaone.net>.
625 2001-06-28 Ulrich Drepper <drepper@redhat.com>
627 * manual/argp.texi: Tons of cleanups.
628 Patch by Clifford U. Smith <cuel@swbell.net>.
630 2001-06-28 Mark Kettenis <kettenis@gnu.org>
632 * manual/users.texi (Setting Groups): Correct initgroups
633 documentation. Add documentation for getgrouplist.
635 2001-06-28 H.J. Lu <hjl@gnu.org>
637 * locale/findlocale.c (locale_file_list): Renamed to ...
638 (_nl_locale_file_list): This. Make it extern.
639 (free_mem): Move to ...
640 * locale/setlocale.c (free_mem): Here.
642 2001-06-28 Mark Kettenis <kettenis@gnu.org>
644 * sysdeps/mach/hurd/read.c: Include <hurd/fd.h>.
645 (__libc_read): Don't call __pread. Use _hurd_fd_read directly
647 * sysdeps/mach/hurd/write.c: Include <hurd/fd.h>.
648 (__libc_write): Don't call __pwrite. Use _hurd_fd_write directly
651 * sysdeps/mach/hurd/Makefile ($(link-rpcuserlibs)): Add back
652 -Wl,-soname option lost in 2001-06-16 change.
654 2001-06-27 Ulrich Drepper <drepper@redhat.com>
656 * posix/tst-regex.c: Pass REG_NEWLINE to regcomp. Add extra tests.
657 Restrict printing of string in debug mode to 100 characters to make
658 the output useful for long input texts.
660 * posix/Makefile: Add rules to build and run tst-regex.
662 2001-06-20 Isamu Hasegawa <isamu@yamato.ibm.com>
664 * posix/regex.c (FREE_WCS_BUFFERS): New macro to free buffers.
665 (re_search_2): Invoke convert_mbs_to_wcs and FREE_WCS_BUFFERS.
666 (wcs_re_match_2_internal): Check whether the wcs buffers need
667 seting up or not, and skip seting up routin if not needed.
669 2001-06-26 Isamu Hasegawa <isamu@yamato.ibm.com>
671 * posix/regex.c (count_mbs_length): Use binary search for optimization.
673 2001-06-27 Ulrich Drepper <drepper@redhat.com>
675 * posix/tst-regex.c: Fix several bugs. Add more tests.
677 2001-06-26 Mark Kettenis <kettenis@gnu.org>
679 * hurd/Makefile (user-interfaces): Add pfinet.
680 * hurd/hurdioctl.c: Include <hurd/pfinet.h>, <net/if.h> and
682 (siocgifconf): New function. Register it with HURD_HANDLE_IOCTL
683 as the handler for SIOCGIFCONF.
684 * sysdeps/mach/hurd/bits/ioctls.h: Modify SIOCSIFFLAGS and
685 SIOCGIFFLAGS to be of IOC type ifreq_short. Modify SIOCSIFMETRIC
686 and SIOCGIFMETRIC to be of IOC type ifreq_int. Add new macro
687 definitions for SIOCGIFMTU, SIOCSIFMTU, SIOCGIFINDEX and
689 From Marcus Brunkmann <marcus@gnu.org>.
691 2001-06-25 Ulrich Drepper <drepper@redhat.com>
693 * sysdeps/gnu/net/if.h: Correct _IOT_ifreq and add _IOT_ifreq_short
694 and _IOT_ifreq_int. Patch by Mark Kettenis <kettenis@wins.uva.nl>.
696 * elf/dl-deps.c (_dl_map_object_deps): Fix handling of failing
697 _dl_catch_error calls.
699 2001-06-22 Jakub Jelinek <jakub@redhat.com>
701 * posix/regex.c (regex_compile, re_match_2_internal): Fix comment
704 2001-06-01 Wolfram Gloger <wg@malloc.de>
706 * malloc/malloc.c (malloc_atfork, free_atfork): Use a unique value
707 ATFORK_ARENA_PTR, not 0, for the thread-specific arena pointer
708 when malloc_atfork is in use.
710 2001-06-22 Andreas Jaeger <aj@suse.de>
712 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Add parenthese
715 * sysdeps/i386/fpu/e_expl.c (__ieee754_expl): Remove unused
717 Add unused attributes to avoid warnings.
719 * elf/reldep4mod4.c: Add prototype to avoid warning.
720 * elf/reldep4mod2.c: Likewise.
722 * sysdeps/i386/fpu/e_expl.c: Include <math_private.h> for
725 2001-06-18 Roland McGrath <roland@frob.com>
727 * hurd/hurd/fd.h (_hurd_fd_error_signal): Change return type to int.
729 2001-06-20 Alexandre Oliva <aoliva@redhat.com>
731 * sysdeps/unix/sysv/settimeofday.c: Include time.h.
733 2001-06-19 Martin Schwidefsky <schwidefsky@de.ibm.com>
735 * sysdeps/unix/sysv/linux/s390/s390-64/dl-cache.h: New file.
737 2001-05-09 Michael Keezer <mkeezer@redhat.com>
739 * Makeconfig: Added AIX-ld support for DSO.
740 * Makerules: Likewise.
741 * dlfcn/Makefile (defaultmod1.so): Added libc_nonshared.
742 (defaultmod2.so): Likewise.
743 * debug/Makefile: Conditionalize use of elf/ld.so.
744 * iconvdata/Makefile: Moved LDFLAG rpath/soname info into Makeconfig.
746 * sysdeps/unix/sysv/aix/Makefile: Added dl-support.c and dl-error.c.
747 * sysdeps/unix/sysv/aix/Makefile: Made (f/g)rsave(0/1) &
748 (f/g)prrest(0/1) static only.
749 * sysdeps/unix/sysv/aix/gettimeofday.c: Removed #if 0.
750 * sysdeps/unix/sysv/aix/start.c: Define __dso_handle if not ELF but
752 * sysdeps/unix/sysv/aix/setitimer.c: New file.
753 * sysdeps/unix/sysv/aix/sleep.c: New file.
754 * sysdeps/unix/sysv/aix/usleep.c: New file.
755 * sysdeps/unix/sysv/aix/dl-addr.c: New file.
756 * sysdeps/unix/sysv/aix/dl-error.c: New file.
757 * sysdeps/unix/sysv/aix/dl-support.c: New file.
758 * sysdeps/unix/sysv/aix/powerpc/register-dump.h: New file.
760 2001-06-19 Ulrich Drepper <drepper@redhat.com>
762 * po/es.po: Update from translation team.
764 2001-06-19 Andreas Jaeger <aj@suse.de>
766 * sysdeps/ieee754/ldbl-128/s_tanhl.c: New file.
768 * math/libm-test.inc (tanh_test): Test for 2^-56.
770 * sysdeps/ieee754/ldbl-96/s_tanhl.c (__tanhl): Make sure result
771 equals argument when x < 2^-55.
772 Patches by Stephen L. Moshier <moshier@na-net.ornl.gov>.
774 2001-06-17 Alan Modra <amodra@bigpond.net.au>
776 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Handle relocs
777 at unaligned address.
779 2001-06-18 Ulrich Drepper <drepper@redhat.com>
781 * posix/regex.c: Reorganize code to build code twice, once for single
782 byte, once for multi-byte charsets. Choose function set adequate for
784 Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
786 * po/nl.po: Update from translation team.
788 2001-06-09 Bruno Haible <haible@clisp.cons.org>
790 * iconvdata/gconv-modules (BIG5HKSCS): New alias BIG5-HKSCS.
791 (ISO-8859-14): New aliases ISO_8859-14 and ISO-CELTIC.
792 * iconvdata/tst-tables.sh: For BIG5HKSCS, use BIG5-HKSCS charmap.
794 2001-05-26 Bruno Haible <haible@clisp.cons.org>
796 * iconvdata/tst-tables.sh: For SJIS module, use SHIFT_JIS charmap.
797 * manual/charset.texi: Write Shift_JIS, not Shift-JIS.
799 2001-06-17 Roland McGrath <roland@frob.com>
801 * sysdeps/pthread/aio_misc.h (LIO_DSYNC): Define to LIO_NOP + 1,
802 not LIO_READ + 1 (which is the value of LIO_WRITE!).
804 * Makerules (build-module-helper-objlist): New variable,
805 broken out of build-module. Insert --whole-archive/--no-whole-archive
806 immediately each *_pic.a file in the link object list.
807 (whole-archive): New variable, used by that.
808 (build-module-objlist): New variable using build-module-helper-objlist.
809 (build-module, build-module-helper): Use it.
810 (build-shlib-objlist): New variable using build-module-helper-objlist.
811 (build-shlib): Use that.
812 * sysdeps/mach/hurd/Makefile ($(link-rpcuserlibs)): Likewise.
814 * posix/spawni.c: Moved to ...
815 * sysdeps/posix/spawni.c: ... here.
816 * sysdeps/generic/spawni.c: New file.
818 2001-06-16 Roland McGrath <roland@frob.com>
820 * hurd/Makefile (routines): Add lookup-retry.
821 * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Broken out ...
822 * hurd/lookup-retry.c: ... into here, new file.
823 * sysdeps/mach/hurd/dl-sysdep.c (open_file): Call that instead
824 using of duplicate code here.
826 * hurd/hurdexec.c (_hurd_exec): Be robust for DTABLESIZE==0.
828 2001-06-17 Ulrich Drepper <drepper@redhat.com>
830 * po/ja.po: Update from translation team.
832 2001-06-04 Bruno Haible <haible@clisp.cons.org>
834 * locale/programs/locfile.c (siblings_uncached, siblings, full_read,
835 compare_files): New functions.
836 (write_locale_data): Use xmalloc. Compare the file with the locale
837 data files for the same category in other locales, and reuse it if
840 2001-06-07 Mark Kettenis <kettenis@gnu.org>
842 * grp/initgroups.c (initgroups): Factor out re-usable code into...
843 (internal_getgrouplist): ... new function.
844 (getgrouplist): New function.
845 * grp/grp.h (getgrouplist): New prototype.
846 * grp/Versions [2.2.4]: Add getgrouplist.
848 2001-06-16 Ulrich Drepper <drepper@redhat.com>
850 * inet/netinet/ip6.h: Fix comments in ip6_hdr.
851 Patch by Pekka Savola <pekkas@netcore.fi>.
853 2001-06-15 Roland McGrath <roland@frob.com>
855 * rt/Makefile (aio-routines, clock-routines, timer-routines): New
856 variables, broken out of librt-routines.
857 (librt-routines): Set using those.
858 (extra-libs, extra-libc-others, tests): Set these unconditionally.
859 (distribute): No need for $(librt-map) or $(librt-routines:=.c) here.
860 * sysdeps/generic/aio_fsync.c: New file.
861 * sysdeps/generic/aio_misc.c: New file.
862 * sysdeps/generic/aio_write.c: New file.
863 * sysdeps/generic/aio_write64.c: New file.
864 * sysdeps/generic/aio_read64.c: New file.
865 * sysdeps/generic/aio_read.c: New file.
866 * sysdeps/generic/aio_notify.c: New file.
867 * sysdeps/generic/lio_listio64.c: New file.
868 * sysdeps/generic/lio_listio.c: New file.
869 * sysdeps/generic/aio_cancel.c: New file.
870 * sysdeps/generic/aio_misc.h: New file.
871 * sysdeps/generic/aio_suspend.c: New file.
872 * rt/aio_cancel.c: Moved to ...
873 * sysdeps/pthread/aio_cancel.c: ... here.
874 * rt/aio_fsync.c: Moved to ...
875 * sysdeps/pthread/aio_fsync.c: ... here.
876 * rt/aio_misc.c: Moved to ...
877 * sysdeps/pthread/aio_misc.c: ... here.
878 * rt/aio_misc.h: Moved to ...
879 * sysdeps/pthread/aio_misc.h: ... here.
880 * rt/aio_notify.c: Moved to ...
881 * sysdeps/pthread/aio_notify.c: ... here.
882 * rt/aio_read.c: Moved to ...
883 * sysdeps/pthread/aio_read.c: ... here.
884 * rt/aio_read64.c: Moved to ...
885 * sysdeps/pthread/aio_read64.c: ... here.
886 * rt/aio_suspend.c: Moved to ...
887 * sysdeps/pthread/aio_suspend.c: ... here.
888 * rt/aio_write.c: Moved to ...
889 * sysdeps/pthread/aio_write.c: ... here.
890 * rt/aio_write64.c: Moved to ...
891 * sysdeps/pthread/aio_write64.c: ... here.
892 * rt/lio_listio.c: Moved to ...
893 * sysdeps/pthread/lio_listio.c: ... here.
894 * rt/lio_listio64.c: Moved to ...
895 * sysdeps/pthread/lio_listio64.c: ... here.
897 2001-06-14 Roland McGrath <roland@frob.com>
899 * configure.in: Let sysdeps Implies files in add-ons bring in
900 sysdeps directories from the main source and other add-ons too.
902 2001-06-15 Jakub Jelinek <jakub@redhat.com>
904 * math/test-misc.c (main): Add tests for nextafter and nexttoward
905 with +-Inf as second argument.
907 * sysdeps/generic/s_nexttowardf.c (__nexttowardf): Only check for
909 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Fix check for NaN.
910 * sysdeps/i386/fpu/s_nexttoward.c: New.
911 * sysdeps/i386/fpu/s_nexttowardf.c: New.
912 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Simplify
913 check for NaN, optimize x==+-0 handling.
914 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf): Likewise.
915 * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Simplify
916 check for NaN, fix sign in x==+-0 case.
917 * sysdeps/ia64/fpu/s_nexttoward.c: New.
918 * sysdeps/ia64/fpu/s_nexttowardf.c: New.
920 2001-06-15 H.J. Lu <hjl@gnu.org>
922 * rt/tst-aio2.c (do_test): Initialize cb.aio_offset to 0.
923 * rt/tst-aio3.c (do_test): Likewise.
924 * rt/tst-aio4.c (do_test): Likewise.
925 * rt/tst-aio5.c (do_test): Likewise.
926 * rt/tst-aio6.c (do_test): Likewise.
928 2001-06-15 Andreas Schwab <schwab@suse.de>
930 * sysdeps/m68k/fpu/bits/mathinline.h: Don't define log2 as inline.
931 * sysdeps/m68k/fpu/mathimpl.h: Define __ieee754_log2 as inline.
933 2001-06-15 Andreas Jaeger <aj@suse.de>
935 * gmon/tst-sprofil.c (fac): Make static to avoid compiler warning.
937 2001-06-14 Andreas Schwab <schwab@suse.de>
939 * elf/ldconfig.c (search_dir): Fix check for regular file.
941 * sysdeps/m68k/fpu/e_log2f.c: Fix typo.
942 * sysdeps/m68k/fpu/e_log2l.c: Fix typo.
944 2001-06-14 Roland McGrath <roland@frob.com>
946 * sysdeps/mach/hurd/bits/fcntl.h [ __USE_POSIX199309 || __USE_UNIX98]:
947 (O_DSYNC, O_RSYNC): New macros, both defined to O_SYNC as Linux does.
949 2001-06-13 Roland McGrath <roland@frob.com>
951 * rt/aio_notify.c: Include <unistd.h> for _POSIX_REALTIME_SIGNALS.
953 * sysdeps/mach/hurd/fork.c (LOSE): Put `goto lose' in dead code
954 so the label is not considered unused.
956 * sysdeps/mach/hurd/pwrite64.c: New file.
957 * sysdeps/mach/hurd/pread64.c: New file.
959 * sysdeps/mach/hurd/pread.c
960 (__libc_pread): Define this name, with __pread as an alias.
961 * sysdeps/mach/hurd/pwrite.c
962 (__libc_pwrite): Define this name, with __pwrite as an alias.
964 Implement POSIX "shared memory objects" as regular
965 files residing in the /var/run/shm/ directory.
966 This works on any system that supports _POSIX_MAPPED_FILES,
967 to make it also support _POSIX_SHARED_MEMORY_OBJECTS.
968 * sysdeps/posix/shm_open.c: New file.
969 * sysdeps/posix/shm_unlink.c: New file.
970 * sysdeps/mach/hurd/bits/posix_opt.h
971 (_POSIX_SHARED_MEMORY_OBJECTS): Define it.
973 * rt/aio_notify.c (__aio_notify_only) [! _POSIX_REALTIME_SIGNALS]:
974 Use raise instead of __aio_sigqueue.
976 * sysdeps/mach/hurd/pread.c: Fail with EINVAL if OFFSET is negative.
977 * sysdeps/mach/hurd/pwrite.c: Likewise.
979 * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu.*): libc=0.3
980 [USE_IN_LIBIO && !GLIBC_OLDEST_ABI] (.*-.*-gnu-gnu.*): Use GLIBC_2.2.4
981 as default version set.
983 2001-06-13 Ulrich Drepper <drepper@redhat.com>
985 * libio/iolibio.h (_IO_freopen): Correct last parameter to
987 (_IO_freopen64): Likewise.
988 Reported by simanek@quantum.karlov.mff.cuni.cz [PR libc/2326].
990 * elf/elf.h: Add a few more EM_* constants.
992 2001-06-12 Bruno Haible <haible@clisp.cons.org>
994 * intl/dcigettext.c (DCIGETTEXT): Release the lock before returning.
996 2001-06-09 Ben Collins <bcollins@debian.org>
998 * sysdeps/unix/sysv/linux/bits/termios.h: Define __MAX_BAUD.
999 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1000 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1001 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1002 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1003 * sysdeps/unix/sysv/linux/speed.c: Use __MAX_BAUD instead of
1006 2001-06-13 Ulrich Drepper <drepper@redhat.com>
1008 * time/sys/time.h: Don't use enum __itimer_which ever for
1009 __itimer_which_t for C++.
1010 Reported by Martin Buchholz <martin@xemacs.org>.
1012 * po/fr.po: Update from translation team.
1014 2001-06-12 H.J. Lu <hjl@gnu.org>
1016 * configure.in: Fix typos in missing program names.
1017 * configure: Regenerated.
1019 2001-06-12 Andreas Jaeger <aj@suse.de>
1021 * iconvdata/tst-table-to.c: Include string.h for strcmp prototype.
1023 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Add ULPs for tanh (-0.7).
1025 2001-06-11 Andreas Jaeger <aj@suse.de>
1027 * sysdeps/ieee754/ldbl-128/e_coshl.c: New file. Contributed by
1028 Stephen L Moshier <moshier@mediaone.net>.
1030 * aclocal.m4: Quote AC_FD_MSG and AC_FD_CC.
1032 * sysdeps/powerpc/fpu/libm-test-ulps: Add ULPs for tanh (-0.7).
1033 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
1035 2001-06-11 Michael Deutschmann <michael@talamasca.ocis.net>
1037 * rt/tst-aio4.c (do_test): Test whether rt signals are supported.
1038 Use my_signo instead of MY_SIGNO and initialize it so that the
1039 used signal is always available.
1041 2001-06-11 Andreas Jaeger <aj@suse.de>,
1042 Michael Deutschmann <michael@talamasca.ocis.net>
1044 * io/test-lfs.c (do_prepare): Clean up error messages.
1045 (test_ftello): Check for EFBIG and ENOSPC, clean up error messages.
1046 (do_test): Likewise.
1048 2001-06-11 Andreas Jaeger <aj@suse.de>
1050 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (IXANY, IUCLC,
1051 IMAXBEL): Make always visible since they're needed by POSIX.
1052 Closes PR libc/2320, reported by Chris Yeoh <cyeoh@samba.org>.
1054 2001-06-10 Ben Collins <bcollins@debian.org>
1056 * sysdeps/arm/elf/start.S: Use #function, not @function, for
1059 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Include limits.h to get
1062 2001-06-07 H.J. Lu <hjl@gnu.org>
1064 * sunrpc/rpc/rpc.h: Add __BEGIN_DECLS/__END_DECLS.
1066 2001-06-10 Roland McGrath <roland@frob.com>
1068 * elf/reldep4mod2.c: Use fully typed decls to avoid warnings.
1069 * elf/reldep4mod4.c: Likewise.
1071 2001-06-10 Mark Kettenis <kettenis@gnu.org>
1073 * hurd/hurd/threadvar.h: Add prototype for __hurd_errno_location.
1075 2001-06-08 Andreas Schwab <schwab@suse.de>
1077 * posix/regex.c (re_match_2_internal) [case wordbeg, wordend]:
1078 Don't dereference at end of string.
1080 2001-06-06 Roland McGrath <roland@frob.com>
1082 * sysdeps/mach/hurd/getsockopt.c: Fix handling of returned buffer size.
1083 From Robert Bihlmeyer <robbe@orcus.priv.at>.
1085 2001-06-06 Ulrich Drepper <drepper@redhat.com>
1087 * po/ko.po: Update from translation team.
1089 2001-06-06 Andreas Jaeger <aj@suse.de>
1091 * manual/llio.texi (Memory-mapped I/O): Clarify that mapping is to
1093 Reported by Robert Bernecky <bernecky@acm.org>.
1095 2001-06-06 Jakub Jelinek <jakub@redhat.com>
1097 * sysdeps/cris/elf/start.S: Fix a typo introduced by last patch.
1098 * sysdeps/ia64/elf/start.S: Likewise.
1099 * sysdeps/sh/elf/start.S: Likewise.
1100 * sysdeps/s390/s390-32/elf/start.S: Likewise.
1101 * sysdeps/s390/s390-64/elf/start.S: Likewise.
1103 2001-06-05 Matthew Wilcox <willy@ldl.fc.hp.com>
1105 * sysdeps/hppa/bsd-_setjmp.S: New.
1106 * sysdeps/hppa/bsd-setjmp.S: New.
1108 * sysdeps/hppa/dl-machine.h: Reformat asm statements to remove new
1109 gcc warnings about multi-line strings.
1111 * sysdeps/unix/sysv/linux/hppa/getrlimit.c: Remove.
1112 * sysdeps/unix/sysv/linux/hppa/setrlimit.c: Remove.
1114 * sysdeps/unix/sysv/linux/hppa/syscalls.list: Call getrlimit,
1115 setrlimit directly instead of using wrappers.
1117 2001-05-01 Richard Hirst <rhirst@linuxcare.com>
1119 * sysdeps/unix/sysv/linux/hppa/syscall.S: remove dummy syscall.
1120 * sysdeps/unix/sysv/linux/hppa/sysdep.c: implement syscall.
1122 2001-06-05 Philipp Thomas <pthomas@suse.de>
1124 * nis/nis_call.c (__nisbind_connect): Don't mark for translation
1125 what can't be translated.
1127 2001-06-06 Ulrich Drepper <drepper@redhat.com>
1129 * timezone/zic.c: Update from tzcode2001c.
1130 * timezone/private.h: Likewise.
1131 * timezone/africa: Update from tzdata2001c.
1132 * timezone/asia: Likewise.
1133 * timezone/europe: Likewise.
1134 * timezone/northamerica: Likewise.
1135 * timezone/southamerica: Likewise.
1136 * timezone/zone.tab: Likewise.
1138 2001-06-04 Bruno Haible <haible@clisp.cons.org>
1140 * iconv/loop.c (UNICODE_TAG_HANDLER): New macro.
1141 * iconv/gconv_simple.c (__gconv_transform_internal_ascii): Invoke
1142 UNICODE_TAG_HANDLER.
1143 (__gconv_transform_internal_ucs2): Likewise.
1144 (__gconv_transform_internal_ucs2reverse): Likewise.
1145 * iconvdata/8bit-gap.c (BODY for TO_LOOP): Invoke UNICODE_TAG_HANDLER.
1146 * iconvdata/8bit-generic.c (BODY for TO_LOOP): Likewise.
1147 * iconvdata/ansi_x3.110.c (BODY for TO_LOOP): Likewise.
1148 * iconvdata/big5.c (BODY for TO_LOOP): Likewise.
1149 * iconvdata/big5hkscs.c (BODY for TO_LOOP): Likewise.
1150 * iconvdata/cp1255.c (BODY for TO_LOOP): Likewise.
1151 * iconvdata/cp1258.c (BODY for TO_LOOP): Likewise.
1152 * iconvdata/euc-cn.c (BODY for TO_LOOP): Likewise.
1153 * iconvdata/euc-jp.c (BODY for TO_LOOP): Likewise.
1154 * iconvdata/euc-kr.c (BODY for TO_LOOP): Likewise.
1155 * iconvdata/euc-tw.c (BODY for TO_LOOP): Likewise.
1156 * iconvdata/gbk.c (BODY for TO_LOOP): Likewise.
1157 * iconvdata/ibm930.c (BODY for TO_LOOP): Likewise.
1158 * iconvdata/ibm932.c (BODY for TO_LOOP): Likewise.
1159 * iconvdata/ibm933.c (BODY for TO_LOOP): Likewise.
1160 * iconvdata/ibm935.c (BODY for TO_LOOP): Likewise.
1161 * iconvdata/ibm937.c (BODY for TO_LOOP): Likewise.
1162 * iconvdata/ibm939.c (BODY for TO_LOOP): Likewise.
1163 * iconvdata/ibm943.c (BODY for TO_LOOP): Likewise.
1164 * iconvdata/iso646.c (BODY for TO_LOOP): Likewise.
1165 * iconvdata/iso8859-1.c (BODY for TO_LOOP): Likewise.
1166 * iconvdata/iso_6937.c (BODY for TO_LOOP): Likewise.
1167 * iconvdata/iso_6937-2.c (BODY for TO_LOOP): Likewise.
1168 * iconvdata/iso-2022-cn.c (BODY for TO_LOOP): Likewise.
1169 * iconvdata/iso-2022-cn-ext.c (BODY for TO_LOOP): Likewise.
1170 * iconvdata/iso-2022-kr.c (BODY for TO_LOOP): Likewise.
1171 * iconvdata/johab.c (BODY for TO_LOOP): Likewise.
1172 * iconvdata/sjis.c (BODY for TO_LOOP): Likewise.
1173 * iconvdata/t.61.c (BODY for TO_LOOP): Likewise.
1174 * iconvdata/uhc.c (BODY for TO_LOOP): Likewise.
1175 * iconvdata/unicode.c (BODY for TO_LOOP): Likewise.
1176 * iconvdata/iso-2022-jp.c (TAG_none, TAG_language, TAG_language_j,
1177 TAG_language_ja, TAG_language_k, TAG_language_ko, TAG_language_z,
1178 TAG_language_zh, CURRENT_TAG_MASK): New enum values.
1179 (EMIT_SHIFT_TO_INIT): Don't emit an escape sequence if ASCII_set
1180 is already selected but set2 or tag are set.
1181 (conversion): New enum type.
1182 (cvlist_t): New type.
1183 (CVLIST, CVLIST_FIRST, CVLIST_REST): New macros.
1184 (conversion_lists): New array.
1185 (BODY for TO_LOOP): Keep track of Unicode 3.1 language tag. If "ja",
1186 prefer conversion to Japanese character sets. If "zh", prefer
1187 conversion to GB2312. If "ko", prefer conversion to KSC5601. Small
1189 (INIT_PARAMS): Add tag.
1190 (UPDATE_PARAMS): Add tag.
1192 2001-06-04 Bruno Haible <haible@clisp.cons.org>
1194 * locale/programs/locfile.c (write_locale_data): Before creat(),
1195 unlink the file, to avoid crashing the processes that mmap it. Change
1196 a double slash to a single slash. Free fname in case of error return.
1198 2001-06-02 Jakub Jelinek <jakub@redhat.com>
1200 * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Mostly revert 2000-12-03
1201 changes, do the special handling for denormal numbers, not for
1202 normalized numbers (patch by <trevin@xmission.com>).
1204 * math/test-misc.c (main): Test frexpl with denormal arguments.
1206 2001-06-04 Jakub Jelinek <jakub@redhat.com>
1208 * math/libm-test.inc (llround_test): Add two new llround tests.
1209 * sysdeps/ieee754/ldbl-96/s_llroundl.c (__llroundl): Don't allow
1210 overflow when rounding away from zero.
1212 2001-06-04 Jakub Jelinek <jakub@redhat.com>
1214 * math/Makefile (libm-calls): Add e_log2, w_log2, remove s_log2.
1215 * math/math_private.h (__ieee754_log2, __ieee754_log2f,
1216 __ieee754_log2l): New prototypes.
1217 * sysdeps/generic/w_log2.c: New file.
1218 * sysdeps/generic/w_log2f.c: New file.
1219 * sysdeps/generic/w_log2l.c: New file.
1220 * sysdeps/generic/s_log2l.c: Move...
1221 * sysdeps/generic/e_log2l.c: ...to here. Rename to __ieee754_log2l.
1222 * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle log2(0)
1224 * sysdeps/i386/fpu/s_log2.S: Move...
1225 * sysdeps/i386/fpu/e_log2.S: ...to here. Rename to __ieee754_log2.
1226 * sysdeps/i386/fpu/s_log2f.S: Move...
1227 * sysdeps/i386/fpu/e_log2f.S: ...to here. Rename to __ieee754_log2f.
1228 * sysdeps/i386/fpu/s_log2l.S: Move...
1229 * sysdeps/i386/fpu/e_log2l.S: ...to here. Rename to __ieee754_log2l.
1230 * sysdeps/m68k/fpu/s_log2.c: Move...
1231 * sysdeps/m68k/fpu/e_log2.c: ...to here. Rename to __ieee754_log2.
1232 * sysdeps/m68k/fpu/s_log2f.c: Move...
1233 * sysdeps/m68k/fpu/e_log2f.c: ...to here. Rename to __ieee754_log2f.
1234 * sysdeps/m68k/fpu/s_log2l.c: Move...
1235 * sysdeps/m68k/fpu/e_log2l.c: ...to here. Rename to __ieee754_log2l.
1236 * sysdeps/ieee754/dbl-64/s_log2.c: Move...
1237 * sysdeps/ieee754/dbl-64/e_log2.c: ...to here. Rename to
1239 * sysdeps/ieee754/flt-32/s_log2f.c: Move...
1240 * sysdeps/ieee754/flt-32/e_log2f.c: ...to here. Rename to
1243 2001-06-04 Jakub Jelinek <jakub@redhat.com>
1245 * sysdeps/generic/w_exp2.c (u_threshold): Lower threshold so that
1246 even arguments which result in denormalized exp2 are accepted.
1247 (__exp2): Arguments equal to u_threshold already result into
1249 * sysdeps/generic/w_exp2f.c (u_threshold, __exp2f): Likewise.
1250 * sysdeps/generic/w_exp2l.c (u_threshold, __exp2l): Likewise.
1251 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Lomark was too
1252 low, with corrected lowmark use greaterequal, not greater.
1253 * sysdeps/ieee754/flt-32/e_exp2f.c (__ieee754_exp2f): Likewise.
1255 2001-06-04 Jakub Jelinek <jakub@redhat.com>
1257 * math/libm-test.inc (ilogb_test): Test that ilogb(+-Inf) == INT_MAX.
1258 * sysdeps/i386/fpu/s_ilogb.S (__ilogb): Return INT_MAX for +-Inf.
1259 * sysdeps/i386/fpu/s_ilogbf.S (__ilogbf): Likewise.
1260 * sysdeps/i386/fpu/s_ilogbl.S (__ilogbl): Likewise.
1261 * sysdeps/ieee754/dbl-64/s_ilogb.c (__ilogb): Likewise.
1262 * sysdeps/ieee754/flt-32/s_ilogbf.c (__ilogbf): Likewise.
1263 * sysdeps/ieee754/ldbl-128/s_ilogbl.c (__ilogbl): Likewise.
1264 * sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Likewise.
1266 2001-06-04 Jakub Jelinek <jakub@redhat.com>
1268 * sysdeps/generic/w_coshl.c (__coshl): Test if finite argument
1269 gave non-finite result instead of using constant in generic
1271 * sysdeps/generic/w_coshf.c (__coshf): Likewise.
1272 * sysdeps/generic/w_cosh.c (__cosh): Likewise.
1273 * sysdeps/generic/w_exp10.c (o_threshold, u_threshold): Remove.
1274 (__exp10): Test if finite argument gave non-finite result.
1275 * sysdeps/generic/w_exp10f.c (o_threshold, u_threshold, __exp10f):
1277 * sysdeps/generic/w_exp10l.c (o_threshold, u_threshold, __exp10l):
1280 2001-06-04 Jakub Jelinek <jakub@redhat.com>
1282 * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Fix
1283 overflow threshold constant (log(LDBL_MAX)+M_LN2l).
1285 2001-05-29 Bruno Haible <haible@clisp.cons.org>
1287 * locale/programs/ld-ctype.c (idx_table): New struct type.
1288 (idx_table_init, idx_table_get, idx_table_add): New functions.
1289 (MAX_CHARNAMES_IDX): Remove macro.
1290 (locale_ctype_t): Change type of charnames_idx field.
1291 (ctype_startup): Change initialization of charnames_idx field.
1292 (find_idx): Use idx_table_get and idx_table_add for speed.
1294 * locale/programs/charmap.c (charmap_new_char): Fix ucs4 value
1295 computation of characters in a range.
1297 2001-05-29 Bruno Haible <haible@clisp.cons.org>
1299 * iconvdata/gb18030.c (__fourbyte_to_ucs1): Add mappings for <U03F4>,
1301 (__ucs_to_gb18030_tab1): Likewise.
1302 (BODY for FROM_LOOP): Add mapping for <U00010000>..<U0010FFFF>.
1303 (BODY for TO_LOOP): Likewise.
1304 * iconvdata/tst-table-charmap.sh: Update for charmaps containing
1306 * iconvdata/tst-table-from.c (bmp_only): New variable.
1307 (utf8_decode): If bmp_only, don't return characters outside Unicode
1309 (main): When testing UTF-8 or GB18030, set bmp_only to 1. Don't print
1310 a conversion line if utf8_decode returns NULL.
1311 * iconvdata/tst-table-to.c (main): When testing encodings other than
1312 UTF-8 and GB18030, loop upto U+30000 instead of U+10000. Use UTF-8
1313 instead of UCS-2 as input.
1314 * iconvdata/tst-table.sh: For GB18030, use only the part < 0x10000
1317 2001-05-29 Bruno Haible <haible@clisp.cons.org>
1319 * iconvdata/cns11643l1.c: Update to Unicode 3.1.
1320 (__cns11643l1_to_ucs4_tab): Regenerated.
1321 (__cns11643l1_from_ucs4_tab12): Regenerated.
1322 * iconvdata/cns11643.c: Update to Unicode 3.1.
1323 (__cns11643l14_to_ucs4_tab): Remove array.
1324 (__cns11643l3_to_ucs4_tab, __cns11643l4_to_ucs4_tab,
1325 __cns11643l5_to_ucs4_tab, __cns11643l6_to_ucs4_tab,
1326 __cns11643l7_to_ucs4_tab, __cns11643l15_to_ucs4_tab): New arrays.
1327 (__cns11643_from_ucs4p0_tab): Renamed from __cns11643_from_ucs4_tab.
1328 (__cns11643_from_ucs4p2_tab): New array.
1329 * iconvdata/cns11643.h (__cns11643l14_to_ucs4_tab): Remove declaration.
1330 (__cns11643l3_to_ucs4_tab, __cns11643l4_to_ucs4_tab,
1331 __cns11643l5_to_ucs4_tab, __cns11643l6_to_ucs4_tab,
1332 __cns11643l7_to_ucs4_tab, __cns11643l15_to_ucs4_tab): New declarations.
1333 (cns11643_to_ucs4): Treat planes 3, 4, 5, 6, 7, 15 instead of 14.
1334 (__cns11643_from_ucs4_tab): Remove declaration.
1335 (__cns11643_from_ucs4p0_tab, __cns11643_from_ucs4p2_tab): New
1337 (ucs4_to_cns11643): Update for new arrays. Treat U+3400..U+4DFF and
1339 * iconvdata/cns11643l2.h (__cns11643_from_ucs4_tab): Remove
1341 (__cns11643_from_ucs4p0_tab): New declaration.
1342 (ucs4_to_cns11643l2): Update for new arrays.
1343 * iconvdata/iso-2022-cn-ext.c (BODY for FROM_LOOP): Handle planes
1345 (BODY for TO_LOOP): Handle planes 3 to 7, instead of plane 14.
1346 * iconvdata/EUC-TW.irreversible: New file.
1347 * iconvdata/tst-table.sh: Use it.
1348 * iconvdata/Makefile (distribute): Add CP1255.irreversible,
1349 CP1258.irreversible, EUC-TW.irreversible.
1351 2001-05-29 Bruno Haible <haible@clisp.cons.org>
1353 * locale/C-translit.h.in: Add transliterations for new Unicode 3.1
1354 mathematical symbols.
1356 2001-06-05 Andreas Jaeger <aj@suse.de>
1358 * manual/stdio.texi (Portable Positioning): Fix description of
1359 fpos_t and fpos64_t.
1361 2001-06-06 Ulrich Drepper <drepper@redhat.com>
1363 * sysdeps/generic/wordexp.c: Undo last patch. Use strndupa instead.
1365 * po/sk.po: Update from translation team.
1367 2001-06-05 Andreas Jaeger <aj@suse.de>
1369 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Recognize
1370 tmpfs, patch by Stanislav Brabec <utx@penguin.cz>.
1371 Closes PR libc/2315.
1373 2001-06-05 Ulrich Drepper <drepper@redhat.com>
1375 * sysdeps/generic/wordexp.c: Add missing free.
1376 Patch by yeti@physics.muni.cz.
1378 2001-06-02 Tom Browder <tbrowder@home.com>
1380 * misc/tst-tsearch.c (mangle_tree): Ensure array indices are
1381 within bounds when lag > 0.
1383 2001-06-05 Ulrich Drepper <drepper@redhat.com>
1385 * po/tr.po: New file.
1387 2001-06-05 Andreas Jaeger <aj@suse.de>
1389 * manual/libm-err-tab.pl (parse_ulps): Fix typo.
1391 2001-06-04 H.J. Lu <hjl@gnu.org>
1393 * sysdeps/alpha/elf/start.S: Add .type for the entry point.
1394 * sysdeps/arm/elf/start.S: Likewise.
1395 * sysdeps/hppa/elf/start.S: Likewise.
1396 * sysdeps/i386/elf/start.S: Likewise.
1397 * sysdeps/m68k/elf/start.S: Likewise.
1398 * sysdeps/mips/elf/start.S: Likewise.
1399 * sysdeps/ia64/elf/start.S: Likewise.
1400 * sysdeps/sh/elf/start.S: Likewise.
1401 * sysdeps/s390/s390-32/elf/start.S: Likewise.
1402 * sysdeps/s390/s390-64/elf/start.S: Likewise.
1403 * sysdeps/cris/elf/start.S: Likewise.
1405 2001-06-04 Bruce Mitchener <bruce@cubik.org>
1407 * manual/resource.texi: Correct setpriority/nice documentation.
1409 * sysdeps/unix/nice.c: Correct nice() implementation.
1411 2001-06-04 Andreas Jaeger <aj@suse.de>
1413 * sysdeps/ieee754/ldbl-128/e_sinhl.c: New file, contributed by
1414 Stephen L Moshier <moshier@mediaone.net>.
1416 2001-06-03 Roland McGrath <roland@frob.com>
1418 * Makefile (postclean): Remove obsolete sysd-Makefile.
1420 2001-06-01 Roland McGrath <roland@frob.com>
1422 * sysdeps/alpha/fpu/fclrexcpt.c: #include <shlib-compat.h>
1423 and use compat_symbol/versioned_symbol instead of plain
1424 symbol_version/default_symbol_version.
1425 * sysdeps/alpha/fpu/fegetenv.c: Likewise.
1426 * sysdeps/alpha/fpu/fesetenv.c: Likewise.
1427 * sysdeps/alpha/fpu/feupdateenv.c: Likewise.
1428 * sysdeps/alpha/fpu/fgetexcptflg.c: Likewise.
1429 * sysdeps/alpha/fpu/fraiseexcpt.c: Likewise.
1430 * sysdeps/alpha/fpu/fsetexcptflg.c: Likewise.
1431 * sysdeps/arm/fpu/fclrexcpt.c: Likewise.
1432 * sysdeps/arm/fpu/fegetenv.c: Likewise.
1433 * sysdeps/arm/fpu/fesetenv.c: Likewise.
1434 * sysdeps/arm/fpu/fraiseexcpt.c: Likewise.
1435 * sysdeps/arm/fpu/fsetexcptflg.c: Likewise.
1436 * sysdeps/i386/fpu/fclrexcpt.c: Likewise.
1437 * sysdeps/i386/fpu/fegetenv.c: Likewise.
1438 * sysdeps/i386/fpu/fesetenv.c: Likewise.
1439 * sysdeps/i386/fpu/feupdateenv.c: Likewise.
1440 * sysdeps/i386/fpu/fgetexcptflg.c: Likewise.
1441 * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
1442 * sysdeps/i386/fpu/fsetexcptflg.c: Likewise.
1443 * sysdeps/m68k/fpu/fclrexcpt.c: Likewise.
1444 * sysdeps/m68k/fpu/fegetenv.c: Likewise.
1445 * sysdeps/m68k/fpu/fesetenv.c: Likewise.
1446 * sysdeps/m68k/fpu/feupdateenv.c: Likewise.
1447 * sysdeps/m68k/fpu/fgetexcptflg.c: Likewise.
1448 * sysdeps/m68k/fpu/fraiseexcpt.c: Likewise.
1449 * sysdeps/m68k/fpu/fsetexcptflg.c: Likewise.
1450 * sysdeps/powerpc/fclrexcpt.c: Likewise.
1451 * sysdeps/powerpc/fpu/fegetenv.c: Likewise.
1452 * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
1453 * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
1454 * sysdeps/powerpc/fpu/fgetexcptflg.c: Likewise.
1455 * sysdeps/powerpc/fpu/fraiseexcpt.c: Likewise.
1456 * sysdeps/powerpc/fpu/fsetexcptflg.c: Likewise.
1458 * iconvdata/cp1258.c: Include <stdlib.h> for abort decl.
1459 * iconvdata/iso-2022-cn-ext.c: Likewise.
1461 2001-06-01 Andreas Jaeger <aj@suse.de>
1463 * Versions.def: Add version 2.2.4.
1465 2001-06-01 Ulrich Drepper <drepper@redhat.com>
1467 * socket/Makefile (routines): Add sockatmark.
1468 * socket/Versions [GLIBC_2.2.4]: Add sockatmark.
1469 * socket/sys/socket.h: Add prototype for sockatmark.
1470 * sysdeps/generic/sockatmark.c: New file.
1471 * sysdeps/unix/sockatmark.c: New file.
1473 2001-06-01 Andreas Jaeger <aj@suse.de>
1475 * sysdeps/unix/sysv/linux/speed.c (cfsetispeed): Max speed is
1477 (cfsetospeed): Likewise.
1478 Reported by Lukasz Trabinski <lukasz@lt.wsisiz.edu.pl>.
1480 2001-05-31 Joseph S. Myers <jsm28@cam.ac.uk>
1482 * misc/sys/cdefs.h (__restrict_arr): Define to empty for C++.
1484 2001-05-30 Martin Schwidefsky <schwidefsky@de.ibm.com>
1486 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: greg_t
1487 needs to have the same aligment as the kernel structure.
1489 2001-05-29 Jakub Jelinek <jakub@redhat.com>
1491 * sunrpc/rpc/types.h (u_char, u_short, u_int, u_long, quad_t,
1492 u_quad_t, fsid_t, daddr_t, caddr_t): Make sure the types are defined.
1493 * posix/sys/types.h (u_char, u_short, u_int, u_long, quad_t,
1494 u_quad_t, fsid_t, daddr_t, caddr_t): Protect the __USE_BSD typedefs
1495 against multiple definition.
1497 2001-05-30 Ulrich Drepper <drepper@redhat.com>
1499 * po/da.po: Update from translation team.
1501 2001-05-29 Andreas Jaeger <aj@suse.de>
1503 * sysdeps/ieee754/ldbl-128/e_acosl.c: New file, contributed by
1504 Stephen L Moshier <moshier@mediaone.net>.
1506 * math/libm-test.inc (sinh_test): Add new test case.
1508 * sysdeps/ieee754/ldbl_96/e_sinhl.c (__ieee754_sinhl): sinhl(x) =
1510 Patch by Stephen L Moshier <moshier@mediaone.net>.
1512 2001-05-23 Andreas Jaeger <aj@suse.de>
1514 * iconvdata/testdata/WINDOWS-1255..UTF-8: Renamed to...
1515 * iconvdata/testdata/WINDOWS-1255..UTF8: this.
1517 2001-05-27 Andreas Jaeger <aj@suse.de>
1519 * manual/stdio.texi (String Streams): Fix fmemopen description.
1520 Reported by Michal Kochanowicz <michal@michal.waw.pl>.
1522 2001-05-26 H.J. Lu <hjl@gnu.org>
1524 * sysdeps/unix/sysv/linux/mips/syscalls.list: Change sigsuspend
1525 to s_sigsuspend. Add s_mmap2.
1527 * sysdeps/mips/atomicity.h: New file.
1529 * sysdeps/unix/sysv/linux/mips/getsysstats.c: New file.
1531 * sysdeps/unix/sysv/linux/mips/bits/ipc.h (ipc_perm): Put
1534 2001-05-25 Bruce Mitchener <bruce@cubik.org>
1536 * manual/ctype.texi: Minor fix.
1537 * manual/install.texi: Likewise.
1538 * manual/startup.texi: Likewise.
1539 * manual/examples/dir.c: Use perror() rather than puts().
1541 2001-05-25 David Mosberger <davidm@hpl.hp.com>
1543 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Put stuff following
1544 #endif directive inside a comment to avoid compiler warnings.
1546 2001-05-25 Philipp Thomas <pthomas@suse.de>
1548 * nis/nis_print.c (nis_nstype2str): Don't mark names of
1549 naming services for translation, only UNKNOWN needs it.
1550 Add comment to prevent it for the future.
1552 2001-05-25 Joseph S. Myers <jsm28@cam.ac.uk>
1554 * misc/sys/cdefs.h (__restrict_arr): Define appropriately for GCC
1555 3.1 and non-GCC C99 compilers.
1557 2001-05-22 David Mosberger <davidm@hpl.hp.com>
1559 * sysdeps/ia64/memmove.S: Increase MEMLAT from 6 to 21 for better
1561 * sysdeps/ia64/memcpy.S: Likewise.
1563 * sysdeps/ia64/bcopy.S: New file.
1565 * sysdeps/ia64/bzero.S: New file (derived from memset.S).
1567 2001-05-26 Ulrich Drepper <drepper@redhat.com>
1569 * sysdeps/ia64/fpu/libm-test-ulps: Add deltas for tanh(-0.7).
1571 2001-05-24 Ulrich Drepper <drepper@redhat.com>
1573 * iconvdata/Makefile: Add rules for CP10007.
1574 * iconvdata/gconv-modules: Add entries for CP10007 ad MacCyrillic.
1575 * iconvdata/cp10007.c: New file.
1576 * iconvdata/tst-tables.sh: Add CP10007.
1578 2001-05-23 kaz Kojima <kkojima@rr.iij4u.or.jp>
1580 * sysdeps/sh/dl-machine.h (_dl_runtime_resolve): Handle newer PLT.
1581 (_dl_runtime_profile): Likewise..
1583 2001-05-23 Thorsten Kukuk <kukuk@suse.de>
1585 * sysdeps/posix/getaddrinfo.c: Support for AF_UNIX commented out.
1586 * posix/tst-getaddrinfo.c: Remove AF_UNIX test.
1588 2001-05-19 H.J. Lu <hjl@gnu.org>
1590 * elf/dl-deps.c (_dl_map_object_deps): Pass objname and
1591 errstring of the failed DSO to _dl_signal_error ().
1593 2001-05-23 Ulrich Drepper <drepper@redhat.com>
1595 * iconvdata/gconv-modules: Add more aliases to enable use in
1598 2001-05-23 Andreas Jaeger <aj@suse.de>
1600 * sysdeps/unix/sysv/linux/ia64/Makefile (CFLAGS-initfini.s):
1601 Remove, it's not used anywhere anymore.
1602 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile
1603 (CFLAGS-initfini.s): Likewise.
1604 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile
1605 (CFLAGS-initfini.s): Likewise.
1606 * sysdeps/unix/sysv/linux/powerpc/Makefile (CFLAGS-initfini.s):
1608 * sysdeps/unix/sysv/linux/i386/Makefile (CFLAGS-initfini.s):
1611 2001-05-21 Bruno Haible <haible@clisp.cons.org>
1613 * wcsmbs/mbrtowc.c (mbrtowc): Remove local variable 'flush', always
1614 use 0 instead, and rely on the converter to do the flush.
1615 * wcsmbs/tst-mbrtowc.c (utf8_test_1): New function, taken from
1617 (utf8_test_2, utf8_test_3): New function.
1618 (utf8_test): Call utf8_test_1, utf8_test_2, utf8_test_3.
1620 2001-05-22 Jakub Jelinek <jakub@redhat.com>
1622 * elf/dl-close.c (_dl_close): Save imap->l_reldeps, not map->l_reldeps.
1624 * elf/Makefile (distribute): Add reldep4mod[1234].c.
1625 (tests): Add reldep4.
1626 (modules-names): Add reldep4mod[1234].
1627 (reldep4mod1.so, reldep4mod2.so, reldep4, reldep4.out): New rules.
1628 * elf/reldep4.c: New file.
1629 * elf/reldep4mod1.c: Likewise.
1630 * elf/reldep4mod2.c: Likewise.
1631 * elf/reldep4mod3.c: Likewise.
1632 * elf/reldep4mod4.c: Likewise.
1634 2001-05-18 Jakub Jelinek <jakub@redhat.com>
1636 * elf/dl-lookup.c (PROTECTED): Remove defines.
1637 (add_dependency): Mark it with internal_function.
1638 (_dl_do_lookup, _dl_do_lookup_versioned): New functions.
1639 (_dl_lookup_symbol, _dl_lookup_symbol_skip,
1640 _dl_lookup_versioned_symbol, _dl_lookup_versioned_symbol_skip): Use
1641 it if we don't want do_lookup* inlined.
1643 2001-05-18 Jakub Jelinek <jakub@redhat.com>
1645 * include/link.h (struct r_scope_elem): Remove r_duplist and
1647 * elf/dl-load.c (_dl_map_object_from_fd): Don't initialize them.
1648 * elf/dl-lookup.c (_dl_lookup_symbol_skip): Look in r_list, not
1650 (_dl_lookup_versioned_symbol_skip): Likewise.
1651 * elf/dl-deps.c (struct list): Remove dup field, rename unique to next.
1652 (_dl_map_object_deps): Don't compute duplicate list.
1654 * elf/dl-symbol.c: Removed.
1655 * elf/Makefile (routines): Remove dl-symbol.
1657 2001-05-22 Ulrich Drepper <drepper@redhat.com>
1659 * po/el.po: Update from translation team.
1660 * po/sv.po: Likewise.
1662 2001-05-20 Bruno Haible <haible@clisp.cons.org>
1664 * iconvdata/cp1255.c: Completely rewritten.
1665 * iconvdata/Makefile (gen-8bit-gap-modules): Remove cp1255.
1666 * iconvdata/testdata/WINDOWS-1255: New file.
1667 * iconvdata/testdata/WINDOWS-1255..UTF8: New file.
1668 * iconvdata/TESTS: Add WINDOWS-1255 test.
1669 * iconvdata/CP1255.irreversible: New file.
1671 2001-05-20 Bruno Haible <haible@clisp.cons.org>
1673 * iconvdata/cp1258.c: Completely rewritten.
1674 * iconvdata/Makefile (gen-8bit-gap-modules): Remove cp1258.
1675 * iconvdata/testdata/WINDOWS-1258: New file.
1676 * iconvdata/testdata/WINDOWS-1258..UTF8: New file.
1677 * iconvdata/TESTS: Add WINDOWS-1258 test.
1678 * iconvdata/tst-table-from.c (try): Reset the iconv descriptor before
1679 the main call, and flush it afterwards.
1680 (utf8_decode): Return a string, possibly containing several Unicode
1682 (main): Update all utf8_decode calls.
1683 * iconvdata/CP1258.irreversible: New file.
1685 2001-05-20 Bruno Haible <haible@clisp.cons.org>
1687 * iconv/gconv.c (__gconv): For flush without output, pass do_flush = 2.
1688 * iconv/skeleton.c: Distinguish do_flush = 1 and do_flush = 2. In the
1689 first case, set outbuf, outstart, outend, and call PREPARE_LOOP before
1690 EMIT_SHIFT_TO_INIT; then pass the output produced by this step down to
1691 the next step. In the second case, clear the state without calling
1693 * iconvdata/ibm930.c (EMIT_SHIFT_TO_INIT): Use outbuf instead of
1694 data->__outbuf, and outend instead of data->__outbufend.
1695 * iconvdata/ibm933.c (EMIT_SHIFT_TO_INIT): Likewise.
1696 * iconvdata/ibm935.c (EMIT_SHIFT_TO_INIT): Likewise.
1697 * iconvdata/ibm937.c (EMIT_SHIFT_TO_INIT): Likewise.
1698 * iconvdata/ibm939.c (EMIT_SHIFT_TO_INIT): Likewise.
1699 * iconvdata/iso-2022-cn.c (EMIT_SHIFT_TO_INIT): Likewise.
1700 * iconvdata/iso-2022-cn-ext.c (EMIT_SHIFT_TO_INIT): Likewise.
1701 * iconvdata/iso-2022-jp.c (EMIT_SHIFT_TO_INIT): Likewise.
1702 * iconvdata/iso-2022-kr.c (EMIT_SHIFT_TO_INIT): Likewise.
1703 * iconvdata/utf-7.c (EMIT_SHIFT_TO_INIT): Likewise.
1705 2001-05-21 Jakub Jelinek <jakub@redhat.com>
1707 * elf/rtld.c (dl_main): Compute l_map_end for the main program.
1708 * elf/dl-sym.c (_dl_sym): Don't check for l_addr == 0.
1709 If match == _dl_loaded, caller can still come from the main program.
1710 (_dl_vsym): Likewise.
1711 * elf/dl-open.c (dl_open_worker): Don't check for l_addr == 0.
1712 * elf/dl-error.c (_dl_signal_error): Change NULL objname into "".
1713 * elf/restest2.c: New test.
1714 * elf/Makefile (tests): Add restest2.
1715 (restest2, LDFLAGS-restest2): Add rules.
1717 2001-05-22 Ulrich Drepper <drepper@redhat.com>
1719 * intl/Makefile: Add a few more dependencies to avoid races in the
1722 2001-05-22 Andreas Jaeger <aj@suse.de>
1724 * sysdeps/ieee754/ldbl-128/s_log1pl.c: New file, contributed by
1725 Stephen L Moshier <moshier@mediaone.net>.
1727 2001-05-22 Martin Schwidefsky <schwidefsky@de.ibm.com>
1729 * sysdeps/s390/s390-32/backtrace.c: Make backtrace return the
1730 return addresses instead of the stack pointers.
1731 * sysdeps/s390/s390-64/backtrace.c: Likewise.
1733 2001-05-21 Jakub Jelinek <jakub@redhat.com>
1735 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Include
1736 bits/sigcontext.h instead of bits/sigstack.h.
1737 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Add
1738 multiple-inclusion guards.
1740 2001-05-21 Andreas Jaeger <aj@suse.de>
1742 * locale/programs/ld-collate.c (handle_ellipsis): Fix message.
1743 Patch by Philipp Thomas <pthomas@suse.de>.
1745 2001-05-17 Bruce Mitchener <bruce@cubik.org>
1747 * manual/arpg.texi: Spelling, misc fixes.
1748 * manual/arith.texi: Likewise.
1749 * manual/crypt.texi: Likewise.
1750 * manual/debug.texi: Likewise.
1751 * manual/getopt.texi: Likewise.
1752 * manual/intro.texi: Likewise.
1753 * manual/memory.texi: Likewise.
1754 * manual/nss.texi: Likewise.
1755 * manual/pattern.texi: Likewise.
1756 * manual/process.texi: Likewise.
1757 * manual/resource.texi: Likewise.
1758 * manual/search.texi: Likewise.
1759 * manual/setjmp.texi: Likewise.
1760 * manual/signal.texi: Likewise.
1761 * manual/socket.texi: Likewise.
1762 * manual/stdio.texi: Likewise.
1763 * manual/string.texi: Likewise.
1764 * manual/sysinfo.texi: Likewise.
1765 * manual/terminal.texi: Likewise.
1766 * manual/llio.texi: Document madvise().
1768 2001-05-20 Roland McGrath <roland@frob.com>
1770 * Makeconfig (sysdep-makeconfigs): Include any Makeconfig files
1771 found within $(add-ons) directories too.
1772 [linuxthreads add-on]: Move variable settings for linuxthreads
1773 to new file linuxthreads/Makeconfig.
1775 2001-05-20 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
1777 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_STD_AUXV):
1778 Define for linux >= 2.4.5 on powerpc.
1779 (__ASSUME_MMAP2_SYSCALL): Likewise.
1781 2001-05-19 Roland McGrath <roland@frob.com>
1783 * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Don't leak the
1784 result port when failing with ELOOP. Do the ELOOP check when
1785 following an absolute symlink target as well as relative.
1786 Remove #ifdef SYMLOOP_MAX conditional--it should always be defined.
1788 2001-05-18 Andreas Jaeger <aj@suse.de>
1790 * po/fr.po: Free software is "logiciel libre".
1791 Patch by Martin Michlmayr <tbm@cyrius.com>.
1793 * sysdeps/powerpc/elf/libc-start.c: Use __cxa_atexit.
1794 Patch by ekato@ees.hokudai.ac.jp, closes PR libc/2271.
1796 2001-05-17 David Mosberger <davidm@hpl.hp.com>
1798 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: New file.
1800 2001-05-17 Ulrich Drepper <drepper@redhat.com>
1802 * elf/dl-profile.c (_dl_mcount): Check whether state is
1803 GMON_PROF_ON before doing anything.
1805 2001-05-17 H.J. Lu <hjl@gnu.org>
1807 * elf/sprof.c (read_symbols): Move "++symtab" into the while loop.
1809 2001-05-17 Ulrich Drepper <drepper@redhat.com>
1811 * sysdeps/unix/sysv/linux/sigprocmask.c (__sigprocmask): Use
1812 CHECK_SIGSET_NULL_OK and not CHECK_SIGSET for all parameters.
1813 Reported by Mark Burton <markb@ordern.com>.
1815 2001-05-17 Jakub Jelinek <jakub@redhat.com>
1817 * elf/ldconfig.c (add_dir): Only warn about stat failure if
1819 (search_dir): Likewise.
1821 2001-05-17 Ulrich Drepper <drepper@redhat.com>
1823 * sysdeps/i386/i486/atomicity.h (exchange_and_add): Correct second
1824 parameter of xaddl. Patch by H . J . Lu <hjl@lucon.org>.
1826 2001-05-14 Bruno Haible <haible@clisp.cons.org>
1828 * iconvdata/iso-2022-cn-ext.c (BODY for FROM_LOOP): If SO is seen
1829 without previous announcement, reject it regularly, don't abort.
1831 2001-05-16 Ulrich Drepper <drepper@redhat.com>
1833 * math/tgmath.h: Fix handling of int parameters to binary and
1834 ternary functions. Reported by mitr@volny.cz.
1836 * math/test-tgmath.c: Add tests for calls with integer parameters.
1838 2001-05-15 Jakub Jelinek <jakub@redhat.com>
1840 * sunrpc/rpc_thread.c (rpc_default): Remove.
1841 (__rpc_thread_destroy): Use __libc_tsd_RPC_VARS_mem instead of
1843 (rpc_thread_multi, __rpc_thread_svc_fdset, __rpc_thread_createerr,
1844 __rpc_thread_svc_pollfd, __rpc_thread_svc_max_pollfd): Likewise.
1845 * sunrpc/auth_none.c (authnone_private): Fix a typo.
1847 2001-05-16 Martin Schwidefsky <schwidefsky@de.ibm.com>
1849 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Fix stack allocation.
1851 2001-05-16 Bruce Mitchener <bruce@cubik.org>
1853 * manual/llio.texi: Many grammar and typo fixes to the section on AIO.
1855 2001-05-15 Andreas Jaeger <aj@suse.de>
1857 * sysdeps/ieee754/ldbl-128/s_expm1l.c: New file, contributed by
1858 Stephen L Moshier <moshier@mediaone.net>.
1860 * sysdeps/i386/fpu/libm-test-ulps: Adjust for change.
1862 * math/libm-test.inc: Add comment with ToDo.
1864 * sysdeps/i386/fpu/e_expl.c: Rewritten to C and using a more
1865 accurate algorithm. Patch by Stephen L Moshier <moshier@mediaone.net>.
1867 * sysdeps/i386/fpu/e_expl.S: Removed.
1869 2001-05-14 Roland McGrath <roland@frob.com>
1871 * csu/Makefile ($(objpfx)g$(start-installed-name)): Turn this into a
1872 static pattern rule also that also covers
1873 $(objpx)g$(static-start-installed-name).
1874 [$(start-installed-name) != $(static-start-installed-name)]
1875 (extra-objs, omit-deps, install-lib): Add
1876 $(static-start-installed-name) and g$(static-start-installed-name).
1877 * sysdeps/mach/hurd/i386/Makefile: Don't add crt0.o to those here;
1878 just setting static-start-installed-name is now sufficient.
1879 (extra-objs): Add static-start.o here.
1880 (CFLAGS-initfini.s): Remove obsolete variable.
1881 * sysdeps/mach/hurd/i386/Makeconfig: New file.
1882 Define static-start-installed-name here.
1884 * Makeconfig: Include existing $(full_config_sysdirs:=/Makeconfig).
1885 * Make-dist (+sysdep-tsrcs): Look for Makeconfig files.
1887 * Makerules ($(+sysdir_pfx)sysd-Makefile): Remove this target and
1888 associated hair. Instead, just use $(wildcard ...) in the include.
1890 * configure.in (critic_missing, aux_missing): Collect in these vars
1891 the names of the missing programs, and include them in the error msgs.
1892 * configure: Regenerated.
1894 2001-05-14 Andreas Jaeger <aj@suse.de>
1896 * sysdeps/i386/fpu/libm-test-ulps: Adjust for new tests.
1898 * math/libm-test.inc (tanh_test): Add testcases for last tanh bug.
1900 2001-05-14 Stephen L Moshier <moshier@mediaone.net>
1902 * sysdeps/ieee754/ldbl-96/s_tanhl.c (__tanhl): Fix sign test.
1904 2001-05-11 Jakub Jelinek <jakub@redhat.com>
1906 * posix/regex.c (re_match_2_internal): Swap mbs_offset and csize
1907 as well if swapping strings.
1908 Make sure stop is not past end of second string.
1909 * posix/bug-regex4.c: New test.
1910 * posix/Makefile (tests): Add bug-regex4.
1912 2001-05-10 Andreas Jaeger <aj@suse.de>
1914 * manual/install.texi (Linux): Clarify that Linux 2.2 is minimal
1917 2001-05-12 Andreas Jaeger <aj@suse.de>
1919 * sysdeps/ieee754/dbl-64/s_sin.c: Include "math_private.h" for
1920 internal prototypes.
1921 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
1922 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
1923 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
1924 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
1925 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
1926 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
1927 * sysdeps/ieee754/dbl-64/branred.c: Likewise.
1929 * math/math_private.h: Add prototypes for internal functions of
1930 the IBM Accurate Mathematical Library.
1932 * sysdeps/ieee754/dbl-64/s_atan.c: Include "math.h" for
1934 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
1936 * sysdeps/ieee754/dbl-64/e_asin.c: Include "math_private.h" for
1937 internal prototypes.
1938 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
1939 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
1940 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
1941 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
1942 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
1943 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
1944 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
1945 * sysdeps/generic/e_rem_pio2l.c: Likewise.
1946 (__ieee754_rem_pio2l): Fix prototype.
1948 * math/math_private.h (__copysign): Add internal prototype.
1950 2001-05-11 Andreas Jaeger <aj@suse.de>
1952 * sysdeps/unix/sysv/linux/configure.in: Move binutils check to...
1953 * sysdeps/unix/sysv/linux/mips/configure.in: ...here. New file.
1955 2001-05-11 Andreas Jaeger <aj@suse.de>
1957 * sysdeps/unix/sysv/linux/configure.in: Check binutils version on
1960 * sysdeps/mips/rtld-ldscript.in: Removed unneeded binary output
1961 format directive. Patch by Steven J. Hill <sjhill@cotw.com>.
1963 2001-05-11 Roland McGrath <roland@frob.com>
1965 * sysdeps/mach/hurd/Makefile ($(link-rpcuserlibs)): Don't use
1966 $(build-module) here, since we don't need the full magilla.
1967 Just use $(build-module-helper) and append our special options.
1969 2001-05-09 Andreas Schwab <schwab@suse.de>
1971 * sysdeps/unix/readdir.c: Make sure we don't modify errno when we
1974 2001-05-07 H.J. Lu <hjl@gnu.org>
1976 * elf/ldconfig.c (dir_entry): Add ino and dev.
1977 (add_single_dir): Compare ino and dev to check if 2 directory
1978 paths are the same or not. Free entry->path for duplicates.
1979 (add_dir): Initialize ino and dev for entry.
1980 (search_dir): Handle symlink to directory.
1982 2001-05-07 Andreas Jaeger <aj@suse.de>
1984 * sysdeps/i386/fpu/libm-test-ulps: Add ulps for new exp tests.
1986 * math/libm-test.inc (exp_test): Add some more tests.
1987 (pow_test): Run double only test also for long double.
1989 * math/test-ldouble.c (TEST_LDOUBLE): Define.
1990 * math/test-ildoubl.c (TEST_LDOUBLE): Likewise.
1992 * sysdeps/generic/bits/confname.h: Remove extra comma at end of
1994 Closes PR libc/2240.
1996 * scripts/config.guess: Imported from gnu.org.
1997 * scripts/config.sub: Likewise.
1999 2001-05-05 Jakub Jelinek <jakub@redhat.com>
2001 * include/features.h (__USE_EXTERN_INLINES): Don't define if
2002 __NO_INLINE__ is defined.
2003 * ctype/ctype.h (tolower, toupper): Change the guard condition to
2004 __USE_EXTERN_INLINES check only.
2005 * stdlib/stdlib.h (strtod, ...): Likewise.
2006 * wcsmbs/wchar.h (mbrlen): Likewise.
2007 * string/string.h: Only include bits/string.h and bits/string2.h
2008 if __NO_INLINE__ is not defined.
2010 2001-05-07 Andreas Jaeger <aj@suse.de>
2012 * debug/Makefile ($(objpfx)xtrace): Substitute @SLIBDIR@ instead
2015 2001-05-04 H.J. Lu <hjl@gnu.org>
2017 * malloc/Makefile ($(objpfx)memusage): Substitute @SLIBDIR@
2020 2001-05-06 Andreas Jaeger <aj@suse.de>
2022 * sysdeps/i386/fpu/e_fmodl.c: New, rewrite of e_fmodl.S.
2023 * sysdeps/i386/fpu/e_fmodl.S: Removed.
2024 * sysdeps/i386/fpu/e_atan2l.c: New, rewrite of e_atan2l.S.
2025 * sysdeps/i386/fpu/e_atan2l.S: Removed.
2026 * sysdeps/i386/fpu/e_acosl.c: New, rewrite of e_acos.S.
2027 * sysdeps/i386/fpu/s_atanl.c: New, rewrite of e_atanl.S.
2028 * sysdeps/i386/fpu/e_sqrtl.c: New, rewrite of e_sqrt.S.
2029 * sysdeps/i386/fpu/e_acosl.S: Removed.
2030 * sysdeps/i386/fpu/s_atanl.S: Removed.
2031 * sysdeps/i386/fpu/e_sqrtl.S: Removed.
2033 2001-05-05 Mark Kettenis <kettenis@gnu.org>
2035 * sysdeps/mach/hurd/bits/environments.h: Add comment from
2036 sysdeps/generic/bits/environments.h. Define _POSIX_V6_* values.
2038 2001-04-30 Jakub Jelinek <jakub@redhat.com>
2040 * posix/confstr.c (confstr) [_CS_V6_WIDTH_RESTRICTED_ENVS]: Move so
2041 that _CS_LFS_CFLAGS can fall through to the empty returned string
2042 case. Add FALLTHROUGH comment.
2044 2001-04-29 Ralf Baechle <ralf@gnu.org>
2046 * sysdeps/unix/sysv/linux/mips/bits/sem.h: Make structure
2047 definitions match the kernel definitions.
2048 * sysdeps/unix/sysv/linux/mips/bits/ipc.h: Likewise.
2049 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Likewise.
2051 2001-04-29 Ben Collins <bcollins@debian.org>
2053 * sysdeps/sparc/sparc64/dl-machine.h: Fix multiline strings
2055 * sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
2056 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
2057 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
2058 * sysdeps/sparc/sparc64/soft-fp/qp_div.c: Likewise.
2059 * sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
2060 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
2061 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
2062 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
2063 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
2064 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
2065 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
2066 * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
2067 * sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
2068 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
2069 * sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
2070 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
2071 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
2072 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
2073 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
2074 * sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c: Likewise.
2075 * sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
2076 * sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
2077 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
2079 2001-04-29 Andreas Schwab <schwab@suse.de>
2081 * sysdeps/unix/sysv/linux/kernel-features.h: Fix missing backslash
2084 2001-04-29 Andreas Jaeger <aj@suse.de>
2086 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
2087 Define for Arm, PowerPC and SH if kernel is 2.4.4 or newer.
2089 * sysdeps/unix/sysv/linux/bits/socket.h (PF_WANPIPE): New, from
2091 (AF_WANPIPE): Likewise.
2094 * sysdeps/unix/sysv/linux/alpha/bits/socket.h: Add same changes as
2095 for Linux generic version.
2096 * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h: Likewise.
2097 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
2098 * sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise.
2099 * sysdeps/unix/sysv/linux/ia64/bits/socket.h: Likewise.
2101 * sysdeps/gnu/netinet/tcp.h (TCP_QUICKACK): New.
2103 2001-04-27 Ulrich Drepper <drepper@redhat.com>
2105 * nis/nss-nis.h: Correct test for invalid error number.
2106 * nis/nss-nisplus.h: Likewise.
2108 * nis/Makefile (libnss_compat-rountines): Add nss-nisplus.
2110 2001-04-26 Ulrich Drepper <drepper@redhat.com>
2112 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add getunwind.
2114 * string/strcoll.c: Fix two memory allocation problems.
2115 * string/Makefile (tests): Add bug-strcoll1.
2116 * string/bug-strcoll1.c: New file.
2118 * malloc/mcheck.c (mcheck): Call malloc once before setting the
2119 hooks to allow the internal check hooks to be set up if necessary.
2121 * nis/nss-nis.h: Move yperr2nss_tab definition into separate file
2122 and rename to __yperr2nss_tab. Change YPERR_COUNT into variable
2124 * nis/nss-nis.c: New file.
2125 * nis/nss-nisplus.h: Move niserr2nss_tab definition into separate file
2126 and rename to __niserr2nss_tab. Change NISERR_COUNT into variable
2128 * nis/nss-nisplus.c: New file.
2129 * nis/Makefile (libnss_compat-routines): Add nss-nis.
2130 (libnss_nis-routines): Likewise.
2131 (libnss_nisplus-routines): Add nss-nisplus.
2133 * nis/nss_nisplus/nisplus-alias.c: Remove unnecessary initializations.
2134 * nis/nss_nisplus/nisplus-ethers.c: Likewise.
2135 * nis/nss_nisplus/nisplus-grp.c: Likewise.
2136 * nis/nss_nisplus/nisplus-hosts.c: Likewise.
2137 * nis/nss_nisplus/nisplus-network.c: Likewise.
2138 * nis/nss_nisplus/nisplus-proto.c: Likewise.
2139 * nis/nss_nisplus/nisplus-pwd.c: Likewise.
2140 * nis/nss_nisplus/nisplus-rpc.c: Likewise.
2141 * nis/nss_nisplus/nisplus-service.c: Likewise.
2142 * nis/nss_nisplus/nisplus-spwd.c: Likewise.
2143 * nis/nss_nis/nis-alias.c: Likewise.
2144 * nis/nss_nis/nis-ethers.c: Likewise.
2145 * nis/nss_nis/nis-grp.c: Likewise.
2146 * nis/nss_nis/nis-network.c: Likewise.
2147 * nis/nss_nis/nis-proto.c: Likewise.
2148 * nis/nss_nis/nis-pwd.c: Likewise.
2149 * nis/nss_nis/nis-spwd.c: Likewise.
2150 * nis/nss_compat/compat-grp.c: Likewise.
2151 * nis/nss_compat/compat-initgroups.c: Likewise.
2152 * nis/nss_compat/compat-pwd.c: Likewise.
2153 * nis/nss_compat/compat-spwd.c: Likewise.
2155 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Some more
2156 optimizations. Patch by Jakub Jelinek <jakub@redhat.com>.
2158 2001-04-26 Andreas Jaeger <aj@suse.de>
2160 * po/zh_TW.po: Update.
2161 Patch by Tung-Han Hsieh <thhsieh@tlug.sinica.edu.tw>.
2163 2001-04-25 Ulrich Drepper <drepper@redhat.com>
2165 * malloc/malloc.c: Allow MALLOC_ALIGNMENT to be defined on the
2166 compiler command line.
2167 * sysdeps/hppa/Makefile: Add -DMALLOC_ALIGNMENT=16 to compiler
2168 command line for malloc.c.
2170 2001-04-25 Jakub Jelinek <jakub@redhat.com>
2172 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/time.h: Move to...
2173 * sysdeps/unix/sysv/linux/sparc/bits/time.h: ...here.
2174 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/bits/time.h: Remove.
2175 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/socket.h: Move to...
2176 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: ...here. Adjust
2177 struct msghdr for __WORDSIZE == 32.
2178 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/statvfs.h: Move to...
2179 * sysdeps/unix/sysv/linux/sparc/bits/statvfs.h: ...here. Adjust
2180 for __WORDSIZE == 32.
2181 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/siginfo.h: Remove.
2182 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/get_clockfreq.c: New
2184 * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S (__libc_siglongjmp):
2185 Rename from longjmp, make longjmp weak alias to it.
2187 2001-04-24 David S. Miller <davem@redhat.com>
2189 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: New file.
2191 2001-04-25 Matthew Wilcox <willy@ldl.fc.hp.com>
2193 * sysdeps/hppa/stackinfo.h: New file.
2194 * sysdeps/unix/sysv/linux/hppa/getdents64.c: New file.
2195 * sysdeps/unix/sysv/linux/hppa/mmap64.c: New file.
2196 * sysdeps/unix/sysv/linux/hppa/bits/resource.h: New file.
2197 * sysdeps/unix/sysv/linux/kernel-features.h: Add descriptions
2198 of PA kernel features.
2200 2001-04-25 Ulrich Drepper <drepper@redhat.com>
2202 * locale/programs/localedef.c (main): Always set a file name for
2204 * locale/programs/locfile.c (locfile_read): filename is allowed to
2207 2001-04-12 Paul Bame <paul_bame@hp.com>
2209 * sysdeps/hppa/fpu/fclrexcpt.c: Clear the exception flags, not the
2212 2001-04-24 Ulrich Drepper <drepper@redhat.com>
2214 * sysdeps/generic/bits/environments.h (_POSIX_V6_LPBIG_OFFBIG,
2215 _XBS5_LPBIG_OFFBIG): Define to -1.
2218 * sysdeps/generic/bits/confname.h: Add _CS_V6_WIDTH_RESTRICTED_ENVS.
2219 * posix/confstr.c: Handle _CS_V6_WIDTH_RESTRICTED_ENVS.
2220 * posix/getconf.c: Handle _POSIX_V6_WIDTH_RESTRICTED_ENVS.
2221 * posix/tst-getconf.sh: Add _POSIX_V6_WIDTH_RESTRICTED_ENVS.
2223 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9b/Implies: New file.
2224 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9b/bits/time.h: Removed.
2226 2001-03-21 Alan Modra <alan@one.net.au>
2228 * sysdeps/hppa/dl-machine.h (RTLD_START): Set up dp with DT_PLTGOT
2229 value from application so that constructors in non-PIC libs work.
2231 2000-12-13 Jes Sorensen <jes@linuxcare.com>
2233 * sysdeps/hppa/dl-machine.h (RTLD_START): _dl_init now returns a
2234 function pointer, hence load the jump address and gp from the
2235 function pointer before jumping.
2237 2001-04-24 Andreas Jaeger <aj@suse.de>
2239 * sysdeps/generic/send.c (__send): Return ssize_t.
2240 * sysdeps/mach/hurd/send.c (__send): Likewise.
2241 * sysdeps/mach/hurd/recv.c (recv): Likewise.
2242 * sysdeps/mach/hurd/sendto.c (sendto): Likewise.
2243 * sysdeps/generic/sendto.c (sendto): Likewise.
2244 * sysdeps/generic/recvmsg.c (recvmsg): Likewise.
2245 * sysdeps/mach/hurd/recvfrom.c (recvfrom): Likewise.
2246 * sysdeps/generic/recvfrom.c (recvfrom): Likewise.
2247 * sysdeps/generic/sendmsg.c (sendmsg): Likewise.
2249 * socket/sys/socket.h: send* and recv* return ssize_t.
2251 * include/sys/socket.h: send returns ssize_t.
2253 * sysdeps/i386/fpu_control.h: Fix comments.
2255 2001-04-24 Ulrich Drepper <drepper@redhat.com>
2257 * sysdeps/ia64/Dist: Add hp-timing.c.
2258 * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: Add ucontext_i.h.
2259 * posix/Makefile (distribute): Add tst-getconf.sh.
2260 * po/Makefile (distribute): Add $(BROKEN_LINGUAS:=.po).
2262 2001-04-23 Ulrich Drepper <drepper@redhat.com>
2264 * sysdeps/ia64/Makefile [subdir=csu] (sysdep_routines): Add hp-timing.
2265 * sysdeps/ia64/Versions: Add _dl_cpuclock_offset for ld in 2.2.3.
2266 * sysdeps/ia64/hp-timing.c: New file.
2267 * sysdeps/ia64/hp-timing.h: New file.
2268 * sysdeps/unix/sysv/linux/ia64/bits/time.h: Add definitions for
2269 CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID.
2271 * sysdeps/generic/clock_getcpuclockid.c: Make function generic, test
2272 using #ifdef whether the clock is available.
2273 * sysdeps/unix/i386/clock_getcpuclockid.c: Not needed anymore.
2275 * sysdeps/generic/dl-sysdep.c: Initialize _dl_cpuclock_offset to move
2276 it into data section.
2278 * sysdeps/unix/i386/i586/clock_getres.c: Removed.
2279 * sysdeps/unix/i386/i586/clock_gettime.c: Removed.
2280 * sysdeps/unix/i386/i586/clock_nanosleep.c: Removed.
2281 * sysdeps/unix/i386/i586/clock_settime.c: Removed.
2282 * sysdeps/unix/i386/i586/cpuclock-init.h: Removed.
2283 * sysdeps/generic/cpuclock-init.h: Removed.
2284 * sysdeps/unix/i386/i686/Implies: Removed.
2285 * sysdeps/unix/i386/i686/tempname.c: Removed.
2286 * sysdeps/i386/i686/Versions: New file.
2287 * sysdeps/unix/i386/i586/Versions: Removed.
2289 * sysdeps/posix/clock_getres.c: If HP_TIMING_AVAIL is nonzero handle
2290 CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID.
2291 * sysdeps/unix/clock_gettime.c: Likewise.
2292 * sysdeps/unix/clock_nanosleep.c: Likewise.
2293 * sysdeps/unix/clock_settime.c: Likewise.
2294 * sysdeps/posix/tempname.c: Is HP_TIMING_AVAIL is nonzero define
2295 RANDOM_BITS use CPU clock.
2297 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/bits/time.h: New file.
2298 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9b/bits/time.h: New file.
2299 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/time.h: New file.
2300 * sysdeps/sparc/Versions: New file.
2302 * elf/dl-support.c: Don't use cpuclock-init.h definitions, use
2303 hp-timing.h definitions.
2304 * sysdeps/generic/dl-sysdep.c: Likewise.
2306 * include/libc-internal.h: Include hp-timing.h. Use hp_timing_t in
2307 __get_clockfreq prototype.
2309 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
2310 Use hp_timing_t type.
2311 * sysdeps/generic/get_clockfreq.c (__get_clockfreq): Likewise.
2313 * sysdeps/unix/sysv/linux/ia64/get_clockfreq.c: New file.
2315 * sysdeps/posix/pathconf.c (__pathconf): For _PC_ASYNC_IO test
2316 whether named file is a regular file or a block device.
2317 * sysdeps/posix/fpathconf.c (__fpathconf): Likewise.
2319 2001-04-23 Andreas Jaeger <aj@suse.de>
2321 * nscd/nscd.h: Add noreturn attribute for start_threads.
2323 2001-04-22 Ulrich Drepper <drepper@redhat.com>
2325 * posix/getconf.c: Fix names of XBS5 LFS test variables.
2326 Add missing configuration variables from XPG6.
2327 * posix/tst-getconf.c: New file.
2328 * posix/Makefile (generated): Add tst-getconf.out.
2329 (tests): Add ($objpfx)tst-getconf.out.
2330 Add rule to run tst-getconf.sh.
2331 * sysdeps/generic/bits/confname.h: Add missing _PC_ and _SC_ values
2333 * sysdeps/posix/fpathconf.c: Add handling of _PC_ALLOC_SIZE_MIN and
2335 * sysdeps/posix/pathconf.c: Likewise.
2336 * sysdeps/posix/sysconf.c: Correct spelling of _SC_MULTI_PROCESS
2337 and _SC_SYMLOOP_MAX.
2339 2001-04-22 Philip Blundell <philb@gnu.org>
2341 * sysdeps/arm/fpu/feenablxcpt.c: New file.
2342 * sysdeps/arm/fpu/fedisablxcpt.c: New file.
2343 * sysdeps/arm/fpu/fegetexcpt.c: New file.
2345 2001-04-22 Philip Blundell <philb@gnu.org>
2347 * sysdeps/unix/sysv/linux/arm/sys/user.h (struct user_fpregs):
2348 Renamed from struct user_fp.
2349 (struct user_regs): New.
2350 (struct user): Use struct user_regs rather than struct pt_regs to
2351 avoid dependency on asm/ptrace.h. Use struct user_fpregs in place
2352 of struct user_fp and struct user_fp_struct.
2353 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h: Include sys/procfs.h
2356 2001-04-22 Philip Blundell <philb@gnu.org>
2358 * sysdeps/unix/sysv/linux/arm/sys/elf.h: Move contents to
2359 sys/procfs.h, and tell the user to include that file instead.
2360 * sysdeps/unix/sysv/linux/arm/sys/procfs.h: Remove old cruft
2361 surrounded with #if 0.
2362 (elf_greg_t, ELF_NGREG, elf_gregset_t, elf_fpregset_t): Moved here
2364 (prgregset_t, prfpregset_t): Define in terms of elf_gregset_t and
2365 elf_fpregset_t respectively.
2367 2001-04-22 Philip Blundell <philb@gnu.org>
2369 * sysdeps/unix/sysv/linux/arm/register-dump.h: Also print the
2370 address that faulted.
2372 2001-04-21 Ulrich Drepper <drepper@redhat.com>
2374 * sysdeps/generic/bits/confname.h: Add _SC_V6_* and _CS_POSIX_V6_*
2376 * sysdeps/generic/bits/environments.h: Define _POSIX_V6_* values.
2377 * posix/confstr.c: Handle _CS_POSIX_V6_* values.
2378 * posix/getconf.c: Handle _CS_POSIX_V6_* and _SC_V6_* values.
2379 * sysdeps/posix/sysconf.c: Handle _SC_V6_* values.
2381 * sysdeps/powerpc/fpu/libm-test-ulps: Add deltas for atan2f.
2382 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
2383 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
2384 * sysdeps/mips/fpu/libm-test-ulps: Likewise.
2386 2001-04-21 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2388 * sysdeps/unix/sysv/linux/powerpc/mmap64.c: Correct check for invalid
2391 2001-04-21 Ulrich Drepper <drepper@redhat.com>
2393 * posix/getopt.h: Treat __cplusplus like __STDC__.
2395 2001-04-20 John S. Marvin <jsm@fc.hp.com>
2397 * sysdeps/unix/sysv/linux/hppa/clone.S: Fix clone system call
2400 2001-04-20 Richard Hirst <rhirst@linuxcare.com>
2402 * elf/elf.h: Corrected R_PARISC_DIR14R (should be 6, not 5),
2403 and added R_PARISC_DPREL21L and R_PARISC_DPREL14R for modutils.
2405 * sysdeps/unix/sysv/linux/hppa/syscalls.list: Removed ptrace
2406 entry so the ptrace.c wrapper is used.
2408 2001-04-20 Alan Modra <amodra@one.net.au>
2410 * sysdeps/hppa/dl-lookupcfg.h (_dl_function_address): Prototype.
2411 (DL_FUNCTION_ADDRESS): Define.
2412 (DL_DT_INIT_ADDRESS): Define.
2413 (DL_DT_FINI_ADDRESS): Define.
2414 * sysdeps/hppa/Versions: Add _dl_function_address.
2415 * sysdeps/hppa/dl-machine.h (ELF_MACHINE_START_ADDRESS): Define.
2416 * sysdeps/hppa/dl-symaddr.c (_dl_start_address): Rename to
2417 _dl_function_address.
2419 2001-04-21 Andreas Jaeger <aj@suse.de>
2421 * rt/aio_misc.c (handle_fildes_io): Add noreturn attribute.
2422 * resolv/gai_misc.c (handle_requests): Likewise.
2423 * malloc/obstack.c (print_and_abort): Likewise.
2424 * malloc/mcheck.c (mabort): Likewise.
2426 * sysdeps/unix/i386/i586/clock_settime.c: Include
2427 "libc-internal.h" for __get_clockfreq declaration.
2429 2001-04-21 Ulrich Drepper <drepper@redhat.com>
2431 * elf/dl-support.c: Include cpuclock-init.h. Use CPUCLOCK_VARDEF and
2432 CPUCLOCK_INIT if defined.
2433 * sysdeps/generic/dl-sysdep.c: Likewise.
2434 * sysdeps/generic/cpuclock-init.h: New file.
2435 * sysdeps/unix/i386/i586/cpuclock-init.h: New file.
2436 * sysdeps/unix/i386/i586/Versions: New file.
2437 * sysdeps/unix/i386/i586/clock_settime.c: New file.
2438 * sysdeps/unix/i386/i586/clock_gettime.c: Handle thread CPU clock
2439 separately by calling __pthread_clock_gettime if this function is
2440 available. Subtract offset from tsc value before computing time value.
2442 2001-04-20 Ulrich Drepper <drepper@redhat.com>
2444 * iconv/iconv_prog.c (print_known_names): If printing goes not to
2445 a tty print in a more machine-friendly way.
2447 * sysdeps/ieee754/ldbl-128/e_asinl.c: New file.
2448 Contributed by Stephen L Moshier <moshier@mediaone.net>.
2450 2001-04-20 Andreas Jaeger <aj@suse.de>
2452 * intl/Makefile (tests): Reorder conditions, tst-gettext needs msgfmt.
2454 2001-04-20 Andreas Schwab <schwab@suse.de>
2456 * sysdeps/m68k/fpu/libm-test-ulps: Update.
2458 2001-04-19 Alan Modra <amodra@one.net.au>
2460 * Makerules (libc_pic.os): Add $(LDFLAGS-c_pic.os).
2461 * sysdeps/hppa/Makefile (LDFLAGS-c_pic.os): Define.
2462 (CFLAGS-.os): Remove.
2464 * sysdeps/unix/sysv/linux/hppa/sysdep.h (CALL_MCOUNT): Update comment.
2466 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h (NGREG, NFPREG,
2467 gregset): Correct for new kernel definitions.
2469 2001-04-19 Alan Modra <alan@linuxcare.com.au>
2471 * sysdeps/hppa/elf/initfini.c: Change dlt reg save to r3 and
2472 generate unwind info by hand.
2474 2001-04-19 Ulrich Drepper <drepper@redhat.com>
2476 * sysdeps/unix/sysv/linux/powerpc/mmap64.c (__mmap64): Optimize a bit.
2478 * configure.in: Correct regular expression for msgfmt.
2479 Patch by Bruno Haible <haible@ilog.fr>.
2481 2001-04-19 Andreas Jaeger <aj@suse.de>
2483 * po/el.po: Add comment explaining what's broken.
2485 * po/Makefile (BROKEN_LINGUAS): New.
2486 (ALL_LINGUAS): Don't add broken languages.
2488 2001-04-19 Roland McGrath <roland@frob.com>
2490 * sysdeps/mach/hurd/mlock.c: New file.
2491 * sysdeps/mach/hurd/munlock.c: New file.
2492 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_MEMLOCK_RANGE): Define it.
2494 * misc/Makefile (routines): Add mlock munlock mlockall munlockall.
2495 * sysdeps/generic/mlock.c: New file.
2496 * sysdeps/generic/munlock.c: New file.
2497 * sysdeps/generic/mlockall.c: New file.
2498 * sysdeps/generic/munlockall.c: New file.
2499 * sysdeps/generic/bits/mman.h (MCL_CURRENT, MCL_FUTURE): New macros.
2500 * sysdeps/unix/sysv/linux/syscalls.list (mlock, munlock,
2501 mlockall, munlockall): Change caller field to - from EXTRA.
2502 Don't use __ names; not used (and not declared in include/sys/mman.h).
2504 * hurd/privports.c (__get_privileged_ports): Renamed with __.
2505 Use __ names for calls we make.
2506 (get_privileged_ports): Add alias.
2507 * hurd/hurd.h: Declare it with the __ name.
2508 * sysdeps/mach/hurd/reboot.c (reboot): Use __get_privileged_ports.
2509 * sysdeps/mach/hurd/adjtime.c (__adjtime): Likewise.
2510 * sysdeps/mach/hurd/settimeofday.c (__settimeofday): Likewise.
2512 * hurd/hurdsig.c (write_corefile): Check RLIMIT_CORE limit and do
2513 nothing if it's zero.
2515 2001-04-19 Matthew Wilcox <willy@ldl.fc.hp.com>
2517 * sysdeps/unix/sysv/linux/hppa/sysdep.h (INLINE_SYSCALL):
2518 Change to return a signed result for compatibility with other
2519 architectures, and correctness.
2521 2001-04-19 Ulrich Drepper <drepper@redhat.com>
2523 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_32BITUIDS):
2524 HPPA always had them. Patch by Matthew Wilcox <matthew@wil.cx>.
2526 2001-04-19 Andreas Jaeger <aj@suse.de>
2528 * configure.in: Require gettext 0.10.36 or newer.
2530 * manual/install.texi (Tools for Compilation): Mention gettext 0.10.36.
2532 * po/zh_TW.po: Remove extraneous backslashes.
2534 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Remove unused
2537 2001-04-18 Jakub Jelinek <jakub@redhat.com>
2539 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Update.
2540 * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c: New file.
2541 * sysdeps/unix/sysv/linux/sparc/sparc64/swapcontext.c: New file.
2542 * sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S (__setcontext):
2543 Copy first word of uc_sigmask into __uc_sigmask.
2544 * sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S (__getcontext):
2545 Save uc_link around trap. Copy __uc_sigmask into first word of
2546 uc_sigmask, clear the rest. Make sure setcontext to the created
2547 context doesn't do this though.
2548 * sysdeps/unix/sysv/linux/sparc/sparc64/ucontext_i.h: New file.
2549 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (ucontext_t): Add
2550 uc_stack and uc_sigmask, rename old uc_sigmask to __uc_sigmask in the
2551 64bit version, make uc_sigmask __sigset_t in the 32bit version.
2553 2001-04-19 Andreas Jaeger <aj@suse.de>
2555 * sysdeps/unix/sysv/linux/hppa/umount.c: Fix typos in last patch.
2557 * rt/Makefile (otherlibs): Added for static NSS.
2559 * glibcbug.in (BUGGLIBC): Send to new alias.
2561 2001-04-02 Andreas Schwab <schwab@suse.de>
2563 * Makerules (build-module): Make sure exit codes get checked
2564 properly and remove unnecessary slashes.
2566 2001-04-17 Ulrich Drepper <drepper@redhat.com>
2568 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
2569 Handle kernels which report only three digits after the decimal point.
2570 Reported by Van Okamura <van.okamura@oracle.com>.
2572 * sysdeps/alpha/fpu/libm-test-ulps: Adjust error values for atan2f.
2574 2001-04-17 David S. Miller <davem@redhat.com>
2576 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Update for new atan2 tests.
2577 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
2579 2001-04-17 Jakub Jelinek <jakub@redhat.com>
2581 * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Make sure
2582 desired exceptions are raised for exceptional values.
2583 * math/libm-test.inc (acosh_test, atan_test, atan2_test, cacos_test,
2584 cacosh_test, casin_test, casinh_test, catan_test, catanh_test,
2585 clog_test, log_test, log1p_test, tan_test): Increase precision of
2586 expected values to satisfy ldbl-128.
2587 * sysdeps/alpha/fpu/libm-test-ulps: Adjust accordingly.
2588 * sysdeps/arm/libm-test-ulps: Likewise.
2589 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
2590 * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
2591 * sysdeps/m68k/fpu/libm-test-ulps: Likewise.
2592 * sysdeps/mips/fpu/libm-test-ulps: Likewise.
2593 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
2594 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
2595 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
2596 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
2597 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
2599 2001-04-17 Andreas Jaeger <aj@suse.de>
2601 * configure.in: Move test for critical programs up.
2603 2001-04-16 Stephen L Moshier <moshier@mediaone.net>
2605 * sysdeps/ieee754/flt-32/e_asinf.c (pio2_hi, pio2_lo, pio4_hi):
2607 (pSx, qSx): Replace by shorter approximation.
2608 Use f suffix on float constants.
2610 2001-04-16 Ulrich Drepper <drepper@redhat.com>
2612 * sysdeps/ieee754/ldbl-128/k_tanl.c: New file.
2613 Contributed by Stephen L Moshier <moshier@mediaone.net>.
2615 * string/string.h: Replace const in attribute list with __const__.
2617 2001-04-16 Roland McGrath <roland@frob.com>
2619 * grp/initgroups.c (initgroups) [NGROUPS_MAX != 0]: Always use sysconf
2620 instead of the constant NGROUPS_MAX. That way, the limit can be
2621 raised in the kernel configuration without having to recompile libc.
2623 * sysdeps/posix/euidaccess.c: Don't #include <limits.h> or try to
2624 define NGROUPS_MAX; we don't use it here.
2626 2001-04-16 Andreas Jaeger <aj@suse.de>
2628 * math/libm-test.inc (atan2_test): Add more testcases.
2630 * iconv/gconv_db.c: Include gconv_charset.h for
2631 __gconv_lookup_alias prototype.
2633 2001-04-13 Ulrich Drepper <drepper@redhat.com>
2635 * sysdeps/ieee754/ldbl-128/s_atanl.c: New file.
2636 Contributed by Stephen L Moshier <moshier@mediaone.net>.
2638 2001-04-13 Jes Sorensen <jes@linuxcare.com>
2640 * intl/tst-codeset.c: Include string.h to get prototype for strcmp().
2642 2001-04-13 Jes Sorensen <jes@linuxcare.com>
2644 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Add __pad0 to
2645 explicitly pad struct siginfo instead of relying on compiler padding.
2647 2001-04-12 Ulrich Drepper <drepper@redhat.com>
2649 * sysdeps/ia64/Dist: Add elf/entry.h.
2651 * iconvdata/Makefile (distribute): Add TESTS2.
2653 2001-04-13 Jakub Jelinek <jakub@redhat.com>
2655 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_load_address):
2656 Calculate load address differently.
2658 2001-04-12 Bruno Haible <haible@clisp.cons.org>
2660 * iconvdata/TESTS2: New file.
2661 * iconvdata/run-iconv-test.sh: Also run tests from TESTS2.
2662 * iconvdata/testdata/alfabeta..UTF-8: New file.
2663 * iconvdata/testdata/alfabeta..UTF-16.BE: New file.
2664 * iconvdata/testdata/alfabeta..UTF-16.LE: New file.
2665 * iconvdata/testdata/alfabeta..UTF-32.BE: New file.
2666 * iconvdata/testdata/alfabeta..UTF-32.LE: New file.
2668 2001-04-11 Bruno Haible <haible@clisp.cons.org>
2670 * iconvdata/utf-32.c: New file.
2671 * iconvdata/gconv-modules: Add entries for UTF-32, UTF-32LE, UTF-32BE.
2672 * iconvdata/Makefile (modules): Add UTF-32.
2673 (distribute): Add utf-32.c.
2675 2001-04-11 Bruno Haible <haible@clisp.cons.org>
2677 * iconvdata/utf-16.c (PREPARE_LOOP): Initialize 'swap' after possibly
2678 changing it in the state. After incrementing 'inptr', store it back.
2679 * iconvdata/unicode.c (PREPARE_LOOP): After incrementing 'inptr',
2682 2001-04-11 Bruno Haible <haible@clisp.cons.org>
2684 * iconvdata/utf-16.c (gconv_init): Use MAX_NEEDED_FROM, not
2687 2001-04-11 David Mosberger <davidm@hpl.hp.com>
2689 * sysdeps/ia64/htonl.S: Drop superfluous "alloc".
2690 * sysdeps/ia64/htons.S: Likewise.
2692 * sysdeps/ia64/memset.S: Add unwind directives.
2693 * sysdeps/ia64/strncpy.S: Likewise.
2694 * sysdeps/ia64/strcat.S: Likewise.
2696 * sysdeps/ia64/memccpy.S: Add unwind directives. Drop superfluous
2698 * sysdeps/ia64/strchr.S: Likewise.
2699 * sysdeps/ia64/memmove.S: Likewise.
2700 * sysdeps/ia64/memcpy.S: Likewise.
2701 * sysdeps/ia64/memcmp.S: Likewise.
2702 * sysdeps/ia64/memchr.S: Likewise.
2703 * sysdeps/ia64/strcmp.S: Likewise.
2704 * sysdeps/ia64/strlen.S: Likewise.
2705 * sysdeps/ia64/strcpy.S: Likewise.
2706 * sysdeps/ia64/strncmp.S: Likewise.
2708 2001-04-11 Jakub Jelinek <jakub@redhat.com>
2710 * wcsmbs/wchar.h (fgetwc, getwc, getwchar, fputwc, putwc, putwchar,
2711 fgetws, fputws, ungetwc, getwc_unlocked, getwchar_unlocked,
2712 fgetwc_unlocked, fputwc_unlocked, putwc_unlocked, putwchar_unlocked,
2713 fgetws_unlocked, fputws_unlocked, wcsftime): Add __THROW.
2715 2001-04-11 Andreas Jaeger <aj@suse.de>
2717 * sysdeps/mips/elf/start.S [__ASSEMBLY__]: Define it.
2719 2001-04-11 Andreas Schwab <schwab@suse.de>
2721 * sysdeps/m68k/fpu/libm-test-ulps: Adjusted.
2723 2001-04-11 Ulrich Drepper <drepper@redhat.com>
2725 * sysdeps/arm/stackinfo.h: New file.
2727 2001-04-08 Thorsten Kukuk <kukuk@suse.de>
2729 * sunrpc/rpc_main.c: If we compile RPC thread safe, allow
2730 rpcgen to generate thread safe code.
2732 2001-04-10 Andreas Jaeger <aj@suse.de>
2734 * math/test-fenv.c (initial_tests): Protect FE_TONEAREST declaration.
2736 2001-04-10 Ulrich Drepper <drepper@redhat.com>
2738 * elf/dl-minimal.c (__assert_fail): Change error string. It's
2739 most of the time no bug in ld.so.
2740 (__assert_perror_fail): Likewise.
2742 2001-04-11 Hans-Peter Nilsson <hp@axis.com>
2744 * sysdeps/generic/bits/fenv.h (fexcept_t): Change default type
2745 from struct to unsigned int.
2747 2001-04-10 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2749 * elf/elf.h (AT_DCACHEBSIZE, AT_ICACHEBSIZE, AT_UCACHEBSIZE,
2750 AT_IGNOREPPC): New defines.
2751 * sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Print them.
2752 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_STD_AUXV):
2753 Define for newer powerpc kernels.
2754 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Use the standard
2755 DL_FIND_ARG_COMPONENTS if __ASSUME_STD_AUXV is defined.
2757 2000-4-10 kaz Kojima <kkojima@rr.iij4u.or.jp>
2759 * sysdeps/sh/stackinfo.h: New file.
2761 2001-04-10 Ulrich Drepper <drepper@redhat.com>
2763 * locale/tst-C-locale.c (run_test): Add tests for locale objects.
2764 * locale/newlocale.c (__newlocale): Correct setting __ctype_b,
2765 __ctype_tolower, and __ctype_toupper elements.
2767 * ctype/ctype_l.c: Fix definitions of __tolower_l and __toupper_l.
2768 Reported by Konstantin Osipov <rabid@spylog.ru>.
2770 * sysdeps/i386/fpu/libm-test-ulps: Add deltas for tgamma to help
2773 2001-04-10 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2775 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: New file.
2776 * sysdeps/unix/sysv/linux/powerpc/Dist: Add sys/ptrace.h.
2777 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Delete wrong stuff.
2778 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Correct typedefs.
2780 2001-04-10 Ulrich Drepper <drepper@redhat.com>
2782 * elf/dl-deps.c (_dl_map_object_deps): Provide complete error
2783 message. Based on a patch by HJ Lu.
2785 2001-04-10 Andreas Schwab <schwab@suse.de>
2787 * math/libm-test.inc (csinh_test): Don't require the invalid
2788 exception for csinh (x + iNaN), but make it optional.
2790 2001-04-09 David Mosberger <davidm@hpl.hp.com>
2792 * sysdeps/ia64/elf/start.S (_start): Add unwind directives.
2794 * sysdeps/generic/entry.h [!__ASSEMBLY__]: Declare _start.
2795 * sysdeps/ia64/elf/entry.h: New file.
2796 * sysdeps/unix/sysv/linux/mips/entry.h [!__ASSEMBLY__]: Declare
2798 * elf/rtld.c: Don't declare ENTRY_POINT. Use ENTRY_POINT instead
2800 * sysdeps/generic/dl-sysdep.c: Likewise.
2801 * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
2802 * sysdeps/ia64/elf/start.S: Save base address of register backing
2803 store in __libc_ia64_register_backing_store_base.
2805 2001-04-10 Martin Schwidefsky <schwidefsky@de.ibm.com>
2807 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Fix return
2808 value of getcontext.
2809 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2810 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Fix return
2811 value of setcontext.
2812 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
2813 * sysdeps/unix/sysv/linux/s390/swapcontext.c: Skip setcontext
2814 call by changing the saved context.
2816 2001-04-10 Ulrich Drepper <drepper@redhat.com>
2818 * sysdeps/alpha/stackinfo.h: New file.
2819 * sysdeps/ia64/stackinfo.h: New file.
2821 2001-04-10 Andreas Schwab <schwab@suse.de>
2823 * sysdeps/m68k/fpu/e_pow.c: Correct handling of some exceptional
2825 * sysdeps/m68k/fpu/e_scalb.c: Likewise.
2827 2001-04-09 Ulrich Drepper <drepper@redhat.com>
2829 * sysdeps/sparc/sparc32/sparcv9/Dist: Add hp-timing.c.
2830 * sysdeps/sparc/sparc64/Dist: Add hp-timing.c.
2832 * libio/Makefile (distribute): Add fd_to_filename.h.
2834 2001-04-05 David S. Miller <davem@redhat.com>
2836 Add hp-timing support for sparcv9/sparc64 targets.
2837 * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: New file
2838 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: New file
2839 * sysdeps/sparc/sparc64/hp-timing.c: New file
2840 * sysdeps/sparc/sparc64/hp-timing.h: New file
2841 * sysdeps/sparc/sparc32/sparcv9/Makefile: Build hp-timing.
2842 * sysdeps/sparc/sparc64/Makefile: Likewise.
2844 2001-04-09 Jakub Jelinek <jakub@redhat.com>
2846 * sysdeps/generic/fd_to_filename.h: New file.
2847 * sysdeps/unix/sysv/linux/fd_to_filename.h: New file.
2848 * libio/freopen.c (freopen): If FILENAME is NULL, try to get
2849 filename from the open file descriptor.
2850 * libio/freopen64.c (freopen64): Likewise.
2852 2001-04-09 Bruno Haible <haible@clisp.cons.org>
2854 * misc/error.c (error): fflush stdout also if
2855 error_print_progname != NULL.
2856 (error_at_line): Likewise.
2858 2001-04-07 Bruno Haible <haible@clisp.cons.org>
2860 * intl/gettextP.h (struct loaded_domain): Add codeset_cntr field.
2861 (struct binding): Add codeset_cntr field.
2862 (_nl_load_domain): Add domainbinding argument.
2863 (_nl_init_domain_conv, _nl_free_domain_conv): New declarations.
2864 (_nl_find_msg): New declaration, moved here from loadinfo.h.
2865 * intl/loadinfo.h (struct loaded_l10nfile): Remove domainbinding field.
2866 (_nl_make_l10nflist): Remove domainbinding argument.
2867 (_nl_find_msg): Move declaration to gettextP.h.
2868 * intl/bindtextdom.c (set_binding_values): Initialize ->codeset_cntr
2869 to 0. Increment it when ->codeset is changed.
2870 * intl/dcigettext.c (DCIGETTEXT): Pass binding to _nl_find_msg.
2871 (_nl_find_msg): Add domainbinding argument. Reinitialize the converter
2872 if domainbinding->codeset_cntr has been incremented.
2873 * intl/finddomain.c (_nl_find_domain): Don't pass domainbinding to
2874 _nl_make_l10nflist(). Pass it to _nl_load_domain() instead.
2875 * intl/l10nflist.c (_nl_make_l10nflist): Remove domainbinding argument.
2876 * intl/loadmsgcat.c (_nl_init_domain_conv): New function, extracted
2877 from _nl_load_domain. Append //TRANSLIT also when using libiconv.
2878 (_nl_free_domain_conv): New function, extracted from _nl_unload_domain.
2879 (_nl_load_domain): Add domainbinding argument. Call
2880 _nl_init_domain_conv.
2881 (_nl_unload_domain): Call _nl_free_domain_conv.
2882 * intl/Makefile (distribute): Add tst-codeset.sh, tstcodeset.po.
2883 (test-srcs): Add tst-codeset.
2884 (tests): Depend on tst-codeset.out.
2885 (tst-codeset.out): New rule.
2886 (CFLAGS-tst-codeset.c): New variable.
2887 * intl/tst-codeset.sh: New file.
2888 * intl/tstcodeset.po: New file.
2889 * intl/tst-codeset.c: New file.
2890 * locale/findlocale.c (_nl_find_locale): Update _nl_make_l10nflist
2893 2001-04-07 Roland McGrath <roland@frob.com>
2895 * mach/msgserver.c (__mach_msg_server_timeout): Add an assert.
2897 2001-03-31 Roland McGrath <roland@frob.com>
2899 * sysdeps/mach/hurd/fork.c: Skip NEWPROC just like NEWTASK when
2900 copying send rights into child. When we hit our name for our proc
2901 port, just copy NEWPROC directly instead of repeating proc_task2proc
2902 to install the child's port.
2904 2001-04-08 Roland McGrath <roland@frob.com>
2906 * Makeconfig ($(common-objpfx)soversions.i): Grok entries with DEFAULT
2907 in second column, to provide default values for third column.
2908 * shlib-versions: Add comments about using DEFAULT in second column.
2909 (s390x-.*-linux.*): Replace individual entries with a DEFAULT entry.
2910 (cris-.*-linux.*): Likewise.
2912 2001-04-09 Ulrich Drepper <drepper@redhat.com>
2914 * Makefile (distribute): Add scripts/documented.sh.
2915 * scripts/documented.sh: New file.
2917 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
2919 * sysdeps/unix/sysv/linux/cris/Dist: New file.
2920 * sysdeps/unix/sysv/linux/cris/Makefile: New file.
2921 * sysdeps/unix/sysv/linux/cris/_G_config.h: New file.
2922 * sysdeps/unix/sysv/linux/cris/bits/fcntl.h: New file.
2923 * sysdeps/unix/sysv/linux/cris/bits/mman.h: New file.
2924 * sysdeps/unix/sysv/linux/cris/bits/resource.h: New file.
2925 * sysdeps/unix/sysv/linux/cris/brk.c: New file.
2926 * sysdeps/unix/sysv/linux/cris/chown.c: New file.
2927 * sysdeps/unix/sysv/linux/cris/clone.S: New file.
2928 * sysdeps/unix/sysv/linux/cris/fchown.c: New file.
2929 * sysdeps/unix/sysv/linux/cris/fcntl.c: New file.
2930 * sysdeps/unix/sysv/linux/cris/fxstat.c: New file.
2931 * sysdeps/unix/sysv/linux/cris/getegid.c: New file.
2932 * sysdeps/unix/sysv/linux/cris/geteuid.c: New file.
2933 * sysdeps/unix/sysv/linux/cris/getgid.c: New file.
2934 * sysdeps/unix/sysv/linux/cris/getgroups.c: New file.
2935 * sysdeps/unix/sysv/linux/cris/getresgid.c: New file.
2936 * sysdeps/unix/sysv/linux/cris/getresuid.c: New file.
2937 * sysdeps/unix/sysv/linux/cris/getrlimit.c: New file.
2938 * sysdeps/unix/sysv/linux/cris/getrlimit64.c: New file.
2939 * sysdeps/unix/sysv/linux/cris/getuid.c: New file.
2940 * sysdeps/unix/sysv/linux/cris/lchown.c: New file.
2941 * sysdeps/unix/sysv/linux/cris/lockf64.c: New file.
2942 * sysdeps/unix/sysv/linux/cris/lxstat.c: New file.
2943 * sysdeps/unix/sysv/linux/cris/mmap.S: New file.
2944 * sysdeps/unix/sysv/linux/cris/mmap64.S: New file.
2945 * sysdeps/unix/sysv/linux/cris/msgctl.c: New file.
2946 * sysdeps/unix/sysv/linux/cris/profil-counter.h: New file.
2947 * sysdeps/unix/sysv/linux/cris/register-dump.h: New file.
2948 * sysdeps/unix/sysv/linux/cris/semctl.c: New file.
2949 * sysdeps/unix/sysv/linux/cris/setegid.c: New file.
2950 * sysdeps/unix/sysv/linux/cris/seteuid.c: New file.
2951 * sysdeps/unix/sysv/linux/cris/setfsgid.c: New file.
2952 * sysdeps/unix/sysv/linux/cris/setfsuid.c: New file.
2953 * sysdeps/unix/sysv/linux/cris/setgid.c: New file.
2954 * sysdeps/unix/sysv/linux/cris/setgroups.c: New file.
2955 * sysdeps/unix/sysv/linux/cris/setregid.c: New file.
2956 * sysdeps/unix/sysv/linux/cris/setresgid.c: New file.
2957 * sysdeps/unix/sysv/linux/cris/setresuid.c: New file.
2958 * sysdeps/unix/sysv/linux/cris/setreuid.c: New file.
2959 * sysdeps/unix/sysv/linux/cris/setrlimit.c: New file.
2960 * sysdeps/unix/sysv/linux/cris/setuid.c: New file.
2961 * sysdeps/unix/sysv/linux/cris/shmctl.c: New file.
2962 * sysdeps/unix/sysv/linux/cris/socket.S: New file.
2963 * sysdeps/unix/sysv/linux/cris/sys/ucontext.h: New file.
2964 * sysdeps/unix/sysv/linux/cris/syscall.S: New file.
2965 * sysdeps/unix/sysv/linux/cris/sysdep.S: New file.
2966 * sysdeps/unix/sysv/linux/cris/sysdep.h: New file.
2967 * sysdeps/unix/sysv/linux/cris/vfork.S: New file.
2968 * sysdeps/unix/sysv/linux/cris/xstat.c: New file.
2970 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
2972 * sysdeps/cris/Dist: New file.
2973 * sysdeps/cris/Implies: New file.
2974 * sysdeps/cris/Makefile: New file.
2975 * sysdeps/cris/__longjmp.S: New file.
2976 * sysdeps/cris/_mcount.S: New file.
2977 * sysdeps/cris/bits/endian.h: New file.
2978 * sysdeps/cris/bits/setjmp.h: New file.
2979 * sysdeps/cris/bits/string.h: New file.
2980 * sysdeps/cris/dl-machine.h: New file.
2981 * sysdeps/cris/elf/start.S: New file.
2982 * sysdeps/cris/machine-gmon.h: New file.
2983 * sysdeps/cris/memcopy.h: New file.
2984 * sysdeps/cris/memusage.h: New file.
2985 * sysdeps/cris/setjmp.S: New file.
2986 * sysdeps/cris/sysdep.h: New file.
2987 * sysdeps/cris/wordcopy.c: New file.
2989 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
2991 * elf/elf.h: Add new relocations for CRIS.
2993 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
2995 * shlib-versions: Add cases for Linux on CRIS.
2997 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
2999 * configure.in (ASM_LINE_SEP tests): Handle CRIS assembly, with
3000 ';' for comments and '@' for line separator.
3002 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
3004 * sysdeps/unix/sysv/linux/hppa/sysdep.h (INLINE_SYSCALL): Fix
3005 typo; s/==/=/ for assignment.
3007 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
3009 * malloc/Makefile: Correct comment; mtrace is Perl, not AWK.
3011 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
3013 * iconv/gconv_simple.c (internal_ucs4_loop_unaligned): Check for
3014 empty input before checking full output.
3016 2001-04-08 Hans-Peter Nilsson <hp@axis.com>
3018 * iconv/gconv.c (__gconv): Don't derefer parameter cd before
3021 2001-04-08 Ulrich Drepper <drepper@redhat.com>
3023 * inet/rexec.c (rexec_af): Avoid calling perror with errno being set.
3025 2001-04-07 Stephen L Moshier <moshier@mediaone.net>
3027 * sysdeps/ieee754/ldbl-128/e_logl.c: Correct infinity and NaN
3030 2001-04-07 Ulrich Drepper <drepper@redhat.com>
3032 * stdlib/tst-setcontext.c (main): Add a test for setcontext.
3034 * sysdeps/unix/sysv/linux/i386/getcontext.S: New file.
3035 * sysdeps/unix/sysv/linux/i386/setcontext.S: New file.
3036 * sysdeps/unix/sysv/linux/i386/makecontext.S: New file.
3037 * sysdeps/unix/sysv/linux/i386/swapcontext.S: New file.
3038 * sysdeps/unix/sysv/linux/i386/ucontext_i.h: New file.
3039 * sysdeps/unix/sysv/linux/i386/Dist: Add ucontext_i.h.
3041 2001-04-07 Andreas Jaeger <aj@suse.de>
3043 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Use sincos
3044 instead of separate sin and cos.
3045 (__ieee754_j1l): Likewise.
3047 2001-04-06 Ulrich Drepper <drepper@redhat.com>
3049 * sysdeps/ia64/abort-instr.h: New file. Code by David Mosberger.
3051 * sysdeps/ia64/atomicity.h: New file. Copied from libstdc++.
3053 * sysdeps/i386/i486/atomicity.h: Clean up the asms.
3055 * sysdeps/generic/e_scalb.c: Don't use FE_INVALID unless it's
3057 * sysdeps/generic/e_scalbf.c: Likewise.
3058 * sysdeps/generic/e_scalbl.c: Likewise.
3059 Patch by Mark Hatle <fray@mvista.com>.
3061 2001-04-05 David S. Miller <davem@redhat.com>
3063 * sysdeps/sparc/abort-instr.h: New file.
3065 2001-04-05 Matt Wilson <msw@redhat.com>
3067 * sysdeps/unix/sysv/linux/alpha/getsysstats.c (GET_NPROCS_PARSER):
3068 added code to parse new 2.4 format.
3069 (GET_NPROCS_CONF_PARSER): Likewise.
3071 2001-04-05 David S. Miller <davem@redhat.com>
3073 * scripts/config.sub: Recognize sparcv9b like sparcv9.
3074 * configure.in: Add sparcv9b.
3075 * sysdeps/sparc/sparc32/sparcv9b/Implies: New file
3076 * sysdeps/sparc/sparc32/sparcv9b/memcpy.S: New file
3077 * sysdeps/sparc/sparc64/sparcv9b/memcpy.S: New file
3079 2001-04-06 David Mosberger <davidm@hpl.hp.com>
3081 * stdlib/tst-setcontext.c: Move st2[] to global scope.
3082 (f2): Verify that stack pointer is inside st2[].
3084 * sysdeps/unix/sysv/linux/ia64/getcontext.S: It helps to save r12.
3085 * sysdeps/unix/sysv/linux/ia64/setcontext.S: It helps to restore r12.
3087 2001-04-06 Ulrich Drepper <drepper@redhat.com>
3089 * timezone/antarctica: Update from tzdata2001b.
3090 * timezone/asia: Likewise.
3091 * timezone/australasia: Likewise.
3092 * timezone/europe: Likewise.
3093 * timezone/northamerica: Likewise.
3095 * iconv/iconv_open.c: Move strip and upstr definitions...
3096 * iconv/gconv_charset.h: ...here. New file.
3097 * iconv/gconv_db.c (once): Move to file level.
3098 (do_lookup_alias): Split out from __gconv_find_transform.
3099 (__gconv_find_transform): Call do_lookup_alias.
3100 (__gconv_loopup_alias): New function.
3101 * locale/langinfo.h: Define _NL_*_CODESET values for all categories
3103 * locale/categories.def: Add entries for new _NL_*_CODESET values.
3104 * locale/C-ctype.c: Use _nl_C_codeset to initialize CODESET entry.
3105 * locale/C-address.c: Initialize _NL_*_CODESET element.
3106 * locale/C-collate.c: Likewise.
3107 * locale/C-identification.c: Likewise.
3108 * locale/C-measurement.c: Likewise.
3109 * locale/C-messages.c: Likewise.
3110 * locale/C-monetary.c: Likewise.
3111 * locale/C-name.c: Likewise.
3112 * locale/C-numeric.c: Likewise.
3113 * locale/C-paper.c: Likewise.
3114 * locale/C-telephone.c: Likewise.
3115 * locale/C-time.c: Likewise.
3116 * locale/localeinfo.h: Declare _nl_C_codeset.
3117 * locale/C_name.c: Define _nl_C_codeset.
3118 * locale/findlocale.c: Before accepting locale check that the used
3119 charset does not conflict with what the locale name said.
3120 * locale/programs/ld-address.c: Emit codeset information.
3121 * locale/programs/ld-collate.c: Likewise.
3122 * locale/programs/ld-identification.c: Likewise.
3123 * locale/programs/ld-measurement.c: Likewise.
3124 * locale/programs/ld-messages.c: Likewise.
3125 * locale/programs/ld-monetary.c: Likewise.
3126 * locale/programs/ld-name.c: Likewise.
3127 * locale/programs/ld-numeric.c: Likewise.
3128 * locale/programs/ld-paper.c: Likewise.
3129 * locale/programs/ld-telephone.c: Likewise.
3130 * locale/programs/ld-time.c: Likewise.
3132 * localedata/tests-mbwc/tst_funcs.h (TST_HEAD_LOCALE): It is an error
3133 if the locale data couldn't be found.
3135 * string/Makefile: Define tst-strxfrm-ENV.
3137 * ysdeps/unix/sysv/linux/ia64/getcontext.S: Fix comment.
3139 2001-04-06 Andreas Jaeger <aj@suse.de>
3141 * include/sys/profil.h: New file.
3143 * dlfcn/modatexit.c: Add prototypes to silence GCC.
3144 * dlfcn/modcxaatexit.c: Likewise.
3145 * elf/globalmod1.c: Likewise.
3147 2001-04-05 David S. Miller <davem@redhat.com>
3149 * elf/elf.h (HWCAP_SPARC_ULTRA3): Define it.
3150 * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: Add it to
3151 capability flags table and HWCAP_IMPORTANT, increase
3152 _DL_HWCAP_COUNT to 6.
3153 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Likewise.
3155 2001-04-04 David Mosberger <davidm@hpl.hp.com>
3157 * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Fix
3158 initialization of stack_end (bug reported by Zheng Gengbin
3159 <gzheng@students.uiuc.edu>).
3161 2001-04-05 Ulrich Drepper <drepper@redhat.com>
3163 * sysdeps/i386/fpu/libm-test-ulps: Relax errors for asinl.
3165 2001-04-05 Martin Schwidefsky <schwidefsky@de.ibm.com>
3167 * sysdeps/unix/sysv/linux/s390/s390-64/bits/socket.h: New file.
3169 2001-04-05 Ulrich Drepper <drepper@redhat.com>
3171 * sysdeps/ieee754/ldbl-96/e_asinl.c: Correct handling of +-Inf.
3172 * sysdeps/i386/fpu/e_asinl.S: Removed. Too inaccurate.
3174 * login/tst-utmp.c: Make file usable again in tst-utmpx.c.
3176 2001-04-04 Ulrich Drepper <drepper@redhat.com>
3178 * sysdeps/unix/sysv/aix/dl-libc.c: Don't use the ELF version,
3179 define simple replacements here. Patch by Michael Keezer.
3181 * sysdeps/ieee754/ldbl-128/e_logl.c: New file.
3182 * sysdeps/ieee754/ldbl-96/e_asinl.c: New file.
3183 Contributed by Stephen L Moshier <moshier@mediaone.net>.
3185 * posix/fnmatch_loop.c: Undefine NEW_PATTERN when it is not used
3188 2001-04-01 Andreas Jaeger <aj@suse.de>
3190 * sysdeps/generic/s_nextafter.c (NO_LONG_DOUBLE): Add nexttowardl
3193 * sysdeps/generic/s_fma.c (NO_LONG_DOUBLE): Add fmal alias.
3195 2001-04-04 Ulrich Drepper <drepper@redhat.com>
3197 * sysdeps/unix/sysv/linux/s390/s390-64/Dist: Add ucontext_i.h.
3198 * sysdeps/unix/sysv/linux/s390/s390-32/Dist: Likewise.
3200 2001-04-04 Martin Schwidefsky <schwidefsky@de.ibm.com>
3202 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: New file.
3203 * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: New file.
3204 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: New file.
3205 * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.h: New file.
3206 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: New file.
3207 * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: New file.
3208 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: New file.
3209 * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.h: New file.
3210 * sysdeps/unix/sysv/linux/s390/swapcontext.c: New file.
3212 2001-04-04 Andreas Jaeger <aj@suse.de>
3214 * sysdeps/powerpc/dl-machine.h (ELF_MACHINE_NO_REL): Move to right
3217 2001-04-04 Ulrich Drepper <drepper@redhat.com>
3219 * sunrpc/rpc_scan.c (symbols): Add entry for HYPER.
3220 * sunrpc/rpc_scan.h (enum tok_kind): Add TOK_HYPER.
3221 * sunrpc/rpc_parse.c (get_type): Handle TOK_HYPER.
3222 (unsigned_dec): Likewise.
3223 Patch by atai@jezebel.dreamhost.com.
3225 * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Pass
3226 pointer to int as last parameter of yp_match.
3227 Patch by kanazawa@flab.fujitsu.co.jp.
3229 2001-04-03 Ulrich Drepper <drepper@redhat.com>
3231 * resolv/netdb.h (gai_strerror): Make return value const.
3232 * sysdeps/generic/gai_strerror.c (gai_strerror): Likewise.
3233 * sysdeps/posix/gai_strerror.c (gai_strerror): Likewise.
3234 Add strings for new error values.
3236 2001-03-29 Michael Keezer <mkeezer@redhat.com>
3238 * posix/tst-gnuglob.c: Added ifdef _DIRENT_HAVE_D_TYPE.
3239 * login/tst-utmp.c: Handle case where ut_tv is not available but
3241 * sysdeps/unix/sysv/aix/utmpx.h: New file.
3242 * sysdeps/unix/sysv/aix/bits/utmpx.h: Added
3243 _HAVE_UT_TYPE/PID/ID/TV/HOST defines.
3244 * sysdeps/unix/sysv/aix/libc-start.c: Removed temp code and made stub.
3245 * sysdeps/unix/sysv/aix/gettimeofday.c: New file added routines
3246 to access RTCU timer reg.
3247 * sysdeps/unix/sysv/aix/Makefile: Remove /usr/lib/crt0.o
3248 added dl-libc, dl-open,dl-sym, dl-close to misc.
3249 * sysdeps/unix/sysv/aix/start.c: New file. Start code.
3250 * sysdeps/unix/sysv/aix/dlldr.h: New file. AIX __loadx defines.
3251 * sysdeps/unix/sysv/aix/dl-close.c: New file. AIX dl-close.
3252 * sysdeps/unix/sysv/aix/dl-open.c: New file. AIX dl-open.
3253 * sysdeps/unix/sysv/aix/dl-sym.c: New file. AIX dl-sym.
3254 * sysdeps/unix/sysv/aix/dl-libc.c: New file. libc_dl-xxx support.
3255 * sysdeps/generic/strtoll.c: Added SHLIB_COMPAT(libc,GLIBC_2_0,
3257 * sysdeps/generic/strtoull.c: Likewise.
3258 * sysdeps/powerpc/ppc-mcount.S: Added nop after bl instruction.
3259 * sysdeps/unix/sysv/aix/powerpc/memset.c: New file to include
3260 sysdeps/generic/memset.c.
3261 * sysdeps/unix/sysv/aix/getpeername.c: Define __getpeername.
3263 2001-04-03 Ulrich Drepper <drepper@redhat.com>
3265 * iconv/Makefile (CFLAGS-charmap.c): Add -DNEED_NULL_POINTER.
3266 * locale/programs/charmap.c: Define null_pointer if
3267 NEED_NULL_POINTER is defined.
3269 * misc/dirname.c (dirname): Handle multiple slashes correctly.
3271 2001-04-03 Martin Schwidefsky <schwidefsky@de.ibm.com>
3273 * sysdeps/s390/s390-64/initfini.c: Fix __gmon_start__ GOT access.
3275 2001-04-03 Martin Schwidefsky <schwidefsky@de.ibm.com>
3277 * sysdeps/s390/s390-32/bcopy.S: Optimize for speed.
3278 * sysdeps/s390/s390-64/bcopy.S: Likewise.
3279 * sysdeps/s390/s390-32/mempcy.S: Likewise.
3280 * sysdeps/s390/s390-64/memcpy.S: Likewise.
3282 2001-04-02 Bruno Haible <haible@clisp.cons.org>
3284 * manual/message.texi (Advanced gettext functions): More specific
3285 syntax in the plural formula examples.
3287 2001-04-02 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
3289 * sysdeps/powerpc/atomicity.h: Silence warnings.
3290 * sysdeps/powerpc/dl-machine.h: Likewise.
3291 * sysdeps/powerpc/register-dump.h: Likewise.
3292 * sysdeps/powerpc/fpu/s_lrint.c: Likewise.
3294 2001-04-02 Andreas Jaeger <aj@suse.de>
3296 * misc/tst-dirname.c (main): Add more tests, derived from a bug
3297 report by Michael Kerrisk <mtk16@ext.canterbury.ac.nz>.
3299 2001-04-01 Andreas Jaeger <aj@suse.de>
3301 * debug/xtrace.sh (pcprofileso): Use SLIBDIR since libpcprofile.so
3303 * malloc/memusage.sh (memusageso): Likewise for libmemusage.so.
3305 2001-04-01 H.J. Lu <hjl@gnu.org>
3307 * posix/annexc.c (macrofile): Renamed from TMPFILE and set to
3309 * stdlib/isomac.c (macrofile): Likewise.
3311 2001-03-30 Thorsten Kukuk <kukuk@suse.de>
3313 * inet/rcmd.c: Allow AF_UNSPEC as parameter.
3314 * nis/ypclnt.c (yp_all): Print error message only at last try,
3315 check for protocoll error only if we don't have a network error.
3317 2001-04-02 Andreas Schwab <schwab@suse.de>
3319 * resolv/res_data.c (res_isourserver): Fix cast.
3321 2001-04-02 Andreas Jaeger <aj@suse.de>
3323 * sysdeps/unix/sysv/linux/hppa/umount.c: Add prototype for
3326 * sysdeps/i386/dl-machine.h (RTLD_START): Don't use multi-line
3328 (ELF_MACHINE_RUNTIME_TRAMPOLINE): Likewise.
3330 * sysdeps/ieee754/dbl-64/uroot.h: Add missing braces arount
3332 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Likewise.
3334 * elf/rtld.c (print_statistics)[!HP_TIMING_NONAVAIL]: Avoid
3335 warning about unused variable.
3337 * string/string.h (strndupa): Add cast for C++ conformance.
3338 (strdupa): Likewise.
3339 Fixes PR libc/2173, reported by tbrowder@home.com.
3341 2001-03-30 Roland McGrath <roland@frob.com>
3343 * sysdeps/mach/hurd/Makefile ($(link-rpcuserlibs)): Don't append
3344 options after $(build-module), which is no longer a single command.
3345 (LDFLAGS-link-rpcuserlibs): New variable to hold those options.
3346 (LDFLAGS-libmachuser-link.so, LDFLAGS-libhurduser-link.so): New
3347 variables using it. Reported by Mark Kettenis <kettenis@gnu.org>.
3349 2001-03-11 Roland McGrath <roland@frob.com>
3351 * elf/rtld.c (dl_main): Add cast to quiet warning.
3352 * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
3353 * iconv/gconv_conf.c (__gconv_get_path): Likewise.
3354 (__gconv_read_conf): Likewise.
3355 * iconv/gconv_db.c (gen_steps): Likewise.
3356 (__gconv_find_transform): Likewise.
3357 * locale/programs/charmap-dir.c (fopen_uncompressed): Likewise.
3358 (fopen_uncompressed): Use const in second argument's type.
3360 2001-03-11 Roland McGrath <roland@frob.com>
3362 * sysdeps/mach/hurd/dl-sysdep.c (__writev): New function.
3364 * mach/mach_error.h: Fix ancient #endif syntax.
3365 * hurd/hurdmalloc.c: Likewise.
3367 * sysdeps/generic/atomicity.h (exchange_and_add, atomic_add,
3368 compare_and_swap): Add volatile qualifier to first arg, to bring
3369 these prototypes in line with all the other implementations.
3370 Add a #warning to remind the builder that these are not atomic.
3372 2001-03-04 Roland McGrath <roland@frob.com>
3374 * hurd/vpprintf.c (vpprintf) [USE_IN_LIBIO]: Use innermore first
3375 member of TEMP_F so its type is _IO_FILE * as expected.
3377 * hurd/fopenport.c (seekio): Conditionalize type of POS argument
3378 on [USE_IN_LIBIO]. Check the value for overflow, since for libio
3379 it might exceed off_t's range.
3381 2001-02-25 Roland McGrath <roland@frob.com>
3383 * sysdeps/mach/hurd/sysd-stdio.c (__stdio_reopen): Use prototype.
3384 * sysdeps/unix/bsd/getpt.c (__posix_openpt): Likewise.
3386 * sysdeps/mach/hurd/i386/intr-msg.h (SYSCALL_EXAMINE): Make this a
3387 macro instead of an inline function,
3388 (MSG_EXAMINE): Likewise.
3390 * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS_1): Remove extraneous ##.
3392 * hurd/get-host.c: Include <string.h> for decls of built-ins.
3393 * hurd/hurdchdir.c: Likewise.
3394 * sysdeps/mach/hurd/i386/sigreturn.c: Likweise.
3395 * sysdeps/mach/hurd/opendir.c: Likewise.
3397 * mach/mach_init.c: Include <unistd.h> for _exit decl.
3399 * mach/errsystems.awk: Give output file a trailing newline.
3401 * mach/Machrules (MIG): Prepend CC='${CC}' to the mig command, so that
3402 the script will use our compiler for the cpp stage.
3404 With --enable-all-warnings we get a whole bunch of warnings,
3405 and these are just a few fixes; there are more needed to silence it.
3406 * mach/mach/mig_support.h (__mig_strncpy, mig_strncpy): Add extern
3407 decls before extern inline defns to quiet gcc warning.
3408 * hurd/hurd/threadvar.h (__hurd_threadvar_location_from_sp): Likewise.
3409 * sysdeps/mach/i386/machine-sp.h (__thread_stack_pointer): Likewise.
3411 2001-03-31 Andreas Jaeger <aj@suse.de>
3413 * sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_RAWHDLC): Added.
3414 (ARPHRD_HDLC): Define as alias for ARPHRD_CISCO.
3415 (ARPHRD_CISCO): New.
3416 Changes from Linux 2.4.3.
3418 2001-03-30 Isamu Hasegawa <isamu@yamato.ibm.com>
3420 * posix/regex.c: Avoid an access violation if malloc fails.
3422 2001-03-30 Andreas Jaeger <aj@suse.de>
3424 * sysdeps/alpha/ldiv.S (ldiv): Add alias for imaxdiv.
3426 2001-03-29 Ulrich Drepper <drepper@redhat.com>
3428 * posix/regex.c: Remove unnecessary ifs.
3430 * math/bits/mathcalls.h: Remove infnan declaration.
3432 2001-03-29 H.J. Lu <hjl@gnu.org>
3434 * include/endian.h: Define BIG_ENDI, LITTLE_ENDI, HIGH_HALF,
3435 and LOW_HALF only if _LIBC is defined and _ISOMAC is not defined.
3436 * stdlib/isomac.c (fmt): Define _LIBC and _ISOMAC.
3438 2001-03-29 Isamu Hasegawa <isamu@yamato.ibm.com>
3440 * posix/regex.c: Fix typo and add a sentinel.
3442 2001-03-29 Ulrich Drepper <drepper@redhat.com>
3444 * sysdeps/unix/sysv/linux/shm_open.c: Open new file always with
3445 O_NOFOLLOW. Suggested by Christoph Roland.
3447 2001-03-27 Martin Schwidefsky <schwidefsky@de.ibm.com>
3449 * sysdeps/s390/bits/string.h: New unified 31/64 bit string.h.
3450 * sysdeps/s390/s390-32/bits/string.h: Remove.
3451 * sysdeps/s390/s390-64/bits/string.h: Remove.
3452 * sysdeps/s390/s390-32/strcmp.S: New file.
3453 * sysdeps/s390/s390-64/strcmp.S: New file.
3455 2001-03-27 Martin Schwidefsky <schwidefsky@de.ibm.com>
3457 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Fix typo.
3458 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
3460 2001-03-27 Ulrich Drepper <drepper@redhat.com>
3462 * version.h (VERSION): Bump to 2.2.3.
3464 * stdlib/isomac.c (fmt): Don't define _LIBC.
3465 * include/endian.h: Define BIG_ENDI, LITTLE_ENDI, HIGH_HALF, and
3466 LOW_HALF only if _LIBC is defined.
3468 * sysdeps/i386/fpu/libm-test-ulps: Slight adjustment of yn() error.
3470 * posix/fnmatch_loop.c (FCT): Handle !() after * special like @()
3472 * posix/tst-fnmatch.input: Add test cases for matching empty strings.
3474 * sysdeps/ieee754/dbl-64/endian.h: Removed. Move definitions...
3475 * include/endian.h: ...to here.
3477 2001-03-27 kaz Kojima <kkojima@rr.iij4u.or.jp>
3479 * sysdeps/sh/sys/ucontext.h (NFREG): Rename to NFPREG.
3480 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h (NFREG): Likewise.
3482 2001-03-27 Martin Schwidefsky <schwidefsky@de.ibm.com>
3484 * sysdeps/unix/sysv/linux/s390/ldconfig.h: Fix typo.
3486 2001-03-26 Ulrich Drepper <drepper@redhat.com>
3488 * sysdeps/ia64/fpu/Dist: Add new files to distribute.
3489 * sysdeps/unix/sysv/linux/s390/s390-64/Dist: Likewise.
3490 * sysdeps/unix/sysv/linux/ia64/Dist: Likewise.
3492 * gmon/Makefile (headers): Add sys/profil.h.
3494 2001-03-18 Andreas Jaeger <aj@suse.de>
3496 * manual/install.texi (Tools for Compilation): Advise to use GCC
3498 (Supported Configurations): Mention s390x.
3500 2001-03-26 Ben Collins <bcollins@debian.org>
3502 * sysdeps/unix/sysv/linux/mips/bits/mman.h: Add MAP_* and MADV_*
3503 defines to match other architectures.
3505 2001-03-26 Ulrich Drepper <drepper@redhat.com>
3507 * libio/Makefile (tests): Add tst-ext.
3508 * libio/tst-ext.c: New file.
3510 * libio/iosetvbuf.c (_IO_setvbuf): Clear line buffer flag for _IONBF.
3512 2001-03-25 Ulrich Drepper <drepper@redhat.com>
3514 Add changes which were in this form in the original patch by
3515 Eric Norum <eric.norum@usask.ca>.
3516 * include/rpc/rpc.h: Remove svc_fdset, rpc_createerr, svc_pollfd, and
3518 * sunrpc/rpc/rpc.h: Declare __rpc_thread_svc_fdset,
3519 __rpc_thread_createerr, __rpc_thread_svc_pollfd, and
3520 __rpc_thread_svc_max_pollfd.
3521 Define svc_fdset, get_rpc_createerr, svc_pollfd, and
3523 * sunrpc/rpc_thread.c: Handle first thread special, it uses the
3525 Define __rpc_thread_svc_fdset, __rpc_thread_createerr,
3526 __rpc_thread_svc_pollfd, and __rpc_thread_svc_max_pollfd.
3527 * sunrpc/Versions [libc] (GLIBC_2.2.3): Export __rpc_thread_svc_fdset,
3528 __rpc_thread_createerr, __rpc_thread_svc_pollfd, and
3529 __rpc_thread_svc_max_pollfd.
3530 * sunrpc/clnt_gen.c: Replace use of rpc_createerr by call to
3532 * sunrpc/clnt_perr.c: Likewise.
3533 * sunrpc/clnt_simp.c: Likewise.
3534 * sunrpc/clnt_tcp.c: Likewise.
3535 * sunrpc/clnt_udp.c: Likewise.
3536 * sunrpc/clnt_unix.c: Likewise.
3537 * sunrpc/pm_getport.c: Likewise.
3539 * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): getgroups32
3540 syscall checks for negative n so don't test here as well.
3542 2001-03-23 Jes Sorensen <jes@linuxcare.com>
3544 * sysdeps/unix/sysv/linux/ia64/sysdep.h (ENTRY): Moved to ...
3545 * sysdeps/ia64/sysdep.h: ...here.
3547 * sysdeps/ia64/sysdep.h (LOCAL_ENTRY): Define.
3548 * sysdeps/ia64/sysdep.h (LOCAL_LEAF): Define.
3550 * sysdeps/ia64/_mcount.S (_mcount_ret_helper): Use LOCAL_LEAF() to
3551 declare instead of LEAF(). Suggestion from David Mosberger.
3553 2001-03-21 David Mosberger <davidm@hpl.hp.com>
3555 * sysdeps/unix/sysv/linux/ia64/sysdep.h (CALL_MCOUNT): Add unwind
3557 (PSEUDO): Drop .psr and .lsb directives.
3559 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Ditto. Add unwind
3561 * sysdeps/unix/sysv/linux/ia64/sysdep.S: Ditto.
3563 * sysdeps/ia64/elf/start.S: Misc cleanup: remove .psr and .lsb
3565 * sysdeps/unix/sysv/linux/ia64/brk.S: Ditto.
3566 * sysdeps/unix/sysv/linux/ia64/__longjmp.S: Ditto.
3567 * sysdeps/ia64/_mcount.S: Remove .psr and .lsb directives (no
3568 longer needed). Add unwind directives.
3570 * sysdeps/ia64/sysdep.h: Define ASM_UNW_PRLG_RP, ASM_UNW_PRLG_PFS,
3571 ASM_UNW_PRLG_PSP, ASM_UNW_PRLG_PR, and ASM_UNW_PRLG_GRSAVE.
3573 2001-03-21 Paul Eggert <eggert@twinsun.com>
3575 * posix/regex.h (RE_INVALID_INTERVAL_ORD): New macro.
3576 (RE_SYNTAX_POSIX_EGREP): Use it.
3577 * posix/regex.c (regex_compile): Implement it.
3579 2001-03-21 Paul Eggert <eggert@twinsun.com>
3581 * posix/regex.c (GET_UNSIGNED_NUMBER): Check for overflow.
3582 Rewrite to avoid duplicate code.
3584 2001-03-21 H.J. Lu <hjl@gnu.org>
3586 * elf/Makefile (tests): Don't depend on $(objpfx)tst-pathopt.out
3587 for cross-compiling.
3588 ($(objpfx)tst-pathopt.out): Undo the last change.
3590 2001-03-24 Mark Kettenis <kettenis@gnu.org>
3592 * sysdeps/mach/hurd/i386/bits/sigcontext.h (sc_sp, sc_fp, sc_pc,
3593 sc_ps): Define as aliases for sc_uesp, sc_ebl, sc_eip and sc_efl.
3595 * sysdeps/mach/hurd/i386/init-first.c: Include <assert.h>.
3596 (_dl_argv): Declare.
3597 (init) [SHARED]: Readjust _dl_argv if we switched to a new stack.
3599 2001-03-22 Andreas Jaeger <aj@suse.de>
3601 * iconvdata/Makefile (generated): Add iconv-test.xxx.
3603 * posix/Makefile (generated): Add bug-regex2.mtrace and
3606 2001-03-21 Ulrich Drepper <drepper@redhat.com>
3608 * csu/version.c (__gnu_get_libc_release): Add prototype.
3609 (__gnu_get_libc_version): Likewise.
3610 * include/gnu/libc-version.h: Remove prototypes for not exported
3613 2001-03-21 Jes Sorensen <jes@linuxcare.com>
3615 * sysdeps/unix/sysv/linux/ia64/makecontext.c: Include libintl.h
3616 for internationalized printfs to work.
3618 2001-03-09 Bruno Haible <haible@clisp.cons.org>
3620 * intl/dcigettext.c (transmem_block_t): Change to unsigned char, to
3621 avoid compiler warning.
3622 (_nl_find_msg): Add casts to avoid compiler warnings.
3624 2001-03-21 Ulrich Drepper <drepper@redhat.com>
3626 * gmon/Makefile (routines): Add sprofil.
3627 (tests): Add tst-sprofil.
3628 (noprof): Add sprofil.
3629 * gmon/Versions [libc] (GLIBC_2.2.3): Add sprofil.
3631 2001-03-20 David Mosberger <davidm@hpl.hp.com>
3633 * sysdeps/generic/sprofil.c: New file.
3634 * sysdeps/posix/sprofil.c: New file.
3635 * gmon/tst-sprofil.c: New file.
3636 * gmon/sys/profil.h: New file.
3638 2001-03-20 Andreas Schwab <schwab@suse.de>
3640 * include/unistd.h: Adjust prototype of __gethostname.
3642 2001-03-20 Jakub Jelinek <jakub@redhat.com>
3644 * sysdeps/sparc/stackinfo.h: New file.
3646 2001-03-21 Andreas Jaeger <aj@suse.de>
3648 * elf/global.c (main): Use proper prototype.
3650 2001-03-20 Ulrich Drepper <drepper@redhat.com>
3652 * sunrpc/Makefile (routines): Add rpc_thread.
3653 (CPPFLAGS): Add -D_RPC_THREAD_SAFE.
3654 * sunrpc/rpc_thread.c: New file.
3655 * sunrpc/Versions [libc] (GLIBC_2.2.3): Export __rpc_thread_destroy.
3656 * sunrpc/auth_none.c: Don't use global variables. Access state in
3657 thread-local storage.
3658 * sunrpc/clnt_perr.c: Likewise.
3659 * sunrpc/clnt_raw.c: Likewise.
3660 * sunrpc/clnt_simp.c: Likewise.
3661 * sunrpc/key_call.c: Likewise.
3662 * sunrpc/rpc_common.c: Likewise.
3663 * sunrpc/svc.c: Likewise.
3664 * sunrpc/svc_raw.c: Likewise.
3665 * sunrpc/svc_simple.c: Likewise.
3666 * sunrpc/svcauth_des.c: Likewise.
3667 * hurd/hurd/threadvar.h (enum __hurd_threadvar_index): Add
3668 _HURD_THREADVAR_RPC_VARS.
3669 * sysdeps/generic/bits/libc-tsd.h: Mention _LIBC_TSD_KEY_RPC_VARS.
3670 * include/rpc/rpc.h: Define data structures for internal thread-local
3672 Based on patches by Eric Norum <eric.norum@usask.ca>.
3674 * elf/dl-load.c: Various little optimizations.
3676 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Return
3677 LINUX_LINK_MAX only if the statfs function is not implemented for
3680 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Return
3681 LINUX_LINK_MAX only if the fstatfs function is not implemented for
3684 2001-03-19 Ulrich Drepper <drepper@redhat.com>
3686 * elf/dl-dst.h (DL_DST_COUNT): Add __builtin_expect.
3688 * elf/dl-load.c (_dl_dst_count): Make DST recognition more robust.
3689 (_dl_dst_substitute): Likewise.
3691 2001-03-17 Bruno Haible <haible@clisp.cons.org>
3693 * intl/loadmsgcat.c (_nl_load_domain) [!_LIBC]: Use fstat, not fstat64.
3695 2001-03-17 Bruno Haible <haible@clisp.cons.org>
3697 * intl/gettextP.h (struct expression): Add operators lnot, less_than,
3698 greater_than, less_or_equal, greater_or_equal. Replace args2/args3
3699 union by a 'nargs' counter and an 'args[]' array.
3700 * intl/plural.y: Don't include stdarg.h.
3701 (new_exp): Take an array of arguments instead of varargs.
3702 (new_exp_0, new_exp_1, new_exp_2, new_exp_3): New functions.
3703 ('?' ':'): Make right-associative.
3704 (EQUOP2): New token, replaces '=' and '!'.
3705 (CMPOP2): New token.
3706 (ADDOP2): New token, replaces '+' and '-'.
3707 (MULOP2): New token, replaces '*', '/' and '%'.
3709 (exp): Add rules for CMPOP2 and '!'. Don't call YYABORT.
3710 (start): Call YYABORT here.
3711 (FREE_EXPRESSION): Update.
3712 (yylex): Don't skip "\\n". Recognize comparison and '!' operators.
3713 Update for new token symbols.
3714 * intl/loadmsgcat.c (plvar, plone, germanic_plural,
3715 init_germanic_plural): Update.
3716 * intl/dcigettext.c (_nl_find_msg): Optimize for space.
3717 (plural_eval): Recognize comparison and '!' operators. Optimize for
3720 2001-03-10 Bruno Haible <haible@clisp.cons.org>
3722 * intl/loadmsgcat.c (_nl_load_domain): locale_charset() doesn't return
3725 2001-01-05 Bruno Haible <haible@clisp.cons.org>
3727 * intl/loadmsgcat.c: Include headers needed for alloca().
3729 (_nl_load_domain): Add fallback code for platforms lacking alloca.
3730 * intl/localealias.c: (ADD_BLOCK, FREE_BLOCK): Remove macros.
3732 (read_alias_file): Simplify fallback code for platforms lacking
3735 2001-01-07 Bruno Haible <haible@clisp.cons.org>
3737 * intl/gettextP.h (__gettextdebug): Remove declaration.
3738 (__gettext_free_exp, __gettextparse): Convert prototype to K&R C
3740 (gettext_free_exp__, gettextparse__): New non-libc declarations.
3741 * intl/plural.y [!_LIBC]: Define gettextparse__, gettext_free_exp__,
3742 not __gettextparse, __gettext_free_exp.
3743 * intl/loadmsgcat.c [!_LIBC]: Use gettextparse__, not __gettextparse.
3745 2001-02-24 Bruno Haible <haible@clisp.cons.org>
3747 * intl/dcigettext.c: Update comment about HAVE_LOCALE_NULL.
3749 2001-01-05 Bruno Haible <haible@clisp.cons.org>
3751 * intl/loadmsgcat.c (_nl_load_domain): Add fallback code for platforms
3752 lacking strtoul, like SunOS4.
3754 2001-01-05 Bruno Haible <haible@clisp.cons.org>
3756 * intl/l10nflist.c (_nl_normalize_codeset): Use tolower, not _tolower.
3758 2001-01-05 Bruno Haible <haible@clisp.cons.org>
3760 * intl/bindtextdom.c (set_binding_values): Convert prototype to K&R C
3762 * intl/dcigettext.c (transcmp): Convert to K&R C syntax.
3763 * intl/explodename.c (_nl_find_language): Convert to K&R C syntax.
3764 * intl/plural.y (__gettext_free_exp, yylex, yyerror): Convert to K&R C
3767 2001-01-07 Bruno Haible <haible@clisp.cons.org>
3769 * intl/gettextP.h (gettext__, dgettext__, dcgettext__, textdomain__,
3770 bindtextdomain__, bind_textdomain_codeset__): New declarations, from
3772 * intl/bindtextdom.c: Include libgnuintl.h instead of libgettext.h.
3773 * intl/dcgettext.c: Likewise.
3774 * intl/dcigettext.c: Likewise.
3775 * intl/dcngettext.c: Likewise.
3776 * intl/dngettext.c: Likewise.
3777 * intl/finddomain.c: Likewise.
3778 * intl/ngettext.c: Likewise.
3779 * intl/textdomain.c: Likewise.
3780 * intl/dgettext.c: Include libgnuintl.h instead of libgettext.h.
3782 * intl/gettext.c: Likewise. Don't include locale.h.
3784 2001-03-17 Bruno Haible <haible@clisp.cons.org>
3786 * intl/gettextP.h (ZERO): New macro.
3787 (struct binding): Always use ZERO.
3788 * intl/bindtextdom.c (offsetof): Provide fallback for platforms that
3789 lack it, like SunOS4.
3790 (set_binding_values): Use offsetof, not sizeof.
3791 * intl/dcigettext.c (offsetof): Provide fallback for platforms that
3792 lack it, like SunOS4.
3793 (ZERO): Remove macro.
3794 (struct transmem_list): Use ZERO.
3795 (DCIGETTEXT): Use offsetof, not sizeof.
3797 2001-03-17 Bruno Haible <haible@clisp.cons.org>
3799 * intl/gettextP.h: Include <stddef.h>. Include gettext.h, for
3801 * intl/bindtextdom.c: Don't include gettext.h.
3802 * intl/dcgettext.c: Likewise.
3803 * intl/dcigettext.c: Likewise.
3804 * intl/dcngettext.c: Likewise.
3805 * intl/dngettext.c: Likewise.
3806 * intl/finddomain.c: Likewise.
3807 * intl/localealias.c: Likewise.
3808 * intl/ngettext.c: Likewise.
3809 * intl/plural.y: Likewise.
3810 * intl/textdomain.c: Likewise.
3812 2001-03-17 Bruno Haible <haible@clisp.cons.org>
3814 * intl/gettext.h: Don't include <stdio.h>.
3816 2001-03-17 Bruno Haible <haible@clisp.cons.org>
3818 * intl/Makefile (CPPFLAGS): Set LOCALEDIR instead of GNULOCALEDIR.
3819 * intl/dcigettext.c (_nl_default_dirname): Initialize with LOCALEDIR.
3821 2001-03-19 Ulrich Drepper <drepper@redhat.com>
3823 * sysdeps/unix/i386/i686/tempname.c: New file.
3825 * sysdeps/posix/tempname.c (__gen_tempname): If RANDOM_BITS is
3826 defined use this macro to get some bits of randomness instead of
3827 the usual gettimeofday or time calls.
3829 2001-03-16 Paul Eggert <eggert@twinsun.com>
3831 * sysdeps/posix/tempname.c (uint64_t): Define to uintmax_t if
3832 not defined, and if UINT64_MAX is not defined.
3834 2001-03-19 Ulrich Drepper <drepper@redhat.com>
3836 * elf/cache.c: Mark and have translated a few more messages.
3838 2001-03-19 Martin Schwidefsky <schwidefsky@de.ibm.com>
3840 * elf/cache.c: Add case for FLAG_S390_LIB64.
3841 * sysdeps/generic/ldconfig.h: Add define for FLAG_S390_LIB64.
3842 * sysdeps/unix/sysv/linux/s390/ldconfig.h: New file.
3843 * sysdeps/unix/sysv/linux/s390/readelflib.c: New file.
3845 2001-03-19 Ulrich Drepper <drepper@redhat.com>
3847 * string/Makefile (tests): Add tst-strxfrm.
3848 * string/tst-strxfrm.c: New file. Based on a test case by Paul Eggert.
3849 * string/Depend: New file.
3851 2001-03-19 Paul Eggert <eggert@twinsun.com>
3853 * string/strxfrm.c (strxfrm): strxfrm should return 0, not 1,
3854 when given the empty string in nontrivial locales.
3856 2001-03-17 H.J. Lu <hjl@gnu.org>
3858 * manual/Makefile (install): Use $(INSTALL_DATA) instead of
3859 cp to install `dir'.
3861 2001-03-19 Andreas Schwab <schwab@suse.de>
3863 * Makerules (build-shlib): Make sure exit codes get checked
3866 2001-03-18 Ulrich Drepper <drepper@redhat.com>
3868 * Makerules (build-shlib): Remove unnecessary slashes introduced in
3871 * configure.in: Test for -Bgroup option of linker.
3872 * config.make.in: Define have-Bgroup.
3874 * conform/data/unistd.h-data: Require gethostname.
3875 * posix/unistd.h: Make gethostname prototype available for
3878 * crypt/Makefile: When generating DSO link with libc_nonshared.a.
3879 * debug/Makefile: Likewise.
3880 * dlfcn/Makefile: Likewise.
3881 * hesiod/Makefile: Likewise.
3882 * iconvdata/extra-module.mk: Likewise.
3883 * locale/Makefile: Likewise.
3884 * login/Makefile: Likewise.
3885 * math/Makefile: Likewise.
3886 * nis/Makefile: Likewise.
3887 * nss/Makefile: Likewise.
3888 * resolv/Makefile: Likewise.
3889 * rt/Makefile: Likewise.
3891 2001-03-17 Ulrich Drepper <drepper@redhat.com>
3893 * inet/Makefile (tests): Remove left-over comment.
3895 * posix/unistd.h (gethostname): Change type of second parameter
3896 back to size_t as per upcoming XPG6.
3897 * sysdeps/unix/sysv/aix/gethostname.c: Change type of second
3898 parameter back to size_t as per upcoming XPG6.
3899 * sysdeps/unix/sysv/sysv4/gethostname.c: Likewise.
3900 * sysdeps/unix/sysv/gethostname.c: Likewise.
3901 * sysdeps/mach/hurd/gethostname.c: Likewise.
3902 * sysdeps/generic/gethostname.c: Likewise.
3904 2001-03-16 Ulrich Drepper <drepper@redhat.com>
3906 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
3909 * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext):
3912 2001-02-06 Jakub Jelinek <jakub@redhat.com>
3914 * elf/dl-load.c (_dl_map_object): Don't test l_opencount when
3915 looking for name matches.
3917 2001-02-26 Jakub Jelinek <jakub@redhat.com>
3919 * sysdeps/generic/sigcontextinfo.h (CALL_SIGHANDLER): Define.
3920 * sysdeps/mach/hurd/i386/sigcontextinfo.h: Likewise.
3921 * sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h: Likewise.
3922 * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
3923 * sysdeps/unix/sysv/linux/i386/sigcontextinfo.h: Likewise.
3924 * sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h: Likewise.
3925 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h: Likewise.
3926 * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h: Likewise.
3927 * sysdeps/unix/sysv/linux/s390/sigcontextinfo.h: Likewise.
3928 * sysdeps/unix/sysv/linux/sh/sigcontextinfo.h: Likewise.
3929 * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: Likewise.
3930 * sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h: Likewise.
3932 2001-03-16 Ulrich Drepper <drepper@redhat.com>
3934 * sysdeps/ieee754/ldbl-96/s_erfl.c: New file.
3935 Contributed by Stephen L. Moshier <moshier@na-net.ornl.gov>.
3937 * sysdeps/i386/fpu/libm-test-ulps: Adjust for addition of erfl and
3939 * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
3941 2001-03-16 David Mosberger <davidm@hpl.hp.com>
3943 * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h (struct sigcontext):
3944 Drop hack that was needed for 2.1.1 kernel headers.
3946 * sysdeps/unix/sysv/linux/ia64/ucontext_i.h: New file.
3948 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Rewrite to make it
3949 overlay with kernel's "struct sigcontext".
3951 * sysdeps/unix/sysv/linux/ia64/Makefile (sysdep_headers): Add
3952 sys/rse.h for "misc" subdir.
3953 (sysdep_routines): Add __start_context for "stdlib" subdir.
3955 * sysdeps/unix/sysv/linux/ia64/sys/rse.h: New file (based on
3956 kernel file of the same name).
3958 * stdlib/Makefile (tests): Add tst-setcontext.
3959 * stdlib/tst-setcontext.c: New file (based on a sample program by
3962 * sysdeps/unix/sysv/linux/ia64/setcontext.S: New file.
3963 * sysdeps/unix/sysv/linux/ia64/getcontext.S: New file.
3964 * sysdeps/unix/sysv/linux/ia64/__start_context.S: New file.
3965 * sysdeps/unix/sysv/linux/ia64/makecontext.c: New file.
3966 * sysdeps/unix/sysv/linux/ia64/swapcontext.c: New file.
3968 * sysdeps/unix/sysv/linux/ia64/__longjmp.S (__longjmp): Use extr.u
3969 instead of shift & and.
3971 2001-03-16 Martin Schwidefsky <schwidefsky@de.ibm.com>
3973 * sysdeps/s390/s390-64/bits/huge_val.h: Move to...
3974 * sysdeps/s390/bits/huge_val.h: ...here.
3975 * sysdeps/s390/s390-32/bit/huge_val.h: Remove.
3976 * sysdeps/s390/s390-64/ffs.c: Move to...
3977 * sysdeps/s390/ffs.c: ...here.
3978 * sysdeps/s390/s390-32/ffs.c: Remove.
3980 2001-03-16 Jakub Jelinek <jakub@redhat.com>
3982 * elf/ldconfig.c (search_dir): Remove bogus diagnostic, instead
3983 update osversion from more recent library.
3985 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
3987 * sysdeps/unix/sysv/linux/s390/Dist: Move to...
3988 * sysdeps/unix/sysv/linux/s390/s390-32/Dist: ...here.
3989 * sysdeps/unix/sysv/linux/s390/Makefile: Move to...
3990 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: ...here.
3991 * sysdeps/unix/sysv/linux/s390/Versions: Move to...
3992 * sysdeps/unix/sysv/linux/s390/s390-32/Versions: ...here.
3993 * sysdeps/unix/sysv/linux/s390/alphasort64.c: Move to...
3994 * sysdeps/unix/sysv/linux/s390/s390-32/alphasort64.c: ...here.
3995 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Move to...
3996 * sysdeps/unix/sysv/linux/s390/s390-32/bits/fcntl.h: ...here.
3997 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Move to...
3998 * sysdeps/unix/sysv/linux/s390/s390-32/bits/mman.h: ...here.
3999 * sysdeps/unix/sysv/linux/s390/bits/resource.h: Move to...
4000 * sysdeps/unix/sysv/linux/s390/s390-32/bits/resource.h: ...here.
4001 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Move to...
4002 * sysdeps/unix/sysv/linux/s390/s390-32/bits/stat.h: ...here.
4003 * sysdeps/unix/sysv/linux/s390/chown.c: Move to...
4004 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: ...here.
4005 * sysdeps/unix/sysv/linux/s390/clone.S: Move to...
4006 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: ...here.
4007 * sysdeps/unix/sysv/linux/s390/fchown.c: Move to...
4008 * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: ...here.
4009 * sysdeps/unix/sysv/linux/s390/fcntl.c: Move to...
4010 * sysdeps/unix/sysv/linux/s390/s390-32/fcntl.c: ...here.
4011 * sysdeps/unix/sysv/linux/s390/fxstat.c: Move to...
4012 * sysdeps/unix/sysv/linux/s390/s390-32/fxstat.c: ...here.
4013 * sysdeps/unix/sysv/linux/s390/getdents64.c: Move to...
4014 * sysdeps/unix/sysv/linux/s390/s390-32/getdents64.c: ...here.
4015 * sysdeps/unix/sysv/linux/s390/getegid.c: Move to...
4016 * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: ...here.
4017 * sysdeps/unix/sysv/linux/s390/geteuid.c: Move to...
4018 * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: ...here.
4019 * sysdeps/unix/sysv/linux/s390/getgid.c: Move to...
4020 * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: ...here.
4021 * sysdeps/unix/sysv/linux/s390/getgroups.c: Move to...
4022 * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: ...here.
4023 * sysdeps/unix/sysv/linux/s390/getresgid.c: Move to...
4024 * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: ...here.
4025 * sysdeps/unix/sysv/linux/s390/getresuid.c: Move to...
4026 * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: ...here.
4027 * sysdeps/unix/sysv/linux/s390/getrlimit.c: Move to...
4028 * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: ...here.
4029 * sysdeps/unix/sysv/linux/s390/getrlimit64.c: Move to...
4030 * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit64.c: ...here.
4031 * sysdeps/unix/sysv/linux/s390/getuid.c: Move to...
4032 * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: ...here.
4033 * sysdeps/unix/sysv/linux/s390/lchown.c: Move to...
4034 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: ...here.
4035 * sysdeps/unix/sysv/linux/s390/lockf64.c: Move to...
4036 * sysdeps/unix/sysv/linux/s390/s390-32/lockf64.c: ...here.
4037 * sysdeps/unix/sysv/linux/s390/lxstat.c: Move to...
4038 * sysdeps/unix/sysv/linux/s390/s390-32/lxstat.c: ...here.
4039 * sysdeps/unix/sysv/linux/s390/mmap.S: Move to...
4040 * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: ...here.
4041 * sysdeps/unix/sysv/linux/s390/mmap64.S: Move to...
4042 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: ...here.
4043 * sysdeps/unix/sysv/linux/s390/msgctl.c: Move to...
4044 * sysdeps/unix/sysv/linux/s390/s390-32/msgctl.c: ...here.
4045 * sysdeps/unix/sysv/linux/s390/oldgetrlimit64.c: Move to...
4046 * sysdeps/unix/sysv/linux/s390/s390-32/oldgetrlimit64.c: ...here.
4047 * sysdeps/unix/sysv/linux/s390/readdir64.c: Move to...
4048 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64.c: ...here.
4049 * sysdeps/unix/sysv/linux/s390/readdir64_r.c: Move to...
4050 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64_r.c: ...here.
4051 * sysdeps/unix/sysv/linux/s390/register-dump.h: Move to...
4052 * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: ...here.
4053 * sysdeps/unix/sysv/linux/s390/scandir64.c: Move to...
4054 * sysdeps/unix/sysv/linux/s390/s390-32/scandir64.c: ...here.
4055 * sysdeps/unix/sysv/linux/s390/semctl.c: Move to...
4056 * sysdeps/unix/sysv/linux/s390/s390-32/semctl.c: ...here.
4057 * sysdeps/unix/sysv/linux/s390/setegid.c: Move to...
4058 * sysdeps/unix/sysv/linux/s390/s390-32/setegid.c: ...here.
4059 * sysdeps/unix/sysv/linux/s390/seteuid.c: Move to...
4060 * sysdeps/unix/sysv/linux/s390/s390-32/seteuid.c: ...here.
4061 * sysdeps/unix/sysv/linux/s390/setfsgid.c: Move to...
4062 * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: ...here.
4063 * sysdeps/unix/sysv/linux/s390/setfsuid.c: Move to...
4064 * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: ...here.
4065 * sysdeps/unix/sysv/linux/s390/setgid.c: Move to...
4066 * sysdeps/unix/sysv/linux/s390/s390-32/setgid.c: ...here.
4067 * sysdeps/unix/sysv/linux/s390/setgroups.c: Move to...
4068 * sysdeps/unix/sysv/linux/s390/s390-32/setgroups.c: ...here.
4069 * sysdeps/unix/sysv/linux/s390/setregid.c: Move to...
4070 * sysdeps/unix/sysv/linux/s390/s390-32/setregid.c: ...here.
4071 * sysdeps/unix/sysv/linux/s390/setresgid.c: Move to...
4072 * sysdeps/unix/sysv/linux/s390/s390-32/setresgid.c: ...here.
4073 * sysdeps/unix/sysv/linux/s390/setresuid.c: Move to...
4074 * sysdeps/unix/sysv/linux/s390/s390-32/setresuid.c: ...here.
4075 * sysdeps/unix/sysv/linux/s390/setreuid.c: Move to...
4076 * sysdeps/unix/sysv/linux/s390/s390-32/setreuid.c: ...here.
4077 * sysdeps/unix/sysv/linux/s390/setrlimit.c: Move to...
4078 * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: ...here.
4079 * sysdeps/unix/sysv/linux/s390/setuid.c: Move to...
4080 * sysdeps/unix/sysv/linux/s390/s390-32/setuid.c: ...here.
4081 * sysdeps/unix/sysv/linux/s390/shmctl.c: Move to...
4082 * sysdeps/unix/sysv/linux/s390/s390-32/shmctl.c: ...here.
4083 * sysdeps/unix/sysv/linux/s390/socket.S: Move to...
4084 * sysdeps/unix/sysv/linux/s390/s390-32/socket.S: ...here.
4085 * sysdeps/unix/sysv/linux/s390/sys/procfs.h: Move to...
4086 * sysdeps/unix/sysv/linux/s390/s390-32/sys/procfs.h: ...here.
4087 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Move to...
4088 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: ...here.
4089 * sysdeps/unix/sysv/linux/s390/syscall.S: Move to...
4090 * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: ...here.
4091 * sysdeps/unix/sysv/linux/s390/syscalls.list: Move to...
4092 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: ...here.
4093 * sysdeps/unix/sysv/linux/s390/sysdep.S: Move to...
4094 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: ...here.
4095 * sysdeps/unix/sysv/linux/s390/sysdep.h: Move to...
4096 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: ...here.
4097 * sysdeps/unix/sysv/linux/s390/versionsort64.c: Move to...
4098 * sysdeps/unix/sysv/linux/s390/s390-32/versionsort64.c: ...here.
4099 * sysdeps/unix/sysv/linux/s390/xstat.c: Move to...
4100 * sysdeps/unix/sysv/linux/s390/s390-32/xstat.c: ...here.
4102 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4104 * sysdeps/unix/sysv/linux/s390/s390-64/Dist: New file.
4105 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: New file.
4106 * sysdeps/unix/sysv/linux/s390/s390-64/bits/elfclass.h: New file.
4107 * sysdeps/unix/sysv/linux/s390/s390-64/bits/fcntl.h: New file.
4108 * sysdeps/unix/sysv/linux/s390/s390-64/bits/ipc.h: New file.
4109 * sysdeps/unix/sysv/linux/s390/s390-64/bits/mman.h: New file.
4110 * sysdeps/unix/sysv/linux/s390/s390-64/bits/msq.h: New file.
4111 * sysdeps/unix/sysv/linux/s390/s390-64/bits/resource.h: New file.
4112 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sem.h: New file.
4113 * sysdeps/unix/sysv/linux/s390/s390-64/bits/shm.h: New file.
4114 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigaction.h: New file.
4115 * sysdeps/unix/sysv/linux/s390/s390-64/bits/siginfo.h: New file.
4116 * sysdeps/unix/sysv/linux/s390/s390-64/bits/sigstack.h: New file.
4117 * sysdeps/unix/sysv/linux/s390/s390-64/bits/stat.h: New file.
4118 * sysdeps/unix/sysv/linux/s390/s390-64/bits/types.h: New file.
4119 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: New file.
4120 * sysdeps/unix/sysv/linux/s390/s390-64/fstatfs64.c: New file.
4121 * sysdeps/unix/sysv/linux/s390/s390-64/ftruncate64.c: New file.
4122 * sysdeps/unix/sysv/linux/s390/s390-64/fxstat.c: New file.
4123 * sysdeps/unix/sysv/linux/s390/s390-64/fxstat64.c: New file.
4124 * sysdeps/unix/sysv/linux/s390/s390-64/getdents.c: New file.
4125 * sysdeps/unix/sysv/linux/s390/s390-64/getdents64.c: New file.
4126 * sysdeps/unix/sysv/linux/s390/s390-64/getrlimit64.c: New file.
4127 * sysdeps/unix/sysv/linux/s390/s390-64/glob.c: New file.
4128 * sysdeps/unix/sysv/linux/s390/s390-64/glob64.c: New file.
4129 * sysdeps/unix/sysv/linux/s390/s390-64/kernel_stat.h: New file.
4130 * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c: New file.
4131 * sysdeps/unix/sysv/linux/s390/s390-64/lxstat64.c: New file.
4132 * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: New file.
4133 * sysdeps/unix/sysv/linux/s390/s390-64/mmap64.c: New file.
4134 * sysdeps/unix/sysv/linux/s390/s390-64/pread64.c: New file.
4135 * sysdeps/unix/sysv/linux/s390/s390-64/pwrite64.c: New file.
4136 * sysdeps/unix/sysv/linux/s390/s390-64/readdir.c: New file.
4137 * sysdeps/unix/sysv/linux/s390/s390-64/readdir64.c: New file.
4138 * sysdeps/unix/sysv/linux/s390/s390-64/readdir64_r.c: New file.
4139 * sysdeps/unix/sysv/linux/s390/s390-64/readdir_r.c : New file.
4140 * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: New file.
4141 * sysdeps/unix/sysv/linux/s390/s390-64/setrlimit64.c: New file.
4142 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: New file.
4143 * sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c: New file.
4144 * sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c: New file.
4145 * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: New file.
4146 * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: New file.
4147 * sysdeps/unix/sysv/linux/s390/s390-64/statfs64.c: New file.
4148 * sysdeps/unix/sysv/linux/s390/s390-64/sys/procfs.h: New file.
4149 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: New file.
4150 * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: New file.
4151 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: New file.
4152 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: New file.
4153 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: New file.
4154 * sysdeps/unix/sysv/linux/s390/s390-64/truncate64.c: New file.
4155 * sysdeps/unix/sysv/linux/s390/s390-64/xstat.c: New file.
4156 * sysdeps/unix/sysv/linux/s390/s390-64/xstat64.c: New file.
4158 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4160 * sysdeps/s390/Dist: Move to...
4161 * sysdeps/s390/390-32/Dist: ...here.
4162 * sysdeps/s390/Implies: Move to...
4163 * sysdeps/s390/s390-32/Implies: ...here.
4164 * sysdeps/s390/Makefile: Move to...
4165 * sysdeps/s390/s390-32/Makefile: ...here.
4166 * sysdeps/s390/Versions: Move to...
4167 * sysdeps/s390-32/s390/Versions: ...here.
4168 * sysdeps/s390/add_n.S: Move to...
4169 * sysdeps/s390/s390-32/add_n.S: ...here.
4170 * sysdeps/s390/addmul_1.S: Move to...
4171 * sysdeps/s390/s390-32/addmul_1.S: ...here.
4172 * sysdeps/s390/atomicity.h: Move to...
4173 * sysdeps/s390/s390-32/atomicity.h: ...here.
4174 * sysdeps/s390/backtrace.c: Move to...
4175 * sysdeps/s390/s390-32/backtrace.c: ...here.
4176 * sysdeps/s390/bcopy.S: Move to...
4177 * sysdeps/s390/s390-32/bcopy.S: ...here.
4178 * sysdeps/s390/bits/byteswap.h: Move to...
4179 * sysdeps/s390/s390-32/bits/byteswap.h: ...here.
4180 * sysdeps/s390/bits/huge_val.h: Move to...
4181 * sysdeps/s390/s390-32/bits/huge_val.h: ...here.
4182 * sysdeps/s390/bsd-_setjmp.S: Move to...
4183 * sysdeps/s390/s390-32/bsd-_setjmp.S: ...here.
4184 * sysdeps/s390/bsd-setjmp.S: Move to...
4185 * sysdeps/s390/s390-32/bsd-setjmp.S: ...here.
4186 * sysdeps/s390/bzero.S: Move to...
4187 * sysdeps/s390/s390-32/bzero.S: ...here.
4188 * sysdeps/s390/elf/bsd-_setjmp.S: Move to...
4189 * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: ...here.
4190 * sysdeps/s390/elf/bsd-setjmp.S: Move to...
4191 * sysdeps/s390/s390-32/elf/bsd-setjmp.S: ...here.
4192 * sysdeps/s390/elf/start.S: Move to...
4193 * sysdeps/s390/s390-32/elf/start.S: ...here.
4194 * sysdeps/s390/ffs.c: Move to...
4195 * sysdeps/s390/s390-32/ffs.c: ...here.
4196 * sysdeps/s390/memchr.S: Move to...
4197 * sysdeps/s390/s390-32/memchr.S: ...here.
4198 * sysdeps/s390/memcpy.S: Move to...
4199 * sysdeps/s390/s390-32/memcpy.S: ...here.
4200 * sysdeps/s390/memset.S: Move to...
4201 * sysdeps/s390/s390-32/memset.S: ...here.
4202 * sysdeps/s390/mul_1.S: Move to...
4203 * sysdeps/s390/s390-32/mul_1.S: ...here.
4204 * sysdeps/s390/s390-mcount.S: Move to...
4205 * sysdeps/s390/s390-32/s390-mcount.S: ...here.
4206 * sysdeps/s390/strcpy.S: Move to...
4207 * sysdeps/s390/s390-32/strcpy.S: ...here.
4208 * sysdeps/s390/strncpy.S: Move to...
4209 * sysdeps/s390/s390-32/strncpy.S: ...here.
4210 * sysdeps/s390/sub_n.S: Move to...
4211 * sysdeps/s390/s390-32/sub_n.S: ...here.
4213 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4215 * sysdeps/s390/s390-64/Dist: New file.
4216 * sysdeps/s390/s390-64/Implies: New file.
4217 * sysdeps/s390/s390-64/Makefile: New file.
4218 * sysdeps/s390/s390-64/__longjmp.c: New file.
4219 * sysdeps/s390/s390-64/add_n.S: New file.
4220 * sysdeps/s390/s390-64/atomicity.h: New file.
4221 * sysdeps/s390/s390-64/backtrace.c: New file.
4222 * sysdeps/s390/s390-64/bcopy.S: New file.
4223 * sysdeps/s390/s390-64/bits/byteswap.h: New file.
4224 * sysdeps/s390/s390-64/bits/huge_val.h: New file.
4225 * sysdeps/s390/s390-64/bits/setjmp.h: New file.
4226 * sysdeps/s390/s390-64/bits/string.h: New file.
4227 * sysdeps/s390/s390-64/bsd-_setjmp.S: New file.
4228 * sysdeps/s390/s390-64/bsd-setjmp.S: New file.
4229 * sysdeps/s390/s390-64/bzero.S: New file.
4230 * sysdeps/s390/s390-64/dl-machine.h: New file.
4231 * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: New file.
4232 * sysdeps/s390/s390-64/elf/bsd-setjmp.S: New file.
4233 * sysdeps/s390/s390-64/elf/setjmp.S: New file.
4234 * sysdeps/s390/s390-64/elf/start.S: New file.
4235 * sysdeps/s390/s390-64/ffs.c: New file.
4236 * sysdeps/s390/s390-64/initfini.c: New file.
4237 * sysdeps/s390/s390-64/memchr.S: New file.
4238 * sysdeps/s390/s390-64/memcpy.S: New file.
4239 * sysdeps/s390/s390-64/memset.S: New file.
4240 * sysdeps/s390/s390-64/s390x-mcount.S: New file.
4241 * sysdeps/s390/s390-64/setjmp.S: New file.
4242 * sysdeps/s390/s390-64/strcpy.S: New file.
4243 * sysdeps/s390/s390-64/strncpy.S: New file.
4244 * sysdeps/s390/s390-64/sub_n.S: New file.
4245 * sysdeps/s390/s390-64/sysdep.h: New file.
4247 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4249 * scripts/config.guess: Add support for Linux on 64 bit S/390.
4250 * scripts/config.sub: Likewise.
4252 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4254 * configure.in: Add support for 64 bit S/390.
4256 * elf/elf.h: Add new relocations for 64 bit S/390.
4258 * shlib-versions: Add rules for Linux on 64 bit S/390.
4260 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4262 * sysdeps/s390/__longjmp.c: Move to...
4263 * sysdeps/s390/s390-32/__longjmp.c: ...here. Add code
4264 to load the floating point registers that should be saved
4265 according to the ABI.
4267 * sysdeps/s390/bits/setjmp.h: Move to...
4268 * sysdeps/s390/s390-32/bits/setjmp.h: ...here. Avoid
4269 the use of long long in the __jmp_buf type definition.
4271 * sysdeps/s390/bits/string.h: Move to...
4272 * sysdeps/s390/s390-32/bits/string.h: ...here. Add several missing
4273 #ifndef _FORCE_INLINES.
4275 * sysdeps/s390/dl-machine.h: Move to...
4276 * sysdeps/s390/s390-32/dl-machine.h: ...here. Add a check for the
4277 executables EI_CLASS in elf_machine_matches_host.
4279 * sysdeps/s390/elf/setjmp.S: Move to...
4280 * sysdeps/s390/s390-32/elf/setjmp.S: ...here. Replace
4281 branches to globally defined symbol __sigsetjmp by branches to
4282 a local label (this avoids the generation of a R_390_PC16DBL
4283 relocation in -fpic code).
4285 * sysdeps/s390/gmp-mparam.h: Use defines from <bits/wordsize.h> to
4286 calculate BITS_PER_MP_LIMB, BYTES_PER_MP_LIMB and BITS_PER_LONGINT.
4288 * sysdeps/s390/initfini.c: Move to...
4289 * sysdeps/s390/s390-32/initfini.c: ...here. Replace ALIGN with
4292 * sysdeps/s390/setjmp.S: Move to...
4293 * sysdeps/s390/s390-32/setjmp.S: ...here. Add code to store the
4294 floating point registers that should be saved according to the ABI.
4296 * sysdeps/s390/sys/ucontext.h: Remove since it is unused.
4298 * sysdeps/unix/sysv/linux/s390/sysdep.h: Move to...
4299 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: ...here. Include
4300 sysdeps/s390/s390-32/sysdep.h instead of sysdeps/s390/sysdep.h.
4302 2001-03-13 Martin Schwidefsky <schwidefsky@de.ibm.com>
4304 * configure.in: Change machine=s390 to machine=s390/s390-32.
4306 * elf/elf.h: Correct comment for R_390_PLT16DBL.
4308 2001-03-12 Jakub Jelinek <jakub@redhat.com>
4310 * csu/Makefile (abi-tag.h): Define OS and version separately, allow
4311 version to be overriden from config.h.
4312 * csu/abi-note.S: Use OS and version separately, include config.h.
4313 * elf/dl-load.c (_dl_osversion): New.
4314 (_dl_map_object_from_fd): Kill some warnings.
4315 (open_verify): Check .note.ABI-tag of the library if present.
4316 * elf/Makefile (CPPFLAGS-dl-load.c): Add -I$(csu-objpfx).
4317 * elf/cache.c (struct cache_entry): Add osversion.
4318 (print_entry): Print osversion.
4319 (print_cache): Pass osversion to it.
4320 (compare): Sort according to osversion.
4321 (save_cache): Set osversion.
4322 (add_to_cache): Add osversion argument.
4323 * sysdeps/generic/ldconfig.h (add_to_cache, process_file,
4324 process_elf_file): Add osversion argument.
4325 * elf/readlib.c (process_file): Likewise.
4326 * sysdeps/generic/readelflib.c (process_elf_file): Likewise.
4327 * sysdeps/unix/sysv/linux/ia64/readelflib.c (process_elf_file,
4328 process_elf32_file, process_elf64_file): Likewise.
4329 * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file,
4330 process_elf32_file, process_elf64_file): Likewise.
4331 * sysdeps/unix/sysv/linux/sparc/readelflib.c (process_elf_file,
4332 process_elf32_file, process_elf64_file): Likewise.
4333 * elf/ldconfig.c (manual_link): Pass it.
4334 (search_dir): Issue diagnostic if two libs with the same soname in
4335 the same directory have different .note.ABI-tag. Record osversion in
4336 dlib_entry and use it from there.
4337 (struct lib_entry): Remove.
4338 (struct dlib_entry): Add osversion.
4339 * sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Check
4341 * sysdeps/generic/dl-cache.h (struct file_entry_new): Replace __unused
4342 field with osversion.
4343 * sysdeps/generic/ldsodefs.h (_dl_osversion): Declare.
4344 * sysdeps/unix/sysv/linux/init-first.c: Include ldsodefs.h.
4345 * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): Save kernel
4346 version in _dl_osversion.
4347 * sysdeps/unix/sysv/linux/configure.in: Define __ABI_TAG_VERSION.
4348 * Makerules (build-shlib-helper, build-module-helper): New.
4349 (build-shlib, build-module-helper): Make sure .note.ABI-tag comes
4351 * config.h.in (__ABI_TAG_VERSION): Add.
4352 * elf/dl-minimal.c (__strtoul_internal): Set endptr on return.
4353 * sysdeps/unix/sysv/linux/i386/dl-librecon.h (EXTRA_LD_ENVVARS):
4354 Handle LD_ASSUME_KERNEL.
4355 * sysdeps/unix/sysv/linux/dl-librecon.h: New.
4357 2001-03-15 Ulrich Drepper <drepper@redhat.com>
4359 * timezone/antarctica: Update from tzdata2001a.
4360 * timezone/asia: Likewise.
4361 * timezone/australasia: Likewise.
4362 * timezone/backward: Likewise.
4363 * timezone/etcetera: Likewise.
4364 * timezone/europe: Likewise.
4365 * timezone/leapseconds: Likewise.
4366 * timezone/northamerica: Likewise.
4367 * timezone/southamerica: Likewise.
4368 * timezone/systemv: Likewise.
4369 * timezone/yearistype: Likewise.
4370 * timezone/zone.tab: Likewise.
4371 * timezone/tzdump.c: Update from tzcode2001a.
4373 2001-03-15 H.J. Lu <hjl@gnu.org>
4375 * intl/Makefile: Fix a typo.
4377 2001-03-14 David Mosberger <davidm@hpl.hp.com>
4379 * gmon/gmon.c (write_call_graph): Avoid unaligned accesses when
4380 writing arc structures.
4382 2001-03-15 H.J. Lu <hjl@gnu.org>
4384 * elf/Makefile ($(objpfx)tst-pathopt.out): Protected against
4387 2001-03-13 Andreas Schwab <schwab@suse.de>
4389 * posix/PTESTS2C.sed: Replace literal CRs by `\r'.
4391 2001-03-15 Ulrich Drepper <drepper@redhat.com>
4393 * sysdeps/unix/sysv/linux/cmsg_nxthdr.c (__cmsg_nxthdr): Fix test
4394 for control message fitting into message data.
4395 Patch by James Antill <james@and.org>.
4397 * posix/tst-fnmatch.input: Add test case for FNM_PERIOD handling with
4400 * posix/fnmatch_loop.c: Optimize handling of ?() and @().
4401 * posix/fnmatch.c: Define STRLEN and STRCAT appropriately.
4403 * posix/Versions [libc] (GLIBC_2.2.3): Add fnmatch.
4404 * posix/fnmatch.c: Define with new default version GLIBC_2.2.3 to
4405 avoid running binaries with libc versions without FNM_EXTMATCH support.
4407 * include/wchar.h: Add prototype for __wcscat.
4408 * wcsmbs/wcscat.c: Define __wcscat and make wcscat weak alias.
4410 * posix/fnmatch.h (FNM_EXTMATCH): Define.
4411 * posix/fnmatch.c (NO_LEADING_PERIOD): Define.
4412 (posixly_correct): Move global variable here.
4413 (INT, EXT, END): Name new functions defined in fnmatch_loop.c.
4414 (fnmatch): Pretty printing.
4415 * posix/fnmatch_loop.c: Add code to handle FNM_EXTMATCH.
4416 * posix/tst-fnmatch.c: Recognize EXTMATCH flag.
4417 * posix/tst-fnmatch.input: Add tests for extended matching.
4419 * posix/testfnm.c: Add test for patterns with multiple ** before /.
4420 * posix/fnmatch_loop.c: Fix problem with the test above.
4422 2001-03-14 Ulrich Drepper <drepper@redhat.com>
4424 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Remove
4427 * resolv/res_data.c (fp_nquery): Call __res_ninit not __res_init.
4429 2001-03-12 Andreas Jaeger <aj@suse.de>
4431 * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
4432 Use EM_X86_64 instead of EM_X8664.
4434 2001-03-12 Ulrich Drepper <drepper@redhat.com>
4436 * sysdeps/ieee754/dbl-64/upow.h: Define nZERO and nINF.
4438 * sysdeps/ieee754/dbl-64/e_remainder.c: Fix handling of boundary
4441 * sysdeps/ieee754/dbl-64/e_pow.c: Fix handling of boundary
4444 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Handle Inf and NaN
4448 * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Handle NaN
4450 (__ieee754_acos): Likewise.
4452 2001-03-12 Andreas Jaeger <aj@suse.de>
4454 * sysdeps/unix/sysv/linux/s390/sysdep.h (_LINUX_S390_SYSDEP_H):
4455 Fix typo. Patch by Martin Schwidefsky <schwidefsky@de.ibm.com>.
4457 * sysdeps/s390/bits/string.h: Protect __STRING_INLINE against
4460 2001-03-11 Roland McGrath <roland@frob.com>
4462 * sysdeps/mach/hurd/configure.in: Add a sanity check on $prefix.
4464 2001-03-11 Ulrich Drepper <drepper@redhat.com>
4466 * sysdeps/ieee754/dbl-64/endian.h: Define also one of BIG_ENDI and
4469 * sysdeps/ieee754/dbl-64/MathLib.h (Init_Lib): Use void as
4472 Last-bit accurate math library implementation by IBM Haifa.
4473 Contributed by Abraham Ziv <ziv@il.ibm.com>, Moshe Olshansky
4474 <olshansk@il.ibm.com>, Ealan Henis <ealan@il.ibm.com>, and
4475 Anna Reitman <reitman@il.ibm.com>.
4476 * math/Makefile (dbl-only-routines): New variable.
4477 (libm-routines): Add $(dbl-only-routines).
4478 * sysdeps/ieee754/dbl-64/e_acos.c: Empty, definition is in e_asin.c.
4479 * sysdeps/ieee754/dbl-64/e_asin.c: Replaced with accurate asin
4481 * sysdeps/ieee754/dbl-64/e_atan2.c: Replaced with accurate atan2
4483 * sysdeps/ieee754/dbl-64/e_exp.c: Replaced with accurate exp
4485 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Don't use __kernel_sin and
4487 * sysdeps/ieee754/dbl-64/e_log.c: Replaced with accurate log
4489 * sysdeps/ieee754/dbl-64/e_remainder.c: Replaced with accurate
4490 remainder implementation.
4491 * sysdeps/ieee754/dbl-64/e_pow.c: Replaced with accurate pow
4493 * sysdeps/ieee754/dbl-64/e_sqrt.c: Replaced with accurate sqrt
4495 * sysdeps/ieee754/dbl-64/k_cos.c: Empty, definition is in s_sin.c.
4496 * sysdeps/ieee754/dbl-64/k_sin.c: Empty, definition is in s_sin.c.
4497 * sysdeps/ieee754/dbl-64/s_atan.c: Replaced with accurate atan
4499 * sysdeps/ieee754/dbl-64/s_cos.c: Empty, definition is in s_sin.c.
4500 * sysdeps/ieee754/dbl-64/s_sin.c: Replaced with accurate sin/cos
4502 * sysdeps/ieee754/dbl-64/s_sincos.c: Rewritten to not use __kernel_sin
4504 * sysdeps/ieee754/dbl-64/s_tan.c: Replaced with accurate tan
4506 * sysdeps/ieee754/dbl-64/Dist: Add new non-code files.
4507 * sysdeps/ieee754/dbl-64/MathLib.h: New file.
4508 * sysdeps/ieee754/dbl-64/asincos.tbl: New file.
4509 * sysdeps/ieee754/dbl-64/atnat.h: New file.
4510 * sysdeps/ieee754/dbl-64/atnat2.h: New file.
4511 * sysdeps/ieee754/dbl-64/branred.c: New file.
4512 * sysdeps/ieee754/dbl-64/branred.h: New file.
4513 * sysdeps/ieee754/dbl-64/dla.h: New file.
4514 * sysdeps/ieee754/dbl-64/doasin.c: New file.
4515 * sysdeps/ieee754/dbl-64/doasin.h: New file.
4516 * sysdeps/ieee754/dbl-64/dosincos.c: New file.
4517 * sysdeps/ieee754/dbl-64/dosincos.h: New file.
4518 * sysdeps/ieee754/dbl-64/endian.h: New file.
4519 * sysdeps/ieee754/dbl-64/halfulp.c: New file.
4520 * sysdeps/ieee754/dbl-64/mpa.c: New file.
4521 * sysdeps/ieee754/dbl-64/mpa.h: New file.
4522 * sysdeps/ieee754/dbl-64/mpa2.h: New file.
4523 * sysdeps/ieee754/dbl-64/mpatan.c: New file.
4524 * sysdeps/ieee754/dbl-64/mpatan.h: New file.
4525 * sysdeps/ieee754/dbl-64/mpatan2.c: New file.
4526 * sysdeps/ieee754/dbl-64/mpexp.c: New file.
4527 * sysdeps/ieee754/dbl-64/mpexp.h: New file.
4528 * sysdeps/ieee754/dbl-64/mplog.c: New file.
4529 * sysdeps/ieee754/dbl-64/mplog.h: New file.
4530 * sysdeps/ieee754/dbl-64/mpsqrt.c: New file.
4531 * sysdeps/ieee754/dbl-64/mpsqrt.h: New file.
4532 * sysdeps/ieee754/dbl-64/mptan.c: New file.
4533 * sysdeps/ieee754/dbl-64/mydefs.h: New file.
4534 * sysdeps/ieee754/dbl-64/powtwo.tbl: New file.
4535 * sysdeps/ieee754/dbl-64/root.tbl: New file.
4536 * sysdeps/ieee754/dbl-64/sincos.tbl: New file.
4537 * sysdeps/ieee754/dbl-64/sincos32.c: New file.
4538 * sysdeps/ieee754/dbl-64/sincos32.h: New file.
4539 * sysdeps/ieee754/dbl-64/slowexp.c: New file.
4540 * sysdeps/ieee754/dbl-64/slowpow.c: New file.
4541 * sysdeps/ieee754/dbl-64/uasncs.h: New file.
4542 * sysdeps/ieee754/dbl-64/uatan.tbl: New file.
4543 * sysdeps/ieee754/dbl-64/uexp.h: New file.
4544 * sysdeps/ieee754/dbl-64/uexp.tbl: New file.
4545 * sysdeps/ieee754/dbl-64/ulog.h: New file.
4546 * sysdeps/ieee754/dbl-64/ulog.tbl: New file.
4547 * sysdeps/ieee754/dbl-64/upow.h: New file.
4548 * sysdeps/ieee754/dbl-64/upow.tbl: New file.
4549 * sysdeps/ieee754/dbl-64/urem.h: New file.
4550 * sysdeps/ieee754/dbl-64/uroot.h: New file.
4551 * sysdeps/ieee754/dbl-64/usncs.h: New file.
4552 * sysdeps/ieee754/dbl-64/utan.h: New file.
4553 * sysdeps/ieee754/dbl-64/utan.tbl: New file.
4554 * sysdeps/i386/fpu/branred.c: New file.
4555 * sysdeps/i386/fpu/doasin.c: New file.
4556 * sysdeps/i386/fpu/dosincos.c: New file.
4557 * sysdeps/i386/fpu/halfulp.c: New file.
4558 * sysdeps/i386/fpu/mpa.c: New file.
4559 * sysdeps/i386/fpu/mpatan.c: New file.
4560 * sysdeps/i386/fpu/mpatan2.c: New file.
4561 * sysdeps/i386/fpu/mpexp.c: New file.
4562 * sysdeps/i386/fpu/mplog.c: New file.
4563 * sysdeps/i386/fpu/mpsqrt.c: New file.
4564 * sysdeps/i386/fpu/mptan.c: New file.
4565 * sysdeps/i386/fpu/sincos32.c: New file.
4566 * sysdeps/i386/fpu/slowexp.c: New file.
4567 * sysdeps/i386/fpu/slowpow.c: New file.
4568 * sysdeps/ia64/fpu/branred.c: New file.
4569 * sysdeps/ia64/fpu/doasin.c: New file.
4570 * sysdeps/ia64/fpu/dosincos.c: New file.
4571 * sysdeps/ia64/fpu/halfulp.c: New file.
4572 * sysdeps/ia64/fpu/mpa.c: New file.
4573 * sysdeps/ia64/fpu/mpatan.c: New file.
4574 * sysdeps/ia64/fpu/mpatan2.c: New file.
4575 * sysdeps/ia64/fpu/mpexp.c: New file.
4576 * sysdeps/ia64/fpu/mplog.c: New file.
4577 * sysdeps/ia64/fpu/mpsqrt.c: New file.
4578 * sysdeps/ia64/fpu/mptan.c: New file.
4579 * sysdeps/ia64/fpu/sincos32.c: New file.
4580 * sysdeps/ia64/fpu/slowexp.c: New file.
4581 * sysdeps/ia64/fpu/slowpow.c: New file.
4582 * sysdeps/m68k/fpu/branred.c: New file.
4583 * sysdeps/m68k/fpu/doasin.c: New file.
4584 * sysdeps/m68k/fpu/dosincos.c: New file.
4585 * sysdeps/m68k/fpu/halfulp.c: New file.
4586 * sysdeps/m68k/fpu/mpa.c: New file.
4587 * sysdeps/m68k/fpu/mpatan.c: New file.
4588 * sysdeps/m68k/fpu/mpatan2.c: New file.
4589 * sysdeps/m68k/fpu/mpexp.c: New file.
4590 * sysdeps/m68k/fpu/mplog.c: New file.
4591 * sysdeps/m68k/fpu/mpsqrt.c: New file.
4592 * sysdeps/m68k/fpu/mptan.c: New file.
4593 * sysdeps/m68k/fpu/sincos32.c: New file.
4594 * sysdeps/m68k/fpu/slowexp.c: New file.
4595 * sysdeps/m68k/fpu/slowpow.c: New file.
4597 * iconvdata/gconv-modules: Add a number of alias, mostly for IBM
4600 2001-03-11 Andreas Jaeger <aj@suse.de>
4602 * elf/elf.h (EM_*): Synch with official list.
4604 2001-03-07 David Mosberger <davidm@hpl.hp.com>
4606 * sysdeps/ia64/bits/fenv.h (FE_NONIEEE_ENV): New macro.
4608 2001-03-07 Jes Sorensen <jes@linuxcare.com>
4610 * sysdeps/unix/sysv/linux/ia64/ioperm.c (_ioperm): Remove unused
4611 variables addr & len.
4613 2001-02-22 Jes Sorensen <jes@linuxcare.com>
4615 * sysdeps/ia64/fpu/feenablxcpt.c (feenableexcept): Remove
4616 punctuation in asm constraint.
4618 2001-03-07 Mark Kettenis <kettenis@gnu.org>
4620 * resolv/netdb.h [__USE_GNU]: Define __need_timespec and include
4621 <time.h> to get definition of `struct timespec'.
4623 2001-03-08 Jakub Jelinek <jakub@redhat.com>
4625 * elf/rtld.c (dl_main): If tracing, warn about undefined symbols if
4626 LD_WARN=1, not if LD_WARN is unset.
4628 2001-03-07 Andreas Schwab <schwab@suse.de>
4630 * elf/ldconfig.h: Moved to ...
4631 * sysdeps/generic/ldconfig.h: ... here.
4632 * sysdeps/unix/sysv/linux/i386/ldconfig.h: New file.
4633 * sysdeps/unix/sysv/linux/m68k/ldconfig.h: New file.
4634 * sysdeps/unix/sysv/linux/ia64/ldconfig.h: New file.
4635 * elf/readlib.c (interpreters, known_libs): Use
4636 SYSDEP_KNOWN_INTERPRETER_NAMES and SYSDEP_KNOWN_LIBRARY_NAMES
4637 instead of hard coding old names.
4639 2001-03-09 Ulrich Drepper <drepper@redhat.com>
4641 * catgets/Makefile (generated): Add test-gencat.h.
4642 (sample.SJIS.cat): Also generate header.
4643 * catgets/sample.SJIS: Add new set and message, both with symbolic
4645 * catgets/test-gencat.sh: Also compare generated header with what
4648 2001-03-07 Jakub Jelinek <jakub@redhat.com>
4650 * catgets/gencat.c (read_input_file): Preserve properly symbolic
4653 2001-03-06 Andreas Jaeger <aj@suse.de>
4655 * sysdeps/s390/dl-machine.h (elf_machine_relplt): Removed, it's not
4657 (elf_machine_pltrel_p): Likewise.
4658 * sysdeps/powerpc/dl-machine.h: Likewise.
4659 * sysdeps/generic/dl-machine.h (elf_machine_pltrel_p): Likewise.
4661 2001-03-09 Ulrich Drepper <drepper@redhat.com>
4663 * sysdeps/unix/sysv/linux/arm/Dist: Add dl-procinfo.c and
4666 2001-03-05 Philip Blundell <philb@gnu.org>
4668 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c: New file.
4669 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h: New file.
4670 * sysdeps/unix/sysv/linux/arm/Makefile [subdir=elf]
4671 (sysdep-dl-routines, sysdep_routines, sysdep-rtld-routines): Add
4674 2001-03-09 Ulrich Drepper <drepper@redhat.com>
4676 * dlfcn/tstatexit.c (main): Don't perform the test if __dso_handle
4678 * dlfcn/tstcxaatexit.c (main): Likewise.
4680 2001-03-10 Andreas Jaeger <aj@suse.de>
4682 * sysdeps/i386/fpu/libm-test-ulps: Revert last patch.
4684 2001-03-09 Andreas Jaeger <aj@suse.de>
4686 * sysdeps/s390/dl-machine.h (elf_machine_matches_host): Handle
4687 both new and old EM_S390 values.
4688 (EM_S390_OLD): New constant.
4690 * elf/elf.h (EM_S390): Use official value.
4692 2001-03-09 Ulrich Drepper <drepper@redhat.com>
4694 * conform/data/sys/socket.h-data: Allow SO* symbols.
4696 2001-03-07 Andreas Schwab <schwab@suse.de>
4698 * sysdeps/ia64/fpu/Makefile: Modify sysdep_routines instead of
4699 routines, and sysdep-CPPFLAGS instead of CPPFLAGS.
4701 2001-03-07 Andreas Jaeger <aj@suse.de>
4703 * resolv/Makefile (routines): Only build gai_sigqueue when threads
4706 2001-03-07 Jakub Jelinek <jakub@redhat.com>
4708 * elf/ldconfig.c (_dl_sysdep_message): Remove.
4709 * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: Include
4711 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Likewise.
4713 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Use
4714 _dl_error_printf instead of _dl_sysdep_error.
4715 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
4716 * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h (_dl_procinfo):
4717 Use _dl_printf instead of _dl_sysdep_message.
4718 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h (_dl_procinfo):
4721 2001-03-06 Ben Collins <bcollins@debian.org>
4723 * manual/arith.texi (Integers): Fix documentation of fast and
4724 least integer typedefs.
4726 2001-03-06 Jakub Jelinek <jakub@redhat.com>
4728 * resolv/Depend: New file.
4729 * resolv/Makefile (extra-libs, tests): Build libanl and ga_test only
4730 when libpthread is built.
4732 2001-03-06 Andreas Jaeger <aj@suse.de>
4734 * sysdeps/i386/fpu/libm-test-ulps: Add some deltas.
4736 * sysdeps/sh/dl-machine.h (elf_machine_rela): Add missing comma.
4737 Patch by kaz Kojima <kkojima@rr.iij4u.or.jp>.
4739 2001-03-05 Ulrich Drepper <drepper@redhat.com>
4741 * stdlib/Versions: Remove __new_exitfn again. Not needed.
4743 2001-03-05 Andreas Jaeger <aj@suse.de>
4745 * stdlib/msort.c (qsort): Don't use alloca in a function call.
4747 2001-03-05 Ulrich Drepper <drepper@redhat.com>
4749 * sysdeps/unix/sysv/linux/bits/stat.h (__S_TYPEISMQ, __S_TYPEISSEM,
4750 __S_TYPEISSHM): Rewrite to enforce correct use the macros. They still
4752 * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
4753 * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
4754 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
4755 * sysdeps/unix/sysv/linux/m68k/bits/stat.h: Likewise.
4756 * sysdeps/unix/sysv/linux/mips/bits/stat.h: Likewise.
4757 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
4758 * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
4760 2001-03-04 Andreas Jaeger <aj@suse.de>
4762 * stdlib/longlong.h: Don't use multi-line strings.
4763 * iconvdata/tst-loading.c: Likewise.
4765 * csu/Makefile ($(objpfx)version-info.h): Don't use multi-line
4768 2001-03-04 Ulrich Drepper <drepper@redhat.com>
4770 * sysdeps/ia64/fpu/libm-test-ulps: Adjust for addition of lgammal.
4772 * rt/lio_listio.c: Add a few asserts.
4774 * elf/global.c: New file.
4775 * elf/globalmod1.c: New file.
4776 * elf/Makefile: Add rules to build and run global.
4778 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Define SI_ASYNCNL.
4779 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
4780 * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
4781 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
4782 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/siginfo.h: Likewise.
4784 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: New file.
4785 Contributed by Stephen L. Moshier <moshier@na-net.ornl.gov>.
4787 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Fix handling of boundary cases.
4789 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Always initialize sign variable.
4790 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
4792 * sysdeps/i386/fpu/libm-test-ulps: Adjust after addition of lgammal.
4794 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Fix typo in last change.
4796 2001-03-04 Andreas Jaeger <aj@suse.de>
4798 * resolv/tst-aton.c: Add testcase for IP with four periods.
4800 * resolv/inet_addr.c: Don't recognize an IP with four periods.
4801 Patch by Andre' Breiler <A.Breiler@gmx.net>.
4803 2001-02-27 Philip Blundell <pb@futuretv.com>
4805 * elf/elf.h: Add new ARM definitions from latest (B-01)
4806 specification. Correct naming of EF_ARM_ALIGN8 et al.
4808 2001-03-04 Ulrich Drepper <drepper@redhat.com>
4810 * stdio-common/tst-printf.sh: Remove bashisms.
4811 Patch by Matthew Clarke <Matthew_Clarke@mindlink.bc.ca>.
4813 2001-03-03 Ulrich Drepper <drepper@redhat.com>
4815 * Versions.def: Add libanl definition.
4816 * shlib-versions: Add entry for libanl.
4817 * resolv/Makefile (distribute): Add gai_misc.h and ga_test.c.
4818 (routines): Add gai_sigqueue.
4819 (extra-libs): Add libanl.
4820 (libanl-routines): New variable.
4821 Add rules to build libanl and ga_test.
4822 * resolv/Versions [libc] (GLIBC_2.2.3): Add __gai_sigqueue.
4823 [libanl]: New library.
4824 * resolv/netdb.h: Add definitions for libanl.
4825 * resolv/getaddrinfo_a.c: New file.
4826 * resolv/gai_cancel.c: New file.
4827 * resolv/gai_error.c: New file.
4828 * resolv/gai_misc.c: New file.
4829 * resolv/gai_misc.h: New file.
4830 * resolv/gai_notify.c: New file.
4831 * resolv/gai_suspend.c: New file.
4832 * resolv/ga_test.c: New file.
4833 * sysdeps/generic/gai_sigqueue.c: New file.
4834 * sysdeps/unix/sysv/linux/gai_sigqueue.c: New file.
4835 * sysdeps/generic/bits/siginfo.h: Allow __need_sigevent_t being defined
4836 and provide only that definition.
4837 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Likewise.
4838 * sysdeps/unix/sysv/linux/bits/siginfo.h: Likewise.
4839 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
4840 * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
4841 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
4842 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/siginfo.h: Likewise.
4844 * rt/aio_misc.c: Fix typos in comments.
4845 * rt/lio_listio.c: Pretty printing. Little optimization in request
4848 * elf/rtld.c: Remove commented out code.
4850 * sysdeps/unix/sysv/linux/linux_fsinfo.h (SHMFS_SUPER_MAGIC):
4851 Update for real 2.4 kernels.
4853 2001-03-01 Ulrich Drepper <drepper@redhat.com>
4855 * elf/dl-load.c: Pretty printing.
4857 * elf/dl-object.c (_dl_new_object): Don't add the loader's scope
4860 2001-02-28 Ulrich Drepper <drepper@redhat.com>
4862 * sysdeps/alpha/dl-machine.h (elf_machine_rela): Don't handle
4863 relocations which are not in ld.so if RTLD_BOOTSTRAP is defined.
4865 * sysdeps/powerpc/dl-machine.c (__process_machine_rela): Fix typo.
4867 * elf/dl-misc.c (_dl_debug_vdprintf): Fix typo visible on 64-bit
4870 * sysdeps/unix/sysv/linux/powerpc/sysdep.h (C_TEXT): Define.
4872 2001-02-27 Ulrich Drepper <drepper@redhat.com>
4874 * sysdeps/powerpc/elf/libc-start.c: Use new output functions and
4877 * elf/Versions [ld]: Don't export _dl_debug_message anymore. Export
4879 * elf/dl-misc.c: Remove definition of _dl_sysdep_output and
4880 _dl_debug_message. Define _dl_debug_vdprintf, _dl_debug_printf,
4881 _dl_debug_printf_c, and _dl_printf.
4882 * sysdeps/generic/ldsodefs.h: Don't declare _dl_sysdep_output,
4883 _dl_debug_message, _dl_sysdep_message, _dl_sysdep_error, and
4884 _dl_sysdep_fatal. Declare _dl_debug_printf, _dl_debug_printf_c,
4885 _dl_printf, _dl_error_printf, and _dl_fatal_printf.
4886 * elf/dl-close.c: Replace use of old output functions with the new
4888 * elf/dl-deps.c: Likewise.
4889 * elf/dl-error.c: Likewise.
4890 * elf/dl-fini.c: Likewise.
4891 * elf/dl-init.c: Likewise.
4892 * elf/dl-load.c: Likewise.
4893 * elf/dl-lookup.c: Likewise.
4894 * elf/dl-minimal.c: Likewise.
4895 * elf/dl-open.c: Likewise.
4896 * elf/dl-profile.c: Likewise.
4897 * elf/dl-reloc.c: Likewise.
4898 * elf/dl-version.c: Likewise.
4899 * elf/do-lookup.h: Likewise.
4900 * elf/rtld.c: Likewise.
4901 * sysdeps/generic/dl-cache.c: Likewise.
4902 * sysdeps/generic/dl-sysdep.c: Likewise.
4903 * sysdeps/generic/libc-start.c: Likewise.
4904 * sysdeps/i386/dl-machine.h: Likewise.
4905 * sysdeps/arm/dl-machine.h: Likewise.
4906 * sysdeps/hppa/dl-machine.h: Likewise.
4907 * sysdeps/m68k/dl-machine.h: Likewise.
4908 * sysdeps/powerpc/dl-machine.h: Likewise.
4909 * sysdeps/s390/dl-machine.h: Likewise.
4910 * sysdeps/sh/dl-machine.h: Likewise.
4911 * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
4912 * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
4913 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
4915 * sysdeps/generic/ldsodefs.h: Remove _dl_secure declaration.
4917 * dlfcn/Makefile: Don't run tstatexit test unless .hidden is
4918 supported by assembler.
4920 * sysdeps/generic/ldsodefs.h: Remove commented-out variable
4923 * elf/rtld.c: Little optimizations in handling _dl_lazy.
4925 * elf/cache.c (save_cache): Portability changes.
4926 * elf/dl-profile.c (_dl_start_profile): Likewise.
4928 * elf/sln.c: Cleanups. Remove arbitrary limits.
4930 * elf/dl-close.c: Replace _dl_debug_* variables with _dl_debug_mask.
4931 * elf/dl-deps.c: Likewise.
4932 * elf/dl-fini.c: Likewise.
4933 * elf/dl-init.c: Likewise.
4934 * elf/dl-load.c: Likewise.
4935 * elf/dl-lookup.c: Likewise.
4936 * elf/dl-open.c: Likewise.
4937 * elf/dl-reloc.c: Likewise.
4938 * elf/dl-support.c: Likewise.
4939 * elf/dl-version.c: Likewise.
4940 * elf/do-lookup.h: Likewise.
4941 * elf/rtld.c: Likewise.
4942 * sysdeps/generic/dl-cache.c: Likewise.
4943 * sysdeps/generic/ldsodefs.h: Likewise.
4944 * sysdeps/generic/libc-start.c: Likewise.
4945 * elf/Versions: Don't export _dl_debug_impcalls and _dl_debug_files.
4946 Export _dl_debug_mask.
4947 * Versions.def: Define GLIBC_2.2.3 for ld.
4949 2001-02-26 Greg McGary <greg@mcgary.org>
4951 * sysdeps/unix/make-syscalls.sh (ptr): Handle `V' keyletter.
4953 2001-02-26 Paul Eggert <eggert@twinsun.com>
4955 Modify mkstemp.c and tempname.c so that they can be used by
4956 GNU applications on non-glibc platforms.
4958 * misc/mkstemp.c (__GT_FILE): Define to zero if not defined.
4960 * sysdeps/posix/tempname.c: Include <config.h> if HAVE_CONFIG_H.
4961 Include <stddef.h>, <stdint.h>, <string.h> only if
4962 STDC_HEADERS || _LIBC.
4963 Include <fcntl.h> only if HAVE_FCNTL_H || _LIBC.
4964 Include <unistd.h> only if HAVE_UNISTD_H || _LIBC.
4965 Include <sys/time.h> only if HAVE_SYS_TIME_H || _LIBC.
4966 (__set_errno): Define this macro if <errno.h> doesn't.
4967 (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
4968 Define these macros if <stdio.h> doesn't.
4969 (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
4970 Define these macros if <sys/stat.h> doesn't.
4971 Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
4972 (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64,
4973 lxstat64, __xstat64): Define if not _LIBC.
4974 (struct_stat64): New macro.
4975 (direxists, __gen_tempname): Use it, to avoid a
4976 portability problem with Solaris 8.
4977 (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
4978 (__gen_tempname): Invoke gettimeofday only if
4979 HAVE_GETTIMEOFDAY || _LIBC; otherwise, fall back on plain "time".
4980 Use portable macros like S_IRUSR | S_IWUSR rather than nonportable
4981 octal values like 0600.
4983 2001-02-26 Ulrich Drepper <drepper@redhat.com>
4985 * sysdeps/ieee754/ldbl-96/e_jnl.c: New file.
4986 Contributed by Stephen L. Moshier <moshier@na-net.ornl.gov>.
4988 * sysdeps/i386/fpu/libm-test-ulps: Update for jnl and ynl introduction.
4989 * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
4991 * posix/wordexp-test.c (testit): Remove warnings.
4993 * dlfcn/Makefile (distribute): Add modatexit.c and modcxaatexit.c.
4994 (tests): Add tstatexit and tstcxaatexit.
4995 (module-names): Add modatexit and modcxaatexit.
4996 Add rules to build and run tstatexit and tstcxaatexit.
4997 * dlfcn/modatexit.c: New file.
4998 * dlfcn/modcxaatexit.c: New file.
4999 * dlfcn/tstatexit.c: New file.
5000 * dlfcn/tstcxaatexit.c: New file.
5002 * io/Makefile: Pass -DHAVE_DOT_HIDDEN to stat and mknod functions if
5003 .hidden is available.
5004 * io/stat.c: If .hidden is available use it to avoid exporting
5006 * io/fstat.c: Likewise.
5007 * io/lstat.c: Likewise.
5008 * io/stat64.c: Likewise.
5009 * io/fstat64.c: Likewise.
5010 * io/lstat64.c: Likewise.
5011 * sysdeps/generic/mknod.c: Likewise.
5013 * malloc/mtrace.c: Use __cxa_atexit and not atexit.
5014 * sysdeps/generic/bb_init_func.c: Likewise.
5015 * sysdeps/generic/libc-start.c: Likewise.
5017 * stdlib/atexit.c (__new_exitfn): Move to cxa_atexit.c.
5018 (atexit): Implement using __cxa_atexit.
5019 Use .hidden if availble to avoid exporting atexit.
5020 * stdlib/cxa_atexit.c (__new_exitfn): Moved to here from atexit.c.
5021 * stdlib/Versions: Export __new_exitfn for GLIBC_2.2.3.
5022 * stdlib/Makefile (routines): Add old_atexit.
5023 (static-only-routines): Add atexit.
5024 Pass -DHAVE_DOT_HIDDEN for atexit.c if .hidden is available.
5025 * stdlib/old_atexit.c: New file.
5027 * intl/Makefile: Remove bogus endif.
5029 2001-02-26 Andreas Jaeger <aj@suse.de>
5031 * iconvdata/Makefile (tests): Fix typo in last patch.
5033 * intl/Makefile (tests): Run mtrace-tst-gettext only when perl is
5035 Reported by Achim Gottinger <achim@gentoo.org>.
5037 2001-02-25 Andreas Jaeger <aj@suse.de>
5039 * intl/Makefile (plural.c): Reorder rules so that they work if
5040 BISON doesn't exist.
5042 2001-02-25 Ulrich Drepper <drepper@redhat.com>
5044 * intl/locale.alias: Don't use nb_NO but define aliases for it.
5046 2001-02-23 Ulrich Drepper <drepper@redhat.com>
5048 * sysdeps/i386/strtok.S: Continue to return NULL after the first
5051 2001-02-23 Andreas Jaeger <aj@suse.de>
5053 * string/tester.c (test_strtok_r): Add testcase.
5054 (test_strtok_r): Always initialize cp for proper checking.
5056 * sysdeps/generic/strtok.c (strtok): Handle case of first strtok
5057 returning NULL correctly.
5058 Patch by Fumitoshi UKAI <ukai@debian.or.jp>.
5059 * sysdeps/generic/strtok_r.c (__strtok_r): Likewise.
5061 2001-02-23 Ulrich Drepper <drepper@redhat.com>
5063 * sysdeps/unix/sysv/aix/bits/types.h: Define __need_NULL before
5064 including <stddef.h>.
5065 * sysdeps/unix/sysv/aix/write.c: Define alias __libc_write.
5066 * include/libc-symbols.h (weak_alias): Don't use .weak if
5067 HAVE_ASM_GLOBAL_DOT_NAME is defined.
5068 Patches by Michael Keezer <mkeezer@redhat.com>.
5070 * sysdeps/generic/ftime.c: Don't include <sys/time.h> at all.
5071 Patch by Michael Keezer <mkeezer@redhat.com>.
5073 * sysdeps/unix/sysv/aix/Dist: Remove restf.S and savef.S.
5074 * sysdeps/unix/sysv/aix/Makefile [$(subdir) == misc]
5075 (sysdep_routines): Remove restf.S and savef.S.
5076 * sysdeps/unix/sysv/aix/restf.S: Removed.
5077 * sysdeps/unix/sysv/aix/savef.S: Removed.
5078 * sysdeps/powerpc/fprrest.S: Use C_TEXT to define label. Also define
5079 alternative names used on some platforms.
5080 * sysdeps/powerpc/fprsave.S: Likewise.
5081 * sysdeps/powerpc/gprrest0.S: Likewise.
5082 * sysdeps/powerpc/gprrest1.S: Likewise.
5083 * sysdeps/powerpc/gprsave0.S: Likewise.
5084 * sysdeps/powerpc/gprsave1.S: Likewise.
5085 Patch by Michael Keezer <mkeezer@redhat.com>.
5087 2001-02-22 Ulrich Drepper <drepper@redhat.com>
5089 * sysdeps/i386/elf/start.S (_fp_hw): Actually define label.
5091 2001-02-22 Andreas Jaeger <aj@suse.de>
5093 * string/tst-strtok.c (main): Fix error messages.
5095 2001-02-22 Andreas Jaeger <aj@suse.de>
5097 * math/Makefile: Remove omit-long-double-fcts.
5099 2001-02-18 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
5101 * sysdeps/mips/bsd-_setjmp.S (_setjmp): Reorder instructions to
5102 avoid problems on MIPS I.
5103 * sysdeps/mips/bsd-setjmp.S (setjmp): Likewise.
5105 * sysdeps/mips/dl-machine.h (RTLD_START): Remove duplicate ".set
5108 2001-02-21 Ulrich Drepper <drepper@redhat.com>
5110 * posix/fnmatch_loop.c: Handle ranges outside glibc correctly.
5112 * sysdeps/generic/ftime.c: Include <time.h>.
5114 * configure.in: Don't check for libgd if user passed --without-gd.
5115 Patch by Achim Gottinger <achim@gentoo.org>.
5117 * sysdeps/i386/i686/strtok.S: Continue to return NULL after the
5118 first time this happened.
5119 * string/Makefile (tests): Add tst-strtok.
5121 2001-02-21 Andreas Jaeger <aj@suse.de>
5123 * string/tst-strtok.c: New testcase, reported by
5124 Andrew Church <achurch@achurch.org>.
5126 2001-02-20 Ulrich Drepper <drepper@redhat.com>
5128 * libio/iofwide.c: Remove fwide alias.
5130 2001-02-20 Andreas Jaeger <aj@suse.de>
5132 * iconvdata/Makefile (tests): Only run mtrace-tst-loading if perl
5134 Reported by Achim Gottinger <achim@gentoo.org>.
5136 2001-02-19 Ulrich Drepper <drepper@redhat.com>
5138 * iconv/tst-iconv1.c (main): Remove debugging code.
5140 * sysdeps/ieee754/flt-32/e_powf.c: Handle x == +-1 correctly.
5141 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
5143 * sysdeps/generic/e_scalb.c: Set invalid exception for invalid
5145 * sysdeps/generic/e_scalbf.c: Likewise.
5146 * sysdeps/generic/e_scalbl.c: Likewise.
5148 * sysdeps/ia64/fpu/Makefile (libm-sysdep-routines): Add libm_error,
5149 libm_frexp4, libm_frexp4f, libm_frexp4l, and all the functions also
5151 (routines): Replace libm_error with libc_libm_error.
5152 * sysdeps/ia64/fpu/Dist: Add libc_libm_error.c.
5153 * sysdeps/ia64/fpu/libc_libm_error.c: New file.
5155 2001-02-18 Mark Kettenis <kettenis@gnu.org>
5157 * malloc/mtrace.c [USE_IN_LIBIO]: Define fopen as _IO_fopen64.
5158 (mtrace): Revert 2001-02-13 patch: use fopen instead of fopen64.
5160 2001-02-17 H.J. Lu <hjl@gnu.org>
5162 * sysdeps/unix/sysv/linux/ia64/clone2.S: Use clone2 and don't use
5163 scratch registers across the system call.
5165 2001-02-19 Andreas Jaeger <aj@suse.de>
5167 * malloc/Makefile (tests): Run mtrace only when perl is available.
5168 Reported by Achim Gottinger <achim@gentoo.org>.
5170 2001-02-19 Ulrich Drepper <drepper@redhat.com>
5172 * sysdeps/ieee754/ldbl-96/e_j1l.c: New file.
5173 Contributed by Stephen L. Moshier <moshier@na-net.ornl.gov>.
5175 * sysdeps/i386/fpu/libm-test-ulps: Adjust error values for j1 and y1.
5176 * sysdeps/ia64/fpu/libm-test-ulps: Adjust error values for y1.
5177 * math/libm-test.inc (j1_test): Mark constants as long double.
5178 (jn_test): Likewise.
5179 (y1_test): Likewise.
5180 (yn_test): Likewise.
5182 * libio/iogetline.c: Move return until after last statement.
5184 * localedata/show-ucs-data.c: Don't show < > for better readability.
5186 * sysdeps/ia64/fpu/Dist: New file.
5187 * sysdeps/ia64/fpu/Makefile: New file.
5188 * sysdeps/ia64/fpu/Versions: New file.
5189 * sysdeps/ia64/fpu/e_acos.S: New file.
5190 * sysdeps/ia64/fpu/e_acosf.S: New file.
5191 * sysdeps/ia64/fpu/e_acosl.S: New file.
5192 * sysdeps/ia64/fpu/e_asin.S: New file.
5193 * sysdeps/ia64/fpu/e_asinf.S: New file.
5194 * sysdeps/ia64/fpu/e_asinl.S: New file.
5195 * sysdeps/ia64/fpu/e_atan2.S: New file.
5196 * sysdeps/ia64/fpu/e_atan2f.S: New file.
5197 * sysdeps/ia64/fpu/e_atan2l.c: New file.
5198 * sysdeps/ia64/fpu/e_cosh.S: New file.
5199 * sysdeps/ia64/fpu/e_coshf.S: New file.
5200 * sysdeps/ia64/fpu/e_coshl.S: New file.
5201 * sysdeps/ia64/fpu/e_exp.S: New file.
5202 * sysdeps/ia64/fpu/e_expf.S: New file.
5203 * sysdeps/ia64/fpu/e_expl.c: New file.
5204 * sysdeps/ia64/fpu/e_fmod.S: New file.
5205 * sysdeps/ia64/fpu/e_fmodf.S: New file.
5206 * sysdeps/ia64/fpu/e_fmodl.S: New file.
5207 * sysdeps/ia64/fpu/e_hypot.S: New file.
5208 * sysdeps/ia64/fpu/e_hypotf.S: New file.
5209 * sysdeps/ia64/fpu/e_hypotl.S: New file.
5210 * sysdeps/ia64/fpu/e_log.S: New file.
5211 * sysdeps/ia64/fpu/e_log10.c: New file.
5212 * sysdeps/ia64/fpu/e_log10f.c: New file.
5213 * sysdeps/ia64/fpu/e_log10l.c: New file.
5214 * sysdeps/ia64/fpu/e_logf.S: New file.
5215 * sysdeps/ia64/fpu/e_logl.c: New file.
5216 * sysdeps/ia64/fpu/e_pow.S: New file.
5217 * sysdeps/ia64/fpu/e_powf.S: New file.
5218 * sysdeps/ia64/fpu/e_powl.S: New file.
5219 * sysdeps/ia64/fpu/e_rem_pio2.c: New file.
5220 * sysdeps/ia64/fpu/e_rem_pio2f.c: New file.
5221 * sysdeps/ia64/fpu/e_remainder.S: New file.
5222 * sysdeps/ia64/fpu/e_remainderf.S: New file.
5223 * sysdeps/ia64/fpu/e_remainderl.S: New file.
5224 * sysdeps/ia64/fpu/e_scalb.S: New file.
5225 * sysdeps/ia64/fpu/e_scalbf.S: New file.
5226 * sysdeps/ia64/fpu/e_scalbl.S: New file.
5227 * sysdeps/ia64/fpu/e_sinh.S: New file.
5228 * sysdeps/ia64/fpu/e_sinhf.S: New file.
5229 * sysdeps/ia64/fpu/e_sinhl.S: New file.
5230 * sysdeps/ia64/fpu/e_sqrt.S: New file.
5231 * sysdeps/ia64/fpu/e_sqrtf.S: New file.
5232 * sysdeps/ia64/fpu/e_sqrtl.S: New file.
5233 * sysdeps/ia64/fpu/k_rem_pio2.c: New file.
5234 * sysdeps/ia64/fpu/k_rem_pio2f.c: New file.
5235 * sysdeps/ia64/fpu/k_rem_pio2l.c: New file.
5236 * sysdeps/ia64/fpu/libm_atan2_reg.S: New file.
5237 * sysdeps/ia64/fpu/libm_error.c: New file.
5238 * sysdeps/ia64/fpu/libm_frexp4.S: New file.
5239 * sysdeps/ia64/fpu/libm_frexp4f.S: New file.
5240 * sysdeps/ia64/fpu/libm_frexp4l.S: New file.
5241 * sysdeps/ia64/fpu/libm_reduce.S: New file.
5242 * sysdeps/ia64/fpu/libm_support.h: New file.
5243 * sysdeps/ia64/fpu/libm_tan.S: New file.
5244 * sysdeps/ia64/fpu/s_atan.S: New file.
5245 * sysdeps/ia64/fpu/s_atanf.S: New file.
5246 * sysdeps/ia64/fpu/s_atanl.S: New file.
5247 * sysdeps/ia64/fpu/s_cbrt.S: New file.
5248 * sysdeps/ia64/fpu/s_cbrtf.S: New file.
5249 * sysdeps/ia64/fpu/s_cbrtl.S: New file.
5250 * sysdeps/ia64/fpu/s_ceil.S: New file.
5251 * sysdeps/ia64/fpu/s_ceilf.S: New file.
5252 * sysdeps/ia64/fpu/s_ceill.S: New file.
5253 * sysdeps/ia64/fpu/s_cos.S: New file.
5254 * sysdeps/ia64/fpu/s_cosf.S: New file.
5255 * sysdeps/ia64/fpu/s_cosl.S: New file.
5256 * sysdeps/ia64/fpu/s_expm1.S: New file.
5257 * sysdeps/ia64/fpu/s_expm1f.S: New file.
5258 * sysdeps/ia64/fpu/s_expm1l.S: New file.
5259 * sysdeps/ia64/fpu/s_floor.S: New file.
5260 * sysdeps/ia64/fpu/s_floorf.S: New file.
5261 * sysdeps/ia64/fpu/s_floorl.S: New file.
5262 * sysdeps/ia64/fpu/s_frexp.c: New file.
5263 * sysdeps/ia64/fpu/s_frexpf.c: New file.
5264 * sysdeps/ia64/fpu/s_frexpl.c: New file.
5265 * sysdeps/ia64/fpu/s_ilogb.S: New file.
5266 * sysdeps/ia64/fpu/s_ilogbf.S: New file.
5267 * sysdeps/ia64/fpu/s_ilogbl.S: New file.
5268 * sysdeps/ia64/fpu/s_ldexp.S: New file.
5269 * sysdeps/ia64/fpu/s_ldexpf.S: New file.
5270 * sysdeps/ia64/fpu/s_ldexpl.S: New file.
5271 * sysdeps/ia64/fpu/s_log1p.S: New file.
5272 * sysdeps/ia64/fpu/s_log1pf.S: New file.
5273 * sysdeps/ia64/fpu/s_log1pl.S: New file.
5274 * sysdeps/ia64/fpu/s_logb.S: New file.
5275 * sysdeps/ia64/fpu/s_logbf.S: New file.
5276 * sysdeps/ia64/fpu/s_logbl.S: New file.
5277 * sysdeps/ia64/fpu/s_matherrf.c: New file.
5278 * sysdeps/ia64/fpu/s_matherrl.c: New file.
5279 * sysdeps/ia64/fpu/s_modf.S: New file.
5280 * sysdeps/ia64/fpu/s_modff.S: New file.
5281 * sysdeps/ia64/fpu/s_modfl.S: New file.
5282 * sysdeps/ia64/fpu/s_nearbyint.S: New file.
5283 * sysdeps/ia64/fpu/s_nearbyintf.S: New file.
5284 * sysdeps/ia64/fpu/s_nearbyintl.S: New file.
5285 * sysdeps/ia64/fpu/s_rint.S: New file.
5286 * sysdeps/ia64/fpu/s_rintf.S: New file.
5287 * sysdeps/ia64/fpu/s_rintl.S: New file.
5288 * sysdeps/ia64/fpu/s_round.S: New file.
5289 * sysdeps/ia64/fpu/s_roundf.S: New file.
5290 * sysdeps/ia64/fpu/s_roundl.S: New file.
5291 * sysdeps/ia64/fpu/s_scalbn.S: New file.
5292 * sysdeps/ia64/fpu/s_scalbnf.S: New file.
5293 * sysdeps/ia64/fpu/s_scalbnl.S: New file.
5294 * sysdeps/ia64/fpu/s_significand.S: New file.
5295 * sysdeps/ia64/fpu/s_significandf.S: New file.
5296 * sysdeps/ia64/fpu/s_significandl.S: New file.
5297 * sysdeps/ia64/fpu/s_sin.c: New file.
5298 * sysdeps/ia64/fpu/s_sincos.c: New file.
5299 * sysdeps/ia64/fpu/s_sincosf.c: New file.
5300 * sysdeps/ia64/fpu/s_sincosl.c: New file.
5301 * sysdeps/ia64/fpu/s_sinf.c: New file.
5302 * sysdeps/ia64/fpu/s_sinl.c: New file.
5303 * sysdeps/ia64/fpu/s_tan.S: New file.
5304 * sysdeps/ia64/fpu/s_tanf.S: New file.
5305 * sysdeps/ia64/fpu/s_tanl.S: New file.
5306 * sysdeps/ia64/fpu/s_trunc.S: New file.
5307 * sysdeps/ia64/fpu/s_truncf.S: New file.
5308 * sysdeps/ia64/fpu/s_truncl.S: New file.
5309 * sysdeps/ia64/fpu/w_acos.c: New file.
5310 * sysdeps/ia64/fpu/w_acosf.c: New file.
5311 * sysdeps/ia64/fpu/w_acosl.c: New file.
5312 * sysdeps/ia64/fpu/w_asin.c: New file.
5313 * sysdeps/ia64/fpu/w_asinf.c: New file.
5314 * sysdeps/ia64/fpu/w_asinl.c: New file.
5315 * sysdeps/ia64/fpu/w_atan2.c: New file.
5316 * sysdeps/ia64/fpu/w_atan2f.c: New file.
5317 * sysdeps/ia64/fpu/w_atan2l.c: New file.
5318 * sysdeps/ia64/fpu/w_cosh.c: New file.
5319 * sysdeps/ia64/fpu/w_coshf.c: New file.
5320 * sysdeps/ia64/fpu/w_coshl.c: New file.
5321 * sysdeps/ia64/fpu/w_exp.c: New file.
5322 * sysdeps/ia64/fpu/w_expf.c: New file.
5323 * sysdeps/ia64/fpu/w_fmod.c: New file.
5324 * sysdeps/ia64/fpu/w_fmodf.c: New file.
5325 * sysdeps/ia64/fpu/w_fmodl.c: New file.
5326 * sysdeps/ia64/fpu/w_hypot.c: New file.
5327 * sysdeps/ia64/fpu/w_hypotf.c: New file.
5328 * sysdeps/ia64/fpu/w_hypotl.c: New file.
5329 * sysdeps/ia64/fpu/w_log.c: New file.
5330 * sysdeps/ia64/fpu/w_log10.c: New file.
5331 * sysdeps/ia64/fpu/w_log10f.c: New file.
5332 * sysdeps/ia64/fpu/w_log10l.c: New file.
5333 * sysdeps/ia64/fpu/w_logf.c: New file.
5334 * sysdeps/ia64/fpu/w_logl.c: New file.
5335 * sysdeps/ia64/fpu/w_pow.c: New file.
5336 * sysdeps/ia64/fpu/w_powf.c: New file.
5337 * sysdeps/ia64/fpu/w_powl.c: New file.
5338 * sysdeps/ia64/fpu/w_remainder.c: New file.
5339 * sysdeps/ia64/fpu/w_remainderf.c: New file.
5340 * sysdeps/ia64/fpu/w_remainderl.c: New file.
5341 * sysdeps/ia64/fpu/w_scalb.c: New file.
5342 * sysdeps/ia64/fpu/w_scalbf.c: New file.
5343 * sysdeps/ia64/fpu/w_scalbl.c: New file.
5344 * sysdeps/ia64/fpu/w_sqrt.c: New file.
5345 * sysdeps/ia64/fpu/w_sqrtf.c: New file.
5346 * sysdeps/ia64/fpu/w_sqrtl.c: New file.
5347 * sysdeps/ia64/fpu/libm-test-ulps: Adjust for long double
5349 * sysdeps/ia64/fpu/bits/mathdef.h: Correct float_t and double_t types.
5350 Change FP_ILOGBNAN for new implementation.
5351 * Verions.def: Add 2.2.3 versions.
5353 2001-02-18 Ulrich Drepper <drepper@redhat.com>
5355 * math/libm-test.inc (scalb_test): Require invalid exception being
5356 raised for invalid parameters.
5357 * sysdeps/i386/fpu/e_scalb.S: Raise invalid exception if necessary.
5358 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
5359 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
5361 2001-02-18 Mark Kettenis <kettenis@gnu.org>
5363 * sysdeps/mach/getsysstats.c (__get_phys_pages): Change return
5365 (__get_avphys_pages): Likewise.
5367 2001-02-18 Ulrich Drepper <drepper@redhat.com>
5369 * math/libm-test.inc (pow_test): Correct expected results for x == +-1.
5370 * sysdeps/i386/fpu/e_pow.S: Handle x == +-1 correctly.
5371 * sysdeps/i386/fpu/e_powf.S: Likewise.
5372 * sysdeps/i386/fpu/e_powl.S: Likewise.
5374 * sysdeps/i386/fpu/bits/mathinline.h: Remove pow inline code.
5376 2001-02-17 Ulrich Drepper <drepper@redhat.com>
5378 * math/Makefile (libm-calls): It's e_exp2 not s_exp2.
5380 * sysdeps/generic/s_exp2l.c: Renamed to...
5381 * sysdeps/generic/e_exp2l.c: ...this. New file.
5382 * sysdeps/i386/fpu/s_exp2.S: Renamed to...
5383 * sysdeps/i386/fpu/e_exp2.S: ...this. New file.
5384 * sysdeps/i386/fpu/s_exp2f.S: Renamed to...
5385 * sysdeps/i386/fpu/e_exp2f.S: ...this. New file.
5386 * sysdeps/i386/fpu/s_exp2l.S: Renamed to...
5387 * sysdeps/i386/fpu/e_exp2l.S: ...this. New file.
5388 * sysdeps/ieee754/flt-32/s_exp2f.c: Renamed to...
5389 * sysdeps/ieee754/flt-32/e_exp2f.c: ...this. New file.
5390 * sysdeps/ieee754/dbl-64/s_exp2.c: Renamed to...
5391 * sysdeps/ieee754/dbl-64/e_exp2.c: ...this. New file.
5392 * sysdeps/m68k/fpu/s_exp2.c: Renamed to...
5393 * sysdeps/m68k/fpu/e_exp2.c: ...this. New file.
5394 * sysdeps/m68k/fpu/s_exp2f.c: Renamed to...
5395 * sysdeps/m68k/fpu/e_exp2f.c: ...this. New file.
5396 * sysdeps/m68k/fpu/s_exp2l.c: Renamed to...
5397 * sysdeps/m68k/fpu/e_exp2l.c: ...this. New file.
5399 2001-02-17 Andreas Jaeger <aj@suse.de>
5401 * configure.in: Allow gcc 3.
5403 2001-02-16 Ulrich Drepper <drepper@redhat.com>
5405 * math/w_acos.c: Move to ...
5406 * sysdeps/generic/w_acos.c: ...here. New file.
5407 * math/w_acosf.c: Move to ...
5408 * sysdeps/generic/w_acosf.c: ...here. New file.
5409 * math/w_acosh.c: Move to ...
5410 * sysdeps/generic/w_acosh.c: ...here. New file.
5411 * math/w_acoshf.c: Move to ...
5412 * sysdeps/generic/w_acoshf.c: ...here. New file.
5413 * math/w_acoshl.c: Move to ...
5414 * sysdeps/generic/w_acoshl.c: ...here. New file.
5415 * math/w_acosl.c: Move to ...
5416 * sysdeps/generic/w_acosl.c: ...here. New file.
5417 * math/w_asin.c: Move to ...
5418 * sysdeps/generic/w_asin.c: ...here. New file.
5419 * math/w_asinf.c: Move to ...
5420 * sysdeps/generic/w_asinf.c: ...here. New file.
5421 * math/w_asinl.c: Move to ...
5422 * sysdeps/generic/w_asinl.c: ...here. New file.
5423 * math/w_atan2.c: Move to ...
5424 * sysdeps/generic/w_atan2.c: ...here. New file.
5425 * math/w_atan2f.c: Move to ...
5426 * sysdeps/generic/w_atan2f.c: ...here. New file.
5427 * math/w_atan2l.c: Move to ...
5428 * sysdeps/generic/w_atan2l.c: ...here. New file.
5429 * math/w_atanh.c: Move to ...
5430 * sysdeps/generic/w_atanh.c: ...here. New file.
5431 * math/w_atanhf.c: Move to ...
5432 * sysdeps/generic/w_atanhf.c: ...here. New file.
5433 * math/w_atanhl.c: Move to ...
5434 * sysdeps/generic/w_atanhl.c: ...here. New file.
5435 * math/w_cosh.c: Move to ...
5436 * sysdeps/generic/w_cosh.c: ...here. New file.
5437 * math/w_coshf.c: Move to ...
5438 * sysdeps/generic/w_coshf.c: ...here. New file.
5439 * math/w_coshl.c: Move to ...
5440 * sysdeps/generic/w_coshl.c: ...here. New file.
5441 * math/w_drem.c: Move to ...
5442 * sysdeps/generic/w_drem.c: ...here. New file.
5443 * math/w_dremf.c: Move to ...
5444 * sysdeps/generic/w_dremf.c: ...here. New file.
5445 * math/w_dreml.c: Move to ...
5446 * sysdeps/generic/w_dreml.c: ...here. New file.
5447 * math/w_exp10.c: Move to ...
5448 * sysdeps/generic/w_exp10.c: ...here. New file.
5449 * math/w_exp10f.c: Move to ...
5450 * sysdeps/generic/w_exp10f.c: ...here. New file.
5451 * math/w_exp10l.c: Move to ...
5452 * sysdeps/generic/w_exp10l.c: ...here. New file.
5453 * math/w_exp2.c: Move to ...
5454 * sysdeps/generic/w_exp2.c: ...here. New file.
5455 * math/w_exp2f.c: Move to ...
5456 * sysdeps/generic/w_exp2f.c: ...here. New file.
5457 * math/w_exp2l.c: Move to ...
5458 * sysdeps/generic/w_exp2l.c: ...here. New file.
5459 * math/w_fmod.c: Move to ...
5460 * sysdeps/generic/w_fmod.c: ...here. New file.
5461 * math/w_fmodf.c: Move to ...
5462 * sysdeps/generic/w_fmodf.c: ...here. New file.
5463 * math/w_fmodl.c: Move to ...
5464 * sysdeps/generic/w_fmodl.c: ...here. New file.
5465 * math/w_hypot.c: Move to ...
5466 * sysdeps/generic/w_hypot.c: ...here. New file.
5467 * math/w_hypotf.c: Move to ...
5468 * sysdeps/generic/w_hypotf.c: ...here. New file.
5469 * math/w_hypotl.c: Move to ...
5470 * sysdeps/generic/w_hypotl.c: ...here. New file.
5471 * math/w_j0.c: Move to ...
5472 * sysdeps/generic/w_j0.c: ...here. New file.
5473 * math/w_j0f.c: Move to ...
5474 * sysdeps/generic/w_j0f.c: ...here. New file.
5475 * math/w_j0l.c: Move to ...
5476 * sysdeps/generic/w_j0l.c: ...here. New file.
5477 * math/w_j1.c: Move to ...
5478 * sysdeps/generic/w_j1.c: ...here. New file.
5479 * math/w_j1f.c: Move to ...
5480 * sysdeps/generic/w_j1f.c: ...here. New file.
5481 * math/w_j1l.c: Move to ...
5482 * sysdeps/generic/w_j1l.c: ...here. New file.
5483 * math/w_jn.c: Move to ...
5484 * sysdeps/generic/w_jn.c: ...here. New file.
5485 * math/w_jnf.c: Move to ...
5486 * sysdeps/generic/w_jnf.c: ...here. New file.
5487 * math/w_jnl.c: Move to ...
5488 * sysdeps/generic/w_jnl.c: ...here. New file.
5489 * math/w_lgamma.c: Move to ...
5490 * sysdeps/generic/w_lgamma.c: ...here. New file.
5491 * math/w_lgammaf.c: Move to ...
5492 * sysdeps/generic/w_lgammaf.c: ...here. New file.
5493 * math/w_lgammaf_r.c: Move to ...
5494 * sysdeps/generic/w_lgammaf_r.c: ...here. New file.
5495 * math/w_lgammal.c: Move to ...
5496 * sysdeps/generic/w_lgammal.c: ...here. New file.
5497 * math/w_lgammal_r.c: Move to ...
5498 * sysdeps/generic/w_lgammal_r.c: ...here. New file.
5499 * math/w_lgamma_r.c: Move to ...
5500 * sysdeps/generic/w_lgamma_r.c: ...here. New file.
5501 * math/w_log10.c: Move to ...
5502 * sysdeps/generic/w_log10.c: ...here. New file.
5503 * math/w_log10f.c: Move to ...
5504 * sysdeps/generic/w_log10f.c: ...here. New file.
5505 * math/w_log10l.c: Move to ...
5506 * sysdeps/generic/w_log10l.c: ...here. New file.
5507 * math/w_log.c: Move to ...
5508 * sysdeps/generic/w_log.c: ...here. New file.
5509 * math/w_logf.c: Move to ...
5510 * sysdeps/generic/w_logf.c: ...here. New file.
5511 * math/w_logl.c: Move to ...
5512 * sysdeps/generic/w_logl.c: ...here. New file.
5513 * math/w_pow.c: Move to ...
5514 * sysdeps/generic/w_pow.c: ...here. New file.
5515 * math/w_powf.c: Move to ...
5516 * sysdeps/generic/w_powf.c: ...here. New file.
5517 * math/w_powl.c: Move to ...
5518 * sysdeps/generic/w_powl.c: ...here. New file.
5519 * math/w_remainder.c: Move to ...
5520 * sysdeps/generic/w_remainder.c: ...here. New file.
5521 * math/w_remainderf.c: Move to ...
5522 * sysdeps/generic/w_remainderf.c: ...here. New file.
5523 * math/w_remainderl.c: Move to ...
5524 * sysdeps/generic/w_remainderl.c: ...here. New file.
5525 * math/w_scalb.c: Move to ...
5526 * sysdeps/generic/w_scalb.c: ...here. New file.
5527 * math/w_scalbf.c: Move to ...
5528 * sysdeps/generic/w_scalbf.c: ...here. New file.
5529 * math/w_scalbl.c: Move to ...
5530 * sysdeps/generic/w_scalbl.c: ...here. New file.
5531 * math/w_sinh.c: Move to ...
5532 * sysdeps/generic/w_sinh.c: ...here. New file.
5533 * math/w_sinhf.c: Move to ...
5534 * sysdeps/generic/w_sinhf.c: ...here. New file.
5535 * math/w_sinhl.c: Move to ...
5536 * sysdeps/generic/w_sinhl.c: ...here. New file.
5537 * math/w_sqrtl.c: Move to ...
5538 * sysdeps/generic/w_sqrtl.c: ...here. New file.
5539 * math/w_tgamma.c: Move to ...
5540 * sysdeps/generic/w_tgamma.c: ...here. New file.
5541 * math/w_tgammaf.c: Move to ...
5542 * sysdeps/generic/w_tgammaf.c: ...here. New file.
5543 * math/w_tgammal.c: Move to ...
5544 * sysdeps/generic/w_tgammal.c: ...here. New file.
5546 * locale/programs/ld-address.c (address_finish): Add 'S' to allow
5547 formats for postal_fmt.
5549 2001-02-16 Jakub Jelinek <jakub@redhat.com>
5551 * sysdeps/unix/sysv/linux/alpha/syscalls.list (ftruncate): Add
5552 __ftruncate64 alias.
5553 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (ftruncate):
5556 2001-02-15 David Mosberger <davidm@hpl.hp.com>
5558 * sysdeps/unix/sysv/linux/ia64/__longjmp.S (__longjmp): No need to
5559 do "loadrs". Writing to bspstore already takes care of
5560 invalidating the "clean" partition.
5562 2001-02-16 Andreas Schwab <schwab@suse.de>
5564 * sysdeps/m68k/fpu/s_nextafterl.c: New file.
5565 * sysdeps/m68k/fpu/s_fpclassifyl.c: New file.
5567 2001-02-15 Jakub Jelinek <jakub@redhat.com>
5569 * posix/regex.c (init_syntax_once): Add prototype.
5570 (TRANSLATE): If MBS_SUPPORT, translate all characters up to '\xff'.
5571 (re_search_2): Avoid warning.
5572 (count_mbs_length): Add prototype.
5573 * posix/tst-regex3.c: New file.
5574 * posix/Makefile (tests): Add bug-regex3.
5576 2001-02-15 Ulrich Drepper <drepper@redhat.com>
5578 * stdio-common/Makefile (tests): Add tst-gets.
5579 * stdio-common/tst-gets.c: New file.
5580 * stdio-common/tst-gets.input: New file.
5582 * elf/elf.h (DT_CHECKSUM): Define.
5584 * sysdeps/generic/strtoll.c: Don't export __strto*_internal as
5586 * sysdeps/generic/strtoull.c: Likewise.
5588 2001-02-14 Wolfram Gloger <wg@malloc.de>
5590 * malloc/malloc.c (new_heap): When allocating large chunk aligned
5591 to HEAP_MAX_SIZE, prefer one with lower address, to avoid `holes'
5594 2001-02-14 Ulrich Drepper <drepper@redhat.com>
5596 * math/libm-test.inc (j0_test): Check whether sincos is available.
5597 (j1_test): Likewise.
5598 (jn_test): Likewise.
5599 (y0_test): Likewise.
5600 (y1_test): Likewise.
5601 (yn_test): Likewise.
5603 * posix/tst-gnuglob.c: Make a few entries DT_UNKNOWN and teach
5604 fake filesystem routines to handle this.
5606 * time/sys/time.h: Make settimeofday and adjtime available if
5609 * time/sys/time.h: Make timer* macros available for BSD.
5611 * iconvdata/gb18030.c: Update for Dec 2000 re-release of GB18030.
5612 Patch by Yong Li <rigel863@yahoo.com>.
5614 * sysdeps/generic/glob.c (CONVERT_DIRENT_DIRENT64): Fix copying of
5617 * posix/Makefile (tests): Add tst-gnuglob.
5618 * posix/tst-gnuglob.c: New file.
5620 2001-02-13 H.J. Lu <hjl@gnu.org>
5622 * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add __ftruncate64.
5624 2001-02-13 Ulrich Drepper <drepper@redhat.com>
5626 * locale/programs/ld-paper.c (paper_output): Pretty printing.
5628 * iconvdata/Makefile (modules): Add GBBIG5.
5629 (distribute): Add gbbig5.c.
5630 * iconvdata/gconv-modules: Add entries for GBBIG5 module.
5632 * iconvdata/gbbig5.c: New file.
5633 Contributed by Yong Li <rigel863@yahoo.com>.
5635 2001-02-13 Philip Blundell <pb@futuretv.com>
5637 * manual/crypt.texi: Remove outdated references to crypt add-on.
5639 * manual/creature.texi: Improve wording slightly.
5641 2001-02-13 Ulrich Drepper <drepper@redhat.com>
5643 * io/ftw.c: Always use readdir64.
5644 * io/ftw64.c: Likewise.
5645 * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
5646 * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
5647 * sysdeps/generic/glob.c: Likewise. Convert results of gl_readdir
5648 callback to dirent. Still allow compiling outside glibc.
5649 * sysdeps/gnu/glob64.c: Define COMPILE_GLOB64.
5650 * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
5652 * malloc/mtrace.c: Use fopen64.
5653 * posix/spawni.c: Use __open64.
5654 * sysdeps/unix/opendir.c: Likewise.
5655 * sysdeps/unix/sysv/linux/gethostid.c: Likewise.
5657 * sysdeps/generic/ftruncate64.c: Define __ftruncate64 and make old
5659 * sysdeps/unix/sysv/aix/ftruncate64.c: Likewise.
5660 * sysdeps/unix/sysv/linux/ftruncate64.c: Likewise.
5661 * sysdeps/unix/sysv/linux/mips/ftruncate64.c: Likewise.
5662 * sysdeps/unix/sysv/linux/powerpc/ftruncate64.c: Likewise.
5664 * resolv/res_data.c: Add cast to avoid warning.
5666 * include/unistd.h: Declare __ftruncate64.
5668 * sysdeps/generic/utmp_file.c: Use LFS functions and types.
5670 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use __lseek64
5673 2001-02-13 Andreas Jaeger <aj@suse.de>
5675 * login/getutent_r.c: Include <stdlib.h> for NULL.
5676 * login/getutid_r.c: Likewise.
5678 2001-02-12 Ulrich Drepper <drepper@redhat.com>
5680 * sysdeps/dbl-64/e_j0.c: Little optimization, use sincos.
5681 * sysdeps/dbl-64/e_j1.c: Likewise.
5682 * sysdeps/dbl-64/e_jn.c: Likewise.
5683 * sysdeps/flt-32/e_j0f.c: Likewise.
5684 * sysdeps/flt-32/e_j1f.c: Likewise.
5685 * sysdeps/ldbl-96/e_j0l.c: Likewise.
5687 2000-12-02 H.J. Lu <hjl@gnu.org>
5689 * resolv/res_libc.c (res_init): Don't make it default.
5691 2001-02-12 Ulrich Drepper <drepper@redhat.com>
5693 * manual/debug.texi: Improved the wording.
5694 Patch by Philip Blundell <pb@futuretv.com>.
5696 2001-02-12 Andreas Jaeger <aj@suse.de>
5698 * posix/Makefile (tests): Don't run bug-regex2 when
5701 * libio/Makefile (tests): Don't run test-freopen when
5704 * manual/stdio.texi (Streams and I18N): Fix typos.
5706 2001-02-12 Ulrich Drepper <drepper@redhat.com>
5708 * sysdeps/i386/fpu/libm-test-ulps: Adjust for errors in y0l.
5710 * math/libm-test.inc (j0_test): Make expected results long double
5712 (y0_test): Likewise.
5714 * sysdeps/ieee754/ldbl-96/e_j0l.c: New file.
5715 Contributed by Stephen L. Moshier <moshier@na-net.ornl.gov>.
5717 2001-02-11 Jakub Jelinek <jakub@redhat.com>
5719 * sysdeps/generic/strtoll.c (__strtoq_internal): Ressurect alias
5720 which was exported from libc.
5721 * sysdeps/generic/strtoull.c (__strtouq_internal): Likewise.
5723 2001-02-12 Andreas Jaeger <aj@suse.de>
5725 * manual/arith.texi (Parsing of Integers): Fix some wordings.
5727 2001-02-11 Ulrich Drepper <drepper@redhat.com>
5729 * sysdeps/generic/getsysstat.c: Change return value of get_phys_pages
5730 and get_avphys_page to long int.
5731 * sysdeps/unix/sysv/linux/getsysstat.c: Likewise.
5732 * include/sys/sysinfo.h: Likewise.
5733 * sysdeps/generic/sys/sysinfo.h: Likewise.
5734 * sysdeps/unix/sysv/linux/sys/sysinfo.h: Likewise.
5736 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Fail if we
5737 cannot return as many values as the user asked for.
5739 2001-02-11 Andreas Jaeger <aj@suse.de>
5741 * manual/resource.texi (Memory Resources): Fix typo.
5743 * libio/Makefile ($(objpfx)test-freopen.out): Pass
5746 * libio/test-freopen.sh: Use run_program_prefix.
5748 2001-02-10 Andreas Jaeger <aj@suse.de>
5750 * stdlib/Makefile (tests): Don't run tst-fmtmsg when
5752 ($(objpfx)tst-fmtmsg.out): Pass run-program-prefix.
5754 * stdlib/tst-fmtmsg.sh (test): Use run_program_prefix for static
5757 * elf/Makefile (tests): Only run tst-pathopt with shared libs.
5759 * posix/Makefile: Fix typo, it's build-static-nss.
5761 * iconv/Makefile (extra-objs): New.
5763 2001-02-10 Mark Kettenis <kettenis@gnu.org>
5765 * sysdeps/unix/stime.c: Include <time.h>.
5767 * sysdeps/mach/hurd/setitimer.c: Include <time.h>.
5769 2001-02-10 Andreas Jaeger <aj@suse.de>
5771 * manual/string.texi (Search Functions): Fix typo.
5773 2001-02-10 Mark Kettenis <kettenis@gnu.org>
5775 * sysdeps/unix/bsd/times.c: Reorder includes and add <time.h>.
5776 (timeval_to_clock_t): Add clk_tck argument and use that instead of
5778 (__times): Use __getclktck to get the number of clock ticks per
5779 second and use its return value instead of CLK_TCK.
5781 2001-02-10 Mark Kettenis <kettenis@gnu.org>
5783 * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h (_HAVE_SA_LEN): Define.
5785 2001-02-10 Mark Kettenis <kettenis@gnu.org>
5787 * sysdeps/mach/gettimeofday.c: Include <stddef.h>.
5789 2001-02-10 Andreas Jaeger <aj@suse.de>
5791 * wctype/wcfuncs.c (func): Add prototype declarations to avoid
5794 2001-02-09 Ulrich Drepper <drepper@redhat.com>
5796 * posix/Makefile: Add rules to build and run bug-regex2.
5797 * posix/bug-regex2.c: New file.
5799 2001-02-10 Jakub Jelinek <jakub@redhat.com>
5801 * posix/regex.c (convert_mbs_to_wcs): Change is_binary to char *.
5802 (regex_compile): Likewise.
5803 (FREE_VARIABLES): Don't free is_binary1 and is_binary2.
5804 (re_match_2_internal): Use just is_binary instead of two variables.
5805 Use REGEX_TALLOC to allocate it and FREE_VAR to free on failure.
5807 2001-02-09 Ulrich Drepper <drepper@redhat.com>
5809 * version.h (VERSION): Bump to 2.2.2.
5811 * iconv/Makefile (distribute): Add iconv_charmap.c and
5813 * elf/Makefile (distribute): Add firstobj.c.
5814 * Makefile (distribute): Add include/pthread.h.
5816 * configure.in: Require makeinfo version 4.
5818 * libio/tst_wscanf.c (main): Add cast to avoid warning.
5819 * libio/tst_swscanf.c (main): Likewise..
5821 2001-02-09 Jakub Jelinek <jakub@redhat.com>
5823 * sysdeps/generic/setenv.c (unsetenv): Remove const from len.
5824 * sysdeps/sparc/fpu/bits/mathinline.h (sqrt, fdim): Don't define if
5826 * sysdeps/i386/dl-machine.h (elf_machine_rel): Only declare refsym
5827 if not RTLD_BOOTSTRAP.
5828 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
5829 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
5831 2001-02-09 Ulrich Drepper <drepper@redhat.com>
5833 * locale/programs/linereader.c (get_ident): Stop loop if EOF. Use
5834 lr_ungetc to push back last read character.
5835 * locale/programs/linereader.h (lr_ungetc): Don't push back is
5837 (lr_ignore_rest): Don't warn about garbage if it is really the end
5840 * manual/Makefile: Use ifnottext and not ifinfo to protect Top node
5843 2001-02-08 Ulrich Drepper <drepper@redhat.com>
5845 * Makerules (build-shlib): Work around different order of
5846 processing of -B option in different gcc versions.
5848 * posix/regex.c: Fix alignment problem.
5849 Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
5851 * sysdeps/alpha/strrchr.S: Little optimization.
5852 Patch by Richard Henderson <rth@redhat.com>.
5854 * sysdeps/alpha/alphaev67/strrchr.S: New file.
5855 Contributed by Rick Gorton <rick.gorton@alpha-processor.com>.
5857 2001-02-08 kaz Kojima <kkojima@rr.iij4u.or.jp>
5859 * sysdeps/sh/sh3/setjmp.S (__sigsetjmp): Correct function name
5860 in the assembler end directive.
5862 2001-02-08 Andreas Jaeger <aj@suse.de>
5864 * manual/stdio.texi (Closing Streams): Fix typos.
5866 2001-02-07 Ulrich Drepper <drepper@redhat.com>
5868 * sysdeps/alpha/alphaev67/strncat.S: Align last write address.
5869 Patch by Richard Henderson <rth@redhat.com>.
5870 Reported by Claus-Justus Heine <heine@instmath.rwth-aachen.de>.
5872 * stdlib/strfmon.c [USE_IN_LIBIO]: Define lock variable and store
5873 pointer in FILE structure before calling _IO_init.
5874 * stdlib/Makefile: Add -D_IO_MTSAFE_IO to CFLAGS for strfmon and
5875 strfmon_l if necessary.
5876 Reported by Jury Gerold <gjury@grips.com>.
5878 * sysdeps/gnu/netinet/tcp.h: Correct values of TCP_ macros.
5879 Patch by Pekka.Pietikainen@cern.ch.
5881 * posix/regex.c: Correct several problems with 64-bit architectures
5882 introduced in the MBS changes.
5883 Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
5885 2001-02-07 Jakub Jelinek <jakub@redhat.com>
5887 * math/tgmath.h: Only add l suffixes if __NO_LONG_DOUBLE_MATH is
5889 * sysdeps/alpha/fpu/bits/mathinline.h: Honour __NO_MATH_INLINES.
5891 2001-02-07 Andreas Jaeger <aj@suse.de>
5893 * manual/install.texi (Tools for Compilation): Fix typo.
5894 Reported by Pavel Machek <pavel@bug.ucw.cz>.
5896 2001-02-07 Ulrich Drepper <drepper@redhat.com>
5898 * stdlib/strtod.c: Never stop prematurely reading digits before the
5899 decimal point is found. Compute exponent limit for negative exponents
5900 correctly. For numbers ending in all zeros eat the zeros even before
5901 the decimal point if the exponent is negative [PR libc/2072].
5902 * stdlib/Makefile (tests): Add bug-strtod.
5903 * stdlib/bug-strtod.c: New file.
5905 2001-02-07 Andreas Jaeger <aj@suse.de>
5907 * posix/bug-regex1.c: Include <wchar.h> for fwide.
5909 2001-02-06 Ulrich Drepper <drepper@redhat.com>
5911 * posix/regex.c (regex_compile): Don't store pointer in wchar_t array.
5913 (compile_range): Handle index being passed, not pointer.
5914 Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
5916 * posix/regex.c: Fix a cast in the code for bracket handling which
5917 caused 8-bit uncleanliness.
5918 Patch by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>.
5920 * posix/Makefile (tests): Add bug-regex1.
5921 * posix/bug-regex1.c: New file.
5922 Contributed by Jim Meyering <jim@meyering.net>.
5924 * posix/regex.c: Many cleanups for incorrect format strings.
5926 2001-02-06 Andreas Jaeger <aj@suse.de>
5928 * time/time.h (CLK_TCK): Check for !__STRICT_ANSI.
5930 2001-02-06 Ulrich Drepper <drepper@redhat.com>
5932 * locale/programs/locale.c (write_locales): Use scandir to read
5933 directory so that the entries are sorted.
5935 2001-02-06 Andreas Jaeger <aj@suse.de>
5937 * include/pthread.h: New file.
5939 * wctype/wctype.h: Move internal interfaces from here to...
5940 * include/wctype.h: ...here.
5942 * wcsmbs/wchar.h: Move __wcslen from here to...
5943 * include/wchar.h: ...here.
5945 * posix/sys/wait.h: Move __wait from here to...
5946 * include/sys/wait.h: ...here.
5948 * string/string.h: Move __ffs and __strerror_r from here to...
5949 * include/string.h: ...here.
5951 * stdlib/stdlib.h: Move __on_exit from here to...
5952 * include/stdlib.h: ...here.
5954 * libio/stdio.h: Move __vsnprintf from here to...
5955 * include/stdio.h: ...here.
5957 2001-02-06 Andreas Schwab <schwab@suse.de>
5959 * sysdeps/unix/sysv/linux/ia64/ioperm.c: Don't include kernel
5962 * timezone/Makefile: Don't assume that $(inst_zonedir) is a subdir
5965 2001-02-06 Ulrich Drepper <drepper@redhat.com>
5967 * iconvdata/Makefile: Add dependency for bug-iconv2.out.
5969 2001-02-06 Andreas Jaeger <aj@suse.de>
5971 * elf/firstobj.c: Add prototype.
5973 * posix/regex.c (convert_mbs_to_wcs): Make static, add prototype
5974 (truncate_wchar): Likewise.
5976 2001-02-06 Ulrich Drepper <drepper@redhat.com>
5978 * locale/programs/locale.c: Implement --verbose option for -a
5979 which prints detailed information about the locales.
5981 2001-02-05 Ulrich Drepper <drepper@redhat.com>
5983 * sunrpc/xdr_rec.c (set_input_fragment): Change type of header
5984 variable to uint32_t.
5985 Reported by Ulrich Weigand <weigand@immd1.informatik.uni-erlangen.de>.
5987 2001-02-04 Bruno Haible <haible@clisp.cons.org>
5989 * locale/C-translit.h.in: Add transliterations for CJK units of
5992 2001-02-05 Ulrich Drepper <drepper@redhat.com>
5994 * elf/cache.c (print_entry): Use PRIx64 instead of Lx in printf
5995 string. Include <inttypes.h> instead of <stdint.h>.
5997 * localedata/Makefile (tests): Add bug-iconv-trans.
5998 Define bug-iconv-trans-ENV.
5999 * localedata/bug-iconv-trans.c: New file.
6001 2001-02-04 Bruno Haible <haible@clisp.cons.org>
6003 * iconv/gconv_trans.c (__gconv_transliterate): Use a temporary output
6004 pointer, to avoid accumulating output from incomplete (unsuccessful)
6005 transliteration attempts.
6007 2001-02-05 Ulrich Drepper <drepper@redhat.com>
6009 * elf/ldconfig.c (search_dir): Use PRIx64 instead of Lx in printf
6010 string. Include <inttypes.h> instead of <stdint.h>.
6012 * configure.in: Add check for bison.
6013 * config.make.in: Define BISON variable.
6014 * intl/Makefile: Use BISON instead of YACC when generating plural.c.
6015 Rename YFLAGS to BISONFLAGS.
6017 2001-02-05 Andreas Jaeger <aj@suse.de>
6019 * io/test-lfs.c (do_test): Test lseek64 return value, call
6021 (test_ftello): New function to test ftello64 and fseeko64.
6023 * signal/signal.h: Move __sigaction from here to...
6024 * include/signal.h: ...here.
6026 * io/fcntl.h: Move __fcntl and __open to...
6027 * include/fcntl.h: ...here.
6029 2001-02-04 Philip Blundell <philb@gnu.org>
6031 * configure.in: Distinguish ARM from Thumb.
6033 2001-02-04 Philip Blundell <philb@gnu.org>
6035 * sysdeps/arm/dl-machine.h (elf_machine_rel): Correct handling of
6036 PC24 relocs with negative value.
6038 2001-02-04 Ulrich Drepper <drepper@redhat.com>
6040 * iconv/Makefile (iconv_prog-modules): Define. Add vpath to find
6041 files in locale/programs. Add CFLAGS definition to allow compiling
6043 * iconv/dummy-repertoire.c: New file.
6044 * iconv/iconv_charmap.c: New file.
6045 * iconv/iconv_prog.h: New file.
6046 * iconv/iconv_prog.c: Make verbose and omit_invalid global.
6047 (main): If parameter for -f and -t contain slashes try first to resolve
6048 the strings as filenames of charmap files. Use them for conversion
6050 * iconvdata/run-iconv-test.sh: If charmaps exist also run tests with
6051 iconv getting charmap names as parameters.
6052 * locale/programs/linereader.c (lr_token): Take extra parameters
6053 verbose and pass it to get_string.
6054 (get_string): Take extra parameters verbose.
6055 * locale/programs/charmap.c (parse_charmap): Take extra parameters
6056 verbose and be_quiet. Change all callers of lr_token and
6058 * locale/programs/charmap.h: Likewise.
6059 * locale/programs/ld-address.c: Likewise.
6060 * locale/programs/ld-collate.c: Likewise.
6061 * locale/programs/ld-ctype.c: Likewise.
6062 * locale/programs/ld-identification.c: Likewise.
6063 * locale/programs/ld-measurement.c: Likewise.
6064 * locale/programs/ld-messages.c: Likewise.
6065 * locale/programs/ld-monetary.c: Likewise.
6066 * locale/programs/ld-name.c: Likewise.
6067 * locale/programs/ld-numeric.c: Likewise.
6068 * locale/programs/ld-paper.c: Likewise.
6069 * locale/programs/ld-telephone.c: Likewise.
6070 * locale/programs/ld-time.c: Likewise.
6071 * locale/programs/linereader.c: Likewise.
6072 * locale/programs/linereader.h: Likewise.
6073 * locale/programs/localedef.c: Likewise.
6074 * locale/programs/locfile.c: Likewise.
6075 * locale/programs/locfile.h: Likewise.
6076 * locale/programs/repertoire.c: Likewise.
6078 2001-02-03 Ulrich Drepper <drepper@redhat.com>
6080 * iconv/iconv_prog.c (main): If output file name is "-" write to
6082 (main): If -f or -t argument is missing use charset of the current
6085 2001-02-03 Andreas Jaeger <aj@suse.de>
6087 * sysdeps/i386/elf/start.S (_start): Align stack to 16-byte
6088 boundary for SSE/SSE-2 alignment.
6090 * posix/Makefile ($(objpfx)annexc.out): Also pass sysincludes to
6093 2001-02-03 Ulrich Drepper <drepper@redhat.com>
6095 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h: File was using crlf.
6096 Remove comma at end of enum.
6098 * elf/dl-init.c: Add a few __builtin_expect.
6100 * hesiod/hesiod.c: Remove unnecessary code. Remove all uses of strcat.
6102 2001-02-02 Ulrich Drepper <drepper@redhat.com>
6104 * hesiod/hesiod.c (hesiod_resolve): Also search HS records if
6105 errno is ECONNREFUSED.
6107 * posix/Makefile: Define MBS_SUPPORT for regex.c.
6108 * posix/regex.c: Implement multibyte character handling.
6109 Patch by Isamu Hasegawa <isamu@yamato.ibm.co.jp>.
6111 * string/tst-svc.input: Add two more test cases.
6112 * string/tst-svc.expect: Modify to reflect new test cases.
6114 2001-02-01 Jakub Jelinek <jakub@redhat.com>
6116 * sysdeps/posix/getaddrinfo.c (gaih_local, gaih_inet): Replace all
6117 tp->name tests with tp->name[0] tests.
6119 2001-01-29 Ben Collins <bcollins@debian.org>
6121 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r):
6122 Fix check for name == NULL.
6124 2001-02-01 Ulrich Drepper <drepper@redhat.com>
6126 * elf/Makefile: Add rules to build and run initfirst test.
6127 * elf/initfirst.c: New file.
6128 * elf/firstobj.c: New file.
6130 * Makerules (build-shlib): Add $(extra-B-$(@F:lib%.so=%).so).
6131 * configure.in: Test for -z initfirst linker option.
6132 * config.make.in: Add have-z-initfirst.
6133 * elf/dl-init.c (_dl_init): Split out actual initialization code in
6134 new function call_init. If _dl_initfirst is non-NULL initialize first.
6135 * elf/dl-load.c (_dl_map_from_fd): If DF_1_INITFIRST flag is set
6136 remember object in _dl_initfirst.
6137 * elf/soinit.c: Remove special support for calling
6138 __pthread_initialize_minimal.
6140 * conform/conformtest.pl: Add missing $prepend in type test.
6142 2001-01-31 Ulrich Drepper <drepper@redhat.com>
6144 * elf/elf.h (SHT_CHECKSUM): New definition.
6146 * posix/fnmatch_loop.c: Remove incorrect reverse condition in
6147 [. .] matching. Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
6148 * posix/tst-fnmatch.input: Add tests for [. .] in locales.
6150 2001-01-31 Mark Kettenis <kettenis@gnu.org>
6152 * misc/sys/select.h: Include <bits/time.h> instead of <sys/time.h>
6153 to get definition of `struct timeval'.
6155 2001-01-31 Ulrich Drepper <drepper@redhat.com>
6157 * posix/tst-fnmatch.input: Add test cases for de_DE.UTF-8 locale.
6158 * posix/fnmatch_loop.c: Fix handling of [= =] for multibyte charsets.
6160 2001-01-30 Ulrich Drepper <drepper@redhat.com>
6162 * iconv/gconv_open.c (__gconv_open): Set conv_flags if IGNORE is
6165 * nis/nis_findserv.c: Include <time.h>.
6167 2001-01-30 Yong Li <yong.li@asu.edu>
6169 * iconv/iconv_prog.c (main): Correct error handling method name.
6171 2001-01-29 Ben Collins <bcollins@debian.org>
6173 * sysdeps/sparc/fpu/fraiseexcpt.c: Include <float.h>.
6174 * sysdeps/hppa/fpu/fraiseexcpt.c: Likewise.
6175 * sysdeps/m68k/fpu/fraiseexcpt.c: Likewise.
6176 * sysdeps/s390/fpu/fraiseexcpt.c: Likewise.
6178 2001-01-30 Ulrich Drepper <drepper@redhat.com>
6180 * locale/programs/ld-measurement.c (measurement_finish): Fix a typo.
6181 Patch by Marko Myllynen <myllynen@lut.fi>.
6183 * string/bits/string2.h (__strpbrk_c2): Correct parameter types
6184 (int instead of char).
6185 (__strpbrk_c3): Likewise.
6186 Reported by GOTO Masanori <gotom@debian.or.jp>.
6188 * sysdeps/generic/bits/sockaddr.h: Remove SA_LEN macro.
6189 * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Likewise.
6190 * include/sys/socket.h: Add SA_LEN here for internal use.
6191 Reported by Arkadiusz Miskiewicz <misiek@pld.ORG.PL>.
6193 2001-01-29 Ulrich Drepper <drepper@redhat.com>
6195 * malloc/Makefile: Don't build memusagestat if cross-compiling.
6197 * sysdeps/generic/dl-sysdep.c (set_seen): Fix typo.
6199 * math/libm-test.inc (rint_test): Add a few more tests for round
6202 2001-01-28 Ulrich Drepper <drepper@redhat.com>
6204 * conform/data/pthread.h-data: Correct return type of pthread_exit.
6206 * conform/conformtest.pl: Add -fno-builtin to CFLAGS.
6208 * conform/data/stdlib.h-data: Add _Exit.
6210 * inet/arpa/inet.h: Don't include <sys/types.h>. Define socklen_t
6211 if not already happened.
6212 * inet/netinet/in.h: Don't include <sys/types.h>, use <bits/types.h>.
6213 Don't include <limits.h> and <bits/sockaddr.h>.
6215 * conform/data/netinet/in.h-data: Allow all of <inttypes.h>.
6217 * conform/data/spawn.h-data: Allow all of <sched.h>.
6219 * sysdeps/ia64/fpu/fraiseexcpt.c: Include <float.h>. Removed
6222 * sunrpc/xdr_rec.c (xdrrec_getpos): Add cast to long to avoid warning.
6223 * sunrpc/xdr_sizeof.c (x_inline): Likewise.
6225 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Include <float.h>.
6227 * conform/conformtest.pl: Define $mustprepend{"stdio.h"}.
6228 * libio/stdio.h: Define va_list correctly.
6230 * conform/data/pthread.h-data: Make priority protocol related
6231 functions optional. Fix typos.
6233 * posix/sched.h: Define sched_priority as __sched_priority.
6234 * sysdeps/generic/bits/sched.h (struct sched_param): Rename element
6235 to __sched_priority.
6236 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
6238 2001-01-27 Ulrich Drepper <drepper@redhat.com>
6240 * sysdeps/generic/clock_getcpuclockid.c: Include <time.h> instead
6243 * sysdeps/unix/stime.c: Include <stddef.h> for NULL.
6244 * sysdeps/unix/time.c: Likewise.
6246 * conform/data/time.h-data: CLK_TCK is not in XPG6. Fix tzname entry.
6247 * sysdeps/mach/hurd/bits/time.h: Don't define CLK_TCK for XPG6.
6248 * sysdeps/mach/hurd/i386/bits/time.h: Likewise.
6249 * sysdeps/unix/sysv/linux/bits/time.h: Likewise.
6250 * sysdeps/unix/sysv/linux/alpha/bits/time.h: Likewise.
6251 * sysdeps/unix/sysv/linux/i386/bits/time.h: Likewise.
6252 * sysdeps/unix/sysv/linux/ia64/bits/time.h: Likewise.
6253 * time/time.h: Likewise.
6255 * conform/conformtest.pl (@headers): Add complex.h and tgmath.h.
6256 * conform/data/complex.h-data: New file.
6257 * conform/data/tgmath.h-data: New file.
6259 * conform/data/wchar.h-data: Add missing functions.
6261 * sysdeps/gnu/bits/utmpx.h: Define RUN_LVL only if __USE_GNU.
6263 * conform/data/termios.h-data: Add missing const in tcsetattr()
6266 * posix/sys/wait.h: Include <signal.h> and <sys/resource.h>.
6267 Don't define pid_t here.
6269 * conform/data/sys/utsname.h-data: Don't provide fixed array sizes.
6271 * conform/data/sys/time.h-data: Allow sys/select.h.
6272 * conform/data/sys/un.h-data: Fix typo.
6273 * time/sys/time.h: Don't include all of <time.h>, just struct timeval.
6274 * sysdeps/posix/clock_getres.c: Include <time.h> instead of
6276 * sysdeps/unix/clock_nanosleep.c: Likewise.
6277 * sysdeps/unix/i386/clock_getcpuclockid.c: Likewise.
6278 * sysdeps/unix/i386/i586/clock_getres.c: Likewise.
6279 * sysdeps/unix/clock_gettime.c: Also include <time.h>.
6280 * sysdeps/unix/clock_settime.c: Likewise.
6282 * sysdeps/generic/pselect.c: Include <stddef.h> for NULL.
6283 * login/getutent.c: Likewise.
6284 * login/getutid.c: Likewise.
6285 * login/getutline.c: Likewise.
6287 * socket/sys/un.h: Define SUN_LEN only if __USE_MISC.
6289 * sysdeps/unix/sysv/linux/bits/statvfs.h: Change type of f_fsid field
6290 to unsigned long. Add __f_unused. Define _STATVFSBUF_F_UNUSED.
6291 * sysdeps/unix/sysv/linux/internal_statvfs.c: Adjust initialization of
6292 f_fsid field after change in struct statvfs.
6293 * sysdeps/unix/sysv/linux/alpha/bits/statvfs.h: New file.
6294 * sysdeps/unix/sysv/linux/ia64/bits/statvfs.h: New file.
6295 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/statvfs.h: New file.
6297 * conform/data/sys/stat.h-data: Remove isfdtype. Use
6300 * conform/data/sys/socket.h-data: Fix typos. Correct getsockopt,
6301 recvfrom, send, and socketpair prototypes. Add allow lines.
6302 * socket/sys/socket.h: Include <sys/uio.h>.
6303 Don't use fancy __SOCKADDR_ARG definition unless __USE_GNU.
6304 Fix type of second parameter of listen.
6305 Don't declare isfdtype unless __USE_MISC.
6306 * sysdeps/generic/listen.c: Fix type of second parameter of listen.
6307 * sysdeps/mach/hurd/listen.c: Likewise.
6308 * sysdeps/generic/bits/socket.h (struct sockaddr_storage): Define
6309 ss_family and __ss_family.
6310 * sysdeps/unix/sysv/aix/bits/socket.h: Likewise.
6311 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
6312 (struct msghdr): Change type of msg_iovlen to int and type of
6313 msg_controllen to socklen_t.
6314 * sysdeps/unix/sysv/linux/alpha/bits/socket.h: New file.
6315 * sysdeps/unix/sysv/linux/ia64/bits/socket.h: New file.
6316 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/socket.h: New file.
6317 * inet/rcmd.c (rcmd_af): __ss_family is now ss_family.
6318 (rresvport_af): Likewise.
6320 * conform/data/sys/shm.h-data: SHMLBA is not required to by a constant.
6321 * conform/conformtest.pl: Implement handling of symbol.
6323 * signal/signal.h: Fix handling of __need_* symbols.
6324 * misc/sys/select.c: Define fd_set here. Remove __fd_set. Define
6325 fd_mask only if __USE_MISC. Declare pselect for __USE_XOPEN2K.
6326 * include/sys/select.h: Use fd_set not __fd_set.
6327 * sysdeps/generic/bits/select.h: Likewise.
6328 * sysdeps/i386/bits/select.h: Likewise.
6329 * sysdeps/generic/bits/types.h: Don't define __fd_mask, __NFDBITS,
6330 __FDELT, __FDMASK, and __fd_set here.
6331 * sysdeps/unix/sysv/aix/bits/types.h: Likewise.
6332 * sysdeps/unix/sysv/hpux/bits/types.h: Likewise.
6333 * sysdeps/unix/sysv/linux/bits/types.h: Likewise.
6334 * sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise.
6335 * sysdeps/unix/sysv/linux/ia64/bits/types.h: Likewise.
6336 * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
6337 * sysdeps/unix/sysv/linux/sparc/bits/types.h: Likewise.
6338 * sysdeps/unix/sysv/sysv4/solaris2/bits/types.h: Likewise.
6339 * time/sys/time.h: Define struct timeval before including <time.h>
6342 * conform/data/sys/time.h-data: fd_set is a typedef.
6343 * conform/data/sys/select.h-data: New file.
6344 * conform/data/sys/mman.h-data: Make typed mem stuff optional.
6345 * conform/conformtest.pl (@headers): Add sys/select.h.
6346 (type, optional-type): Unless testing a typedef instantiate object.
6347 Implement optional-function.
6349 * math/test-misc.c: Include <float.h>.
6351 2001-01-27 Andreas Jaeger <aj@suse.de>
6353 * misc/efgcvt_r.c: Include <float.h>.
6355 2001-01-26 Ulrich Drepper <drepper@redhat.com>
6357 * conform/data/stdlib.h-data: Account for XPG6 changes.
6358 * stdlib/stdlib.h (__random): Change return value type to long.
6359 (posix_memalign): Cleanup parameter names.
6360 (setenv, unsetenv): Make available for __USE_XOPEN2K.
6361 Change return type of unsetenv to int.
6362 (qecvt, qgcvt, qfcvt): Declare only if __USE_MISC.
6363 * include/stdlib.h: Change return type of unsetenv to int.
6364 Change return type of random to long int.
6365 * sysdeps/generic/setenv.c (unsetenv): Change return type to int.
6366 Return -1 and set errno if parameter is invalid.
6367 * stdlib/random.c (__random): Change return value type to long.
6369 * conform/data/stdio.h-data: Account for changes in XPG6.
6371 * conform/data/spawn.h-data: Correct posix_spawnattr_setflags
6374 * conform/conformtest.pl: Define $mustprepend{"signal.h"}.
6375 * conform/data/signal.h-data: Fix sigev_notify_function entry.
6376 Fix typo (SIGVALRM -> SIGVTALRM).
6377 * sysdeps/unix/sysv/linux/bits/siginfo.h: Define sigev_notify_attr
6379 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Likewise.
6380 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
6381 * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
6382 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
6383 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/siginfo.h: Likewise.
6385 * conform/conformtest.pl: Implement optional-element. Define
6386 $mustprepend{"sched.h"}.
6387 * conform/data/sched.h-data: Make sporadic scheduler definitions
6390 * pwd/pwd.h: Don't define getpwent_r for XPG.
6392 * io/sys/poll.h: Define nfds_t and use it in poll prototype.
6393 * sysdeps/generic/poll.c: Use nfds_t type in function definition.
6394 * sysdeps/mach/hurd/poll.c: Likewise.
6395 * sysdeps/unix/bsd/poll.c: Likewise.
6396 * sysdeps/unix/sysv/linux/poll.c: Likewise.
6397 * sysdeps/unix/sysv/aix/poll.c: Likewise.
6398 * sysdeps/generic/bits/poll.h: Define NPOLLFILE only if __USE_MISC.
6399 * sysdeps/unix/sysv/linux/bits/poll.h: Likewise.
6400 * sysdeps/unix/sysv/linux/m68k/bits/poll.h: Likewise.
6401 * sysdeps/unix/sysv/linux/mips/bits/poll.h: Likewise.
6402 * sysdeps/unix/sysv/linux/sparc/bits/poll.h: Likewise.
6403 * conform/data/poll.h-data: Fix typo in poll prototype.
6405 * sysdeps/gnu/netinet/tcp.h: Define everything but TCP_ macros
6407 * conform/data/netinet/tcp.h-data: Reserved prefix TCP_.
6409 * sysdeps/gnu/net/if.h: Cleanup namespace. Define IF_NAMESIZE.
6411 * inet/netinet/in.h: Make IPPROTO_ constants also macros.
6413 * conform/conformtest.pl: Implement optional-type.
6415 * resolv/netdb.h: Include <netinet/in.h> not <sys/socket.h>. Include
6416 <rpc/netdb.h> only if __USE_MISC. Include <stdint.h> instead of
6417 defining uint32_t here. Define IPPORT_RESERVED.
6418 (struct hostent): Type of h_length element is int.
6419 (getnameinfo): Type of flags parameter is unsigned int.
6420 * inet/getnameinfo.c (getnameinfo): flags argument is unsigned.
6421 * conform/data/netdb.h-data: Add many missing definitions.
6423 * conform/conformtest.pl: Implement optional-macro.
6424 * conform/data/math.h-data: Update for XPG6.
6426 * math/math.h (HUGE): Define as FLT_MAX value but don't use
6427 FLT_MAX. Don't include <float.h>.
6428 (MAXFLOAT): Likewise.
6430 * math/math.h: Define MATH_ERRNO and MATH_ERREXCEPT.
6432 * include/bits/xopen_lim.h: Don't define FOPEN_MAX here.
6434 * conform/data/limits.h-data: Mark constants as optional wherever
6437 * posix/bits/posix2_lim.h: Set correct values for
6438 _POSIX2_COLL_WEIGHTS_MAX and _POSIX2_CHARCLASS_NAME_MAX. Remove
6441 * posix/bits/posix1_lim.h: Define _POSIX_TZNAME_MAX as 6.
6444 * intl/loadmsgcat.c: Include <locale.h.> for _LIBC.
6446 * conform/data/netinet/in.h-data: Add reserved prefixes.
6448 * conform/data/arpa/inet.h-data: Fix a few typos.
6450 2001-01-26 Andreas Jaeger <aj@suse.de>
6452 * sysdeps/generic/strtol.c: Include <locale.h>
6453 * stdlib/strtod.c: Likewise
6454 * stdlib/strfmon.c: Likewise.
6455 * string/strcoll.c: Likewise.
6456 * string/strxfrm.c: Likewise.
6457 * wctype/wcfuncs_l.c: Likewise.
6458 * wctype/wctype_l.c: Likewise.
6459 * wctype/wctrans_l.c: Likewise.
6461 * include/bits/locale.h: New file.
6463 2001-01-26 Ulrich Drepper <drepper@redhat.com>
6465 * locale/langinfo.h: Correct logic in #ifs when defining YESSTR
6468 * locale/Makefile (headers): Add bits/locale.h.
6469 * locale/langinfo.h: Don't include <locale.h>. Include <bits/locale.h>
6470 and use __LC_ constants instead of LC_.
6471 * locale/locale.h: Include <bits/locale.h> and define LC_ constants
6472 using __LC_ constants.
6473 * locale/bits/locale.h: New file.
6474 * locale/loadlocale.c: Include <locale.h>.
6475 * locale/nl_langinfo.h: Likewise.
6477 * posix/glob.h: Cleanup namespace for non-_GNU_SOURCE case.
6479 * io/sys/stat.h: Define S_IFSOCK for XPG6.
6481 * conform/data/fcntl.h-data: posix_madvise is not expected here.
6483 * conform/conformtest.pl: Fix handling of macro-str.
6485 * conform/data/inttypes.h-data: Add missing definition and all of
6488 * sysdeps/unix/sysv/linux/sys/param.h (MAXSYMLINKS): Bump to 20.
6490 2001-01-25 Ulrich Drepper <drepper@redhat.com>
6492 * conform/conformtest.pl (@headers): Add stdint.h.
6493 * conform/data/stdint.h-data: New file.
6495 * conform/conformtest.pl: Recognize options --headers and
6496 --dialect. Add dialect-specific CFLAGS.
6498 * conform/conformtest.pl: Implement handling of recursive
6501 * conform/data/locale.h-data: Add new struct lconv members.
6503 * posix/wordexp.h: Correct definition of wordexp_t.
6504 * posix/wordexp.c: Moved to ...
6505 * sysdeps/generic/wordexp.c: ...here. New file.
6506 * sysdeps/unix/sysv/linux/alpha/wordexp.c: New file.
6507 * sysdeps/unix/sysv/linux/ia64/wordexp.c: New file.
6508 * sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c: New file.
6509 * sysdeps/unix/sysv/linux/alpha/Versions [libc] (GLIBC_2.2.2): Add
6511 * sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
6512 * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
6514 * math/tgmath.h: Pretty printing.
6516 * math/Makefile (tests): Add test-tgmath.
6517 (CFLAGS-test-tgmath.c): New variable.
6518 * math/test-tgmath.c: New file. Contributed by Jakub Jelinek.
6520 * conform/conformtest.pl: Handle allow-header in secondary headers
6523 * conform/data/fcntl.h-data: Mark symbols introduced in XPG6 with
6526 * conform/data/netinet/in.h-data: Use correct comment character.
6527 * conform/data/sys/stat.h-data: Likewise.
6529 2001-01-25 Jakub Jelinek <jakub@redhat.com>
6531 * math/tgmath.h (__TGMATH_BINARY_FIRST_REAL_ONLY,
6532 __TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
6533 __TGMATH_TERNARY_REAL_ONLY): Use proper arguments to
6534 __builtin_classify_type, add ##f suffixes where appropriate.
6535 (__TGMATH_UNARY_REAL_IMAG): Remove extraneous left parenthesis.
6536 (__TGMATH_BINARY_REAL_IMAG): Likewise, use proper arguments to
6537 __builtin_classify_type.
6538 (fma): Fix spelling of first argument.
6540 2001-01-25 Ulrich Drepper <drepper@redhat.com>
6542 * conform/data/unistd.h-data: Mark functions removed in XPG6
6545 * posix/unistd.h: Don't make functions removed in XPG6 available if
6548 * conform/conformtest.pl: Implement optional-constant.
6549 * conform/data/unistd.h-data: Use optional-constant wherever
6552 * sysdeps/generic/bits/confname.h: Correct names of _SC_PBS
6553 constants and add _SC_STREAMS.
6554 * sysdeps/posix/sysconf.c (__sysconf): Likewise.
6556 * sysdeps/unix/sysv/linux/statvfs64.c: Rename to __statvfs64 and
6557 make old name weak alias.
6558 * sysdeps/generic/statvfs64.c: Likewise.
6559 * sysdeps/unix/sysv/linux/fstatvfs64.c: Rename to __fstatvfs64 and
6560 make old name weak alias.
6561 * sysdeps/generic/fstatvfs64.c: Likewise.
6562 * include/sys/statvfs.h: New file.
6564 * sysdeps/generic/bits/confname.h: Define _PC_REC_INCR_XFER_SIZE,
6565 _PC_REC_MAX_XFER_SIZE, _PC_REC_MIN_XFER_SIZE, and
6567 * sysdeps/posix/pathconf.c (__pathconf): Implement handling of
6568 _PC_REC_INCR_XFER_SIZE, _PC_REC_MAX_XFER_SIZE,
6569 _PC_REC_MIN_XFER_SIZE, and _PC_REC_XFER_ALIGN.
6570 * sysdeps/posix/fpathconf.c (__fpathconf): Likewise.
6572 * conform/conformtest.pl: Run Unix tests for XPG6.
6573 Implement handling of known namespace violations.
6574 Improve printing of results.
6576 * posix/unistd.h (usleep): Correct return type.
6577 * sysdeps/unix/sysv/linux/usleep.c: Correct return type.
6578 * sysdeps/unix/bsd/usleep.c: Correct return type.
6579 * sysdeps/mach/usleep.c: Correct return type.
6580 * sysdeps/generic/usleep.c: Correct return type.
6582 * posix/unistd.h (sync): Correct return type.
6583 * sysdeps/generic/sync.c: Likewise.
6584 * sysdeps/mach/hurd/sync.c: Likewise.
6586 * sysdeps/generic/bits/confname.h (_SC_IOV_MAX): New definition.
6588 * posix/unistd.h: Make seteuid and setegid available for XPG6.
6590 * wcsmbs/wchar.h: Get FILE definition for XPG5.
6592 * conform/data/ctype.h-data: Use correct comment form.
6593 * conform/data/errno.h-data: Likewise.
6594 * conform/data/math.h-data: Likewise.
6595 * conform/data/mqueue.h-data: Likewise.
6596 * conform/data/netdb.h-data: Likewise.
6597 * conform/data/pthread.h-data: Likewise.
6599 2001-01-24 Ulrich Drepper <drepper@redhat.com>
6601 * conform/data/wordexp.h-data: Fix typo.
6603 * conform/conformtest.pl: Handle allow-header correctly.
6605 * conform/data/time.h-data: Use correct comment form.
6607 * conform/conformtest.pl (checknamespace): Ignore #undef lines.
6609 * configure.in: Comment out binutils version test.
6611 * stdlib/strtod.c (str_to_mpn): Correct parsing of thousands
6613 Reported by Lagardere Jean-Francois <LAGARDEREJ@thmulti.com>.
6615 * stdlib/tst-strtod.c (locale_test): New function.
6616 (main): Call locale_test.
6617 * stdlib/Makefile (tst-strtod-ENV): New variable.
6619 2001-01-24 Mark Kettenis <kettenis@gnu.org>
6621 * hurd/hurdsig.c (_hurdsig_getenv): Remove spurious innermost
6622 declaration of value such that we actually return the value of the
6623 environment variable.
6625 2001-01-24 Andreas Jaeger <aj@suse.de>
6627 * sysdeps/unix/sysv/linux/init-first.c: Remove extra __sysctl
6629 * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
6631 * include/sys/sysctl.h: New file.
6633 2001-01-23 Andreas Jaeger <aj@suse.de>
6635 * stdlib/Makefile ($(objpfx)isomac.out): Also pass sysincludes to
6638 * elf/dl-load.c (_dl_init_paths): Don't use strdupa in function
6639 arguments. Reported by Jiri Kubicek <kubicek@bitsmart.com>,
6640 closes PR libc/2039.
6642 * manual/install.texi (Tools for Compilation): Change required
6645 2001-01-22 Andreas Jaeger <aj@suse.de>
6647 * configure.in: Add test for new enough binutils version, move
6648 compiler/binutils test up.
6650 * Versions.def: Add version GLIBC_2.2.2.
6652 2001-01-21 Ulrich Drepper <drepper@redhat.com>
6654 * iconvdata/TESTS: UTF-8 test data for IBM932 and IBM943 are now
6656 * iconvdata/testdata/IBM932: New file.
6657 * iconvdata/testdata/IBM932..UTF8: New file.
6658 * iconvdata/testdata/IBM943: New file.
6659 * iconvdata/testdata/IBM943..UTF8: New file.
6660 Contributed by Masahide Washizawa <washi@jp.ibm.com>.
6662 2001-01-21 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
6664 * sysdeps/unix/sysv/linux/powerpc/mmap64.c: Correctly mask offset.
6666 2001-01-21 Ulrich Drepper <drepper@redhat.com>
6668 * malloc/malloc.c: Remove a few unnecessary initializers of global
6671 2000-12-09 H.J. Lu <hjl@gnu.org>
6673 * nss/Makefile (routines): Add digits_dots.
6674 * nss/Versions (libc): Add __nss_hostname_digits_dots to GLIBC_2.2.2.
6675 * nss/digits_dots.c (__nss_hostname_digits_dots): Turn template
6677 * nss/nsswitch.h (__nss_hostname_digits_dots): New internal NSS
6679 * nss/getXXbyYY.c (H_ERRNO_VAR_P): New definition.
6680 (TYPE_VAR_P): Likewise.
6681 (FLAGS_VAR): Likewise.
6682 (AF_VAR_P): Likewise.
6683 (INTERNAL (REENTRANT_NAME)): Call __nss_hostname_digits_dots ()
6684 instead of including digits_dots.c.
6685 * nss/getXXbyYY_r.c (H_ERRNO_VAR_P): New definition.
6686 (TYPE_VAR_P): Likewise.
6687 (FLAGS_VAR): Likewise.
6688 (AF_VAR_P): Likewise.
6689 (INTERNAL (REENTRANT_NAME)): Call __nss_hostname_digits_dots ()
6690 instead of including digits_dots.c.
6692 2001-01-21 Ulrich Drepper <drepper@redhat.com>
6694 * sysdeps/posix/getaddrinfo.c: Reduce .data size.
6696 2001-01-21 Andreas Jaeger <aj@suse.de>
6698 * elf/constload2.c: Add prototype for init.
6700 2001-01-21 Ulrich Drepper <drepper@redhat.com>
6702 * stdlib/stdlib.h (drand48_data): Make available only for
6703 __USE_MISC. Rename elements to protect namespace. Change type
6704 and position of a and init element.
6705 * stdlib/drand48-iter.c: Don't handle unsigned short > 16 bit
6706 differently. Adjust for drand48_data change. Don't compute a here,
6707 it comes from drand48_data.
6708 * stdlib/lcong48_r.c: Don't handle unsigned short > 16 bit
6709 differently. Adjust for drand48_data change. Compute a here.
6710 * stdlib/srand48_r.c: Likewise.
6711 * stdlib/drand48.c: Adjust for drand48_data change.
6712 * stdlib/lrand48.c: Likewise.
6713 * stdlib/mrand48.c: Likewise.
6714 * stdlib/seek48.c: Likewise.
6715 * stdlib/drand48_r.c: Likewise.
6716 * stdlib/lrand48_r.c: Likewise.
6717 * stdlib/mrand48_r.c: Likewise.
6718 * stdlib/seed48_r.c: Likewise. Don't handle unsigned short > 16 bit
6720 * stdlib/erand48_r.c: Don't handle unsigned short > 16 bit differently.
6721 * stdlib/jrand48_r.c: Likewise.
6723 * po/sv.po: Update from translation team.
6725 2001-01-21 Andreas Jaeger <aj@suse.de>
6727 * stdio-common/vfprintf.c (vfprintf): Add casts.
6729 2001-01-20 Ulrich Drepper <drepper@redhat.com>
6731 * iconvdata/run-iconv-test.sh: Reorgnize a bit to allow running only
6733 * iconvdata/TESTS: Add entries for IBM932 and IBM943.
6735 * iconvdata/Makefile (modules): Add IBM932 and IBM943.
6736 * iconvdata/gconv-modules: Add entries for IBM932 and IBM943.
6737 * iconvdata/ibm932.c: New file.
6738 * iconvdata/ibm932.h: New file.
6739 * iconvdata/ibm943.c: New file.
6740 * iconvdata/ibm943.h: New file.
6741 Patches by Masahide Washizawa <washi@jp.ibm.com>.
6743 * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Fix typo
6744 preventing optimization from being done. Set the correct type bit
6745 in seen. Don't define and use _dl_base_addr unless
6746 NEED_DL_BASE_ADDR is defined.
6748 * io/ftw.c (ftw_dir): Add slash after directory name if there
6749 wasn't any. Reported by loris <loris@iol.it>.
6750 * io/Makefile (tests): Add bug-ftw2.
6751 * io/bug-ftw2.c: New file.
6753 2001-01-19 Ulrich Drepper <drepper@redhat.com>
6755 * stdlib/jrand48_r.c (__jrand48_r): Correct constructing of
6756 results. Reported by Jeff Higham <jhigham@algorithmics.com>.
6757 * stdlib/tst-rand48.c: New file.
6758 * stdlib/Makefile (tests): Add tst-rand48.
6760 * locale/newlocale.c (__newlocale): Fix test for setting all
6763 2001-01-19 Mark Kettenis <kettenis@gnu.org>
6765 * sysdeps/mach/hurd/chroot.c (chroot): Revert 1999-02-27 changes,
6766 but change looking up the initial directory port in a similar way
6767 as done by _hurd_change_directory_port_from_name.
6768 * hurd/fchroot.c (fchroot): Likewise.
6770 2001-01-18 Ulrich Drepper <drepper@redhat.com>
6772 * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): If HAVE_AUX_XID is
6773 defined don't look whether the AT_*ID values were set.
6774 If HAVE_AUX_PAGESIZE is defined don't look whether the pagesize is set.
6775 (_dl_show_auxv): Rewrite to avoid switch statement.
6776 * sysdeps/unix/sysv/linux/kernel-features.h: Define
6777 __ASSUME_AT_PAGESIZE for kernel >= 2.4.1.
6778 * sysdeps/unix/sysv/linux/ldsodefs.h: Define HAVE_AUX_XID.
6779 Define HAVE_AUX_PAGESIZE if __ASSUME_AT_PAGESIZE is defined.
6781 * sysdeps/unix/sysv/linux/fxstat64.c: Add one __builtin_expect.
6782 * sysdeps/unix/sysv/linux/lxstat64.c: Likewise.
6783 * sysdeps/unix/sysv/linux/xstat64.c: Likewise.
6785 * elf/rtld.c (process_envvars): Call __strtoul_internal instead of
6787 * elf/dl-minimal.c (strtol, __strtol_internal, strtoul): Removed.
6788 (__sigjmp_save): Set __mask_was_saved to zero since we don't save
6790 * dlfcn/eval.c (__strtol_internal): Define here.
6791 (eval): Use __strtol_internal instead of strtol.
6793 * elf/elf.h: Add a few more EF_MIPS_* constants.
6795 2001-01-17 Ulrich Drepper <drepper@redhat.com>
6797 * manual/Makefile (chapters): Add debug.
6798 * manual/debug.texi: New file.
6799 * manual/examples/execinfo.c: New file.
6800 Patch by suckfish@ihug.co.nz.
6802 2001-01-17 Andreas Schwab <schwab@suse.de>
6804 * sysdeps/m68k/bits/byteswap.h (__bswap_32): Add cast to avoid
6807 2001-01-17 Andreas Jaeger <aj@suse.de>
6809 * nscd/connections.c (nscd_run): Use proper format specifier.
6811 2001-01-16 Ulrich Drepper <drepper@redhat.com>
6813 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Move x86_cap_flags and
6814 x86_platforms data into new file after prepending _dl_. Change
6816 * sysdeps/unix/sysv/linux/i386/dl-procinfo.c: New file.
6817 * sysdeps/unix/sysv/linux/i386/Dist: Add dl-procinfo.c.
6818 * sysdeps/unix/sysv/linux/i386/Makefile: Add rules to build
6821 * setjmp/setjmp.h: Cleanup definition of setjmp macro.
6823 * sysdeps/i386/elf/bsd-setjmp.S: Real implementation.
6824 * sysdeps/i386/elf/bsd-_setjmp.S: Removed.
6825 * sysdeps/i386/elf/setjmp.S (setjmp): Removed here.
6826 (_setjmp): Likewise.
6827 * sysdeps/i386/bsd-_setjmp.S: Real implementation.
6828 * sysdeps/i386/bsd-setjmp.S: Real implementation.
6829 * sysdeps/i386/bits/setjmp.h: Remove PUSH_SIGNAL_MASK definition.
6830 * sysdeps/i386/setjmp.S: Remove PIC support. This is the non-ELF
6833 2001-01-16 Andreas Jaeger <aj@suse.de>
6835 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h (SIGCONTEXT): Fix
6836 misapplied last patch.
6838 2001-01-15 Ulrich Drepper <drepper@redhat.com>
6840 * stdlib/random.c (__initstate): Clean up a cast.
6841 (__setstate): Likewise.
6843 * sysdeps/unix/sysv/linux/mips/syscalls.list: Remove select
6844 syscall handling. The generic Linux version should work.
6846 2001-01-15 Andreas Jaeger <aj@suse.de>
6848 * sysdeps/unix/sysv/linux/sys/sendfile.h: Fix typo.
6850 * stdio-common/tstscanf.c (main): Add two testcases for '*' modifier.
6852 2001-01-14 Jakub Jelinek <jakub@redhat.com>
6854 * nss/getent.c (print_aliases, aliases_keys, ethers_keys,
6855 netgroup_keys, print_rpc, rpc_keys, print_shadow, shadow_keys):
6857 (group_keys, hosts_keys, network_keys, passwd_keys, protocols_keys):
6858 If number is 0, list all.
6859 (services_keys): Likewise. Lookup aliases as well.
6860 (databases): New table.
6861 (build_doc): Prepare argp doc text with list of supported databases.
6862 (main): Change to table driven processing.
6864 2001-01-14 Thorsten Kukuk <kukuk@suse.de>
6866 * sunrpc/xdr.c (xdr_long, xdr_u_long): Fix comments about these
6869 2001-01-03 Jakub Jelinek <jakub@redhat.com>
6871 * sunrpc/xdr.c (xdr_long, xdr_u_long): Return FALSE if trying to
6872 encode value which does not fit in the 32bit type.
6874 2001-01-15 Hiroyuki Machida <machida@sm.sony.co.jp>
6876 * sysdeps/unix/sysv/linux/mips/register-dump.h (REGISTER_DUMP):
6877 Change type of CTX to (struct sigcontext *).
6878 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h (GET_PC): Likewise.
6879 (GET_FRAME): Likewise.
6880 (GET_STACK): Likewise.
6881 (SIGCONTEXT): Likewise. Add 2nd arg _code.
6882 (SIGCONTEXT_EXTRA_ARGS): Add 2nd arg _code.
6884 2001-01-13 Ulrich Drepper <drepper@redhat.com>
6886 * manual/texinfo.tex: Update from upstream version.
6888 2001-01-13 Jakub Jelinek <jakub@redhat.com>
6890 * inet/ether_ntoh.c (lookup_function): Change arguments to match
6891 _nss_*_getntohost_r prototype.
6892 (ether_ntohost): Pass errno pointer to NSS function.
6894 2001-01-12 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
6896 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (MS_SYNC): Fix value.
6897 (MAP_LOCKED): New definition.
6898 (MAP_NORESERVE): New definition.
6900 2001-01-12 Ulrich Drepper <drepper@redhat.com>
6902 * assert/assert.h: Use static_cast instead of C-style cast for C++.
6903 Patch by Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>.
6905 2001-01-12 Ben Collins <bcollins@debian.org>
6907 * sysdeps/generic/segfault.c (install_handler): Use access, not
6910 2001-01-12 Andreas Jaeger <aj@suse.de>
6912 * posix/fnmatch_loop.c (FCT): Remove signed warnings.
6913 * posix/wordexp.c (do_parse_glob): Likewise.
6914 * sysdeps/posix/sigblock.c (__sigblock): Likewise.
6915 * sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
6916 * elf/dl-open.c (_dl_open): Likewise.
6917 * elf/dl-close.c (_dl_close): Likewise.
6918 * elf/dl-load.c (_dl_map_object): Likewise.
6919 * iconv/iconv_prog.c (process_fd): Likewise.
6920 * stdio-common/vfscanf.c (_IO_vfscanf): Likewise.
6922 * locale/localeinfo.h (struct locale_data): Use __flexarr instead
6923 of a zero-length array.
6925 2001-01-11 Jakub Jelinek <jakub@redhat.com>
6927 * stdlib/cxa_atexit.c (__cxa_atexit): Cast to (void *, int) func.
6928 * stdlib/cxa_finalize.c (__cxa_finalize): Add hidden second argument.
6929 * stdlib/cxa_on_exit.c: Remove.
6930 * stdlib/Makefile: Revert last patch.
6931 * stdlib/Versions: Likewise.
6932 * include/stdlib.h: Likewise.
6933 * stdlib/exit.h: Revert last patch.
6934 (struct exit_function): Add second argument to cxa fn.
6935 * stdlib/exit.c: Revert last patch.
6936 (exit): Add hidden second argument.
6938 2001-01-11 H.J. Lu <hjl@gnu.org>
6940 * elf/dl-libc.c (do_dlopen): Move DL_STATIC_INIT to ...
6941 * elf/dl-open.c (_dl_open): Here.
6942 * sysdeps/unix/sysv/linux/ia64/dl-static.c (_dl_static_lock):
6944 (_dl_static_init): Initialize the variables every time when possible.
6945 * sysdeps/unix/sysv/linux/ia64/ldsodefs.h (DL_STATIC_INIT):
6948 2001-01-11 Ulrich Drepper <drepper@redhat.com>
6950 * stdlib/Makefile (routines): Add cxa_on_exit.
6951 * stdlib/Versions [libc] (GLIBC_2.2.1): Add __cxa_on_exit.
6952 * stdlib/cxa_on_exit.c: New file.
6953 * include/stdlib.h: Add prototype for __cxa_on_exit.
6954 * stdlib/exit.c: Handle ef_cxa2.
6955 * stdlib/exit.h (enum): Add ef_cxa2.
6956 (struct exit_function): Add cxa2.
6958 * Versions.def [ld]: Add GLIBC_2.2.1.
6960 2001-01-10 H.J. Lu <hjl@gnu.org>
6962 * elf/dl-libc.c (do_dlopen): Call DL_STATIC_INIT for static binaries.
6963 * sysdeps/unix/sysv/linux/ia64/Makefile (sysdep-dl-routines): Add
6965 * sysdeps/unix/sysv/linux/ia64/Versions (ld): Add _dl_var_init.
6966 * sysdeps/generic/ldsodefs.h (DL_STATIC_INIT): Defined if not defined.
6967 * sysdeps/unix/sysv/linux/ia64/ldsodefs.h: New file.
6968 * sysdeps/unix/sysv/linux/ia64/dl-static.c: New file.
6969 * sysdeps/unix/sysv/linux/ia64/Dist: Add dl-static.c.
6971 2001-01-11 Ulrich Drepper <drepper@redhat.com>
6973 * libio/stdio.h: Remove definition of off_t.
6975 2001-01-11 Andreas Jaeger <aj@suse.de>
6977 * wcsmbs/tst-mbrtowc.c (utf8_test): New function by Markus Kuhn
6980 2001-01-10 Ulrich Drepper <drepper@redhat.com>
6982 * sunrpc/Makefile (distribute): Add errqueue.h.
6984 2001-01-10 H.J. Lu <hjl@gnu.org>
6986 * sysdeps/ia64/dl-machine.h (TRAMPOLINE_TEMPLATE): Also preserve
6987 r9, r10 and r11 for language specific registers.
6989 2001-01-10 Jakub Jelinek <jakub@redhat.com>
6991 * sunrpc/clnt_udp.c (clntudp_bufcreate): Set IP_RECVERR on the
6993 (clntudp_call): Handle MSG_ERRQUEUE.
6994 * sysdeps/generic/errqueue.h: New file.
6995 * sysdeps/unix/sysv/linux/errqueue.h: New file.
6997 2001-01-10 H.J. Lu <hjl@gnu.org>
6999 * sysdeps/unix/sysv/linux/ia64/syscalls.list (s_getpagesize): Removed.
7001 2001-01-10 Joseph S. Myers <jsm28@cam.ac.uk>
7003 * CONFORMANCE: Update.
7005 2001-01-09 Ulrich Drepper <drepper@redhat.com>
7007 * sysdeps/generic/elf/backtracesyms.c (__backtrace_symbols):
7008 Minimal cleanups. Add assert to ensure memory handling is correct.
7010 * manual/conf.texi (File Minimums): Fix _POSIX_PATH_MAX value.
7011 Reported by Ben Collins <bcollins@debian.org>.
7013 * time/strftime.c (my_strftime): Mark previous GNU extensions
7014 which are now in C99 as such.
7016 2001-01-08 Ulrich Drepper <drepper@redhat.com>
7018 * elf/rtld.c (process_envvars): Place output files for profiling
7019 in SUID binaries in /var/profile.
7021 * elf/dl-load.c (_dl_map_object): Don't look in cache for
7022 preloading in SUID binaries.
7024 * elf/dl-profile.c (_dl_start_profile): Open the output file with
7025 O_NOFOLLOW if possible.
7027 * include/stdlib.h: Add __posix_openpt declaration.
7028 * stdlib/stdlib.h: Add posix_openpt declaration.
7029 * login/Versions: Add posix_openpt for GLIBC_2.2.1.
7030 * sysdeps/generic/getpt.c: Define posix_openpt.
7031 * sysdeps/unix/bsd/getpt.c: Likewise.
7032 * sysdeps/unix/sysv/linux/getpt.c: Likewise.
7034 * time/Makefile (tests): Add tst-mktime.
7035 * time/tst-mktime.c: New file.
7037 * posix/tst-dir.c (main): One more mkdir() test.
7039 * sysdeps/unix/sysv/linux/ia64/getpagesize.c (__getpagesize):
7040 Remove getpagesize syscall. We assume that the pagesize is always
7041 determined from the auxiliary vector.
7043 * intl/dcigettext.c: Fix a few warnings.
7044 Patch by Bruno Haible <haible@ilog.fr>.
7046 2001-01-08 Andreas Jaeger <aj@suse.de>
7048 * io/test-lfs.c (do_test): Check lseek64 return for EINVAL.
7049 Reported by Joseph S. Myers <jsm28@cam.ac.uk>.
7051 2001-01-08 Ulrich Drepper <drepper@redhat.com>
7053 * sysdeps/generic/segfault.c (install_handler): Check output file
7056 * resolv/res_query.c: Use simply getenv() for HOSTALIASES.
7057 * sysdeps/generic/unsecvars.h (UNSECURE_ENVVARS): Add HOSTALIASES.
7059 * sysdeps/generic/unsecvars.h (UNSECURE_ENVVARS): Add missing comma.
7061 * malloc/memusage.c (me): Use access() to determine whether we
7062 should write the output file or not.
7064 * libio/bits/stdio.h (printf): Define macro to map printf call to
7065 fprintf which gcc can optimize.
7066 * stdio-common/printf.c: Undefine printf.
7068 2001-01-07 Ulrich Drepper <drepper@redhat.com>
7070 * sysdeps/generic/bits/byteswap.h (__bswap_64): Partly revert last
7071 patch. We must use unsigned int for l member of union.
7073 * sysdeps/powerpc/elf/libc-start.c (__libc_start_main): Don't call
7074 _dl_aux_init for shared libraries.
7076 * sysdeps/unix/sysv/linux/glob64.c: Moved to ...
7077 * sysdeps/gnu/glob64.c: ...here. New file.
7079 2001-01-07 Ben Collins <bcollins@debian.org>
7081 * manual/examples/longopt.c: Make the "struct option" a little
7082 more like it should be, adding usage of required_argument,
7083 noargument and such, and also setting the options string right.
7085 * manual/sysinfo.texi (Load Average): New section, documents
7088 2001-01-06 Ulrich Drepper <drepper@redhat.com>
7090 * version.h (VERSION): Bump to 2.2.1.
7092 * sysdeps/unix/sysv/linux/mips/Dist: Remove sys/acct.h.
7093 * sysdeps/alpha/Dist: Add alphaev6/stxncpy.S and alphaev6/stxcpy.S.
7094 * sysdeps/unix/sysv/aix/Dist: Add uitrunc.c, savef.S, and restf.S.
7095 * dlfcn/Makefile (distribute): Add errmsg1mod.c.
7096 * Makefile (distribute): Add include/libc-internal.h.
7097 * libio/Makefile (distribute): Avoid overwriting.
7099 * iconvdata/ibm937.c (BODY to IBM937): Correct several mistakes in
7100 buffer and table handling.
7102 2001-01-05 H.J. Lu <hjl@gnu.org>
7104 * elf/dl-support.c (non_dynamic_init): Move the auxiliary
7105 vector checking to ...
7106 (_dl_aux_init): Here. New function. Defined only if
7107 HAVE_AUX_VECTOR is defined.
7109 * sysdeps/generic/libc-start.c (__libc_start_main): Call
7110 _dl_aux_init for static binaries if HAVE_AUX_VECTOR is defined.
7112 * sysdeps/powerpc/elf/libc-start.c (__libc_start_main): Call
7115 * sysdeps/unix/sysv/linux/ldsodefs.h (DL_FIND_AUXV): Removed.
7116 (HAVE_AUX_VECTOR): Defined.
7117 (_dl_aux_init): Declared.
7119 2001-01-05 Ben Collins <bcollins@debian.org>
7121 * manual/string.texi (Finding Tokens in a String): Document XPG
7122 basename() and dirname(), as well as GNU basename().
7124 2001-01-05 Jakub Jelinek <jakub@redhat.com>
7126 * Makeconfig (preprocess-version): Replace -traditional with
7127 -x assembler-with-cpp.
7129 2001-01-05 Joseph S. Myers <jsm28@cam.ac.uk>
7131 * math/bits/cmathcalls.h: Don't define inline cimag, creal or conj
7132 for GCC 2.97 or later.
7134 2001-01-05 Ben Collins <bcollins@debian.org>
7136 * manual/stdio.texi (getline): Clarify the return value in the
7137 case of EOF being reached before a newline.
7139 2001-01-04 Jakub Jelinek <jakub@redhat.com>
7141 * sunrpc/pmap_clnt.c (__get_myaddress): Return TRUE if successful,
7143 (pmap_set, pmap_unset): Check __get_myaddress return value.
7145 2001-01-05 Mark Kettenis <kettenis@gnu.org>
7147 * sysdeps/generic/netinet/if_ether.h: Include <sys/types.h>.
7148 (struct ether_addr): Declare ether_addr_octet member as
7149 `u_int8_t'. Add __attribute__ ((__packed__)).
7151 2001-01-06 Mark Kettenis <kettenis@gnu.org>
7153 * sysdeps/mach/hurd/readdir64.c: New file.
7154 * sysdeps/mach/hurd/readdir64_r.c: New file.
7156 2001-01-07 Mark Kettenis <kettenis@gnu.org>
7158 * sysdeps/mach/hurd/fstatvfs.c (fstatvfs): Add comment about
7159 `struct statfs' and `struct statvfs' being identical.
7160 * sysdeps/mach/hurd/statvfs.c (statvfs): Likewise.
7162 2001-01-06 Mark Kettenis <kettenis@gnu.org>
7164 * sysdeps/mach/hurd/fstatfs64.c: New file.
7165 * sysdeps/mach/hurd/fstatvfs64.c: New file.
7166 * sysdeps/mach/hurd/statfs64.c: New file.
7167 * sysdeps/mach/hurd/statvfs64.c: New file.
7168 * sysdeps/mach/hurd/statfsconv.c: New file.
7169 * sysdeps/mach/hurd/Dist: Add statfsconv.c.
7171 2001-01-06 Ulrich Drepper <drepper@redhat.com>
7173 * iconv/skeleton.c: Reset outbuf for next round of the loop.
7174 Reported by Owen Taylor <otaylor@redhat.com>.
7175 * iconv/Makefile (tests): Add tst-iconv3.
7176 * iconv/tst-iconv3.c: New file.
7178 * iconvdata/ibm930.c: Fix handling of state. Optimize a bit.
7179 * iconvdata/ibm933.c: Likewise.
7180 * iconvdata/ibm935.c: Likewise.
7181 * iconvdata/ibm937.c: Likewise.
7182 * iconvdata/ibm939.c: Likewise.
7183 * iconvdata/ibm930.h: Adjust single byte table for optimization.
7184 * iconvdata/ibm933.h: Likewise.
7185 * iconvdata/ibm935.h: Likewise.
7186 * iconvdata/ibm939.h: Likewise.
7188 * iconvdata/testdata/IBM930: Add misssing SI.
7189 * iconvdata/testdata/IBM933: Likewise.
7190 * iconvdata/testdata/IBM935: Likewise.
7191 * iconvdata/testdata/IBM937: Likewise.
7192 * iconvdata/testdata/IBM939: Likewise.
7194 2001-01-06 Andreas Jaeger <aj@suse.de>
7196 * configure.in: Check for old add-ons that shouldn't be used with
7197 current glibc anymore.
7199 2001-01-06 Mark Kettenis <kettenis@gnu.org>
7201 * sysdeps/mach/hurd/readdir_r.c (__readdir_r): Return error number
7202 instead of -1 on failure. Don't forget to copy file name into
7203 *ENTRY if successful. Set *RESULT to NULL upon reaching the end
7206 2001-01-06 Mark Kettenis <kettenis@gnu.org>
7208 * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Don't forget to
7209 copy st_atime member.
7211 2001-01-05 Ulrich Drepper <drepper@redhat.com>
7213 * io/ftw.c (ftw_dir): Don't add a second slash at the beginning
7214 for searches from the root directory.
7215 Reported by loris <loris@iol.it> [PR libc/1991].
7216 * io/Makefile (tests): Add bug-ftw1.
7217 * io/bug-ftw1.c: New file.
7219 * elf/dl-support.c (non_dynamic_init): Don't define DL_FIND_AUXV
7220 if it is not available. Instead use it only if it is available.
7221 * sysdeps/unix/sysv/linux/ldsodefs.h: New file.
7223 * iconv/gconv_simple.c (internal_ics4_loop): Correct test for
7224 overflowing output buffer.
7225 (internal_ucs4_loop_unaligned): Likewise.
7226 (ucs4_internal_loop): Likewise.
7227 (ucs4_internal_loop_unaligned): Likewise.
7228 (internal_ucs4le_loop): Likewise.
7229 (internal_ucs4le_loop_unaligned): Likewise.
7230 (ucs4le_internal_loop): Likewise.
7231 (ucs4le_internal_loop_unaligned): Likewise.
7232 Reported by Owen Taylor <otaylor@redhat.com>.
7233 * iconv/Makefile (tests): Add tst-iconv2.
7234 * iconv/tst-iconv2.c: New file.
7236 2001-01-04 H.J. Lu <hjl@gnu.org>
7238 * elf/dl-support.c (DL_FIND_AUXV): New. Defined if not defined.
7239 (_dl_clktck): Declared.
7240 (non_dynamic_init): Take 3 arguments.
7241 Set _dl_pagesize, _dl_platform and _dl_clktck from AUX.
7243 2001-01-01 Bruno Haible <haible@clisp.cons.org>
7245 Finish implementation of plural form handling.
7246 * intl/dcigettext.c (known_translation_t): Rename 'domain' field to
7247 'domainname'. Remove 'plindex' field. Add 'domain' and
7248 'translation_length' fields.
7249 (transcmp): Don't compare 'plindex' fields.
7250 (plural_lookup): New function.
7251 (DCIGETTEXT): Change cache handing in the plural case. Don't call
7252 plural_eval before the translation and its catalog file have been
7253 found. Remove plindex from cache key. Add 'translation_length' and
7254 'domain' to cache result.
7255 (_nl_find_msg): Remove index argument, return length of translation
7256 to the caller instead. Weaken comparison of string lengths, to account
7257 for plural entries. Call iconv() on the entire result string, not
7258 only on the portion needed so far.
7259 * intl/loadinfo.h (_nl_find_msg): Remove index argument, add lengthp
7261 * intl/loadmsgcat.c (_nl_load_domain): Adapt to _nl_find_msg change.
7263 2001-01-04 Ulrich Drepper <drepper@redhat.com>
7265 * intl/plural.y (yylex): Minimal improvement in number scanner.
7267 2000-07-31 Bruno Haible <haible@clisp.cons.org>
7269 * intl/plural.y: Include config.h. Needed to define 'inline' away for
7270 C compilers that don't support it.
7271 (yylex): Don't use gcc specific case range syntax.
7272 * intl/loadmsgcat.c (INIT_GERMANIC_PLURAL): New macro, for old
7275 2000-10-12 Bruno Haible <haible@clisp.cons.org>
7277 * intl/finddomain.c: Remove unneeded includes.
7279 2000-10-12 Bruno Haible <haible@clisp.cons.org>
7281 * intl/localealias.c (memcpy): Return first argument, just like the
7282 real memcpy function does.
7283 * intl/bindtextdom.c (memcpy): Likewise.
7284 * intl/finddomain.c (memcpy): Likewise.
7285 * intl/l10nflist.c (memcpy): Likewise.
7286 * intl/textdomain.c (memcpy): Likewise.
7287 From Paul Eggert <eggert@twinsun.com>.
7289 2001-01-03 Jakub Jelinek <jakub@redhat.com>
7291 * resolv/resolv.h (struct __res_state): Add nsinit field.
7292 * resolv/res_send.c (res_nsend): Use it instead of nscount.
7293 * resolv/res_init.c (__res_vinit): Initialize it.
7294 (res_nclose): Clear it instead of nscount.
7296 2001-01-04 Ulrich Drepper <drepper@redhat.com>
7298 * malloc/mtrace.pl: Fix matching of addresses.
7299 Patch by Aharon Robbins <arnold@skeeve.com>.
7301 * Versions.def (ld): Add GLIBC_2.2.
7303 * catgets/gencat.c: Copyright 2001.
7304 * csu/version.c: Likewise.
7305 * debug/catchsegv.sh: Likewise.
7306 * debug/xtrace.sh: Likewise.
7307 * elf/ldconfig.c: Likewise.
7308 * elf/sprof.c: Likewise.
7309 * iconv/iconv_prog.c: Likewise.
7310 * locale/locale.c: Likewise.
7311 * locale/localedef.c: Likewise.
7312 * malloc/memusage.sh: Likewise.
7313 * malloc/mtrace.pl: Likewise.
7314 * nscd/nscd.c: Likewise.
7315 * posix/getconf.c: Likewise.
7317 2001-01-04 Mark Kettenis <kettenis@gnu.org>
7319 * include/stdio.h: Only provide __getwc_unlocked prototype if
7320 USE_IN_LIBIO is defined.
7322 2001-01-04 Kaz Kojima <kkojima@rr.iij4u.or.jp>
7324 * sysdeps/unix/sysv/linux/sh/socket.S (__socket): Fix error code
7327 2001-01-03 Andreas Schwab <schwab@suse.de>
7329 * sysdeps/generic/strtoll.c: Remove unused __strtoq_internal alias.
7330 * sysdeps/generic/strtoull.c: Remove unused __strtouq_internal alias.
7332 * sysdeps/wordsize-64/strtol.c: Add strtoq alias and fix strtoll alias.
7333 * sysdeps/wordsize-64/strtoul.c: Add strtouq alias and fix
7335 * sysdeps/wordsize-64/wcstol.c: Add wcstoq alias and fix wcstoll alias.
7336 * sysdeps/wordsize-64/wcstoul.c: Add wcstouq alias and fix
7339 * sysdeps/generic/strtoul.c: Make sure we find strtol.c in this
7341 * sysdeps/generic/strtol_l.c: Likewise.
7342 * sysdeps/generic/strtoul_l.c: Likewise.
7343 * sysdeps/generic/wcstoul.c: Likewise, for wcstol.c.
7345 * sysdeps/wordsize-64/strtol_l.c: Fix alias.
7346 * sysdeps/wordsize-64/strtoul_l.c: Likewise.
7347 * sysdeps/wordsize-64/wcstol_l.c: Fix alias.
7348 * sysdeps/wordsize-64/wcstoul_l.c: Likewise.
7350 2001-01-04 Andreas Jaeger <aj@suse.de>
7352 * nss/nsswitch.c: Include files for missing prototypes, remove
7353 buggy declaration of prototypes.
7355 2001-01-03 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7357 * resolv/Versions: Fix bracing.
7358 * sysdeps/powerpc/soft-fp/Versions: Likewise.
7359 * sysdeps/sparc/sparc64/soft-fp/Versions: Likewise.
7361 2001-01-02 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7363 * sysdeps/powerpc/dl-machine.c (__process_machine_rela): Fix typo.
7365 2001-01-02 Ulrich Drepper <drepper@redhat.com>
7367 * manual/Makefile (TEXI2PDF): Change to texi2dvi --pdf.
7368 Suggested by Minko Markov <mmarkov@home.com>.
7370 2001-01-02 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7372 * sysdeps/powerpc/elf/start.S (__data_start): Make it global.
7373 * sysdeps/powerpc/dl-machine.c (dl_reloc_overflow): Print the name of
7375 (__process_machine_rela): Pass symbol to dl_reloc_overflow().
7377 2001-01-02 Ben Collins <bcollins@debian.org>
7379 * time/tzset.c (tzset_internal): Make sure we fall back to UTC
7380 if TZ is not set and TZDEFAULT is not present.
7382 2001-01-01 Ben Collins <bcollins@debian.org>
7384 * string/strings.h: Make sure we declare our functions even if
7385 string.h is already included, based on whether or not __USE_BSD is
7388 2001-01-02 Ulrich Drepper <drepper@redhat.com>
7390 * dlfcn/dlerror.c (dlerror): Handle call of dlerror() before any
7391 other dlopen() and dlsym().
7392 Based on a patch by Ben Collins <bcollins@debian.org>.
7394 2001-01-02 Andreas Jaeger <aj@suse.de>
7396 * dlfcn/errmsg1.c (main): Call dlerror initially.
7397 Reported by Ben Collins <bcollins@debian.org>.
7399 2001-01-02 Ulrich Drepper <drepper@redhat.com>
7401 * intl/dcigettext.c (guess_category_value): Rewrite so that LANGUAGE
7402 value is ignored if the selected locale is the C locale.
7403 * intl/tst-gettext.c: Set locale for above change.
7404 * intl/tst-translit.c: Likewise.
7406 2001-01-02 Andreas Jaeger <aj@suse.de>
7408 * libio/wgenops.c (_IO_wdoallocbuf): Use correct wide access macro.
7409 (_IO_switch_to_wget_mode): Likewise.
7410 (_IO_sputbackwc): Likewise.
7411 (_IO_sungetwc): Use wint_t for result.
7413 * stdio-common/vfscanf.c (__vfscanf): Use WINT_T for done.
7415 * sysdeps/generic/strtol.c (strtol): Make cnt size_t for correct
7418 * sysdeps/generic/printf_fphex.c (putc): Cast _IO_putwc_unlocked
7419 to (int) to avoid warnings.
7420 * stdio-common/printf_fp.c (putc): Likewise.
7421 * stdio-common/printf_size.c (putc): Likewise.
7423 * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Make
7426 2001-01-01 Andreas Jaeger <aj@suse.de>
7428 * inet/rcmd.c (rcmd_af): Use socklen_t for len.
7430 2000-12-31 Andreas Jaeger <aj@suse.de>
7432 * include/libc-internal.h: Add prototype for __libc_freeres.
7434 * sysdeps/unix/sysv/linux/init-first.c: Include <libc-internals.h>
7435 for prototypes, remove redundant prototypes.
7436 * gmon/gmon.c: Likewise.
7437 * sysdeps/unix/i386/i586/clock_getres.c: Likewise.
7438 * sysdeps/unix/i386/i586/clock_gettime.c: Likewise.
7439 * malloc/mtrace.c: Likewise.
7441 * sysdeps/generic/enbl-secure.c: Include <libc-internals.h> for
7443 * elf/soinit.c: Likewise.
7444 * sysdeps/generic/prof-freq.c: Likewise.
7445 * sysdeps/mach/hurd/profil.c: Likewise.
7446 * debug/noophooks.c: Likewise.
7447 * debug/pcprofile.c: Likewise.
7448 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c: Likewise.
7449 * sysdeps/generic/get_clockfreq.c: Likewise.
7450 * malloc/set-freeres.c: Likewise.
7452 * locale/localeinfo.h: Add internal prototypes.
7454 * elf/rtld.c (dl_main): Fix prototype.
7456 * iconvdata/tst-table-to.c (main): Use return instead of exit to
7459 * nis/rpcsvc/yp_prot.h: Remove __P.
7460 * nis/rpcsvc/ypupd.h: Likewise.
7461 * nis/rpcsvc/yp.h: Likewise.
7463 * sunrpc/rpc_main.c: Add noreturn attributes.
7464 * sunrpc/rpc_scan.h: Likewise.
7466 * sunrpc/rpc_hout.c (storexdrfuncdecl): Make static.
7468 * sunrpc/rpcinfo.c: Add noreturn attribute to brdcst.
7470 * sunrpc/proto.h: Add noreturn attributes to error and crash.
7472 * posix/bsd-getpgrp.c: Add prototype to avoid warning.
7474 * sunrpc/svc_unix.c: Include <rpc/svc.h> for prototypes.
7476 * sunrpc/create_xid.c: Include <rpc/svc.h> for prototypes.
7478 * include/rpc/rpc_msg.h: Add prototypes for some functions.
7479 * include/rpc/auth.h: Likewise.
7480 * include/rpc/auth_des.h: Likewise.
7481 * include/rpc/clnt.h: Likewise.
7482 * include/rpc/rpc.h: Likewise.
7483 * include/rpc/svc.h: Likewise.
7484 * include/rpc/svc_auth.h: Likewise.
7486 * include/rpc/des_crypt.h: New file.
7488 * malloc/memusagestat.c (main): Use return instead of exit to
7490 * io/pwd.c (main): Likewise.
7491 * iconvdata/tst-table-from.c (main): Likewise.
7492 * ctype/test_ctype.c (main): Likewise.
7493 * setjmp/tst-setjmp.c (main): Likewise.
7494 * signal/tst-signal.c (main): Likewise.
7495 * stdlib/tst-strtol.c (main): Likewise.
7496 * stdlib/tst-strtod.c (main): Likewise.
7497 * stdlib/tst-strtoll.c (main): Likewise.
7498 * stdlib/tst-xpg-basename.c (main): Likewise.
7499 * dirent/tst-seekdir.c (main): Likewise.
7500 * grp/testgrp.c (main): Likewise.
7501 * inet/test_ifindex.c (main): Likewise.
7502 * io/test-utime.c (main): Likewise.
7503 * posix/test-vfork.c (main): Likewise.
7504 * posix/testfnm.c (main): Likewise.
7505 * stdio-common/temptest.c (main): Likewise.
7506 * stdio-common/test_rdwr.c (main): Likewise.
7507 * stdio-common/tst-fileno.c (main): Likewise.
7508 * stdio-common/tst-sscanf.c (main): Likewise.
7509 * stdio-common/tstscanf.c (main): Likewise.
7510 * string/bug-strncat1.c (main): Likewise.
7511 * string/bug-strpbrk1.c (main): Likewise.
7512 * string/bug-strspn1.c (main): Likewise.
7513 * string/test-ffs.c (main): Likewise.
7514 * string/tst-inlcall.c (main): Likewise.
7515 * string/tst-svc.c (main): Likewise.
7516 * timezone/test-tz.c (main): Likewise.
7517 * wctype/test_wcfuncs.c (main): Likewise.
7518 * wctype/test_wctype.c (main): Likewise.
7520 * stdlib/tst-random.c: Add attribute noreturn to fail.
7522 2000-12-28 Wolfram Gloger <wg@malloc.de>
7524 * malloc/malloc.c (MALLOC_COPY): Handle case if source and
7525 destination overlap. Assume dest is always below source if
7528 2000-12-30 Ulrich Drepper <drepper@redhat.com>
7530 * elf/dl-close.c (_dl_close): We can ignore the NODELETE flag if the
7531 object was not yet initialized.
7533 2000-12-28 H.J. Lu <hjl@gnu.org>
7535 * elf/dl-deps.c (_dl_map_object_deps): Make sure the DSO state
7536 is always consistent even if its dependency is failed.
7538 * elf/dl-open.c (_dl_open): Increment the open count before
7539 calling _dl_close () in case of failure.
7541 * elf/neededtest4.c: New file.
7542 * elf/neededobj5.c: New file.
7543 * elf/neededobj6.c: New file.
7545 * elf/Makefile (distribute): Add neededobj5.c and neededobj6.c.
7546 (tests): Add neededtest4.
7547 (modules-names): Add neededobj5 and neededobj6.
7548 ($(objpfx)neededobj6.so): New target.
7549 ($(objpfx)neededtest4): New target.
7550 ($(objpfx)neededtest4.out): New target.
7552 2000-12-28 Joseph S. Myers <jsm28@cam.ac.uk>
7554 * misc/sys/cdefs.h (__attribute_format_strfmon__): Define.
7555 * stdlib/monetary.h: Add strfmon format attributes.
7557 2000-12-28 Roland McGrath <roland@frob.com>
7559 * sysdeps/mach/hurd/ioctl.c (do_ioctl): Avoid double-increment after
7560 __mempcpy does it for us.
7562 2000-12-28 Andreas Jaeger <aj@suse.de>
7564 * sysdeps/generic/dl-environ.c: Add prototype for unsetenv.
7566 * sysdeps/unix/sysv/linux/i386/setrlimit.c: Add prototype for
7569 * sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c: Add prototype for
7572 * sysdeps/unix/sysv/linux/i386/getrlimit.c: Add prototype for
7575 * sysdeps/unix/sysv/linux/i386/chown.c: Add prototypes for
7576 __chown_is_lchown and __real_chown.
7578 * sysdeps/generic/ldsodefs.h: Add noreturn attribute to
7581 * sunrpc/rpc_hout.c (print_funcdef): Add break statement to shut
7582 up GCC's warning about "deprecated use of label at end of compound
7584 * sunrpc/rpc_cout.c (emit_inline): Likewise.
7586 * gmon/bb_exit_func.c: Include <sys/gmon.h> for internal
7588 Remove struct bb and __bb_head since those are declared by
7591 2000-12-22 Ben Collins <bcollins@debian.org>
7593 * manual/charset.texi: Fix typo in description of WCHAR_MAX.
7595 * manual/argp.texi: Document argp_domain as part of struct argp.
7597 2000-12-28 Andreas Jaeger <aj@suse.de>
7599 * catgets/Makefile (generated): Add sample.SJIS.cat.
7601 * sunrpc/rpc_dtable.c: Include rpc/clnt.h for prototypes.
7603 * elf/dl-minimal.c: Add prototypes.
7605 * include/locale.h: Add internal prototypes.
7606 * include/sys/gmon.h: Likewise.
7608 * dlfcn/errmsg1mod.c: Add prototype for foo to shut up GCC.
7610 2000-12-27 Ben Collins <bcollins@debian.org>
7612 * elf/dl-open.c (_dl_open): Correctly set the new objname pointer
7613 when reallocating the error strings.
7614 Reported by Kalle Olavi Niemitalo <kon@iki.fi>
7616 2000-12-27 Ulrich Drepper <drepper@redhat.com>
7618 * dlfcn/Makefile (tests): Add errmsg1.
7619 (modules-names): Add errmsg1mod.
7620 Add rules to run errmsg1.
7621 * dlfcn/errmsg1.c: New file.
7622 * dlfcn/errmsg1mod.c: New file.
7624 * dlfcn/dlerror.c (dlerror): Always create output string which
7625 includes object file name.
7627 * sysdeps/alpha/alphaev6/memcpy.S: Don't go through unrolled loop
7628 if we would go through it only once.
7629 Patch by Rick Gorton <rick.gorton@api-networks.com>.
7631 * sysdeps/alpha/alphaev67/strncat.S: Fix handling of numeric parameter.
7632 Patch by Richard Henderson <rth@redhat.com>.
7634 2000-12-27 Jakub Jelinek <jakub@redhat.com>
7636 * malloc/malloc.c (memmove): Add prototypes.
7637 (MALLOC_MEMMOVE): Define.
7638 (chunk_realloc): Use it instead of MALLOC_COPY if source and
7639 destination might overlap.
7641 2000-12-27 Andreas Jaeger <aj@suse.de>
7643 * stdio-common/printf_fp.c (__printf_fp): Add prototype for nested
7645 * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
7646 * locale/programs/locale.c (show_locale_vars): Likewise.
7647 (show_info): Likewise.
7648 * locale/programs/ld-collate.c (collate_output): Likewise.
7649 * locale/programs/ld-ctype.c (set_class_defaults): Likewise.
7650 * elf/dl-deps.c (_dl_map_object_deps): Likewise.
7651 * stdlib/rpmatch.c (rpmatch): Likewise.
7653 * setjmp/tst-setjmp.c: Make local functions static.
7654 * setjmp/jmpbug.c: Likewise.
7655 * signal/tst-signal.c: Likewise.
7656 * stdio-common/tfformat.c: Likewise.
7657 * string/tst-svc.c: Likewise.
7658 * time/clocktest.c: Likewise.
7659 * time/tst-getdate.c: Likewise.
7660 * dirent/list.c: Likewise.
7661 * dirent/opendir-tst1.c: Likewise.
7662 * posix/runtests.c: Likewise.
7663 * posix/tst-getaddrinfo.c: Likewise.
7664 * posix/tst-chmod.c: Likewise.
7665 * posix/wordexp-test.c: Likewise.
7666 * misc/tst-efgcvt.c: Likewise.
7667 * timezone/tst-timezone.c: Likewise.
7668 * rt/tst-clock.c: Likewise.
7669 * rt/tst-shm.c: Likewise.
7670 * rt/tst-aio2.c: Likewise.
7671 * rt/tst-aio3.c: Likewise.
7672 * rt/tst-aio4.c: Likewise.
7673 * rt/tst-aio5.c: Likewise.
7675 * dlfcn/failtest.c: Add prototype for foo.
7677 * dlfcn/glrefmain.c: Add prototype for do_test.
7679 * dlfcn/tst-dladdr.c: Add prototype for do_test.
7681 * string/test-ffs.c (main): Add prototype for nested function.
7683 * sunrpc/des_soft.c: Include rpc/des_crypt.h for prototype.
7685 * nss/XXX-lookup.c: Add prototype to shut up GCC.
7687 * include/netinet/ether.h (DECLARE_NSS_PROTOTYPES): Fix
7688 setetherent prototype.
7689 Add internal interfaces.
7691 * nis/nss_nis/nis-ethers.c (_nss_nis_setetherent): Likewise.
7692 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent): Likewise.
7694 * resolv/res_data.c: Don't add (conflicting) prototypes for _LIBC.
7696 * nis/nis_intern.h: Add prototype for __pmap_getnisport.
7698 * nss/nss_files/files-ethers.c: Include netinet/ether.h to get
7699 prototypes, remove struct etherent since it's declared in ether.h.
7700 Fix ntohost declaration.
7702 * elf/dl-profile.c (_dl_mcount): Add empty statement to shut up GCC.
7704 * include/getopt.h: Add internal interfaces.
7705 * include/termios.h: Likewise.
7706 * include/resolv.h: Likewise.
7707 * include/netdb.h: Likewise.
7708 * include/grp.h: Likewise.
7709 * include/pwd.h: Likewise.
7710 * include/shadow.h: Likewise.
7711 * include/rpc/netdb.h: Likewise.
7712 * include/setjmp.h: Likewise.
7714 * include/stdio.h: Add prototypes for compatibility functions.
7715 * include/grp.h: Likewise.
7716 * include/pwd.h: Likewise.
7717 * include/shadow.h: Likewise.
7719 * include/fenv.h: Define internal interfaces.
7721 2000-12-27 Ulrich Drepper <drepper@redhat.com>
7723 * sysdeps/generic/bits/byteswap.h (__bswap_64): Handle constant
7724 argument case separately.
7725 * sysdeps/i386/bits/byteswap.h (__bswap_64): Likewise.
7727 2000-12-27 Andreas Jaeger <aj@suse.de>
7729 * include/sys/wait.h: Add some prototypes.
7730 * Rules (dummy.c): Create also prototype to shut up GCC.
7732 2000-12-27 Andreas Jaeger <aj@suse.de>
7734 * sysdeps/mach/hurd/if_index.c (__protocol_available): Uncomment,
7735 it's not needed at the moment.
7736 * sysdeps/generic/if_index.c (__protocol_available): Likewise.
7737 * sysdeps/unix/sysv/linux/if_index.c (__protocol_available): Likewise.
7739 2000-12-26 Andreas Jaeger <aj@suse.de>
7741 * libio/getc_u.c: Include stdio.h via system path to get internal
7743 * libio/getwc_u.c: Likewise.
7745 * stdlib/strfmon.c: Fix prototype of __printf_fp.
7747 * stdio-common/vfprintf.c (process_arg): Move __printf_fphex and
7748 __printf_fp prototypes to ...
7749 * include/printf.h: ...here.
7751 * include/stdio.h: Add some internal prototypes to shut up GCC.
7752 * include/stdlib.h: Likewise.
7754 * sysdeps/posix/sigpause.c (__sigpause): Use ISO C prototype
7757 * include/signal.h: Add prototypes for internal sigpause
7760 2000-12-26 Ulrich Drepper <drepper@redhat.com>
7762 * sysdeps/generic/bits/byteswap.h (__bswap_64): Make it usable for
7763 64bit platforms. Reported by Dave Gilbert <gilbertd@treblig.org>.
7765 * string/Makefile (tests): Add tst-bswap.
7766 * string/tst-bswap.c: New file.
7768 2000-12-11 Bruno Haible <haible@clisp.cons.org>
7770 * Makefile ($(inst_includedir)/gnu/stubs.h): Sort in the C locale.
7772 2000-12-26 Ulrich Drepper <drepper@redhat.com>
7774 * sunrpc/Makefile (rpcgen-cmd): Use single quotes in sed call.
7775 Patch by Ed Connell <Ed.Connell@sas.com>.
7777 2000-12-24 Ulrich Drepper <drepper@redhat.com>
7779 * locale/iso-639.def: Correct one entry. Add two missing entries.
7781 * locale/iso-4217.def: Change entry for Eritrea.
7782 Reported by Daniel Yacob <yacob@geez.org>.
7784 2000-12-23 Ben Collins <bcollins@debian.org>
7786 * manual/charset.texi (Extended Char Intro): Fix typo in ISO 6937
7789 * manual/stdio.texi (Dynamic Output): Document the return value of
7790 asprintf. Also make the asprintf/snprintf examples a little
7791 better (check for some error returns).
7793 2000-12-22 Andreas Jaeger <aj@suse.de>
7795 * include/stdio.h: Add __ftrylockfile prototype.
7797 2000-12-21 H.J. Lu <hjl@gnu.org>
7799 * sysdeps/ia64/fpu/math_ldbl.h (ieee_long_double_shape_type):
7800 Make sign_exponent element signed.
7802 * sysdeps/ieee754/ldbl-96/math_ldbl.h (ieee_long_double_shape_type):
7805 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Remove dead branch.
7807 2000-12-21 Andreas Jaeger <aj@suse.de>
7809 * nis/nss_nisplus/nisplus-ethers.c (struct etherent): Removed.
7810 * inet/ether_hton.c: Likewise
7811 * inet/ether_ntoh.c: Likewise.
7813 * nis/nss_nis/nis-ethers.c (_nss_nis_getntohost_r): Fix
7814 declaration to match prototype.
7816 * include/netinet/ether.h (struct etherent): Declare here so that
7817 all implementations use the same struct.
7819 * nis/nss_nis/nis-ethers.c: Include netinet/ether.h to get
7821 (struct ether): Removed.
7822 Use struct etherent instead of ether everywhere.
7824 * include/rpc/auth.h (DECLARE_NSS_PROTOTYPES): New.
7826 * include/rpc/auth_des.h (DECLARE_NSS_PROTOTYPES): New.
7828 * sunrpc/publickey.c: Include auth_des.h for prototypes.
7830 2000-12-20 Ulrich Drepper <drepper@redhat.com>
7832 * math/test-misc.c: Add more tests for nextafter functions.
7834 * sysdeps/i386/fpu/s_nextafterl.c: Handle change from denormal to
7835 normal correctly. Correct test for sign.
7836 Based on a patch by HJ Lu.
7838 2000-12-19 Ulrich Drepper <drepper@redhat.com>
7840 * Makeconfig (preprocess-version): Add -traditional to gcc call.
7843 2000-12-19 Andreas Jaeger <aj@suse.de>
7845 * include/netinet/ether.h (DECLARE_NSS_PROTOTYPES): New.
7847 * nis/nis_intern.h: Add prototype for __do_niscall3.
7849 * nis/nss_nis/nis-rpc.c (_nss_nis_setrpcent): Fix declaration to
7852 * include/netdb.h (DECLARE_NSS_PROTOTYPES): Reformat.
7854 * include/rpc/netdb.h (DECLARE_NSS_PROTOTYPES): New.
7856 * include/aliases.h (DECLARE_NSS_PROTOTYPES): New.
7858 2000-12-18 Ulrich Drepper <drepper@redhat.com>
7860 * math/test-misc.c: Add more tests for nextafter.
7861 * sysdeps/i386/fpu/s_nextafterl.c: Handle decrement for x<0 correctly.
7862 * sysdeps/ieee754/ldbl-96/math_ldbl.h
7863 (ieee_long_double_shape_type): Make sign_exponent element signed.
7865 * manual/message.texi: Add Estonian to plural overview list.
7866 Correct rule for Slavic languages.
7867 Patch by Stanislav Brabec <utx@penguin.cz>.
7869 * nis/nss_nis/nis-netgrp.c: Remove unnecessary initializations.
7871 2000-12-18 Andreas Jaeger <aj@suse.de>
7873 * test-skeleton.c: Use temp_name_list instead of name_list to
7874 avoid collision with name_list from inet/netgroup.h.
7876 * nss/nss_files/files-network.c (NEED_H_ERRNO): Define.
7878 * include/grp.h (DECLARE_NSS_PROTOTYPES): New.
7879 * include/pwd.h (DECLARE_NSS_PROTOTYPES): New.
7880 * include/netdb.h (DECLARE_NSS_PROTOTYPES): New.
7881 * include/shadow.h (DECLARE_NSS_PROTOTYPES): New.
7883 * hesiod/nss_hesiod/hesiod-proto.c (_nss_hesiod_setprotoent): Fix
7884 declaration to match prototype.
7885 * hesiod/nss_hesiod/hesiod-pwd.c (_nss_hesiod_setpwent): Likewise.
7886 * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_setgrent): Likewise.
7887 * hesiod/nss_hesiod/hesiod-service.c (_nss_hesiod_setservent):
7889 * nis/nss_nis/nis-grp.c (_nss_nis_setgrent): Likewise.
7890 * nis/nss_nis/nis-pwd.c (_nss_nis_setpwent): Likewise.
7891 * nis/nss_nis/nis-proto.c (_nss_nis_setprotoent): Likewise.
7892 * nis/nss_nis/nis-service.c (_nss_nis_setservent): Likewise.
7893 (_nss_nis_getservbyport_r): Likewise.
7894 * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent): Likewise.
7895 * nis/nss_nis/nis-spwd.c (_nss_nis_setspent): Likewise.
7896 * nis/nss_nis/nis-network.c (_nss_nis_getnetent_r): Likewise.
7897 (_nss_nis_setnetent): Likewise
7898 * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
7899 (_nss_nis_endnetgrent): Likewise.
7900 * nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_endnetgrent):
7902 (_nss_nisplus_setnetgrent): Likewise.
7903 * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Likewise.
7904 * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_setpwent): Likewise.
7905 * nis/nss_nisplus/nisplus-grp.c (_nss_nisplus_setgrent): Likewise.
7906 * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_setnetent):
7908 * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_sethostent):
7910 * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_setservent):
7912 * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_setprotoent):
7914 * nis/nss_compat/compat-spwd.c (_nss_compat_setspent): Likewise.
7915 * nis/nss_compat/compat-pwd.c (_nss_compat_setpwent): Likewise.
7916 * nis/nss_compat/compat-grp.c (_nss_compat_setgrent): Likewise.
7917 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
7918 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Likewise.
7919 (_nss_dns_getnetbyaddr_r): Likewise.
7921 2000-12-17 Andreas Jaeger <aj@suse.de>
7923 * sysdeps/generic/k_sinl.c (__kernel_sinl): Fix functions
7926 * sysdeps/unix/sysv/linux/shm_open.c (freeit): Make static and add
7927 unused attribute to shut up gcc warnings.
7929 * sysdeps/generic/k_sinl.c: Include math_private for prototypes.
7930 * sysdeps/generic/k_tanl.c: Likewise.
7931 * sysdeps/generic/k_cosl.c: Likewise.
7932 * sysdeps/generic/e_j0l.c: Likewise.
7933 * sysdeps/generic/e_j1l.c: Likewise.
7934 * sysdeps/generic/e_jnl.c: Likewise.
7935 * sysdeps/generic/e_lgammal_r.c: Likewise.
7937 * elf/vismain.c: Move prototypes for functions in vismod*.c to
7939 * elf/vismod.h: New file.
7940 * elf/Makefile (distribute): Add vismod.h.
7941 * elf/vismod1.c: Include vismod.h.
7942 * elf/vismod2.c: Likewise.
7943 * elf/vismod3.c: Likewise.
7945 * elf/constload3.c: Add prototype declarations to shut up gcc.
7946 * elf/failobj.c: Likewise.
7947 * elf/nodelmod3.c: Likewise.
7948 * elf/filtmod1.c: Likewise.
7949 * elf/filtmod2.c: Likewise.
7950 * elf/reldepmod1.c: Likewise.
7951 * elf/reldepmod2.c: Likewise.
7952 * elf/reldepmod3.c: Likewise.
7953 * elf/reldepmod4.c: Likewise.
7954 * elf/unload2dep.c: Likewise.
7955 * elf/unload2mod.c: Likewise.
7956 * elf/ltglobmod1.c: Likewise.
7957 * elf/pathoptobj.c: Likewise.
7958 * elf/neededobj1.c: Likewise.
7959 * elf/neededobj2.c: Likewise.
7960 * elf/neededobj3.c: Likewise.
7961 * elf/neededobj4.c: Likewise.
7962 * elf/nextmod1.c: Likewise.
7963 * elf/nextmod2.c: Likewise.
7965 * locale/programs/ld-collate.c (collate_finish): Don't use labels
7966 at end of compound statement.
7967 * locale/programs/locale.c (show_info): Likewise.
7968 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
7970 2000-12-16 Jakub Jelinek <jakub@redhat.com>
7972 * catgets/gencat.c (read_input_file): Avoid calling obstack_free
7973 with a pointer not returned by obstack_ functions.
7975 2000-12-16 Ulrich Drepper <drepper@redhat.com>
7977 * sysdeps/unix/sysv/aix/bits/stat.h (struct stat): Align with AIX
7979 (struct stat64): Likewise.
7980 Reported by Michael Keezer <mkeezer@redhat.com>.
7982 * timezone/asia: Update from tzdata2000h.
7983 * timezone/australasia: Likewise.
7984 * timezone/backward: Likewise.
7985 * timezone/europe: Likewise.
7986 * timezone/northamerica: Likewise.
7987 * timezone/southamerica: Likewise.
7988 * timezone/zone.tab: Likewise.
7990 2000-12-14 Jakub Jelinek <jakub@redhat.com>
7992 * io/ftw.c (ftw_dir): If process_entry returned non-zero result
7993 and dir.stream is NULL, only free dir.content.
7994 * io/ftwtest.c (cb, main): Add --early-exit option to test it.
7995 * io/ftwtest-sh: Test with --early-exit.
7997 2000-12-13 Jakub Jelinek <jakub@redhat.com>
7999 * misc/efgcvt.c (FCVT_MAXDIG): Define.
8000 (FCVT_BUFPTR): New variable.
8001 (fcvt): If fcvt_r returns -1 on the static short buffer,
8002 try to malloc a sufficiently large one and retry.
8003 (free_mem): New function.
8004 * misc/qefgcvt.c (FCVT_MAXDIG): Define.
8005 * misc/tst-efgcvt.c (fcvt_tests): Add new test.
8007 2000-12-15 Ulrich Drepper <drepper@redhat.com>
8009 * misc/dirname.c (dirname): Fix search for second to last slash.
8011 2000-12-13 Andreas Jaeger <aj@suse.de>
8013 * misc/tst-dirname.c (main): Fix typo in test to really use
8014 the examples from Unix98.
8015 Reported by Michael Kerrisk <mtk16@ext.canterbury.ac.nz>.
8017 2000-12-09 H.J. Lu <hjl@gnu.org>
8019 * sysdeps/ia64/fpu/s_fabs.S: New file.
8020 * sysdeps/ia64/fpu/s_fabsf.S: New file.
8021 * sysdeps/ia64/fpu/s_fabsl.S: New file.
8023 2000-12-15 Andreas Jaeger <aj@suse.de>
8025 * stdio-common/scanf9.c (main): Reformat and change to avoid
8028 * stdio-common/tstdiomisc.c: Make local functions static.
8029 * stdio-common/tst-printf.c: Likewise.
8031 * elf/constload2.c: Add prototype declarations to shut up gcc.
8032 * elf/dep1.c: Likewise.
8033 * elf/dep2.c: Likewise.
8034 * elf/dep3.c: Likewise.
8035 * elf/dep4.c: Likewise.
8036 * elf/ltglobmod2.c: Likewise.
8038 * libio/fmemopen.c: Make local functions static.
8040 * elf/Makefile (distribute): Added testobj.h.
8042 * elf/testobj.h: New file.
8044 * elf/testobj1.c: Include testobj.h and move prototype
8045 declarations to testobj.h.
8046 * elf/testobj2.c: Likewise.
8047 * elf/testobj3.c: Likewise.
8048 * elf/testobj4.c: Likewise.
8049 * elf/testobj5.c: Likewise.
8050 * elf/testobj6.c: Likewise.
8051 * elf/testobj1_1.c: Likewise.
8052 * elf/preloadtest.c: Likewise.
8054 2000-12-15 Ben Collins <bcollins@debian.org>
8056 * misc/sys/cdefs.h: Fix thinko in checks for flexarr macros.
8057 Patch by Akim Demaille <akim@epita.fr> in Debian bug report.
8059 2000-12-14 H.J. Lu <hjl@gnu.org>
8061 * sysdeps/ieee754/flt-32/s_sincosf.c (__sincosf): The exponent
8062 field in a float is 8 bits, not 11 bits.
8064 2000-12-13 Jakub Jelinek <jakub@redhat.com>
8066 * math/test-misc.c (main): Adjust m for IEEE quad long double.
8068 2000-12-13 Andreas Jaeger <aj@suse.de>
8070 * manual/message.texi (Using gettextized software): Fix typo.
8072 * manual/charset.texi (Converting a Character): Fix mbstouwcs
8074 Patch by Martin Buchholz <martin@xemacs.org>.
8076 * sysdeps/unix/sysv/linux/sigpending.c (sigpending): Fix typo.
8077 Reported by Michael Kerrisk <mtk16@ext.canterbury.ac.nz>.
8079 2000-12-11 Andreas Jaeger <aj@suse.de>
8081 * sysdeps/unix/sysv/linux/mips/kernel_sigaction.h: Declare
8082 kernel_sigset_t and use it.
8083 Patch by Hiroyuki Machida <machida@sm.sony.co.jp>.
8085 2000-12-10 Richard Henderson <rth@redhat.com>
8087 * sysdeps/alpha/alphaev67/fpu/Implies: New file.
8088 * sysdeps/alpha/alphaev6/fpu/e_sqrtf.S: New file.
8089 * sysdeps/alpha/alphaev6/fpu/e_sqrt.S: New file.
8091 2000-12-10 Jakub Jelinek <jakub@redhat.com>
8093 * sysdeps/alpha/htonl.S: Fix a typo.
8095 2000-12-10 Jakub Jelinek <jakub@redhat.com>
8097 * sysdeps/alpha/alphaev6/stxcpy.S: Exchange t8 with t10.
8099 2000-12-10 Andreas Jaeger <aj@suse.de>
8101 * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Fixed
8102 cast as suggested by Jakub Jelinek <jakub@redhat.com> and Ulrich
8103 Drepper <drepper@redhat.com>.
8105 2000-12-09 Andreas Jaeger <aj@suse.de>
8107 * sysdeps/unix/sysv/linux/mips/sigaction.c: New file.
8109 * sysdeps/unix/sysv/linux/mips/sys/acct.h: Removed, we can use the
8111 Patches by Hiroyuki Machida <machida@sm.sony.co.jp>.
8113 * locale/programs/ld-collate.c (handle_ellipsis): Fix format
8116 * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Fix
8119 * nscd/hstcache.c (addhstbyname): Add cast to avoid warning.
8120 * nscd/connections.c (handle_request): Likewise.
8121 * nscd/pwdcache.c (addpwbyname): Likewise.
8122 * nscd/grpcache.c (addgrbyname): Likewise.
8124 * nscd/nscd_conf.c (nscd_parse_file): Remove extra argument.
8126 2000-12-09 Ulrich Drepper <drepper@redhat.com>
8128 * string/stratcliff.c: Add tests for stpncpy, memcpy, and mempcpy.
8130 * Makeconfig (default_cflags): Make -O2 the default for stable
8133 2000-12-08 H.J. Lu <hjl@gnu.org>
8135 * sysdeps/ia64/fpu/s_isinfl.S: Renamed to ...
8136 * sysdeps/ia64/fpu/s_isinf.S: This.
8137 Add a .pred.rel.mutex note to avoid false report.
8139 * sysdeps/ia64/fpu/s_isnanl.S: Renamed to ...
8140 * sysdeps/ia64/fpu/s_isnan.S: This.
8142 * sysdeps/ia64/fpu/s_fpclassify.S: New file.
8143 * sysdeps/ia64/fpu/s_fpclassifyf.S: New file.
8144 * sysdeps/ia64/fpu/s_fpclassifyl.S: New file.
8145 * sysdeps/ia64/fpu/s_isinff.S: New file.
8146 * sysdeps/ia64/fpu/s_isinfl.S: New file.
8147 * sysdeps/ia64/fpu/s_isnanf.S: New file.
8148 * sysdeps/ia64/fpu/s_isnanl.S: New file.
8149 * sysdeps/ia64/fpu/s_finite.S: New file.
8150 * sysdeps/ia64/fpu/s_finitef.S: New file.
8151 * sysdeps/ia64/fpu/s_finitel.S: New file.
8152 * sysdeps/ia64/fpu/s_signbit.S: New file.
8153 * sysdeps/ia64/fpu/s_signbitf.S: New file.
8154 * sysdeps/ia64/fpu/s_signbitl.S: New file.
8155 * sysdeps/ia64/fpu/s_copysign.S: New file.
8156 * sysdeps/ia64/fpu/s_copysignf.S: New file.
8157 * sysdeps/ia64/fpu/s_copysignl.S: New file.
8159 2000-12-08 Ulrich Drepper <drepper@redhat.com>
8161 * math/libm-test.inc (main): Fix typos in messages.
8163 * string/stratcliff.c: Add test for rawmemchr.
8165 2000-12-08 Jakub Jelinek <jakub@redhat.com>
8167 * elf/dl-open.c (_dl_open): If objname points right after errstring,
8168 allocate it together with errstring using alloca.
8169 * elf/dl-error.c (_dl_signal_error): If malloc failed, set objname
8170 to "", because it might point to local stack.
8172 2000-12-05 H.J. Lu <hjl@gnu.org>
8174 * nss/Makefile (routines): Add getnssent and getnssent_r.
8175 * nss/nsswitch.h (__nss_setent): New internal NSS function.
8176 (__nss_endent): Likewise.
8177 (__nss_getent_r): Likewise.
8178 (__nss_getent): Likewise.
8179 * nss/getnssent_r.c: New file.
8180 * nss/getnssent.c: New file.
8181 * nss/getXXent.c (H_ERRNO_VAR): Updated.
8182 (GETFUNC_NAME): Updated to call __nss_getent ().
8183 * nss/getXXent_r.c (H_ERRNO_VAR_P): New.
8184 (STAYOPEN_TMPVAR): Updated.
8185 (STAYOPEN_VAR): Updated.
8186 (SETFUNC_NAME): Updated to call __nss_setent ().
8187 (ENDFUNC_NAME): Updated to call __nss_endent ().
8188 (INTERNAL (REENTRANT_GETNAME)): Updated to call __nss_getent_r ().
8190 2000-12-08 Andreas Jaeger <aj@suse.de>
8192 * nscd/dbg_log.h (dbg_log): Correct attribute.
8194 2000-12-08 Jakub Jelinek <jakub@redhat.com>
8196 * elf/dl-load.c (fillin_rpath): Don't assume there is '\0' at
8197 cp + len. Compute where from dirname.
8198 Reported by <jreiser@BitWagon.com>.
8200 2000-12-08 Richard Henderson <rth@twiddle.net>
8202 * sysdeps/alpha/_mcount.S: Fix typo.
8203 * sysdeps/alpha/strncpy.S: Likewise.
8205 * sysdeps/alpha/alphaev6/Implies: New file.
8206 * sysdeps/alpha/alphaev67/Implies: New file.
8207 * sysdeps/alpha/alphaev67/ffs.S: New file.
8208 * sysdeps/alpha/alphaev67/ffsll.S: New file.
8209 * sysdeps/alpha/alphaev67/rawmemchr.S: New file.
8210 * sysdeps/alpha/alphaev67/stpcpy.S: New file.
8211 * sysdeps/alpha/alphaev67/stpncpy.S: New file.
8212 * sysdeps/alpha/rawmemchr.S: New file.
8213 * sysdeps/alpha/strcat.S: Tail call to __stxcpy.
8214 * sysdeps/alpha/strcpy.S: Likewise.
8217 * sysdeps/alpha/alphaev6/addmul_1.s: New file.
8219 From rick.gorton@alpha-processor.com:
8220 * sysdeps/alpha/alphaev6/memchr.S: New file.
8221 * sysdeps/alpha/alphaev6/memcpy.S: New file.
8222 * sysdeps/alpha/alphaev6/memset.S: New file.
8223 * sysdeps/alpha/alphaev6/stxcpy.S: New file.
8224 * sysdeps/alpha/alphaev6/stxncpy.S: New file.
8225 * sysdeps/alpha/alphaev67/strcat.S: New file.
8226 * sysdeps/alpha/alphaev67/strchr.S: New file.
8227 * sysdeps/alpha/alphaev67/strlen.S: New file.
8228 * sysdeps/alpha/alphaev67/strncat.S: New file.
8229 * sysdeps/alpha/htonl.S: Use a shorter sequence.
8231 2000-12-08 Jakub Jelinek <jakub@redhat.com>
8233 * inet/getnameinfo.c (getnameinfo): Fix NI_NOFQDN support.
8234 Reported by <pspencer@fields.utoronto.ca>.
8236 2000-12-07 Jes Sorensen <jes@linuxcare.com>
8238 * sysdeps/ia64/elf/start.S (__data_start): Add __data_start variable.
8239 Pointed out by Hans Boehm.
8241 2000-12-07 H.J. Lu <hjl@gnu.org>
8243 * elf/dl-version.c (match_symbol): Check map->l_name[0] for printing.
8245 2000-12-07 Andreas Jaeger <aj@suse.de>
8247 * misc/error.c: Add format attributes for __error and __error_at_line.
8249 * nscd/dbg_log.h: Add format attribute.
8251 2000-12-08 Ulrich Drepper <drepper@redhat.com>
8253 * misc/sys/syslog.h: Add format attributes to syslog and vsyslog.
8254 Patch by Joseph S. Myers <jsm28@cam.ac.uk>.
8256 2000-12-07 Dan Pop <Dan.Pop@cern.ch>
8258 * sysdeps/ia64/strcpy.S: Fix a bug in a recovery code sequence.
8260 2000-12-06 Ulrich Drepper <drepper@redhat.com>
8262 * sysdeps/unix/sysv/aix/Makefile [$(subdir)==misc]
8263 (sysdep_routines): Add uitrunc.
8264 * sysdeps/unix/sysv/aix/uitrunc.c: New file.
8265 Patches by Michael Keezer <mkeezer@redhat.com>.
8267 2000-12-06 Roland McGrath <roland@frob.com>
8269 * sysdeps/mach/hurd/ioctl.c (__ioctl): Don't clobber ARG as we copy in
8270 argument data, since it will be used to copy out too (for INOUT).
8271 Reported by Marcus Brinkmann <marcus@gnu.org>.
8273 * sysdeps/mach/hurd/ioctl.c: Include <stdint.h>.
8274 (__ioctl): Use uintptr_t instead of unsigned long int.
8276 2000-12-06 Jim Wilson <wilson@redhat.com>
8278 * stdlib/l64a.c (l64a): Truncate M to 32-bit value.
8280 2000-12-06 Ulrich Drepper <drepper@redhat.com>
8282 * stdio-common/printf_fp.c (__printf_fp): Handle decimal point in
8283 x.5 rounding correctly.
8285 2000-12-06 Mark Kettenis <kettenis@gnu.org>
8287 * stdio-common/perror.c (perror): Conditionalize code dealing with
8288 wide-oriented streams on USE_IN_LIBIO.
8290 2000-12-06 Mark Kettenis <kettenis@gnu.org>
8292 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start_cleanup): Mark
8293 as internal_function.
8295 2000-12-05 Ulrich Drepper <drepper@redhat.com>
8297 * sysdeps/alpha/elf/start.S (__data_start): Define.
8299 2000-12-05 H.J. Lu <hjl@gnu.org>
8301 * nss/getXXent_r.c (setup): Change the return type to int.
8303 2000-12-05 Ulrich Drepper <drepper@redhat.com>
8305 * sysdeps/unix/sysv/aix/Makefile [$(subdir)==misc]
8306 (sysdep_routines): Add restf and savef.
8307 * sysdeps/unix/sysv/aix/restf.c: New file.
8308 * sysdeps/unix/sysv/aix/savef.c: New file.
8309 Patches by Michael Keezer <mkeezer@redhat.com>.
8311 * sysdeps/unix/opendir.c (__opendir): Don't use o_directory_works
8312 if O_DIRECTORY is not defined.
8313 Patch by Michael Keezer <mkeezer@redhat.com>.
8315 * include/libc-symbols.h (C_SYMBOL_DOT_NAME): Define.
8316 Patch by Michael Keezer <mkeezer@redhat.com>.
8318 * locale/programs/linereader.c (get_toplvl_escape): Recognize more
8319 than 4 bytes in escape sequence.
8320 Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
8322 2000-12-05 Andreas Jaeger <aj@suse.de>
8324 * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Don't
8327 * sysdeps/unix/sysv/linux/mips/sysdep.h: New file.
8329 * sysdeps/unix/sysv/linux/mips/sys/syscall.h: Removed.
8331 * sysdeps/unix/mips/sysdep.h: Use SYS_ify.
8332 Patches by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
8334 * elf/dl-misc.c (_dl_sysdep_read_whole_file): Mark as
8336 * sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Likewise.
8337 * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start_cleanup): Likewise.
8339 * sysdeps/generic/dl-cache.c: Remove declaration of
8340 _dl_sysdep_read_whole_file.
8342 * elf/dl-load.c (_dl_map_object): Remove declaration of
8343 _dl_load_cache_lookup.
8345 * sysdeps/generic/ldsodefs.h: Add declarations of
8346 _dl_load_cache_lookup, _dl_unload_cache,
8347 _dl_sysdep_read_whole_file, _dl_sysdep_start and
8348 _dl_sysdep_start_cleanup.
8350 * elf/rtld.c: Remove prototypes that are defined in ldsodefs.h
8353 * elf/dl-misc.c: Include <ldsodefs.h> to get prototypes.
8354 * sysdeps/generic/dl-environ.c: Likewise.
8356 * stdio-common/printf_fp.c: Include <gmp.h> instead of
8358 * math/atest-exp.c: Likewise.
8359 * math/atest-exp2.c: Likewise.
8360 * math/atest-sincos.c: Likewise.
8361 * stdio-common/_itoa.c: Likewise.
8362 * stdio-common/_itowa.c: Likewise.
8364 * include/gmp.h: New file with internal prototypes.
8366 * sysdeps/generic/longjmp.c: Move _longjmp_unwind declaration from
8368 * include/setjmp.h: ...here.
8370 * locale/Makefile (routines): Remove codeset_name since it's not
8373 * locale/codeset_name.c: Removed.
8375 2000-12-05 Ulrich Drepper <drepper@redhat.com>
8377 * sysdeps/unix/sysv/aix/sys/param.h: Define MAXHOSTNAMELEN here.
8379 2000-12-05 Andreas Jaeger <aj@suse.de>
8381 * sysdeps/unix/sysv/linux/sys/param.h: Revert last patch.
8383 2000-12-05 Martin Schwidefsky <schwidefsky@de.ibm.com>
8385 * sysdeps/unix/sysv/linux/s390/mmap64.S: Use mmap if mmap2 isn't
8388 2000-12-05 Andreas Jaeger <aj@suse.de>
8390 * nss/test-netdb.c: Mark local functions as static to avoid
8392 (main): Use return to silence warning.
8394 * stdlib/test-canon.c (check_path): Mark as static to avoid warning.
8396 * stdio-common/test-popen.c: Mark local functions as static to
8398 (main): Use return to silence warning.
8400 * stdlib/testsort.c (compare): Mark as static to avoid warning.
8402 * assert/test-assert.c: Mark local functions as static to avoid
8404 * assert/test-assert-perr.c: Likewise.
8406 * math/libm-test.inc (main): Use return to silence warnings.
8408 2000-12-04 Ulrich Drepper <drepper@redhat.com>
8410 * math/fenv.h: Fix typo in comment.
8412 * math/test-misc.c (main): Add a few more over and underflow tests
8415 * sysdeps/i386/fpu/e_scalb.S: Handle NaN as first parameter correctly.
8416 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
8417 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
8418 * math/w_scalb.c: Don't use matherr except in SVID mode.
8419 * math/w_scalbf.c: Likewise.
8420 * math/w_scalbl.c: Likewise.
8421 * math/test-misc.c: Add test for NaN and scalbl.
8422 Reported by Fred J. Tydeman <tydeman@tybor.com>.
8424 2000-12-04 Ulrich Drepper <drepper@redhat.com>
8426 * configure.in: Define HAVE_ASM_GLOBAL_DOT_NAME for AIX.
8427 * config.h.in: Add HAVE_ASM_GLOBAL_DOT_NAME.
8428 * include/libc-symbols.h (strong_alias): Define special version
8429 for HAVE_ASM_GLOBAL_DOT_NAME.
8430 (weak_alias): Likewise.
8431 * sysdeps/powerpc/bsd-setjmp.S: Use strong_alias not .set.
8432 * sysdeps/unix/sysv/aix/Makefile [$(subdir)==login]
8433 (sysdep_routines): Add setutxent, getutxent, endutxent, getutxid,
8434 getutxline, pututxline, and utmpxname.
8435 * sysdeps/unix/sysv/aix/fchdir.c: Define __fchdir.
8436 * sysdeps/unix/sysv/aix/lseek.c: Define __libc_lseek alias.
8437 * sysdeps/unix/sysv/aix/open.c: Define __libc_open alias.
8438 * sysdeps/unix/sysv/aix/pread.c: Define pread alias.
8439 * sysdeps/unix/sysv/aix/pread64.c: Define pread64 alias.
8440 * sysdeps/unix/sysv/aix/sysdep.h (JUMPTARGET): Use C_TEXT.
8441 * sysdeps/unix/sysv/aix/bits/types.h: Define __clockid_t and __timer_t.
8442 * sysdeps/unix/sysv/aix/bits/utmp.h: Cleanup. Add comments.
8443 * sysdeps/unix/sysv/linux/sys/param.h (MAXHOSTNAMELEN): Define.
8444 Patches by Michael Keezer <mkeezer@redhat.com>.
8446 2000-12-04 H.J. Lu <hjl@gnu.org>
8448 * configure.in: Change --with-oldest-abi=ABI to
8449 --enable-oldest-abi=ABI.
8451 2000-12-02 Bruno Haible <haible@clisp.cons.org>
8453 * stdio-common/perror.c (perror): If stderr is wide-oriented, use
8454 fwprintf instead of fprintf.
8456 2000-12-04 Ulrich Drepper <drepper@redhat.com>
8458 * sysdeps/alpha/fpu/bits/mathdef.h: Remove FLT_EVAL_METHOD and
8459 DECIMAL_DIG definitions.
8460 * sysdeps/arm/fpu/bits/mathdef.h: Likewise
8461 * sysdeps/generic/bits/mathdef.h: Likewise
8462 * sysdeps/i386/fpu/bits/mathdef.h: Likewise
8463 * sysdeps/ia64/fpu/bits/mathdef.h: Likewise
8464 * sysdeps/m68k/fpu/bits/mathdef.h: Likewise
8465 * sysdeps/powerpc/fpu/bits/mathdef.h: Likewise
8466 * sysdeps/sparc/fpu/bits/mathdef.h: Likewise
8467 * sysdeps/sh/sh4/fpu/bits/mathdef.h: Likewise
8469 2000-12-03 Ulrich Drepper <drepper@redhat.com>
8471 * math/test-fenv.c (main): Use return instead of exit to avoid warning.
8473 * math/atest-exp.c: Mark local functions as static to avoid warnings.
8474 * math/atest-exp2.c: Likewise.
8475 * math/atest-sincos.c: Likewise.
8477 * sysdeps/i386/fpu/bits/mathdef.h (DECIMAL_DIG): Correct value.
8478 Reported by Fred J. Tydeman <tydeman@tybor.com>.
8480 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Hopefully fix
8481 the handling of denormalized numbers.
8483 * math/test-misc.c (main): Test for fpclassify and pseudo denormal
8485 * sysdeps/i386/fpu/fpclassifyl.c: New file.
8487 * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Handle the
8488 pseudo denormal representation of LDBL_MIN.
8490 * iconvdata/SJIS.irreversible: Remove unnecessary entries.
8491 * iconvdata/EUC-JP.irreversible: Remove unnecessary entries.
8493 * iconvdata/sjis.c: Enable round-trip mapping of backslash and tilde.
8494 * iconvdata/jis0208.c: Likewise.
8495 * iconvdata/jis0212.c: Likewise.
8496 Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
8498 * math/test-misc.c (main): More tests for frexp and some for
8499 fpclassify and isnormal.
8501 * sysdeps/ieee754/flt-32/s_fpclassifyf.c (__fpclassifyf): Correct
8503 Reported by Fred J. Tydeman <tydeman@tybor.com>.
8505 * math/test-misc.c (main): Add tests for frexp.
8506 Reported by Fred J. Tydeman <tydeman@tybor.com>.
8507 * sysdeps/i386/fpu/s_frexpl.S: Don't overflow during the computation.
8509 2000-12-02 H.J. Lu <hjl@gnu.org>
8511 * locale/lc-time.c (_nl_init_era_entries): Pass L'\0' instead of
8514 2000-12-02 Ulrich Drepper <drepper@redhat.com>
8516 * sysdeps/i386/fpu/s_frexp.S: Add missing fwait.
8517 * sysdeps/i386/fpu/s_frexpf.S: Likewise.
8518 * sysdeps/i386/fpu/s_frexpl.S: Likewise.
8520 * sysdeps/generic/glob.c: Adjust types of several variables to
8523 2000-12-01 Ulrich Drepper <drepper@redhat.com>
8525 * sysdeps/unix/sysv/linux/shm_open.c: Remove incorrect comment.
8527 2000-11-30 Roland McGrath <roland@frob.com>
8529 * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS_1): New macro.
8530 (_HURD_HANDLE_IOCTLS, _HURD_HANDLE_IOCTL): Redefine using it, so as to
8531 allow multiple instances using the same function name in one file.
8533 2000-12-01 Ulrich Drepper <drepper@redhat.com>
8535 * configure.in: Correct test for pserver CVS access.
8537 2000-11-28 H.J. Lu <hjl@gnu.org>
8539 * libio/libio.h: Remove extra "#if ... #endif".
8541 2000-11-29 H.J. Lu <hjl@gnu.org>
8543 * stdio-common/vfscanf.c (ORIENT): Swap the COMPILE_WSCANF case.
8545 2000-12-01 H.J. Lu <hjl@gnu.org>
8547 * nss/getXXbyYY_r.c: Fix verioned symbol handling.
8548 * nss/getXXent_r.c: Likewise.
8549 * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
8551 2000-11-30 H.J. Lu <hjl@gnu.org>
8553 * scripts/abi-versions.awk (oldest_abi): New variable.
8554 Handle the oldest ABI supported.
8556 * Makerules ($(common-objpfx)abi-versions.h): Set oldest_abi
8557 for scripts/abi-versions.awk.
8559 * configure.in: Add --with-oldest-abi=ABI.
8560 * configure: Rebuild.
8562 * config.make.in (oldest-abi): New.
8564 * config.h.in (GLIBC_OLDEST_ABI): New.
8566 * csu/version.c (banner): Support GLIBC_OLDEST_ABI.
8568 2000-11-30 Jakub Jelinek <jakub@redhat.com>
8570 * locale/setlocale.c (setname): Free for all categories, not just
8572 (setlocale): Store a copy of string passed by user, not the string
8575 2000-11-30 Roland McGrath <roland@frob.com>
8577 * sysdeps/mach/hurd/defs.c (init_stdio): Put this on __libc_subinit
8578 rather than _hurd_fd_subinit, so it happens after it's safe to use
8579 libc facilities like malloc.
8581 2000-11-28 Andreas Jaeger <aj@suse.de>
8583 * sysdeps/unix/sysv/linux/getdents.c: Add _syscall_getdents64
8584 declaration, adjust declaration of __syscall_getdents to match
8587 2000-11-29 H.J. Lu <hjl@gnu.org>
8589 * sysdeps/generic/readelflib.c (check_ptr): Undefine it first.
8591 2000-11-29 Andreas Jaeger <aj@suse.de>
8593 * sysdeps/unix/sysv/linux/hppa/brk.c (__brk): Remove unused variable.
8595 2000-11-28 Ulrich Drepper <drepper@redhat.com>
8597 * dlfcn/defaultmod1.c: Add prototypes to avoid warnings.
8598 * dlfcn/defaultmod2.c: Likewise.
8599 * dlfcn/dlopen.c: Likewise.
8600 * dlfcn/dlopenold.c: Likewise.
8601 * dlfcn/failtestmod.c: Likewise.
8602 * dlfcn/glreflib1.c: Likewise.
8603 * dlfcn/glreflib2.c: Likewise.
8604 * dlfcn/eval.c: Likewise. Add attributes.
8606 * ctype/ctype-extn.c: Define isblank and not __isblank.
8608 * time/strftime.c: Add const where necessary to avoid warnings.
8609 * time/strptime.c (strptime_internal): Add casts to avoid warnings.
8611 2000-11-22 Paul Eggert <eggert@twinsun.com>
8613 * time/strftime.c (my_strftime): Do not invoke mbrlen with a
8614 size of (size_t) -1; it's not portable.
8616 2000-11-28 Ulrich Drepper <drepper@redhat.com>
8618 * sysdeps/i386/fpu/libm-test-ulps: Adjust some values for the
8620 Reported by Michael Deutschmann <michael@talamasca.ocis.net>.
8622 2000-11-14 Jes Sorensen <jes@linuxcare.com>
8624 * sysdeps/ia64/_mcount.S: Call __mcount instead of __mcount_internal.
8626 * sysdeps/ia64/Makefile: Compile _mcount.S in subdir gmon as
8627 _mcount is required by profiled binaries.
8629 * sysdeps/unix/sysv/linux/ia64/machine-gmon.h: Moved to...
8630 * sysdeps/ia64/machine-gmon.h: ...here.
8632 2000-11-28 Masahide Washizawa <washi@jp.ibm.com>
8634 * iconvdata/Makefile (modules): Add IBM922, IBM1124, and IBM1129.
8635 (distribute): Add ibm922.c, ibm1124.c, ibm1129.c, ibm922.h, ibm1124.h,
8637 * iconvdata/gconv-modules: Add entries for IBM922, IBM1124, and
8639 * iconvdata/ibm922.c: New file.
8640 * iconvdata/ibm922.h: New file.
8641 * iconvdata/ibm1124.c: New file.
8642 * iconvdata/ibm1124.h: New file.
8643 * iconvdata/ibm1129.c: New file.
8644 * iconvdata/ibm1129.h: New file.
8645 * iconvdata/testdata/IBM922: New file.
8646 * iconvdata/testdata/IBM922..UTF8: New file.
8647 * iconvdata/testdata/IBM1124: New file.
8648 * iconvdata/testdata/IBM1124..UTF8: New file.
8649 * iconvdata/testdata/IBM1129: New file.
8650 * iconvdata/testdata/IBM1129..UTF8: New file.
8652 2000-11-28 Ulrich Drepper <drepper@redhat.com>
8654 * catgets/gencat.c (normalize_line): Take extra parameter with escape
8655 character. Change callers.
8656 (open_conversion): Determine mapping of 0x5c as wchar_t value.
8657 * catgets/Makefile: Add rules to build and run test-gencat.
8658 * catgets/sample.SJIS: New file.
8659 * catgets/test-gencat.c: New file.
8660 * catgets/test-gencat.sh: New file.
8661 Report and test case by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
8663 2000-11-28 Andreas Jaeger <aj@suse.de>
8665 * sysdeps/unix/sysv/linux/mips/bits/socket.h: Synch with generic
8668 2000-11-28 Ulrich Drepper <drepper@redhat.com>
8670 * sysdeps/unix/sysv/linux/bits/socket.h: Fix last patch.
8672 2000-11-28 Andreas Jaeger <aj@suse.de>
8674 * sysdeps/unix/sysv/linux/bits/socket.h (struct cmsghdr): Use
8676 * sysdeps/unix/sysv/linux/mips/bits/socket.h (struct cmsghdr):
8679 2000-11-27 Ulrich Drepper <drepper@redhat.com>
8681 * misc/getusershell.c: Make strings in okshells array const.
8682 * misc/regexp.c: Add const to cast to avoid warnings.
8683 * sysdeps/unix/sysv/linux/llseek.c: Add prototype for __llseek.
8684 * sysdeps/unix/sysv/linux/i386/setresuid.c: Add prototype for
8686 * sysdeps/unix/sysv/linux/i386/setresgid.c: Add prototype for
8688 * misc/error.c: Add prototypes for __error and __error_at_line.
8689 * misc/mntent_r.c (__getmntent_r): Add break at end of switch
8690 statement to avoid warning.
8691 * test-skeleton.c: Mark timeout_handler with noreturn.
8692 * iconv/skeleton.c (get16u): Add const to cast.
8694 * iconvdata/gb18030.c: Likewise.
8695 * iconvdata/iso-2022-cn-ext.c: Likewise.
8696 * iconvdata/ansi_x3.110.c: Add cast to avoid warning.
8697 * iconvdata/big5.c: Likewise.
8698 * iconvdata/big5hkscs.c: Likewise.
8699 * iconvdata/iso_6937.c: Likewise.
8700 * iconvdata/iso_6937-2.c: Likewise.
8701 * iconvdata/t.61.c: Likewise.
8702 * iconvdata/iso646.c: Add prototypes for gconv_init and gconv_env.
8703 * iconvdata/unicode.c: Likewise.
8704 * iconvdata/utf-16.c: Likewise.
8705 * iconvdata/cns11643.h (ucs4_to_cns11643): Define needed as size_t.
8706 * iconv/gconv_trans.c (__gconv_translit_find): Avoid one warning
8707 with little code shuffling.
8709 * sysdeps/powerpc/Makefile (CFLAGS-initfini.s): Add -O1 to avoid
8710 the problems introduced when the user selects -O3.
8712 * iconv/gconv.h (__gconv_info): Define __data element using __flexarr.
8713 * misc/sys/cdefs.h: Define __flexarr.
8714 Proposed by Joseph S. Myers <jsm28@cam.ac.uk>.
8716 * iconvdata/iso-2022-jp.c: Add prototypes to avoid warnings.
8717 * iconv/skeleton.c: Likewise.
8718 * iconvdata/iso8859-1.c (BODY to 8859-1): Add const to cast.
8719 * iconv/loop.c (get16): Add const to cast.
8722 2000-11-27 Andreas Jaeger <aj@suse.de>
8724 * login/programs/pt_chown.c (do_pt_chown): Mark function as static
8726 * login/programs/utmpdump.c (print_entry): Likewise.
8728 2000-11-25 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
8730 * sysdeps/mips/__longjmp.c (__longjmp): Restore SP and FP last and
8731 in a single asm as they may be used to access other stored
8733 * sysdeps/mips/mips64/__longjmp.c (__longjmp): Likewise.
8735 2000-11-27 Andreas Jaeger <aj@suse.de>
8737 * rt/tst-aio.c: Mark test functions as static to avoid warnings.
8738 * rt/tst-aio64.c: Likewise.
8740 2000-11-27 Ulrich Drepper <drepper@redhat.com>
8742 * catgets/Makefile (test1.cat): Set LC_ALL, LOCPATH, and GCONV_PATH
8744 (libc.cat): Likewise.
8745 * catgets/gencat.c: Implement handling of message catalogs encoded
8746 with stateful character sets.
8747 Based on a patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
8749 2000-11-26 Ulrich Drepper <drepper@redhat.com>
8751 * sysdeps/unix/opendir.c (__opendir): Add cast to avoid warning.
8753 * inet/getnameinfo.c: Adjust casts to avoid warnings.
8754 * inet/rcmd.c: Likewise.
8755 * inet/ruserpass.c: Likewise.
8756 * inet/netinet/in.h (IN6_IS_ADDR_UNSPECIFIED, IN6_IS_ADDR_LOOPBACK,
8757 IN6_IS_ADDR_MULTICAST, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
8758 IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, IN6_ARE_ADDR_EQUAL,
8759 IN6_IS_ADDR_MC_NODELOCAL, IN6_IS_ADDR_MC_LINKLOCAL,
8760 IN6_IS_ADDR_MC_SITELOCAL, IN6_IS_ADDR_MC_ORGLOCAL,
8761 IN6_IS_ADDR_MC_GLOBAL): Preserve const in cast.
8762 * include/aliases.h: Add prototypes for internal __getalias* functions.
8763 * include/netdb.h: Add prototypes for __old_gethostent_r,
8764 __old_gethostbyaddr_r, __old_gethostbyname_r, __old_gethostbyname2_r,
8765 __old_getnetent_r, __old_getnetbyaddr_r, __old_getnetbyname_r,
8766 __old_getservent_r, __old_getservbyname_r, __old_getservbyport_r,
8767 __old_getprotoent_r, __old_getprotobyname_r, __old_getprotobynumber_r.
8768 * include/rpc/netdb.h: Add prototypes for __old_getrpcbyname_r,
8769 __old_getrpcbynumber_r, __old_getrpcent_r.
8771 * include/rpc/netdb.h: Add __getrpcbyname_r, __getrpcbynumber_r,
8772 __getrpcent_r prototypes.
8774 2000-11-25 Ulrich Drepper <drepper@redhat.com>
8776 * string/strcoll.c: Add casts to avoid warnings.
8777 * string/strnlen.c: Likewise.
8778 * string/strxfrm.c: Likewise.
8779 * sysdeps/generic/_strerror.c: Likewise.
8780 * sysdeps/generic/memrchr.c: Likewise.
8781 * sysdeps/generic/strcasestr.c: Likewise.
8782 * sysdeps/generic/strstr.c: Likewise.
8784 * locale/weight.h (findidx): Add const to cast to avoid warning.
8786 * elf/loadfail.c: Little cosmetic changes to avoid warnings.
8787 * elf/loadtest.c: Likewise.
8788 * elf/multiload.c: Likewise.
8789 * elf/next.c: Likewise.
8790 * elf/nodelete.c: Likewise.
8791 * elf/noload.c: Likewise.
8792 * elf/order.c: Likewise.
8793 * elf/origtest.c: Likewise.
8794 * elf/preloadtest.c: Likewise.
8795 * elf/restest1.c: Likewise.
8797 * sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
8798 parameter of asm must be in %ecx.
8800 * string/tester.c: Mark test functions as static to avoid warnings.
8802 * iconv/gconv_conf.c (read_conf_file): Make mod_counter static to
8803 preserve value over different gconv-modules files.
8805 2000-11-24 Ulrich Drepper <drepper@redhat.com>
8807 * locale/findlocale.c: Add casts to avoid warnings.
8808 * locale/localeinfo.h (LIMAGIC): Add cast to avoid warnings.
8809 * misc/efgcvt_r.c (fcvt_r): Use ssize_t instead of int and add cast
8811 * misc/tsearch.c (const_node): New type.
8812 (trecurse): Correct casts to avoid warnings.
8813 (__twalk): Likewise.
8814 * stdlib/tst-limits.c: Add z modifier to formats for WORD_BIT and
8817 * debug/backtrace-tst.c (compare): Add casts to avoid warnings.
8819 * test-skeleton.c: Mark local functions as static to avoid warnings.
8821 2000-11-23 H.J. Lu <hjl@gnu.org>
8823 * rt/tst-aio6.c (do_test): Use pipe instead of STDIN_FILENO to
8824 support the background job.
8827 2000-11-24 Ulrich Drepper <drepper@redhat.com>
8829 * iconv/gconv_conf.c (insert_module): Replace old entry if new one
8830 has same names but lower cost.
8832 2000-11-23 Jakub Jelinek <jakub@redhat.com>
8834 * sysdeps/sparc/sparc32/dl-machine.h: Ifdef out handling for relocs
8835 which never occur during bootstrap.
8836 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
8838 2000-11-23 Andreas Jaeger <aj@suse.de>
8840 * nss/nss_files/files-hosts.c: Remove getipnodebyname.
8842 * nss/Versions: Remove _nss_files_getipnodebyname_r.
8844 * sysdeps/unix/sysv/linux/Versions: Fix typo in last patch.
8846 2000-11-18 Martin Buchholz <martin@xemacs.org>
8848 * csu/gmon-start.c (__gmon_start__): Avoid over-clever trick `if
8851 2000-11-21 Alan Modra <alan@linuxcare.com.au>
8853 * sysdeps/generic/bsd-_setjmp.c (setjmp): Rename to _setjmp.
8855 * csu/abi-note.S: Correct comment for operating system number.
8857 2000-11-22 Ulrich Drepper <drepper@redhat.com>
8859 * Versions.def: Add GLIBC_2.2.1 for glibc.
8861 2000-11-22 Andreas Schwab <schwab@suse.de>
8863 * sysdeps/unix/sysv/linux/syscalls.list: Add pivot_root.
8864 * sysdeps/unix/sysv/linux/Versions: Add pivot_root at GLIBC_2.2.1.
8866 2000-11-22 Ulrich Drepper <drepper@redhat.com>
8868 * rt/aio_suspend.c (aio_suspend): Convert timeout value to
8869 absolute time for pthread_cond_timedwait call.
8870 Reported by Lawrence Chen <lchen@opentext.com> [libc/1930].
8872 * rt/Makefile (tests): Add tst-aio6.
8873 * rt/tst-aio6.c: New file.
8875 2000-11-23 Andreas Jaeger <aj@suse.de>
8877 * sysdeps/s390/bits/string.h (strncat): Fix one more typo.
8879 2000-11-22 Andreas Jaeger <aj@suse.de>
8881 * sysdeps/s390/bits/string.h (strncat): Add missing quotation marks.
8883 2000-11-21 Martin Schwidefsky <schwidefsky@de.ibm.com>
8885 * sysdeps/s390/bits/string.h: Make strncat always add a \0.
8887 2000-11-21 Andreas Schwab <schwab@suse.de>
8889 * sysdeps/alpha/setjmp.S: Remove __setjmp entry point.
8890 * sysdeps/arm/setjmp.S: Likewise.
8891 * sysdeps/arm/fpu/setjmp.S: Likewise.
8892 * sysdeps/i386/setjmp.S: Likewise.
8893 * sysdeps/i386/elf/setjmp.S: Likewise.
8894 * sysdeps/s390/setjmp.S: Likewise.
8895 * sysdeps/s390/elf/setjmp.S: Likewise.
8896 * sysdeps/sh/sh3/setjmp.S: Likewise.
8897 * sysdeps/sh/sh4/setjmp.S: Likewise.
8898 * sysdeps/sparc/sparc32/setjmp.S: Likewise.
8899 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
8900 * sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S: Likewise.
8901 * sysdeps/unix/sysv/linux/m68k/setjmp.c: Removed.
8903 2000-11-21 Andreas Jaeger <aj@suse.de>
8905 * sysdeps/generic/__longjmp.c (__longjmp): Remove obsolete
8906 NORETURN, fix parameter list.
8908 * string/bug-strncat1.c (main): Fix typo.
8909 Patch by Bernhard Kaindl <bernhard.kaindl@suse.de>.
8911 2000-11-20 Ulrich Drepper <drepper@redhat.com>
8913 * configure.in: Add --enable-all-warnings.
8914 * config.make.in (all-warnings): New variable.
8915 * Makeconfig (+gccwarn): Define with many more warnings if
8916 all-warnings is yes.
8918 2000-11-20 Jakub Jelinek <jakub@redhat.com>
8920 * iconvdata/bug-iconv2.c (main): Use %zd in format string.
8921 * io/test-lfs.c (do_test): Cast statbuf.st_size to long long.
8922 * malloc/tst-valloc.c (main): Cast valloc return value to long.
8923 * malloc/tst-obstack.c (verbose_malloc): Use %zd in format string.
8924 * math/test-fpucw.c (main): Use %lx in format string, cast
8925 control words to long.
8926 * stdio-common/tst-fmemopen.c (main): Use %td in format strings.
8927 * stdlib/tst-strtol.c (tests): Avoid (bogus?) decimal constant is so
8928 large that it is unsigned warning.
8930 * sysdeps/unix/sysv/linux/sparc/bits/types.h (__ssize_t): Changing
8931 it to long on sparc64.
8933 2000-11-20 Andreas Jaeger <aj@suse.de>
8935 * nscd/nscd.h (termination_handler): Add noreturn attribute.
8936 (receiv_print_stats): Likewise.
8938 * elf/ldconfig.c (path_hwcap): Cast -1 for proper comparison.
8940 2000-11-20 Ulrich Drepper <drepper@redhat.com>
8942 * malloc/thread-m.h: gcc doesn't tolerate zero-sized types anymore.
8944 * csu/gmon-start.c: Always have prototype for __gmon_start.
8945 * csu/version.c: Add prototypes for __libc_print_version and
8947 * iconv/gconv.c: Include gconv_int.h and gconv.h.
8948 * iconv/gconv.h (struct __gconv_step): Remove const from __from_name
8950 * iconv/gconv_builtin.h: Add ASCII module definitions.
8951 * iconv/gconv_conf.c (__gconv_path_elem): Remove const.
8952 (add_module): Add cast to avoid warning. Rework construction of
8953 strings for new module.
8954 * iconv/gconv_db.c (__gconv_alias_compare): Make s1 and s2 const.
8955 (derivation_compare): Likewise.
8956 * iconv/gconv_dl.c (do_release_shlib): Remove const from nodep.
8957 (__gconv_release_shlib): Cast do_release_shlib as parameter for twalk.
8958 * iconv/gconv_int.h (__gconv_path_elem): Remove const.
8959 (struct gconv_alias): Remove const from fromname and toname.
8960 * iconv/gconv_simple.c: Include gconv_builtin.h to get prototypes
8962 (internal_ucs4_loop): Use correct const-ness.
8963 (ucs4_internal_loop): Likewise.
8964 (internal_ucs4le_loop): Likewise.
8965 (ucs4le_internal_loop_single): Likewise.
8966 * iconv/gconv_trans.c (__gconv_transliterate): Make from_idx, from_tbl,
8967 to_idx, to_tbl, winbuf, winbufend const. Change casts in
8968 assignments appropriately.
8969 (struct known_trans): Remove const from fname.
8970 (trans_compare): Make s1 and s2 const.
8971 * iconv/loop.c (LOOPFC): Make outend parameter const. Add cast to
8973 * iconv/skeleton.c: Remove cast in calls of loop functions.
8974 * iconvdata/gconv-modules: Remove US-ASCII definitions.
8975 * iconvdata/iso646.c: Remove US_ASCII support.
8976 * include/set-hooks.h (DEFINE_HOOK): Also generate prototype.
8977 * include/unistd.h: Add __libc_check_standard_fds prototype.
8978 * string/bits/string2.h (__mempcpy_args): Add const to casts.
8979 * sysdeps/generic/initfini.c: Add prototypes for dummy, _init, and
8981 * sysdeps/generic/libc-start.c: Add prototype for __libc_start_main.
8982 * sysdeps/i386/i486/bits/string.h (strcmp): Add const to casts.
8983 * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Add cast to avoid
8985 * sysdeps/unix/sysv/linux/init-first.c: Add prototypes for
8986 __libc_init_first and _dl_start.
8987 * intl/dcigettext.c (transcmp): Make s1 and s2 const.
8988 (DCIGETTEXT): Make domaindata variable const.
8989 * intl/loadmsgcat.c (_nl_load_domain): Rearrange domain initialization
8992 2000-11-20 Hiroyuki Machida <machida@sm.sony.co.jp>
8994 * sysdeps/unix/sysv/linux/mips/clone.S: Fix comments.
8996 * sysdeps/unix/sysv/linux/mips/kernel_stat.h (kernel_stat): Expand
8997 time_t to 'long int' not, 'unsigned int'. Use 'long int' for
9000 * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_NOFOLLOW): Use same
9001 value defined in /usr/include/asm-mips/fcntl.h.
9003 2000-11-18 Ulrich Drepper <drepper@redhat.com>
9005 * stdio-common/Makefile (tests): Add test-vfprintf.
9006 (test-vfprintf-ENV): New variable.
9007 * stdio-common/test-vfprintf.c: New file.
9009 * wcsmbs/mbrtowc.c (__mbrtowc): Do not only flush if input is '\0'.
9011 * wcsmbs/Makefile (tests): Add tst-mbrtowc and tst-wcrtomb.
9012 (tst-mbrtowc-ENV): New variable.
9013 (tst-wcrtomb-ENV): New variable.
9014 * wcsmbs/tst-mbrtowc.c: New file.
9015 * wcsmbs/tst-wcrtomb.c: New file.
9017 2000-11-16 Andreas Jaeger <aj@suse.de>
9019 * manual/install.texi (Tools for Compilation): Update
9020 documentation for GCC 2.95.2.
9022 2000-11-18 Ulrich Drepper <drepper@redhat.com>
9024 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only return -EAI_AGAIN
9025 if IPv4 and IPv6 requests timed out.
9027 2000-11-18 Akim Demaille <akim@epita.fr>
9029 * malloc/obstack.h: Formatting changes.
9030 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
9031 prevents type checking.
9032 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
9033 cast the value to (void *): assigning a `foo *' to a `void *'
9035 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
9037 2000-11-17 Ulrich Drepper <drepper@redhat.com>
9039 * scripts/config.guess: Update from upstream maintainer.
9040 * scripts/config.sub: Likewise.
9042 2000-11-16 Ulrich Drepper <drepper@redhat.com>
9044 * libio/freopen.c (freopen): Reset _mode after succesful reopening.
9045 * libio/freopen64.c (freopen64): Likewise.
9046 Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
9048 * libio/Makefile: Add rules to build and run test-freopen.
9049 * libio/test-freopen.c: New file.
9050 * libio/test-freopen.sh: New file.
9052 2000-11-15 H.J. Lu <hjl@gnu.org>
9054 * sysdeps/generic/ldsodefs.h (DL_DT_INIT_ADDRESS): Defined if
9055 ELF_FUNCTION_PTR_IS_SPECIAL is not defined.
9056 (DL_DT_FINI_ADDRESS): Likewise.
9058 * sysdeps/ia64/dl-lookupcfg.h (_dl_lookup_address): Set the
9059 return type to ElfW(Addr).
9060 (_dl_function_address): New prototype.
9061 (DL_FUNCTION_ADDRESS): Defined.
9062 (DL_DT_INIT_ADDRESS): Defined as DL_FUNCTION_ADDRESS.
9063 (DL_DT_FINI_ADDRESS): Likewise.
9065 * sysdeps/ia64/Versions (GLIBC_2.2): Add _dl_function_address.
9067 * sysdeps/ia64/dl-machine.h (_dl_start_address): Removed.
9068 (ELF_MACHINE_START_ADDRESS): Changed to DL_FUNCTION_ADDRESS.
9070 * sysdeps/ia64/dl-symaddr.c (_dl_start_address): Renamed to ...
9071 (_dl_function_address): This.
9073 * elf/dl-fini.c (_dl_fini): Use DL_DT_FINI_ADDRESS to get the
9074 function pointer for DT_FINI.
9075 * elf/dl-close.c (_dl_close): Likewise.
9077 * elf/dl-init.c (_dl_init): Use DL_DT_INIT_ADDRESS to get the
9078 function pointer for DT_INIT.
9080 2000-11-16 Jakub Jelinek <jakub@redhat.com>
9082 * sysdeps/generic/printf_fphex.c (__printf_fphex): Compute correctly
9083 end of wexpbuf buffer.
9085 2000-11-16 Andreas Jaeger <aj@suse.de>
9087 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove duplicate
9088 definition of F_GETLK, F_SETLK, F_SETLKW.
9090 2000-11-16 Andreas Jaeger <aj@suse.de>
9092 * sysdeps/generic/dl-cache.c (_DL_PLATFORMS_COUNT): Define to 0 if
9095 2000-11-15 Jakub Jelinek <jakub@redhat.com>
9097 * dlfcn/default.c (main): Add test for dladdr of main returning
9098 argv[0] in dli_fname field.
9100 2000-11-15 Jakub Jelinek <jakub@redhat.com>
9102 * Makeconfig (run-program-prefix): Move test-static test into the
9105 * sysdeps/alpha/dl-machine.h (RTLD_START): Update _dl_argv.
9106 * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise,
9107 schedule instructions.
9108 * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise,
9109 schedule instructions, fix a bug in copying auxiliary data.
9111 2000-11-15 Ulrich Drepper <drepper@redhat.com>
9113 * manual/startup.texi (Program Arguments): Fix type of main's envp
9115 Reported by Raúl Núñez de Arenas Coronado <dervishd@linuxfreak.com>.
9117 * iconvdata/gconv-modules: Add CP950 alias.
9119 2000-11-13 Jakub Jelinek <jakub@redhat.com>
9121 * sysdeps/unix/sysv/linux/Makefile: Allow ports to override
9122 syscall-list.h goal.
9123 * sysdeps/unix/sysv/linux/sparc/Makefile: New file.
9125 2000-11-15 Ulrich Drepper <drepper@redhat.com>
9127 * intl/Makefile: tst-gettext2.sh does not need a third parameter.
9129 * intl/tst-gettext2.sh: Copy locale data. Adjust LOCPATH. Verify
9132 * intl/tst-gettext2.c: Set C locale if setting other locale
9133 failed. Use gettext() not _().
9135 * locale/setlocale.c: Increment _nl_msg_cat_cntr whenever we
9136 successfully loaded a new locale.
9138 2000-11-13 Andreas Jaeger <aj@suse.de>
9140 * configure.in: Require gcc 2.95 or newer.
9142 2000-11-15 Ulrich Drepper <drepper@redhat.com>
9144 * sysdeps/unix/sysv/linux/paths.h: Adjust for FHS.
9145 Patch by Arkadiusz Miskiewicz <misiek@pld.ORG.PL>.
9147 2000-11-11 Jim Meyering <meyering@lucent.com>
9149 * string/strndup.c (strndup): Cast return value to `char *'.
9151 2000-11-15 Jim Meyering <meyering@ascend.com>
9153 * sysdeps/generic/memchr.c: Remove some useless parentheses.
9154 [HAVE_STDLIB_H || defined _LIBC]: Include <stdlib.h>.
9155 [HAVE_BP_SYM_H || defined _LIBC]: Guard inclusion of bp-sym.h.
9156 [! (HAVE_BP_SYM_H || defined _LIBC)] (BP_SYM): Define as no-op.
9157 Also #undef __memchr.
9158 Use `weak_alias' only if it's defined.
9160 2000-11-10 H.J. Lu <hjl@gnu.org>
9162 * Makefile.in (install): Set LANGUAGE=C LC_ALL=C.
9164 2000-11-15 Andreas Jaeger <aj@suse.de>
9166 * elf/chroot_canon.c: Include <stdint.h>.
9168 * elf/cache.c (struct cache_entry): Use uint64_t for hwcap.
9169 (print_entry): Likewise.
9170 (add_to_cache): Likewise.
9172 * elf/ldconfig.h (add_to_cache): Change prototype for hwcap change.
9174 * elf/ldconfig.c (struct lib_entry): Use uint64_t for hwcap.
9175 (path_hwcap): Likewise.
9176 (search_dir): Likewise.
9178 * sysdeps/generic/dl-cache.c (HWCAP_CHECK): Handle platform.
9180 * elf/cache.c (add_to_cache): Handle 64 bit hwcap entry.
9182 * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h
9183 (_dl_platform_string): New.
9184 (_DL_HWCAP_PLATFORM): New.
9185 (_dl_string_platform): New.
9186 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Likewise.
9188 * sysdeps/generic/dl-procinfo.h (_DL_HWCAP_COUNT): New.
9189 (_dl_string_platform): New.
9190 (_DL_HWCAP_PLATFORM): New.
9191 (_dl_platform_string): New.
9193 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Added x86 platform
9195 (_DL_HWCAP_COUNT): New.
9196 (_dl_string_platform): New.
9197 (_DL_HWCAP_PLATFORM): New.
9198 (_dl_platform_string): New.
9200 2000-11-14 Ulrich Drepper <drepper@redhat.com>
9202 * iconvdata/gconv-modules: Add CP936 as alias for GBK.
9204 2000-11-14 Andreas Jaeger <aj@suse.de>
9206 * sysdeps/generic/dl-cache.c (HWCAP_CHECK): Fix access to _dl_hwcap.
9208 2000-11-13 Roland McGrath <roland@frob.com>
9210 * hurd/get-host.c (_hurd_get_host_config): Fix last change.
9212 2000-11-13 Marcus Brinkmann <marcus@gnu.org>
9214 * hurd/get-host.c (_hurd_get_host_config): Fix possible buffer
9215 underrun and make sure the result is null terminated even if there
9216 is no trailing newline.
9218 2000-11-13 Jakub Jelinek <jakub@redhat.com>
9220 * sysdeps/alpha/fpu/libm-test-ulps: Update.
9222 2000-11-10 H.J. Lu <hjl@gnu.org>
9224 * sysdeps/ia64/fpu/libm-test-ulps: Updated.
9226 2000-11-10 Andreas Jaeger <aj@suse.de>
9228 * elf/ldconfig.c (create_links): Fix alloca calculation.
9229 Patch by Ben Collins <bcollins@debian.org>.
9231 2000-11-09 Ulrich Drepper <drepper@redhat.com>
9233 * inet/getnameinfo.c (getnameinfo): Use correct destination
9234 parameter for if_indextoname.
9235 Patch by Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>.
9237 2000-11-09 H.J. Lu <hjl@gnu.org>
9239 * sunrpc/Versions (GLIBC_2.1): Remove xdr_cryptkeyarg,
9240 xdr_cryptkeyarg2, xdr_cryptkeyres, xdr_des_block,
9241 xdr_key_netstarg, xdr_key_netstres, xdr_keybuf and
9244 * time/Versions (GLIBC_2.1): Move getitimer to...
9245 * sysdeps/unix/sysv/linux/alpha/Versions (GLIBC_2.1): ...here.
9247 2000-11-03 Bruno Haible <haible@clisp.cons.org>
9249 * manual/install.texi: Recommend to set LANGUAGE=C LC_ALL=C during
9250 "make install", to work around a binary incompatibility between
9251 glibc 2.1 and glibc 2.2 gconv modules.
9253 2000-11-09 Ulrich Drepper <drepper@redhat.com>
9255 * intl/locale.alias: Add thai.
9256 Patch by Chanop Silpa-Anan <chanop@syseng.anu.edu.au>.
9258 2000-11-07 Akim Demaille <akim@epita.fr>
9260 * malloc/obstack.c (obstack_grow, obstack_grow0): Rename the second
9261 argument `data' for consistency with the prototypes.
9263 (obstack_copy, obstack_copy0): Rename the second argument as
9264 `address' for consistency. Qualify it `const'.
9265 * malloc/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
9266 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
9267 `const' their input argument (`data' or `address').
9268 Adjust the corresponding macros to include `const' in casts.
9270 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9272 * sysdeps/posix/getaddrinfo.c: Clean-up: define family to hold
9275 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9277 * sysdeps/posix/getaddrinfo.c: Loosen protocol check to ease raw
9280 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9282 * sysdeps/posix/getaddrinfo.c: Ensure to fill ai_socktype and
9283 ai_protocol by internal table if service was not given.
9285 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9287 * sysdeps/posix/getaddrinfo.c: Don't raise an error even if
9288 numerical port was specified with protocol without socktype.
9290 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9292 * sysdeps/posix/getaddrinfo.c: Ensure to check if protocol is ok.
9294 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9296 * inet/getnameinfo.c: getnameinfo() NI_xxx flag validation.
9298 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9300 * sysdeps/posix/getaddrinfo.c: Ensure not to fill garbage value in
9301 sin6_scope_id field.
9303 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9305 * inet/getnameinfo.c: Repair getnameinfo() sin6_socpe_id support.
9307 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9309 * inet/getnameinfo.c: Repair NI_NOFQDN flag support.
9311 2000-11-06 Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9313 * inet/getnameinfo.c: Wake-up sin6_scope_id support in
9314 getnameinfo(): check for whether sin6_socpe_id exist was wrong.
9316 2000-11-09 Martin Schwidefsky <mschwide@nc.boeblingen.de.ibm.com>
9318 * sysdeps/unix/sysv/linux/s390/mmap.S: Use mmap2 if it is present.
9319 * sysdeps/unix/sysv/linux/s390/mmap64.S: New file.
9321 2000-11-09 H.J. Lu <hjl@gnu.org>
9323 * io/Versions (GLIBC_2.1.1): Remove lockf64.
9326 See ChangeLog.11 for earlier changes.