Update.
[glibc.git] / ChangeLog
blob5f1db4db07cc7f68c00e0a53f32d6c72ded1786a
1 1999-01-29  Ulrich Drepper  <drepper@cygnus.com>
3         * version.h (VERSION): Bump to 2.0.112.
5         * scripts/versions.awk: Quote { in regexp.
7         * sunrpc/clnt_tcp.c (clnttcp_call): Resolve 32-64 comparison
8         conflict for 64 bit platforms.
9         Patch by trott@rottmann.hi.shuttle.de.
11         * sysdeps/unix/sparc/vfork.S: Correct comment.
12         * sysdeps/unix/sparc/fork.S: Likewise.
13         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Remove vfork.
14         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
15         * sysdeps/unix/sysv/linux/sparc/sparc32/fork.S: No special case for
16         child necessary.
17         * sysdeps/unix/sysv/linux/sparc/sparc64/fork.S: Likewise.
18         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: New file.
19         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: New file.
20         Patches by Jakub Jelinek <jj@sunsite.ms.mff.cuni.cz>.
22         * sysdeps/libm-i387/s_fdim.S: Change fsubp to fsubrp for picky gas.
23         * sysdeps/libm-i387/s_fdimf.S: Likewise.
24         * sysdeps/libm-i387/s_fdiml.S: Likewise.
26         * sysdeps/alpha/fpu/s_floor.c (__floor): Don't depend on inlining,
27         duplicate the code.
28         * sysdeps/alpha/fpu/s_floorf.c (__floorf): Likewise.
30         * sysdeps/i386/Versions: Exports functions from libgcc since this
31         is what was done in glibc 2.0.
32         * sysdeps/m68k/Versions: Likewise.  New file.
34 1999-01-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
36         * sysdeps/wordsize-32/stdint.h (INT8_C, INT16_C, INT32_C, INT64_C,
37         UINT8_C, UINT16_C, UINT32_C, UINT64_C): Remove casts, they must be
38         integer constants.  Use ## directly instead of __CONCAT so that
39         the suffix string is not expanded as a macro.
40         * sysdeps/wordsize-64/stdint.h (INT8_C, INT16_C, INT32_C, INT64_C,
41         UINT8_C, UINT16_C, UINT32_C, UINT64_C): Likewise.
42         (INT64_MIN, INT64_MAX, UINT64_MAX, INT_LEAST64_MIN,
43         INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST16_MIN, INT_FAST32_MIN,
44         INT_FAST64_MIN, INT_FAST16_MAX, INT_FAST32_MAX, INT_FAST64_MAX,
45         UINT_FAST16_MAX, UINT_FAST32_MAX, UINT_FAST64_MAX, INTMAX_MIN,
46         INTMAX_MAX, UINTMAX_MAX): Define as long constants, not long long.
48 1999-01-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
50         * locale/mb_cur_max.c (__ctype_get_mb_cur_max): Correct return
51         type to size_t.
52         * locale/broken_cur_max.c (__ctype_get_mb_cur_max): Likewise.
53         * stdlib/stdlib.h (__ctype_get_mb_cur_max): Likewise.
55 1999-01-27  Philip Blundell  <pb@nexus.co.uk>
57         * sysdeps/unix/sysv/linux/arm/vfork.S: Deleted.
59 1999-01-28  David S. Miller  <davem@redhat.com>
61         * sysdeps/sparc/sparc32/__longjmp.S: Rewrite without bogus sanity
62         checks and aborts, to make longjmp based thread schemes work again.
64 1999-01-28  Ulrich Drepper  <drepper@cygnus.com>
66         * sysdeps/unix/sysv/sysv4/solaris2/configure.in: New file.
67         * sysdeps/unix/sysv/sysv4/solaris2/configure: New file.
68         * sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c: New file.
69         Patch by Jeff Bailey <jbailey@phn.ca>.
71         * locale/setlocale.c (free_mem): Don't try to free C locale data
72         and use setdata instead of doing it by hand.
74         * iconv/gconv_conf.c (add_alias): Check that so such alias is
75         currently stored.
77         * iconv/gconv_db.c (free_derivation): Free names if charsets for
78         first and last step.
80         * iconv/gconv_dl.c: Unload all modules when debugging memory use.
82         * locale/loadlocale.c (_nl_unload_locale): Free locale name.
84         * intl/finddomain.c (free_mem): Also free filename.
85         * locale/findlocale.c (free_mem): Likewise.
86         (_nl_find_locale): Duplicate loc_name with strdupa not strdup.
87         * locale/setlocale.c (free_mem): New function.  Free current locale
88         data and set current locale to "C".
90         * libio/genops.c (_IO_un_link): Move #ifdef introduced in last
91         change in right place.
93         * sysdeps/unix/sysv/linux/sys/timex.h: Add MAXTC from kernel
94         header.  Suggested by Thomas Quinot <thomas@Cuivre.FR.EU.ORG>.
96 1999-01-28  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
98         * libio/getc_u.c (__getc_unlocked): Avoid compiler warning.
100 1999-01-28  Ulrich Drepper  <drepper@cygnus.com>
102         * libio/genops.c (_IO_un_link, _IO_link_in): Don't use locking if
103         _IO_MTSAFE_IO is not defined.
105         * iconv/gconv_db.c (free_modules_db): Don't free memory of
106         internal modules.
108         * iconv/gconv_db.c (free_mem): Don't free module tree if there is none.
110 1999-01-27  Ulrich Drepper  <drepper@cygnus.com>
112         * locale/programs/locale-spec.c (locale_special): Take care of
113         possible trigraph sequence.
114         Patch by Zack Weinberg <zack@rabi.columbia.edu>.
116         * time/strptime.c (strptime_internal, case 's'): Initialize secs
117         to zero.  Patch by Bruce Elliott <bde@nwlink.com>.
119 1999-01-27  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
121         * elf/Makefile (extra-objs): Add test modules objects.
123 1999-01-27  Ulrich Drepper  <drepper@cygnus.com>
125         * wctype/wcextra.c: Declare __ctype32_b.
127         * manual/string.texi: Add optimization examples for strcat and strchr.
129 1999-01-26  Ulrich Drepper  <drepper@cygnus.com>
131         * libio/Makefile (routines): Remove fgetc.
132         * libio/fgetc.c: Removed.
133         * libio/getc.c: Add fgetc alias.
134         * libio/Versions [GLIBC_2.1]: Add fgetc_unlocked.
135         * libio/getc_u.c: Rename function to __getc_unlocked and make
136         getc_unlocked and fgetc_unlocked weak aliases.
137         * libio/stdio.h: Add prototype for fgetc_unlocked.
139         * sysdeps/gnu/bits/utmp.h: Don't prepend exit_status elements with
140         __ since utmp.h is not mentioned in any standard.
142         * sysdeps/unix/sysv/linux/i386/clone.S: When not using PIC don't
143         use jecxz since the label might be far away.
145         * sysdeps/unix/sysv/linux/sigaction.c: Update comment to say the
146         __libc_missing_rt_sigs is defined here.
147         * sysdeps/unix/sysv/linux/sigpending.c: Only declare
148         __libc_missing_rt_sigs.
149         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
150         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
152 1999-01-25  Ulrich Drepper  <drepper@cygnus.com>
154         * scripts/config.guess: Changes for ARM/Linux.
155         * scripts/config.sub: Likewise.
157         * elf/Makefile: Define libdl variable as name of libdl library and
158         use it in all dependencies.
160 1999-01-26  Geoff Keating  <geoffk@ozemail.com.au>
162         * nss/nss_db/db-netgrp.c (_nss_db_setnetgrent): Suppress warning
163         about potentially uninitialized `flags'.
164         * nss/nss_db/db-alias.c (internal_setent): Likewise.
166 1999-01-25  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
168         * elf/failobj.c: Provide prototype for xyzzy.
170 1999-01-25  Philip Blundell  <pb@nexus.co.uk>
172         * sysdeps/unix/sysv/linux/arm/clone.S: Correct error check again.
174 1999-01-24  Roland McGrath  <roland@baalperazim.frob.com>
176         * sysdeps/mach/hurd/ioctl.c: Include <hurd/ioctls.defs>.
177         (__ioctl): Use IOC_MSGID macro.
179 1999-01-24  Ulrich Drepper  <drepper@cygnus.com>
181         * libio/iofopen.c (_IO_fopen): Pass correct value as fourth
182         parameter to _IO_file_fopen.
183         * libio/iofopen64.c (_IO_fopen64): Likewise.
185         * po/sv.po: Update from translation team.
187         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add __vfork
188         as alias.
189         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
191 1999-01-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
193         * ctype/ctype.h (toupper,tolower): Use __inline instead of inline,
194         define inline functions only when optimizing for speed and
195         __USE_EXTERN_INLINES is set.
197 1999-01-24  Ulrich Drepper  <drepper@cygnus.com>
199         * scripts/config.sub: Update from latest autoconf release.
200         * scripts/config.guess: Likewise.
202         * sysdeps/i386/i786/Implies: New file.
204 1999-01-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
206         * manual/install.texi (Running make install): Change for Linux 2.2.
208 1999-01-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
210         * manual/process.texi (Creating a Process): Fix typos.
212 1999-01-24  Roland McGrath  <roland@baalperazim.frob.com>
214         * sysdeps/mach/hurd/dl-sysdep.c (__getcwd): Fail with ENOSYS, don't
215         call abort.  Suggested by Mark Kettenis <kettenis@phys.uva.nl>.
217 1999-01-23  Roland McGrath  <roland@baalperazim.frob.com>
219         * sysdeps/unix/sysv/linux/sys/mtio.h: Moved to...
220         * sysdeps/gnu/sys/mtio.h: ...here.
221         (_IOT_mtop, _IOT_mtget, _IOT_mtpos, _IOT_mtconfiginfo): New macros.
222         * sysdeps/gnu/Dist: Add sys/mtio.h.
223         * sysdeps/unix/sysv/linux/Dist: Remove sys/mtio.h.
224         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
225         (sysdep_headers): Don't add sys/mtio.h here.
226         * sysdeps/gnu/Makefile [$(subdir) = misc] (sysdep_headers): Add it
227         here instead.
229         Revamp Hurd ioctl typing magic to handle `struct' keyword in the
230         ioctl command macros, so we can use Unix-compatible headers that
231         make use of the _IO* macros.
232         * sysdeps/mach/hurd/bits/ioctls.h (_IOC_ENCODE_TYPE,
233         _IOC_ENCODE_TYPE_1, _IOC_ENCODE_TYPE_2, _IOTBASE_struct): New macros.
234         (_IOR, _IOW, _IOWR): Use them _IOC_ENCODE_TYPE(t) instead of _IOT_##t.
235         (_IOT_int, _IOT_char, _IOT_short): Renamed to _IOT__IOTBASE_*.
236         (numerous ioctl command macros): Restore `struct' keyword.
238 1999-01-24  Ulrich Drepper  <drepper@cygnus.com>
240         * ctype/ctype.c (toupper): Correct variable names from last change.
241         (tolower): Likewise.
243 1999-01-23  Ulrich Drepper  <drepper@cygnus.com>
245         * sunrpc/rpc_main.c (open_output): Allow better translation of
246         error message.
247         (close_output): Likewise.
248         * locale/programs/localedef.c: Unify messages.
249         * malloc/obstack.c: Likewise.
250         Suggested by Vladimir Michl <Vladimir.Michl@upol.cz>.
252         * grp/putgrent.c (putgrent): Don't insert extra colon.
253         Patch by Michael Schaefer <michael.schaefer@dlr.de>.
255         * nss/nss_files/files-XXX.c (internal_getent): Make sure the buffer has
256         at least two bytes (not one).  Correct buflen parameter type.
257         * nss/nss_files/files-alias.c (get_next_alias): Make sure buffer
258         has at least two bytes.  Use fgets_unlocked instead of fgets.
260         * ctype/ctype.h: Don't user __tolower directly for tolower
261         implementation.  Use inline function which tests for the range
262         first.  Make _tolower equivalent to old tolower macros.
263         Likewise for toupper.
264         * ctype/ctype.c: Change tolower/toupper definition accordingly.
266         * argp/argp-help.c: Use _tolower instead of tolower if possible.
267         * inet/ether_aton_r.c: Likewise.
268         * inet/ether_line.c: Likewise.
269         * inet/rcmd.c: Likewise.
270         * intl/l10nflist.c: Likewise.
271         * locale/programs/ld-collate.c: Likewise.
272         * locale/programs/linereader.c: Likewise.
273         * locale/programs/localedef.c: Likewise.
274         * nis/nss_nis/nis-alias.c: Likewise.
275         * nis/nss_nis/nis-network.c: Likewise.
276         * posix/regex.c: Likewise.
277         * resolv/inet_net_pton.c: Likewise.
278         * stdio-common/printf_fp.c: Likewise.
279         * stdio-common/vfscanf.c: Likewise.
280         * sysdeps/generic/strcasestr.c: Likewise.
282         * math/bits/mathcalls.h: Fix typo.
284 1999-01-23  Roland McGrath  <roland@baalperazim.frob.com>
286         * sysdeps/gnu/errlist.awk: Add comment.
288 1999-01-23  Ulrich Drepper  <drepper@cygnus.com>
290         * csu/Versions: Add __register_frame_info_table.
292 1998-12-29  Geoff Keating  <geoffk@ozemail.com.au>
294         * sunrpc/Versions: Include _authenticate, it's defined in a user
295         header (in fact, it's the whole contents of rpc/svc_auth.h).
297 1999-01-23  Ulrich Drepper  <drepper@cygnus.com>
299         * io/ftw.c (process_entry): Initialize flag since not all gcc
300         versions are smart enough to see that this is no problem.
302         * elf/dl-open.c (_dl_init_paths): Check malloc result.
304         * csu/Versions: Add __frame_state_for.
306 1999-01-22  Ulrich Drepper  <drepper@cygnus.com>
308         * sysdeps/gnu/errlist.awk: Mark ENOTSUP as alias for EOPNOTSUPP.
310         * iconv/gconv_conf.c (add_alias): Convert names to uppercase before
311         adding into search tree.
312         (add_module): Likewise.
313         * iconv/iconv_open.c: Likewise.
314         * iconv/gconv_db.c: Change all __strcasecmp to strcmp.
315         * iconv/skeleton.c (gconv_init): Likewise.
317 1999-01-20  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
319         * elf/Makefile: Make dependencies between test modules explicit.
320         (preloadtest-preloads): New variable.
321         ($(objpfx)preloadtest.out): Use it.
322         (preloadtest-ENV): Use it.
324 1999-01-22  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
326         * sysdeps/unix/sysv/linux/arm/Dist: Undo last change.  Not needed.
328 1999-01-22  Roland McGrath  <roland@baalperazim.frob.com>
330         * sysdeps/mach/hurd/Makefile ($(common-objpfx)stamp-errnos): Depend on
331         $(common-objpfx)errnos.d.
333         * sysdeps/mach/hurd/Makefile: Fix errnos.h -> bits/errno.h in rules.
335         * manual/errno.texi (Error Codes): Fix ENOSYS description.
336         Add ENOTSUP.
338 1999-01-21  Ulrich Drepper  <drepper@cygnus.com>
340         * elf/Makefile: Add missing dependency for preloadtest binary.
342 1999-01-21  Ulrich Drepper  <drepper@cygnus.com>
344         * version.h (VERSION): Bump to 2.0.111.
346         * elf/Makefile (distribute): Add test module sources.
348         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Pretty print.
349         * sysdeps/unix/sysv/linux/Dist: Remove sys/sysmacros.h.
350         * sysdeps/unix/sysv/linux/Makefile: Remove sys/sysmacros.h.
351         * posix/Makefile (headers): Add sys/sysmacros.h.
352         * posix/sys/types.h: Include sys/sysmacros.h for __USE_BSD.
353         * sysdeps/generic/sys/sysmacros.h: New file.
354         * sysdeps/mach/hurd/xmknod.c: Include sys/types.h and remove minor and
355         major definition.
357         * elf/dl-close.c: Rewrite the way adding to the global scope works
358         to handle error cases better than the last change.
359         The l_global flag is now only set when the object is actually
360         counted in the global scope list.
361         * elf/dl-deps.c: Likewise.
362         * elf/dl-open.c: Likewise.
364 1999-01-20  Philip Blundell  <pb@nexus.co.uk>
366         * sysdeps/unix/sysv/linux/arm/sigaction.c: New file.
368         * sysdeps/unix/sysv/linux/arm/vfork.S: New file.
369         * sysdeps/unix/sysv/linux/arm/Dist: Add vfork.S.
371         * sysdeps/unix/sysv/linux/arm/clone.S: Optimise a little, support
372         26-bit machines correctly and fix check for returned errors.
374 1999-01-21  Ulrich Drepper  <drepper@cygnus.com>
376         * sysdeps/unix/sysv/linux/i386/clone.S: Micro-optimization.
378         * sysdeps/unix/sysv/linux/i386/vfork.S: Add back the first
379         implementation now that the syscall is back in 2.2.0.
381         * elf/Makefile: Change rule to make test module so that they are
382         compiled using -fPIC.
383         * elf/testobj1.c: Add missing prototype.
384         * elf/testobj1_1.c: Likewise.
385         * elf/testobj2.c: Likewise.
386         * elf/testobj3.c: Likewise.
387         * elf/testobj4.c: Likewise.
388         * elf/testobj5.c: Likewise.
389         * elf/testobj6.c: Likewise.
391 1999-01-20  Ulrich Drepper  <drepper@cygnus.com>
393         * elf/Makefile (tests): Add loadfail.
394         Add rules to build failobj.so.
395         * elf/loadfail.c: New file.  Test of failing to load object with
396         RTLD_GLOBAL set.
397         * elf/failobj.c: New file.  Object which will fail to load.
399         * elf/dl-close.c (_dl_close): Fix last patch (cnt is unsigned).
401         * elf/dl-close.c: Handle failed loads which would have gone in the
402         global scope correctly.
404         * elf/testobj1.c: Include stdlib.h to get NULL defined.
405         * elf/testobj2.c: Likewise.
406         * elf/testobj3.c: Likewise.
407         * elf/testobj4.c: Likewise.
408         * elf/testobj5.c: Likewise.
410         * iconvdata/Makefile (modules): Add SAMI-WS2 and ISO-IR-197.
411         * iconvdata/gconv-modules: Add entries for above charsets.
412         * iconvdata/iso-ir-197.c: New file.
413         * iconvdata/sami-ws2.c: New file.
415         * sysdeps/unix/sysv/linux/vfork.c: Once again use generic version.
417 1999-01-18  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
419         * sysdeps/unix/sysv/linux/Makefile ($(objpfx)syscall-%.d): Fix
420         generation of dependency list to make it work with newer versions
421         of gcc.
423 1999-01-18  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
425         * Makerules (build-module): New macro, moved from...
426         * elf/Makefile (build-module): ... here.
427         * iconvdata/Makefile (build-module): ... and here.
429 1999-01-20  Ulrich Drepper  <drepper@cygnus.com>
431         * sysdeps/alpha/Versions: Add __atan2 for libm and GLIBC_2.0.
433         * elf/Makefile (tests): Add preloadtest.  Add rules to build more test
434         modules and the preloadtest binary.
435         * elf/loadtest.c (TEST_ROUNDS): Increase to 1000.
436         (testobjs): Add more modules.
437         (tests): Add entries for new modules.
438         * elf/preloadtest.c: New file.  Test for LD_PRELOAD.
439         * elf/testobj1.c: Add 'preload' function.
440         * elf/testobj2.c: Likewise.
441         * elf/testobj3.c: Likewise.
442         * elf/testobj4.c: New file.
443         * elf/testobj5.c: New file.
444         * elf/testobj6.c: New file.
446 1999-01-19  Ulrich Drepper  <drepper@cygnus.com>
448         * elf/dl-object.c (_dl_new_object): Micro-optimization.
450         * elf/restest1.c: New file.  Symbol resolution test.
451         * elf/testobj1_1.c: New file.  Module used in this test.
452         * elf/Makefile: Add rules for restest1 generation and execution.
454         * elf/dl-object.c (_dl_new_object): l_local_scope really gets
455         assigned the local scope.
457         * posix/test-vfork.c (main): Improve test to check for correct
458         exit code.
460         * sysdeps/unix/sysv/linux/i386/vfork.S: Rewrite to use clone.
462         * sysdeps/unix/sysv/linux/bits/sched.h: Define CLONE_VFORK.
464         * timezone/zdump.c: Update from tzcode1999a.
465         * timezone/zic.c: Likewise.
467 1999-01-19  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
469         * math/tgmath.h: Rename nextafterx to nexttoward.
471 1999-01-19  Ulrich Drepper  <drepper@cygnus.com>
473         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Add baud rates >
474         460800.
475         * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
476         * sysdeps/unix/sysv/linux/bits/termios.h: Likewise.
477         * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
479         * math/Makefile (libm-calls): Rename s_nextafterx to s_nexttoward.
480         * math/Versions: Likewise.
481         * math/bits/mathcalls.h: Likewise.
482         * manual/arith.texi: Likewise.
483         * sysdeps/libm-ieee754/s_nextafterl.c: Likewise.
484         * sysdeps/libm-ieee754/s_nextafterx.c: Replaced by...
485         * sysdeps/libm-ieee754/s_nexttoward.c: New file.
486         * sysdeps/libm-ieee754/s_nextafterxf.c: Replaced by...
487         * sysdeps/libm-ieee754/s_nexttowardf.c: New file.
488         * sysdeps/libm-ieee754/s_nextafterxl.c: Replaced by...
489         * sysdeps/libm-ieee754/s_nexttowardl.c: New file.
491         * time/Makefile (routines): Removed strfxtime.
492         * time/Versions: Likewise.
493         * time/strfxtime.c: Removed.
494         * time/time.h: Remove _LOCALTIME, _NO_LEAP_SECONDS, struct tmx,
495         mkxtime, and strfxtime.
497 1999-01-18  Ulrich Drepper  <drepper@cygnus.com>
499         * iconv/gconv_conf.c (add_module): Complete rewrite.  Use cleverer
500         data structures and avoid creating intermediate representations
501         first.  Rewrite also all helper functions.
502         * iconv/gconv_db.c (find_derivation): Use new data structure for
503         module database.
504         * iconv/Versions: Remove __gconv_nmodules.
505         * iconv/iconv_prog.c: Rewrite generation of charset name list to
506         use new data structure.
507         * iconv/gconv_int.h (struct gconv_module): Add new elements for
508         database data structure.
509         (__gconv_modules_db): Update type.
510         (__gconv_transform_dummy): Removed.
511         * iconv/gconv_builtin.h: Remove dummy transformation.
512         * iconv/gconv_simple.c: Remove __gconv_transform_dummy.
514         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Remove
515         __syscall_vfork, add vfork.
516         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
518 1999-01-18  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
520         * posix/test-vfork.c: Include <sys/wait.h> for wait declaration.
522 1999-01-16  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
524         * manual/ctype.texi: Fix cross refs and typos.
525         * manual/charset.texi: Likewise.
527 1999-01-18  Ulrich Drepper  <drepper@cygnus.com>
529         * Rules: Add dummy.c and dummy.o to common-generated.
530         Patch by Andreas Schwab.
532 1999-01-18 10:07 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
534         * manual/libc-texinfo.sh: Use tsort.awk.
535         * manual/tsort.awk: New file.
536         * manual/Makefile (minimal-dist): Add tsort.awk.
537         (distribute): Remove generated files: summary.texi,
538         stamp-summary, chapters.texi, top-menu.texi, and texis.
540 1999-01-15  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
542         * sysdeps/unix/sysv/linux/m68k/vfork.S: Test return value after
543         fork syscall.
545 1999-01-17  Ulrich Drepper  <drepper@cygnus.com>
547         * wctype/wcfuncs.c: Declare __ctype32_b.
549         * elf/Makefile (test-modules): Add test-modules.
551         * stdlib/canonicalize.c (canonicalize): Update write pointer after
552         realloc.  Minor optimizations.
554 1999-01-16  Ulrich Drepper  <drepper@cygnus.com>
556         * po/no.po: Update from norwegian translation team.
558         * iconvdata/iso-2022-jp.c: Correct handling of G2 set.
559         Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
561         * elf/Makefile (tests): Add loadtest.
562         Add rules to generate test modules.
563         * Makeconfig (+link): Add $(LDFLAGS-$(@F)) to command line.
564         * elf/loadtest.c: New file.
565         * elf/testobj1.c: New file.
566         * elf/testobj2.c: New file.
567         * elf/testobj3.c: New file.
569         * elf/dl-close.c: Correct removing module from global list.
571         * elf/dl-open.c: Add debugging code.
573         * include/string.h: Add __rawmemchr prototype.
574         * string/Makefile (routines): Add rawmemchr.
575         * string/Versions [GLIBC_2.1]: Add __rawmemchr and rawmemchr.
576         * string/string.h: Add prototype for rawmemchr.
577         * string/bits/string2.h: Optimize strchr with rawmemchr.
578         * sysdeps/generic/rawmemchr.c: New file.
579         * sysdeps/i386/rawmemchr.c: New file.
580         * sysdeps/i386/i486/bits/string.h: Add rawmemchr inline code.
581         Optimize strchr with rawmemchr.
583         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define _LFS_LARGEFILE,
584         _LFS64_LARGEFILE, and _LFS64_STDIO for Unix98.
586 1999-01-14  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
588         * nis/nis_error.c (nis_errlist): Fix capitilasation.
590 1999-01-15  Ulrich Drepper  <drepper@cygnus.com>
592         * posix/Makefile (tests): Add test-vfork.
593         * posix/test-vfork.c: New file by Andreas Schwab.
595         * manual/charset.texi: More misspelling fixes.
596         Reported by Tom Tromey <tromey@cygnus.com>.
597         Improve mbsinit example.
599         * sysdeps/unix/sysv/linux/vfork.c: Removed.
600         * sysdeps/unix/sysv/linux/i386/vfork.S: New file.
602 1999-01-14  Ulrich Drepper  <drepper@cygnus.com>
604         * Make-dist: If file is generated but still distributed the later
605         is correct.
607         * sysdeps/unix/sysv/linux/arm/Dist: Add sys/user.h.
609         * manual/Makefile (examples): Filter out the example code from
610         add-ons.
612         * version.h (VERSION): Bump to 2.0.110.
614         * nis/nis_error.c (nis_errlist): Fix typo in string.
616         * misc/regexp.h: Add restrict to function declarations.
618 1998-12-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
620         Patche by Ralf Baechle <ralf@gnu.org>:
621         * sysdeps/mips/sys/regdef.h: New file, enhanced versions of
622         deleted linux specific files.
624 1998-12-29  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
626         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h: New file.
628 1999-01-14  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
630         * misc/regexp.h (compile): Correct end-of-line check, fix typo in
631         docu.  Reported by Kalle Olavi Niemitalo <kalle@Niemitalo.fi>.
633 1999-01-14  Ulrich Drepper  <drepper@cygnus.com>
635         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add vfork.
636         Patch by Richard Henderson <rth@twiddle.net>.
638 1999-01-13  Ulrich Drepper  <drepper@cygnus.com>
640         * manual/nss.texi (NSS Module Interface): Document requirement on errno
641         value after unsuccessful call of module function.
643         * sysdeps/unix/sysv/linux/syscalls.list: Add __syscall_fork alias.
644         * sysdeps/unix/sysv/linux/vfork.c: Use vfork syscall if available,
645         otherwise use fork.
646         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add vfork.
647         * sysdeps/unix/sysv/linux/sparc32/syscalls.list: Likewise.
648         * sysdeps/unix/sysv/linux/sparc64/syscalls.list: Likewise.
650         * sysdeps/unix/sysv/linux/i386/sysdep.h: Correct handling of
651         INLINE_SYSCALL for syscall without parameters.
653 1999-01-13  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
655         * sysdeps/unix/make-syscalls.sh: Set shared-only-routines for
656         versioned syscalls.
658         * Rules: Remove rules for empty.* again.
660 1999-01-13  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
662         * sysdeps/unix/sysv/linux/m68k/vfork.S: New file.
664 1999-01-13  Ulrich Drepper  <drepper@cygnus.com>
666         * sysdeps/i386/bits/string.h: Correct several bugs in various
667         functions which never worked.
668         Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
670 1999-01-12  Ulrich Drepper  <drepper@cygnus.com>
672         * manual/charset.texi: Add many corrections.
673         Patch by Benjamin Kosnik <bkoz@cygnus.com>.
675 1999-01-12  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
677         * manual/charset.texi: Fix some typos.
679 1999-01-12  Ulrich Drepper  <drepper@cygnus.com>
681         * login/programs/pt_chown.c (main): Update copyright year.
683 1999-01-11  Ulrich Drepper  <drepper@cygnus.com>
685         * sysdeps/posix/tempname.c: Open files with mode 0600.
687         * ctype/Versions [GLIBC_2.0]: Export __ctype32_b.
688         * include/wctype.h: Declare __iswctype.
689         * stdio-common/vfscanf.c (__vfscanf): Use __iswspace instead of
690         iswspace.
691         * wctype/Makefile (routines): Add wcextra_l.
692         * wctype/wcextra.c (iswblank): Implement function here and don't use
693         __iswctype.
694         (__iswblank_l):  Move definition to...
695         * wctype/wcextra_l.c: ...here.  New file.
696         * wctype/wcfuncs.c: Really implement functions and don't call
697         __iswctype or __towctrans.
698         * wctype/wctype.h: Change isw* and tow* macros.  Don't call
699         __iswctype or __towctrans.  Instead optimize constant argument case.
701         * iconv/gconv.h: Fix typos.
703         * iconv/skeleton.c: Fix typos.  Optimize init function a bit.
704         Correctly emit escape sequence to return to initial state in
705         conversion function.
707         * iconvdata/iso-2022-jp.c (gconv_init): Correctly initialize
708         max_needed_to element.
710         * manual/mbyte.texi: Removed.  This is now described in charset.texi.
711         * manual/charset.texi: New file.
712         * manual/Makefile (chapters): Replace mbyte by charset.
713         * manual/ctype.texi: Document wide character functions.
714         * manual/intro.texi: Fix reference to mbyte chapter.
715         * manual/lang.texi: Likewise.
716         * manual/locale.texi: Likewise.
717         * manual/stdio.texi: Likewise.
718         * manual/string.texi: Fix @node line for new charset chapter.
719         * manual/libc.texinfo (UPDATED): Updated.  Also update copyright years.
720         * manual/memory.texi (savestring): Optimize code to give a good
721         example.
723         * manual/filesys.texi: Fix wording.  Patches by Jim Meyering.
725         * nscd/nscd_getgr_r.c: Include stdint.h to get uintptr_t definition.
726         * nscd/nscd_getpw_r.c: Likewise.
727         * nscd/nscd_gethst_r.c: Likewise.
729         * stdlib/stdtold_l.c: Always include xlocale.h.
731 1999-01-11  Geoffrey Keating  <geoffk@ozemail.com.au>
733         * stdlib/fpioconst.h (LDBL_MAX_10_EXP_LOG): Define to be same as
734         DBL_MAX_10_EXP_LOG if there is no long double.
735         (_fpioconst_pow10): Always use size as LDBL_MAX_10_EXP_LOG to match
736         printf_fp.c.
738 1999-01-10  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
740         * timezone/Makefile ($(testdata)/GB): Changed to ...
741         ($(testdata)/Europe/London): ... for tst-timezone test.
742         ($(objpfx)tst-timezone.out): Change GB to Europe/London.
744         * timezone/tst-timezone.c (main): Enable DST switching test,
745         change GB to Europe/London.
747 1999-01-10  Philip Blundell  <philb@gnu.org>
749         * socket/Makefile (headers): Remove bits/sockunion.h.
751 1999-01-09  Philip Blundell  <philb@gnu.org>
753         * socket/sys/socket.h: Don't include <bits/sockunion.h>.
754         * sysdeps/generic/bits/sockunion.h: Deleted.
755         * sysdeps/unix/sysv/linux/bits/sockunion.h: Likewise.
757 1999-01-08  H.J. Lu  <hjl@gnu.org>
759         * io/fts.c (fts_close): Don't access memory after having it freed.
761 1998-01-08  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
763         * manual/Makefile (stamp-summary): Remove space after -t option
764         for compatibility with non-GNU sort programs.
766 1999-01-08  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
768         * manual/search.texi (Comparison Functions): Fix compare_doubles
769         example.
771 1999-01-07  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
773         * Makerules (do-tests-clean): Remove reference to obsolete
774         variable tests-static.
776 1999-01-07  Ulrich Drepper  <drepper@cygnus.com>
778         * sysdeps/unix/sysv/linux/ntp_adjtime.c: Removed.  It's an alias
779         for adjtimex.
780         * sysdeps/unix/sysv/linux/Dist: Add ntp_gettime.c.
781         * sysdeps/unix/sysv/linux/Makefile [subdir=time] (sysdep_routines):
782         Remove ntp_adjtime.
783         * sysdeps/unix/sysv/linux/syscalls.list: Add alias ntp_adjtime to
784         adjtimex.
785         * sysdeps/unix/sysv/linux/sys/timex.h: Correct prototype for
786         ntp_adjtime.
788         * sysdeps/i386/i686/mempcpy.S: Fix typos.
790         * sysdeps/i386/i686/memset.S: New file.
791         * sysdeps/i386/i686/bzero.S: New file.
792         * sysdeps/i386/i686/strcmp.S: New file.
793         * sysdeps/i386/i686/memcpy.S: New file.
795         * sysdeps/unix/sysv/linux/Makefile [subdir=time] (sysdep_routines):
796         Add ntp_adjtime and ntp_gettime.
797         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.1]: Add ntp_adjtime and
798         ntp_gettime.
800 1998-12-29  Ulrich Windl  <Ulrich.Windl@rz.uni-regensburg.de>
802         * manual/time.texi (Precision Time): Add documentation for
803         ntp_gettime and ntp_adjtime.
805 1998-12-28  Ulrich Windl  <Ulrich.Windl@rz.uni-regensburg.de>
807         * sysdeps/unix/sysv/linux/ntp_gettime.c: Created new file
809         * sysdeps/unix/sysv/linux/ntp_adjtime.c: Created new file
811         * sysdeps/unix/sysv/linux/sys/timex.h (struct ntptimeval): Added.
812         Add prototypes for ntp_adjtime and ntp_gettime.
814 1999-01-07  Ulrich Drepper  <drepper@cygnus.com>
816         * sysdeps/i386/bits/select.h (__FD_ZERO): Remove early clobbers
817         from c and D register output.
819 1999-01-07  Philip Blundell  <philb@gnu.org>
821         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Fix bug in last change.
823 1999-01-07  Ulrich Drepper  <drepper@cygnus.com>
825         * sysdeps/unix/sysv/linux/alpha/bits/types.h: Correct type for
826         __fsfilcnt_t.  Patch by Bruce Elliott <bde@nwlink.com>.
828 1999-01-05  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
830         * manual/conf.texi: Remove pointers from first @node.  Move old
831         @node spec inside comment.
832         * manual/lang.texi: Likewise.
833         * manual/libc-texinfo.sh: Also find `@node.*Top' in a comment.
834         * manual/stdio.texi: Fix typo.
836 1999-01-04  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
838         * wcsmbs/btowc.c: Accept all values in the range [SCHAR_MIN
839         .. UCHAR_MAX].  Local var buf renamed to result and its type
840         changed from char[] to wchar_t to get proper alignment.
842         * posix/fnmatch.c: Also cast the arguments of the other ctype
843         functions to unsigned char.
845 1999-01-07  Ulrich Drepper  <drepper@cygnus.com>
847         * Rules: Add rules for empty.{o,os,op} back.
849 1999-01-05  Ulrich Drepper  <drepper@cygnus.com>
851         * Makerules (common-mostlyclean): Add missing parentheses.
853         * Rules: Add back rules for empty.o generation.
855 1999-01-05  Philip Blundell  <philb@gnu.org>
857         * sysdeps/unix/sysv/linux/net/if_arp.h: Add new ARPHRD definitions
858         from latest (2.2.0pre4) kernel.
860 1999-01-05  Scott Bambrough  <scottb@corelcomputer.com>
862         * sysdeps/unix/sysv/linux/arm/sys/user.h : New file.  Fixes problem
863         on ARM platforms with programs that include <sys/user.h> and
864         <sys/ptrace.h>.  Solution suggested by Geoff Keating earlier with
865         fix for same problem on the PowerPC platform.
867 1999-01-04  Philip Blundell  <philb@gnu.org>
869         * sysdeps/unix/sysv/linux/arm/register-dump.h: Correct widths of
870         register values.
871         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: New file.
873 1999-01-04  Ulrich Drepper  <drepper@cygnus.com>
875         * csu/version.c (banner): Update date.
876         * catgets/gencat.c: Update year in copyright message text.
877         * db2/makedb.c: Likewise.
878         * debug/catchsegv.sh: Likewise.
879         * elf/ldd.bash.in: Likewise.
880         * elf/sprof.c: Likewise.
881         * iconv/iconv_prog.c: Likewise.
882         * locale/programs/locale.c: Likewise.
883         * locale/programs/localedef.c: Likewise.
884         * login/programs/utmpd.c: Likewise.
885         * malloc/mtrace.pl: Likewise.
886         * nscd/nscd.c: Likewise.
887         * nss/getent.c: Likewise.
888         * posix/getconf.c: Likewise.
890 1999-01-02  Philip Blundell  <philb@gnu.org>
892         * sunrpc/Makefile: Ensure that we really use the right path for cpp.
894 1999-01-03  Philip Blundell  <philb@gnu.org>
896         * Makefile (tests-clean): New target to delete test output files.
897         * Makerules (do-tests-clean): New rule to support the above.
898         * Rules (subdir_testclean): Likewise.
900 1999-01-03  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
902         * iconv/Makefile: Use install-others instead of explicit
903         dependency on subdir_install.
905 1999-01-02  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
907         * iconv/gconv_db.c (find_derivation): Release lock before
908         returning.
909         (__gconv_find_transform): Likewise.
911 1999-01-01  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
913         * inet/ether_ntoa.c (ether_ntoa): Make `asc' static since that's
914         what we return.
916 1999-01-01  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
918         * Makerules: Remove all references to obsolete variables
919         tests-static and test-srcs-static.
920         * Make-dist: Likewise.
921         * Rules: Likewise.  Remove rules to generate obsolete empty.{c,o*}.
923 1999-01-03  Philip Blundell  <philb@gnu.org>
925         * sysdeps/unix/sysv/linux/arm/pread.c: Use the i386 implementation.
926         * sysdeps/unix/sysv/linux/arm/pread64.c: Likewise.
927         * sysdeps/unix/sysv/linux/arm/pwrite.c: Likewise.
928         * sysdeps/unix/sysv/linux/arm/pwrite64.c: Likewise.
930 1998-12-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
932         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Reorder expression
933         to avoid accessing global data in the usual case.
935 1999-01-01  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
937         * wcsmbs/wcstold_l.c: Correct last patch to include wchar.h from
938         system path.
940 1998-12-31  Ulrich Drepper  <drepper@cygnus.com>
942         * iconvdata/Makefile: Use rpath $ORIGIN for modules which use any of
943         the conversion libraries.
945         * include/features.h: Mention latest extensions in _POSIX_C_SOURCE
946         description.
948         * libio/genops.c (list_all_lock): New variable.
949         (_IO_un_link, _IO_link_in): Acquire lock before modifying _IO_list_all.
950         [PR libc/911].
952         * sysdeps/i386/i686/strtok.s: Add missing cld.
954         * sysdeps/i386/i686/mempcpy.S: New file.
956 1998-12-30  Geoff Keating  <geoffk@ozemail.com.au>
958         Suppress parentheses warnings:
959         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
960         (DL_FIND_ARG_COMPONENTS): here,
961         * sysdeps/powerpc/dl-machine.c: here,
962         * sysdeps/powerpc/fclrexcpt.c (feclearexcept): here,
963         * sysdeps/powerpc/fesetround.c (fesetround): here,
964         * sysdeps/powerpc/feupdateenv.c (feupdateenv): here,
965         * sysdeps/powerpc/fraiseexcpt.c (feraiseexcept): here,
966         * sysdeps/powerpc/fsetexcptflg.c (fesetexceptflag): here,
967         * sysdeps/powerpc/s_rint.c (__rint): here,
968         * sysdeps/powerpc/s_rintf.c (__rintf): here,
969         * sysdeps/powerpc/w_sqrt.c (__sqrt): here,
970         * sysdeps/powerpc/w_sqrtf.c (__sqrtf): and here.
972 1998-12-30  Geoff Keating  <geoffk@ozemail.com.au>
974         * wcsmbs/wcstold.c [__NO_LONG_DOUBLE_MATH]: Include wchar.h.
975         * wcsmbs/wcstold_l.c [__NO_LONG_DOUBLE_MATH]: Likewise.  Also define
976         appropropriate prototypes, correct procedure names.
978 1998-12-30  Geoff Keating  <geoffk@ozemail.com.au>
980         * sysdeps/generic/crypt-entry.c: Prototype __crypt_r, suppress
981         warning.
982         (__crypt_r): Add __restrict.
983         * sysdeps/generic/crypt.h: Remove internal routine.  Add __restrict.
985 1998-12-31  Ulrich Drepper  <drepper@cygnus.com>
987         * stdlib/longlong.h: Add missing #else in SPARC definitions.
989 1998-12-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
991         Patches by Ralf Baechle <ralf@gnu.org>:
992         * sysdeps/unix/sysv/linux/mips/sgidefs.h: Removed.
993         * sysdeps/unix/sysv/linux/mips/sys/asm.h:  Removed.
994         * sysdeps/unix/sysv/linux/mips/sys/regdef.h:  Removed.
995         * sysdeps/unix/sysv/linux/mips/sys/fpregdef.h:  Removed.
996         * sysdeps/unix/sysv/linux/mips/regdef.h:  Removed.
997         * sysdeps/unix/sysv/linux/mips/fpregdef.h: Removed.
999         * sysdeps/unix/sysv/linux/mips/Makefile: Remove delete files.
1000         * sysdeps/unix/sysv/linux/mips/Dist: Remove deleted files.
1002         * sysdeps/mips/sys/fpregdef.h: New files, enhanced versions of deleted
1003         linux specific files.
1004         * sysdeps/mips/sys/asm.h: Likewise.
1005         * sysdeps/mips/sgidefs.h: Likewise.
1006         * sysdeps/mips/fpregdef.h: Likewise.
1007         * sysdeps/mips/regdef.h: Likewise.
1009         * sysdeps/mips/Makefile: Add new headers.
1010         * sysdeps/mips/Dist: Add new files.
1012         * sysdeps/mips/fpu_control.h (_FPU_DEFAULT): Change value.
1014 1998-12-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1016         * iconvdata/Makefile: Remove variable assignments and rules that
1017         are now auto-generated.  Include $(objpfx)iconv-rules instead.
1018         Btw, that removes a few typos.
1019         (charmaps): New variable.
1020         ($(objpfx)iconv-rules): New target.
1021         (gen-8bit-modules): Renamed from sed-generated-headers, remove .h
1022         suffixes.
1023         (gen-8bit-gap-modules): Renamed from awk-generated-headers, remove
1024         .h suffixes.
1025         (gen-special-modules): New variable.
1026         (generated-modules): New variable.
1027         (headers): Use it.
1028         (before-compile): Likewise.
1029         (generated): Likewise, and add iconv-rules.
1030         * iconvdata/euc-cn.c: Renamed from euccn.c.
1031         * iconvdata/euc-jp.c: Renamed from eucjp.c.
1032         * iconvdata/euc-kr.c: Renamed from euckr.c.
1033         * iconvdata/euc-tw.c: Renamed from euctw.c.
1034         * iconvdata/iso_6937.c: Renamed from iso6937.c.
1035         * iconvdata/iso_6937-2.c: Renamed from iso6937-2.c.
1036         * iconvdata/t.61.c: Renamed from t61.c.
1037         * iconvdata/Makefile (distribute): Adjusted for those renames.
1038         Remove $(objpfx) from names.
1040 1998-12-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1042         * sysdeps/generic/hp-timing.h: Fix comment.
1043         * sysdeps/generic/dl-hash.h: Likewise.
1044         * sysdeps/i386/i686/hp-timing.h: Likewise.
1046 1998-12-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1048         * posix/fnmatch.c (fnmatch): Always pass unsigned char values to
1049         FOLD macro.
1051 1998-12-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1053         * nss/db-Makefile ($(VAR_DB)/shadow.db): Fix last change.
1055 1998-12-29  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1057         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Sync with
1058         current Linux 2.1.132 kernel sources.
1060 1998-12-28  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1062         Patches by Ralf Baechle <ralf@gnu.org> for Linux/MIPS:
1063         * sysdeps/unix/sysv/linux/mips/syscalls.list: Add ipc, change
1064         pread/pwrite and llseek calls.
1066         * sysdeps/unix/sysv/linux/mips/sysdep.S: New file.
1068 1998-12-29  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>
1070         * malloc/thread-m.h [_LIBC] : Fix for NO_THREADS case.
1072 1998-12-28  Ulrich Drepper  <drepper@cygnus.com>
1074         * version.h (VERSION): Bump to 2.0.109.
1076         * Makefile (distribute): Add INTERFACE and CONFORMANCE.
1077         * elf/Makefile (distribute): Add hp-timing.h.
1078         * sysdeps/i386/i686/Dist: New file.
1080         * mach/Versions: Add mach_msg_send and mach_msg_receive.
1081         Patch by UCHIYAMA Yasushi <uch@nop.or.jp>.
1083         * sysdeps/unix/sysv/linux/netipx/ipx.h (SIOCIPXNCPCONN): New macro
1084         from latest kernel.
1086         * stdlib/fpioconst.c: If __NO_LONG_DOUBLE_MATH don't define constants
1087         beyond range of double.
1088         * stdlib/fpioconst.h (_fpioconst_pow10): Reduce size according to
1089         fpioconst.c change.
1090         * stdlib/strtold.c: Fall back on double functions if
1091         __NO_LONG_DOUBLE_MATH.
1092         * stdlib/strtold_l.c: Likewise.
1093         * wcsmbs/wcstold.c: Likewise.
1094         * wcsmbs/wcstold_l.c: Likewise.
1095         * sysdeps/ieee754/ldbl2mpn.c: Don't generate code if
1096         __NO_LONG_DOUBLE_MATH.
1097         * sysdeps/ieee754/mpn2ldbl.c: Likewise.
1099 1998-12-28  Geoff Keating  <geoffk@ozemail.com.au>
1101         * sysdeps/powerpc/bits/endian.h: Use #warning, not #error, if
1102         the endianness can't be determined, for makedepend.
1104 1998-12-27  Ulrich Drepper  <drepper@cygnus.com>
1106         * elf/dl-lookup.c (_dl_num_relocations): New variable.
1107         (do_lookup): Increment _dl_num_relocations for every call.
1108         * elf/rtld.c (print_statistics): New function.
1109         (_dl_debug_statistics): New variable.  Set when statistics are asked
1110         for.
1111         (rtld_total_time, relocate_time, load_time): New variables.  Used
1112         in print_statistics.
1113         (_dl_start): Record start and end time of startup.  Call
1114         print_statistics if needed.
1115         (dk_main): Record times for relocations and loading.
1116         (process_dl_debug): Recognize statistics.
1118         Low-level, low-overhead, high-precision timing functionality.
1119         * sysdeps/generic/hp-timing.h: New file.
1120         * sysdeps/i386/i686/Makefile: New file.
1121         * sysdeps/i386/i686/hp-timing.h: New file.
1122         * sysdeps/i386/i686/hp-timing.c: New file.
1124         * sysdeps/i386/dl-machine.h (elf_machine_rel): Reverse order of OR
1125         clauses to avoid accessing global variables during rtld relocation.
1127         * sunrpc/rpc_main.c: Unify messages.
1129         * sysdeps/unix/sysv/linux/arm/Dist: Add ioperm.c and sys/io.h.
1131 1998-12-27  Roland McGrath  <roland@baalperazim.frob.com>
1133         * sysdeps/mach/hurd/bits/statfs.h (struct statfs, struct statfs64):
1134         Remove __ from member names; rename __unused to f_spare.
1136 1998-12-21  Mark Kettenis  <kettenis@phys.uva.nl>
1138         Implement fstatvfs and statvfs on the Hurd.
1139         * sysdeps/mach/hurd/bits/statfs.h: New file.
1140         * sysdeps/mach/hurd/bits/statvfs.h: New file.
1141         * sysdeps/mach/hurd/fstatvfs.c: New file.
1142         * sysdeps/mach/hurd/statvfs.c: New file.
1144         * sysdeps/generic/fstatfs64.c: Changed into stub.
1145         Moved previous contents to...
1146         * sysdeps/unix/sysv/linux/fstatfs64.c: ...here.
1147         * sysdeps/generic/fstatvfs64.c: Likewise.
1148         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
1149         * sysdeps/generic/statfs64.c: Likewise.
1150         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
1151         * sysdeps/generic/statvfs64.c: Likewise.
1152         * sysdeps/unix/sysv/linux/statvfs64.c: Likewise.
1154 1998-12-25  Ulrich Drepper  <drepper@cygnus.com>
1156         * elf/dl-hash.h: Move to...
1157         * sysdeps/generic/dl-hash.h: ...here.  Correct parameter type (must
1158         be unsigned char).  Remove conditional from inner loop and rearrange
1159         binary operations (12-22% performance increase).
1160         * sysdeps/i386/i686/dl-hash.h: New file.  Another 10% faster than
1161         optimized generic version.
1163 1998-12-23  Ulrich Drepper  <drepper@cygnus.com>
1165         * elf/dl-lookup.c (do_lookup): If looking up an unversioned symbol
1166         but the object file only contains versioned definitions than
1167         accept the definition if there is exactly one even if the version
1168         number is not the default version.  This helps dlsym() to find
1169         newly introduced symbols.
1171         * locale/programs/ld-collate.c: Unify messages and correct typos.
1172         * locale/programs/ld-monetary.c: Likewise.
1173         * locale/programs/ld-numeric.c: Likewise.
1174         * locale/programs/ld-time.c: Likewise.
1175         * manual/errno.texi: Likewise.
1176         * nis/nis_error.c: Likewise.
1177         * nis/nis_print.c: Likewise.
1178         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
1179         * sunrpc/rpc_main.c: Likewise.
1181 1998-12-20  Philip Blundell  <philb@gnu.org>
1183         * sysdeps/unix/sysv/linux/arm/sysdep.h (INLINE_SYSCALL): Add
1184         implementation.
1185         * sysdeps/unix/sysv/linux/arm/syscalls.list: Remove wrappers for
1186         now-inlined calls.
1188 1998-12-22  Philip Blundell  <pb@nexus.co.uk>
1190         * sysdeps/unix/sysv/linux/arm/ioperm.c: New file.
1191         Implementation of inb, outb etc for ARM systems.
1192         * sysdeps/unix/sysv/linux/arm/sys/io.h: Likewise.
1193         * sysdeps/unix/sysv/linux/arm/Versions: Add appropriate
1194         entries for the above.
1196 1998-12-21  Ulrich Drepper  <drepper@cygnus.com>
1198         * nss/db-Makefile (shadow.db): Create file with correct protections.
1199         Based on a patch by Joel Klecker <espy@debian.org>.
1201         * inet/gethstbynm_r.c: Remove NEED__RES definition since we do this
1202         anyway for digits_dots.c.
1203         * nss/getXXbyYY.c: Initialize _res before using digits_dots.c
1204         functions.
1205         * nss/getXXbyYY_r.c: Likewise.
1207 1998-12-19  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1209         * sunrpc/key_call.c (getkeyserv_handle): Use __fcntl instead of
1210         fcntl.
1212 1998-12-20  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1214         * locale/weight.h (get_weight): Extract string elements as
1215         unsigned values.
1217 1998-12-06  Mark Kettenis  <kettenis@phys.uva.nl>
1219         Reverse the change of 1998-04-22.  Providing a struct dirent with
1220         different members when __USE_FILE_OFFSET64 is defined is asking
1221         for trouble.  Instead add the necessary LFS magic to the 4.4BSD
1222         header.
1223         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Add LFS definitions.
1224         * sysdeps/mach/hurd/bits/dirent.h: Removed.
1225         * sysdeps/mach/hurd/readdir64.c: Removed.
1226         * sysdeps/mach/hurd/readdir64_r.c: Removed.
1228 1998-12-20  Roland McGrath  <roland@baalperazim.frob.com>
1230         * sysdeps/generic/bits/mman.h [__USE_MISC] (MAP_ANONYMOUS): Define as
1231         alias for MAP_ANON.
1233         * stdio/stdio.h (sys_errlist, sys_nerr, _sys_errlist, _sys_nerr):
1234         Remove decls.  They don't exist at all on the Hurd.
1236         * sunrpc/svc_unix.c, sunrpc/clnt_unix.c: Avoid using `struct cmsghdr'
1237         and `struct ucred' #ifndef SCM_CREDENTIALS.
1239         * sunrpc/publickey.c (getsecretkey): Use `&errno' instead of
1240         `__errno_location ()'; means the same, works for Hurd.
1242         * sysdeps/mach/hurd/Makefile (subdirs): Don't elide sunrpc.
1244 1998-12-18  Ulrich Drepper  <drepper@cygnus.com>
1246         * sysdeps/unix/sysv/sysv4/solaris2/bits/types.h: Include
1247         features.h and stddef.h.
1248         * sysdeps/unix/sysv/sysv4/solaris2/bits/sigstack.h (struct
1249         sigaltstack): Move ss_size field at the end.
1250         Patches by Jeff Bailey <jbailey@nisa.net>.
1252         * time/getdate.c (check_mday): tm_mon contains values from 0 to 11,
1253         not 1 to 12.
1255         * manual/texinfo.tex: Update to latest version.
1257         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add ipc.
1258         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
1259         Patch by Cristian Gafton <gafton@redhat.com>.
1261 1998-12-17  Ulrich Drepper  <drepper@cygnus.com>
1263         * iconvdata/gconv-modules: Add remaining aliases from Internet
1264         standards.
1266         * iconv/gconv_int.h (gconv_module): Add new element from_regex_mem.
1267         * iconv/gconv_conf.c (module_compare): Make s1 and s2 const.
1268         (detect_conflict): New function.
1269         (add_alias): Call detect_conflict to see whether there is already
1270         a module for the new name.
1271         (add_module): Make sure there is no alias for the new name.
1272         (read_conf_file): Call add_alias with new argument.
1273         (__gconv_read_conf): Don't destroy module tree immediately after
1274         walking it.  We need it to test the internal conversions for
1275         conflicts.
1276         * iconv/gconv_db.c (find_derivation): Don't allocate memory for
1277         regular expression.  There is now room in the module descriptor.
1278         (free_mem): Don't free memory for regular expression.
1280         * sysdeps/unix/sysv/linux/bits/socket.h: Add AF_IRDA, PF_IRDA and
1281         MSG_TRYHARD.
1283         * sunrpc/clnt_unix.c (clntunix_destroy): Use __close not close.
1284         * libio/oldtmpfile.c: Likewise.
1285         * libio/oldiofdopen.c: Use __fcntl instead fcntl.
1286         * sysdeps/posix/profil.c: Use __sigaction instead of sigaction.
1288         * iconvdata/iso646.c (gconv_init): Return correct error value if we
1289         run out of memory.
1290         * iconvdata/iso-2022-jp.c: Likewise.
1292         * iconv/gconv_db.c (gen_steps): Respect error return value from
1293         init functions and abort.
1295         * iconvdata/iso646.c: Recognize NF_Z_62-010_1973 as charset name.
1297 1998-12-17  H.J. Lu  <hjl@gnu.org>
1299         * sunrpc/rpc/xdr.h (XDR_DESTROY): Add ';'.
1300         (xdr_destroy): Likewise.
1302 1998-12-17  Ulrich Drepper  <drepper@cygnus.com>
1304         * login/login.c: Determine pts/3 as terminal name if path is
1305         /dev/pts/3.  This is consistent with getlogin.  [PR libc/906]
1307 1998-12-16  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1309         * sysdeps/posix/tempname.c (__path_search): Add casts for format
1310         string.
1312 1998-12-16  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1314         * sunrpc/rpc/xdr.h (XDR_DESTROY, xdr_destroy): Avoid dangling else
1315         problem.
1316         (IXDR_PUT_INT32): Fully parenthesize parameters.
1317         (IXDR_GET_LONG, IXDR_PUT_LONG): Mark GCC extension.  Fully
1318         parenthesize parameter.
1320 1998-12-16  Ulrich Drepper  <drepper@cygnus.com>
1322         * iconvdata/gconv-modules: Add some of the charset name aliases
1323         used in Internet standards.
1325 1998-12-16  Ulrich Drepper  <drepper@cygnus.com>
1327         * version.h (VERSION): Bump to 2.0.107.
1329         * sysdeps/i386/i486/bits/string.h: Pretty printing.
1331 1998-12-16  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
1333         * sunrpc/rpc/xdr.h: Revert patch from 1998-12-14, partly revert
1334         patch from 1998-12-01.
1336 1998-12-16  Roland McGrath  <roland@baalperazim.frob.com>
1338         * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Define this #ifdef
1339         __USE_BSD as well as #ifdef __USE_GNU, so MAXSYMLINKS can use it.
1340         Reported by UCHIYAMA Yasushi <uch@nop.or.jp>
1342 1998-12-16  Ulrich Drepper  <drepper@cygnus.com>
1344         * iconvdata/ibm866.c: New file.
1345         * iconvdata/cp1258.c: New file.
1346         * iconvdata/cp1258.h: New file.
1347         * iconvdata/mac-uk.c: New file.
1348         * iconvdata/gconv-modules: Add rules for new modules.
1349         * iconvdata/Makefile: Likewise.
1351         * sysdeps/gnu/bits/ipc.h: Move libc internal bits to...
1352         * include/bits/ipc.h: ..here.  New file.
1354 1998-12-16  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1356         * sysdeps/unix/sysv/linux/tcsetattr.c (tcsetattr): Don't change
1357         read-only struct termios_p* but change k_termios member directly.
1359 1998-12-15  H.J. Lu  <hjl@gnu.org>
1361         * sysdeps/posix/tempname.c (__path_search): Fix the maximum
1362         string length.
1364 1998-12-15  Ulrich Drepper  <drepper@cygnus.com>
1366         * sysdeps/unix/sysv/linux/msgctl.c: Use INLINE_SYSCALL.
1367         * sysdeps/unix/sysv/linux/msgget.c: Likewise.
1368         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
1369         * sysdeps/unix/sysv/linux/msgsnd.c: Likewise.
1370         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
1371         * sysdeps/unix/sysv/linux/semget.c: Likewise.
1372         * sysdeps/unix/sysv/linux/semop.c: Likewise.
1373         * sysdeps/unix/sysv/linux/shmat.c: Likewise.
1374         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
1375         * sysdeps/unix/sysv/linux/shmdt.c: Likewise.
1376         * sysdeps/unix/sysv/linux/shmget.c: Likewise.
1377         * sysdeps/unix/sysv/linux/syscalls.list: Remove ipc syscall here.
1378         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add ipc syscall here.
1380         * time/strftime.c: Remove 'f' format.
1382         * time/strptime.c (get_number): Ignore trailing whitespace.
1383         (strptime_internal): Handle 'F' and 'k' formats.
1385         * sysdeps/posix/tempname.c (__path_search): Add second part of the
1386         patch by Andreas Jaeger.
1388 1998-12-15  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1390         * stdio-common/tst-tmpnam.c (main): Use void as parameter to avoid
1391         warnings about unused args.  Fix comment.
1393 1998-12-15  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1395         * sysdeps/posix/tempname.c (__path_search): Correct last patch.
1397 1998-12-14  Ulrich Drepper  <drepper@cygnus.com>
1399         * sunrpc/rpc/xdr.h (IXDR_GET_INT32): Case pointer before reading from
1400         it.
1401         (IXDR_PUT_INT32): Likewise for writing.
1402         Patch by Bruce Elliott <bde@nwlink.com>.
1404 1998-12-08  H.J. Lu  <hjl@gnu.org>
1406         * sysdeps/unix/sysv/linux/speed.c (cfsetospeed): Don't clear
1407         the IBAUD0 bit in c_iflag.
1409         * sysdeps/unix/sysv/linux/tcsetattr.c (tcsetattr): Clear the
1410         the IBAUD0 bit in c_iflag.
1412 1998-12-14  Ulrich Drepper  <drepper@cygnus.com>
1414         * time/Makefile (tests): Add tst-strptime.
1415         * time/tst-strptime.c: New file.
1416         * time/strptime.c: Correct bugs in weekday and yearday computation.
1418 1998-12-14  Ulrich Drepper  <drepper@cygnus.com>
1420         * time/strptime.c (strptime_internal): Set tm_wday and tm_yday in
1421         any of tm_year, tm_mon, or tm_mday was changed and the value
1422         itself wasn't specified.
1424         * include/stdio.h: Add new parameter to __path_search.
1425         * libio/oldtmpfile.c: Add 0 as new parameter to __path_search.
1426         * stdio-common/tmpfile.c: Likewise.
1427         * stdio-common/tmpfile64.c: Likewise.
1428         * stdio-common/tmpnam.c: Likewise.
1429         * stdio-common/tmpnam_r.c: Likewise.
1430         * stdio-common/tempnam.c: Add 1 as new parameter to __path_search.
1431         * sysdeps/posix/tempname.c: Add new parameter.  If value is nonzero
1432         consider TMPDIR environment variable and dir parameter.  Otherwise not.
1433         * stdio-common/Makefile (tests): Add tst-tmpnam.
1434         * stdio-common/tst-tmpnam.c: New file.
1436         * po/es.po: Update from translation team.
1438 1998-12-12  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1440         * timezone/Makefile: Protect inclusion of z.* by avoid-generated
1441         and inhibit_timezone_rules instead of no_deps.
1442         * Make-dist: Pass inhibit_timezone_rules=t when making
1443         echo-distinfo.
1445 1998-12-12  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1447         * manual/Makefile (distribute): Remove dir-add.texinfo.
1449         * sysdeps/unix/sysv/linux/powerpc/Dist: Add sys/procfs.h and
1450         sys/user.h.
1452 1998-12-11  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1454         * manual/Makefile (stamp-summary): Use ^L as separator for
1455         sorting.
1456         * manual/arith.texi: Add comments before all @deffoox lines to get
1457         them added to the summary.
1458         * manual/creature.texi: Likewise.
1459         * manual/math.texi: Likewise.
1461 1998-12-13  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1463         * math/libm-test.c: Remove macro ISINF.  Change all usages of
1464         ISINF to isinf.
1466 1998-12-13  Ulrich Drepper  <drepper@cygnus.com>
1468         * sysdeps/posix/tempname.c: Use __xstat instead of __stat.
1469         * sysdeps/unix/grantpt.c: Likewise.
1470         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
1471         * sysvipc/ftok.c: Likewise.
1472         Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
1474         * stdlib/test-canon.c: Define PATH_MAX if the system does not.
1475         * string/stratcliff.c: Use MAP_ANON instead of MAP_ANONYMOUS.
1476         Patch by UCHIYAMA Yasushi <uch@nop.or.jp>.
1478 1998-12-13  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1480         * sysdeps/alpha/fpu/fsetexcptflg.c: Avoid -Wparentheses warning.
1482         * sysdeps/libm-ieee754/s_expm1.c (__expm1): Avoid -Wparentheses
1483         warning.
1484         * sysdeps/libm-ieee754/s_log1p.c (__log1p): Likewise.
1485         * sysdeps/libm-ieee754/e_logf.c (__ieee754_logf): Likewise.
1486         * sysdeps/libm-ieee754/s_expm1f.c (__expm1f): Likewise.
1487         * sysdeps/libm-ieee754/e_log.c (__ieee754_log): Likewise.
1488         * sysdeps/libm-ieee754/s_log1pf.c (__log1pf): Likewise.
1490 1998-12-13  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1492         * sunrpc/svc_udp.c (svcudp_bufcreate): Declare len as socklen_t.
1493         (svcudp_recv): Likewise.
1495 1998-12-13  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
1497         * nis/nss-nisplus.h: Change some mappings of NIS+ errors to
1498         NSS error codes to avoid endless loops.
1500 1998-12-13  Ulrich Drepper  <drepper@cygnus.com>
1502         * iconvdata/gconv-modules: Correct aliases for ISO-8859-13 and add
1503         aliases for ISO-8859-14.
1505 1998-12-12  Geoff Keating  <geoffk@ozemail.com.au>
1507         * posix/fnmatch.c (fnmatch): Arguments to FOLD must not have
1508         side-effects.
1510 1998-12-12  Ulrich Drepper  <drepper@cygnus.com>
1512         * iconvdata/iso-8859-11.h: ISO 8859-11 conversion data.
1513         * iconvdata/iso-8859-11.c: ISO 8859-11 conversion module.
1514         * iconvdata/iso-8859-13.c: Likewise for 8859-13.
1515         * iconvdata/iso-8859-14.c: Likewise for 8859-14.
1516         * iconvdata/iso-8859-15.c: Likewise for 8859-15.
1517         * iconvdata/gconv-modules: Add rules for new modules.
1518         * iconvdata/Makefile: Likewise.
1520 1998-12-12  Ulrich Drepper  <drepper@cygnus.com>
1522         * stdio-common/printf_fp.c: #ifdef out long double handling code if
1523         __NO_LONG_DOUBLE_MATH is defined to avoid warnings.
1524         * stdio-common/printf_fphex.c: Likewise.
1525         * stdio-common/printf-size.c: Likewise.
1527 1998-12-12  Ulrich Drepper  <drepper@cygnus.com>
1529         * login/Makefile: Install pt_chown using INSTALL_PROGRAM.
1530         Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
1532 1998-12-11  Ulrich Drepper  <drepper@cygnus.com>
1534         * sysdeps/powerpc/dl-machine.h (elf_machine_matches_host): Mark
1535         static inline, not extern inline.
1536         (elf_machine_dynamic): Likewise.
1537         (elf_machine_lazy_rel): Likewise.
1538         (elf_machine_plt_value): Likewise.
1539         * sysdeps/powerpc/backtrace.c: Include stddef.h to get NULL
1540         definition.
1541         Patchess by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
1543         * sysdeps/mips/dl-machine.h (elf_machine_rel): Fixl_addr parameter
1544         type.  Reported by job bogan <job@piquin.uchicago.edu>.
1546         * sysdeps/unix/opendir.c (__opendir): Use __xstat instead of
1547         __stat.
1549 1998-12-11  Kunihiro Ishiguro  <kunihiro@zebra.org>
1551         * inet/netinet/in.h: Change obsolete structure member
1552         ipv6mr_ifindex to new ipv6mr_interface.
1554 1998-12-11  Ulrich Drepper  <drepper@cygnus.com>
1556         * sysdeps/ieee754/dbl2mpn.c: Changed '#include "ieee754.h"' to
1557         '#include <ieee754.h>'.  ARM port has its own version of 'ieee754.h'
1558         due to its big endian floating point format.
1559         * sysdeps/ieee754/ldbl2mpn.c: Likewise.
1560         * sysdeps/ieee754/mpn2dbl.c: Likewise.
1561         * sysdeps/ieee754/mpn2ldbl.c: Likewise.
1562         * sysdeps/ieee754/mpn2flt.c: Likewise.
1563         Patch by Scott Bambrough <scottb@corelcomputer.com>.
1565 1998-12-10  Ulrich Drepper  <drepper@cygnus.com>
1567         * sysdeps/unix/sysv/linux/adjtime.c: Undo last change.
1569         * posix/PTESTS: Fix typo.
1571         * po/es.po: Update from translation team.
1572         * po/fr.po: Likewise.
1574 1998-12-10  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
1576         * nis/nss_compat/compat-pwd.c: Fix handling of +/- entries.
1578 1998-12-10  Ulrich Drepper  <drepper@cygnus.com>
1580         * sunrpc/Makefile: Call rpcgen program which -Y parameter so that
1581         it can find the preprocessor.
1583 1998-12-09  Geoff Keating  <geoffk@ozemail.com.au>
1585         * sysdeps/unix/sysv/linux/sys/procfs.h: Use sys/user.h not
1586         asm/user.h.
1587         * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
1589         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: New file,
1590         like linux/sys/procfs.h but uses uid_t and gid_t.
1591         * sysdeps/unix/sysv/linux/powerpc/sys/user.h: New file,
1592         don't include <linux/ptrace.h>.
1594 1998-12-08  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1596         * posix/runptests.c (main): Check that regcomp did not succeed
1597         unexpectedly.
1598         * posix/runtests.c (run_a_test): Likewise.  Return appropriate
1599         exit code.
1600         * posix/TESTS: Regexp "a[b-a]" should not compile.
1601         * posix/PTESTS: Comment out bogus tests GA113(2), GA145(2) and
1602         GA147(2).
1604 1998-12-09  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1606         * locale/programs/ld-ctype.c (allocate_arrays): Don't crash if
1607         there is no codeset name.
1608         * locale/programs/ld-collate.c (collate_output): Don't crash if a
1609         character has no weight.
1611 1998-12-10  Ulrich Drepper  <drepper@cygnus.com>
1613         * inet/getnetgrent_r.c (innetgr): Check host and domain name with
1614         strcasecmp, not strcmp.  [PR libc/894].
1616 1998-12-08  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1618         * posix/regex.h: Declare re_comp, re_exec if compiling for libc to
1619         get prototypes.
1621         * wctype/wctype.h: Add prototypes for __iswblank_l and iswblank.
1623 1998-12-08  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1625         * sysdeps/unix/sysv/linux/gethostid.c: Include <netdb.h> to get
1626         prototype for __gethostbyname_r.
1628         * include/time.h: Add declarations of internal interfaces.
1630         * time/tzset.c: Remove declarations of internal interfaces.
1631         * time/gmtime.c: Likewise.
1632         * time/localtime.c: Likewise.
1633         * time/offtime.c: Likewise.
1634         * time/tzfile.c: Likewise.
1636 1998-12-01 09:47 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
1638         * sysdeps/unix/sysv/linux/sys/timex.h: Copy out
1639         user-space-relevant definitions from linux/timex.h of kernel
1640         2.1.130 and remove include of kernel header.
1642         * sysdeps/unix/sysv/linux/adjtime.c: Remove portability crud.
1644 1998-12-08  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1646         * posix/regex.c: Get regex.h from system path, not from local
1647         directory.
1649         * posix/regex.h: Move internal interfaces to ...
1650         * include/regex.h: ...here.
1652         * posix/unistd.h: Move internal interfaces to ...
1653         * include/unistd.h: ...here.
1655         * math/math.h: Move internal interfaces to ...
1656         * include/math.h: ...here.
1658         * posix/glob.h: Move internal interfaces to ...
1659         * include/glob.h: ...here.
1661         * string/string.h: Move internal interfaces to ...
1662         * include/string.h: ...here.
1664         * time/sys/time.h: Move internal interfaces to ...
1665         * include/sys/time.h: ...here.
1667         * resolv/netdb.h: Move internal interfaces to ...
1668         * include/netdb.h: ...here.
1670 1998-12-08  Ulrich Drepper  <drepper@cygnus.com>
1672         * iconvdata/eucjp.c: Handle Yen in overscore conversion from ISO 10646
1673         correctly.
1674         * iconvdata/iso-2022-jp.c: Handle Kana in 2022-JP2 correctly
1675         Fix various bugs in conversion routine.
1676         * iconvdata/jis0201.h: Correct variable name.
1677         * iconvdata/jis0208.c: Correct script to generate tables and regenerate
1678         them.
1679         * iconvdata/jis0208.h: Likewise.
1680         * iconvdata/jis0212.c: Likewise.
1681         * iconvdata/sjis.c: Likewise.
1682         Patch by HANATAKA Shinya <hanataka@abyss.rim.or.jp>.
1684 1998-12-07  Ulrich Drepper  <drepper@cygnus.com>
1686         * sysdeps/unix/sysv/linux/speed.c (IBAUD0): New definition.  Bit
1687         set in c_iflag if cfsetispeed is call with SPEED set to zero.
1688         (cfgetispeed): Return zero if prior if IBAUD0 is set.
1689         (cfsetospeed): Clear IBAUD0 bit.
1690         (cfgetispeed): Set IBAUD0 bit if necessary.
1691         * sysdeps/unix/sysv/linux/tcsetattr.c (tcsetattr): Clear
1692         the IBAUD0 bit in c_iflag when making the system call.
1693         Work around a Linux kernel bug which silently changes the
1694         PARENB/CREAD/CSIZE bits in c_cflag on pty.
1695         * sysdeps/unix/sysv/linux/speed.c (cfsetispeed): Make a real
1696         function.  Don't set speed is SPEED parameter is zero since this
1697         means set it to the output speed.
1698         Based on a patch by H.J. Lu <hjl@gnu.org>.
1700         * version.h (VERSION): Bump to 2.0.106.
1702         * Makeconfig (link-libc-static): Don't use link-libc since this
1703         includes the shared object.  Use gnulib only.
1705         * configure.in: Disable --disable-static.
1707 1998-12-07 12:06  Ulrich Drepper  <drepper@cygnus.com>
1709         * po/de.po: Update from translation team.
1710         * po/ko.po: Likewise.
1712 1998-12-07  Richard Henderson  <rth@cygnus.com>
1714         * sysdeps/unix/sysv/linux/alpha/select.S: Save a4 through
1715         both paths.
1717 1998-12-05  Roland McGrath  <roland@baalperazim.frob.com>
1719         * sysdeps/mach/hurd/pselect.c: New file.
1721         * sysdeps/mach/hurd/poll.c: New file.
1723         * hurd/Makefile (routines): Add hurdselect.
1724         * hurd/hurdselect.c: New file.
1725         (_hurd_select): New function, guts taken from ...
1726         * sysdeps/mach/hurd/select.c (__select): ... here.
1727         Now work by just calling _hurd_select.
1728         * hurd/hurd/fd.h: Declare _hurd_select.
1730 1998-12-05  Roland McGrath  <roland@baalperazim.frob.com>
1732         * time/strptime.c: Fix unterminated comment in last change.
1734 1998-12-05  Ulrich Drepper  <drepper@cygnus.com>
1736         * ctype/ctype.h (_ISbit): Protect use of parameter with
1737         parentheses.
1738         * wctype/wctype.h (_ISwbit): Likewise.
1740         * locale/Versions: Make experimental locale interface available in
1741         GLIBC_2.1.
1743         * sysdeps/gnu/bits/utmp.h (struct exit_status): Define members
1744         without leading __ only for __USE_GNU.
1745         * sysdeps/gnu/bits/utmpx.h (struct __exit_status): Likewise.
1747 1998-12-04  Ulrich Drepper  <drepper@cygnus.com>
1749         * argp/argp.h: Add __restrict.
1750         * dirent/dirent.h: Likewise.
1751         * elf/dlfcn.h: Likewise.
1752         * grp/grp.h: Likewise.
1753         * iconv/iconv.h: Likewise.
1754         * inet/aliases.h: Likewise.
1755         * libio/libio.h: Likewise.
1756         * libio/stdio.h: Likewise.
1757         * locale/locale.h: Likewise.
1758         * misc/mntent.h: Likewise.
1759         * posix/wordexp.h: Likewise.
1760         * pwd/pwd.h: Likewise.
1761         * resolv/netdb.h: Likewise.
1762         * rt/aio.h: Likewise.
1763         * stdio-common/printf.h: Likewise.
1764         * stdlib/monetary.h: Likewise.
1765         * stdlib/stdlib.h: Likewise.
1766         * string/argz.h: Likewise.
1767         * string/envz.h: Likewise.
1768         * string/string.h: Likewise.
1769         * time/time.h: Likewise.
1771 1998-12-04  Zack Weinberg  <zack@rabi.phys.columbia.edu>
1773         * misc/sys/cdefs.h: Only include features.h if _FEATURES_H isn't
1774         defined.  gcc's redundant include optimizer isn't clever enough to
1775         prevent a reinclusion here.
1776         Define __restrict to the empty string only if not GCC or
1777         GCC version less than 2.92.
1779 1998-12-03  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1781         * sysdeps/unix/sysv/linux/configure.in: Fix last change.
1783 1998-12-03  Mark Kettenis  <kettenis@phys.uva.nl>
1785         * time/strptime.c (strptime_internal): Make use of `%C' format
1786         specifier if it is seen together with the `%y' specifier.
1788 1998-12-04  Ulrich Drepper  <drepper@cygnus.com>
1790         * po/sk.po: New file.
1792 1998-12-03  Scott Bambrough  <scottb@corelcomputer.com>
1794         * sysdeps/arm/dl-machine.h (dl_start_user): Incorrect address
1795         for _dl_main_searchlist passed to _dl_init_next.
1797 1998-12-02  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1799         * math/libm-test.c: Expand literal tabs in strings.  Normalize
1800         whitespace.
1802 1998-12-02  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1804         * sysdeps/unix/sysv/linux/sys/fsuid.h: Fix spelling.
1806 1998-12-04  Mark Kettenis  <kettenis@phys.uva.nl>
1808         Provide backwards binary compatibility for the Hurd.
1809         * hurd/geteuids.c [PIC && DO_VERSIONING]: Make __getuids a weak
1810         alias for geteuids.
1811         * hurd/Versions [GLIBC_2.0]: Add __getuids,
1812         __hurd_file_name_lookup and _hurd_umask.
1813         [GLIBC_2.1]: Add _hurd_proc_init.
1814         * hurd/Makefile [versioning] (routines): Add compat-20.
1815         (shared-only-routines): Likewise.
1816         * hurd/hurdinit.c (_hurd_new_proc_init): Renamed from
1817         _hurd_proc_init.  Use it as the default _hurd_proc_init version
1818         for GLIBC_2.1.
1819         * hurd/compat-20.c: New file.
1820         * mach/Versions [GLIBC_2.0]: Add __vm_allocate.
1822 1998-12-02  Ulrich Drepper  <drepper@cygnus.com>
1824         * elf/elf.h: Add R_MIPS_JALR and adjust R_MIPS_NUM appropriately.
1826 1998-12-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1828         * inet/Versions: Remove inet6_isipv4mapped.
1830 1998-12-02  Philip Blundell  <pb@nexus.co.uk>
1832         * inet/in6_addr.c (inet6_isipv4mapped): Obsolete, deleted.
1834 1998-11-30  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1836         * manual/time.texi (Formatting Date and Time): Fix typo.
1838 1998-11-30  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1840         * sysdeps/unix/sysv/linux/configure.in: Only check for symlinks
1841         when configuring natively.  Use autoconf macros instead of rolling
1842         our own.  Handle defaulted prefix.
1844 1998-12-01  Ulrich Drepper  <drepper@cygnus.com>
1846         * version.h (VERSION): Bump to 2.0.105.
1848         * sysdeps/generic/Dist: Add bits/libc-tsd.h.
1850         * sysdeps/mach/hurd/Dist: Add bits/libc-tsd.h.
1852         * sysdeps/unix/sysv/linux/mips/Dist: Add xstatconv.c.
1854 1998-11-29 1998  H.J. Lu  <hjl@gnu.org>
1856         * libio/genops.c (_IO_unbuffer_write): Renamed from
1857         _IO_unbuffer_all.
1858         (_IO_cleanup): Call _IO_unbuffer_write instead of
1859         _IO_unbuffer_all.
1861 1998-12-01  Ulrich Drepper  <drepper@cygnus.com>
1863         * intl/localealias.c: Use *_unlocked version of stdio function if
1864         _LIBC_REENTRANT is defined, not _LIBC.
1866 1998-12-01  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1868         * include/grp.h: Add prototypes for internal functions
1869         __getgrgid_r and __getgrnam_r.
1871         * inet/herrno.c: Include <netdb.h> for prototype, undef h_errno.
1873         * resolv/nsap_addr.c: Include <arpa/inet.h> for inet_nsap_addr and
1874         inet_nsap_ntoa prototypes.
1876 1998-12-01  Ulrich Drepper  <drepper@cygnus.com>
1878         * sysdeps/unix/sysv/linux/Makefile (syscall-%.h): Pass -I option
1879         to gcc to have it find the correct system header.
1880         Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
1882         * Makefile (postclean): Add sysd-sorted.
1883         Reported by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
1885 1998-12-01  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
1887         * sunrpc/auth_des.c: Use new XDR int32 functions for integers.
1888         * sunrpc/rpc/xdr.h: Add IXDR INT32 functions.
1889         * sunrpc/rpc_hout.c: Remove (u_long) casts in defines to avoid
1890         conflicts with new solaris version.
1891         * sunrpc/rpc_main.c: Fix bug in generating Makefile name (malloc
1892         doesn't zero allocated memory).
1893         * sunrpc/rpc_svcout.c: Local variables now starts with a _ to avoid
1894         conflicts with xdr functions.  Solves PR libc/877.
1895         * nis/rpcsvc/nis.x: Use always uint32_t.
1896         * nis/rpcsvc/nis.h: Likewise.
1897         * nis/rpcsvc/nis_object.x: Likewise.
1899 1998-12-01  Ulrich Drepper  <drepper@cygnus.com>
1901         * math/libm-test.c: Various cleanups.  Patch by Zack Weinberg.
1903         * sysdeps/unix/sysv/linux/alpha/setfpucw.c: Use correct type for
1904         parameter.  Patch by Christian Gafton.
1906         * string/envz.h: Add prototype for envz_remove.
1907         Reported by Andreas Jaeger.
1909 1998-11-30  Mark Kettenis  <kettenis@phys.uva.nl>
1911         * mach/Versions [libc, GLIBC_2.0]: Add __spin_lock,
1912         __spin_lock_init,  __mutex_lock, __mutex_trylock,
1913         __mutex_unlock.
1914         Remove get_priviliged_ports.  Moved to hurd/Versions.
1916         * hurd/Versions [libc, GLIBC_2.0]: Add _end.  This makes the Hurd
1917         brk implementation see the end of the data segment of the program
1918         instead of the shared library.
1919         Add __hurd_errno_location.  This inline function is used in user
1920         programs.
1921         Add _hurd_critical_section_lock, _hurd_critical_section_unlock,
1922         _hurd_fd_get, _hurd_port_free, _hurd_port_get,
1923         _hurd_port_locked_get.  These inline functions are used by macros
1924         used in mail.local in the Hurd distribution.
1925         Add get_privileged_ports.  Moved here from mach/Versions.
1926         Remove __hurd_file_name_lookup, __hurd_file_name_lookup_retry,
1927         __hurd_file_name_split, __hurd_file_name_path_lookup.  These are
1928         not used outside libc.
1930 1998-11-30  Mark Kettenis  <kettenis@phys.uva.nl>
1932         * hurd/hurdstartup.c: Really include set-hooks.h with <> instead
1933         of "".
1935 1998-11-29  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
1937         * sunrpc/Makefile: Add xdr_intXX_t to routines.
1938         * sunrpc/Versions: Add xdr_int8_t, xdr_uint8_t, xdr_in16_t and
1939           xdr_uint16_t.
1940         * sunrpc/rpc/xdr.h: Add prototypes for new xdr_intXX_t functions.
1941         * sunrpc/xdr.c: Remove xdr_int32_t and xdr_uint32_t.
1942         * sunrpc/xdr_intXX_t.c: New, contains all xdr_intXX_t functions.
1944         * nis/Depend: New.
1945         * nis/nss_nis/nis-service.c: Include generated prototype for parser.
1947 1998-11-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1949         * nscd/nscd_getpw_r.c: Include nscd_proto.h for prototypes.
1951         * sysdeps/generic/errno-loc.c: Include <errno.h> for prototype,
1952         undefine errno to get variable.
1954         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Include <sys/fsuid.h>
1955         instead of <unistd.h> for prototype.
1956         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
1958 1998-11-30  Ulrich Drepper  <drepper@cygnus.com>
1960         * misc/err.h: Correct comments and use protected attribute keywords.
1961         Reported by Joseph Myers <jsm28@cam.ac.uk>.
1963 1998-11-29  Roland McGrath  <roland@baalperazim.frob.com>
1965         * malloc/thread-m.h [_LIBC]: Include <bits/libc-tsd.h>, and
1966         remove tsd stuff from pthreads/cthreads libc sections.
1967         Use __libc_tsd_define for MALLOC key.
1968         [_LIBC] (tsd_key_t, tsd_key_create): Define to a zero-size type and a
1969         no-op, respectively.
1970         [_LIBC] (tsd_setspecific, tsd_getspecific): Use __libc_tsd_get/set.
1972         * elf/dl-error.c: Include <bits/libc-tsd.h>.
1973         Use __libc_tsd_define for DL_ERROR key.
1974         (tsd_setspecific, tsd_getspecific): Rewritten using __libc_tsd_get/set.
1976         * sysdeps/mach/hurd/bits/libc-tsd.h: New file.
1977         * sysdeps/generic/bits/libc-tsd.h: New file.
1978         * Makefile (distribute): Add bits/libc-tsd.h.
1980 1998-10-12  Roland McGrath  <roland@baalperazim.frob.com>
1982         * elf/dl-error.c: Remove kludge to check for ld.so load address.
1983         There is no need if weak undefined symbols are not used in ld.so;
1984         see linuxthreads/ChangeLog for changes to files
1985         linuxthreads/sysdeps/pthread/bits/libc-lock.h and
1986         linuxthreads/sysdeps/pthread/bits/libc-tsd.h.
1988 1998-11-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1990         * sysdeps/i386/bits/string.h (__memset_cc): Fix typo (s->__s).
1992         * sysdeps/i386/i486/bits/string.h: Add prototypes for all new
1993         inline functions.
1994         * sysdeps/i386/bits/string.h: Likewise.
1996 1998-11-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1998         * sysdeps/unix/sysv/linux/alpha/bits/ipc.h: Remove ipc_kludge.
2000 1998-11-30  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2002         * db2/progs/db_load/db_load.c (main): Avoid -Wparentheses warning.
2004 1998-09-12  Mark Kettenis  <kettenis@phys.uva.nl>
2006         * sysdeps/mach/hurd/dl-sysdep.c: Do not define
2007         __hurd_threadvar_max.  Add comment explaining why we define
2008         __hurd_threadvar_stack_offset and __hurd_threadvar_stack_mask here.
2010 1998-07-29  Mark Kettenis  <kettenis@phys.uva.nl>
2012         * sysdeps/mach/hurd/dl-sysdep.c (__hurd_sigthread_stack_base,
2013         __hurd_sigthread_stack_end, __hurd_sigthread_variables): Define to
2014         prevent inclusion of Hurd signal handling code.
2015         (__libc_write): New function.
2016         (_dl_sysdep_output): Removed.  The implementation in
2017         `elf/dl-misc.c' now also works for the Hurd.
2019 1998-09-12  Mark Kettenis  <kettenis@phys.uva.nl>
2021         * hurd/hurdstartup.c: Do not include hurdmalloc.h; _hurd_startup
2022         does not use any of malloc/realloc/free anymore.  Include
2023         set-hooks.h with <> instead of "".
2025 1998-11-29  Roland McGrath  <roland@baalperazim.frob.com>
2027         * sunrpc/svc_unix.c (__msgread): Move ON local var inside block
2028         within #ifdef SO_PASSCRED.  Avoids unused var when no SO_PASSCRED.
2029         * sunrpc/clnt_unix.c (__msgread): Likewise.
2031 1998-11-28  Roland McGrath  <roland@baalperazim.frob.com>
2033         * hurd/setuids.c: Renamed to ...
2034         * hurd/seteuids.c: this.
2035         (setuids): Renamed to seteuids.
2036         * hurd/getuids.c: Renamed to ...
2037         * hurd/geteuids.c: this.
2038         (__getuids): Renamed to geteuids, no aliases.
2039         * hurd/hurd.h (geteuids, seteuids): Declare them.
2040         * hurd/Versions: Replace getuids; __getuids with geteuids; seteuids.
2041         * hurd/Makefile (routines): Updated.
2043 1998-11-29  Ulrich Drepper  <drepper@cygnus.com>
2045         * sysdeps/generic/segfault.c (install_handler): Correct test for
2046         SEGFAULT_HANDLER=all.
2047         Patch by Zack Weinberg.
2049 1998-11-28 23:23 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
2051         * sysdeps/unix/sysv/linux/configure.in: Test for symlinks in
2052         $prefix/include that may be clobbered on installation.
2054 1998-11-27  Philip Blundell  <pb@nexus.co.uk>
2056         Fixes to allow compilation with static NSS:
2057         * nss/Makefile: Make explicit the dependency of getent on
2058         libnss_files.a.
2059         [build_static_nss]: Define $(otherlibs) appropriately.
2060         * nss/Depend: Add a dependency on `resolv'.
2062 1998-11-27  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2064         Partial support for MIPS ISO C 9x exception handling:
2065         * sysdeps/mips/fclrexcpt.c: New file.
2066         * sysdeps/mips/ftestexcept.c: New file.
2067         * sysdeps/mips/fgetexcptflg.c: New file.
2068         * sysdeps/mips/fesetround.c: New file.
2069         * sysdeps/mips/fegetround.c: New file.
2070         * sysdeps/mips/fegetenv.c: New file.
2071         * sysdeps/mips/fesetenv.c: New file.
2072         * sysdeps/mips/feupdateenv.c: Likewise.
2073         * sysdeps/mips/bits/fenv.h: New file.
2075 1998-11-28  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2077         * sysdeps/unix/sysv/linux/mips/bits/signum.h: Remove inclusion of
2078         <asm/signal.h> and add needed symbols from <asm/signal.h>; bring
2079         in sync with linux specific version.
2081         Patches by Ralf Baechle <ralf@uni-koblenz.de> for mips-linux:
2083         * sysdeps/unix/mips/sysdep.S: Define _errno as weak_alias, rewrite
2084         errno declaration.
2086         * sysdeps/unix/sysv/linux/mips/ustat.c: Use INLINE_SYSCALL instead
2087         of calling __syscall_*.
2088         * sysdeps/unix/sysv/linux/mips/xmknod.c: Likewise.
2090         * sysdeps/unix/sysv/linux/mips/syscalls.list: Update entries.
2092         * sysdeps/unix/sysv/linux/mips/sys/syscall.h: Add missing SYS_*
2093         constants, correct values according to Linux 2.1.130.
2095         * sysdeps/unix/sysv/linux/mips/pwrite.c: New file.
2096         * sysdeps/unix/sysv/linux/mips/pwrite64.c: New file.
2097         * sysdeps/unix/sysv/linux/mips/pread.c: New file.
2098         * sysdeps/unix/sysv/linux/mips/pread64.c: New file.
2100         * sysdeps/mips/Makefile (sysdep_routines): Use += instead of a
2101         :=.
2103         * sysdeps/unix/sysv/linux/mips/bits/ipc.h: Remove ipc_kludge.
2105         * sysdeps/unix/sysv/linux/mips/xstatconv.c: New file.
2107         * sysdeps/unix/sysv/linux/mips/xstat.c: Removed.
2109         * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: New file.
2111         * sysdeps/unix/sysv/linux/mips/kernel_termios.h: Add copyright
2112         message, change name of include protection, remove inclusion of
2113         <bits/termios.h>.
2115         * sysdeps/unix/sysv/linux/mips/kernel_sigaction.h
2116         (old_kernel_sigaction): Define.
2117         (struct kernel_sigaction): Rename sa_handler to k_sa_handler.
2119         * sysdeps/unix/sysv/linux/mips/bits/time.h: Removed, we can use
2120         the general linux version.
2121         * sysdeps/unix/sysv/linux/mips/bits/stat.h (_STAT_VER_KERNEL): Added.
2123         * sysdeps/unix/sysv/linux/mips/bits/socket.h: Update file.
2125 1998-09-03  Philip Blundell  <pb@nexus.co.uk>
2127         * sysdeps/arm/bits/endian.h (__FLOAT_WORD_ORDER): Define to big
2128         endian.
2129         * math/math_private.h: Use __FLOAT_WORD_ORDER rather than
2130         BYTE_ORDER.
2131         * string/endian.h: If __FLOAT_WORD_ORDER wasn't defined by
2132         <bits/endian.h>, make it the same as __BYTE_ORDER.
2134 1998-11-27  Ulrich Drepper  <drepper@cygnus.com>
2136         * math/math.h: Avoid using long double functions in generic macros
2137         if __NO_LONG_DOUBLE_MATH.
2139         * sysdeps/arm/dl-machine.h: Fix handling of weak undefined symbols
2140         during bootstrapping.
2141         * scripts/config.sub: Add Netwinder specific matches.
2142         Patch by Scott Bambrough <scottb@corelcomputer.com>.
2144 1998-11-26  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2146         * Makeconfig ($(common-objpfx)sysd-dirs): Use automatic variables
2147         if possible.
2148         ($(common-objpfx)sysd-sorted): Likewise.
2150 1998-11-27  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2152         * sysdeps/libm-ieee754/e_log.c (__ieee754_log): Add declaration of
2153         local variables t1,t2 only if needed.
2155         * sysdeps/libm-ieee754/e_atan2.c: Added braces to avoid compiler
2156         warnings.
2157         * sysdeps/libm-ieee754/s_truncf.c (__truncf): Likewise.
2158         * sysdeps/libm-ieee754/s_trunc.c (__trunc): Likewise.
2160         * sysdeps/mips/mul_1.S (Loop): Add closing comment to avoid
2161         warning.
2163 1998-11-27  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2165         * math/math.h: Add brace to correct #if expression.
2167 1998-11-26  Philip Blundell  <philb@gnu.org>
2169         Undo change of 1998-11-12:
2170         * sysdeps/unix/sysv/linux/netlink/netlink.h: Deleted.
2171         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Remove
2172         netlink/netlink.h.
2173         * sysdeps/unix/sysv/linux/Dist: Likewise.
2175 1998-11-22  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
2177         * nis/nis_print.c (nis_print_entry): Changes to match Solaris output.
2179 1998-11-26  Ulrich Drepper  <drepper@cygnus.com>
2181         * sysdeps/mips/dl-machine.h (ELF_MACHINE_NO_PLT): New defined macro.
2182         (elf_machine_got_rel): Remove scope variable.  Use scope from the map.
2183         Don't modify _dl_global_scope_end in the end.
2184         (__dl_runtime_resolv): Also use scope from the map.
2185         * sysdeps/mips/mips64/dl-machine.h: Likewise.
2186         * elf/dl-runtime.c: Don't define fixup and profile_fixup if
2187         ELF_MACHINE_NO_PLT is defined.
2188         * sysdeps/mips/sys/ucontext.h: New file.
2189         Patches by kaz Kojima <kkojima@rr.iij4u.or.jp>.
2191 1998-11-26  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2193         * sysdeps/generic/pselect.c (__pselect): Change interface,
2194         set/restore sigmask.
2196         * misc/sys/select.h: Change declaration according to Stevens' Unix
2197         Network Programming.
2198         * include/sys/select.h (__pselect): Likewise.
2199         Reported by <bwelling@anomaly.munge.com> [PR libc/872].
2201         * include/fpu_control.h: New file, contains __setfpucw
2202         declaration.
2204         * sysdeps/generic/fpu_control.h: Remove __setfpucw declaration,
2205         it's an internal symbol.
2206         * sysdeps/alpha/fpu/fpu_control.h: Likewise.
2207         * sysdeps/arm/fpu/fpu_control.h: Likewise.
2208         * sysdeps/i386/fpu_control.h: Likewise.
2209         * sysdeps/m68k/fpu_control.h: Likewise.
2210         * sysdeps/powerpc/fpu_control.h: Likewise.
2211         * sysdeps/sparc/sparc32/fpu/fpu_control.h: Likewise.
2212         * sysdeps/sparc/sparc64/fpu/fpu_control.h: Likewise.
2214 1998-11-25  Ulrich Drepper  <drepper@cygnus.com>
2216         * version.h (VERSION): Bump to 2.0.104.
2218 1998-11-25  Mark Kettenis  <kettenis@phys.uva.nl>
2220         * libio/bits/stdio.h (fread_unlocked): Add missing parentheses
2221         around parameter n.
2223 1998-11-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2225         * time/tzfile.c (__tzfile_read): Fix comment.
2227 1998-11-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2229         * Makerules (build-shlib): Pass -O1 down to linker to get
2230         optimized shared libraries.
2232 1998-11-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2234         * Makeconfig ($(common-objpfx)sysd-dirs): Cope with no Subdirs
2235         file.  Strip "-" from inhibited subdir name.  Combine into a
2236         single awk program.
2237         ($(common-objpfx)sysd-sorted): Fix sed command.
2239 1998-11-25  Roland McGrath  <roland@baalperazim.frob.com>
2241         * sysdeps/mach/hurd/i386/init-first.c (init): Restored as inline fn.
2242         Use constant _HURD_THREADVARS_MAX for temporary array size.
2244         * Makeconfig ($(common-objpfx)sysd-sorted): Use @ instead of / as sed
2245         s separator, since $(..) might contain a /.
2247 1998-11-23  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2249         * configure.in (mips): Fix typo (Replace ,, by ;;).
2251         * libio/Versions: Clean up entries.
2253 1998-11-23  Ulrich Drepper  <drepper@cygnus.com>
2255         * sysdeps/i386/fpu/bits/mathinline.h: Add optimizations for lrint
2256         and llrint.
2258 1998-11-21  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2260         * sysdeps/unix/sysv/linux/netinet/ip_fw.h: Removed.  There are too
2261         many differences between the Linux 2.0 and 2.1 versions of this
2262         file and it's too difficult to convert all calls.  The file should
2263         only be needed by the ipfw program which has to take care of the
2264         correct kernel version and include files.
2266         * sysdeps/unix/sysv/linux/Dist: Remove netinet/ip_fw.h.
2267         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Likewise.
2269 1998-11-23  Ulrich Drepper  <drepper@cygnus.com>
2271         * Makeconfig: Don't read sysd-sorted unless sysd-dirs is read.
2272         Patch by Zack Weinberg.
2274         * math/bits/mathcalls.h: Adjust comments.  Remove gamma_r prototype.
2276         * sysdeps/i386/fpu/bits/mathinline.h: Make log2 only available if
2277         __USE_ISOC9X is defined.  Provide rint optimization.
2279 1998-11-21  H.J. Lu  <hjl@gnu.org>
2281         * libio/Versions (_IO_popen, _IO_proc_open, _IO_proc_close,
2282         popen, pclose): Add to GLIBC_2.1.
2284         * libio/Makefile (routines): Add oldiopopen and oldpclose.
2285         (shared-only-routines): Likewise.
2287         * libio/pclose.c (pclose): Make it default for GLIBC_2.1.
2288         * libio/iopopen.c (_IO_proc_open, _IO_popen, popen,
2289         _IO_proc_close): Likewise.
2291         * libio/iolibio.h (_IO_new_popen, _IO_old_popen, __new_pclose,
2292         __old_pclose): New prototypes.
2294         * libio/libioP.h (_IO_new_file_jumps): Removed.
2295         (_IO_old_proc_jumps): Added.
2296         (_IO_new_proc_open, _IO_old_proc_open): New prototypes.
2298         * libio/oldiopopen.c: New file.
2300         * libio/oldpclose.c: New file.
2302 1998-11-22  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
2304         * nss/Makefile: Build and install getent.
2305         * nss/getent.c: New, get entries from administrative database.
2307 1998-11-22  Roland McGrath  <roland@baalperazim.frob.com>
2309         * sysdeps/mach/hurd/i386/init-first.c (init): Provide temporary storage
2310         for the per-thread variables of the main user thread to make it
2311         possible to use malloc as soon as _hurd_preinit_hook has been run.
2312         For cthreads, copy values to new stack from there.
2313         For non-cthreads, malloc threadvar array here and copy from temp space.
2314         (init1): No longer initialize threadvars here.
2315         (doinit1): Made static void at top level.
2316         (init): Folded into [PIC] _init or [!PIC] doinit1, since GCC cannot
2317         inline a function that uses dynamic auto arrays.
2319 1998-11-20  Ulrich Drepper  <drepper@cygnus.com>
2321         * version.h (VERSION): Bump to 2.0.103.
2323         * aclocal.m4 (LIBC_PROG_BINUTILS): Also add AR and RANLIB using the
2324         same method.
2325         * configure.in: Don't define AR and RANLIB here.
2327         * inet/gethstbyad_r.c: Define NEED__RES_HCONV and POSTPROCESS for
2328         host name res_hconf code.
2329         * inet/gethstbynm_r.c: Likewise.
2330         * nss/getXXbyYY_r.c: Include resolv/res_hconf.h if NEED__RES_HCONF
2331         is defined.  Call res_hconf_init if necessary.  If POSTPROCESS is
2332         defined execute the code.
2333         * resolv/Makefile (routines): Add res_hconf.
2334         (headers): Add res_hconf.h.
2335         * resolv/res_hconf.c: Pretty print.
2336         * resolv/res_hconf.h: Likewise.
2338 1998-11-20  Ulrich Drepper  <drepper@cygnus.com>
2340         * sysdeps/generic/bits/byteswap.h: Fix typos in non-GCC
2341         definitions.  Reported by Scott Bambrough <scottb@corelcomputer.com>.
2343 1998-11-20 1998  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2345         * math/libm-test.c: Raise some epsilons a bit.
2347 1998-11-20  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2349         * Makeconfig ($(common-objpfx)sysd-sorted): Fix portability problems.
2351 1998-11-20  Ulrich Drepper  <drepper@cygnus.com>
2353         * Makefile (distribute): Add scripts/gen-sorted.awk.
2355 1998-11-19  Ulrich Drepper  <drepper@cygnus.com>
2357         * posix/regex.c (regex_compile): Handle extra long class names
2358         correctly.
2360 1998-11-19  Geoff Keating  <geoffk@ozemail.com.au>
2362         * elf/rtld.c (_dl_start): Handle weak undefined symbols in ld.so
2363         correctly.
2365 1998-11-19  Ulrich Drepper  <drepper@cygnus.com>
2367         * misc/error.c: Undo last change.
2369         * ctype/Versions: Add _tolower and _toupper.
2371 1998-11-19  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
2373         * sunrpc/svc_unix.c (readunix): Check for POLLERR, POLLHUP and
2374         POLLNVAL.
2376 1998-11-19  Ulrich Drepper  <drepper@cygnus.com>
2378         * Makeconfig: Add comment to all-subdirs definition.
2379         Add rule to generate sysd-sorted.  Include this file and and set
2380         subdirs value to $(sorted-subdirs).
2381         * scripts/gen-sorted.awk: New file.
2382         * Make-dist (+tsrcs): Add Depend.
2383         * nscd/Depend: New file.
2384         * nss/Depend: New file.
2385         * rt/Depend: New file.
2387 1998-11-18  Ulrich Drepper  <drepper@cygnus.com>
2389         * sysdeps/unix/bsd/poll.c (__poll): Add code to extend sets if any
2390         passed file descriptor exceeds the size determined by
2391         getdtablesize.
2393         * sysdeps/unix/sysv/linux/cmsg_nxthdr.c (__cmsg_nxthdr): Update
2394         from inline version in bits/socket.h.
2396         * sysdeps/unix/sysv/linux/bits/socket.h: Define __cmsg_nxthdr as
2397         inline function only is __USE_EXTERN_INLINES is defined.
2399         * time/strftime.c (my_strftime): Make code a bit clearer.
2400         Patch by Paul Eggert <eggert@twinsun.com>.
2402         * io/Makefile (CFLAGS-ftw.c): Removed.
2404         * manual/errno.texi: Change the short text for ENODEV to
2405         "No such device".
2407 1998-11-18  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2409         * io/Makefile (tests): Make sure that the test program has an
2410         explicit directory part.
2412 1998-11-18  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2414         * configure.in: Fix last change.
2416 1998-11-18  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
2418         * sunrpc/Makefile (routines): Add create_xid.
2420         * sunrpc/clnt_tcp.c: Use non-guessable xid.
2421         * sunrpc/clnt_udp.c: Likewise.
2422         * sunrpc/clnt_unix.c: Likewise.
2423         * sunrpc/pmap_rmt.c: Likewise.
2424         * sunrpc/create_xid.c: New, create non-guessable xid.
2426         * sunrpc/svc_tcp.c: Remove patch from 1998-06-15, use poll instead
2427         of select.
2428         * sunrpc/svc_unix.c: Use poll instead of select.
2430 1998-11-17  Ulrich Drepper  <drepper@cygnus.com>
2432         * sysdeps/unix/sysv/linux/sleep.c (__sleep): Make Unix98 compliant
2433         by removing SIG_IGN handler for SIGCHLD if necessary.
2434         Patch by H.J. Lu <hjl@lucon.org>.
2436         * stdio-common/printf_fphex.c (__printf_fphex): Correct printing
2437         of denormalized numbers.
2439 1998-10-06  Geoff Keating  <geoffk@ozemail.com.au>
2441         * sysdeps/powerpc/dl-machine.h (elf_machine_load_address): Suppress
2442         another parentheses warning, make nano-optimisation.
2444         * sysdeps/powerpc/dl-machine.h (_dl_runtime_resolve): Preserve
2445         saved LR on stack so _mcount works.
2446         (_dl_prof_resolve): Likewise.
2447         * sysdeps/powerpc/register-dump.h: Print FPRs.  Adjust for correct
2448         signal handler calling convention.
2449         * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h: Adjust for
2450         correct signal handler calling convention---more like x86 linux and
2451         mklinux, less like linux-ppc versions between 2.1 and 2.1.126.
2453 1998-11-17  Ulrich Drepper  <drepper@cygnus.com>
2455         * configure.in: Correct allowed makeinfo version.
2457 1998-11-17  Philip Blundell  <pb@nexus.co.uk>
2459         * sysdeps/generic/bits/mathdef.h: Fix typo.
2461 1998-11-17  Geoff Keating  <geoffk@ozemail.com.au>
2463         * sysdeps/unix/sysv/linux/powerpc/pwrite.c: Prototype the syscall
2464         under the right name (squish warning).
2465         * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise.
2467 1998-11-17  Geoff Keating  <geoffk@ozemail.com.au>
2469         * stdio-common/_itoa.c (_itoa): Add redundant parentheses to
2470         prevent warnings.
2472 1998-11-16  Ulrich Drepper  <drepper@cygnus.com>
2474         * intl/locale.alias: Change `japanese' alias to match X11R6's.
2475         Add `japanese.euc' alias.
2477         * manual/Makefile (%.info): Set LANGUAGE and LC_ALL explicitly to C
2478         before running makeinfo.
2480         * math/Makefile (libm-routines): $(strip) entire value.
2482         * nss/nss_db/db-XXX.c (internal_setent): Rewrite to avoid warning.
2484 1998-10-24  H.J. Lu  <hjl@gnu.org>
2486         * libio/libio.h (_IO_cookie_io_functions_t): Protect with __USE_GNU.
2487         (_IO_cookie_file): Likewise.
2489 1998-11-16  Philip Blundell  <philb@gnu.org>
2491         * inet/netinet/icmp6.h: Correct naming of constants.
2493 1998-11-16  Ulrich Drepper  <drepper@cygnus.com>
2495         * sysdeps/unix/opendir.c: Use o_directory_works differently.  Treat
2496         zero value as uninitialized so that variable can go into .bss.
2498         * dirent/opendir-tst1.c: Print error strings to stdout.
2500         * sysdeps/unix/sysv/linux/mmap64.c: New file.  Empty.
2501         * sysdeps/unix/sysv/linux/syscalls.list: Add mmap with mmap64 alias.
2502         * sysdeps/unix/sysv/linux/arm/mmap.S: Add mmap64 alias.
2503         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
2504         * sysdeps/unix/sysv/linux/m68k/mmap.S: Likewise.
2506 1998-11-16  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2508         * time/tzfile.c (__tzfile_read): Check that types[i].isdst is in
2509         range.
2511 1998-11-16  Ulrich Drepper  <drepper@cygnus.com>
2513         * libio/bits/stdio.h (fread_unlocked): Do handle zero size and number.
2514         (fwrite_unlocked): Likewise.
2516 1998-11-16  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2518         * libio/bits/stdio.h (fread_unlocked): Don't evaluate non-constant
2519         twice.  Don't bother handling zero size.
2520         (fwrite_unlocked): Likewise.
2522 1998-11-15  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2524         * configure.in: Fix regex for makeinfo version string.
2526 1998-11-15  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2528         * sunrpc/rpc_sample.c (write_sample_server): Avoid -Wparentheses
2529         warning.
2530         * sunrpc/rpc_svcout.c (write_program): Likewise.
2532 1998-11-15  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2534         * time/Makefile (CFLAGS-test_time.c): Add -Wno-format.
2536 1998-11-16  Ulrich Drepper  <drepper@cygnus.com
2538         * misc/sys/mman.h: Pretty print prototypes.
2540 1998-11-15  Ulrich Drepper  <drepper@cygnus.com
2542         * misc/error.c (error): Don't use result of strerror_r call directly
2543         since at least DEC Unix has a wrong return type.
2544         Patch by Johan Danielsson <joda@pdc.kth.se>.
2546 1998-11-16  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2548         * sysdeps/unix/sysv/linux/m68k/sysdep.h (INLINE_SYSCALL): Undo
2549         last change.
2551 1998-11-13  Ulrich Drepper  <drepper@cygnus.com>
2553         * stdio-common/vfscanf.c: Don't return -1 in case of an invalid
2554         format, just stop.
2556         * version.h (VERSION): Bump to 2.0.102.
2558         * stdio-common/tstdiomisc.c (t2): Update test case for last scanf
2559         change.
2560         * stdio-common/scanf7.c (main): Likewise.
2562 1998-11-13  Ulrich Drepper  <drepper@cygnus.com>
2564         * stdio-common/vfscanf.c: Return EOF for invalid format
2565         characters.
2567         * version.h (VERSION): Bump to 2.0.101.
2569         * Makerules (Versions.all): Generate this file from all Versions.def
2570         files.
2571         (sysd-versions): Use Versions.all instead of Versions.def.
2573 1998-11-13  Philip Blundell  <philb@gnu.org>
2575         * sysdeps/arm/fpu/bits/setjmp.h (__JMP_BUF_SP): Correct value.
2576         Reported by Scott Bambrough.
2578 1998-11-11  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2580         * locale/programs/config.h: Define HAVE_STRING_H for xstrdup.c.
2582 1998-11-13  Ulrich Drepper  <drepper@cygnus.com>
2584         * libio/bits/stdio.h: Correct and improve fread_unlocked and
2585         fwrite_unlocked optimizations.
2587         * time/tzfile.c (__tzfile_read): Set __tzname based on last names
2588         in time not to last entries in the file.
2589         (__tzfile_compute): Likewise.  Fix for PR libc/863.
2591         * timezone/Makefile: Generate GB timezone data for test.
2592         * timezone/tst-timezone.c: More tests for DST switching time (disabled
2593         for now).
2595 1998-11-13  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2597         * sysdeps/unix/sysv/linux/m68k/sysdep.h (INLINE_SYSCALL): Remove
2598         d0 from clobber list.
2600 1998-11-12  Ulrich Drepper  <drepper@cygnus.com>
2602         * inet/netinet/in.h: Add a few more IPPROTO_* macros.
2604         * libio/Makefile (headers): Add bits/stdio.h.
2605         * libio/iofread_u.c: Undefine fread_unlocked before definition.
2606         * libio/iofwrite_u.c: Undefine fwrite_unlocked before definition.
2607         * libio/stdio.h: Move optimizations into ...
2608         * libio/bits/stdio.h: ...here.  New file.
2610         * libio/iofread.c: Pretty print.
2612 1998-11-12  Mark Kettenis  <kettenis@phys.uva.nl>
2614         * sysdeps/gnu/bits/utmpx.h: Protect members of struct
2615         __exit_status with `__'.  Rename pad member of struct utmpx to
2616         __unused.
2617         (RUN_LVL): Define unconditionally.
2618         * sysdeps/gnu/bits/utmp.h: Rename pad member of struct utmp to
2619         __unused.
2621 1998-11-12  Philip Blundell  <philb@gnu.org>
2623         * sysdeps/unix/sysv/linux/netlink/netlink.h: New file, support for
2624         Linux AF_NETLINK sockets (needed since the kernel version is
2625         unusable).
2626         * sysdeps/unix/sysv/linux/Makefile: Install it.
2627         * sysdeps/unix/sysv/linux/Dist: Distribute it.
2629 1998-11-12  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2631         * timezone/tst-timezone.c (tests): Add entry for America/Chicago
2632         to test for bug in PR libc/863.
2634 1998-11-12  Ulrich Drepper  <drepper@cygnus.com>
2636         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Cleanup comment.
2638         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Rename macro
2639         parameter lazy to do_lazy to avoid clashing with struct member name.
2640         Reported by Ralf Baechle <ralf@uni-koblenz.de>.
2642 1998-11-10  H.J. Lu  <hjl@gnu.org>
2644         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefine NR_OPEN
2645         if it is defined in <linux/limits.h>.
2647 1998-11-09 13:07 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
2649         * include/protocols/routed.h: Include the real header with
2650         a full path from the top of the source tree.
2651         * include/protocols/rwhod.h: Likewise.
2652         * include/protocols/talkd.h: Likewise.
2653         * include/protocols/timed.h: Likewise.
2655         * timezone/Makefile: Don't include z.ZONE files if no_deps
2656         is set, not if avoid-generated is set.
2658 1998-11-12  Ulrich Drepper  <drepper@cygnus.com>
2660         * signal/signal.h: Undo last change.  Get definition of timespec
2661         if __USE_POSIX199309.
2663         * string/bits/string2.h (__strpbrk_c2): Add intermediate cast to
2664         size_t to prevent gcc warning when using -Wqual-cast.
2665         (__strpbrk_c3): Likewise.
2666         Suggested by Alan Curry <pacman@cqc.com>.
2668 1998-11-11  Roland McGrath  <roland@baalperazim.frob.com>
2670         * hurd/hurdsig.c (_hurdsig_init): Add assertion that no pending,
2671         unblocked signals are set in the startup masks.
2673         * hurd/hurdsig.c (_hurdsig_init): Take new args, INTARRAY and
2674         INTARRAYSIZE.  Initialize main thread's sigstate from INIT_SIG* ints.
2676         * hurd/hurd/signal.h: Update _hurdsig_init decl.
2677         * hurd/hurdinit.c (_hurd_proc_init): Take new args, INTARRAY and
2678         INTARRAYSIZE, pass them down to _hurdsig_init.
2679         * hurd/hurd.h: Update _hurd_proc_init decl.
2681 1998-11-10  Ulrich Drepper  <drepper@cygnus.com>
2683         * math/cabs.c: Replace complex by _Complex.
2684         * math/cabsf.c: Likewise.
2685         * math/cabsl.c: Likewise.
2686         * math/cimag.c: Likewise.
2687         * math/cimagf.c: Likewise.
2688         * math/cimagl.c: Likewise.
2689         * math/conj.c: Likewise.
2690         * math/conjf.c: Likewise.
2691         * math/conjl.c: Likewise.
2692         * math/creal.c: Likewise.
2693         * math/crealf.c: Likewise.
2694         * math/creall.c: Likewise.
2696         * sysdeps/alpha/fpu/bits/mathdef.h: Define ISO C 9X stuff only if
2697         included from math.h and __USE_ISOC9X is defined.
2698         * sysdeps/generic/bits/mathdef.h: Likewise.
2699         * sysdeps/generic/i386/fpu/mathdef.h: Likewise.
2700         * sysdeps/generic/m68k/fpu/mathdef.h: Likewise.
2701         * sysdeps/generic/powerpc/bits/mathdef.h: Likewise.
2702         * sysdeps/generic/sparc/fpu/bits/mathdef.h: Likewise.
2704 1998-11-10  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2706         * sysdeps/i386/fpu/bits/mathdef.h: Allow direct inclusion by
2707         <complex.h>.
2708         * sysdeps/alpha/fpu/bits/mathdef.h: Likewise.
2709         * sysdeps/generic/bits/mathdef.h: Likewise.
2710         * sysdeps/m68k/fpu/bits/mathdef.h: Likewise.
2711         * sysdeps/powerpc/bits/mathdef.h: Likewise.
2712         * sysdeps/sparc/fpu/bits/mathdef.h: Likewise.
2714 1998-11-09  Ulrich Drepper  <drepper@cygnus.com>
2716         * extra-lib.mk: Fix typo in last change.
2718         * math/complex.h: Include bits/mathdef.h to get __NO_LONG_DOUBLE_MATH
2719         is needed.
2720         Don't define long double functions if __NO_LONG_DOUBLE_MATH is defined.
2721         Don't define `complex' but instead `_Complex'.  The later is the
2722         reserved keyword.
2723         * math/bits/cmathcalls.c: Define _Mdouble_complex_ using _Complex,
2724         not complex.
2726 1998-11-07  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2728         * manual/libc.texinfo: Remove colon from category name.
2729         * manual/Makefile (dir-add.info): Likewise.
2731 1998-11-07  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2733         * configure.in: Avoid autoconf bug.
2735 1998-10-28  H.J. Lu  <hjl@gnu.org>
2737         * posix/getopt.h: Add "__" to arguments in prototypes.
2739 1998-11-05  H.J. Lu  <hjl@gnu.org>
2741         * libio/iofgets.c (_IO_fgets): Don't report error
2742         if something was read in and errno is set to
2743         EAGAIN.
2744         * libio/iofgets_u.c (fgets_unlocked): Likewise.
2746 1998-11-05  Philip Blundell  <philb@gnu.org>
2748         * sysdeps/unix/sysv/linux/net/if_packet.h: Don't include kernel
2749         header; it defines too much.  Provide a local definition of struct
2750         sockaddr_pkt and a comment advising against its use.
2752 1998-11-06  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2754         * extra-lib.mk: Avoid empty include list.
2756 1998-11-04  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2758         * extra-lib.mk: Add support for $(lib)-shared-only-routines.
2760         * elf/Makefile (libdl-routines): Add dlopenold only if doing
2761         versioning.
2762         (libdl-shared-only-routines): New variable.
2764 1998-11-06  Paul Eggert  <eggert@twinsun.com>
2766         Don't invoke localtime_r or gmtime_r unless it's the GNU C
2767         library's localtime_r and gmtime_r; there are too many buggy
2768         implementations of localtime_r and gmtime_r out there, and
2769         it's not worth keeping track of all the different bugs.
2771         * time/mktime.c (__EXTENSIONS__): Remove.
2772         (<unistd.h>): No need to include.
2773         * time/strftime.c: Likewise.
2775         * time/mktime.c (_POSIX_THREAD_SAFE_FUNCTIONS, HAVE_LOCALTIME_R):
2776         Remove.
2777         (my_mktime_localtime_r): Renamed from localtime_r; all uses changed.
2778         Base it on localtime unless _LIBC.
2780         * time/strftime.c (my_strftime_gmtime_r): Renamed from gmtime_r;
2781         all uses changed.
2782         (my_strftime_localtime_r): Renamed from localtime_r; all uses changed.
2783         Base them on localtime/gmtime if not _LIBC.
2785 1998-11-07  Ulrich Drepper  <drepper@cygnus.com>
2787         * sysdeps/generic/isastream.c: Always return 0 unless it is an invalid
2788         file descriptor.  This makes this function actually usable.
2789         Proposed by Mark Kettenis <kettenis@phys.uva.nl>.
2791 1998-11-05  Ulrich Drepper  <drepper@cygnus.com>
2793         * math/math.h: Unconditionally include bits/mathdef.h.  Declare
2794         long double functions only if __NO_LONG_DOUBLE_MATH is not
2795         defined.
2796         * sysdeps/generic/bits/mathdef.h: Define only if __USE_ISOC9X.
2797         Define __NO_LONG_DOUBLE_MATH.
2798         * sysdeps/m68k/fpu/bits/mathdef.h: Define only if __USE_ISOC9X.
2799         * sysdeps/i386/fpu/bits/mathdef.h: Likewise.
2801         * elf/rtld.c: Add a few __builtin_expects where they will improve
2802         a lot.
2804 1998-11-05  Ulrich Drepper  <drepper@cygnus.com>
2806         * version.h (VERSION): Bump to 2.0.100.
2808         * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Fix fldl -> fld.
2810         * sysdeps/libm-i387/s_fma.S: Optimize a bit.
2811         * sysdeps/libm-i387/s_fmaf.S: Likewise.
2813 1998-11-04  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2815         * libio/genops.c (_IO_least_marker): Add additional parameter
2816         end_p replacing fp->_IO_read_end.
2817         (save_for_backup): Likewise.  All callers changed.  Use _IO_size_t
2818         and _IO_ssize_t instead of int.
2819         (_IO_switch_to_main_get_area): Remove use of _IO_save_ptr.
2820         (_IO_switch_to_backup_area): Likewise.  Fix comments.
2821         (_IO_seekmark): Undo last change.
2822         (_IO_default_pbackfail): Correct use of backup area.
2823         * libio/libio.h (_IO_FILE_complete): Remove _IO_save_ptr.
2825 1998-11-04 19:47 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
2827         * configure.in: Search for install-info and substitute it.
2828         Determine whether install-info is the buggy Debian version
2829         that doesn't understand INFO-DIR-SECTION.
2830         * config.make.in: Add INSTALL_INFO and OLD_DEBIAN_INSTALL_INFO
2831         to be substituted.
2832         * manual/Makefile: If OLD_DEBIAN_INSTALL_INFO, give
2833         install-info the --section argument it needs to work properly.
2834         (dir-add.texinfo): Delete target.
2835         (dir-add.info): Generate this directly.  Sort entries.  Put a
2836         colon at the end of the INFO-DIR-SECTION line.
2837         * manual/libc.texinfo: Put a colon at the end of the
2838         @dircategory line.
2840 1998-11-05  Paul Eggert  <eggert@twinsun.com>
2842         * time/mktime.c (__mktime_internal): Adopt the traditional (and
2843         problematic) notion of what to do when tm_isdst doesn't match.
2845 1998-11-04  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2847         * posix/PTESTS: Fix spelling.
2849 1998-11-04  Ulrich Drepper  <drepper@cygnus.com>
2851         * misc/efgcvt_r.c (fcvt_r): Remove code which tries to use libm
2852         functions.  Reduce error in computing normalized value by multiplying
2853         factor in loop and compute result in one step.
2854         Reported by Christian Gafton.
2856         * sysdeps/libm-i387/e_hypot.S: New file.
2857         * sysdeps/libm-i387/e_hypotf.S: New file.
2859 1998-11-04  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2861         * elf/dlopenold.c: Compile only if DO_VERSIONING is also defined.
2863 1998-11-03  H.J. Lu  <hjl@gnu.org>
2865         * libio/fileops.c (new_do_write): New function.
2866         (_IO_new_do_write): Call new_do_write.
2867         (_IO_new_file_xsputn): Likewise.
2869         * libio/oldfileops.c (old_do_write): New function.
2870         (_IO_old_do_write): Call old_do_write.
2871         (_IO_old_file_xsputn): Likewise.
2873 1998-11-04  Ulrich Drepper  <drepper@cygnus.com>
2875         * time/mktime.c (__mktime_internal): Correct last change.  We must
2876         stop searching for the right isdst value before stepping to the
2877         initial value.
2879         * malloc/malloc.c: Make sure calloc really returned zeroed memory.
2880         Patch by Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>.
2882 1998-11-02 16:12 -0500  Zack Weinberg  <zack@rabi.phys.columbia.edu>
2884         * sysdeps/generic/bits/signum.h: Define signals with their
2885         historical numbers when those are in the 1-15 range and
2886         consistent across platforms.
2887         Define compatibility aliases (SIGIOT, SIGCLD) if __USE_MISC.
2888         Define SIG_DFL, SIG_IGN, SIG_ERR as numeric constants cast
2889         appropriately instead of with fake function declarations
2890         (would cause link errors).
2891         If __USE_UNIX98, define SIG_HOLD.
2893 1998-10-29  H.J. Lu  <hjl@gnu.org>
2895         * sysdeps/unix/sysv/linux/bits/sigaction.h (sigaction): Use
2896         union only if __USE_POSIX199309 is defined.
2898         * misc/sys/select.h (pselect): Declared only if __USE_GNU is
2899         defined.
2901 1998-11-03  Ulrich Drepper  <drepper@cygnus.com>
2903         * time/mktime.c (__mktime_internal): Handle broken down times
2904         around the time of the DST switches more correctly.
2906 1998-11-02  Ulrich Drepper  <drepper@cygnus.com>
2908         * elf/Makefile (libdl-routines): Add dlopenold.
2909         * elf/Versions [libdl, GLIBC_2.1]: Add dlopen.
2910         * elf/dl-open.c (_dl_open): Check whether RTLD_LAZY or RTLD_GLOBAL
2911         is set and bounce otherwise.
2912         * elf/dlopen.c: Rename function to __dlopen_check and make version
2913         named dlopen.
2914         * elf/dlopenold.c: New file.
2916 1998-11-02  Ulrich Drepper  <drepper@cygnus.com>
2918         * elf/Versions [libc, GLIBC_2.01]: Add _dl_global_scope_alloc.
2919         * elf/dl-open.c (_dl_global_scope_alloc): Move definition to
2920         * elf/dl-deps.c: ...here.
2921         * elf/dl-open.c (dl_open_worker): Call _dl_map_object_deps with
2922         new parameter and expect result.  Remove code handling RTLD_GLOBAL.
2923         Add return value of _dl_map_object_deps to
2924         _dl_main_searchlist->r_nlist.
2925         * elf/dl-deps.c (_dl_map_object_deps): Change to return value.
2926         If we parameter GLOBAL is nonzero add object and dependencies to
2927         the global scope.
2928         * elf/ldsodefs.h: Adapt prototype for _dl_map_object_deps.
2929         * elf/rtld.c (dl_main): Call _dl_map_object_deps with new parameter.
2930         Mark all objects as in global scope.
2931         * elf/dl-object.c (_dl_new_object): Initialize l_global to zero.
2933         * sysdeps/unix/sysv/linux/bits/sockunion.h: Add Econet support.
2935         * sysdeps/unix/sysv/linux/i386/sysdep.h: Add .L prefix to symbols
2936         used in macro magic.
2938 1998-11-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2940         * sysdeps/unix/sysv/linux/netatalk/at.h: Include <linux/atalk.h>
2941         before <sys/socket.h> to make sockaddr_at available to
2942         <sys/socket.h>.
2944         * posix/glob.h: Remove __P from parameter lists of declarations.
2946 1998-11-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2948         * time/tzset.c (tz_compute): Remove unused parameter timer.
2949         Change caller.
2951 1998-11-02  Mark Kettenis  <kettenis@phys.uva.nl>
2953         * sysdeps/generic/bits/types.h (__ipc_pid_t): New typedef.
2955 1998-11-02  Ulrich Drepper  <drepper@cygnus.com>
2957         * sysdeps/unix/sysv/linux/i386/setgroups.c (setgroups): Remove
2958         unnecessary test and add cast.
2960 1998-11-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
2962         * posix/getconf.c: Add initializer SYSCONF for CHARCLASS_NAME_MAX.
2964         * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Remove unused
2965         parameter fd.
2966         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
2968 1998-11-02  Mark Kettenis  <kettenis@phys.uva.nl>
2970         * sysdeps/generic/bits/types.h (__FDS_BITS): New macro to access
2971         fds_bits member.
2972         (__FDMASK): Use __fd_mask instead of unsigned long int in cast.
2974 1998-10-31  Richard Henderson  <rth@cygnus.com>
2976         * math/Makefile (gmp-objs): Add udiv_qrnnd.
2978         * sysdeps/unix/alpha/sysdep.h (INLINE_SYSCALL*): New.
2979         (inline_syscall*): New.
2980         * sysdeps/unix/sysv/linux/alpha/sysdep.h (INLINE_SYSCALL): New.
2981         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Kill __syscall* bits.
2983 1998-10-31  Ulrich Drepper  <drepper@cygnus.com>
2985         * aclocal.m4 (LIBC_PROG_FOO_GNU): Name output file using -o to
2986         avoid ld test generating an unwanted file.
2988         * posix/PTESTS: Remove comment about incorrect test (it is correct).
2990 1998-10-30  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
2992         * sunrpc/Versions: Add xdr_uint32_t and xdr_int32_t.
2993         * sunrpc/pmap_rmt.c: Initialize clnt_stat variable.
2994         * sunrpc/rpc/auth_des.h: Use uint32_t for time values.
2995         * sunrpc/rpc/xdr.h: Add INT32 support.
2996         * sunrpc/xdr.c: Implement xdr_int32_t and xdr_uint32_t .
2998         * nis/nis_call.c: Changes for new 64bit clean NIS+ interface.
2999         * nis/nis_callback.c: Likewise.
3000         * nis/nis_creategroup.c: Likewise.
3001         * nis/nis_defaults.c: Likewise.
3002         * nis/nis_intern.h: Likewise.
3003         * nis/nis_lookup.c: Likewise.
3004         * nis/nis_ping.c: Likewise.
3005         * nis/nis_print.c: Likewise.
3006         * nis/nis_table.c: Likewise.
3007         * nis/nis_util.c: Likewise.
3008         * nis/nis_xdr.c: Likewise.
3009         * nis/rpcsvc/nis.h: Likewise.
3010         * nis/rpcsvc/nis.x: Likewise.
3011         * nis/rpcsvc/nis_callback.h: Likewise.
3012         * nis/rpcsvc/nis_object.x: Likewise.
3013         * nis/rpcsvc/nislib.h: Likewise.
3015         * nis/rpcsvc/yp.h: Remove casts to (u_long).
3016         * nis/rpcsvc/yp_prot.h: Likewise.
3017         * nis/rpcsvc/ypupd.h: Likewise.
3018         * nis/ypclnt.c: Change %ld to %d in sprintf.
3020 1998-10-29  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3022         * manual/locale.texi (Formatting Numbers): Fix strfmon examples.
3024 1998-10-28  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3026         * sysdeps/generic/bits/select.h (__FD_ZERO): Change '\0' to plain
3027         0, __fd_mask is usually not a char.
3029 1998-10-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3031         * sysdeps/unix/sysv/linux/sigpending.c (sigpending): Allow
3032         compilation on systems without rt_* syscalls (e.g. on Linux 2.0).
3033         * sysdeps/unix/sysv/linux/sigprocmask.c (__sigprocmask): Likewise.
3034         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
3035         * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.
3036         * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Likewise
3037         * sysdeps/unix/sysv/linux/sigqueue.c: Likewise.
3038         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
3040         * sysdeps/unix/sysv/linux/i386/sigaction.c (__sigaction): Allow
3041         compiling on systems without rt_sigaction syscall.
3042         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (__sigaction):
3043         Likewise.
3045 1998-10-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3047         * time/strptime.c (HERE_D_FMT): Fix typo.
3048         Reported by Claus Heine <heine@math1.rwth-aachen.de>, PR libc/842.
3050 1998-10-30  Ulrich Drepper  <drepper@cygnus.com>
3052         * catgets/Makefile (tests): Add rules to run gencat on test1.msg.
3053         (generate): Add test1.cat and test1.h.
3054         (distribute): Add test1.msg.
3055         * catgets/test1.msg: New file.
3057         * catgets/gencat.c: Do a better job in initializing dynamic
3058         memory [PR libc/844].
3060 1998-10-30 18:11  Ulrich Drepper  <drepper@cygnus.com>
3062         * iconv/gconv_conf.c (__gconv_read_conf): Don't define as
3063         internal_function since it is called through a pointer.
3064         * iconv/gconv_db.c (free_derivation): Likewise.
3065         * iconv/gconv_int.h: Adjust prototype od __gconv_read_conf.
3067         * posix/wordexp.c: Add internal_function to parse_backtick definition.
3068         * rt/aio_misc.c: Add internal_function to __aio_free_request,
3069         __aio_find_req, __aio_find_req_fd, and __aio_enqueue_request
3070         definitions.
3071         * rt/aio_notify.c: Add internal_function to __aio_notify_only and
3072         __aio_notify definitions.
3073         * wcsmbsload.c: Add internal_function to __wcsmbs_load_conv definition.
3075 1998-10-30  Ulrich Drepper  <drepper@cygnus.com>
3077         * Makerules (build-shlib): Add -O to generate optimized shared
3078         objects.
3080 1998-10-30 11:15  Ulrich Drepper  <drepper@cygnus.com>
3082         * sysdeps/libm-i387/e_fmod.S: Remove invalid operand size suffix.
3083         * sysdeps/libm-i387/e_fmodf.S: Likewise.
3084         * sysdeps/libm-i387/e_fmodl.S: Likewise.
3085         * sysdeps/libm-i387/s_ilogb.S: Likewise.
3086         * sysdeps/libm-i387/s_ilogbf.S: Likewise.
3087         * sysdeps/libm-i387/s_logb.S: Likewise.
3088         * sysdeps/libm-i387/s_logbf.S: Likewise.
3089         * sysdeps/libm-i387/s_remquo.S: Likewise.
3090         * sysdeps/libm-i387/s_remquof.S: Likewise.
3091         * sysdeps/libm-i387/s_remquol.S: Likewise.
3092         * sysdeps/libm-i387/s_significand.S: Likewise.
3093         * sysdeps/libm-i387/s_significandf.S: Likewise.
3095 1998-10-30  Geoff Keating  <geoffk@ozemail.com.au>
3097         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Really correct
3098         _llseek.
3100 1998-10-30  Geoff Keating  <geoffk@ozemail.com.au>
3102         * math/libm-test.c: Loosen deltas for sin(0.9)^2+cos(0.9)^2.
3104 1998-10-29  Ulrich Drepper  <drepper@cygnus.com>
3106         * stdio-common/vfprintf.c (vfprintf): Fix the remaining premature
3107         returns without cleaning up the lock.
3108         (printf_unknown): Add label all_done.
3110         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Keep Linux 2.0
3111         kernels in mind when reading /proc/self/fd/FD.
3112         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
3114         * nscd/nscd.c (doc): It's "Name Service" not "Name Switch".
3116         * malloc/mtrace.c (tr_where): Replace snprintf call by mempcpy and
3117         _fitoa.
3119         * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Try reading
3120         /prof/self/fd/FD first.
3121         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
3123         * stdio-common/_itoa.h (_fitoa_word): New inline function.  Write
3124         formatted number starting at given position and return pointer to
3125         following byte.
3126         (_fitoa): Likewise, for long long.
3128 1998-10-29  Roland McGrath  <roland@baalperazim.frob.com>
3130         * sysdeps/unix/sysv/linux/bits/sem.h,
3131         sysdeps/unix/sysv/linux/bits/ipc.h,
3132         sysdeps/unix/sysv/linux/bits/shm.h,
3133         sysdeps/unix/sysv/linux/bits/msq.h: Moved to ...
3134         * sysdeps/gnu/bits/sem.h, sysdeps/gnu/bits/ipc.h,
3135         sysdeps/gnu/bits/shm.h, sysdeps/gnu/bits/msq.h: ... here,
3136         so the same bits will be used for the Hurd.
3138 1998-10-29  Ulrich Drepper  <drepper@cygnus.com>
3140         * sysdeps/unix/sysv/linux/sigaction.c (__sigaction): Allow
3141         compiling on systems without rt_sigaction syscall.
3143 1998-10-12  Philip Blundell  <pb@nexus.co.uk>
3145         * Makeconfig (sysdep-subdirs): Allow Subdirs files to remove
3146         directories as well as add them.
3148 1998-10-28  Philip Blundell  <pb@nexus.co.uk>
3150         * sysdeps/unix/sysv/linux/neteconet/ec.h: New file.  Support for
3151         AF_ECONET sockets as found in recent Linux 2.1 kernels.
3152         * sysdeps/unix/sysv/linux/Dist: Distribute it.
3153         * sysdeps/unix/sysv/linux/Makefile: Install it.
3155 1998-10-27  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3157         * string/bits/string2.h: __USE_GNU already implies __USE_MISC.
3159 1998-10-27  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3161         * sysdeps/generic/bits/types.h (__FDS_BITS): New macro to access
3162         fds_bits member.
3163         * sysdeps/unix/sysv/linux/alpha/bits/types.h (__FDS_BITS): Likewise.
3164         * sysdeps/unix/sysv/linux/bits/types.h (__FDS_BITS): Likewise.
3165         * sysdeps/unix/sysv/linux/mips/bits/types.h (__FDS_BITS): Likewise.
3166         * sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h (__FDS_BITS):
3167         Likewise.
3168         * sysdeps/unix/sysv/sysv4/solaris2/bits/types.h (__FDS_BITS):
3169         Likewise.
3170         * sysdeps/generic/bits/select.h (__FD_ZERO, __FD_SET, __FD_CLR,
3171         __FD_ISSET): Use it.
3172         * sysdeps/i386/bits/select.h (__FD_ZERO, __FD_SET, __FD_CLR,
3173         __FD_ISSET): Likewise.
3175 1998-10-28  Geoff Keating  <geoffk@ozemail.com.au>
3177         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Tidy up, correct
3178         llseek.
3180         * sysdeps/unix/sysv/linux/powerpc/pread.c: Do not use the i386 version.
3181         Instead call the system call wrapper function using an 64bit argument.
3182         * sysdeps/unix/sysv/linux/powerpc/pread64.c: Likewise.
3183         * sysdeps/unix/sysv/linux/powerpc/pwrite.c: Likewise.
3184         * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise.
3186 1998-10-27  Ulrich Drepper  <drepper@cygnus.com>
3188         * signal/signal.h: Don't include <time.h> for timespec, add
3189         forward declaration.
3191         * sysdeps/i386/bits/select.h [!__USE_XOPEN]: Add special version
3192         of __FD_* macros which use __fds_bits.
3193         * sysdeps/generic/bits/select.h: Likewise.
3194         Reported by Matt McLean <keys@yikes.com>.
3196 1998-10-27  Philip Blundell  <pb@nexus.co.uk>
3198         * elf/elf.h: Update ARM definitions.
3200 1998-10-27  Ulrich Drepper  <drepper@cygnus.com>
3202         * signal/signal.h: Include bits/sigthread.h only for Unix98.
3204 1998-10-26  Ulrich Drepper  <drepper@cygnus.com>
3206         * include/libc-symbols.h: If HAVE_BUILTIN_EXPECT is not defined
3207         define __builtin_expect as a macro substituting to the first
3208         argument.
3209         * config.h.in: Define HAVE_BUILTIN_EXPECT.
3210         * configure.in: Add test for __builtin_expect.
3212         * sysdeps/unix/sysv/linux/bits/types.h: Include
3213         bits/pthreadtypes.h only not for POSIX 199506.
3214         * sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise.
3215         * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
3216         * sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Likewise.
3218 1998-10-26  Mark Kettenis  <kettenis@phys.uva.nl>
3220         * sysdeps/unix/sysv/linux/Versions: Move shutdown ...
3221         * socket/Versions [libc, GLIBC_2.0]: ... to here.
3223 1998-10-25  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3225         * include/stdio.h: Included <stddef.h> for size_t.
3227         * stdio/stdio.h: Move __path_search, __gen_tempname, __libc_fatal
3228         to ...
3229         * include/stdio.h: ...here.
3230         * libio/stdio.h: Removed __path_search, __gen_tempname, __libc_fatal.
3232 1998-10-26 11:09  Ulrich Drepper  <drepper@cygnus.com>
3234         * time/Makefile (tests): Add tst-posixtz.
3235         * time/tst-posixtz.c: New file.
3237 1998-10-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3239         * elf/rtld.c (process_envvars): Accept any non-null value of
3240         LD_BIND_NOW, as mandated by the ABI.
3242 1998-10-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3244         * sysdeps/unix/sysv/linux/pread.c: Rename __syscall_pread64 to
3245         __syscall_pread.
3246         * sysdeps/unix/sysv/linux/pwrite.c: Rename __syscall_pwrite64 to
3247         __syscall_pwrite.
3248         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Likewise.
3249         * sysdeps/unix/sysv/linux/arm/syscalls.list: Likewise.
3250         * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
3251         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Likewise.
3252         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Likewise.  Remove
3253         duplicate entries.
3254         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Remove
3255         s_pread64 and s_pwrite64.
3256         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Likewise.
3258 1998-10-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3260         * sysdeps/unix/sysv/linux/llseek.c: Use INLINE_SYSCALL.
3261         * sysdeps/unix/sysv/linux/arm/syscalls.list: Rename __sys_llseek
3262         to __syscall__llseek.
3263         * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
3264         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Likewise.
3265         * sysdeps/unix/sysv/linux/i386/syscalls.list: Remove entry for
3266         __sys_llseek.
3268 1998-10-26  Cristian Gafton  <gafton@redhat.com>
3270         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add s_setfsgid
3271         and s_setfsuid.
3273 1998-10-26  Ulrich Drepper  <drepper@cygnus.com>
3275         * time/tzset.c (tz_compute): Correct last patch and describe this
3276         in a comment.
3278 1998-10-24  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3280         * sysdeps/unix/sysv/linux/m68k/Makefile [subdir=signal]: Remove
3281         rt_sigsuspend, rt_sigprocmask, rt_sigtimedwait, rt_sigqueueinfo,
3282         rt_sigaction and rt_sigpending.
3283         * sysdeps/unix/sysv/linux/m68k/syscalls.list: Remove all entries
3284         for __syscall_* functions.
3285         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Implement INLINE_SYSCALL.
3287 1998-10-26  Roland McGrath  <roland@baalperazim.frob.com>
3289         * hurd/Versions: Add _hurd_dtable, _hurd_dtablesize,
3290         _hurd_dtable_lock, _hurd_intern_fd.
3292         * sysdeps/mach/hurd/Versions: Add cthread_keycreate,
3293         cthread_getspecific, cthread_setspecific, __libc_getspecific.
3295         * mach/Versions: Fix typo in last change.
3297 1998-10-25  Ulrich Drepper  <drepper@cygnus.com>
3299         * time/tzset.c (tz_compute): If time to switch to DST is later in
3300         the year switch back in the next year.
3301         Reported by jwitford@hutch.com.au.
3303 1998-10-24  Mark Kettenis  <kettenis@phys.uva.nl>
3305         * mach/Versions: Add evc_wait, mach_error, mach_error_string,
3306         mach_error_type, mach_msg_destroy, mig_deallocate_reply_port.
3307         Remove __mach_host_self, __mach_reply_port, __mach_setup_thread,
3308         __mach_port_allocate, __mach_port_allocate_name,
3309         __mach_port_insert_right __mutex_trylock, __mutex_lock,
3310         __mutex_unlock, __swtch, __switch, __task_create, __task_suspend,
3311         __task_set_special_port, __task_terminate, __thread_depress_abort,
3312         __thread_switch, __vm_allocate, __vm_deallocate, __vm_map.  These
3313         functions are not used outside libc.
3315         * sysdeps/mach/hurd/Versions: New file.
3316         [libc, GLIBC_2.0]: Add _cthread_exit_routine and
3317         _cthread_init_routine.  These are set by the Hurd cthreads library.
3318         Add __getcwd, __mmap.  If we don't add these, the weak definitions in
3319         the dynamic linker will not be replaced by the corresponding shared
3320         library routines once they are loaded.
3322 1998-10-21  Mark Kettenis  <kettenis@phys.uva.nl>
3324         * sysdeps/mach/hurd/i386/init-first.c: Only define
3325         __libc_enable_secure if PIC is not defined.
3327 1998-10-25  Roland McGrath  <roland@baalperazim.frob.com>
3329         * argp/Versions: Add _argp_unlock_xxx.  Lock-savvy functions call this
3330         to recurse into argp.
3332 1998-10-25  Ulrich Drepper  <drepper@cygnus.com>
3334         * include/features.h: Define __USE_POSIS199506 is _POSIX_C_SOURCE is
3335         greater or equal than 199506L.
3337         * sysdeps/generic/bits/types.h (__fd_set): Define element as fds_bits
3338         only is __USE_XOPEN.  Otherwise use __fds_bits.
3339         * sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise.
3340         * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
3341         * sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Likewise.
3342         * sysdeps/unix/sysv/linux/bits/types.h: Likewise.
3343         * sysdeps/unix/sysv/sysv4/solaris2/bits/types.h: Likewise.
3345 1998-10-24  H.J. Lu  <hjl@gnu.org>
3347         * locale/programs/charmap.c (parse_charmap): Accept tok_string
3348         for <code_set_name>.
3350 1998-10-25  H.J. Lu  <hjl@gnu.org>
3352         * locale/programs/ld-ctype.c (ctype_finish): Also check
3353         <space>.
3355 1998-10-25  Ulrich Drepper  <drepper@cygnus.com>
3357         * signal/signal.h: Include bits/sigthread.h only if __USE_POSIX199506.
3359         * sysdeps/unix/sysv/linux/bits/types.h: Include pthreadtypes.h only
3360         if __USE_POSIX199506 or __USE_UNIX98.
3362 1998-10-24 22:34 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
3364         * string/bits/string2.h: Inline strdup+friends only if
3365         __USE_MISC || __USE_GNU (prevents namespace pollution).
3367 1998-10-24  H.J. Lu  <hjl@gnu.org>
3369         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (LOCK_SH,
3370         LOCK_EX, LOCK_NB, LOCK_UN): Protect with __USE_BSD.
3371         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (LOCK_SH, LOCK_EX,
3372         LOCK_NB, LOCK_UN): Likewise.
3373         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (LOCK_SH, LOCK_EX,
3374         LOCK_NB, LOCK_UN): Likewise.
3375         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (LOCK_SH, LOCK_EX,
3376         LOCK_NB, LOCK_UN): Likewise.
3377         * sysdeps/unix/sysv/linux/bits/fcntl.h (LOCK_SH, LOCK_EX,
3378         LOCK_NB, LOCK_UN): Likewise.
3380 1998-10-24  H.J. Lu  <hjl@gnu.org>
3382         * libio/ioseekoff.c (_IO_seekoff): Check the valid dir value.
3384         * libio/rewind.c (rewind): Clear the error.
3386 1998-10-24  H.J. Lu  <hjl@gnu.org>
3388         * grp/grp.h (getgrent_r, getgrgid_r, getgrnam_r): Add "__" to
3389         "buffer".
3391 1998-10-24  H.J. Lu  <hjl@gnu.org>
3393         * sysdeps/unix/sysv/linux/alpha/bits/time.h (timeval): Protect
3394         with __need_timeval.
3395         * sysdeps/unix/sysv/linux/mips/bits/time.h (timeval): Likewise.
3396         * sysdeps/unix/sysv/linux/bits/time.h (timeval): Likewise.
3398 1998-10-24  H.J. Lu  <hjl@gnu.org>
3400         * signal/signal.h (timespec, siginfo_t, sigwaitinfo, sigtimedwait,
3401         sigqueue): Protect with __USE_POSIX199309.
3403 1998-10-24  H.J. Lu  <hjl@gnu.org>
3405         * time/time.h (timespec): Protect with __USE_POSIX199309 instead of
3406         __USE_POSIX.
3408 1998-10-24  H.J. Lu  <hjl@gnu.org>
3410         * libio/fileops.c (_IO_new_file_seekoff): Always resync with
3411         the kernel file offset.
3412         * libio/oldfileops.c (_IO_old_file_seekoff): Likewise.
3414 1998-10-24  H.J. Lu  <hjl@gnu.org>
3416         * time/tzfile.c (__tzfile_default): Set num_types to 2.
3418 1998-10-23  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3420         * rt/aio.h: Move __aio_init to...
3421         * include/aio.h: ...here.
3423 1998-10-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3425         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Remove duplicate
3426         definition of O_LARGEFILE.
3428 1998-10-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3430         * sysdeps/unix/sysv/linux/alpha/pathconf.c (__pathconf): Use path
3431         as first argument to statfs.
3433 1998-10-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3435         * sysdeps/generic/setenv.c (setenv): Add braces around ambiguous else.
3437 1998-10-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3439         * malloc/mtrace.c: Include <string.h> for strlen.
3441 1998-10-24  Roland McGrath  <roland@baalperazim.frob.com>
3443         * sysdeps/mach/hurd/bits/environments.h: New file.
3445         * sysdeps/mach/hurd/dl-sysdep.c (__getcwd): New weak function.
3447         * mach/Versions, hurd/Versions: Add numerous symbols.
3448         Remove libmachuser and libhurduser sections, punt
3449         versioning for those libraries for now.
3451         * misc/Versions: Add reboot here; it exists on all platforms.
3452         * sysdeps/unix/sysv/linux/Versions: Remove reboot here.
3454 1998-10-23  Ulrich Drepper  <drepper@cygnus.com>
3456         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_NOFOLLOW): New
3457         macro.
3458         * sysdeps/unix/sysv/linux/bits/fcntl.h: Likewise.
3459         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
3460         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_LARGEFILE,
3461         O_NOFOLLOW, O_DIRECT): New macros.
3462         (O_DIRECTORY): Correct definition according to official 2.1.126.
3463         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_DIRECTORY,
3464         O_NOFOLLOW): New macros.
3466 1998-10-24  Roland McGrath  <roland@baalperazim.frob.com>
3468         * include/ldsodefs.h: Test HAVE_ELF instead of __ELF__.
3470         * sysdeps/mach/hurd/opendir.c (__opendir): Return ENOENT for "".
3471         (__opendir): Add trailing slash to name for open, for ENOTDIR check.
3473 1998-10-23  Ulrich Drepper  <drepper@cygnus.com>
3475         * sysdeps/unix/sysv/linux/i386/Dist: Add setresuid.c, setresgid.c,
3476         setfsuid.c, and setfsgid.c.
3477         * sysdeps/unix/sysv/linux/arm/Dist: Likewise.
3478         * sysdeps/unix/sysv/linux/m68k/Dist: Likewise.
3479         * sysdeps/unix/sysv/linux/sparc/sparc32/Dist: Likewise.
3481         * version.h (VERSION): Bump to 2.0.99.
3483         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove duplicate
3484         ustat definition.
3486         * sysdeps/unix/sysv/linux/i386/Dist: Remove s_pread64.c and
3487         s_pwrite64.c.
3489         * posix/fnmath.h: Don't redefine __P when used in glibc.
3490         * posix/glob.h: Likewise.
3492         * inet/rcmd.c (__ivaliduser2): Fix memory leak.
3493         Patch by Dick Streefland <dick_streefland@tasking.com>.
3495         * stdio-common/tst-ungetc.c: Add more test cases.
3497         * sysdeps/unix/sysv/linux/Dist: Add linux_fsinfo.h.
3498         * sysdeps/unix/sysv/linux/fstatvfs.c: Move filesystem magic number
3499         definitions to ...
3500         * sysdeps/unix/sysv/linux/linux_fsinfo.h: ...here.  New file.
3501         * sysdeps/unix/sysv/linux/fpathconf.c: New file.
3502         * sysdeps/unix/sysv/linux/pathconf.c: New file.
3503         * sysdeps/unix/sysv/linux/alpha/fpathconf.c: Handle _PC_LINK_MAX here.
3504         * sysdeps/unix/sysv/linux/alpha/pathconf.c: Likewise.
3506 1998-10-20  Philip Blundell  <pb@nexus.co.uk>
3508         * sysdeps/unix/sysv/linux/arm/bits/armsigctx.h: Include
3509         <asm/ptrace.h> to define struct pt_regs.
3510         * sysdeps/unix/sysv/linux/arm/profil-counter.h: Don't bother
3511         including <asm/ptrace.h> here.
3513         * sysdeps/unix/sysv/linux/arm/sysdep.S: Remove spurious call to
3514         C_SYMBOL_NAME macro.
3516 1998-10-23  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3518         * sysdeps/generic/sys/ptrace.h (__ptrace_request): Remove comma at
3519         end of enumerator list.
3520         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_request): Likewise.
3521         * posix/wordexp.h: Likewise.
3523         * db/db.h: Use __PMT instead of __P in typedefs.
3524         * db/mpool.h: Likewise.
3525         * sysdeps/generic/bits/siginfo.h: Likewise.
3526         * nis/rpcsvc/ypclnt.h: Likewise.
3528 1998-10-23  Ulrich Drepper  <drepper@cygnus.com>
3530         * libio/genops.c (_IO_seekmark): When switching to backup buffer
3531         make sure all characters from the read buffer are read after
3532         switching back to it.
3534 1998-10-22  Ulrich Drepper  <drepper@cygnus.com>
3536         * configure.in: Add support for Cygnus GNUPro compilers.
3538 1998-10-22  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3540         * stdio/stdio.h: Use __PMT instead of __P in typedefs.
3542         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Use __PMT instead
3543         of __P for sa_restorer.
3544         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h: Likewise.
3545         * sysdeps/unix/sysv/linux/kernel_sigaction.h (struct
3546         kernel_sigaction, old_kernel_sigaction): Likewise.
3548 1998-10-22  Ulrich Drepper  <drepper@cygnus.com>
3550         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add __syscall_pread
3551         and __syscall_pwrite aliases.
3553         * sunrpc/rpc/auth.h (AUTH_DH): New macro.  Alias for AUTH_DES.
3555         * sysdeps/unix/sysv/linux/i386/sysdep.h: Drastically simplify and
3556         improve INLINE_SYSCALL using macro assembler magic.
3558 1998-10-22  H.J. Lu  <hjl@gnu.org>
3560         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Add
3561         sanity check for n.
3562         * sysdeps/unix/sysv/linux/i386/setgroups.c (setgroups): Likewise.
3564         * sysdeps/posix/fpathconf.c (__fpathconf): Set errno to
3565         EINVAL if errno == ENODEV.  Tested by VSX-PCT.
3567         * sysdeps/posix/isatty.c (__isatty): Don't reset errno.  Tested
3568         by VSX-PCT.
3570         * posix/execvp.c (execvp): Check "".  Tested by VSX-PCT.
3572 1998-10-22  Philip Blundell  <pb@nexus.co.uk>
3574         * sysdeps/unix/arm/sysdep.h: Wrap assembler macros in #ifdef
3575         __ASSEMBLER__.
3577 1998-10-21  Ulrich Drepper  <drepper@cygnus.com>
3579         * sysdeps/unix/sysv/linux/i386/sysdep.h: Remove EXTRAVARS_* macros
3580         and adjust formats.
3582 1998-10-21 14:38  Ulrich Drepper  <drepper@cygnus.com>
3584         * sysdeps/unix/sysdep.h (INLINE_SYSCALL): New macro.  Simply call
3585         __syscall_* function.
3586         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Use INLINE_SYSCALL instead
3587         of calling __syscall_* function.
3588         * sysdeps/unix/sysv/linux/fxstat.c: Likewise.
3589         * sysdeps/unix/sysv/linux/fxstat64.c: Likewise.
3590         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
3591         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
3592         * sysdeps/unix/sysv/linux/getpriority.c: Likewise.
3593         * sysdeps/unix/sysv/linux/getresgid.c: Likewise.
3594         * sysdeps/unix/sysv/linux/getresuid.c: Likewise.
3595         * sysdeps/unix/sysv/linux/lxstat.c: Likewise.
3596         * sysdeps/unix/sysv/linux/lxstat64.c: Likewise.
3597         * sysdeps/unix/sysv/linux/poll.c: Likewise.
3598         * sysdeps/unix/sysv/linux/pread.c: Likewise.
3599         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
3600         * sysdeps/unix/sysv/linux/ptrace.c: Likewise.
3601         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
3602         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
3603         * sysdeps/unix/sysv/linux/readv.c: Likewise.
3604         * sysdeps/unix/sysv/linux/reboot.c: Likewise.
3605         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
3606         * sysdeps/unix/sysv/linux/siglist.h: Likewise.
3607         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
3608         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
3609         * sysdeps/unix/sysv/linux/sigqueue.c: Likewise.
3610         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
3611         * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.
3612         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
3613         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
3614         * sysdeps/unix/sysv/linux/sysctl.c: Likewise.
3615         * sysdeps/unix/sysv/linux/ustat.c: Likewise.
3616         * sysdeps/unix/sysv/linux/writev.c: Likewise.
3617         * sysdeps/unix/sysv/linux/xmknod.c: Likewise.
3618         * sysdeps/unix/sysv/linux/xstat.c: Likewise.
3619         * sysdeps/unix/sysv/linux/xstat64.c: Likewise.
3620         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
3621         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
3622         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
3623         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
3624         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
3625         * sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
3626         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
3627         * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
3628         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
3629         * sysdeps/unix/sysv/linux/i386/setuid.c: Likewise.
3631         * sysdeps/unix/sysv/linux/i386/sysdep.h: Define INLINE_SYSCALL using
3632         inline assembler.
3633         * sysdeps/unix/sysv/linux/i386/syscalls.list: Remove various
3634         __syscall_* definitions.
3636         * sysdeps/unix/sysv/linux/syscalls.list: Move various __syscall_*
3637         definitions to...
3638         * sysdeps/unix/sysv/linux/alpha/syscalls.list: ...here...
3639         * sysdeps/unix/sysv/linux/arm/syscalls.list: ...and here...
3640         * sysdeps/unix/sysv/linux/m68k/syscalls.list: ...and here...
3641         * sysdeps/unix/sysv/linux/mips/syscalls.list: ...and here...
3642         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: ...and here...
3643         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: ...and here...
3644         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: ...and here.
3646         * sysdeps/unix/sysv/linux/Makefile [subdir=signal] (sysdep_routines):
3647         Move definition to...
3648         * sysdeps/unix/sysv/linux/alpha/Makefile: ...here...
3649         * sysdeps/unix/sysv/linux/arm/syscalls.list: ...and here...
3650         * sysdeps/unix/sysv/linux/m68k/syscalls.list: ...and here...
3651         * sysdeps/unix/sysv/linux/mips/syscalls.list: ...and here...
3652         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: ...and here...
3653         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: ...and here...
3654         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: ...and here.
3656         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=misc]
3657         (sysdep_routines): Remove s_pread64 and s_pwrite64.
3659         * sysdeps/unix/sysv/linux/i386/pread.c: New file.
3660         * sysdeps/unix/sysv/linux/i386/pread64.c: New file.
3661         * sysdeps/unix/sysv/linux/i386/pwrite.c: New file.
3662         * sysdeps/unix/sysv/linux/i386/pwrite64.c: New file.
3663         * sysdeps/unix/sysv/linux/i386/s_pread64.S: Removed.
3664         * sysdeps/unix/sysv/linux/i386/s_pwrite64.S: Removed.
3666 1998-10-21  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3668         * sysdeps/unix/sysv/linux/siglist.h: Fix some typos in these files
3669         and bring them in synch.
3670         * sysdeps/unix/siglist.c: Likewise.
3671         Reported by Vladimir Michl <michlv@risc.upol.cz> [PR libc/832].
3673 1998-10-20  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3675         * sysdeps/unix/sysv/linux/i386/setresuid.c: Allow -1 as arguments.
3676         * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
3678         * sysdeps/unix/sysv/linux/i386/setreuid.c: New file.
3679         * sysdeps/unix/sysv/linux/i386/setregid.c: New file.
3680         * sysdeps/unix/sysv/linux/m68k/setreuid.c: New file.
3681         * sysdeps/unix/sysv/linux/m68k/setregid.c: New file.
3682         * sysdeps/unix/sysv/linux/arm/setreuid.c: New file.
3683         * sysdeps/unix/sysv/linux/arm/setregid.c: New file.
3684         * sysdeps/unix/sysv/linux/sparc/sparc32/setreuid.c: New file.
3685         * sysdeps/unix/sysv/linux/sparc/sparc32/setregid.c: New file.
3686         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add s_setreuid and
3687         s_setregid.
3688         * sysdeps/unix/sysv/linux/m68k/syscalls.list: Likewise.
3689         * sysdeps/unix/sysv/linux/arm/syscalls.list: Likewise.
3690         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Likewise.
3692 1998-10-20  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3694         * sunrpc/rpc_main.c (close_output, close_input): New functions.
3695         (c_output, h_output, s_output, l_output, t_output, svc_output,
3696         clnt_output, mkfile_output): Call them at the end.
3698 1998-10-19  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3700         * db/Makefile (LDFLAGS-db1.so): New variable, to avoid duplicating
3701         link command.
3703 1998-10-19  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3705         * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Add real contents.
3706         * sysdeps/unix/sysv/linux/m68k/syscalls.list: Add s_setfs[ug]id.
3708 1998-10-20  Ulrich Drepper  <drepper@cygnus.com>
3710         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add s_pread64 and
3711         s_pwrite64.
3712         * sysdeps/unix/sysv/linux/powerpc/pread.c: New file.
3713         * sysdeps/unix/sysv/linux/powerpc/pread64.c: New file.
3714         * sysdeps/unix/sysv/linux/powerpc/pwrite.c: New file.
3715         * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: New file.
3716         Patch by Geoffrey KEATING <geoffk@discus.anu.edu.au>.
3718 1998-10-18  Zack Weinberg  <zack@rabi.phys.columbia.edu>
3720         * sysdeps/unix/opendir.c: Check at runtime for kernel support for
3721         O_DIRECTORY.
3723 1998-10-20  H.J. Lu  <hjl@gnu.org>
3725         * sysdeps/unix/sysv/linux/i386/setresuid.c (__setresuid): Fix
3726         argument types.
3728 1998-10-19  Ulrich Drepper  <drepper@cygnus.com>
3730         * math/tgmath.h: Make nested function calls work.
3732         * include/ldsodefs.h: Fix typo.
3734         * posix/Makefile (tests): Add tst-preadwrite.
3735         * posix/tst-preadwrite.c: New file.
3737         * sysdeps/unix/opendir.c (__opendir): Add back fstat call to make
3738         sure that descriptor is in any case for a directory.
3740 1998-10-19 18:59 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
3742         * math/tgmath.h (__TGMATH_UNARY_REAL_IMAG): Fix typo: val -> Val.
3743         (atan2): Takes two arguments.
3745 1998-10-19  Ulrich Drepper  <drepper@cygnus.com>
3747         * include/ldsodefs.h: New file.
3749         * iconv/gconv.c: Include ldsodefs.h, not elf/ldsodefs.h.
3750         Remove change to avoid using _CALL_DL_FCT.
3751         * iconv/gconv_db.c: Likewise.
3752         * iconv/gconv_dl.c: Likewise.
3753         * iconv/skeleton.c: Likewise, here for DL_CALL_FCT.
3754         * malloc/mtrace.c: Include ldsodefs.h, not elf/ldsodefs.h.
3755         * nss/nsswitch.c: Likewise.
3756         * nss/nsswitch.h: Likewise.
3758 1998-10-19  Philip Blundell  <pb@nexus.co.uk>
3760         * sunrpc/Makefile (otherlibs): If static NSS is in use, set to the
3761         required libraries.
3762         * login/Makefile (otherlibs): Likewise.
3763         * nscd/Makefile (otherlibs): Likewise.
3764         * Makeconfig (link-libc) [! build_shared]: Add $(otherlibs).
3766         * debug/Makefile (install-bin): Only build catchsegv if using ELF.
3768         * inet/Makefile: Add -DSTATIC_NSS to CFLAGS.
3770 1998-10-19  Philip Blundell  <pb@nexus.co.uk>
3772         * sysdeps/unix/sysv/linux/arm/syscalls.list: Added setfsgid
3773         and setfsuid.
3775 1998-10-19  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
3777         * nscd/connections.c: Fix typos in comments and strings.
3779         * nscd/nscd.conf: Update according to recent changes to nscd.
3781         * nscd/cache.c (prune_cache): Remove wrong comment.
3783 1998-10-19 13:24  Ulrich Drepper  <drepper@cygnus.com>
3785         * locale/programs/ld-collate.c (collate_startup): Clear bit for this
3786         category in copy_posix.
3787         (collate_finish): Don't warn about UNDEFINED not being defined.
3788         * locale/programs/ld-ctype.c (ctype_startup): Clear bit for this
3789         category in copy_posix.
3790         * locale/programs/ld-messages.c (messages_startup): Likewise.
3791         * locale/programs/ld-monetary.c (monetary_startup): Likewise.
3792         * locale/programs/ld-numeric.c (numeric_startup): Likewise.
3793         * locale/programs/ld-time.c (time_startup): Likewise.
3794         * locale/programs/localedef.c: Move copy_def_list_t definition into
3795         locales.h.  Define copy_posix variable.
3796         (main): Before processing copy list add &copy_posix to copy_list.
3797         * locale/programs/locales.h: Add definition of copy_def_list_t.
3798         * locale/programs/locfile.c: Clear bit for appropriate category in
3799         copy_posix.mask for copy instruction.
3801 1998-10-19  Ulrich Drepper  <drepper@cygnus.com>
3803         * sysdeps/unix/sysv/linux/i386/setresgid.c: Remove #include of
3804         non-existing file with generic implementation.
3805         * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
3807 1998-10-19  Philip Blundell  <pb@nexus.co.uk>
3809         * iconv/gconv_db.c: Include ELF header only if STATIC_GCONV is not
3810         defined.  Avoid using _CALL_DL_FCT if it is not defined.
3811         * iconv/gconv.c: Likewise.
3813 1998-10-19  Ulrich Drepper  <drepper@cygnus.com>
3815         * nscd/connections.c (dbs): Define defualt values for timeouts and
3816         set enabled to 0 by default.
3817         (CACHE_PRUNE_INTERVAL): New constant.  Use it instead of magical 15 in
3818         nscd_run.
3820         * locale/C-ctype.c (_nl_C_LC_CTYPE_class): Clear ISCNTRL bit for
3821         character >= 0x80.
3822         (_nl_C_LC_CTYPE_class32): Likewise.
3823         Reported by HJ Lu.
3825 1998-10-19  Roland McGrath  <roland@baalperazim.frob.com>
3827         * hurd/hurd/threadvar.h (enum __hurd_threadvar_index): Add
3828         _HURD_THREADVAR_DL_ERROR.
3830         * hurd/Makefile (user-interfaces): Add login, password.
3832         * sysdeps/mach/hurd/Makefile (+cflags): Append -Wno-parentheses.
3834 1998-08-06  Mark Kettenis  <kettenis@phys.uva.nl>
3836         [submitted 1998-08-06]
3837         * mach/Machrules: Create target directory and force re-evaluation
3838         of Makefile to prevent `make' from optimizing away most of the
3839         implicit rules and `vpath' directives.
3841 1998-10-19  Roland McGrath  <roland@baalperazim.frob.com>
3843         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): If _hurd_msgport_thread
3844         is null, short-circuit to __mach_msg.
3846         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): New function,
3847         broken out of init1.
3848         (init1) [PIC]: Call it.
3849         (__libc_init_first) [! PIC]: Call it.
3851         * sysdeps/mach/hurd/i386/init-first.c (init1): Don't call
3852         __libc_init_secure.  Instead set __libc_enable_secure here from
3853         the exec flags.
3854         (__libc_enable_secure): New variable it.
3855         * sysdeps/mach/hurd/enbl-secure.c: New file, empty placeholder module.
3857 1998-10-19  Roland McGrath  <roland@baalperazim.frob.com>
3859         * nscd/nscd-client.h: New file, broken out of "nscd.h".
3860         * nscd/nscd.h: Move defns needed by clients to "nscd-client.h",
3861         and #include that.
3862         * nscd/Makefile (distribute): Add nscd-client.h.
3863         * nscd/nscd_getgr_r.c, nscd/nscd_gethst_r.c, nscd/nscd_getpw_r.c:
3864         Include "nscd-client.h" instead of "nscd.h"
3866 1998-10-18  Ulrich Drepper  <drepper@cygnus.com>
3868         * sysdeps/posix/getcwd.c (__getcwd): Don't stop processing
3869         directory entries when a lstat call fails.
3870         Patch by Colin Plumb <colin@nyx.net>.
3872         * resolv/nss_dns/dns-host.c: Add missing errnop parameter to the
3873         NSS functions.
3874         * resolv/nss_dns/dns-network.c: Likewise.
3876         * grp/Makefile: Don't search for linuxthreads in add-ons, use
3877         have-thread-library to determine whether threads are available.
3878         * pwd/Makefile: Remove wrong comment.
3880         * inet/Makefile: Define CFLAGS-gethstbyad_r.c, CFLAGS-gethstbynm_r.c,
3881         and CFLAGS-gethstbynm2_r.c to -DUSE_NSCD=1.
3883         * locale/C-messages.c: Define default strings for YESTR and NOSTR.
3885         * nss/Versions: Add __nss_hosts_lookup.
3887         * nss/getXXbyYY.c: Remove unneeded assignment.
3889         * nss/getXXbyYY_r.c: Include nscd/nscd_proto.h only if needed.
3891         Almost complete rewrite of the NSCD to make it smaller, faster,
3892         add more functionnality and make it easier to extend.
3893         * nscd/Makfile (routines): Add nscd_gethst_r.
3894         (nscd-modules): Add hstcache, gethstbyad_r, gethstbynm2_r, and cache.
3895         * nscd/cache.c: New file.
3896         * nscd/gethstbyad_r.c: New file.
3897         * nscd/gethstbynm2_r.c: New file.
3898         * nscd/hstcache.c: New file.
3899         * nscd/nscd_gethst_r.c: New file.
3900         * nscd/connections.c: Rewritten.  Don't start new thread for every
3901         new connection.  Use a fixed set of threads which handle all
3902         connections and also the cache cleanup.
3903         * nscd/grpcache.c: Rewritten to use generic cache handling functions
3904         in cache.c.
3905         * nscd/nscd.c: Recognize new parameter nthreads.  Adjust initialization
3906         for rewrite.  Remove handle_requests function.
3907         * nscd/nscd.h (NSCD_VERSION): Bump to 2.
3908         Define new data structure for the new unified cache and the host
3909         database entries.
3910         * nscd/nscd_conf.c: Rewrite parsing partly to allow adding of more
3911         databases easily.  Recognize check-files and threads definitions.
3912         * nscd/nscd.conf: Add definition of enable-cache and check-files to
3913         passwd and group definitions.  Add new set of definitions for hosts.
3914         * nscd/nscd_getgr_r.c: Rewrite for new protocol.
3915         * nscd/nscd_getpw_r.c: Likewise.
3916         * nscd/nscd_proto.h: Add prototype for host database functions.
3917         * nscd/nscd_stat.c: Rewrite to simplify printing of information
3918         for many databases.
3919         * nscd/dbg_log.c: Remove unnecessary variable initializations.
3920         Global variable debug_flag is renamed to dbg_level.
3921         * nscd/dbg_log.h: Declare set_logfile.
3923 1998-10-16  Ulrich Drepper  <drepper@cygnus.com>
3925         * sysdeps/unix/sysv/linux/bits/fcntl.h: Add dummy definition of
3926         O_LARGEFILE back.
3928 1998-10-16  Paul Eggert  <eggert@shade.twinsun.com>
3930         * time/mktime.c: Some systems require <unistd.h> to be
3931         included before <time.h> for localtime_r to be declared
3932         properly.
3933         * time/strftime.c: Likewise.
3935 1998-10-16  Ulrich Drepper  <drepper@cygnus.com>
3937         * db/Makefile: Add rule to generate shared object with the soname
3938         from glibc 2.0.
3940         * sysdeps/unix/opendir.c: Use O_DIRECTORY if available.  If not
3941         available double check to verify it's a directory.
3943         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Add O_DIRECTORY.
3944         * sysdeps/unix/sysv/linux/mips/bits/fcntl: Likewise.
3945         * sysdeps/unix/sysv/linux/bits/fcntl.h: Remove O_* constants which
3946         are not generally available.
3947         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: New file.
3949         * sysdeps/unix/sysv/linux/i386/setgroups.c: Add range check for values.
3950         * sysdeps/unix/sysv/linux/arm/Makefile: New file.
3951         * sysdeps/unix/sysv/linux/arm/setegid.c: New file.
3952         * sysdeps/unix/sysv/linux/arm/seteuid.c: New file.
3953         * sysdeps/unix/sysv/linux/arm/setfsgid.c: New file.
3954         * sysdeps/unix/sysv/linux/arm/setfsuid.c: New file.
3955         * sysdeps/unix/sysv/linux/arm/setgid.c: New file.
3956         * sysdeps/unix/sysv/linux/arm/setgroups.c: New file.
3957         * sysdeps/unix/sysv/linux/arm/setresgid.c: New file.
3958         * sysdeps/unix/sysv/linux/arm/setresuid.c: New file.
3959         * sysdeps/unix/sysv/linux/arm/setuid.c: New file.
3960         * sysdeps/unix/sysv/linux/i386/setegid.c: New file.
3961         * sysdeps/unix/sysv/linux/i386/seteuid.c: New file.
3962         * sysdeps/unix/sysv/linux/i386/setfsgid.c: New file.
3963         * sysdeps/unix/sysv/linux/i386/setfsuid.c: New file.
3964         * sysdeps/unix/sysv/linux/i386/setgid.c: New file.
3965         * sysdeps/unix/sysv/linux/i386/setgroups.c: New file.
3966         * sysdeps/unix/sysv/linux/i386/setresgid.c: New file.
3967         * sysdeps/unix/sysv/linux/i386/setresuid.c: New file.
3968         * sysdeps/unix/sysv/linux/i386/setuid.c: New file.
3969         * sysdeps/unix/sysv/linux/m68k/setegid.c: New file.
3970         * sysdeps/unix/sysv/linux/m68k/seteuid.c: New file.
3971         * sysdeps/unix/sysv/linux/m68k/setfsgid.c: New file.
3972         * sysdeps/unix/sysv/linux/m68k/setfsuid.c: New file.
3973         * sysdeps/unix/sysv/linux/m68k/setgid.c: New file.
3974         * sysdeps/unix/sysv/linux/m68k/setgroups.c: New file.
3975         * sysdeps/unix/sysv/linux/m68k/setresgid.c: New file.
3976         * sysdeps/unix/sysv/linux/m68k/setresuid.c: New file.
3977         * sysdeps/unix/sysv/linux/m68k/setuid.c: New file.
3978         * sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c: New file.
3979         * sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c: New file.
3980         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: New file.
3981         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: New file.
3982         * sysdeps/unix/sysv/linux/sparc/sparc32/setgid.c: New file.
3983         * sysdeps/unix/sysv/linux/sparc/sparc32/setgroups.c: New file.
3984         * sysdeps/unix/sysv/linux/sparc/sparc32/setresgid.c: New file.
3985         * sysdeps/unix/sysv/linux/sparc/sparc32/setresuid.c: New file.
3986         * sysdeps/unix/sysv/linux/sparc/sparc32/setuid.c: New file.
3988         * sysdeps/unix/sysv/linux/arm/syscalls.list: Add s_setgid, s_setresuid,
3989         s_setresgid, and s_setuid.
3990         * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
3991         * sysdeps/unix/sysv/linux/m68k/syscalls.list: Likewise.
3992         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Likewise.
3993         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=misc]
3994         (sysdep_routines): Add setfsgid, setfsuid, setresgid, and setresuid.
3995         * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
3996         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: Likewise.
3998 1998-10-16  Ulrich Drepper  <drepper@cygnus.com>
4000         * time/mktime.c: Define _POSIX_THREAD_SAFE_FUNCTIONS to get
4001         localtime_t declaration on some systems.
4003 1998-10-16 10:07  Ulrich Drepper  <drepper@cygnus.com>
4005         * iconv/Makefile [! elf]: Define CFLAGS-gconv_simple.c to
4006         -DSTATIC_GCONV.
4007         * iconv/skeleton.c: Include ELF header only of STATIC_GCONV is not
4008         defined.  Avoid using DL_CLL_FCT if it is not defined.
4010 1998-10-16 10:40 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
4012         * resolv/arpa/nameser.h: Include sys/types.h unconditionally.
4013         Include endian.h unconditionally.  Remove portability goop
4014         depending on #ifdef linux, #ifdef BSD, #ifdef machine-type.
4016 1998-10-16 11:39 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
4018         * sunrpc/rpc/types.h: Mark file so fixincludes won't modify it.
4020 1998-10-15  Ulrich Drepper  <drepper@cygnus.com>
4022         * sysdeps/unix/sysv/linux/alpha/bits/ioctls.h: Remove __kernel_termios
4023         again.  Use char[44] to define size of the struct.
4025         * sysdeps/unix/sysv/linux/arm/Dist: Add bits/armsigctx.h.
4027 1998-10-14  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4029         * string/bits/string2.h (strcmp): Don't cache the result of
4030         __builtin_constant_p in variables, otherwise constant folding
4031         can fail in big functions.
4033 1998-10-14  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4035         * string/bits/string2.h: Add prototypes for the new inline
4036         functions.
4038 1998-10-15  Ulrich Drepper  <drepper@cygnus.com>
4040         * sysdeps/unix/sysv/linux/alpha/bits/ioctls.h: Include termios.h to
4041         have all types defined.
4042         Patch by Matti Aarnio <matti.aarnio@sonera.fi>.
4044 1998-10-08  Paul Eggert  <eggert@twinsun.com>
4046         * time/mktime.c (my_mktime_localtime_r): Renamed from localtime_r.
4047         Define also if HAVE_LOCALTIME_R && defined localtime_r, with
4048         a body that merely expands localtime_r; this works around a
4049         bug in Digital Unix 4.0A and 4.0D.
4051 1998-10-14  Ulrich Drepper  <drepper@cygnus.com>
4053         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add s_ioctl.
4054         * sysdeps/unix/sysv/linux/powerpc/tcgetattr.c: New file. Define
4055         __ioctl to __syscall_ioctl and include Linux version of this file.
4056         * sysdeps/unix/sysv/linux/powerpc/tcsetattr.c: Likewise.
4057         * sysdeps/unix/sysv/linux/powerpc/ioctl.c: New file.  Redirect
4058         ioctl calls which handle struct termios.
4059         Based on a patch by Dan Jacobowitz <drow@false.org>.
4061 1998-10-14  Ulrich Drepper  <drepper@cygnus.com>
4063         * version.h (VERSION): Bump to 2.0.98.
4065         * sysdeps/unix/sysv/linux/alpha/bits/ioctls.h: Define __kernel_termios
4066         here instead of including kernel_termios.h.
4068 1998-10-14  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4070         * sysdeps/unix/opendir.c (__opendir): Remove label lose2 which is
4071         unnecessary after the changes of 1998-10-12.
4073 1998-10-13  Ulrich Drepper  <drepper@cygnus.com>
4075         * sysdeps/unix/sysv/linux/alpha/ioperm.c (inline_outb): Fix output
4076         parameter format string.
4077         (inline_outw): Likewise.
4079         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Include
4080         string.h to get memcpy prototype and NULL definition.
4082 1998-10-12  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4084         * misc/sys/cdefs.h (__THROW): New macro.
4085         * argp/argp.h: Use it to replace the kludgey __P in inline
4086         function definitions.
4087         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
4088         * stdlib/stdlib.h: Likewise.
4089         * wcsmbs/wchar.h: Likewise.
4090         * libio/stdio.h: Likewise.
4091         * stdio/stdio.h: Likewise.
4092         * sysdeps/wordsize-64/inttypes.h: Likewise.
4093         * sysdeps/wordsize-32/inttypes.h: Likewise.
4094         * string/argz.h: Likewise.
4095         * io/sys/stat.h: Likewise.
4097 1998-10-12  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4099         * Rules (stdio_lim): New variable.
4100         ($(stdio_lim:h=st)): Use this as intermediate stamp file, depend
4101         on Rules and config.make, use $(move-if-change) to avoid unnessary
4102         recompilations, and cleanup command.
4103         (common-generated): Add bits/stdio_lim.st.
4105 1998-10-12  Ulrich Drepper  <drepper@cygnus.com>
4107         * sysdeps/unix/sysv/linux/alpha/Makefile (CFLAGS-ioperm.c): New
4108         variable to prevent warnings from use of modern CPU instructions.
4109         Patch by Richard Henderson <rth@cygnus.com>.
4111         * sysdeps/unix/opendir.c: Test whether NAME is directory before
4112         opening it.
4114 1998-10-12  Philip Blundell  <pb@nexus.co.uk>
4116         * sysdeps/unix/sysv/linux/arm/sysdep.h (PSEUDO): Add missing
4117         semicolon so that profiling works.
4119 1998-10-12  Roland McGrath  <roland@baalperazim.frob.com>
4121         * sysdeps/generic/glob.c: #undef mempcpy before #define.
4123         * sysdeps/unix/bsd/clock.c: Use prototype defns.
4125 1998-10-11  Ulrich Drepper  <drepper@cygnus.com>
4127         * Rules [posix in sysdirs]: Set L_tmpnam to 20.
4128         Patch by Zack Weinberg <zack@rabi.columbia.edu>.
4130         * string/bits/string2.h [!_STRING_ARCH_unaligned]
4131         (__mempcpy_small): Add parameter for 1 byte copy and use it.
4132         Reported by Geoff Keating <geoffk@ozemail.com.au>.
4134 1998-10-09  Mark Kettenis  <kettenis@phys.uva.nl>
4136         * sysdeps/mach/hurd/bits/posix_opt.h (_XBS5_ILP32_OFF32): Remove,
4137         it is already defined in <bits/environments.h>.
4139 1998-10-09  Ulrich Drepper  <drepper@cygnus.com>
4141         * posix/ptestcases.h: Fix typo.
4143 1998-10-08  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4145         * posix/regex.c (regcomp): Allocate and prepare a fastmap.
4146         (regexec): Allocate regs.start and regs.end as one block.
4148 1998-10-08  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4150         * sysdeps/unix/sysv/linux/bits/socket.h: Remove comma at end of
4151         enum decl.
4153 1998-10-08  Philip Blundell  <pb@nexus.co.uk>
4155         * sysdeps/unix/sysv/linux/arm/profil-counter.h: Move definition of
4156         sigcontext union to ...
4157         * sysdeps/unix/sysv/linux/arm/bits/armsigctx.h: ... here.  New
4158         file.
4159         * sysdeps/unix/sysv/linux/arm/register-dump.h: Add support for
4160         version 2.0 kernels.
4162 1998-10-08  Ulrich Drepper  <drepper@cygnus.com>
4164         * malloc/mtrace.c (tr_reallochook): Produce better output for real
4165         reallocation case.
4167         * signal/sigsetops.c: Make sure __USE_EXTERN_INLINES is defined.
4168         * argp/argp-xinl.c: Likewise.
4170         * sysdeps/unix/sysv/linux/alpha/ioperm.c (platform): Add missing
4171         Ruffian entry back.
4172         Patch by Christian Gafton.
4174 1998-10-08  Paul Eggert  <eggert@twinsun.com>
4176         * time/mktime.c (__mktime_internal): When the requested time falls
4177         in a spring-forward gap of size DT, return a time that is DT away
4178         from the requested time, preferring a time whose tm_isdst differs
4179         from the requested value.  Bump the max number of probes from 4 to
4180         6 to account for the extra probes needed to discover a
4181         spring-forward gap in the worst case.
4183 1998-10-07 17:05  Ulrich Drepper  <drepper@cygnus.com>
4185         * sysdeps/unix/sysv/linux/alpha/ioperm.c: Improve the autodetection
4186         of the weird alpha architectures.
4187         Patch by Cristian Gafton <gafton@redhat.com>.
4189 1998-02-18 23:31  Richard Henderson  <rth@cygnus.com>
4191         * sysdeps/unix/sysv/linux/alpha/ioperm.c: Add support for
4192         RAWHIDE and TSUNAMI.  Patch from Jay.Estabrook@digital.com.
4194 1998-10-07  Ulrich Drepper  <drepper@cygnus.com>
4196         * elf/dl-open.c (_dl_global_scope_alloc): Make global.
4197         (dl_open_worker): Use realloc, not malloc to resize array.
4198         * elf/rtld.c (_dl_initial_searchlist): New variable.
4199         (_dl_main): Copy content of _dl_main_searchlist to
4200         _dl_initial_searchlist.
4201         * elf/ldsodefs.h: Add declarations for _dl_initial_searchlist and
4202         _dl_global_scope_alloc.
4203         * elf/Versions [libc, GLIBC_2.1]: Add _dl_initial_searchlist.
4204         * elf/dl-close.c (_dl_close): When removing object with global
4205         scope remove allocated searchlist if no dynamically loaded object
4206         is on it anymore.
4207         * elf/dl-support.c (_dl_initial_searchlist): Renamed from fake_scope.
4208         (_dl_global_scope, _dl_main_searchlist): Use _dl_initial_searchlist.
4210         * malloc/mtrace.c (tr_where): Don't print space in location string,
4211         print it afterwards.  Print better symbol name information.
4213 1998-10-06  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4215         * manual/filesys.texi (Setting Permissions): Fix example for
4216         reading umask.
4218 1998-10-07  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4220         * elf/sprof.c (load_profdata): Fix typo in error message.
4222 1998-10-06  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
4224         * sysdeps/m68k/dl-machine.h (RTLD_START): Fix clearing startup
4225         flag.
4227 1998-10-04  Roland McGrath  <roland@baalperazim.frob.com>
4229         * mach/mach.h: Remove __mach_msg decl; <mach/message.h> now does it.
4231 1998-10-06  Ulrich Drepper  <drepper@cygnus.com>
4233         * version.h (VERSION): Bump to 2.0.97.
4235 1998-10-05  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4237         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use __P
4238         in definitions of inline stat functions so that they match the
4239         declaration.
4240         * stdlib/stdlib.h: Likewise.
4241         * wcsmbs/wchar.h: Likewise.
4242         * libio/stdio.h: Likewise.
4243         * stdio/stdio.h: Likewise.
4244         * sysdeps/wordsize-64/inttypes.h: Likewise.
4245         * sysdeps/wordsize-32/inttypes.h: Likewise.
4246         * string/argz.h: Likewise.
4247         * argp/argp.h: Likewise.
4249 1998-10-06  Ulrich Drepper  <drepper@cygnus.com>
4251         * sysdeps/unix/sysv/linux/bits/in.h: Remove ipv6_mreq which is in
4252         netinet/in.h.
4254 1998-10-05  Philip Blundell  <philb@gnu.org>
4256         * sysdeps/unix/sysv/linux/bits/in.h: Add various new structures
4257         and constants.  Tidy up formatting a little.
4259         * sysdeps/unix/sysv/linux/bits/socket.h (SOL_IPV6, SOL_ICMPV6):
4260         Move definitions to in.h.
4262 1998-10-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4264         * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_PREFER,
4265         SWAP_FLAG_PRIO_MASK,SWAP_FLAG_PRIO_SHIFT): Added.
4266         Remove inclusion of <linux/swap.h>.
4268 1998-10-05  Ulrich Drepper  <drepper@cygnus.com>
4270         * io/sys/stat.h: Use __P in definitions of inline stat functions
4271         so that they match the declaration.
4273 1998-10-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4275         * sysdeps/unix/sysv/linux/sys/quota.h (Q_RSQUASH): Added.
4277 1998-10-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4279         * sysdeps/unix/sysv/linux/sys/acct.h: Bring in sync with current
4280         linux 2.1 version.
4282 1998-10-02  Philip Blundell  <pb@nexus.co.uk>
4284         * sysdeps/arm/dl-machine.h: Fix typo in last change.
4286         * sysdeps/arm/bits/huge_val.h: New file.
4288 1998-10-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4290         * sysdeps/unix/sysv/linux/sys/reboot.h (RB_POWER_OFF): Added.
4292         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SYSCALL): Add
4293         define.
4295 1998-10-05  Ulrich Drepper  <drepper@cygnus.com>
4297         * sysdeps/posix/getcwd.c (__getcwd): Use temporary variable to
4298         store result of realloc instead of using BUF.
4300 1998-10-04  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4302         * misc/sgtty.h (_SGTTY_H): Correct spelling.
4303         Reported by Rouben Rostamian <rostamian@umbc.edu> [PR libc/817].
4305 1998-10-04  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4307         * manual/memory.texi (Obstacks): Document
4308         obstack_alloc_failed_handler usage.
4310         * malloc/obstack.h: Enhance comment about
4311         obstack_alloc_failed_handler usage.
4312         * malloc/obstack.c: Likewise.
4314 1998-10-05  Ulrich Drepper  <drepper@cygnus.com>
4316         * misc/sys/cdefs.h (__extension__): Define as empty if no gcc or
4317         gcc before 2.8 is used.
4319 1998-10-01  Philip Blundell  <pb@nexus.co.uk>
4321         * sysdeps/arm/machine-gmon.h: Correct args to mcount().  Patch
4322         from Scott Bambrough.
4324         * sysdeps/unix/sysv/linux/arm/register-dump.h: New file.
4326         * libio/libioP.h (FILEBUF_LITERAL) [! _IO_MTSAFE_IO]: Don't
4327         include the lock member.
4329 1998-09-03  Philip Blundell  <pb@nexus.co.uk>
4331         * sysdeps/arm/fpu/__longjmp.S: Cope with fussy assembler.
4333 1998-10-01  Ulrich Drepper  <drepper@cygnus.com>
4335         * timezone/zic.c: Update from tzcode1998h.
4336         * timezone/europe: Update from tzdata1998i.
4337         * timezone/southamerica: Likewise.
4339         * sys/types.h: Protect use of long long by __extension__.
4340         * stdlib/stdlib.h: Likewise.
4341         * string/string.h: Likewise.
4342         * sysdeps/i386/bits/byteswap.h: Likewise.
4343         * sysdeps/geeric/bits/byteswap.h: Likewise.
4344         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
4345         * sysdeps/unix/sysv/linux/bits/types.h: Likewise.
4346         * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
4347         * sysdeps/wordsize-32/inttypes.h: Likewise.
4348         * sysdeps/wordsize-32/stdint.h: Likewise.
4349         * wcsmbs/wchar.h: Likewise.
4351 1998-09-29  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4353         * string/bits/string2.h (__string2_1bptr_p): Don't use a statement
4354         expression.
4355         (__mempcpy, strcpy, __stpcpy, strcmp, strcspn, strspn, strpbrk,
4356         __strsep): Greatly reduce size of expansion by combining common
4357         expressions.
4358         (__mempcpy_small, __strcpy_small, __stpcpy_small): Convert to
4359         inline function.
4360         (__mempcpy_args, __strcpy_args, __stpcpy_args): New macros, used
4361         by the above definitions.
4363 1998-09-27  Geoff Keating  <geoffk@ozemail.com.au>
4365         * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: New file, use
4366         correct struct ipc_perm definition.
4368 1998-09-29  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
4370         * nis/ypclnt.c (yp_all): Close UDP socket und give CLIENT handle free.
4372 1998-09-29  Cristian Gafton  <gafton@redhat.com>
4374         * sysdeps/unix/sysv/linux/alpha/ioperm.c: List Ruffian in platforms[].
4375         * sysdeps/unix/sysv/linux/net/if_shaper.h: New file.
4376         * sysdeps/unix/sysv/linux/Dist: Add net/if_shaper.h.
4377         * sysdeps/unix/sysv/linux/Makefile [subdirs=inet] (sysdep_headers):
4378         Add net/if_shaper.h.
4380 1998-09-29  Ulrich Drepper  <drepper@cygnus.com>
4382         * nis/ypclnt.c (yp_all): Close socket opened by __yp_bind.
4384         * nis/ypclnt.c: Remove not needed close calls.
4386 1998-09-28 23:55  Ulrich Drepper  <drepper@cygnus.com>
4388         * nis/ypclnt.c (__yp_bind): Pretty print.  Optimize readv result
4389         check a bit.  Also close socket of domain client.  Close socket
4390         in IPPORT_RESERVED error case.
4392 1998-09-28  Ulrich Drepper  <drepper@cygnus.com>
4394         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use
4395         CMSG_ALIGN (fixes a bug) and correct test for availability of
4396         another entry.
4397         * sysdeps/unix/sysv/linux/mips/bits/socket.h: Sync with generic
4398         Linux version.
4399         (__cmsg_nxthdr): Use CMSG_ALIGN (fixes a bug) and correct test for
4400         availability of another entry.
4401         Patch by ak@muc.de.
4403         * sysdeps/unix/sysv/linux/netinet/ip.h (IPOPT_NOOP): Fix typo.
4404         Patch by ak@muc.de.
4406         * libio/libio.h [!__STDC__]: Define const only if not defined.
4408 1998-09-27  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4410         * posix/annexc.c (xsystem): New function.  Use it instead of
4411         system.
4413 1998-09-28  Ulrich Drepper  <drepper@cygnus.com>
4415         * stdlib/longlong.h: Remove #endif for #if removed in last change.
4417 1998-09-25  Ulrich Drepper  <drepper@cygnus.com>
4419         * time/strftime.c [emacs]: Define my_strftime to emacs_strftimeu.
4420         Define ut_argument, ut_argument_spec, and ut_argument_spec_iso to
4421         allow using `ut' parameter.
4422         [!emacs]: Define ut_argument, ut_argument_spec, and
4423         ut_argument_spec_iso as empty.  Define ut to 0.  Add ut_argument and
4424         argument_spec to prototypes and definitions.
4425         (my_strftime): Don't call tzset of ut != 0.
4426         Compute diff as 0 is ut != 0;
4427         [emacs]: Define new emacs_strftime function.
4428         Based on a patch by Paul Eggert.
4430 1998-09-24  Paul Eggert  <eggert@twinsun.com>
4432         * time/strftime.c (my_strftime): When asking for the length of the
4433         subformatted buffer, do not limit the length to look for;
4434         otherwise, we have no reliable way to distinguish between the
4435         empty buffer and an error.
4437 1998-09-25  Ulrich Drepper  <drepper@cygnus.com>
4439         * math/Makefile (gmp-objs): Add mp_clz_tab.
4441 1998-09-25  David S. Miller  <davem@pierdol.cobaltmicro.com>
4443         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Clear bits don't
4444         set them.
4445         * stdlib/longlong.h (sparc udiv_qrnnd): Define inline version for
4446         cpus lacking hardware multiply and divide.
4448 1998-09-24  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4450         * db/Makefile ($(inst_slibdir)/libdb.so$(libdb1.so-version)): Use
4451         $(<F), not $(^F).
4453 1998-09-24  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4455         * db/btree/bt_delete.c: Fix -Wparentheses warning.
4457 1998-09-24  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4459         * Makefile ($(inst_includedir)/gnu/lib-names.h): Use
4460         $(do-install).
4462 1998-09-24  Ulrich Drepper  <drepper@cygnus.com>
4464         * debug/catchsegv.sh: Also produce output if clone process died.
4466 1998-09-24  Paul Eggert  <eggert@twinsun.com>
4468         * time/strftime.c (f_wkday): Remove duplicate definition.
4469         (f_wkday, f_month, a_wkday, a_month, ampm): Define as macros when
4470         !defined _NL_CURRENT && !HAVE_STRFTIME; this propagates the
4471         1998-09-11 fix to this case.
4472         (wkday_len, month_len): Remove these macros; they're no longer needed.
4474 1998-09-24  Paul Eggert  <eggert@twinsun.com>
4476         * time/strftime.c (my_strftime): Don't store past the end of a
4477         zero-sized buffer.
4479 1998-09-24  Paul Eggert  <eggert@twinsun.com>
4481         * time/strftime.c (underlying_strftime):
4482         Set the buffer to a nonzero value before calling
4483         strftime, and check to see whether strftime has set the buffer to zero.
4484         This lets us distinguish between an empty buffer and an error.
4486 1998-09-24  Paul Eggert  <eggert@shade.twinsun.com>
4488         * time/strftime.c (INT_STRLEN_BOUND): Fix typo by changing 100 to 1000.
4489         This fix is propagated from tzcode1998g.tar.gz.
4491 1998-09-24  Mark Kettenis  <kettenis@phys.uva.nl>
4493         * sysdeps/unix/siglist.c: Make sys_siglist a weak alias for
4494         _sys_siglist.  [!HAVE_GNU_LD]: Do not define _sys_siglist as
4495         sys_siglist.  This is handled correctly by the weak_alias macro.
4497 1998-09-24  Ulrich Drepper  <drepper@cygnus.com>
4499         * sysdeps/posix/getcwd.c: Prevent compiler warning from redefinition
4500         of mempcpy.  Reported by Andreas Jaeger.
4502         * misc/regexp.h (compile): Use alloca instead of __alloca.  It won't
4503         pollute the namespace since the compiler will resolve it inline.
4504         Reported by Florian La Roche <florian@suse.de>.
4506 1998-09-24 10:29  Ulrich Drepper  <drepper@cygnus.com>
4508         * timezone/private.h: Update from tzcode1998g.
4510         * timezone/africa: Update from tzdata1998h.
4511         * timezone/asia: Likewise.
4512         * timezone/australasia: Likewise.
4513         * timezone/europe: Likewise.
4514         * timezone/northamerica: Likewise.
4515         * timezone/southamerica: Likewise.
4516         * timezone/zone.tab: Likewise.
4518 1998-09-23 17:28 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
4520         * misc/sys/mman.h: New file.
4522         * sysdeps/generic/bits/mman.h: New file.
4523         * sysdeps/unix/bsd/osf/bits/mman.h: New file.
4524         * sysdeps/unix/bsd/sun/sunos4/bits/mman.h: New file.
4525         * sysdeps/unix/bsd/ultrix4/bits/mman.h: New file.
4526         * sysdeps/unix/sysv/irix4/bits/mman.h: New file.
4528         * sysdeps/generic/sys/mman.h: Removed.
4529         * sysdeps/unix/bsd/osf/sys/mman.h: Removed.
4530         * sysdeps/unix/bsd/sun/sunos4/sys/mman.h: Removed.
4531         * sysdeps/unix/bsd/ultrix4/sys/mman.h: Removed.
4532         * sysdeps/unix/sysv/irix4/sys/mman.h: Removed.
4533         * sysdeps/unix/sysv/linux/sys/mman.h: Removed.
4535         * include/sys/mman.h: Look directly for misc/sys/mman.h.
4536         * misc/Makefile (headers): Add bits/mman.h.
4537         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Remove
4538         bits/mman.h.
4540         * sysdeps/unix/sysv/linux/alpha/Dist: Don't mention bits/mman.h.
4541         * sysdeps/unix/sysv/linux/arm/Dist: Likewise.
4542         * sysdeps/unix/sysv/linux/i386/Dist: Likewise.
4543         * sysdeps/unix/sysv/linux/m68k/Dist: Likewise.
4544         * sysdeps/unix/sysv/linux/mips/Dist: Likewise.
4545         * sysdeps/unix/sysv/linux/powerpc/Dist: Likewise.
4546         * sysdeps/unix/sysv/linux/sparc/sparc32/Dist: Likewise.
4547         * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: Likewise.
4549 1998-09-23 16:27 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
4551         * sysdeps/mach/alpha/sysdep.h: Don't use #include_next.
4552         * sysdeps/mach/alpha/thread_state.h: Likewise.
4553         * sysdeps/mach/i386/sysdep.h: Likewise.
4554         * sysdeps/mach/i386/thread_state.h: Likewise.
4555         * sysdeps/mach/mips/sysdep.h: Likewise.
4556         * sysdeps/mach/mips/thread_state.h: Likewise.
4557         * sysdeps/posix/profil.c: Likewise.
4558         * sysdeps/i386/i586/memcopy.h: Likewise.
4559         * sysdeps/mach/pagecopy.h: Likewise.
4561 1998-09-23 15:25  Ulrich Drepper  <drepper@cygnus.com>
4563         * libio/stdio.h: Define __need_getopt and include getopt.h to define
4564         getopt stuff.
4565         * posix/unistd.h: Likewise.
4566         * stdio/stdio.h: Likewise.
4567         * posix/getopt.h: Remove _GNU_SOURCE use.  If __need_getopt is defined
4568         define only getopt and the variables.
4570 1998-09-23  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4572         * scripts/test-installation.pl (installation_problem): Don't link
4573         the test program against libdb1.
4575 1998-09-23 13:52  Ulrich Drepper  <drepper@cygnus.com>
4577         * Makeconfig (all-subdirs): Add db.
4578         * Versions.def: Add definition for libdb1.
4579         * shlib-versions: Add definitions for libdb1.
4580         * db/Makefile (extra-libs): Replace by libdb1.
4581         (libdb-routines): Rename to libdb1-routines.
4582         (headers): Rename to db1-headers.
4583         (distribute): Add $(db1-headers).
4584         (install-others): Define to install symlink libdb.so.NN and the
4585         $(db1-headers).
4586         (CPPFLAGS): Add -DUSE_LIBDB1
4587         Remove rules to build makedb.
4588         * db/Versions: Rename libdb to libdb1.
4589         * include/db.h: If USE_LIBDB1 is defined include db/db.h.
4590         * db/makedb.c: Removed.
4592         * scripts/versions.awk: Recognize digits in library names.
4594         * db/btree/bt_open.c: Fix compiler warnings.
4595         * db/btree/bt_put.c: Likewise.
4596         * db/btree/bt_split.c: Likewise.
4597         * db/hash/hash.c: Likewise.
4598         * db/hash/hash_bigkey.c: Likewise.
4599         * db/recno/rec_close.c: Likewise.
4601         * Makefile: Add localedata/% goal.
4603 1998-09-22 19:58 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
4605         * posix/execvp.c: Don't give up searching the PATH if execve
4606         returns ENOTDIR.
4608 1998-09-22 12:53  Ulrich Drepper  <drepper@cygnus.com>
4610         * sysdeps/unix/sysv/linux/init-first.c (init): Don't call setfpucw only
4611         if _dl_fpu_control_set is set.
4612         * sysdeps/generic/dl-sysdep.c: Don't set _dl_fpu_control_set.
4613         * elf/rtld.c: Don't define _dl_fpu_control_set.
4614         * elf/Versions: Remove _dl_fpu_control_set.
4616 1998-09-22 11:51  Ulrich Drepper  <drepper@cygnus.com>
4618         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (SA_ONSTACK): Define.
4619         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h: Likewise.
4620         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Likewise.
4621         Correct values of other SA_* macros according to kernel headers.
4623 1998-09-22  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4625         * elf/dl-load.c (_dl_init_paths): Avoid warning about unused
4626         variable l.
4627         * elf/dl-error.c (_dl_catch_error): Avoid warning about clobbering
4628         old.
4630 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4632         * elf/ldsodefs.h: Fix typo in comment.
4634 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4636         * libio/genops.c (_IO_default_pbackfail): Add cast to unsigned
4637         char when comparing buffer contents with putback character.
4639 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4641         * elf/Makefile (dl-routines, elide-routines.os, rtld-routines):
4642         Undo last change.
4643         * elf/Versions: Undo last change.  Export _dl_fpu_control and
4644         _dl_fpu_control_set.
4645         * elf/rtld.c (_dl_fpu_control, _dl_fpu_control_set): New
4646         variables.  Include <fpu_control.h>.
4647         * sysdeps/generic/dl-sysdep.c: Store AT_FPUCW value in
4648         _dl_fpu_control instead of __fpu_control, set _dl_fpu_control_set
4649         to indicate that is was seen.
4650         * sysdeps/unix/sysv/linux/init-first.c: Omit call to __setfpucw
4651         only if _dl_fpu_control was set and is equal to desired value.
4652         * math/Makefile (aux): Undo last change.
4653         * math/Versions: Export __fpu_control with version GLIBC_2.0.
4655 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4657         * sysdeps/m68k/dl-machine.h (elf_machine_lazy_rel): Slightly
4658         optimized.
4660 1998-09-21 10:00  Ulrich Drepper  <drepper@cygnus.com>
4662         * string/bits/string2.h: Add mempcpy optimization.
4663         * sysdeps/generic/mempcpy.c: Undefined __mempcpy.
4664         * intl/localealias.c: Define mempcpy only if not already defined.
4666         * sysdeps/i386/i486/bits/string.h: Define ffsl only if not already
4667         defined.
4669 1998-09-20 10:48 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
4671         * csu/abi-note.S: Emit the note directly instead of defining
4672         a preprocessor macro that's only used once.  Don't include sysdep.h.
4673         * abi-tags: Generalize Solaris entry.
4675 1998-09-18  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4677         * sysdeps/unix/bsd/getpt.c (__libc_ptyname1, __libc_ptyname2):
4678         Change to array to avoid runtime relocation.
4679         * sysdeps/unix/sysv/linux/ptsname.c: Update declarations.
4681 1998-09-21 12:22  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4683         * malloc/Makefile ($(objpfx)libmcheck.a): Fix use of $(LN_S).
4684         * math/Makefile ($(objpfx)libieee.a): Likewise.
4686 1998-09-21  Ulrich Drepper  <drepper@cygnus.com>
4688         * sysdeps/generic/getpt.c: Fix order of argument to weak_alias.
4689         Patch by John Tobey <jtobey@banta-im.com>.
4691 1998-09-20  Ulrich Drepper  <drepper@cygnus.com>
4693         * login/Makefile (distribute): Remove pty-internal.h, add
4694         pty-private.h.
4696         * stdlib/tst-strtol.c: Add more checks.
4697         Patch by Zack Weinberg <zack@rabi.columbia.edu>.
4699 1998-09-20 09:37  Ulrich Drepper  <drepper@cygnus.com>
4701         * elf/Versions [GLIBC_2.1] (libc): Add __fpu_control.
4702         * elf/elf.h: Add AT_FPUCW.
4703         * elf/Makefile (dl-routines): Add fpu_control.
4704         (elide-routines.os): Add fpu_control.
4705         (rtld-routines): Add fpu_control.
4706         * math/Makefile (aux): Remove fpu_control.
4707         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Handle AT_FPUCW.
4708         (_dl_show_auxv): Likewise.
4709         * sysdeps/unix/sysv/linux/init-first.c (init): Use __setfpucw only
4710         if different from OS default.
4712         * stdio-common/tstscanf.c: Add test case for (nil).
4714 1998-09-18 17:41  Ulrich Drepper  <drepper@cygnus.com>
4716         * libio/fileops.c (_IO_new_file_underflow): Before allocating
4717         buffer make sure the pushback buffer is destroyed.
4718         (_IO_new_file_seekoff): Likewise.
4719         If mode==0 quit early with the result.
4720         Clear OEF flag after successful fseek.
4721         * libio/libio.h (_IO_FILE_complete): Add _IO_save_ptr.
4722         * libio/ftello.c (ftello): Add offset from original buffer if
4723         stream has pushed back characters.
4724         * libio/ftello64.c (ftello64): Likewise.
4725         * libio/iofgetpos.c (_IO_fgetpos): Likewise.
4726         * libio/iofgetpos64.c (_IO_fgetpos64): Likewise.
4727         * libio/ioftell.c (_IO_ftell): Likewise.
4728         * libio/genops.c (_IO_switch_to_main_get_area): Swap _IO_read_ptr
4729         and _IO_save_ptr.
4730         (_IO_switch_to_backup_area): Save _IO_read_ptr in _IO_save_ptr.
4731         (_IO_default_pbackfail): Only stored push back character in original
4732         buffer if it is the same as the one in the file at this position.
4733         * libio/iofclose.c: Free backup buffer if one is available.
4734         * libio/ioseekoff.c (_IO_seekoff): Only remove pushback buffer if
4735         mode!=0.
4737         * strdlib/strtol.c (strtol): Handle 0x... string for base!=0 correctly.
4739         * time/strftime.c [_LIBC] (ampm): Use tp->tm_hour not hour12.
4741         * stdio-common/vfscanf.c: Fix reading (nil) for %p.
4743 1998-09-18  Mark Kettenis  <kettenis@phys.uva.nl>
4745         * login/programs/pt_chown.c (more_help): Correct message that
4746         describes the purpose of the program.
4748         * login/openpty.c: Do not include pty-private.h.
4749         (pts_name): New function.  Return name of slave pseudo terminal in
4750         an allocated buffer if necessary.
4751         (openpty): Use pts_name to get name of the slave end of the pseudo
4752         terminal pair.
4754         * sysdeps/unix/grantpt.c (grantpt): Free buffer allocated by
4755         pts_name before return.
4757 1998-09-18 11:15  Ulrich Drepper  <drepper@cygnus.com>
4759         * math/math.h: Define __NO_MATH_INLINES if __STRICT_ANSI__.
4761 1998-09-18  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4763         * login/openpty.c: Include pty-private.h instead of
4764         pty-internal.h.
4766 1998-09-09  Philip Blundell  <pb@nexus.co.uk>
4768         * sysdeps/arm/dl-machine.h (elf_machine_lazy_rel): Optimise a bit.
4770 1998-09-07  Philip Blundell  <pb@nexus.co.uk>
4772         * sysdeps/arm/dl-machine.h (RTLD_START): Keep in step with
4773         recent ld.so changes.
4774         (elf_machine_runtime_setup): Correct behaviour when profiling.
4776 1998-09-17 19:34  Ulrich Drepper  <drepper@cygnus.com>
4778         * sysdeps/unix/sysv/sysv4/bits/utsname.h: Fix typo.
4779         Patch by John Tobey <jtobey@banta-im.com>.
4781 1998-09-17  Mark Kettenis  <kettenis@phys.uva.nl>
4783         * login/pty-internal.h: Removed.  Moved constants related to the
4784         `grantpt' helper program protocol to ...
4785         * login/pty-private.h: ... here.  New file.
4786         * sysdeps/unix/sysv/linux/ptsname.c (ptsname): Reimplementation
4787         to make the function work with kernels >= 2.1.115.
4788         * sysdeps/unix/sysv/linux/getpt.c (getpt): Reimplement to call BSD
4789         version if using the cloning device fails.
4790         * sysdeps/unix/sysv/linux/grantpt.c: New file.
4791         * sysdeps/unix/sysv/linux/unlockpt.c: General cleanup.
4792         * sysdeps/unix/bsd/getpt.c (__getpt): Largely rewritten to allow
4793         use by Linux specific code.
4794         * sysdeps/unix/bsd/unlockpt.c: General cleanup.
4795         * sysdeps/unix/grantpt.c: Largely rewritten.  (pts_name): New
4796         function.  (grantpt): Use pts_name, check group and permission
4797         mode in addition to owner.  Try to set the owner, group and
4798         permission mode first without invoking the helper program.
4799         * login/programs/pt_chown.c: Largely rewritten.  Add argp and
4800         internationalization support.  Use symbolic constants instead of
4801         hardwired numbers for permission mode.
4802         * sysdeps/unix/bsd/ptsname.c: New file.
4804 1998-09-17 22:04  Tim Waugh  <tim@cyberelk.demon.co.uk>
4806         * posix/wordexp-test.c: Undo last change.
4808         * posix/wordexp.c: Undo last change.
4810 1998-09-16  Ulrich Drepper  <drepper@cygnus.com>
4812         * nscd/grpcache.c (save_grp): Partly undo last change.
4814         * nscd/pwdcache.c (save_pwd): Undo last change.
4816 1998-09-14  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4818         * sysdeps/mach/hurd/dl-cache.c (_dl_unload_cache): New dummy
4819         function.  Reported by okuji@kuicr.kyoto-u.ac.jp [PR libc/789].
4821 1998-09-15  David S. Miller  <davem@pierdol.cobaltmicro.com>
4823         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup):
4824         Add profiling support.
4825         (TRAMPOLINE_TEMPLATE): New macro.
4826         (ELF_MACHINE_RUNTIME_TRAMPOLINE): Define in terms of that.
4827         (RTLD_START): Prettify, and set __libc_stack_end properly.
4828         (elf_machine_rela) [R_SPARC_COPY]: Remove RTLD_BOOTSTRAP ifndef
4829         and check for sym being NULL instead.
4830         * sysdeps/sparc/sparc64/addmul_1.S: Adjust to allocate 192 bytes
4831         of stack space.
4832         * sysdeps/sparc/sparc64/lshift.S: Likewise.
4833         * sysdeps/sparc/sparc64/mul_1.S: Likewise.
4834         * sysdeps/sparc/sparc64/rshift.S: Likewise.
4835         * sysdeps/sparc/sparc64/submul_1.S: Likewise.
4836         * sysdeps/sparc/sparc64/elf/crtbegin.S: Likewise and remove old
4837         MEDANY code model %g4 usage.
4838         * sysdeps/sparc/sparc64/elf/crtend.S: Likewise and remove old
4839         MEDANY code model %g4 usage.
4840         * sysdeps/sparc/sparc64/elf/start.S: Rework to not use old FULLANY
4841         code model address formation.
4842         * sysdeps/sparc/sparc64/dl-machine.h: Don't include link.h, do
4843         include elf/ldsodefs.h
4844         (DT_SPARC): Remove.
4845         (elf_machine_matches_host): It is now EM_SPARCV9.
4846         (elf_machine_dynamic): Clean up to remove ugly cast.
4847         (elf_machine_fixup_plt): Rework for new V9 ABI, add support for
4848         new PLT formats.
4849         (elf_machine_rela): Don't do anything at all for R_SPARC_NONE.
4850         Prettify rest of function.
4851         [R_SPARC_COPY]: Check for sym being NULL.
4852         [R_SPARC_32]: Handle it.
4853         [R_SPARC_H44, R_SPARC_M44, R_SPARC_L44]: Handle them for the
4854         MEDMID code model.
4855         [R_SPARC_HH22, R_SPARC_HM10, R_SPARC_LM22]: Handle them for the
4856         MEDANY code model.
4857         [R_SPARC_NONE]: Remove this case, as it is now checked earlier.
4858         (elf_machine_runtime_setup): Rewrite for new V9 ABI plt formats.
4859         Add profiling support.
4860         (TRAMPOLINE_TEMPLATE): New macro.
4861         (ELF_MACHINE_RUNTIME_TRAMPOLINE): Define in terms of that.
4862         (RTLD_START): Prettify and set __libc_stack_end.
4863         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h (SA_SIGINFO):
4864         Define.
4865         * sysdeps/unix/sysv/linux/sparc/bits/signum.h (_NSIG): Set to 64.
4866         (SIGRTMIN, SIGRTMAX, __SIGRTMIN, __SIGRTMAX): Define.
4867         * sysdeps/unix/sysv/linux/sparc/sparc32/brk.c (__brk): Remove
4868         unused variable scratch.
4869         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
4870         (__syscall_rt_sigaction, __rt_sigreturn_stub, __sigreturn_stub):
4871         Declare.
4872         (__sigaction): Rewrite rt_sigaction case to pass correct sigreturn
4873         stub to rt_sigaction syscalls.  Rewrite non-rt case to use correct
4874         old format kernel sigaction structures.
4875         * sysdeps/unix/sysv/linux/sparc/sparc64/ucontext.h: Move...
4876         * sysdeps/unix/sysv/linux/sparc/sparc64/sys/ucontext.h: to here.
4877         * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: Remove ucontext.h
4878         * sysdeps/unix/sysv/linux/sparc/sparc64/bits/setjmp.h: Fix
4879         ucontext include.
4880         (_JMPBUF_UNWINDS): Define.
4881         * sysdeps/unix/sysv/linux/sparc/sparc64/bits/statfs.h: Declare
4882         statfs64 structure, which is exactly the same as the normal one.
4883         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Allocate 192 bytes
4884         of stack.  Use correct syscall trap number.  Add branch prediction
4885         settings to branch instructions.  Remove old MEDANY code model %g4
4886         referneces for non-PIC.
4887         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Likewise.
4888         * sysdeps/unix/sysv/linux/sparc/sparc64/init-first.h: Likewise.
4889         * sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S: Likewise.
4890         * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
4891         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
4892         * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Add
4893         __libc_longjmp and __libc_siglongjmp strong aliases.
4894         * sysdeps/unix/sysv/linux/sparc/sparc64/readdir.c (__readdir64):
4895         Also define to __no__readdir64_decl around readdir.c inclusion.
4896         (__readdir64): Add strong alias.
4897         * sysdeps/unix/sysv/linux/sparc/sparc64/socket.S: New file.
4898         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (getrlimit):
4899         Set strong and weak names properly.
4901 1998-09-16 11:25  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4903         * manual/Makefile (AWK): Default to gawk if standalone.
4905 1998-09-15  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4907         * Makefile (distribute): Undo last change.
4908         * Make-dist (+tsrc) [not subdir]: Also include indirection headers
4909         for sysdep headers.
4910         (+subdir-headers): Removed, unused.
4912 1998-09-15  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4914         * stdio-common/Makefile ($(inst_includedir)/bits/stdio_lim.h): Use
4915         $(do-install).
4917 1998-09-15  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4919         * Makerules ($(+sysdir_pfx)sysd-Makefile): Don't check for
4920         absolute name in $(config-sysdirs), can never happen.
4921         ($(+sysdir_pfx)sysd-rules): Likewise.
4922         * Makeconfig (full-config-sysdirs): Likewise.
4923         (all-Subdirs-files): Prepend $(..).
4925         * configure.in: Don't check for absolute name in $add_ons_pfx, can
4926         not happen.  Let --enable-add-ons=yes work if no add-ons actually
4927         exist.
4929 1998-09-15  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4931         * Rules ($(common-objpfx)bits/stdio_%.h): Remove extra
4932         continuations in command.
4934 1998-09-15  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4936         * libio/oldstdfiles.c (_IO_stdin_used): Update declaration.
4938 1998-09-16 00:47  Tim Waugh  <tim@cyberelk.demon.co.uk>
4940         * posix/wordexp-test.c: If expansion or substitution occurs
4941         anywhere in a word, the entire word is subject to field-splitting.
4943         * posix/wordexp.c (parse_glob): Look for end of word instead of
4944         end of field when deciding what to glob.
4945         (field_split_word): New function, now the only place where
4946         field-splitting is performed.
4947         (parse_dollars): New parameter - tell the caller if
4948         field-splitting should be performed on this word.
4950         * posix/wordexp-test.c (testit): Only call wordfree if wordexp
4951         succeeded (or failed with WRDE_NOSPACE).
4953 1998-09-15 19:53 1998  Tim Waugh  <tim@cyberelk.demon.co.uk>
4955         * posix/wordexp.c (wordexp): Don't convert IFS characters to
4956         blanks.
4958         * posix/wordexp-test.c: Words not the result of expansion or
4959         substitution should remain unchanged.
4961 1998-09-15  Ulrich Drepper  <drepper@cygnus.com>
4963         * elf/dynamic-link.h [!ELF_MACHINE_PLTREL_OVERLAP]
4964         (_ELF_DYNAMIC_DO_RELOC): Correctly set ranges[1].lazy.
4966 1998-09-15  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
4968         * stdio-common/Makefile: Include Makeconfig so that
4969         $(inst_includedir) is defined.
4971 1998-09-14  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4973         * io/pwd.c: Include <mcheck.h>.
4975 1998-09-15 08:00  Ulrich Drepper  <drepper@cygnus.com>
4977         * nscd/pwdcache.c (save_pwd): Correct copying.
4978         * nscd/grpcache.c (save_grp): Likewise.
4980 1998-09-14 23:36  Ulrich Drepper  <drepper@cygnus.com>
4982         * nscd/pwdcache.c (save_pwd): Rewrite to use only one malloc call.
4983         (free_pwd): Adjust for this change.
4984         * nscd/grpcache.c (save_grp): Rewrite to use only one malloc call.
4985         (free_grp): Adjust for this change.
4987 1998-09-14  Ulrich Drepper  <drepper@cygnus.com>
4989         * nscd/pwdcache.c (cache_pwdinit): Allocate uidtbl of correct size.
4991 1998-09-14 15:29  Ulrich Drepper  <drepper@cygnus.com>
4993         * stdio-common/Makefile (headers): Remove bits/stdio_lim.h.
4994         (install-others): Add bits/stdio_lim.h.
4995         Add rule to install bits/stdio_lim.h.
4997         * sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: New file.
4999         * Makefile (distribute): Add include/sys/mman.h.
5001         * sysdeps/powerpc/Dist: Add dl-machine.c and dl-start.S.
5002         * sysdeps/unix/sysv/linux/Dist: Add sys/sendfile.h.
5003         * sysdeps/unix/sysv/linux/arm/Dist: Add init-first.h.
5005         * grp/initgroups.c: Include stdlib.h.
5006         Patch by Zack Weinberg.
5008 1998-09-14 22:46  Tim Waugh  <tim@cyberelk.demon.co.uk>
5010         * posix/wordexp-test.c: Chet Ramey confirmed that bash's behaviour
5011         for field-splitting :abc: is correct, and that two fields should
5012         result. Revert tests to reflect this.
5014         * posix/wordexp.c (w_emptyword): Remove function.
5015         (exec_comm): Don't use w_emptyword.
5016         (parse_param): Likewise.
5018 1998-09-14 15:00  Ulrich Drepper  <drepper@cygnus.com>
5020         * sysdeps/arm/fpu/Dist: Moved to...
5021         * sysdeps/arm/Dist: ...here.
5022         * sysdeps/posix/Dist: Removed.
5023         * sysdeps/unix/sysv/linux/Dist: Move sys/debugreg.h to...
5024         * sysdeps/unix/sysv/linux/i386/Dist: ...here.
5026 1998-08-26  Geoff Keating  <geoffk@ozemail.com.au>
5028         * csu/init.c: Don't drag _IO_2_1_stdin_ into the executable.
5030 1998-09-14 11:26  Ulrich Drepper  <drepper@cygnus.com>
5032         * wcsmbs/wcsmbs-tst1.c: Include stdlib.h.
5034 1998-09-14  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
5036         * libc-work/nis/nss_nisplus/nisplus-service.c
5037         (_nss_nisplus_parse_servent): Convert port in network byte order.
5039 1998-09-14 07:53 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
5041         * stdlib/stdlib.h: Add a switch, __need_malloc_and_calloc,
5042         to provide only malloc and calloc.
5043         * include/stdlib.h: Support the above.
5044         * string/bits/string2.h: Use __need_malloc_and_calloc when
5045         including stdlib.h.
5046         (__string2_1bptr_p): Avoid -Wbad-function-cast warnings.
5048         * iconvdata/iso-2022-jp.c: Include <stdlib.h>.
5049         * iconvdata/iso646.c: Include <stdlib.h>.
5051 1998-09-14 07:51 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
5053         * sunrpc/rpc_cout.c: Add braces around ambiguous else.
5054         * sysdeps/libm-ieee754/w_pow.c: Likewise.
5055         * sysdeps/libm-ieee754/w_powf.c: Likewise.
5056         * sysdeps/libm-ieee754/w_powl.c: Likewise.
5058 1998-09-14 07:57 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
5060         * stdio-common/stdio_lim.h.in: New file.  All parameters
5061         are adjustable at build time.
5062         * Rules: Add a rule to build bits/stdio_lim.h from
5063         stdio-common/stdio_lim.h.in.  (It has to be in Rules so that
5064         all subdirectories know how to make the file.  It can't be
5065         in Makerules because then it gets built at top level and the
5066         dependencies are wrong.)
5068         * stdio-common/Makefile (distribute): Add stdio_lim.h.in.
5069         * sysdeps/unix/sysv/linux/Makefile: Delete rules to make
5070         stdio_lim.h.
5071         * sysdeps/unix/sysv/linux/stdio_lim.h.in: Removed.
5072         * sysdeps/unix/sysv/linux/Dist: Take out stdio_lim.h.in.
5073         * sysdeps/posix/Makefile: Removed.
5074         * sysdeps/posix/mk-stdiolim.c: Removed.
5075         * sysdeps/generic/bits/stdio_lim.h: Removed.
5077 1998-09-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5079         * argp/argp-help.c: Fixup indentation.
5080         * nss/nss_files/files-alias.c: Quiet -Wparentheses warning.
5081         * resolv/nss_dns/dns-network.c: Likewise.
5082         * resolv/res_send.c: Likewise.
5083         * rt/aio_cancel.c: Likewise.
5084         * rt/aio_misc.c: Likewise.
5086 1998-09-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5088         * Makefile (install-symbolic-link): Remove the link list file at last.
5089         * Makerules (install-clean-symbolic-link-list): Removed.
5091 1998-09-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5093         * timezone/tst-timezone.c: Print time in UTC to get consistent
5094         output.
5096 1998-09-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5098         * elf/rtld.c (_dl_rpath): Removed.
5099         * elf/dl-support.c (_dl_path): Removed.
5100         * elf/Makefile ($(objpfx)ld.so): Don't pass -rpath.
5101         (CFLAGS-dl-support.c): Removed.
5103         * elf/dl-load.c (env_path_list): Renamed from fake_path_list.  All
5104         uses changed.
5105         (_dl_init_paths): Always set env_path_list from LD_LIBRARY_PATH,
5106         instead of appending it to the main map's rpath info.
5107         (_dl_map_object): Consistently use LD_LIBRARY_PATH after all
5108         DT_RPATHs.  This makes it effective again.
5109         (decompose_rpath): Remove second parameter, callers changed.
5110         (fillin_rpath): Allocate enough space in curwd.
5111         (expand_dynamic_string_token): Cope with get_origin returning -1.
5113 1998-09-14  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
5115         * libc-work/nis/nss_compat/compat-pwd.c: Add support for
5116         passwd.adjunct.
5118         * nis/nss_nis/nis-pwd.c (_nss_nis_getpwent_r): Correct test for
5119         invalid password.
5121 1998-09-13 18:06  Ulrich Drepper  <drepper@cygnus.com>
5123         * locale/programs/locale.c: Update dates.
5125 1998-09-13  Mark Kettenis  <kettenis@phys.uva.nl>
5127         * sysdeps/generic/bits/types.h: Include <features.h>.  Make sure
5128         size_t is defined.  Some reordering of definitions to make
5129         maintaining this file in parallel with the linux-specific file easier.
5131 1998-09-13  Ulrich Drepper  <drepper@cygnus.com>
5133         * io/pwd.c (main): Add call to mtrace.
5135         * malloc/mtrace.pl: Quote @ in string.
5137 1998-09-13 19:25  Tim Waugh  <tim@cyberelk.demon.co.uk>
5139         * posix/wordexp.c (parse_arith): Fix memory leaks.
5140         (exec_comm): Likewise.
5141         (parse_param): Likewise.
5142         (wordexp): Likewise.
5143         (exec_comm): Reduce number of function return points.
5144         (parse_param): Likewise.
5145         (wordexp): Likewise.
5147 1998-09-13 14:53  Tim Waugh  <tim@cyberelk.demon.co.uk>
5149         * posix/wordexp-test.c: Field-splitting ':abc:' with IFS=: should
5150         yield three fields, not two.  Test both parameter expansion and
5151         command substitution for correct field-splitting behaviour.
5153         * posix/wordexp.c (w_emptyword): New function.
5154         (parse_param): Use it.
5155         (exec_comm): Likewise, for consistency with the way parse_param
5156         splits fields.
5157         (parse_param): Fix some memory leaks.
5159 1998-09-13 18:04  Geoff Keating  <geoffk@ozemail.com.au>
5161         * sysdeps/powerpc/dl-machine.c (PPC_DCBST,PPC_SYNC,PPC_ISYNC,PPC_ICBI):
5162         Don't mark asm `volatile'.
5163         (__elf_machine_runtime_setup): Clear the last partial block in the PLT
5164         from the data cache too.  Assume it isn't in the instruction cache yet.
5165         (__elf_machine_fixup_plt): Clear the modified address from the caches.
5167 1998-09-12  Mark Kettenis  <kettenis@phys.uva.nl>
5169         * sysdeps/generic/segfault.c (install_handler): Install signal
5170         handler with SA_ONSTACK instead of setting the stack flags to
5171         SS_ONSTACK.  Do not install handler for SIGSTKFLT if it is not
5172         defined.
5174 1998-09-12 14:24 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
5176         * signal/signal.h: Fix multiple inclusion guard to cover the
5177         entire file.
5178         * wcsmbs/wchar.h: Remove prototype of internal function
5179         __mbsrtowcs.
5180         * sysdeps/i386/i486/bits/string.h (memchr): Don't do
5181         arithmetic on `void *'.
5183 1998-09-12 01:09  Tim Waugh  <tim@cyberelk.demon.co.uk>
5185         * posix/wordexp-test.c: Fix wrong tests.  Add new tests.
5187         * posix/wordexp.c (wordexp): Perform word-splitting instead of
5188         field-splitting here.
5189         (wordexp): If out of memory mid-word, free the word (but still
5190         leave pwordexp alone for caller to see).
5191         (parse_param): Allow for zero-length fields (smarter checking of
5192         memory allocation failure).
5193         (w_addword): Convert NULL words to "".
5194         (wordexp): Convert left-over IFS characters to blanks (like bash).
5196 1998-09-11  Ulrich Drepper  <drepper@cygnus.com>
5198         * configure.in: Use test -f instead of test -e.
5199         Patch by John Tobey <jtobey@banta-im.com>.
5201         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sys/trap.h: New file.
5202         * sysdeps/unix/sysv/sysv4/solaris2/sys/syscall.h: New file.
5203         * sysdeps/unix/sysv/sysv4/solaris2/bits/sigstack.h: New file.
5204         * sysdeps/unix/sysv/linux/sigstack.c: Fix typo.
5205         * sysdeps/unix/sysv/sysv4/solaris2/sigwaitinfo.c: Fix typo.
5206         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sys/ucontext.h: New file.
5207         * sysdeps/unix/sysv/sysv4/solaris2/sys/param.h: New file.
5208         Patches by John Tobey <jtobey@banta-im.com>.
5210         * time/strftime.c (my_strftime): Delay use of *tp values until
5211         latest possible point to allow partly initialized structures
5212         (e.g., from strptime).
5214         * iconvdata/Makefile (modules): Add ISO_10367-BOX, MAC-IS, NATS-DANO,
5215         and NATS-SEFI.
5216         Define *-routines variables for new modules.
5217         (distribute): Add .c files for new modules.
5218         (awk-generated-headers): Add iso_10367-box.h, mac-is.h, nats-dano.h,
5219         and nats-sefi.h.
5220         Add rules for header generation.
5221         * iconvdata/gconv-modules: Add entries for new modules.
5222         * iconvdata/iso_10367-box.c: New file.
5223         * iconvdata/mac-is.c: New file.
5224         * iconvdata/nats-dano.c: New file.
5225         * iconvdata/nats-sefi.c: New file.
5227 1998-04-30 18:20  H.J. Lu  <hjl@gnu.org>
5229         * elf/dl-load.c (_dl_init_paths): Don't check the dynamic
5230         loader if PIC is not defined.
5232 1998-09-11  Ulrich Drepper  <drepper@cygnus.com>
5234         * iconvdata/Makefile (modules): Add CSN_369103, CWI, DEC-MCS,
5235         ECMA-CYRILLIC, GOST_19768-74, GREEK-CCITT, GREEK7, GREEK7-OLD, INIS,
5236         INIS-8, INIS-CYRILLIC, ISO_6937-2, ISO_2033, ISO_5427, ISO_5427-EXT,
5237         and ISO_5428.
5238         Define *-routines variables for new modules.
5239         (distribute): Add .c files for new modules.
5240         (awk-generated-headers): Add csn_369103.h, cwi.h, dec-mcs.h,
5241         ecma-cyrillic.h, gost_19768-74.h, greek-ccitt.h, greek7.h,
5242         greek7-old.h, inis.h, inis-8.h, inis-cyrillic.h, iso_2033.h,
5243         iso_5427.h, iso_5427-ext.h, and iso_5428.h.
5244         Add rules for header generation.
5245         * iconvdata/gconv-modules: Add entries for new modules.
5246         * iconvdata/csn_369103.c: New file.
5247         * iconvdata/cwi.c: New file.
5248         * iconvdata/dec-mcs.c: New file.
5249         * iconvdata/ecma-cyrillic.c: New file.
5250         * iconvdata/gost_19768-74.c: New file.
5251         * iconvdata/greek-ccitt.c: New file.
5252         * iconvdata/greek7-old.c: New file.
5253         * iconvdata/greek7.c: New file.
5254         * iconvdata/inis-8.c: New file.
5255         * iconvdata/inis-cyrillic.c: New file.
5256         * iconvdata/inis.c: New file.
5257         * iconvdata/iso6937-2.c: New file.
5258         * iconvdata/iso_2033.c: New file.
5259         * iconvdata/iso_5427-ext.c: New file.
5260         * iconvdata/iso_5427.c: New file.
5261         * iconvdata/iso_5428.c: New file.
5263         * iconvdata/iso6937.c (from_ucs4): Correct 0x80, 0x81, and 0xb9
5264         entries.
5265         Convert U02dd correctly.
5267 1998-09-11 20:46  Richard Henderson  <rth@cygnus.com>
5269         * sysdeps/alpha/dl-machine.h (_dl_start_user): Pass pointer to
5270         _dl_main_searchlist not _dl_default_scope to _dl_init_next.
5271         * sysdeps/sparc/sparc32/dl-machine.h (_dl_start_user): Likewise.
5272         * sysdeps/sparc/sparc64/dl-machine.h (_dl_start_user): Likewise.
5274 1998-09-11  Ulrich Drepper  <drepper@cygnus.com>
5276         * resolv/res_init.c (res_init): Handle resolv.conf file with only
5277         one nameserver correctly.  Patch by HJ Lu.
5279         * iconvdata/Makefile (modules): Add IEC_P27-1, BALTIC, ASMO_449,
5280         and ANSI_X3.110.
5281         Define *-routines variables for new modules.
5282         (distribute): Add .c files for new modules.
5283         (awk-generated-headers): Add iec_p27-1.h, baltic.h, and asmo_449.h.
5284         Add rules for hedaer generation.
5285         * iconvdata/gconv-modules: Add entries for new modules.  Pretty print.
5286         * iconvdata/ansi_x3.110.c: New file.
5287         * iconvdata/asmo_449.c: New file.
5288         * iconvdata/baltic.c: New file.
5289         * iconvdata/iec_p27-1.c: New file.
5291         * iconvdata/t61.c (from_ucs4): Correct 0x23, 0x24, 0x80, and 0x81
5292         entries.
5293         Convert U02dc correctly.
5295         * math/atest-exp.c: Add parentheses to avoid gcc warnings.
5296         * math/atest-exp2.c: Likewise.
5297         * math/atest-sincos.c: Likewise.
5299         * posix/getopt.h: Don't define non-POSIX stuff unless _GNU_SOURCE
5300         is defined.
5302 1998-09-11 10:51  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5304         * string/strcoll.c: Optimize a few expressions.
5305         * string/strxfrm.c: Likewise.
5307 1998-09-02  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
5309         * manual/locale.texi: Fix typos.
5311 1998-09-10  Ulrich Drepper  <drepper@cygnus.com>
5313         * stdlib/random_r.c (__setstate_r): Allow call with same state
5314         array as currently used (PR libc/774).
5316         * include/limits.h: Include gcc's header even if this file is
5317         found more than once before it (PR libc/778)
5319         * sysdeps/unix/sysv/linux/Makefile [subdir==misc]
5320         (sysdep_headers): Remove sys/debugreg.h.
5321         * sysdeps/unix/sysv/linux/i386/Makefile [subdir==misc]
5322         (sysdep_headers): Add sys/debugreg.h.
5323         * sysdeps/unix/sysv/linux/sys/debugreg.h: Removed.
5324         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: New file.
5326         * stdio-common/tmpnam.c: Move local static variable buf to
5327         toplevel and rename to tmpnam_buffer to ease debugging.
5328         Patch by Joe Keane <jgk@jgk.org>.
5329         Optimize s == NULL case a bit.
5331         * iconvdata/testdate/ISO-8859-10..UCS2: Update after charmap
5332         correction.
5334 1998-09-10 12:51  Ulrich Drepper  <drepper@cygnus.com>
5336         * resolv/res_init.c (res_init): Initialize _res.nscount and
5337         _res.nsaddr.sin_port differently for the can when no loopback
5338         is available to allow immediate timeout in non-networking environments.
5339         Patch by Cristian Gafton <gafton@redhat.com>.
5341 1998-09-10  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
5343         * localedata/charmaps/ISO-8859-10: Character 0xBD is HORIZONTAL
5344         BAR and not EM DASH.
5345         * localedata/charmaps/ISO_8859-SUPP: Likewise (character 0xD0).
5346         * localedata/charmaps/ISO-8859-7: Likewise (character 0xAF).
5347         Fixes PR libc/717.
5349 1998-09-10 11:53  Ulrich Drepper  <drepper@cygnus.com>
5351         * timezone/Makefile: Add rules to generate Asia/Tokyo zoneinfo files
5352         for test.
5353         * timezone/tst-timezone.c (tests): Fix typo in last patch.
5355         * time/tzfile.c (__tzfile_read): Handle case when there are no
5356         transitions.  Set __timezone based on computed offset.
5357         * time/tzset.c (tzset_internal): Set __timezone before returning.
5359         * time/tzset.c (tzset_internal): Optimize handling of local string
5360         copy.
5362 1998-09-10  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
5364         * timezone/tst-timezone.c (tests): Add test for Asia/Tokyo (see PR
5365         libc/776).
5367 1998-09-09  Benjamin Kosnik  <bkoz@tintin.cygnus.com>
5369         * math/libm-test.c (exp10_test): Adapt epsilons for powerpc.
5370         (csqrt_test): Likewise.
5371         * sysdeps/powerpc/bits/fenv.h: Add parens.
5373 1998-09-09 18:48  Ulrich Drepper  <drepper@cygnus.com>
5375         * sysdeps/powerpc/dl-start.S (_start): Pass pointer to
5376         _dl_main_searchlist not _dl_default_scope to _dl_init_next.
5377         Patch by Benjamin Kosnik <bkoz@cygnus.com>.
5379 1998-09-09  Mark Kettenis  <kettenis@phys.uva.nl>
5381         * elf/dl-close.c (_dl_close): Don't free imap->l_origin if it is
5382         the special `-1' pointer.
5384 1998-09-09 09:32  Ulrich Drepper  <drepper@cygnus.com>
5386         * sysdeps/powerpc/dl-machine.h (elf_machine_rela): Make function
5387         inline.
5389 1998-09-07  Paul Eggert  <eggert@twinsun.com>
5391         * time/mktime.c (__EXTENSIONS__): Define if not defined.
5392         (_REENTRANT): Remove.  It has undesirable consequences in
5393         Solaris 2.6 (e.g. it turns off the putc macro).  Defining
5394         __EXTENSIONS__ makes localtime_r and gmtime_r visible, which
5395         is what we want.
5396         * time/strftime.c: Likewise.
5398 1998-09-08  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5400         * elf/dl-error.c: Fix spelling.
5402 1998-09-08  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5404         * stdlib/strfmon.c: Quiet -Wparentheses warnings.
5405         * stdio-common/_itoa.c: Likewise.
5406         * stdio-common/printf_fp.c: Likewise.
5407         * stdio-common/vfscanf.c: Likewise.
5408         * wcsmbs/wcstok.c: Likewise.
5409         * sysdeps/generic/glob.c: Likewise.
5410         * posix/getopt.c: Likewise.
5411         * sysdeps/posix/getaddrinfo.c: Likewise.
5412         * posix/wordexp.c: Likewise.
5413         * io/ftw.c: Likewise.
5414         * io/fts.c: Likewise.
5415         * misc/getpass.c: Likewise.
5416         * iconv/gconv_conf.c: Likewise.
5417         * argp/argp-fmtstream.c: Likewise.
5418         * argp/argp-help.c: Likewise.
5419         * elf/dl-load.c: Likewise.
5420         * locale/programs/stringtrans.c: Likewise.
5421         * catgets/gencat.c: Likewise.
5422         * posix/getconf.c: Likewise.
5423         * iconv/gconv_conf.c: Likewise.
5424         * iconv/iconv_prog.c: Likewise.
5426         * string/strcoll.c: Optimize a few expressions.
5427         * string/strxfrm.c: Likewise.
5429 1998-09-08  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5431         * elf/dl-open.c (dl_open_worker): Move decl of new_global up one
5432         level to avoid uninit variable warning.
5434 1998-09-09 10:34  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5436         * sysdeps/m68k/dl-machine.h(RTLD_START): Push _dl_main_searchlist
5437         instead of _dl_default_scope[2] as argument to _dl_init_next.
5439         * sysdeps/m68k/fpu/bits/mathinline.h (isinf): Avoid conflict with
5440         C9x macro.
5442 1998-09-08  Ulrich Drepper  <drepper@cygnus.com>
5444         Fix compatibility problems introduced in last change.
5445         * csu/initfini.c: Don't define __gmon_start__ if WEAK_GMON_START is
5446         defined.
5447         * sysdeps/unix/sysv/linux/i386/Makefile [subdir==csu]: Add
5448         -DWEAK_GMON_START to CFLAGS-initfini.s.
5450         * elf/dl-object.c (_dl_new_object): Store map address in
5451         _dl_loaded if _dl_loaded is NULL.
5452         * elf/rtld.c (dl_main): Don't update _dl_loaded here.
5454         * sysdeps/generic/setrlimit64.c: Remove stub warning.
5456 1998-09-07  Ulrich Drepper  <drepper@cygnus.com>
5458         * db2/common/db_apprec.c (__db_apprec): Add braces to make gcc
5459         quiet.
5460         * db2/btree/bt_cursor.c: Likewise.
5461         * db2/common/db_region.db_c: Likewise.
5462         * db2/common/db_salloc.db_c: Likewise.
5463         * db2/db/db.c: Likewise.
5464         * db2/db/db_rec.c: Likewise.
5465         * db2/hash/hash.c: Likewise.
5466         * db2/hash/hash_page.c: Likewise.
5467         * db2/hash/hash_rec.c: Likewise.
5468         * db2/log/log_findckp.c: Likewise.
5469         * db2/log/log_get.c: Likewise.
5470         * db2/log/log_put.c: Likewise.
5471         * db2/mp/mp_fget.c: Likewise.
5472         * db2/mp/mp_fput.c: Likewise.
5473         * db2/mp/mp_region.c: Likewise.
5474         * stdlib/strtol.c: Likewise.
5475         * string/strcoll.c: Likewise.
5476         * string/strxfrm.c: Likewise.
5477         * argp/argp-help.c: Likewise.
5478         * argp/argp-parse.c: Likewise.
5479         * resolv/res_debug.c: Likewise.
5481 1998-09-07 09:58  Ulrich Drepper  <drepper@cygnus.com>
5483         * math/tgmath.h (scalb): Only define for __USE_MISC or
5484         __USE_XOPEN_EXTENDED.  Patch by Zack Weinberg.
5486 1998-09-06  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5488         * libio/stdio.h: Fix comment.
5490         * stdio/stdio.h: Make vfscanf, vscanf and vsscanf available if
5491         __USE_ISOC9X.
5493 1998-09-06 09:53 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
5495         * Makeconfig (+gccwarn): Remove -Wno-parentheses.
5497         * elf/dl-open.c: Quiet -Wparentheses warnings.
5498         * iconvdata/johab.c: Likewise.
5499         * iconvdata/uhc.c: Likewise.
5500         * inet/inet_net.c: Likewise.
5501         * io/fts.c: Likewise.
5502         * locale/newlocale.c: Likewise.
5503         * misc/getttyent.c: Likewise.
5504         * misc/mntent_r.c: Likewise.
5505         * misc/ttyslot.c: Likewise.
5506         * nscd/nscd_conf.c: Likewise.
5507         * nss/nsswitch.c: Likewise.
5508         * resolv/gethnamaddr.c: Likewise.
5509         * resolv/nsap_addr.c: Likewise.
5510         * resolv/res_debug.c: Likewise.
5511         * stdio-common/_itoa.c: Likewise.
5512         * stdlib/strtod.c: Likewise.
5513         * string/strverscmp.c: Likewise.
5514         * sunrpc/svc.c: Likewise.
5515         * sysdeps/libm-ieee754/e_cosh.c: Likewise.
5516         * sysdeps/libm-ieee754/e_gamma_r.c: Likewise.
5517         * sysdeps/libm-ieee754/e_sinh.c: Likewise.
5518         * sysdeps/posix/getaddrinfo.c: Likewise.
5520 1998-09-06 15:13  Ulrich Drepper  <drepper@cygnus.com>
5522         * elf/dlsym.c (dlsym_doit): Use new RTLD_DEFAULT macro to test
5523         for use of global scope.
5524         * elf/dlvsym.c (dlvsym_doit): Likewise.
5526 1998-09-02  Paul Eggert  <eggert@twinsun.com>
5528         * strftime.c (my_strftime): When mbrlen returns (size_t) -2,
5529         copy the redundant bytes at the end of the format as-is; don't
5530         just copy their first byte and then rescan, as that might get
5531         us an encoding error.
5532         Account correctly for the length of multibyte sequences in the
5533         format.
5535 1998-09-03 20:14  Tim Waugh  <tim@cyberelk.demon.co.uk>
5537         * posix/wordexp-test.c: Add tests for different IFS values.
5538         Change unquoted-newline test so that newline is not in IFS.
5540         * posix/wordexp.c (wordexp): Correct null/unset mix-up when
5541         determining IFS characters.  Return WRDE_BADCHAR for unquoted
5542         special characters _except_ if they are separators.
5544 1998-09-06 10:56  Ulrich Drepper  <drepper@cygnus.com>
5546         * include/tgmath.h: New file.
5548         * libio/stdio.h: Correct reversed #ifs.
5549         Patch by Zack Weinberg.
5551         * manual/creature.texi: Better explain reason for feature select
5552         macros.
5553         Patch by Michael Deutschmann <michael@talamasca.wkpowerlink.com>.
5555 1998-09-06 10:25 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
5557         * include/alloca.h: Add multiple-inclusion guard.
5558         * include/db.h: Likewise.
5559         * include/db_185.h: Likewise.
5560         * include/dlfcn.h: Likewise.
5561         * include/fcntl.h: Likewise.
5562         * include/grp.h: Likewise.
5563         * include/libintl.h: Likewise.
5564         * include/mntent.h: Likewise.
5565         * include/pwd.h: Likewise.
5566         * include/sched.h: Likewise.
5567         * include/search.h: Likewise.
5568         * include/setjmp.h: Likewise.
5569         * include/shadow.h: Likewise.
5570         * include/signal.h: Likewise.
5571         * include/stdio.h: Likewise.
5572         * include/stdlib.h: Likewise.
5573         * include/string.h: Likewise.
5574         * include/termios.h: Likewise.
5575         * include/time.h: Likewise.
5576         * include/ulimit.h: Likewise.
5577         * include/utmp.h: Likewise.
5578         * include/wchar.h: Likewise.
5579         * include/sys/file.h: Likewise.
5580         * include/sys/gmon.h: Likewise.
5581         * include/sys/ioctl.h: Likewise.
5582         * include/sys/mman.h: Likewise.
5583         * include/sys/resource.h: Likewise.
5584         * include/sys/select.h: Likewise.
5585         * include/sys/socket.h: Likewise.
5586         * include/sys/statfs.h: Likewise.
5587         * include/sys/time.h: Likewise.
5588         * include/sys/times.h: Likewise.
5589         * include/sys/wait.h: Likewise.
5591 1998-09-06 09:00  Ulrich Drepper  <drepper@cygnus.com>
5593         * version.h (VERSION): Bump to 2.0.96.
5595         Rewrite runtime linker to be truly thread-safe.  There is now no
5596         global variable specifying the scope.  We create all needed
5597         scopes at the time the link maps are created.
5598         * elf/Versions [GLIBC_2.1]: Add _dl_loaded and _dl_main_searchlist.
5599         * elf/link.h: Add struct r_scope_elem and use this for l_searchlist,
5600         l_symbolic_searchlist, l_scope, and l_local_scope elements in
5601         struct link_map.
5602         * elf/dl-close.c: Rewritten accordingly.
5603         * elf/dl-deps.c: Likewise.
5604         * elf/dl-error.c: Likewise.
5605         * elf/dl-init.c: Likewise.
5606         * elf/dl-load.c: Likewise.
5607         * elf/dl-lookup.c: Likewise.
5608         * elf/dl-object.c: Likewise.
5609         * elf/dl-open.c: Likewise.
5610         * elf/dl-reloc.c: Likewise.
5611         * elf/dl-runtime.c: Likewise.
5612         * elf/dl-support.c: Likewise.
5613         * elf/dl-symbol.c: Likewise.
5614         * elf/dl-version.c: Likewise.
5615         * elf/dlsym.c: Likewise.
5616         * elf/dlvsym.c: Likewise.
5617         * elf/ldsodefs.h: Likewise.
5618         * elf/rtld.c: Likewise.
5619         * iconv/gconv_dl.c: Likewise.
5620         * nss/nsswitch.c: Likewise.
5621         * sysdeps/i386/dl-machine.h: Likewise.
5622         * sysdeps/unix/sysv/linux/i386/dl-librecon.h: Likewise.
5624         * elf/dlfcn.h: Declare dladdr only for __USE_GNU.
5625         Define RTLD_DEFAULT.
5627 1998-09-05  Mark Kettenis  <kettenis@phys.uva.nl>
5629         * sysdeps/mach/hurd/i386/init-first.c (init1): Call
5630         __getopt_clean_environment with __environ instead of envp.
5632 1998-09-05  Roland McGrath  <roland@baalperazim.frob.com>
5634         * sysdeps/mach/hurd/i386/Makefile (omit-deps): Define to crt0.
5636         * string/argz-extract.c (__argz_extract): Add de-consting cast for
5637         setting results.
5639         * string/argz.h (argz_next): Add de-consting cast for return.
5640         * string/argz-next.c (__argz_next): Likewise.
5642         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=inet] (sysdep_headers):
5643         Don't add netinet/udp.h, netinet/ip_icmp.h here.
5644         * sysdeps/gnu/Makefile: Do it here instead.
5645         * sysdeps/unix/sysv/linux/Dist: Move those files from here ...
5646         * sysdeps/gnu/Dist: ... to here.
5648         * sysdeps/unix/sysv/linux/netinet/ip_icmp.h,
5649         sysdeps/unix/sysv/linux/netinet/tcp.h,
5650         sysdeps/unix/sysv/linux/netinet/udp.h: Moved to sysdeps/gnu/netinet.
5652 1998-09-04  Roland McGrath  <roland@baalperazim.frob.com>
5654         * string/argz.h (argz_extract, argz_next): Use `const' for ARGZ param.
5655         * string/argz-next.c, string/argz-extract.c: Fix defns.
5657 1998-09-03  Roland McGrath  <roland@baalperazim.frob.com>
5659         * mach/Makefile: Use -include for mach-syscalls.mk to silence warning.
5661         * sysdeps/mach/hurd/sysd-stdio.c: Declare fns
5662         __stdio_{read,write,seek,close,fileno} using __io_*_fn types.
5663         * sysdeps/generic/sysd-stdio.c: Likewise.
5665 1998-09-02  Ulrich Drepper  <drepper@cygnus.com>
5667         * elf/dl-load.c (fillin_rpath): Handle "/" as RPATH correctly.
5668         (_dl_map_object_from_fd): Make NAME argument const.
5669         Remove last parameter in _dl_new_object call.
5670         (print_search_path): Correct construction of composed path name.
5671         (_dl_map_object): Prevent looking at RPATH of the main map twice.
5672         Remove last parameter in _dl_new_object call.
5673         * elf/dl-object.c: Remove last parameter.  Determine whether create
5674         origin entry based on empty realname.  Handle file in root directory
5675         correctly.
5676         * elf/ldsodefs.h: Adjust prototype for _dl_new_object.
5677         * elf/rtld.c (dl_main): Add comment describing reason for memory leak.
5678         Remove last parameter in _dl_new_object call.
5679         * sysdeps/generic/dl-origin.h: Handle file in root directory correctly.
5680         * sysdeps/unix/sysv/linux/dl-origin.h: Likewise.
5682 1998-09-01  Ulrich Drepper  <drepper@cygnus.com>
5684         * elf/dl-close.c (_dl_close): Add more comments and correct some.
5685         Free l_searchlist and l_dupsearchlist.
5687         * debug/catchsegv.sh: Add one more pair of quotes.
5689 1998-09-01 17:53  Ulrich Drepper  <drepper@cygnus.com>
5691         * elf/dl-load.c (add_name_to_object): Change return type to void and
5692         make NAME parameter const.  Allocate room for NAME in same memory
5693         block used for l_libname entry.
5694         (_dl_map_object_from_fd): Don't free NAME on failure.
5695         (map_segment): Pass SONAME to add_name_to_object, not a copy.
5696         (_dl_map_object): Don't create copy of NAME.  Pass NAME to
5697         _dl_map_object_from_fd.
5698         * elf/dl-object.c (dl_new_object): Allocate room for NAME in same
5699         memory block used for l_libname entry.
5700         * elf/dl-close.c: Adjust free()ing for this change.
5702 1998-09-01 15:36  Ulrich Drepper  <drepper@cygnus.com>
5704         * malloc/Makefile: Include Makeconfig before testing config-sysdirs.
5706         * malloc/mtrace.c: Add bug report address.  Update email address.
5707         Add more @XXX@ to print correct address size.
5709         * elf/dl-addr.c (_dl_addr): Make sure that map to be examined is
5710         really initialized.
5712         * elf/dl-close.c (_dl_close): Use l_map_start and l_map_end info
5713         for munmap call instead of examining phdr again.
5714         Free all malloc()ed strings and arrays.
5716 1998-08-09  Geoff Keating  <geoffk@ozemail.com.au>
5718         * sysdeps/powerpc/Makefile [subdir=elf]: Add new files split out of
5719         dl-machine.h.
5720         * sysdeps/powerpc/dl-machine.c: New file.
5721         * sysdeps/powerpc/dl-machine.h: Move much stuff into separate
5722         files.  Revise ELF_PREFERRED_ADDRESS to take account of
5723         the new mapping information (fixes bug involving huge bloated
5724         web browser).  Set ELF_MACHINE_PLTREL_OVERLAP.
5725         * sysdeps/powerpc/dl-start.S: New file.
5727         * elf/dl-load.c (_dl_map_object_from_fd): Initialise l_map_start,
5728         l_map_end.
5729         * elf/do-rel.h: Call elf_machine_rel only once (to save space).
5730         * elf/dynamic-link.h: Allow PLT relocs to be in the middle of the
5731         others.  Call elf_dynamic_do_##reloc only once (to save even more
5732         space).
5733         * elf/link.h: Add new members l_map_start and l_map_end to keep
5734         track of the memory map.
5735         * elf/rtld.c (_dl_start): Initialise l_map_start for ld.so and
5736         the executable.
5738 1998-09-01 11:53  Ulrich Drepper  <drepper@cygnus.com>
5740         * debug/Makefile (catchsegv): We need not rewrite SOVER anymore.
5741         Reported by Andreas Jaeger.
5743         * posix/glob.h: Use __size_t instead of size_t in definitions and
5744         make sure this is defined.
5746 1998-09-01 10:34  Ulrich Drepper  <drepper@cygnus.com>
5748         * manual/locale.texi: Almost complete rewrite.  Document more functions
5749         and functionality.
5750         * manual/arith.texi: Correct reference.
5751         * manual/string.texi: Pretty printing.
5753         * manual/texinfo.tex: Update from last available version.
5755 1998-08-31 22:44  Ulrich Drepper  <drepper@cygnus.com>
5757         * nis/nss_nis/nis-pwd.c (_nss_nis_getpwnam_r): Correct test for
5758         invalid password.
5759         (_nss_nis_getpwuid_r): Likewise.
5760         Patch by Matthew Arnison <matthewa@physics.usyd.edu.au>.
5762         * inet/rcmd.c: Implement netgroup support.
5763         Patch by Dick Streefland <dick_streefland@tasking.com>.
5765 1998-08-31  Ulrich Drepper  <drepper@cygnus.com>
5767         * elf/dl-close.c (_dl_close): Update _dl_loaded if the first
5768         object on the list is removed.  Don't use this code for PIC.
5769         Reported by HJ Lu [PR libc/770].
5771 1998-08-31 15:56  Ulrich Drepper  <drepper@cygnus.com>
5773         * db2/db_int.h: Use <db.h> instead of "db.h" to find header in include.
5775         * include/stdio.h: Add __vsscanf.
5777         * libio/stdio.h: Make vfscanf, scanf, and vsscanf available if
5778         __USE_ISOC9X.
5779         Remove __vsscanf declaration.
5780         Always declare fgetpos and fsetpos.
5782         * math/math.h: Define isinf as macro.
5783         * math/bits/mathcalls.h: Change to declare __isinf all the time.
5784         Don't declare scalb for ISO C 9x.
5786         * math/tgmath.h: Define fma.  Rewrite the underlying macros.
5788         * stdlib/stdlib.h: Declare strtof and strtold is __USE_ISOC9X.
5790         * sysdeps/unix/sysv/linux/bits/sigcontext.h: Allow inclusion from
5791         sys/ucontext.h.
5793         * sysdeps/wordsize-32/inttypes.h: Define missing PRI* and SCN*
5794         macros.
5796 1998-08-31  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
5798         * sysdeps/standalone/bits/errno.h (ENOMSG): Remove duplicate.
5799         Reported by jreising@frequentis.com [PR libc/767].
5801 1998-08-31  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
5803         * io/lockf.c (lockf): Move initilisation of fl.l_whence and
5804         fl.l_start at beginning of function.
5805         Patch by Geoff. Dash <geoffd@zeta.org.au> [PR libc/769].
5807 1998-08-31  Ulrich Drepper  <drepper@cygnus.com>
5809         * io/sys/stat.h (ALLPERMS): Fix type (S_ISTXT -> S_ISVTX).
5810         Reported by Rob.Hagopian@vu.union.edu [PR libc/763].
5812         * nscd/nscd.init: Make it work in RedHat systems.
5813         Patch by Christian Gafton.
5815 1998-08-29  Philip Blundell  <philb@gnu.org>
5817         * catgets/Makefile: Don't try to run test programs when
5818         cross-compiling.
5820 1998-08-31  Ulrich Drepper  <drepper@cygnus.com>
5822         * signal/signal.h: Include bits/sigthread.h only if __USE_POSIX.
5823         Reported by Zack Weinberg.
5825 1998-08-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5827         * sysdeps/unix/sysv/linux/Dist: Add umount.S and umount2.S.
5828         * elf/Makefile (distribute): Remove ldd.sh.in.
5830 1998-08-31 11:46  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5832         * sysdeps/unix/sysv/linux/dl-origin.h (get_origin): Remove unused
5833         variable.
5835 1998-08-29  Ulrich Drepper  <drepper@cygnus.com>
5837         * sysdeps/i386/register-dump.h: Move to ...
5838         * sysdeps/unix/sysv/linux/i386/register-dump.h: ...here.
5840 1998-08-28 22:49  Ulrich Drepper  <drepper@cygnus.com>
5842         * elf/do-rel.h (elf_dynamic_do_rel): Call elf_machine_lazy_rel
5843         with load address, not map address.
5844         * sysdeps/alpha/dl-machine.h (elf_machine_lazy_rel): Change first
5845         parameter and use this value.
5846         * sysdeps/arm/dl-machine.h: Likewise.
5847         * sysdeps/i386/dl-machine.h: Likewise.
5848         * sysdeps/m68k/dl-machine.h: Likewise.
5849         * sysdeps/mips/dl-machine.h (elf_machine_lazy_rel): Change first
5850         parameter.
5851         * sysdeps/powerpc/dl-machine.h: Likewise
5852         * sysdeps/sparc/sparc32/dl-machine.h: Likewise
5853         * sysdeps/sparc/sparc64/dl-machine.h: Likewise
5855 1998-08-28 09:22  Ulrich Drepper  <drepper@cygnus.com>
5857         * elf/rtld.c (process_envvars): Fix copy&paste error.
5859         * malloc/malloc.c (malloc_hook_ini): Don't overwrite realloc and
5860         memalign hook.
5861         (realloc_hook_ini): Don't overwrite memalign hook.
5862         (memalign_hook_ini): Don't overwrite malloc and memalign hooks.
5863         Reported by Philippe Troin <phil@fifi.org>.
5865         * malloc/mcheck.c (mprobe): Call checkhdr with adjusted pointer.
5866         Patch by Philippe Troin <phil@fifi.org>.
5868 1998-08-26  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5870         * sysdeps/generic/segfault.c (install_handler): Protect the
5871         non-POSIX signals with #ifdef.
5872         (catch_segfault): Add missing mode parameter for open.
5873         * debug/catchsegv.sh: Avoid termination message from shell.  Allow
5874         other termination signals.
5876 1998-08-27  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5878         * debug/Makefile (distribute): Add register-dump.h.
5880 1998-08-28 10:41  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5882         * sysdeps/unix/sysv/linux/m68k/register-dump.h: New file.
5884 1998-08-27 19:42  Ulrich Drepper  <drepper@cygnus.com>
5886         * elf/Makefile (distribute): Add dl-origin.h.
5887         * sysdeps/generic/dl-origin.h: New file.
5888         * sysdeps/unix/sysv/linux/dl-origin.h: New file.
5889         * elf/link.h (struct link_map): Add l_origin field.
5890         * elf/dl-load.c (expand_dynamic_string_token): New function.
5891         (decompose_path): Remove WHERE argument, take link map pointer instead.
5892         Call expand_dynamic_string_token instead of local_strdup to make copy
5893         of rpath.
5894         (_dl_init_paths): Call decompose_path with correct argument.
5895         (_dl_map_object_from_fd): Define static is EXTERNAL_MAP_FROM_FD is
5896         not defined.
5897         Check EI_OSABI and EI_ABIVERSION fields in header.
5898         Call _dl_new_object with extra argument.
5899         (_dl_map_object): Call decompose_path with correct argument.
5900         Call expand_dynamic_string_token instead of local_strdup to also
5901         expand DST.
5902         Call _dl_new_object with extra argument.
5903         * elf/dl-object.c (_dl_new_object): Determine l_origin for all maps
5904         but the main one if new argument is nonzero.
5905         * elf/ldsodefs.h: Adjust for _dl_new_object change.
5906         * elf/dl-support.c: Define _dl_origin_path.
5907         * elf/rtld.c: Likewise.  Set _dl_origin_path based on LD_ORIGIN_PATH.
5908         (dl_main): Call _dl_new_object with extra argument.
5910         * elf/dl-close (_dl_close): Free l_name and l_origin.
5912         * sysdeps/i386/useldt.h (THREAD_GETMEM, THREAD_SETMEM): Use P
5913         modifier in asm, not c.
5915         * sysdeps/mach/hurd/Makefile [subdirs==elf]: Define CFLAGS-dl-load.c
5916         to -DEXTERNAL_MAP_FROM_FD to make _dl_map_object_from_fd extern.
5918 1998-08-26 17:48  Ulrich Drepper  <drepper@cygnus.com>
5920         * elf/dl-close.c (_dl_close): Move map->l_nsearchlist value into local
5921         variable so that map can be freed.
5922         Reported by Philippe Troin <phil@fifi.org>.
5924         * elf/dl-open.c (dl_open_worker): Correct test for extending global
5925         scope array.
5926         Patch by Philippe Troin <phil@fifi.org>.
5928 1998-08-26  Geoff Keating  <geoffk@ozemail.com.au>
5930         * sysdeps/powerpc/register-dump.h: Rewrite.  Much nicer this way.
5931         Don't call writev() with a 100-element vector.
5932         * sysdeps/generic/segfault.c (catch_segfault): Skip top-level NULL
5933         return address.
5935         * sysdeps/powerpc/elf/libc-start.c: Sync up with generic version.
5936         In particular, set __libc_stack_end.
5937         * sysdeps/powerpc/elf/start.S: Allow _init and _fini to be
5938         undefined.  Fix copyright notice.
5940 1998-08-25  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5942         * math/Makefile (gmp-objs): New variable.
5943         ($(objpfx)atest-exp, $(objpfx)atest-sincos, $(objpfx)atest-exp2):
5944         Depend on it.
5945         (tests): Add atest-exp atest-sincos atest-exp2.
5946         (tests-static): Remove atest-exp atest-sincos atest-exp2.
5948 1998-08-25  Ulrich Drepper  <drepper@cygnus.com>
5950         * sysdeps/generic/dl-cache.c: Move static variable cache and cachesize
5951         to toplevel.
5952         (_dl_unload_cache): New function.
5953         * elf/Versions [libc GLIBC_2.1]: Add _dl_unload_cache.
5954         * elf/dl-open.c (_dl_open): Unload map file before freeing the lock.
5955         * elf/rtld.c (dl_main): Unload map file before jumping to user code.
5957         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Define O_DIRECT.
5958         Correct comment for O_LARGEFILE.
5959         * sysdeps/unix/sysv/linux/bits/fcntl.h: Define O_DIRECT.
5960         Change O_LARGEFILE to correct value.
5962 1998-08-25 14:34  Ulrich Drepper  <drepper@cygnus.com>
5964         * libio/iogetline.c (_IO_getline_info): Don't read anything for
5965         N == 0.  Patch by HJ Lu.
5967 1998-08-25 11:43  Ulrich Drepper  <drepper@cygnus.com>
5969         * elf/elf.h: Add syminfo stuff and other DT_* from Solaris' ELF.
5971 1998-08-25  Bernd Schmidt  <crux@Pool.Informatik.RWTH-Aachen.DE>
5973         * argp/argp.h: Use __inline__ not inline.
5975         * sysdeps/i386/bits/select.h (FD_ZERO): Rewrite asm not to indicate
5976         an input register as being clobbered.
5977         * sysdeps/i386/memset.c (memset): Likewise.
5978         * sysdeps/i386/bzero.c (__bzero): Likewise.
5979         * sysdeps/i386/memcopy.h ({BYTE,WORD}_COPY_[FB]WD): Likewise.
5981 1998-08-25  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
5983         * stdlib/jrand48_r.c (__jrand48_r): Set also upper half of result.
5984         Fixes PR libc/757 (Reported by Michael Creutz <creutz@bnl.gov).
5986 1998-08-24 16:34  Ulrich Drepper  <drepper@cygnus.com>
5988         * debug/catchsegv.sh: Handle text preceding backtrace better.
5989         * sysdeps/generic/segfault.c: Allow register dump.  Allow handler
5990         to be installed for other signals than SIGSEGV.
5991         * sysdeps/generic/register-dump.h: New file.
5992         * sysdeps/i386/register-dump.h: New file.
5993         * sysdeps/powerpc/register-dump.h: New file.
5995         * sysdeps/unix/sysv/linux/i386/profil-counter.h: Use macros from
5996         sigcontextinfo.h.
5997         * sysdeps/unix/sysv/linux/powerpc/profil-counter.h: Use i386 version.
5999 1998-08-24  Geoff Keating  <geoffk@ozemail.com.au>
6001         * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h: New file.
6003 1998-08-09  Geoff Keating  <geoffk@ozemail.com.au>
6005         * sysdeps/unix/sysv/linux/powerpc/chown.c: New file.
6006         * sysdeps/unix/sysv/linux/powerpc/lchown.S: New file.
6007         * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add chown, remove
6008         getresuid, getresgid.
6010 1998-08-16  Geoff Keating  <geoffk@ozemail.com.au>
6012         * sysdeps/unix/sysv/linux/powerpc/clone.S: Fix bugs.  Set up stack
6013         pointer in userland.
6015 1998-08-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6017         * sysdeps/unix/sysv/linux/sys/mount.h (MNT_FORCE): Define as enum
6018         and fix value.
6020 1998-08-22  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6022         * elf/ldd.bash.in: Add missing quotes around $file.  Make loop
6023         over arguments Bourne shell compatible.  Don't exit unsuccessfully
6024         if nonelf returns successfully.  Avoid duplicating most of the
6025         script.
6026         * sysdeps/unix/sysv/linux/ldd-rewrite.sed: Add missing quotes
6027         around $file.
6029 1998-08-24 10:37  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6031         * sysdeps/unix/sysv/linux/m68k/Makefile (sysdep_headers): Add
6032         sys/reg.h.
6033         * sysdeps/unix/sysv/linux/m68k/sys/reg.h: New file.
6034         * sysdeps/unix/sysv/linux/m68k/Dist: Distribute it.
6036 1998-08-23  Ulrich Drepper  <drepper@cygnus.com>
6038         * sysdeps/unix/sysv/linux/i386/Versions [GLIBC_2.1]: Add
6039         __modify_ldt and modify_ldt.
6040         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add modify_ldt.
6042         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
6043         Use orl $-1 instead of movl $-1 to save two bytes.
6044         * sysdeps/unix/sysv/linux/i386/i686/sysdep.h (SYSCALL_ERROR_HANDLER):
6045         Likewise.
6047 1998-08-17  H.J. Lu  <hjl@gnu.org>
6049         * libio/Versions (_IO_do_write, _IO_file_attach,
6050         _IO_file_close_it, _IO_file_finish, _IO_file_fopen,
6051         _IO_file_init, _IO_file_overflow, _IO_file_seekoff,
6052         _IO_file_setbuf, _IO_file_sync, _IO_file_underflow,
6053         _IO_file_write, _IO_file_xsputn): Added to GLIBC_2.1.
6055         * libio/fileops.c (_IO_do_write, _IO_file_attach,
6056         _IO_file_close_it, _IO_file_finish, _IO_file_fopen,
6057         _IO_file_init, _IO_file_overflow, _IO_file_seekoff,
6058         _IO_file_setbuf, _IO_file_sync, _IO_file_underflow,
6059         _IO_file_write, _IO_file_xsputn): Change the prefix to
6060         "_IO_new_". Added to GLIBC_2.1.
6062         * libio/libioP.h (_IO_do_write, _IO_file_attach,
6063         _IO_file_close_it, _IO_file_finish, _IO_file_fopen,
6064         _IO_file_init, _IO_file_overflow, _IO_file_seekoff,
6065         _IO_file_setbuf, _IO_file_sync, _IO_file_underflow,
6066         _IO_file_write, _IO_file_xsputn): Add prototypes for the prefix
6067         "_IO_new_".
6069         * libio/oldfileops.c (_IO_do_write, _IO_file_attach,
6070         _IO_file_close_it, _IO_file_finish, _IO_file_fopen,
6071         _IO_file_init, _IO_file_overflow, _IO_file_seekoff,
6072         _IO_file_setbuf, _IO_file_sync, _IO_file_underflow,
6073         _IO_file_write, _IO_file_xsputn): Added to GLIBC_2.0.
6075 1998-08-23  Richard Henderson  <rth@cygnus.com>
6077         * Makeconfig (LDFLAGS): Remove.
6079         * csu/initfini.c: Return to .text before __gmon_start__.
6081         * elf/elf.h (EM_FAKE_ALPHA): Rename from EM_OLD_ALPHA.
6082         (STO_MIPS_*): Rename from STO_*.
6083         (STB_MIPS_SPLIT_COMMON): Rename from STB_SPLIT_COMMON.
6084         (STO_ALPHA_NOPV, STO_ALPHA_STD_GPLOAD): New.
6086         * math/atest-exp.c (mpn_bitsize): Fix bit location calculation.
6087         (main): e3s is negative on zero.
6088         * math/atest-exp2.c: Likewise.
6089         * math/atest-sincos.c: Likewise.
6091 1998-08-23  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
6093         * Makerules (install): Add comment about absolute paths.
6095 1998-08-23  Ulrich Drepper  <drepper@cygnus.com>
6097         * libio/vsnprintf.c (_IO_vsnprintf): Set first byte of destination
6098         array to NUL to handle maxlen==1 case correctly.
6099         Patch by HJ Lu.
6101 1998-08-23  Richard Henderson  <rth@cygnus.com>
6103         * sysdeps/alpha/elf/crtbegin.S: Fix .prologue; no pv used.
6104         * sysdeps/alpha/elf/crtend.S: Likewise.
6105         * sysdeps/alpha/elf/start.S: Likewise.
6107         * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S: Fix .prologue;
6108         non-standard pv usage.
6110         * sysdeps/unix/sysv/linux/alpha/brk.S: Use jmp macro for relaxation.
6111         * sysdeps/unix/sysv/linux/alpha/getitimer.S: Likewise.
6112         * sysdeps/unix/sysv/linux/alpha/getrusage.S: Likewise.
6113         * sysdeps/unix/sysv/linux/alpha/gettimeofday.S: Likewise.
6114         * sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S: Likewise.
6115         * sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S: Likewise.
6116         * sysdeps/unix/sysv/linux/alpha/select.S: Likewise.
6117         * sysdeps/unix/sysv/linux/alpha/setitimer.S: Likewise.
6118         * sysdeps/unix/sysv/linux/alpha/settimeofday.S: Likewise.
6119         * sysdeps/unix/sysv/linux/alpha/utimes.S: Likewise.
6120         * sysdeps/unix/sysv/linux/alpha/wait4.S: Likewise.
6122         * sysdeps/alpha/fpu/e_sqrt.c: Use the asm version when the input is
6123         a finite non-denormal, deferring to the full IEEE version otherwise.
6125         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor):
6126         Early out for -0.  Optimize for !_IEEE_FP_INEXACT.
6127         * sysdeps/alpha/fpu/s_floor.c: New.
6128         * sysdeps/alpha/fpu/s_floorf.c: New.
6129         * sysdeps/alpha/fpu/s_ceil.c: New.
6130         * sysdeps/alpha/fpu/s_ceilf.c: New.
6132 1998-08-22  Philip Blundell  <philb@gnu.org>
6134         * sysdeps/arm/bits/string.h: New file.
6136 1998-08-12  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
6138         * sysdeps/unix/sysv/linux/configure.in: Obey --with-headers,
6139         document it.
6141         * sysdeps/unix/sysv/linux/alpha/configure.in: New file, contains
6142         test for recent Linux 2.1.100+ headers.
6144 1998-08-21  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
6146         * nis/nss_compat/compat-initgroups.c: Optimize NIS query.
6148 1998-08-21 17:21  Ulrich Drepper  <drepper@cygnus.com>
6150         * sysdeps/unix/sysv/linux/glob64.c: Define __stat using __xstat64.
6152 1998-08-20  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6154         * Makefile (elf/ldso_install): Put back.  The problem still persists.
6155         * elf/Makefile (ldso_install): Likewise.
6157 1998-08-20  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6159         * db2/db/db.c (db_open) [_LIBC]: Rename to __nss_db_open and
6160         create weak alias.
6161         * include/db.h: Declare __nss_db_open.
6162         * db2/Versions: Export it.
6164         * db2/makedb.c: Convert to use db2 API.
6165         * nss/nss_db/db-XXX.c: Likewise.
6166         * nss/nss_db/db-netgrp.c: Likewise.
6167         * nss/nss_db/db-alias.c: Likewise.
6168         (_nss_db_getaliasent_r): Allow retrying with a larger buffer.
6170 1998-08-19  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6172         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove
6173         sys_setresuid, already built automatically (or not).
6174         * sysdeps/unix/sysv/linux/syscalls.list: Define __setresuid
6175         instead of __syscall_setresuid and add back setresuid.
6176         * sysdeps/unix/sysv/linux/seteuid.c: Use __setresuid instead of
6177         __syscall_setresuid.
6179 1998-08-21  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
6181         * sysdeps/unix/sysv/linux/sys/mount.h: Fix typo.
6183 1998-08-20  Ulrich Drepper  <drepper@cygnus.com>
6185         * elf/Makefile (sh-ldd-rewrite): Remove expression to remove
6186         BASH-ONLY marked region.
6187         * elf/ldd.bash.in: Remove special BASH-ONLY markers.
6189 1998-02-20 17:54  H.J. Lu  <hjl@gnu.org>
6191         * libio/oldfileops.c (_IO_file_seekoff): Don't adjust pointers if
6192         _IO_SYSSEEK fails.
6194         * libio/iolibio.h (_IO_pos_BAD): Define of type _IO_fpos64_t.
6196         * libio/libioP.h (FILEBUF_LITERAL): Also initialize new _offset
6197         element.
6199 1998-08-21  Roland McGrath  <roland@baalperazim.frob.com>
6201         * elf/ldd.bash.in (TEXTDOMAIN, TEXTDOMAINDIR): Surround setting these
6202         with magic comments ###BASH-ONLY and ###END-BASH-ONLY.
6203         * elf/Makefile ($(objpfx)ldd): Generate always from ldd.bash.in.
6204         (common-ldd-rewrite): New variable, old contents of $(sh-ldd-rewrite).
6205         (sh-ldd-rewrite): Use that, add cmds to remove code surrounded by
6206         those magic comments, and to use /bin/sh for @BASH@.
6207         (bash-ldd-rewrite): Use $(common-ldd-rewrite).
6208         * elf/ldd.sh.in: File removed.
6210 1998-08-20 20:07  Ulrich Drepper  <drepper@cygnus.com>
6212         * pwd/getpw.c (__getpw): Use %lu for uid and gid parameter and
6213         cast them to unsigned long int.
6214         * pwd/putpwent.c (putpwent): Likewise.
6215         Patch by John Tobey <jtobey@banta-im.com>.
6217 1998-08-20 17:14  H.J. Lu  <hjl@gnu.org>
6219         * libio/libioP.h (FILEBUF_LITERAL): Set the _offset field to
6220         _IO_pos_BAD.
6222 1998-02-20 17:54  H.J. Lu  <hjl@gnu.org>
6224         * libio/fileops.c (_IO_file_seekoff): Don't adjust pointers if
6225         _IO_SYSSEEK fails.
6227 1998-08-20 19:14  Ulrich Drepper  <drepper@cygnus.com>
6229         * sysdeps/unix/sysv/linux/Makefile [subdirs=misc] (sysdeps_routines):
6230         Add umount and umount2.
6231         * sysdeps/unix/sysv/linux/syscalls.list: Remove umount.
6232         * sysdeps/unix/sysv/linux/umount.S: New file.
6233         * sysdeps/unix/sysv/linux/umount2.S: New file.
6234         * sysdeps/unix/sysv/linux/sys/mount.h: Declare umount2.
6235         Define MNT_FORCE.
6237         * sysdeps/unix/sysv/linux/Makefile [subdirs=misc] (sysdep_headers):
6238         Add sys/sendfile.h.
6239         * sysdeps/unix/sysv/linux/syscalls.list: Add sendfile.
6240         * sysdeps/unix/sysv/linux/sys/sendfile.h: New file.
6242         * sysdeps/unix/sysv/linux/sys/acct.h: Pretty print.
6244         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.1]: Add umount2 and
6245         sendfile.
6247 1998-08-20 16:01  Ulrich Drepper  <drepper@cygnus.com>
6249         * elf/ldd.sh.in: Redirect warnings and error messages to stderr.
6250         * elf/ldd.bash.in: Likewise.
6252         * elf/sln.c: Avoid warning for no main prototype.
6254         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Remove O_READ and
6255         O_WRITE.
6256         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
6257         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
6259         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Add F_SETSIG and
6260         F_GETSIG.
6261         * sysdeps/unix/sysv/linux/bits/fcntl.h: Likewise.
6262         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
6263         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
6265 1998-08-20  Philip Blundell  <pb@nexus.co.uk>
6267         * sysdeps/arm/fpu/ieee754.h: Move to...
6268         * sysdeps/arm/ieee754.h: ... here.
6270         * sysdeps/arm/__longjmp.S: Put return value in correct register.
6271         Don't set the condition flags unnecessarily.
6272         * sysdeps/arm/fpu/__longjmp.S: Likewise.  Restore floating point
6273         registers correctly.
6275         * sysdeps/arm/dl-machine.h: Fix problems with profiling code
6276         (patch from Scott Bambrough).
6278         * sysdeps/arm/sysdep.h (CALL_MCOUNT): Add missing semicolons.
6280         * csu/initfini.c (_init): Don't check whether __gmon_start__ is
6281         NULL, just call it unconditionally.
6282         (__gmon_start__): Provide stub version as a weak symbol.
6284 1998-07-30  Philip Blundell  <philb@gnu.org>
6286         * sysdeps/unix/sysv/linux/arm/init-first.h: New file (from patch
6287         by Scott Bambrough)
6289         * sysdeps/unix/sysv/linux/arm/errlist.c: New file; ARM tools don't
6290         like `@' in .type directives.
6292         * sysdeps/arm/bsd-setjmp.S: Use PLT for procedure call.
6293         * sysdeps/arm/bsd-_setjmp.S: Likewise.
6295         * sysdeps/arm/dl-machine.h: Set __libc_stack_end.
6297 1998-08-20  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
6299         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (F_SETOWN): Correct value.
6300         (F_GETOWN): Likewise.
6302         * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_SIGIO): Add it (from
6303         Linux 2.1.117).
6305 1998-08-20  Ulrich Drepper  <drepper@cygnus.com>
6307         * sysdeps/generic/glob.c [_LIBC]: Define __stat only if not
6308         already defined.
6310 1998-08-18  Ulrich Drepper  <drepper@cygnus.com>
6312         * include/features.h: Define __USE_EXTERN_INLINES for recent
6313         enough gcc.
6314         * argp/argp.h: Define extern inline functions only if
6315         __USE_EXTERN_INLINES is defined.
6316         * libio/stdio.h: Likewise.
6317         * math/math.h: Likewise.
6318         * stdlib/stdlib.h: Likewise.
6319         * string/argz.h: Likewise.
6320         * sysdeps/generic/bits/sigset.h: Likewise.
6321         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
6322         * sysdeps/unix/sysv/sysv4/bits/sigset.h: Likewise.
6323         * sysdeps/wordsize-32/inttypes.h: Likewise.
6324         * sysdeps/wordsize-64/inttypes.h: Likewise.
6325         * wcsmbs/wchar.h: Likewise.
6327         * sysdeps/generic/bits/glob.c [_LIBC]: Define __stat using __xstat
6328         to allow compilation without optimization.
6330 1998-08-14  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>
6332         * nis/nss_compat/compat-grp.c: Set errno to ENOENT if we have no
6333         more entries.
6334         * nis/nss_compat/compat-initgroups.c: Likewise.
6335         * nis/nss_compat/compat-pwd.c: Likewise.
6336         * nis/nss_compat/compat-spwd.c: Likewise.
6337         * nis/nss_nis/nis-alias.c: Likewise.
6338         * nis/nss_nis/nis-ethers.c: Likewise.
6339         * nis/nss_nis/nis-grp.c: Likewise.
6340         * nis/nss_nis/nis-hosts.c: Likewise.
6341         * nis/nss_nis/nis-initgroups.c: Likewise.
6342         * nis/nss_nis/nis-network.c: Likewise.
6343         * nis/nss_nis/nis-proto.c: Likewise.
6344         * nis/nss_nis/nis-pwd.c: Likewise.
6345         * nis/nss_nis/nis-rpc.c: Likewise.
6346         * nis/nss_nis/nis-service.c: Likewise.
6347         * nis/nss_nis/nis-spwd.c: Likewise.
6349         * nis/rpcsvc/yp.h: Generate new without 1024 byte limits.
6351         * nis/ypclnt.c: Try binding dir only first time, could be to old.
6353         * nis/yp_xdr.c: Remove 1024 byte limit.
6354         * nis/ypupdate_xdr.c: Likewise.
6356         * nis/nss_nis/nis-publickey.c: Make sure, nobody could send
6357         wrong data.
6359 1998-08-18  Roland McGrath  <roland@baalperazim.frob.com>
6361         * Rules (binaries-static, binaries-shared static pattern rules):
6362         Depend on lib%, not just libc%, from $(link-libc{,-static}).
6364         * sysdeps/mach/hurd/Makefile (link-libc-static): New variable; set
6365         this here, overriding Makeconfig generic value so we link against
6366         the RPC libs.
6368 1998-08-17  Ulrich Drepper  <drepper@cygnus.com>
6370         * posix/tstgetopt.c (options): Add NULL entry at end
6371         Patch by Adrian Miranda <ade@psg.com>.
6373 1998-08-15 18:21  Ulrich Drepper  <drepper@cygnus.com>
6375         * elf/elf.h: Add EI_OSABI, ELFOSABI*, and EI_ABIVERSION.  Move EI_PAD
6376         to 9.
6378 1998-08-15 14:11  Ulrich Drepper  <drepper@cygnus.com>
6380         * elf/elf.h: Add PPC Diab relocations.
6382         * malloc/Makefile (libmcheck.a): Use $(LN_S) not ln.
6384 1998-08-14 10:08  Ulrich Drepper  <drepper@cygnus.com>
6386         * manual/texinfo.tex: Update.
6388 1998-08-07  Geoff Keating  <geoffk@ozemail.com.au>
6390         * sysdeps/powerpc/backtrace.c: New file.
6392 1998-08-14  Philip Blundell  <pb@nexus.co.uk>
6394         * sysdeps/arm/fpu/setjmp.S: Correct value of R0 before calling
6395         sigjmp_save.
6396         * sysdeps/arm/elf/setjmp.S: Obsolete, deleted.
6398 1998-08-11  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6400         * Makefile (install-symbolic-link): Fix spelling.
6402 1998-08-11  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6404         * elf/elf.h (SHT_HIOS): Fix value.
6406 1998-08-10  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6408         * posix/regex.c (WIDE_CHAR_SUPPORT): Don't generate defined as
6409         part of the expansion, this is undefined by the standard.
6411 1998-08-13 19:41  Ulrich Drepper  <drepper@cygnus.com>
6413         * posix/getconf.c: Add support for systems with incomplete confname.h.
6415         * sysdeps/posix/sigset.c: Allow SIG_HOLD being undefined.
6417         * sysdeps/posix/wait3.c: Make it work.
6419 1998-08-13  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
6421         * Makefile ($(inst_slibdir)/libc-$(version).so): Remove.
6422         (elf/ldso_install): Remove.
6424         * elf/Makefile (distribute): Add sln.c.
6425         (others): Add sln.
6426         (others-static): Add sln.
6427         (install-rootsbin): Add sln.
6428         (others-static): Add sln.
6429         (ldso_install): Remove.
6431 1998-07-24 10:58  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6433         * Makerules (install-clean-symbolic-link-list): Make phony.
6434         * Makefile (install-symbolic-link): Make phony.  Depend on
6435         subdir_install for parallel makes.
6438 1998-07-22  Ulrich Drepper  <drepper@cygnus.com>
6440         * elf/Makefile (distribute): Add sln.c
6442 1998-07-21 07:10  H.J. Lu  <hjl@gnu.org>
6444         * elf/sln.c: New file.
6446         * Makerules (symbolic-link-prog, symbolic-link-list): New macros.
6447         (install-clean-symbolic-link-list): New target.
6448         (install): Depend on install-clean-symbolic-link-list.
6449         (make-shlib-link): Changed for $(symbolic-link-list).
6451         * Makefile (install-symbolic-link): New target.
6452         (install): Depend on install-symbolic-link.
6454 1998-08-12 17:03  Ulrich Drepper  <drepper@cygnus.com>
6456         * include/unistd.h: Protect against multiple inclusion.
6458         * posix/glob.c: Don't define __glob_pattern_p is NO_GLOB_PATTERN_P
6459         is defined, not is glob is defined.
6460         * sysdeps/unix/sysv/linux/glob64.c: Define NO_GLOB_PATTERN_P.
6462 1998-08-01 17:18  H.J. Lu  <hjl@gnu.org>
6464         * sunrpc/rpcsvc/rusers.x (xdr_utmp): Use xdr_bytes instead of
6465         xdr_string for ut_line, ut_name and ut_host.
6467 1998-08-12  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
6469         * sysdeps/unix/sysv/linux/paths.h (_PATH_MAILDIR): Change to
6470         /var/mail in accordance with FHS 2.0.
6471         Reported by Javier Kohen <root@jkohen.tough.com.ar> [PR libc/639].
6473 1998-08-12  Richard Henderson  <rth@cygnus.com>
6475         * sysdeps/unix/sysv/linux/alpha/syscalls.list (recvmsg, sendmsg):
6476         Update aliases for cancelation.
6478         * sysdeps/unix/sysv/linux/alpha/glob.c: Undef glob*64 before
6479         playing with symbol versions.
6481 1998-08-12  Roland McGrath  <roland@baalperazim.frob.com>
6483         * sysdeps/mach/hurd/bits/posix_opt.h: Rewritten with comments and
6484         multiple inclusion protection.
6485         (_POSIX_SYNCHRONIZED_IO, _POSIX_FSYNC, _POSIX_MAPPED_FILES,
6486         _POSIX_MEMORY_PROTECTION, _POSIX_POLL, _POSIX_SELECT): New macros,
6487         define all these to 1.
6488         (_POSIX_SYNC_IO): Add #undef, to remind us that pathconf reports it.
6490 1998-08-12  Roland McGrath  <roland@baalperazim.frob.com>
6492         * sysdeps/mach/usleep.c: Include <unistd.h>.
6493         (usleep): Return void.
6495 1998-08-11  Roland McGrath  <roland@baalperazim.frob.com>
6497         * sysdeps/generic/if_index.c (struct if_freenameindex): Add forward
6498         decl to inhibit warning in if_freenameindex defn.
6500         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Remove unused variable.
6502         * sysdeps/mach/hurd/getdomain.c (getdomainname): Renamed from __ name.
6504         * sysdeps/mach/hurd/reboot.c: Include <sys/reboot.h>.
6505         * sysdeps/mach/hurd/getdents.c: Include <unistd.h>.
6506         * sysdeps/mach/hurd/sbrk.c: Include <unistd.h>.
6507         * sysdeps/mach/usleep.c: Likewise.
6509         * sysdeps/mach/hurd/bind.c (bind): Add a const.
6511         * sysdeps/mach/hurd/getdents.c (__getdirentries): Use prototype defn.
6512         * sysdeps/unix/bsd/init-posix.c (__init_posix): Likewise.
6513         * sysdeps/unix/bsd/times.c (timeval_to_clock_t): Likewise.
6514         * sysdeps/mach/hurd/reboot.c (reboot): Likewise.
6515         * sysdeps/mach/usleep.c (usleep): Likewise.
6516         * sysdeps/mach/hurd/chflags.c (chflags): Likewise.
6517         * sysdeps/mach/hurd/fchflags.c (fchflags): Likewise.
6518         * sysdeps/mach/hurd/sbrk.c (__sbrk): Likewise.
6519         * sysdeps/mach/hurd/stdio_init.c (__stdio_init_stream): Likewise.
6521 1998-08-11  Roland McGrath  <roland@baalperazim.frob.com>
6523         * sysdeps/generic/glob64.c: Include <sys/types.h>, <glob.h>, <errno.h>.
6524         (glob64): Fix typo.
6526         * malloc/malloc.c (free_check, realloc_check): Don't cast to long for
6527         %p arg to fprintf, since `void *' is the right type already.
6529 1998-07-25 19:47  Jose M. Moya  <josem@gnu.org>
6531         * sysdeps/mach/hurd/getcwd.c
6532         (_hurd_canonicalize_directory_name_internal): Do not loop forever
6533         for unknown root directories.
6534         (__getcwd): Return NULL when the current root directory could not
6535         be reached.
6537 1998-08-11 18:39  Ulrich Drepper  <drepper@cygnus.com>
6539         * string/strsignal.c (strsignal): Count real-time signals from zero.
6542 See ChangeLog.8 for earlier changes.