Thu Jul 11 00:22:40 1996 Ulrich Drepper <drepper@cygnus.com>
[glibc/history.git] / ChangeLog
blob834834797c20d131be09701ac117d4ed72055f04
1 Thu Jul 11 20:09:55 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3         * nss/nss_files/files-service.c (getservbyname): Take second arg PROTO
4         and check it.
6         * nss/nss_files/files-XXX.c: Comment fix.
8 Fri Jul 12 01:28:35 1996  Ulrich Drepper  <drepper@cygnus.com>
10         * nss/getXXent_r.c (GETFUNC_NAME_STRING): Define with name
11         of reentrant function.
12         (setup): Pass additional argument with function name we are
13         looking for.
14         (SETFUNC_NAME, ENDFUNC_NAME, GETFUNC_NAME): Call setup with
15         new argument {SET,END,GET}FUNC_NAME_STRING.
17         * nss/getXXent.c (GETFUNC_NAME): RESULT must be static because
18         we return a pointer.
20 Thu Jul 11 18:20:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
22         * nss/nss_files/files-parse.c: Add comment about things to #define.
24         * nss/nss_files/files-hosts.c (NEED_H_ERRNO): Define it.
26         * nss/nss_files/files-parse.c (STRING_FIELD): Don't flag NUL before
27         terminator char as an error.
29         * nss/getXXbyYY_r.c (REENTRANT_NAME): Set *H_ERRNOP, not h_errno.
31 Thu Jul 11 03:21:10 1996  Ulrich Drepper  <drepper@cygnus.com>
33         * catgets/gencat.c (write_out): Move code to determine new
34         best size out of inner loop.
36 Wed Jul 10 05:24:40 1996  David Mosberger-Tang  <davidm@azstarnet.com>
38         * misc/mntent.c: Include <sys/types.h>.
39         (endmntent): Return 1 one success, 0 on failure.
40         (getmntent): Chop newline and ignore empty lines.
42 Mon Jul  8 21:18:40 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
44         * sysdeps/m68k/dl-machine.h (RESOLVE): New macro, defined
45         differently based on [RTLD_BOOTSTRAP].
46         (elf_machine_rela): Use it instead of the fn ptr arg directly.
48 Tue Jul  9 09:37:55 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
50         * posix/glob.h (__glob_opendir_hook, __glob_readdir_hook,
51         __glob_closedir_hook): Remove decls.
53         * sysdeps/generic/machine-gmon.h: Declare mcount_internal.
55         * sysdeps/unix/inet/syscalls.list: Define __ names with weak aliases
56         for send and connect syscalls.
58         * socket/sys/socket.h: New file, taken from non-sysdep parts of
59         linux/sys/socket.h; break sysdeps parts out into socketbits.h.
60         Declare __ names for send and connect.
61         * sysdeps/generic/socketbits.h: New file.
62         * sysdeps/unix/sysv/linux/socketbits.h: New file.
63         * sysdeps/unix/sysv/linux/sys/socket.h: File removed.
64         * sysdeps/generic/sys/socket.h: File removed.
66         * sysdeps/mach/hurd/connect.c: Define __ name and weak alias.
67         * sysdeps/mach/hurd/send.c: Likewise.
69         * sysdeps/mach/libc-lock.h: New file.
70         * sysdeps/unix/readdir.c: Do locking.
71         * sysdeps/unix/seekdir.c: Likewise.
72         * sysdeps/unix/rewinddir.c:  Likewise.
73         * sysdeps/unix/closedir.c: Likewise.
74         * sysdeps/unix/bsd/telldir.c: Likewise.
75         * sysdeps/mach/hurd/seekdir.c: Likewise.
76         * sysdeps/mach/hurd/readdir.c: Likewise.
77         * sysdeps/mach/hurd/closedir.c: Likewise.
78         * sysdeps/mach/hurd/opendir.c: Initialize the lock.
79         * sysdeps/unix/opendir.c: Likewise.
80         * sysdeps/mach/hurd/dirstream.h: Include <libc-lock.h>.
81         (struct __dirstream): Add lock member using __libc_lock_define.
82         * sysdeps/unix/dirstream.h: Likewise.
84         * sysdeps/stub/libc-lock.h (__libc_lock_fini): New macro.
86         * stdlib/mbstowcs.c: Pass address of pointer to mbsrtowcs.
88         * stdlib/wcstombs.c: Use wcsrtombs instead of mbsrtowcs.
90 Thu Jul  4 01:34:04 1996  Ulrich Drepper  <drepper@cygnus.com>
92         * locale/programs/stringtrans.c: Fix typo in copyright.
94         * stdio-common/printf-prs.c: Add casts to prevent
95         signed<->unsigned warnings.
97         * stdio-common/printf-parse.h: Initialize state variable before
98         calling mbrlen.
99         * stdio-common/printf-prs.c: Don't initialize state variable here.
100         * stdio-common/vfprintf.c: Don't initialize state variable.
101         (vfprintf): While determining length of multibyte string don't
102         try to be clever in determining characters to use for first
103         call.
105         Add real implementation of multibyte<->wide char conversion
106         functions.  The functions always convert between the fixed wide
107         char format (ISO 10646 in UCS4) and the UTF8 representation of
108         this character set.  Conversion between the currently used
109         8bit character set and ISO 10646 will not take place.  This is
110         what iconv() is for.
111         * wcsmbs/wchar.h (mbstate_t): Define as structure to replace
112         dummy definition.
113         Add optimized version of `mbrlen' function.
114         * wcsmbs/btowc.c (btowc): Restrict range of legal characters
115         to 0...0x7f.
116         * wcsmbs/wctob.c (wctob): Restrict range of legal characters
117         to 0..0x7f.
118         * wcsmbs/mbrlen.c: Make mbrlen a weak alias of __mbrlen.
119         This is needed in the wchar.h header.
120         * wcsmbs/mbrtowc.c: Replace dummy implementation.  Convert UTF8
121         encoded character to UCS4.
122         * wcsmbs/mbsinit.c: Replace dummy implementation.  Test COUNT
123         element of `mbstate_t' for initial state.
124         * wcsmbs/mbsrtowcs.c: Replace dummy implementation.  Convert UTF8
125         encoded string to UCS4 string.
126         * wcsmbs/wcrtomb.c: Replace dummy implementation.  Convert UCS4
127         character to UTF8 encoded form.
128         * wcsmbs/wcsrtombs.c: Replace dummy implementation.  Convert UCS4
129         encoded string to UTF8 encoded form.
131 Tue Jul  9 06:19:29 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
133         * sysdeps/unix/sysv/linux/configure.in: Use version number in cache
134         variable name, so new a libc with new requirements won't fail to
135         notice an insufficient Linux version.
137         * sysdeps/unix/sysv/linux/direntry.h: New file from David Mosberger.
139         * sysdeps/unix/sysv/linux/configure.in: Check for Linux 2.0.1 headers,
140         instead of 2.0 headers.
142         * sysdeps/mach/hurd/Makefile (stamp-errnos): Uncomment CVS commit cmds.
144         * sysdeps/gnu/errlist.awk: Undo mib's bogus changes.  The
145         sysdeps/mach/hurd/errnos.awk bug fix was the only correct change.
147         * sysdeps/generic/machine-gmon.h [NO_UNDERSCORES]: Declare _mcount
148         before using it in lhs of weak_alias.
150         * nss/getXXent_r.c (setup): New function, broken out of SETFUNC_NAME.
151         Call __nss_lookup when not setting STARTP.
152         (SETFUNC_NAME, ENDFUNC_NAME, REENTRANT_GETNAME): Call it to set up for
153         function-calling loop.
155 Tue Jul  9 00:14:52 1996  Michael I. Bushnell p/BSG  <mib@gnu.ai.mit.edu>
157         * sysdeps/mach/hurd/ioctls.h (MDMBUF, ECHO, TOSTOP, FLUSHO,
158         PENDIN, NOFLSH): Undefine these at start if they are already
159         defined to avoid collision with termbits.h.
160         * sysdeps/generic/termbits.h (ECHO, TOSTOP, NOFLSH): Likewise.
161         (MDMBUF, FLUSHO, PENDIN) [__USE_BSD]: Likewise.
163 Mon Jul  8 13:37:40 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
165         * math/math.h (_Mfloat_, _Mlong_double_): New macros, defined iff not
166         already defined to float, long double.  Use those macros for _Mdouble_
167         defns when including mathcalls.h.
168         * math/Makefile [$(long-double-fcts) != yes] (CPPFLAGS): Append
169         -D_Mlong_double_=double.
171         Add more -lm functions to -lc because ldexp uses them.
172         * math/Makefile (calls): Add s_finite, s_copysign, s_scalbn, s_modf.
173         (routines): Remove s_modf, add s_frexpf, s_ldexpf; all but frexp and
174         ldexp have both f and l code, and those have f though not l code.
176 Mon Jul  8 13:10:50 1996  Michael I. Bushnell p/BSG  <mib@gnu.ai.mit.edu>
178         * sysdeps/mach/hurd/errnos.awk: Skip entries where the
179         error is 0.  The "placeholder" entries recently added to
180         errno.texi convert to zero since `???/' is at the front of them.
181         * sysdeps/gnu/errlist.awk (errnoh): Likewise.
183         * sysdeps/stub/setdomain.c (setdomainname): Declare NAME parm
184         __const to conform with unistd.h.
186         * stdlib/stdlib.h (random): Declare return type to be int32_t.
188         * string/argz-delete.c (argz_delete): Use memmove instead of
189         memcpy for possibly overlapping strings.
191 Mon Jul  8 02:14:25 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
193         * libc-symbols.h [GCC >= 2.7] (strong_alias, weak_alias): Use extern
194         storage class.  GCC gives an error for non-extern data defns with the
195         alias attribute.
197 Mon Jul  8 01:37:34 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
199         * string/argz-insert.c (__argz_insert): (__argz_insert): Use
200         memmove instead of memcpy for possible overlapping strings.
202 Mon Jul  8 00:11:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
204         * libc-symbols.h (weak_function): New macro.
205         For GCC 2.7+ define as __attribute__ ((weak)).
206         * elf/dl-minimal.c: Use weak_function as keyword in function defns
207         instead of weak_symbol (NAME) after the defn.
208         * stdlib/strtol.c: Likewise.
209         * stdlib/strtod.c: Likewise.
210         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
212         * sysdeps/alpha/dl-machine.h (elf_machine_rela) [RTLD_BOOTSTRAP]:
213         If this is defined, don't declare _dl_rtld_map as weak, and
214         don't check for MAP pointing to it.  RESOLVE is always null in this
215         case, so test with #ifdef instead of if.
217         * libc-symbols.h (symbol_set_declare): Use weak_extern instead of
218         weak_symbol.
219         * csu/initfini.c (_init): Likewise.
220         * locale/setlocale.c (DEFINE_CATEGORY): Likewise.
221         * misc/efgcvt_r.c: Likewise.
222         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
223         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
225         * libc-symbols.h [ASSEMBLER] (weak_symbol): Macro removed.
226         It was not used in any assembler code.
227         (weak_symbol_asm): Renamed to weak_extern_asm.
228         (weak_extern): New macro replaces weak_symbol for weak extern refs;
229         define to weak_extern_asm for [!ASSEMBLER].
231 Sun Jul  7 18:42:06 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
233         * libc-symbols.h [! ASSEMBLER] [HAVE_WEAK_SYMBOLS] (weak_symbol_asm,
234         weak_alias_asm): New macros, renamed from weak_symbol/weak_alias;
235         define those now as aliases.
236         Change conditional to use __attribute__ syntax for GCC 2.7+, not 2.8+
237         [GCC >= 2.7] [HAVE_WEAK_SYMBOLS] (weak_symbol): Do weak_symbol_asm
238         after GCC weak attribute decl.
240         * sysdeps/gnu/errlist.awk (BEGIN): Initialize associative array ALIAS,
241         map EWOULDBLOCK->EAGAIN, EDEADLOCK->EDEADLK.
242         (element printer): Check for elt in ALIAS, instead of special case
243         for EWOULDBLOCK.
245         * io/Makefile (headers): Add sys/vfs.h.
246         * io/sys/vfs.h: New file.
248         * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Don't unlock the
249         critical section lock before unlinking dying active resources.
250         The unlock just before return is right (i.e. old code unlocked twice).
252 Sun Jun  2 22:28:43 1996  Miles Bader  <miles@gnu.ai.mit.edu>
254         * stdio/linewrap.c (lwupdate): Update D->point_offs when done.
255         Use memmove instead of memcpy where overlap is possible (not
256         necessary using current implementation of memcpy, but...).
257         (__line_wrap_update): Don't update D->point_offs (lwupdate does it).
259 Fri May 31 11:48:46 1996  Miles Bader  <miles@gnu.ai.mit.edu>
261         * stdio/linewrap.c (lwupdate): New function, mostly was
262         __line_wrap_update.  Use POINT_COL field instead of POINT.
263         (__line_wrap_output): Use lwupdate.
264         (__line_wrap_update): New function.
265         (ensure_unwrapped, ensure_wrapped): New functions.
266         (line_wrap_set_lmargin, line_wrap_set_rmargin,
267         line_wrap_set_wmargin, line_wrap_point): Use __line_wrap_update.
269         * stdio/linewrap.h (struct line_wrap_data): Rename POINT field to
270         POINT_COL. Add POINT_OFFS field.
271         (__line_wrap_update): New decl.
272         (line_wrap_set_lmargin, line_wrap_set_rmargin,
273         line_wrap_set_wmargin, line_wrap_point): Use __line_wrap_update.
275 Fri Jul  5 17:34:47 1996  Miles Bader  <miles@gnu.ai.mit.edu>
277         * login/logout.c (logout): Do nothing if getutline_r returns ESRCH.
279         * login/pututline_r.c (pututline_r): Since we assign RESULT from
280         lseek now, check that it's >= 0, not == 0.
282 Wed Jul  3 13:28:04 1996  Miles Bader  <miles@gnu.ai.mit.edu>
284         * login/login.c (login): Make a copy of *UT, fill in various
285         fields that we supply (ut_line, ut_type, ut_pid), and use the copy
286         in place of UT.
288         * login/getutline_r.c (getutline_r): When we return ESRCH, mark
289         UTMP_DATA->ubuf invalid (by setting UTMP_DATA->loc_utmp to 0).
291 Fri Jul  5 12:22:51 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
293         * hurd/hurdsig.c (_hurd_internal_post_signal): In case of handled
294         signal during critical section doing interruptible RPC, if
295         _hurdsig_abort_rpcs wants to change thread state, do thread_set_state
296         before thread_resume.  If in critical section, pass 0 for SIGNO to
297         _hurdsig_abort_rpcs so rpc is interrupted regardless of SA_RESTART.
299         * extra-lib.mk: Fix typo in $(extra-libs-others) conditional.
301         * sysdeps/unix/sysv/linux/sys/user.h: New file.
302         * sysdeps/unix/sysv/linux/Dist: Add it.
303         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add sys/user.h.
305         * nss/nss_files/files-parse.c (parse_list): Set EOL from LINE if it
306         points within DATA->linebuffer; otherwise use all of DATA->linebuffer
307         itself, no need to skip past a NUL.
309         * nss/nsswitch.h (known_function): Comment fix.
310         * nss/nsswitch.c (nss_lookup_function): Rewritten using __tsearch
311         directly.  Do the lookup and insertion with a single call, and fill in
312         the tree node afterwards if new.
313         (known_compare, nss_find_entry, nss_insert_entry): Functions removed.
315         * misc/sys/select.h: #define __need_timespec before <sys/time.h> incl.
316         (struct timeval): Add bodiless decl for scope.
318         * time/time.h (struct timespec): Rename members from `ts_*' to `tv_*'.
319         Move struct timespec defn outside [_TIME_H] so it can be got with
320         #define __need_timespec.
322         * time/sys/time.h (TIMEVAL_TO_TIMESPEC): Use `tv_*' instead of `ts_*'
323         for `struct timespec' member names.
324         (TIMESPEC_TO_TIMEVAL): Likewise.
326         * nss/Makefile (extra-libs-others): New variable.
328         * extra-lib.mk: Don't test for $($(lib)-no-lib-dep).  Instead match
329         $(lib) in $(extra-libs-others).
330         * sunrpc/Makefile (extra-libs-others): New variable.
331         (librpcsvc-no-lib-dep): Variable removed.
333         * elf/rtld.c: Define RTLD_BOOTSTRAP before #include "dynamic-link.h".
334         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove weak decl for
335         _dl_rtld_map.
336         (RESOLVE): New macro, defined differently based on [RTLD_BOOTSTRAP].
337         (elf_machine_rel): Use it instead of testing fn ptr arg at runtime.
338         (elf_machine_rel: case R_386_32) [! RTLD_BOOTSTRAP]: Declare
339         _dl_rtld_map weak only here.
341         * posix/unistd.h [__USE_BSD]: Declare getdomainname, setdomainname.
343 Thu Jul  4 05:21:59 1996  David Mosberger-Tang  <davidm@azstarnet.com>
345         * login/utmp.h: Fix typos.
347         * misc/syslog.c (vsyslog): Use __send instead of send and
348         __connect instead of connect to avoid name-space collisions (e.g.,
349         with psgetty).
351 Wed Jul  3 16:29:41 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
353         * nss/getXXbyYY_r.c (REENTRANT_NAME): Cast FCT in __nss_next call.
355         * sysdeps/generic/sbrk.c: Always call __brk (0) to update __curbrk.
357         * malloc/malloc-size.c (malloc_usable_size): Renamed from
358         malloc_object_allocation_size.
359         * malloc/malloc.h: Fix decl.
361         * sys/select.h: New file, wrapper header.
363         * posix/sys/types.h [__USE_BSD]: Include <sys/select.h>; remove
364         fd_set, associated macros, and select decl.
366         * sysdeps/posix/isfdtype.c: New file.
368 Tue Jul  2 23:45:14 1996  Ulrich Drepper  <drepper@cygnus.com>
370         The latest Japanese proposal for POSIX locales renames the
371         CHARMAP keyword in locale definition files to CHARCONV.
372         * locale/programs/ld-ctype.c, locale/programs/locales.h: Rename
373         function ctype_is_charmap to ctype_is_charconv.
374         * locale/programs/locfile-kw.gperf: Replace charmap keyword with
375         charconv.
376         * locale/programs/locfile-token.h: Add definition of token
377         charconv.
378         * locale/programs/locfile.c: Recognize charconv keyword.  Rename
379         lables according to this.
381         * locale/weight.h (get_weight): Cast constants to prevent
382         warnings.
384         * stdlib/strtod.c, stdlib/strtol.c, string/strcoll.c,
385         string/strxfrm.c: Add some more casts to prevent signed<->unsigned
386         warnings.
388         New stuff described in P1003.1g.
389         * misc/Makefile (headers): Add sys/select.h.
390         (routines): Add pselect.
391         * misc/sys/select.h: New file.  Declare select functions and
392         needed data types and macros.
393         * sysdeps/generic/pselect.c: New file.  Add generic implementation
394         of pselect() function which uses select().
396         * posix/getconf.c: Recognize new variables from P1003.1g.
397         * posix/posix1_lim.h: Define _POSIX_FD_SETSIZE, _POSIX_QLIMIT,
398         _POSIX_HIWAT, and _POSIX_UIO_MAXIOV.
399         * posix/unistd.h: Add description of the P1003.1g variables.
400         * sysdeps/generic/confname.h: Define _SC_* values for new
401         variables.
402         * sysdeps/posix/fpathconf.c (fpathconf): Add handling of
403         _PC_SOCK_MAXBUF.
404         * sysdeps/stub/fpathconf.c (fpathconf): Ditto.
405         * sysdeps/posix/sysconf.c (sysconf): Add handling of new
406         P1003.1g variables.
407         * sysdeps/stub/sysconf.c (sysconf): Ditto.
408         * sysdeps/unix/sysv/linux/posix_opt.h: Define _POSIX_POLL and
409         _POSIX_SELECT since Linux has this.
411         * socket/Makefile (routines): Add isfdtype.
412         * sysdeps/generic/sys/socket.h: Add prototype for isfdtype.
413         * sysdeps/stub/isfdtype.c: New file.  Stub implementation of
414         isfdtype.
416         * wcsmbs/wcrtomb.c (wcrtomb): Fix typo.
418 Wed Jul  3 11:26:28 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
420         * elf/Makefile (LDFLAGS-dl.so): New variable.
421         (libdl.so): Depend on eval.so.
422         (distribute): Add eval.c.
423         * elf/eval.c: New file.
425         * time/strftime.c (strftime: do_number): Adjust P and I after sprintf
426         in case it wrote fewer than MAXDIGITS chars.
428         * stdio/fwrite.c (fwrite: fill_buffer): Separate flushing for last
429         newline from flushing full buffer in loop, fix test so no fflush is
430         done when last byte written exactly fills the buffer.
432         * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Depend on libc.so.
434         * sysdeps/mach/hurd/Makefile (LDLIBS-c.so): Variable removed.
435         (libc.so): Instead, give this deps on lib{mach,hurd}user.so.
437         * elf/dl-debug.c (_dl_debug_initialize): Use LDBASE arg instead of
438         extracting _dl_rtld_map.l_addr.
440         * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare _dl_rtld_map as
441         weak.
442         * sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
444         * shlib-versions (*-*-*): Set libnss_db=1.
446 Tue Jul  2 10:44:37 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
448         * elf/rtld.c (dl_main): Set _dl_rtld_map's DT_DEBUG location too.
450         * rpm/template (%build): Use @prefix@ instead of always /usr.
451         Set up configparms only if @prefix@ is in fact /usr.
452         * rpm/Makefile ($(config)): Substitute $(prefix) for @prefix@.
454         * elf/Makefile: Add missing endif.
456         * nss/nss_files/files-ethers.c (ntohost): Fix db key.
458         * nss/nss_files/files-network.c: Pass empty for new DB_LOOKUP args.
459         (DATABASE): Define this instead of DATAFILE.
460         * nss/nss_files/files-hosts.c: Likewise.
461         (hostbyname): Use LOOKUP_NAME macro.
463         * nss/nss_db/db-XXX.c: New file.
464         * nss/Makefile (services): Add db.
465         (libnss_db-inhibit-o): New variable.
466         (libnss_db-routines): New variable.
467         (distribute): Append db-XXX.c.
468         (libnss_db.so): Depend on libdb.so and libnss_files.so.
469         ($(libnss_db-routines:%=$(objpfx)%.c)): New static pattern rule.
471         * nss/nss_files/files-XXX.c (DB_LOOKUP): Add KEYSIZE and KEYPATTERN
472         args, ignored.
473         (DATAFILE): New macro.
474         * nss/nss_files/files-parse.c (GENERIC): If undefined, define to
475         "files-XXX.c".
476         * nss/nss_files/files-rpc.c: Include GENERIC instead of "files-XXX.c".
477         Pass db key args to DB_LOOKUP.
478         (DATAFILE): Macro removed.
479         (DATABASE): New macro replaces it, lacks "/etc/" prefix.
480         * nss/nss_files/files-service.c: Likewise.
481         * nss/nss_files/files-pwd.c: Likewise.
482         * nss/nss_files/files-proto.c: Likewise.
483         * nss/nss_files/files-grp.c: Likewise.
484         * nss/nss_files/files-ethers.c: Likewise.
486         * elf/linux-compat.c: File removed.
487         * elf/Makefile (distribute): Remove linux-compat.c.
488         (ld-linux.so.1): Remove target and associated variables.
490         * sunrpc/xdr.c: Remove malloc decl.
491         * sunrpc/portmap.c: Likewise.
493         * sunrpc/svc_tcp.c (abort): Don't declare.  Instead define as macro
494         casting abort to fn returning bool_t.
496         * nss/nss_files/files-parse.c [EXTERN_PARSER]: Do an extern decl of
497         the parser function.
498         [EXTERN_PARSER] (LINE_PARSER): Define to empty.
499         * nss/nss_files/files-pwd.c (EXTERN_PARSER): Define it.
500         * nss/nss_files/files-grp.c: Likewise.
502         * Makeconfig (BUILD_CC): If undefined, define to $(CC).
504         * sunrpc/rpc/types.h: Include stdlib.h instead of declaring malloc.
506         * Makeconfig (built-program-cmd): Use $(rtld-installed-name) in place
507         of ld.so so lookups for that soname find it.
509         * nss/Makefile (libnss_dns.so): Depend on libresolv.so.
510         (resobjdir, LDLIBS-nss_dns.so): Variables removed.
512         * pwd/fgetpwent.c: Don't include ../nss/nss_files/files-parse.c to
513         define parse_line function.
514         (parse_line): #define to _nss_files_parse_pwent and
515         add extern decl for that.
517         * nss/nss_files/files-XXX.c (internal_getent): Return
518         NSS_STATUS_TRYAGAIN for ERANGE error.
520         * sysdeps/i386/strtok.S (LreturnNULL): Save current state ptr instead
521         of null, so next round returns null again instead of bombing.  Fix
522         from drepper.
524         * nss/nss_files/files-parse.c (LINE_PARSER): Take new first arg EOLSET.
525         Remove ; after `ENTDATA_DECL (data)'.
526         Truncate line at strpbrk (line, EOLSET "\n").
527         (ENTDATA_DECL): Put ; at end.
528         (MIDLINE_COMMENTS): Macro removed.
529         * nss/nss_files/files-ethers.c: Pass new argument.
530         * nss/nss_files/files-hosts.c: Likewise.
531         * nss/nss_files/files-network.c: Likewise.
532         * nss/nss_files/files-parse.c: Likewise.
533         * nss/nss_files/files-proto.c: Likewise.
534         * nss/nss_files/files-rpc.c: Likewise.
535         * nss/nss_files/files-service.c: Likewise.
536         * grp/fgetgrent.c: Likewise.
537         * pwd/fgetpwent.c: Likewise.
538         * nss/nss_files/files-pwd.c: Get parse_line with extern decl, since
539         fgetpwent.c already defines it.
540         * nss/nss_files/files-grp.c: Likewise.
542         * elf/dl-load.c (_dl_map_object): Use any object with matching l_name
543         as well as any matching with l_libname.  Fix DT_SONAME lookup to use
544         string table properly.
546         * elf/rtld.c (dl_main): Set _dl_rtld_map.l_name from _dl_argv[0] when
547         invoked directly, and l_libname from that if PT_INTERP missing.
548         Set l_name from l_libname only if not set from argv.
550         * time/europe, time/northamerica: Updated from ADO 96i.
552 Mon Jul  1 15:44:34 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
554         * stdio-common/tst-ungetc.c: Include unistd.h.
556         * inet/Makefile (routines): Change getnetbypt to getnetbyad.
558 Mon Jul  1 13:32:42 1996  Miles Bader  <miles@gnu.ai.mit.edu>
560         * hurd/report-wait.c (describe_number): Make I unsigned long.
562         * login/login.c (login): Only Frob OLD->ut_type if getutline_r
563         actually found any entry.
565         * login/pututline_r.c (pututline_r): If not located after any
566         entry don't use UTMP_DATA->ubuf, and seek to the end before adding.
567         Lock the file before stating.
569 Mon Jul  1 12:29:50 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
571         * nss/Makefile (databases): Change host to hosts.
572         * nss/host-lookup.c: Renamed to nss/hosts-lookup.c.
574         * nss/nsswitch.c (nss_parse_service_list): Use const for NAME.
576         * nss/nss_files/files-parse.c (parse_list): Correct alignment fixup.
578         * string/string.h (strndupa): Pass missing arg to strnlen.
580         * inet/getnetbypt_r.c: Renamed to ...
581         * inet/getnetbyad_r.c: this; fixed function name.
582         * inet/getnetbypt.c: Renamed to ...
583         * inet/getnetbyad.c: this; fixed function name.
585 Sat Jun 29 01:08:35 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
587         * grp/getgrgid_r.c (LOOKUP_TYPE): Define to struct group, not
588         struct passwd.
590 Fri Jun 28 23:25:35 1996  Miles Bader  <miles@gnu.ai.mit.edu>
592         * login/login.c (login): Initialize DATA so that setutent_r will
593         actually do something.
595 Fri Jun 28 16:53:01 1996  David Mosberger-Tang  <davidm@azstarnet.com>
597         * resolv/res_hconf.c (strndup): Remove function.
599         * nss/nsswitch.c (nss_lookup_function): Declare loadbase and ref
600         using ElfW() instead of Elf32_*.
602         * sysdeps/unix/sysv/linux/alpha/init-first.h,
603         sysdeps/unix/sysv/linux/m68k/init-first.h,
604         sysdeps/unix/sysv/linux/i386/init-first.h: New files.
605         * sysdeps/unix/sysv/linux/init-first.c: Use platform-dependent
606         init-first.h to make abstract machine dependent parts of
607         initialization.
609         * sysdeps/unix/alpha/sysdep.h: Undo PIC-optimization of syscall
610         error handling.  It's safer that way.
612         * sysdeps/unix/alpha/sysdep.S: Make ldgp part of the prologue.
613         Fix by Richard Henderson.
615         * sysdeps/alpha/dl-machine.h (elf_alpha_fix_plt): Fix
616         typo/extraneous whitespace.
618         * sunrpc/xdr.c (xdr_int, xdr_u_int): Use <limits.h> to test
619         determine what integer sizes we're dealing with.
621 Fri Jun 28 15:46:02 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
623         * hurd/hurdsig.c (_hurd_internal_post_signal): In pending signal
624         check for signal zero, repair logical sense of test by
625         parenthesizing correctly.
627         * hurd/hurdsig.c (_hurd_internal_post_signal): In
628         check-for-pending signals code, release _hurd_siglock before
629         jumping to deliver_pending.
631 Thu Jun 27 04:04:27 1996  David Mosberger-Tang  <davidm@azstarnet.com>
633         * configure.in (config_machine): Make ELF the default even for
634         Linux/Alpha unless a configuration of the form *-*-linux*ecoff
635         is specified.
637 Fri Jun 28 07:27:10 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
639         * nss/nss_files/files-hosts.c (ENTDATA): Define it.
640         * nss/nss_files/files-parse.c (struct parser_data): Define entdata
641         member only #ifdef ENTDATA.
642         (ENTDATA_DECL): New macro.
643         (LINE_PARSER): Use it for entdata decl.
644         (parse_list): Find the space for LIST from DATA->linebuffer instead of
645         from the input LINE, which might not be writable buffer space.
646         (LINE_PARSER): Use `parser_stclass' in place of `static inline'.
647         [ENTDATA] (parser_stclass): #define to `static inline'.
648         [!ENDATA] (parser_stclass): #define to empty.
649         [!ENTDATA] (parse_line): #define to _nss_files_parse_ENTNAME; the
650         function is exported to -lnss_files users.
652         * string/strndup.c: Add missing arg.
654         * string/string.h (strndupa): Likewise.
655         * string/strndup.c (strndup): Always terminate the string.
657 Thu Jun 27 14:22:31 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
659         * stdio/Makefile (routines): Add vscanf.
660         * stdio-common/Makefile (routines): Remove vscanf.
661         * stdio-common/vscanf.c: Move to ...
662         * stdio/vscanf.c: here.
664         * rpm/Makefile (headers, install-lib, install-lib.so,
665         versioned, install-bin, install-sbin, install-data,
666         install-others): Add $(-VARIABLE).
668 Fri Jun 28 02:41:08 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
670         * nss/Makefile (databases): New variable.
671         (routines, libnss_files-routines): Use it.
672         (subdir-dirs): Compute from $(services).
674         * sysdeps/unix/sysv/linux/syscalls.list (create_module, delete_module,
675         init_module, klogctl): Use EXTRA in the "caller" column so these get
676         added to unix-extra-syscalls and thus compiled in misc.
678         * string/Makefile (routines): Add strndup.
679         * string/strndup.c: New file.
680         * string/string.h: Declare strndup.
681         (strndupa): New macro.
683         * string/string.h: Declare __strdup.
684         * string/strdup.c: Deansideclized.  Define __ name and weak alias.
686         * string/string.h: Don't define memccpy as macro for [__OPTIMIZE__].
688 Thu Jun 27 23:43:22 1996  Richard Henderson  <rth@tamu.edu>
690         * sysdeps/alpha/dl-machine.h (elf_machine_rela):  The Alpha's
691         address-of operation and plt format conspire to require all
692         dynamic relocs to be resolved to actual symbols not plt entries.
694 Thu Jun 27 02:49:28 1996  Ulrich Drepper  <drepper@cygnus.com>
696         * catgets/gencat.c: Add casts to avoid signed<->unsigned warnings.
698         * grp/initgroups.c (initgroups): De-ansi-fy.
699         Move declaration of NGROUPS and GROUPS outside #if so that
700         the code compiles for NGROUPS_MAX != 0.
702         * inet/Makefile (headers): Add netinet/ether.h and netinet/if_ether.h.
703         (routines): Add ether_aton, ether_aton_r, ether_hton, ether_line,
704         ether_ntoa, ether_ntoa_r, and ether_ntoh.
705         * inet/ether_aton.c, inet/ether_aton_r.c, inet/ether_hton.c,
706         inet/ether_line.c, inet/ether_ntoa.c, inet/ether_ntoa_r.c,
707         inet/ether_ntoh.c: New files.  Implementation of functions to
708         handle Ethernet address to host mapping.
709         * inet/netinet/ether.h: New file.  Declare ether_* functions.
710         * netinet/ether.h: Wrapper around inet/netinet/ether.h for glibc
711         compilation.
712         * nss/ethers-lookup.c: New file.  Lookup function for ethers database.
713         * nss/Makefile (routines): Add ethers-lookup.
714         (libnss_files-routines): Add files-ethers.
716         * nss/getXXent_r.c: Don't define set*ent and end*ent function
717         with _r suffix.
719         * nss/nss_files/files-XXX.c (internal_endent): Don't reset
720         KEEP_STREAM every time called.
721         (_nss_files_end): Reset KEEP_STREAM here instead.
722         (internal_getent): If STREAM == NULL try to open instead of
723         signalling error.
724         Use cast to prevent warning.
725         Terminate read line in case the buffer is too small.
727         * nss/nss_files/files-ethers.c: New file.  Implementation of
728         Ethernet adress<->hostname lookup through files interface.
730         * stdlib/mbstowcs.c: Define based on mbsrtowcs().
731         * stdlib/mbtowc.c: Define based on mbrtowc().
732         * stdlib/wcstombs.c: Define based on wcsrtombs().
733         * stdlib/wctomb.c: Define based on wcrtomb().
735         * sunrpc/xdr.c (xdr_u_int): Avoid bogus call to
736         unexpected_sizes_in_xdr_u_int.
738         * sysdeps/generic/netinet/if_ether.h: New file.  Generic declaration
739         of `struct ether_addr'.
740         * sysdeps/unix/sysv/linux/netinet/if_ether.h: New file.  Linux specific
741         declaration of `struct ether_addr'.
743         * wcsmbs/mbrtowc.c: Handle case where argument PS is NULL.
744         * wcsmbs/mbsrtowcs.c: Ditto.
745         * wcsmbs/wcrtomb.c: Ditto.
746         * wcsmbs/wcsrtombs.c: Ditto.
748         * wcsmbs/mbsinit.c: Prepare for PS being NULL.
750 Wed Jun 26 13:19:35 1996  Miles Bader  <miles@gnu.ai.mit.edu>
752         * hurd/get-host.c <fcntl.h>: New include.
753         * hurd/set-host.c <fcntl.h>: New include.
754         (_hurd_set_host_config): Include NEW in args to dir_link.
755         Return NWROTE, not NREAD.
757         * sysdeps/mach/hurd/getcwd.c
758         (_hurd_canonicalize_directory_name_internal): Don't deallocate
759         DOTID & DOTDEVID until we're finished with them (we need to keep
760         them at least until we've fetched the next level of id ports, so
761         that mach will be able to use the same name if they're the same).
762         Add inner_errlose: label, which deallocates DOTID & DOTDEVID and
763         jumps to errlose, for those places where such cleanup is needed.
765 Wed Jun 26 01:58:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
767         * nss/nss_files/files-parse.c (parse_list): Count null in EOL calc.
769         Move DB code into separate -ldb library.
770         * db/Makefile (extra-libs): New variable, list libdb.
771         (routines): Renamed to libdb-routines.
772         * shlib-versions: Add libdb=2.
774         * nss/network-lookup.c (DEFAULT_CONFIG): New macro.
775         * nss/host-lookup.c (DEFAULT_CONFIG): New macro.
777         * nss/nsswitch.c (nss_parse_service_list): Use __strncasecmp instead
778         of strncasecmp.  Extend syntax to grok [!foo=bar].
780         * sysdeps/generic/strncase.c: Define __strncasecmp with strncasecmp as
781         weak alias.
782         * string/string.h: Declare __strncasecmp.
784         * nss/nsswitch.c (nss_parse_file): Call __getline, not getline.
785         (service_alias): Variable removed.
786         (nss_parse_service_list): New function, broken out of nss_getline.
787         Remove alias conversion; we will just use symlinks.
788         (__nss_database_lookup): Take new string arg DEFCONFIG.
789         If no entry exists, make one with service list parsed from that.
790         * nss/nsswitch.h: Update protocol for __nss_database_lookup.
791         * nss/XXX-lookup.c (DEFAULT_CONFIG): New macro, set to 0 if undefined.
792         (DB_LOOKUP_FCT): Pass it to _nss_database_lookup.
794         * grp/initgroups.c: Rewritten using getgrent.  Handle unlimited group
795         list size.
797         * sunrpc/xdr.c (xdr_int): #if 0 out unresolved references in dead code.
799 Wed Jun 26 01:56:50 1996  Ulrich Drepper  <drepper@cygnus.com>
801         * locale/programs/locale.c (long_options): Short form of
802         --version option is `-V'.
803         (main): Recognize `-V' as option, not `-v'.
804         Call `usage' instead of printing error message for illegal
805         option.
806         (usage): Document `-V'.
808 Tue Jun 25 17:22:55 1996  Miles Bader  <miles@gnu.ai.mit.edu>
810         * sysdeps/mach/hurd/getcwd.c
811         (_hurd_canonicalize_directory_name_internal): Initialize PARENT to
812         THISDIR, and don't ever deallocate PARENT unless it's != THISDIR.
814 Tue Jun 25 10:58:23 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
816         * inet/getrpcent.c: Fix macros.
817         * inet/getrpcent_r.c: Fix macros.
819         * elf/dlsym.c (dlsym): Search the global scope if HANDLE is null.
821         * elf/dl-load.c (_dl_map_object_from_fd): Initialize L.
823 Tue Jun 25 09:55:47 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
825         * catgets/gencat.c (write_out): Use %Zu to print variables of type
826         size_t.
827         * resolv/res_debug.c (__p_rr): Print size_t variable as %lu and
828         cast it to (unsigned long) to make it work both on 32 and 64
829         bit architectures.
831 Sat Jun 22 13:05:25 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
833         * locale/Makefile (distribute): Add `programs/' prefix to all
834         files in that directory.
836         * Makerules (distinfo-vars): Assign subdir directly so that `ifdef
837         subdir' works.
839         * MakeTAGS (sources, headers): Make them simply expanded variables
840         so that all-dist is expanded before it is changed.
842 Tue Jun 25 02:59:11 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
844         * Make-dist (dist): Don't depend on crypt tar file.  Remove that rule.
845         * Makefile (subdirs): Remove crypt.
846         * crypt: Directory removed.  It will be made an independent library
847         distribution.
849         * Makefile (distribute): Add rpm/{Makefile,teplate,rpmrc}.
851         * inet/getrpcent_r.c (DATABASE_NAME): New macro.
853         * inet/getrpcbynumber.c (BUFLEN): New macro.
855         * configure.in (--no-whole-archive check): Remove backslashes in cmd.
857         * Makefile (headers): Add libc-lock.h.
858         * sysdeps/stub/libc-lock.h: New file.
860         * inet/getrpcbynumber.c: Remove _r typo.
862         * elf/dl-load.c (_dl_map_object): Fix typo in last change.
864         * nss/nss_files/files-parse.c (parse_list): Reset ELT for elements
865         after the first!
867         * nss/nsswitch.c (__nss_database_lookup): If nsswitch.conf is missing
868         or doesn't mention DATABASE, use an internal default equivalent to
869         "DATABASE: compat [NOTFOUND=return] dns [NOTFOUND=return] files".
870         (nss_lookup_function): Call nss_new_service as needed.
871         (nss_parse_file): Don't bother calling nss_new_service here.
873         * grp/fgetgrent.c (LINE_PARSER): Pass zero SWALLOW arg for fields.
874         * pwd/fgetpwent.c: Likewise.
876         * malloc/malloc.h: Declare malloc_object_allocated_size, malloc_walk.
877         * malloc/Makefile (dist-routines): Add malloc-size, malloc-walk.
878         * malloc/malloc-size.c: New file.
879         * malloc/malloc-walk.c: New file.
881         * malloc/malloc-find.c (malloc_find_object_address): Return null if
882         PTR is outside the heap.
884         * elf/dl-load.c (_dl_map_object): If the requested name matches the
885         soname of a loaded object, use that object.
887 Mon Jun 24 19:57:01 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
889         * Makefile (subdirs): Add nss.
891         * inet/Makefile (routines): Add getrpcent, getrpcbyname,
892         getrpcbynumber, getrpcent_r, getrpcbyname_r, getrpcbynumber_r.
893         * inet/getrpcbynumber_r.c: New file.
894         * inet/getrpcbynumber.c: New file.
895         * inet/getrpcbyname.c: New file.
896         * inet/getrpcbyname_r.c: New file.
897         * inet/getrpcent_r.c: New file.
898         * inet/getrpcent.c: New file.
899         * nss/rpc-lookup.c: New file.
900         * nss/nss_files/files-rpc.c: New file.
901         * nss/Makefile (routines): Add rpc-lookup.
902         (libnss_files-routines): Add files-rpc.
903         * sunrpc/Makefile (routines): Remove getrpcent.
904         * sunrpc/getrpcent.c: File removed.
906         * nss/getXXent_r.c (REENTRANT_GETNAME): Clear NO_MORE when NIP is
907         non-null on entry.
909         * Makeconfig (rpath-link): Add $(nssobjdir).
910         (nssobjdir): New variable.
912         * Makerules: Move shared library building before objects rules, so
913         versions are known before extra-lib.mk gets included.
914         * extra-lib.mk (lib-noranlib): Depend on the shared object too.
916         * pwd/getpwuid.c: Rewritten using nss.
917         * pwd/getpwnam.c: Likewise.
918         * pwd/getpwent.c: Likewise.
919         * grp/getgrnam.c: Likewise.
920         * grp/getgrgid.c: Likewise.
921         * grp/getgrent.c: Likewise.
922         * pwd/Makefile (routines): Add getpwent_r, getpwnam_r, getpwuid_r.
923         * pwd/getpwent_r.c: New file.
924         * pwd/getpwnam_r.c: New file.
925         * pwd/getpwuid_r.c: New file.
926         * grp/Makefile (routines): Add getgrent_r, getgrgid_r, getgrnam_r.
927         * grp/getgrnam_r.c: New file.
928         * grp/getgrgid_r.c: New file.
929         * grp/getgrent_r.c: New file.
930         * grp/Makefile (routines): Remove grpopen, grpread.
931         * pwd/Makefile (routines): Remove pwdopen, pwdread.
932         * grp/grpopen.c, grp/grpread.c, pwd/pwdopen.c, pwd/pwdread.c: Removed.
934         * pwd/fgetpwent.c: Rewritten using files-parse.c.
935         * grp/fgetgrent.c: Likewise.
937         * nss/Makefile (routines): Add grp-lookup and pwd-lookup.
938         * nss/pwd-lookup.c, nss/grp-lookup.c: New files.
939         * nss/nss_files/files-grp.c: New file.
940         * nss/nss_files/files-pwd.c: New file.
942         * nss/Makefile (subdir-dirs): New variable; use it in vpath.
944         * nss/nss_files/files-parse.c: New file.
945         * nss/nss_files/files-XXX.c: New file.
946         * nss/nss_files/files-hosts.c, nss/nss_files/files-proto.c,
947         nss/nss_files/files-service.c, nss/nss_files/files-network.c:
948         Rewritten using them.
950         * nss/Makefile (libnss_files-routines): Remove files-host.
951         Add files-hosts, files-grp, files-pwd.
953         * nss/nss_dns/dns-network.c: Don't include <pthread.h>.
955 Mon Jun 24 22:39:12 1996  Richard Henderson  <rth@tamu.edu>
957         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE):
958         A .plt entry now loads the .rela.plt offset directly rather
959         than making us calculate it.
961 Sun Jun 23 15:24:05 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
963         * time/Makefile ($(installed-localtime-file) rule): Do
964         $(make-target-directory) first.
966         * resolv.h: Fix wrapper for resolv/resolv.h.
968         * configure.in (ld --no-whole-archive check): Use AC_TRY_COMMAND.
969         Compile dummy file and pass -nostdlib -nostartfiles so as not to
970         require installed libraries.
972         * shlib-versions (*-*-*): Set libresolv=2, libnss_files=1,
973         libnss_dns=1.
975 Sun Jun 23 19:42:05 1996  Ulrich Drepper  <drepper@cygnus.com>
977         * resolv/Makefile (distribute): Remove res_hconf.h; add mapv4v6addr.h
978         and mapv4v6hostent.h.
979         (routines): Move res* and gethnamaddr into libresolv-routines.
980         (libresolv-routines): New variable, put them there.
981         (extra-libs): New variable, list libresolv.
982         (CPPFLAGS): Add -D for get*by* to res_get*by*.
984         * resolv/netdb.h (_PATH_NSSWITCH_CONF): New macro.
986         * inet/herrno.c: New file.
988         * resolv/res_init.c: Remove res_hconf calls.
990         * nss/Makefile, nss/XXX-lookup.c, nss/file-lookup.c,
991         nss/getXXbyYY.c, nss/getXXbyYY_r.c, nss/getXXent.c,
992         nss/getXXent_r.c, nss/host-lookup.c, nss/network-lookup.c,
993         nss/nsswitch.c, nss/nsswitch.h, nss/proto-lookup.c,
994         nss/service-lookup.c: New files.  Implementation of name
995         service switch, following the approach in Solaris.
996         Interface specification and general structure inspired by Peter
997         Eriksson <pen@lysator.liu.se>.
998         * nss/nss_files/files-host.c, nss/nss_files/files-network.c,
999         nss/nss_files/files-proto.c, nss/nss_files/files-service.c:
1000         Implementation of libnss_files.so module for file based databases
1001         in NSS service.
1002         * nss/nss_dns/dns-host.c, nss/nss_dns/dns-network.c: Implementation
1003         if libnss_dns.so module for DNS name lookup in NSS service.
1005         * inet/getproto.c, inet/getprtent.c, inet/getprtname.c,
1006         inet/getservent.c, inet/getsrvbynm.c, inet/getsrvbypt.c:
1007         Changed to serve as interface to NSS.
1008         * inet/gethstbyad.c, inet/gethstbyad_r.c, inet/gethstbynm.c,
1009         inet/gethstbynm2.c, inet/gethstbynm2_r.c, inet/gethstbynm_r.c,
1010         inet/gethstent.c, inet/gethstent_r.c, inet/getnetbynm.c,
1011         inet/getnetbynm_r.c, inet/getnetbypt.c, inet/getnetbypt_r.c,
1012         inet/getnetent.c, inet/getnetent_r.c, inet/getproto_r.c,
1013         inet/getprtent_r.c, inet/getprtname_r.c, inet/getservent_r.c,
1014         inet/getsrvbynm_r.c, inet/getsrvbypt_r.c: New files.  Implement
1015         interfaces to NSS, including reentrant functions.
1017         * resolv/getnetbyaddr.c, resolv/getnetbyname.c, resolv/getnetent.c,
1018         resolv/sethostent.c: Removed:  Obsoleted by NSS.
1020         * resolv/mapv4v6addr.h, resolv/mapv4v6hostent.h: Extracted from
1021         gethnamaddr.c.  These private functions are now used in more
1022         than one file.
1024         * resolv/inet_pton.c, resolv/gethnamaddr.c: Updated to bind-4.9.4-T5B.
1026 Sat Jun 22 16:49:47 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1028         * rpm/Makefile ($(config)): Make sure the word list in the for
1029         loop is syntactically non-empty.
1031 Sat Jun 22 21:29:52 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1033         * Version 1.92 test release.
1035 Sat Jun 22 23:30:07 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1037         * sysdeps/unix/sysv/linux/syscalls.list (ksyslog_ctl): Rename
1038         to klogctl to match prototype in sys/klog.h.
1040         * sysdeps/posix/libc_fatal.c: Add include of <string.h>.
1041         * sysdeps/unix/sysv/linux/gethostid.c: Ditto.
1043         * sysdeps/posix/getcwd.c (__canonicalize_directory_name_internal):
1044         Remove.  Code is now part of __getcwd again.  The old function
1045         never really worked for anything but THISDIR==".".
1047         * sysdeps/alpha/Makefile (CFLAGS-rtld.c): Add -mbuild-constants
1048         only when building ELF version of library.
1050         * libio/libioP.h (_IO_vscanf): Add prototype.
1052         * posix/unistd.h (syscall): Change sysno arg and return value
1053         to int long.
1055 Sat Jun 22 10:44:09 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1057         * version.h (VERSION): Updated to 1.92.
1059         * misc/Makefile (headers): Add ar.h.
1060         * misc/ar.h: New file.
1062         * config.make.in (BUILD_CC): New variable.
1063         * configure.in: Check for BUILD_CC if $host != $build.
1065         * posix/glob.c: Include <alloca.h> only [HAVE_ALLOCA_H], not [sparc].
1067         * Makerules [! objects] (subdir_lib): Depend on the stamp$o files.
1068         (stamp$o files): New targets, create them empty, no deps.
1070         * rpm/template (Source): New field.
1071         (%prep, %build, %install): New sections.
1072         (%files): Add %doc FAQ NEWS NOTES README.
1073         * rpm/rpmrc (builddir): Removed.
1075 Fri Jun 21 00:27:51 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1077         * elf/dl-load.c (_dl_map_object_from_fd): Fix mapping and l_phdr
1078         guessing to not assume p_vaddr of first load cmd is zero.
1080         * sysdeps/sparc/elf/start.S: New file.
1081         * sysdeps/sparc/dl-machine.h: New file.
1083         * posix/fnmatch.c (fnmatch): Fix \*[*?]+ case to increment name ptr
1084         only for ?s, not for *s.  Fix from Chet Ramey.
1086         Fixes thanks to Raja R Harinath <harinath@cs.umn.edu>:
1087         * sysdeps/unix/sysv/utmpbits.h: Define _HAVE_UT_{TYPE,ID,TV,HOST}.
1088         Use __{BEGIN,END}_DECLS.
1089         (_PATH_WTMP, _PATH_UTMP, _PATH_LASTLOG): New macros.
1090         * login/utmp.h (UTMP_FILE, UTMP_FILENAME, WTMP_FILE, WTMP_FILENAME):
1091         New macros, moved here from sysdeps/gnu/utmpbits.h.
1092         * sysdeps/generic/utmpbits.h (_HAVE_UT_HOST): Define it.
1093         * sysdeps/gnu/utmpbits.h (_HAVE_UT_HOST): Likewise.
1094         * login/logout.c: Use ut_host only #if _HAVE_UT_HOST.
1095         Use sizeof instead of UT_*SIZE.
1096         * login/logwtmp.c: Likewise.
1098         * misc/tsearch.c (tdelete): Define as weak alias to __tdelete.
1100         * version.c (banner): Add trailing newline.
1102         * login/utmp.h: Declare login_tty.
1104 Thu Jun 20 21:19:07 1996  Richard Henderson  <rth@tamu.edu>
1106         * sysdeps/alpha/dl-machine.h (elf_alpha_fix_plt):
1107         Changed to a 12-byte PLT entry to remove dependency on $gp.
1108         Take a new got_addr parameter.
1109         (elf_machine_rela): Pass the new parameter.
1110         (ELF_MACHINE_RUNTIME_TRAMPOLINE): Do arithmetic for 12-byte PLT.
1111         (RTLD_START): Do normal linkage with program entry.
1113 Thu Jun 20 12:18:21 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1115         * sysdeps/mach/hurd/brk.c (_hurd_brk): Initialize to 0.
1117         * hurd/getuids.c (getuids): New weak link to __getuids.
1119 Wed Jun 19 10:21:24 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1121         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry,
1122         __hurd_file_name_lookup, __hurd_file_name_split): Add & use LOOKUP
1123         argument.
1124         Rename nested function lookup to lookup_op.
1125         (__file_name_lookup, __file_name_lookup_under):
1126         Pass 0 for lookup arg to __hurd_file_name_lookup.
1127         (__file_name_split): Likewise for __hurd_file_name_split.
1128         * hurd/path-lookup.c (hurd_file_name_path_lookup): Add LOOKUP argument.
1129         Rename nested function lookup to scan_lookup.
1130         (file_name_path_lookup): Pass 0 for lookup arg to
1131         hurd_file_name_path_lookup.
1132         * hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
1133         __hurd_file_name_lookup_retry, hurd_file_name_lookup_retry:
1134         __hurd_file_name_split, hurd_file_name_split, hurd_file_name_lookup):
1135         Add LOOKUP argument.
1136         * sysdeps/mach/hurd/access.c (__access): Pass 0 lookup arg to
1137         __hurd_file_name_lookup.
1139 Mon Jun 17 19:09:49 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1141         * Make-dist (+sysdeps): Move wildcard inside loop to avoid consing
1142         up a huge list just to discard most of it.
1144         * configure.in (sysnames): Avoid fgrep by using the case shell
1145         builtin.
1147         * Makeconfig (config.status): Fix dependency on Implies files.
1149 Wed Jun 19 01:27:57 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1151         * math/Makefile (distribute): Add ieee-math.c.
1153 Wed Jun 19 03:24:58 1996  Ulrich Drepper  <drepper@cygnus.com>
1155         * locale/codeset_name.c: New file.  Provide function for information
1156         about currently used character set.
1157         * locale/Makefile (routines): Add codeset_name.
1158         * locale/langinfo.h (_NL_CTYPE_CODESET_NAME): Add new constant.
1159         * locale/localeinfo.h: Change magic number because of incompatible
1160         change.
1161         * locale/C-ctype.c: Add initializer for new field `codeset_name'.
1162         * locale/programs/ld-ctype.c: Implement handling of `codeset_name'.
1164         * locale/programs/locfile.c: Don't depend in pre-2.0 Linux specific
1165         name `MAX_IOVEC'.  Instead use standard name `UIO_MAXIOV'.
1167         * locale/setlocale.c (setlocale): Initialize local variables to
1168         prevent warnings.
1170 Thu Jun 13 17:25:11 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1172         * sysdeps/generic/memcmp.c: Add prototype decls for internal fns.
1174         * locale/programs/locale.c: Include string.h.
1176         * sunrpc/xdr_stdio.c (xdrstdio_getlong), sunrpc/xdr_rec.c
1177         (xdrrec_getlong), sunrpc/xdr_mem.c (xdrmem_getlong): Make sure
1178         appropriate sign-extension is performed on machines with
1179         sizeof(long) > 4.
1181         * sunrpc/xdr.c (xdr_int, xdr_u_int): If sizeof(long)==8 and
1182         sizeof(int)<sizeof(long), we need to go through a temporary
1183         variable.
1185         * locale/programs/ld-numeric.c: Include <alloca.h>
1187         * libio/stdio.h (__libc_fatal): Add prototype.
1189         * libio/cleanup.c: Use __P() to declare prototype when __STDC__ is
1190         in efect.
1192         * libio/iopopen.c (read_or_write, parent_end, child_end): Declare
1193         volatile to avoid "might get clobbered by longjmp" warning.
1195         * features.h (__KERNEL_STRICT_NAMES): Define __KERNEL_STRICT_NAMES
1196         unless _LOOSE_KERNEL_NAMES is in effect (which, with high
1197         probability is a sure loser).
1198         * sysdeps/unix/sysv/linux/gnu/types.h (__KERNEL_STRICT_NAMES): Remove.
1200         * sysdeps/unix/bsd/osf/alpha/start.S (errno): Removed.
1201         * sysdeps/unix/sysv/linux/alpha/start.S: Ditto.
1203         * misc/paths.h (_PATH_MAN): Change from /usr/share/man to /usr/man
1204         to be Linux FSSTND compliant.
1206 Mon Jun 10 17:50:31 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1208         * sysdeps/unix/sysv/linux/alpha/pipe.S: Use PSEUDO.
1210         * sysdeps/unix/sysv/linux/alpha/sysdep.S,
1211         sysdeps/unix/sysv/linux/alpha/brk.S,
1212         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
1213         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
1214         sysdeps/unix/sysv/linux/alpha/llseek.S,
1215         sysdeps/unix/sysv/linux/alpha/sigsuspend.S,
1216         sysdeps/unix/sysv/linux/alpha/syscall.S: Rename syscall_error to
1217         __syscall_error to avoid intruding application name space.
1219         * sysdeps/unix/sysv/linux/alpha/sysdep.h: Rename __NR_get?id
1220         to SYS_get?id so that syscall stubs in sysdeps/unix define
1221         these syscalls in terms of getxpid/getxuid/getxgid.
1223         * sysdeps/unix/_exit.S, sysdeps/unix/getegid.S,
1224         sysdeps/unix/geteuid.S, sysdeps/unix/getppid.S,
1225         sysdeps/unix/execve.S, sysdeps/unix/fork.S,
1226         sysdeps/unix/syscall.S: Terminate syscall with PSEUDO_END.
1228         * sysdeps/unix/make-syscalls.sh, sysdeps/unix/sysdep.h
1229         (PSEUDO_END): Rename END() to PSEUDO_END().
1231         * sysdeps/unix/alpha/sysdep.h: Move error-handling code in PSEUDO
1232         to PSEUDO_END to improve branch-prediction.  Include .frame
1233         directive to make syscalls debugabble.
1234         (PSEUDO_END): New macro.
1236         * sysdeps/unix/alpha/sysdep.h, sysdeps/alpha/bb_init_func.S,
1237         sysdeps/unix/sysv/linux/alpha/brk.S: Use ldiq instead of ldi since
1238         latter is illegal under DEC Unix.
1240         * sysdeps/unix/alpha/sysdep.S: Renamed from
1241         sysdeps/unix/sysv/linux/alpha/sysdep.S.  This file works for OSF/1
1242         as well.
1243         * sysdeps/unix/bsd/osf/alpha/sysdep.S: Remove (note that the
1244         EWOULDBLOCK -> EAGAIN mapping was unnecessary since
1245         EWOULDBLOCK==EAGAIN under DEC Unix and Linux/Alpha).
1247         * sysdeps/alpha/divrem.h: Use retaddr instead of ra as the return
1248         address register in the .frame directive.
1250         * sysdeps/alpha/copysign.c: Remove.
1252         * sunrpc/rpc/types.h: Include <sys/param.h> and <netinet/in.h> to
1253         avoid RPC definitions of INADDR_LOOPBACK and/or MAXHOSTNAMELEN.
1255         * errno.h: Move __END_DECLS to correct place to make file
1256         compilable under c++.
1258         * dirent/dirent.h: Document _DIRENT_HAVE_D_OFF macro.  Define
1259         d_ino only if <direntry.h> hasn't defined d_fileno.
1261         * configure.in (HAVE_ASM_WEAKEXT_DIRECTIVE): Reverse order of
1262         arguments to weakext to make .weakext detection work on ECOFF systems.
1264         * FAQ: Add Linux/Alpha to list of supported platforms.  Mention
1265         that _validuser() has been replaced by __ivaliduser().
1267 Thu Jun  6 21:39:38 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1269         * sysdeps/unix/bsd/sun/sunos4/tcsetattr.c (tcsetattr): Declare cmd
1270         as unsigned long, not as int (to avoid incorrect int->long
1271         promotion).
1273 Tue Jun 18 17:56:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1275         * Version 1.91 test release.
1277         * Makerules ($(common-objpfx)distinfo-$(subdir)): Change target from
1278         distinfo to this.
1279         (distinfo): Make phony target depending on that.
1280         (TAGS, po/%.pot, dist): Change deps.
1281         (common-clean): Remove that file.
1282         * rpm/Makefile (distinfo): Change names.
1284         * rpm/Makefile (clean): New target.
1286         * stdlib/test-canon.c: New test program contributed by David Mosberger.
1287         * stdlib/Makefile (tests): Add test-canon.
1288         * stdlib/canonicalize.c: Rewritten by David Mosberger.
1290 Mon Jun 17 17:53:21 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1292         * mach/Machrules (%_server.c %_server.h rule): Remove gratuitous
1293         mention of $< in mig cmd.  Thanks to Shantanu Goel.
1295         * sysdeps/mach/hurd/brk.c (___brk_addr): Define as weak alias for
1296         _hurd_brk.
1298         * libio/stdio.h [__USE_SVID]: Declare tempnam.
1300 Fri Jun 14 19:28:33 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1302         * sysdeps/unix/sysv/linux/syscalls.list: Add swapon with two
1303         parameters.
1305 Wed Jun 12 20:40:51 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1307         * sysdeps/m68k/dl-machine.h (RTLD_START): Fix access to
1308         _dl_default_scope.
1310 Sun Jun 16 03:22:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1312         * sysdeps/stub/elfclass.h: New file.
1314         * Make-dist (subdir): Make empty value really empty.
1316         * version.h (VERSION): Update to 1.91.
1318         * hurd/hurdinit.c (map0): Remove [!PIC] conditional.
1320         * shlib-versions (*-*-*): Add libutil=1.
1322         * rpm/Makefile (install-lib): Add libc.a et al.
1323         (install-others): Only add libc.so if $(build-shared) is yes.
1325         * math/Makefile (install-lib): New variable, list libieee.a.
1326         (non-lib.a): Likewise.
1327         (extra-objs): Likewise, and ieee-math.o.
1328         ($(objpfx)libieee.a): New target, link to ieee-math.o.
1329         * math/ieee-math.c: New file.
1330         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=math]: Remove setfpucw
1331         and libieee.a stuff.
1332         * sysdeps/unix/sysv/linux/ieee-fpucw.c: File removed.
1333         * sysdeps/unix/sysv/linux/i386/ieee_fpu.c: File removed.
1335         * sysdeps/unix/sysv/Makefile (sysdep_headers): Make append of termio.h
1336         and rule for it conditional on termio.h not already being in
1337         sysdep_headers.
1339         * rpm/Makefile (install-others) [libc.so-version]: Get libc.so from
1340         $(libdir), only the versioned named from $(slibdir).
1341         (instfiles): New variable.
1342         (glibc-$(version).$(config).rpm): New target.  Run rpm -bb.
1343         * rpm/rpmrc: New file.  A third of the options controlling rpm can
1344         only be given here (another third is on the command line, and a third
1345         cannot be specified in any way shape or form).
1347 Sun Jun 16 02:44:22 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1349         * rpm/template: New file.
1350         * rpm/Makefile: New file.
1352         * Makeconfig (sysdep-configures): Remove empty variable.
1354         * Makerules (distinfo-vars): Write defns for $(install-lib.so) and
1355         $(versioned).
1357         * manual/Makefile (subdir_%): Add new rule with no deps, secondary to
1358         to rule w/dep on %, with no-op commands.
1360         * Makerules (subdir_distinfo): New phony target; depend on distinfo.
1361         * Makefile (rpm/%): New rule.
1362         (+subdir_targets): Add subdir_distinfo.
1364 Sun Jun 16 00:40:20 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1366         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add
1367         fpu_control.h here.
1369         * time/Makefile ($(installed-localtime-file)): If target exists, do
1370         nothing but print a message; if not, make it an absolute symlink.
1372         * time/tzset.c (__tzset): After stripping leading :, call
1373         __tzfile_read on TZ even if it's empty or null.
1374         * time/tzfile.c (__tzfile_read): Use "Universal" if passed "".
1376 Sat Jun 15 18:13:43 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1378         * hurd/Makefile (routines): Add get-host, set-host.
1379         (distribute): Add hurdhost.h.
1380         * hurd/hurdhost.h: New file.
1381         * sysdeps/mach/hurd/gethostname.c: Use _hurd_get_host_config.
1382         * sysdeps/mach/hurd/gethostid.c: Likewise.
1383         * sysdeps/mach/hurd/sethostname.c: Use _hurd_set_host_config.
1384         * sysdeps/mach/hurd/sethostid.c: Likewise.
1385         * hurd/get-host.c: New file.
1386         * hurd/set-host.c: New file.
1388         * math/Makefile (headers): Add fpu_control.h.
1389         (aux): New variable, list fpu_control and setfpucw.
1390         * sysdeps/generic/fpu_control.c: New file.
1391         * sysdeps/stub/fpu_control.h: New file.
1392         * sysdeps/unix/sysv/linux/m68k/fpu_control.h: Moved to ...
1393         * sysdeps/m68k/fpu_control.h: here.
1394         * sysdeps/unix/sysv/linux/i386/fpu_control.h: Moved to ...
1395         * sysdeps/i386/fpu_control.h: here.
1396         * sysdeps/unix/sysv/linux/alpha/fpu_control.h: Moved to ...
1397         * sysdeps/alpha/fpu/fpu_control.h: here.  Fixed copyright.
1398         * sysdeps/unix/sysv/linux/alpha/Makefile (sysdep_routines): Remove
1399         setfpucw, fpu_control.
1400         * sysdeps/unix/sysv/linux/alpha/fpu_control.c: File removed.
1401         * sysdeps/unix/sysv/linux/setfpucw.c: Moved to ...
1402         * sysdeps/generic/setfpucw.c: here.
1403         (__fpu_control): Variable removed.
1404         (__setfpucw): Use SET even if zero.
1406         * elf/dl-deps.c (_dl_map_object_deps): Set MAP's mark bit before loop.
1407         Set mark bits of deps as opened, instead of as scanned.
1409         * elf/rtld.c (dl_main): Remove _dl_rtld_map from chain unconditionally.
1410         Then if it has a nonzero l_opencount, add it back in search order.
1412         * elf/dl-load.c (_dl_map_object): Don't use _dl_loaded's DT_RPATH if
1413         it ain't got one!
1415         * sysdeps/unix/sysv/linux/Dist: Add sys/klog.h.
1417         * elf/dl-open.c (_dl_open): Remove PARENT argument, pass null.
1418         * elf/link.h: Update prototype.
1419         * elf/dl-load.c (_dl_map_object): If dependents' DT_RPATHs don't find
1420         NAME, try the DT_RPATH of the executable itself if dynamic.
1421         * elf/dlopen.c (dlopen): Don't pass first arg to _dl_open.
1423         * elf/dl-load.c (_dl_map_object): Exit DT_RPATH checking loop when an
1424         open succeeds.
1426         * Makerules (build-shlib): Give -L opts for each elt of $(rpath-link).
1428         * sysdeps/mach/hurd/Makefile (sysdep-LDFLAGS): Variable removed.
1429         (rpath-link): Append to this instead.
1431 Fri Jun 14 01:51:47 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1433         * version.c (banner): New static const variable, complete version
1434         banner text.
1435         (__libc_print_version): Use it, and use __write instead of printf.
1437         * configure.in (sysnames): Don't cache the value, because it
1438         depends only on libc sources.  Merge uniquifying third pass into
1439         Implies/parent expansion second pass.  Report each unique name as
1440         it is added in partial report string, terminated when finished.
1442         * Makeconfig (sysdep_dir): Move defn before config.status rule that
1443         expands it.
1444         (sysdep-configures): Variable removed.
1445         (config.status): Use its contents directly, tighten up a bit, and
1446         include Implies files.
1448         * elf/dl-open.c (_dl_open) [PIC]: Set PARENT to _dl_loaded if null.
1450         * elf/Makefile ($(objpfx)$(rtld-installed-name)): Make a symlink.
1452 Thu Jun 13 14:29:56 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1454         * hurd/hurdsig.c (_hurd_internal_post_signal): Rename `deliver:'
1455         label to `deliver_pending:' to match goto.
1457 Thu Jun 13 00:02:25 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1459         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_open_zero_fill):
1460         Add comment.
1462         * elf/rtld.c (dl_main): Close _dl_zerofd after mapping deps.
1464         * sysdeps/generic/machine-gmon.h [NO_UNDERSCORES]: Define mcount as
1465         weak alias for _mcount.
1466         * sysdeps/alpha/_mcount.S (mcount): Define as weak alias.
1468         * elf/dl-lookup.c (_dl_lookup_symbol): If no value and *REF is
1469         null, consider it a strong reference and give the error.
1471 Wed Jun 12 15:52:46 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1473         * elf/dl-open.c (_dl_open): Correctly terminate relocating loop
1474         after relocating NEW when it's the only new object.
1476         * elf/dl-init.c (_dl_init_next): When out of initializers, set
1477         _r_debug.r_state to RT_CONSISTENT and call _dl_debug_state just
1478         before return.
1480         * elf/rtld.c (dl_main): Move _dl_debug_initialize call after
1481         relocation.  Call it unconditionally and only fill in DT_DEBUG
1482         if it's present.  Then call _dl_debug_state with r_state RT_ADD
1483         before running initializers.
1485         * elf/dl-open.c (_dl_open): Call _dl_debug_initialize and then call
1486         _dl_debug_state with r_state RT_ADD before running initializers
1487         * elf/dl-close.c (_dl_close): Call _dl_debug_state with r_state
1488         RT_DELETE before running finalizers and with RT_CONSISTENT just
1489         before return.
1491         * elf/Makefile (dl-routines): Add dl-debug.
1492         * elf/dl-debug.c: New file.
1493         * elf/rtld.c (_dl_r_debug): Rename to _r_debug and move to dl-debug.c.
1494         (_dl_r_debug_state): Rename to _dl_debug_state and likewise move.
1495         (dl_main): Use _dl_debug_initialize.
1496         * elf/link.h: Fix name to _dl_debug_state in decl.
1497         (_dl_debug_initialize): Declare new function from dl-debug.c.
1498         (_r_debug): Declare it.
1500         * Makerules (distinfo-vars): Add install-{lib,data,bin,sbin,others}.
1501         In distinfo set $(subdir)-VAR and then set VAR to $($(subdir)-VAR).
1503         * Makeconfig (rpath-link): New variable; add $(elfobjdir).
1504         (default-rpath): Use it.
1505         (built-program-cmd): Use it in LD_LIBRARY_PATH.
1507         * Makeconfig (sysdep-configures): Prepend $(sysdep_dir) to names tried.
1509         * sysdeps/unix/Dist: Add make-syscalls.sh.
1511         * misc/Makefile (headers): Add sys/swap.h.
1512         * posix/unistd.h: Remove decls for swapon, swapoff.
1513         * sysdeps/generic/sys/swap.h: New file.
1514         * sysdeps/unix/sysv/linux/sys/swap.h: New file.
1516         * sysdeps/unix/sysv/linux/gnu/types.h: Remove temporary hack #define
1517         of __kernel_fsid_t.  It is correctly defines in <linux/types.h> now.
1519 Tue Jun 11 23:23:30 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1521         * Makerules (LDFLAGS-c.so): Use __libc_main instead of
1522         __libc_print_version as entry point for shared object.
1523         * version.c [HAVE_ELF] (__libc_main): New function.
1525         * elf/dl-load.c (_dl_map_object_from_fd): Relocate l_entry with the
1526         load address.
1528 Tue Jun 11 19:13:04 1996  Richard Henderson  <rth@tamu.edu>
1530         * sysdeps/alpha/dl-machine.h: New file.
1532         * elf/dl-close.c: Include <string.h> for memcpy.
1533         * elf/dl-lookup.c: Same.
1535         * elf/elf.h: Add Elfxx_Symndx for symbol indices.
1536         * elf/dl-lookup.c (_dl_lookup_symbol): Use it.
1537         (_dl_setup_hash): Use it.
1538         * elf/link.h (struct link_map): Use it.
1540         * elf/rtld.c (_dl_start): Don't rely on pointer-to-first-arg hack
1541         for getting the argc/argv/envp block.  Instead, make it the argument.
1542         sysdeps/i386/dl-machine.h (RTLD_START): Do that.
1543         sysdeps/m68k/dl-machine.h (RTLD_START): Same.
1545         * shlib-versions: Add version numbers for alpha-linux.  To avoid
1546         user confusion, make them the same as i386-linux.
1548         * sysdeps/alpha/Makefile [subdir elf]: Add -mno-fp-regs to
1549         sysdep-CFLAGS so that _dl_runtime_resolve doesn't have to save them.
1550         Add -mbuild-constants to CFLAGS-rtld.c to that we can bootstrap
1551         without using literal data.
1553         * sysdeps/generic/dl-sysdep.c: Include <string.h> for memcpy.
1554         Finish Elf32 -> ElfW migration.
1556 Tue Jun 11 15:09:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1558         * Makerules (elfobjdir): Use $(objdir) if set, even in elf subdir.
1560         * elf/Makefile (routines): Remove init-first.
1561         * csu/Makefile (routines): New variable; put it here instead.
1563         * config.make.in (CFLAGS): New variable.
1565         * io/sys/stat.h (S_ISLNK, S_ISSOCK): Make conditional on __USE_BSD,
1566         not __USE_GNU.
1567         * string/string.h (strncasecmp): Likewise.
1569         * elf/Makefile (lib-noranlib): Move rule adding deps for ld.so et al
1570         to after `include ../Rules', so $(rtld-installed-name) is defined.
1572         * string/basename.c (basename): Cast FILENAME to char * for return.
1574         * Makerules ($(libdir)/libc.so): Put $(rtld-installed) name between
1575         libc.so and libc.a in the deps.
1577         * elf/Makefile ($(objpfx)$(rtld-installed-name)): New target to make
1578         link to ld.so if that is not the installed name.
1579         (lib-noranlib): Depend on the installed name in the build directory
1580         instead of on ld.so.
1582         * Makeconfig (link-libc): Include $(elfobjdir)/$(rtld-installed-name)
1583         between libc.so and libc.a, because with libc.so's DT_NEEDED for ld.so
1584         ld searches libc.a before ld.so (is that an ld bug?).
1585         Add $(elfobjdir) to -rpath-link.
1587         * Makerules (elfobjdir): Define as . when $(subdir) is elf.
1589         * sysdeps/i386/dl-machine.h (elf_machine_rel): In R_386_32 case when
1590         relocating _dl_rtld_map, subtract SYM's value from final reloc value,
1591         but don't change *RELOC_ADDR before calling *RESOLVE, because it might
1592         call the function we are relocating!
1594         * string/basename.c: New file.
1595         * string/Makefile (routines): Add basename.
1597 Mon Jun 10 06:14:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1599         * Makerules ($(common-objpfx)libc.so): Depend on $(elfobjdir)/ld.so.
1601         * elf/dl-close.c: New file.
1602         * elf/link.h: Declare _dl_close.
1603         * elf/Makefile (routines): Add dl-close.
1604         * elf/dlclose.c (dlclose): Use _dl_close.
1606         * elf/Makefile ($(objpfx)librtld.so): Remove libelf from deps.
1608         * elf/dl-runtime.c (_dl_global_scope): New variable.
1609         (_dl_object_relocation_scope): New function.
1610         (fixup): Use it.
1611         * elf/rtld.c (dl_main): Use it.
1612         * elf/dl-open.c (_dl_open): Use it.  If (MODE & RTLD_GLOBAL), set the
1613         l_global bit and append the new map to _dl_global_scope.
1614         * elf/link.h: Declare _dl_global_scope, _dl_global_scope_alloc,
1615         and _dl_object_relocation_scope.
1617         * elf/link.h (struct link_map): Add l_loader member.
1618         Remove _dl_map_object_from_fd decl.
1619         * elf/dl-load.c (_dl_map_object): Pass LOADER to ...
1620         (_dl_map_object_from_fd): Take new arg LOADER and set l_loader member.
1621         (_dl_map_object): Try DT_RPATH from all loaders up the chain.
1623         * elf/dl-object.c (_dl_loaded): Variable removed.
1624         (_dl_default_scope): New variable replaces it.
1625         * elf/link.h (_dl_loaded): Remove variable decl; instead define as
1626         macro for _dl_default_scope[2].
1627         (_dl_default_scope): Declare it.
1628         * sysdeps/i386/dl-machine.h (RTLD_START): Use _dl_default_scope[2]
1629         instead of _dl_loaded.
1630         * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
1631         * elf/rtld.c (dl_main): Use _dl_default_scope for symbol lookups.
1633         * elf/dl-reloc.c (_dl_relocate_object): Remove check for _dl_rtld_map.
1634         * elf/rtld.c (dl_main): Pass 0 for LAZY flag when re-relocating self.
1636         * elf/link.h (struct link_map.l_type): Remove lt_interpreter.
1637         (struct link_map): Add new flag member l_global.
1639         * elf/dl-reloc.c (_dl_relocate_object): Check for _dl_rtld_map
1640         directly instead of looking for lt_interpreter.
1641         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
1642         * elf/rtld.c (_dl_start): Don't bother setting BOOTSTRAP_MAP.l_type.
1643         (dl_main): Set _dl_rtld_map.l_type to lt_library.
1645         * elf/dl-deps.c (_dl_map_object_deps): Propagate MAP->l_type to
1646         dependencies loaded, downgrading lt_executable -> lt_library.
1648         * elf/dl-load.c (_dl_map_object_from_fd): Take new arg TYPE and set
1649         l_type from that, translating lt_library->lt_executable based on the
1650         file's ELF type.
1651         (_dl_map_object): Likewise.
1652         * elf/link.h: Update prototypes.
1653         * elf/dl-open.c: Pass type lt_loaded.
1654         * elf/rtld.c: Pass type lt_library.
1656         * elf/dl-load.c (_dl_map_object_from_fd): Handle null return from
1657         _dl_new_object.
1658         (_dl_map_object_from_fd: lose): Unchain and free L if it's not null.
1659         Free REALNAME, and just use NAME in error message.
1660         * elf/dl-object.c (_dl_new_object): If malloc fails, return null
1661         instead of calling _dl_signal_error.
1663         * elf/dl-load.c (_dl_map_object_from_fd): Close FD before signalling
1664         error for _dl_zerofd setup failure.
1666         * elf/dl-object.c (_dl_startup_loaded): Variable removed.
1667         * elf/link.h: Remove its decl.
1669         * elf/dl-reloc.c (_dl_relocate_object): Take new SCOPE arg and pass it
1670         through to _dl_lookup_symbol.
1671         * elf/link.h (_dl_relocate_object): Update comment and prototype.
1672         * elf/rtld.c (dl_main): Pass scope vector to _dl_relocate_object.
1674         * elf/dl-lookup.c (_dl_lookup_symbol): Arg SYMBOL_SCOPE is now a
1675         null-terminated vector of pointers, no longer a vector of exactly two.
1676         * elf/link.h (_dl_lookup_symbol): Update comment and prototype.
1678         * elf/dl-runtime.c (fixup): Set up scope for symbol lookup properly as
1679         done in _dl_relocate_object.
1681         * elf/dlopen.c: Pass "" to _dl_open when FILE is null.
1683         * elf/link.h: Include elfclass.h to define __ELF_NATIVE_CLASS.
1684         (ElfW, ELFW): Use it.
1685         * elf/Makefile (headers): Add elfclass.h.
1686         * sysdeps/wordsize-32/elfclass.h: New file.
1687         * sysdeps/wordsize-64/elfclass.h: New file.
1688         * sysdeps/alpha/Implies: Add wordsize-64.
1689         * sysdeps/i386/Implies: Add wordsize-32.
1690         * sysdeps/m68k/Implies: Add wordsize-32.
1691         * sysdeps/mips/Implies: Add wordsize-32.
1692         * sysdeps/sparc/Implies: Add wordsize-32.
1694         * sysdeps/mach/hurd/dl-sysdep.c (__open): Define this instead of open.
1695         (__close, __mmap): Likewise define with __ names now.
1697 Mon Jun 10 05:13:18 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1699         * elf/dl-support.c: New file.
1700         * elf/Makefile (CFLAGS-dl-support.c): New variable.
1701         (routines, elide-routines.so): Add dl-support.
1703         * elf/dl-minimal.c (_dl_pagesize): Remove common defn.
1704         * elf/dl-load.c (_dl_pagesize): Define it here.
1705         (_dl_map_object_from_fd): Initialize it if zero.
1706         * elf/link.h (_dl_pagesize): Remove const.
1708 Sun Jun  9 04:04:26 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1710         * elf/Makefile (routines): Add dl-symbol.
1711         * elf/dl-lookup.c (_dl_symbol_value): Moved to ...
1712         * elf/dl-symbol.c: New file.
1714         * elf/elf.h (Elf32_Xword, Elf32_Sxword): New types.
1715         (Elf32_Section, Elf64_Section): New types, 16 bits.
1716         (Elf32_Sym, Elf64_Sym): Use it.
1718         * elf/dl-deps.c (_dl_open): Moved to ...
1719         * elf/dl-open.c: New file.
1720         * Makefile (routines): Add dl-open.
1722         * elf/Makefile (dl-routines): New variable.
1723         (routines): Add $(dl-routines).
1724         (elide-routines.so): New variable, set to $(dl-routines).
1725         (libdl-inhibit-o): Variable removed; build all flavors of -ldl.
1726         (rtld-routines): All but rtld, dl-sysdep, and dl-minimal moved to
1727         $(dl-routines).
1729         * elf/dl-lookup.c (_dl_lookup_symbol): Remove magic symbol grokage.
1731         * elf/dladdr.c: Use ELFW(ST_BIND) in place of ELF32_ST_BIND.
1733         * elf/dl-load.c (open_path): Use __ names for open and close.  Avoid
1734         using strdup.
1735         (_dl_map_object): Likewise.
1736         (_dl_map_object_from_fd): Use __ names for mmap, munmap, and mprotect.
1737         * elf/dl-minimal.c (malloc): Likewise.
1738         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
1740         * elf/dl-minimal.c (_dl_pagesize): New variable.
1741         (malloc): Use that instead of a static variable.
1742         * elf/dl-reloc.c (_dl_relocate_object): Use _dl_pagesize instead of
1743         calling getpagesize.
1744         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
1745         * elf/link.h: Declare _dl_pagesize.
1747         * elf/rtld.c (dl_r_debug): Renamed to _dl_r_debug.
1749         * elf/link.h (struct link_map): Use Half for l_phnum instead of Word.
1750         * elf/rtld.c (dl_main): Use Half for phdr count arg.
1751         (_dl_sysdep_start): Update prototype of DL_MAIN function ptr arg.
1753         * elf/dl-load.c (_dl_map_object_from_fd): Use explicit Elf32_Word to
1754         extract 4-byte magic number, not ElfW(Word).  Match EI_CLASS against
1755         native wordsize, either 32 or 64.
1757         * elf/elf.h (Elf64_Byte, Elf64_Section): Typedefs removed.  In C a
1758         char is always a byte, no need for a typedef.  Section indices are
1759         16-bit quantities in elf64, which already have a typedef Elf64_Half.
1761         Remove partial -lelf implementation.  There is now a
1762         separately-distributed `libelf' package that implements it.
1763         * elf/dl-lookup.c: Don't #include <libelf.h> any more.
1764         (_dl_elf_hash): New function, moved from
1765         libelf.h:elf_hash.
1766         (_dl_lookup_symbol): Use it instead of elf_hash.
1767         * elf/libelf.h: File removed.
1768         * elf/elf_hash.c: File removed.
1769         * elf/Makefile (headers): Remove libelf.h.
1770         (extra-libs): Remove libelf.
1771         (libelf-routines): Variable removed.
1773         * elf/Makefile (libdl.so): Remove commands from this target.  The
1774         implicit rule commands are correct, this explicit rule just serves to
1775         add some dependencies.
1777         * elf/dl-lookup.c (_dl_lookup_symbol): Use ELFW(ST_TYPE) in place of
1778         ELF32_ST_TYPE.  Likewise ST_BIND.
1779         * elf/do-rel.h (elf_dynamic_do_rel): Likewise R_SYM.
1781         * elf/link.h (ElfW): New macro for wordsize-independent ElfXX_* type
1782         naming.
1783         (ELFW): New macro, likewise for ELFXX_* macro naming.
1784         (_ElfW, _ElfW_1): New macros, subroutines of ElfW and ELF.
1786 Sat Jun  8 20:52:38 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1788         * elf/link.h, elf/do-rel.h, elf/dynamic-link.h, elf/dl-deps.c,
1789         elf/dl-init.c, elf/dl-load.c, elf/dl-lookup.c, elf/dl-reloc.c,
1790         elf/dl-runtime.c, elf/dladdr.c, elf/dlclose.c, elf/dlsym.c,
1791         elf/linux-compat.c, elf/rtld.c: Change all uses of `Elf32_XXX' to
1792         `ElfW(XXX)' for wordsize-independence.
1794 Sat Jun  8 20:50:42 1996  Richard Henderson  <rth@tamu.edu>
1796         * elf/elf.h: Move Elf64_* types in parity with Elf32 counterparts.
1797         (Elf64_auxv_t): New type.
1798         (EM_ALPHA, R_ALPHA_*): New macros for elf64-alpha format.
1800 Mon Jun 10 02:22:24 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1802         * sysdeps/unix/sysv/linux/configure.in: New file, start with configure.
1803         Add check for installed <linux/version.h> being v2.0 or later.
1805         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_open_zero_fill): Call __open
1806         instead of open.
1807         (_dl_sysdep_fatal): Call __write instead of write.
1808         (_dl_sysdep_message): Likewise.
1810 Sun Jun  9 20:40:00 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1812         * sysdeps/m68k/fpu/e_acosl.c: New file.
1814 Sun Jun  9 01:11:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1816         * Makerules (o-objects): New variable.  Use it in place of
1817         $(objects:.o=$o); it filters out $(elide-routines$o).
1818         Use o-iterator for ar and ranlib rules so they use the per-type object
1819         list.
1821         * elf/dl-load.c (_dl_map_object_from_fd): Close FD before return.
1823         * sysdeps/mach/mprotect.c: Define with __ name and weak alias.
1824         * sysdeps/stub/mprotect.c: Likewise.
1825         * sysdeps/unix/mman/syscalls.list (mprotect): Likewise.
1826         * sysdeps/generic/sys/mman.h: Declare __mprotect.
1827         * sysdeps/unix/sysv/irix4/sys/mman.h: Likewise.
1828         * sysdeps/unix/sysv/linux/sys/mman.h: Likewise.
1829         * sysdeps/unix/bsd/sun/sunos4/sys/mman.h: Likewise.
1830         * sysdeps/unix/bsd/osf/sys/mman.h: Likewise.
1831         * sysdeps/unix/bsd/ultrix4/sys/mman.h: Likewise.
1833         * Make-dist ($(tardir).tar): Use sed to check for file names longer
1834         than 14 chars, instead of doschk which checks for other things we
1835         don't care about.
1837         * Version 1.90 test release.
1839         * Makerules (make-target-directory): Use ./mkinstalldirs so we do not
1840         assume . is in PATH.
1842 Sat Jun  8 22:05:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1844         * math/Makefile (distribute): Comment out addition of
1845         $(long-m-routines) sources until they are all written.
1847         * math/Makefile (distribute): Append long double source names to this
1848         instead of using elided-routines.
1850 Sat Jun  8 15:15:07 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1852         * mach/mach_shortcuts.c: Obsolete file removed.
1853         * mach/mach_syscalls.h: Likewise.
1855         * hurd/Makefile (distribute): Consolidate defns into one.
1857         * time/Makefile (tzfiles): Add solar87 solar88 solar89.
1859 Fri Jun  7 16:48:13 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1861         * sysdeps/unix/sysv/linux/i386/Dist: New file, list sys/perm.h and
1862         sys/vm86.h.
1864         Removed old math code no longer used since the fdlibm integration.
1865         * sysdeps/stub/acos.c: File removed.
1866         * sysdeps/stub/asin.c: File removed.
1867         * sysdeps/stub/atan2.c: File removed.
1868         * sysdeps/stub/cosh.c: File removed.
1869         * sysdeps/stub/exp.c: File removed.
1870         * sysdeps/stub/fmod.c: File removed.
1871         * sysdeps/stub/frexp.c: File removed.
1872         * sysdeps/stub/log.c: File removed.
1873         * sysdeps/stub/log10.c: File removed.
1874         * sysdeps/stub/sinh.c: File removed.
1875         * sysdeps/stub/tan.c: File removed.
1876         * sysdeps/stub/tanh.c: File removed.
1877         * sysdeps/generic/acos.c: File removed.
1878         * sysdeps/generic/acosh.c: File removed.
1879         * sysdeps/generic/asin.c: File removed.
1880         * sysdeps/generic/asinh.c: File removed.
1881         * sysdeps/generic/atan.c: File removed.
1882         * sysdeps/generic/atan2.c: File removed.
1883         * sysdeps/generic/atanh.c: File removed.
1884         * sysdeps/generic/cabs.c: File removed.
1885         * sysdeps/generic/ceil.c: File removed.
1886         * sysdeps/generic/copysign.c: File removed.
1887         * sysdeps/generic/cosh.c: File removed.
1888         * sysdeps/generic/exp.c: File removed.
1889         * sysdeps/generic/expm1.c: File removed.
1890         * sysdeps/generic/fabs.c: File removed.
1891         * sysdeps/generic/floor.c: File removed.
1892         * sysdeps/generic/fmod.c: File removed.
1893         * sysdeps/generic/frexp.c: File removed.
1894         * sysdeps/generic/hypot.c: File removed.
1895         * sysdeps/generic/infnan.c: File removed.
1896         * sysdeps/generic/isnan.c: File removed.
1897         * sysdeps/generic/ldexp.c: File removed.
1898         * sysdeps/generic/log.c: File removed.
1899         * sysdeps/generic/log10.c: File removed.
1900         * sysdeps/generic/log1p.c: File removed.
1901         * sysdeps/generic/modf.c: File removed.
1902         * sysdeps/generic/pow.c: File removed.
1903         * sysdeps/generic/rint.c: File removed.
1904         * sysdeps/generic/sinh.c: File removed.
1905         * sysdeps/generic/tan.c: File removed.
1906         * sysdeps/generic/tanh.c: File removed.
1907         * sysdeps/ieee754/cabs.c: File removed.
1908         * sysdeps/ieee754/copysign.c: File removed.
1909         * sysdeps/ieee754/frexp.c: File removed.
1910         * sysdeps/ieee754/hypot.c: File removed.
1911         * sysdeps/ieee754/infnan.c: File removed.
1912         * sysdeps/ieee754/ldexp.c: File removed.
1913         * sysdeps/ieee754/log10.c: File removed.
1915         * posix/Makefile (headers): Add schedbits.h.
1917         * math/Makefile (elided-routines): Add long double routines.
1919 Fri Jun  7 11:02:22 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1921         * sysdeps/mach/hurd/getpriority.c (getpriority): Use new interface
1922         to __proc_getprocinfo.
1924         * login/login.c (tty_name): New function.
1925         (login): Use it.
1926         (PATH_MAX): MACRO removed.
1927         <stdlib.h>: New include.
1929 Fri Jun  7 09:11:17 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1931         * sysdeps/unix/sysv/linux/Dist: Add sys/sysinfo.h, sys/mount.h,
1932         sys/kdaemon.h, sys/io.h, sys/mount.h, sysctl.c.
1934         * gmon/Makefile (distribute): Add profil-counter.h.
1936         * sysdeps/unix/sysv/linux/alpha/Dist: New file.
1938         * sysdeps/unix/Dist: Add s-proto.S.
1940         * sysdeps/unix/common/mk-local_lim.c: Obsolete file removed.
1942         * Make-dist (+sysdep-tsrcs): Get all syscalls.list files too.
1944         * csu/Makefile (distribute): Add start.c.
1946         * elf/Makefile (distribute): Add dl-machine.h.
1948         * sysdeps/alpha/Dist: Add _mcount.S.
1950         * sysdeps/alpha/Makefile (sysdep_routines): Append instead of
1951         resetting; don't add bb_init_func.
1953         * string/Makefile (routines): Add strerror_r.
1954         * string/string.h (strerror_r): Use int for BUFLEN arg.
1956         * Makefile (distribute): Add shlib-versions.
1958         * po/Makefile (distribute): Add SYS_libc.pot.
1960         * misc/Makefile (routines): Add lsearch.
1962         * manual/lang.texi (Consistency Checking): Merge in assert_perror defn
1963         and other changes inadvertently made to the obsolete assert.texi.
1964         * manual/assert.texi: File removed.
1966         * mach/mach_syscalls.c: Obsolete file removed.
1967         * mach/mach_syscalls.h: Likewise.
1968         * mach/mach_traps.S: Likewise.
1969         * mach/msg_destroy.c: Likewise.
1970         * mach/vm_page_size.c: Likewise.
1972         * locale/Makefile (distribute): Add weight.h, charset.h.
1974         * Makefile (distribute): Add version.h.
1976         * hurd/Makefile (headers): Add hurd/ioctl.h.
1977         (distribute): Add intr-rpc.d, intr-rpc.h, faultexc.defs.
1979         * csu/Makefile (distribute): Add gmon-start.c.
1981         * Makefile (distribute): Add config.h.in.
1983 Wed Jun  5 22:06:21 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1985         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Fix type of reloc
1986         argument.
1987         [case R_68K_32]: Check for resolve being null.
1988         (RTLD_START): Add missing label.
1990 Fri Jun  7 1996 05:29:32  Ulrich Drepper  <drepper@cygnus.com>
1992         * misc/lsearch.c: New file.  Implementation of lfind and
1993         lsearch functions.
1995         * misc/search.h: Add prototype for functions from tsearch
1996         family with __ prefix.
1997         Correct prototype for lsearch: BASE parameter must not be
1998         const.
2000         * misc/tsearch.c: prepend all global function names with __
2001         and make normal names weak aliases.
2003 Fri Jun  7 00:15:24 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2005         * Make-dist (sysdep_dirs): Skip CVS dirs.
2007 Thu Jun  6 16:12:39 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2009         * malloc/Makefile (distribute): Change malloc/gmalloc-head.c to
2010         gmalloc-head.c.
2011         (malloc/gmalloc.c): Depend on malloc/gmalloc-head.c.
2012         (malloc/Makefile): Do $(make-target-directory) first.
2013         * malloc/gmalloc-head.c: New file.
2015         * po/Makefile (linguas.mo): Don't commit .mo files to cvs.
2017         * hurd/hurdsig.c (_hurd_internal_post_signal): For SIGNO==0 pending
2018         check, deliver a pending blocked signal if its action might be to
2019         ignore.
2020         * sysdeps/mach/hurd/sigaction.c: If new action is SIG_IGN or SIG_DFL
2021         and SIG is pending, wake up signal thread to check us.
2023         * hurd/hurdsig.c (_hurd_internal_post_signal): Don't mark a signal
2024         pending while blocked or stopped when the action is to ignore it.
2026 Thu Jun  6 12:56:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2028         * hurd/hurdsig.c (_hurd_internal_post_signal: resume): Only set
2029         SS_SUSPENDED when the thread is really suspended.
2031         * elf/rtld.c (dl_main): Don't dereference _dl_rtld_map.l_next if null.
2033         * Makerules (headers): Move append of $(sysdep_headers) after include
2034         of sysdep makefiles.
2036         * sysdeps/mach/hurd/errlist.c: File removed.
2038 Thu Jun  6 07:32:14 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2040         * resolv/gethnamaddr.c (struct hstorage): Make NAME field a pointer.
2041         (_gethtbyname2): Remove ALIAS variable.
2042         Initialize NAME field of SELF and TARGET to 0.
2043         Add SELF_NAME_SIZE static variable.
2044         Add loop to call gethostname until the space we allocated is enough.
2045         Use malloced strings instead of fixed size buffers.
2046         <stdlib.h>, <unistd.h>: New includes.
2047         * sysdeps/generic/sys/socket.h (PF_INET6, AF_INET6): New macros.
2049         * sysdeps/mach/hurd/errlist.c (_sys_errlist): Add EILSEQ.
2050         (_sys_nerr): Initialize to 107.
2051         Update _HURD_ERRNOS consistency check.
2053         * stdlib/canonicalize.c (canonicalize): Use pathconf for PATH_MAX,
2054         not sysconf.
2056         * login/login.c [!PATH_MAX] (PATH_MAX): Define to be 1024 if not
2057         already defined.
2059         * sysdeps/mach/hurd/setitimer.c (timer_thread): Supply SIGCODE
2060         argument to __msg_sig_post_request.
2062         * hurd/hurdmalloc.c: Changes to bring in line with the hurd
2063         libthreads/malloc.c:
2064         (more_memory): Use assert_perror instead of MACH_CALL.
2065         "cthread_internals.h": Include removed.
2066         (realloc): Use LOG2_MIN_SIZE.
2067         (LOG2_MIN_SIZE): New macro.
2068         (realloc): Don't bother allocating a new block if the
2069         new size request fits in the old one and doesn't waste any space.
2070         Only free the old block if we successfully got a new one.
2071         [MCHECK] (struct header): New type.
2072         (union header): Only define if !MCHECK.
2073         (HEADER_SIZE, HEADER_NEXT, HEADER_FREE, HEADER_CHECK): New macros.
2074         [MCHECK] (MIN_SIZE): Add correct definition for this case.
2075         (more_memory, malloc, free, realloc): Use above macros, and add
2076         appropiate checks & frobs in MCHECK case.
2078 Thu Jun  6 02:00:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2080         * Makerules (distinfo-vars): Don't write constant line to frob sources.
2081         * Make-dist (sources): Append $(elided-routines) and $(extra-libs)
2082         routines.
2084 Tue Jun  4 22:03:02 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2086         * sysdeps/m68k/fpu/__math.h: Define long double versions of
2087         the inline functions.
2088         * sysdeps/m68k/fpu/e_asinl.c, sysdeps/m68k/fpu/e_atanl.c,
2089         sysdeps/m68k/fpu/e_acosl.c, sysdeps/m68k/fpu/e_expl.c,
2090         sysdeps/m68k/fpu/e_fmodl.c, sysdeps/m68k/fpu/e_log10l.c,
2091         sysdeps/m68k/fpu/e_logl.c, sysdeps/m68k/fpu/e_powl.c,
2092         sysdeps/m68k/fpu/e_remainderl.c, sysdeps/m68k/fpu/e_scalbl.c,
2093         sysdeps/m68k/fpu/e_sinhl.c, sysdeps/m68k/fpu/e_sqrtl.c,
2094         sysdeps/m68k/fpu/k_cosl.c, sysdeps/m68k/fpu/k_sinl.c,
2095         sysdeps/m68k/fpu/k_tanl.c, sysdeps/m68k/fpu/s_atanl.c,
2096         sysdeps/m68k/fpu/s_ceill.c, sysdeps/m68k/fpu/s_cosl.c,
2097         sysdeps/m68k/fpu/s_expm1l.c, sysdeps/m68k/fpu/s_fabsl.c,
2098         sysdeps/m68k/fpu/s_finitel.c, sysdeps/m68k/fpu/s_floorl.c,
2099         sysdeps/m68k/fpu/s_frexpl.c, sysdeps/m68k/fpu/s_ilogbl.c,
2100         sysdeps/m68k/fpu/s_isinfl.c, sysdeps/m68k/fpu/s_isnanl.c,
2101         sysdeps/m68k/fpu/s_ldexpl.c, sysdeps/m68k/fpu/s_log1pl.c,
2102         sysdeps/m68k/fpu/s_logbl.c, sysdeps/m68k/fpu/s_modfl.c,
2103         sysdeps/m68k/fpu/s_rintl.c, sysdeps/m68k/fpu/s_scalbnl.c,
2104         sysdeps/m68k/fpu/s_significandl.c, sysdeps/m68k/fpu/s_sinl.c,
2105         sysdeps/m68k/fpu/e_atanhl.c, sysdeps/m68k/fpu/e_coshl.c: New files.
2107         * sysdeps/m68k/fpu/e_acos.c, sysdeps/m68k/fpu/e_fmod.c,
2108         sysdeps/m68k/fpu/k_cos.c, sysdeps/m68k/fpu/k_sin.c,
2109         sysdeps/m68k/fpu/k_tan.c, sysdeps/m68k/fpu/s_atan.c,
2110         sysdeps/m68k/fpu/s_frexp.c, sysdeps/m68k/fpu/s_ilogb.c,
2111         sysdeps/m68k/fpu/s_isinf.c, sysdeps/m68k/fpu/s_ldexp.c,
2112         sysdeps/m68k/fpu/s_modf.c: Define generic functions using FUNC and
2113         float_type with appropriate defaults.
2115         * sysdeps/m68k/fpu/e_acosf.c, sysdeps/m68k/fpu/e_fmodf.c,
2116         sysdeps/m68k/fpu/k_cosf.c, sysdeps/m68k/fpu/k_sinf.c,
2117         sysdeps/m68k/fpu/k_tanf.c, sysdeps/m68k/fpu/s_atanf.c,
2118         sysdeps/m68k/fpu/s_frexpf.c, sysdeps/m68k/fpu/s_ilogbf.c,
2119         sysdeps/m68k/fpu/s_isinff.c, sysdeps/m68k/fpu/s_ldexpf.c,
2120         sysdeps/m68k/fpu/s_modff.c: Include the corresponding double
2121         versions with appropriate definitions to get float functions,
2122         instead of defining them directly.
2124         * sysdeps/m68k/fpu/acos.c: File removed.
2125         * sysdeps/m68k/fpu/asin.c: File removed.
2126         * sysdeps/m68k/fpu/atan.c: File removed.
2127         * sysdeps/m68k/fpu/atan2.c: File removed.
2128         * sysdeps/m68k/fpu/atanh.c: File removed.
2129         * sysdeps/m68k/fpu/ceil.c: File removed.
2130         * sysdeps/m68k/fpu/cos.c: File removed.
2131         * sysdeps/m68k/fpu/cosh.c: File removed.
2132         * sysdeps/m68k/fpu/drem.c: File removed.
2133         * sysdeps/m68k/fpu/exp.c: File removed.
2134         * sysdeps/m68k/fpu/expm1.c: File removed.
2135         * sysdeps/m68k/fpu/fabs.c: File removed.
2136         * sysdeps/m68k/fpu/fl.h: File removed.
2137         * sysdeps/m68k/fpu/floor.c: File removed.
2138         * sysdeps/m68k/fpu/fmod.c: File removed.
2139         * sysdeps/m68k/fpu/frexp.c: File removed.
2140         * sysdeps/m68k/fpu/isinf.c: File removed.
2141         * sysdeps/m68k/fpu/isinfl.c: File removed.
2142         * sysdeps/m68k/fpu/isnan.c: File removed.
2143         * sysdeps/m68k/fpu/isnanl.c: File removed.
2144         * sysdeps/m68k/fpu/ldexp.c: File removed.
2145         * sysdeps/m68k/fpu/log.c: File removed.
2146         * sysdeps/m68k/fpu/log10.c: File removed.
2147         * sysdeps/m68k/fpu/log1p.c: File removed.
2148         * sysdeps/m68k/fpu/logb.c: File removed.
2149         * sysdeps/m68k/fpu/pow.c: File removed.
2150         * sysdeps/m68k/fpu/rint.c: File removed.
2151         * sysdeps/m68k/fpu/sin.c: File removed.
2152         * sysdeps/m68k/fpu/sinh.c: File removed.
2153         * sysdeps/m68k/fpu/sqrt.c: File removed.
2154         * sysdeps/m68k/fpu/tan.c: File removed.
2155         * sysdeps/m68k/fpu/tanh.c: File removed.
2157 Thu Jun  6 00:02:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2159         * sysdeps/unix/sysv/linux/syscalls.list: Add select (the syscall name
2160         is _newselect).
2161         * sysdeps/unix/sysv/linux/select.S: File removed.
2163         * sysdeps/unix/sysv/linux/m68k/select.S: File removed; obsolete with
2164         current kernels, generic linux version is fine.
2166         * locale/Makefile: Add vpath for %.gperf to programs.
2168         * Make-dist (+tsrcs): Variable removed.
2169         (dist): Process $^ here instead of using $(+tsrcs).
2171         * sysdeps/unix/sysv/linux/Makefile (install-others): Don't set.
2172         ($(includedir)/sys/syscall.h): Target removed.
2173         (sysdep_headers): Add syscall-list.h.
2174         ($(objpfx)syscall-%.[dh]): New rule to build syscall-list.[dh].
2175         (generated): Add those.
2176         * sysdeps/unix/sysv/linux/syscall.h: Include <syscall-list.h>.
2178 Wed Jun  5 15:57:28 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2180         * misc/sys/syscall.h: New file.
2181         * misc/Makefile (headers): Add sys/syscall.h.
2183         * time/tzfile.h, time/private.h, time/zdump.c, time/zic.c,
2184         time/africa, time/asia, time/australasia, time/europe,
2185         time/northamerica, time/southamerica: Updated from ADO 96h.
2187         * Make-dist (all-headers): Filter $(sysdep_headers) out of $(headers).
2188         (try-sysdeps, +sysdep-names): Check sysdeps/libm-ieee754 too.
2190         * Makerules (distinfo-vars): Add sysdep_headers.
2191         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Append to
2192         this instead of $(headers).
2193         * sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
2194         * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
2196         * Make-dist [subdirs-dirs]: Don't prefix $(subdir-dirs) with
2197         $(subdir); we are already there.
2199         * sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: Removed.
2201         * mach/Machrules: Undo last change.
2202         (mach-generated): List .uh and .__h files only for $(user-interfaces),
2203         not for each .h in $(interface-headers); server-interfaces have no .uh
2204         or .__h files.
2206 Wed Jun  5 15:42:51 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2208         * mach/Machrules (%_server.uh, %_server.__h): New rules, so that the
2209         corrsponding .defs file with without the `_server' will be used.
2211         * mach/Makefile (mach/mach_interface.defs): Renamed from
2212         mach_interface.defs.
2213         (mach/memory_object_user.defs): New variable.
2215 Wed Jun  5 15:10:58 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2217         * Make-dist [subdir-dirs]: Set vpath for %, not just %.c.
2219         * locale/Makefile (subdir-dirs): New variable.
2221 Wed Jun  5 00:01:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2223         * Makerules (distinfo-vars): Add sysdep_routines.
2225         * mach/Machrules (include-%.defs): New canned sequence.
2226         Change all uses of `#include <$*.defs>' in cmds to use it.
2227         * mach/Makefile (mach_interface.defs): New variable, set to mach.defs.
2229         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle RESOLVE being
2230         null in all cases but R_386_COPY.
2231         (elf_machine_rel):
2233 Wed Jun  5 00:01:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2235         * sysdeps/unix/bsd/ultrix4/mips/Dist: Updated.
2236         * sysdeps/unix/bsd/ultrix4/Dist: Removed.
2237         * sysdeps/unix/sysv/sysv4/Dist: Updated.
2238         * sysdeps/unix/sysv/sco3.2.4/Dist: Removed.
2239         * sysdeps/unix/sysv/irix4/Dist: Updated.
2240         * sysdeps/unix/sysv/linux/i386/Dist: Removed.
2241         * sysdeps/unix/sysv/Dist: Updated.
2242         * sysdeps/unix/bsd/sun/sunos4/Dist: Removed.
2243         * sysdeps/unix/bsd/sony/newsos4/Dist: Removed.
2244         * sysdeps/gnu/Dist: New file.
2245         * sysdeps/alpha/Dist: Updated.
2246         * sysdeps/mach/hurd/Dist: Updated.
2248         * Make-dist [subdir-dirs]: Set a vpath for %.c.
2250         * Make-dist (README): Fix typo in cvs cmd.
2252         * elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change.
2253         Comment out ref to nonexistent _dl_close.
2255 Tue Jun  4 21:01:20 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2257         * math/Makefile (libm-support, libm-calls): New variables.
2258         (libm-routines): Construct this from those.
2259         (calls): New variable.
2260         (routines): Construct this from it.
2262         * resolv/res_debug.c: Add missing #include <ctype.h>.
2264         * sysdeps/unix/getlogin.c: Must pass struct utmp ptr to getutline_r.
2265         * sysdeps/unix/getlogin_r.c: Likewise.
2267         * sysdeps/libm-ieee754/w_hypotl.c: Fix typo.
2269         * sysdeps/libm-ieee754/w_cabsl.c: __cabsl_complex -> __cabs_complexl
2271         * math/Makefile (long-m-routines): Define recursive variable as
2272         $(long-m-$(long-double-fcts)).
2273         (long-m-yes): Put list of routines here.
2274         (long-c-routines, long-c-yes): Likewise.
2276         * sysdeps/unix/sysv/linux/schedbits.h: File removed.
2278         * sysdeps/i386/Makefile (long-double-fcts): New variable, set to yes.
2279         * sysdeps/m68k/Makefile: Likewise.
2281         * math/Makefile [$(long-double-fcts)!=yes] (CPPFLAGS): Append
2282         -DNO_LONG_DOUBLE.
2284         * sysdeps/mach/hurd/getlogin_r.c: New file.
2286 Wed Jun  5 02:11:30 1996  Ulrich Drepper  <drepper@cygnus.com>
2288         * io/Makefile (routines): Add ttyname_r.
2290         * resolv/res_debug.c, resolv/resolv.h: Update from bind-4.3.4-T4A.
2292         * sysdeps/libm-i387/e_asinl.S, sysdeps/libm-i387/e_atan2l.S,
2293         sysdeps/libm-i387/e_expl.S, sysdeps/libm-i387/e_fmodl.S,
2294         sysdeps/libm-i387/e_log10l.S, sysdeps/libm-i387/e_logl.S,
2295         sysdeps/libm-i387/e_remainderl.S, sysdeps/libm-i387/e_scalbl.S,
2296         sysdeps/libm-i387/e_sqrtl.S, sysdeps/libm-i387/s_atanl.S,
2297         sysdeps/libm-i387/s_cosl.S, sysdeps/libm-i387/s_ilogbl.S,
2298         sysdeps/libm-i387/s_log1pl.S, sysdeps/libm-i387/s_logbl.S,
2299         sysdeps/libm-i387/s_scalbnl.S, sysdeps/libm-i387/s_sinl.S,
2300         sysdeps/libm-i387/s_tanl.S: New files.  i387 assembler versions
2301         of `long double' math functions.
2303         * sysdeps/libm-ieee754/k_standard.c: Add handling for errors
2304         in long double functions.
2306         * sysdeps/libm-ieee754/s_ilogbl.c, sysdeps/libm-ieee754/s_logbl.c,
2307         sysdeps/libm-ieee754/s_modfl.c:  New files.  Generic versions
2308         of `long double' math functions.
2310         * sysdeps/libm-ieee754/s_isinf.c [NO_LONG_DOUBLE]: Add string
2311         alias for __isinfl.
2313         * sysdeps/libm-ieee754/w_acoshl.c, sysdeps/libm-ieee754/w_acosl.c,
2314         sysdeps/libm-ieee754/w_asinl.c, sysdeps/libm-ieee754/w_atan2l.c,
2315         sysdeps/libm-ieee754/w_atanhl.c, sysdeps/libm-ieee754/w_cabsl.c,
2316         sysdeps/libm-ieee754/w_coshl.c, sysdeps/libm-ieee754/w_dreml.c,
2317         sysdeps/libm-ieee754/w_expl.c, sysdeps/libm-ieee754/w_fmodl.c,
2318         sysdeps/libm-ieee754/w_gammal.c, sysdeps/libm-ieee754/w_gammal_r.c,
2319         sysdeps/libm-ieee754/w_hypotl.c, sysdeps/libm-ieee754/w_j0l.c,
2320         sysdeps/libm-ieee754/w_j1l.c, sysdeps/libm-ieee754/w_jnl.c,
2321         sysdeps/libm-ieee754/w_lgammal.c, sysdeps/libm-ieee754/w_lgammal_r.c,
2322         sysdeps/libm-ieee754/w_log10l.c, sysdeps/libm-ieee754/w_logl.c,
2323         sysdeps/libm-ieee754/w_powl.c, sysdeps/libm-ieee754/w_remainderl.c,
2324         sysdeps/libm-ieee754/w_scalbl.c, sysdeps/libm-ieee754/w_sinhl.c,
2325         sysdeps/libm-ieee754/w_sqrtl.c: New files.  Wrapper functions
2326         around long double function implementations.
2328         * sysdeps/posix/ttyname_r.c (ttyname_r): Use _D_EXACT_NAMLEN
2329         to determine length of directory entry name.
2331         * posix/Makefile (routines): Add getlogin_r.
2332         * posix/unistd.h: Add prototype for getlogin_r.
2333         * sysdeps/stub/getlogin_r.c: New file.  Reentrant version of
2334         getlogin function, specified in P1003.1c/D6.  Stub version.
2335         * sysdeps/unix/getlogin.c (getlogin): Use ttyname_r instead of
2336         ttyname.  This avoids saving and restoring the old content.
2337         Also use setutent_r, getutline_r and endutent_r instead of
2338         accing UTMP file directly.
2339         * sysdeps/unix/getlogin_r.c: New file.  Reentrant version of
2340         getlogin function, specified in P1003.1c/D6.
2342 Tue Jun  4 20:10:09 1996  J.T. Conklin  <jtc@cygnus.com>
2344         * sysdeps/libm-i387/s_finitef.S: Fix mask for exponent.
2346 Tue Jun  4 18:57:57 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2348         * elf/dl-lookup.c (_dl_lookup_symbol): Grok magical undefined symbols
2349         _GNU_libc_dl_{open,close,symbol} and resolve them to dl functions.
2351         * elf/rtld.c (rtld_map): Renamed to _dl_rtld_map, made global.
2352         * elf/link.h: Declare _dl_rtld_map.
2354         * elf/dl-lookup.c (_dl_symbol_value): New function.
2355         * elf/link.h: Declare it.
2357         * elf/dladdr.c: Remove #include <setjmp.h>, we don't use it.
2359         * shlib-versions: Set libdl=2.
2361         * elf/dl-deps.c (_dl_map_object_deps): Use a linked list of alloca'd
2362         elements and then scan it to fill the single malloc'd array, instead
2363         of using realloc to grow the array in the first pass.  _dl_map_object
2364         may do some mallocs that break our stream of reallocs, and the minimal
2365         realloc can't handle that.
2367         * elf/dl-init.c (_dl_init_next): Take argument, link_map whose
2368         searchlist describes the piece of the DT_NEEDED graph to be
2369         initialized.
2370         * elf/link.h: Update prototype.
2371         * sysdeps/i386/dl-machine.h (RTLD_START): Pass _dl_loaded as argument
2372         to _dl_init_next.
2373         * sysdeps/m68k/dl-machine.h: Likewise.
2374         * elf/dl-deps.c (_dl_open): Pass new object as arg to _dl_init_next.
2376         * elf/link.h (struct link_map): Add `l_reserved' member, soaking up
2377         extra bits in last byte.
2378         * elf/dl-deps.c (_dl_map_object_deps): Use that for mark bit to avoid
2379         putting dup elts in search list.
2381         * elf/dlclose.c: Use MAP->l_searchlist to find deps to close.
2383         * elf/dlsym.c: Don't tweak linked list.  Scope array given to
2384         _dl_lookup_symbol does the right thing.
2386         * elf/Makefile (subdir_lib): Change this target to lib-noranlib.
2387         (lib-noranlib): Depend on on $(extra-objs).
2389         * errno.h: Move __END_DECLS out of #ifdef's so it matches
2390         __BEGIN_DECLS.
2392 Tue Jun  4 02:25:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2394         * stdio-common/vfprintf.c [USE_IN_LIBIO] (size_t): Don't define as
2395         macro.  _IO_size_t is just an alias for the real size_t anyway.
2397         * elf/Makefile (libdl-routines): Add dladdr.
2398         * elf/dladdr.c: New file.
2399         * elf/dlfcn.h (Dl_info): New typedef.
2400         (dladdr): Declare it.
2402         * sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'.
2404         * intl/l10nflist.c: Fix conditional on #include <argz.h>.
2406         * libio/stdio.h (FOPEN_MAX, FILENAME_MAX, TMP_MAX, L_tmpnam): Macros
2407         removed.  Instead, include <stdio_lim.h>.
2409         * libio/_G_config.h: New file.
2410         * libio/Makefile (headers): Add _G_config.h.
2412         * MakeTAGS (po/errlist.pot): Extract from sysdeps/gnu/errlist.c.
2414         * sysdeps/unix/sysv/linux/gnu/types.h (__KERNEL_STRICT_NAMES): Define
2415         this macro too; current Linux kernels test that instead of
2416         _LINUX_TYPES_DONT_EXPORT.
2418         * elf/linux-compat.c (_init): Pass reloc_addr arg to _dl_lookup_symbol.
2420         * elf/dl-lookup.c (_dl_lookup_symbol): Use l_searchlist.
2422         * elf/dl-deps.c: New file.
2423         * elf/Makefile (rtld-routines): Add dl-deps.
2424         * elf/link.h: Declare _dl_map_object_deps, _dl_open.
2425         * elf/rtld.c (dl_main): Use _dl_map_object_deps.
2426         * elf/dlopen.c: Use _dl_open.
2428         * elf/rtld.c (dl_main): Remove BEFORE_RTLD variable and list
2429         frobnication based on its value.  Detach RTLD_MAP from the chain if
2430         its l_opencount is zero after loading deps.
2432         * elf/dlfcn.h (RTLD_BINDING_MASK): New macro.
2434         * elf/link.h (struct link_map): Replace l_deps_loaded flag member with
2435         `struct link_map **l_searchlist' and `unsigned int l_nsearchlist'.
2436         * elf/dl-lookup.c (_dl_lookup_symbol): Make SYMBOL_SCOPE arg an array
2437         of two link_map ptrs.  Search the maps in the l_searchlist of each
2438         elt that is not null.
2439         * elf/dl-reloc.c (_dl_relocate_object): Pass proper SCOPE array.
2440         * elf/dl-runtime.c: Likewise.
2441         * elf/dlsym.c: Likewise.
2442         * elf/rtld.c (dl_main): Likewise.
2444         * elf/dl-minimal.c (realloc): Support realloc of the block most
2445         recently returned by the minimal malloc.
2447 Tue Jun  4 00:16:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2449         * sysdeps/gnu/errlist.awk: Produce N_("..."), not _N("...").
2451         * intl: Updated from gettext-0.10.13.
2452         * intl/localealias.c, intl/dcgettext.c [_LIBC]: Define HAVE_ALLOCA.
2454         * signal/siggetmask.c: New file.  Wrapper around sigblock with
2455         link_warning about obsolescence.
2456         * signal/Makefile (routines): Add siggetmask.
2458         * sysdeps/gnu/errlist.awk: New file, adapted from ...
2459         * sysdeps/mach/hurd/errlist.awk: File removed, above file replaces it.
2460         * sysdeps/mach/hurd/Makefile (errlist.c): Target removed.
2461         * sysdeps/gnu/Makefile: New file.
2462         (sysdeps/gnu/errlist.c): Make the errlist.c generation rule into this.
2464 Mon Jun  3 21:03:54 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2466         * manual/errno.texi (Error Codes): Add placeholder items for missing
2467         Linux/i386 errno codes, with perror text but no documentation.
2468         Some existing perror texts changed.
2470         * malloc/mcheck.c (freehook, reallochook): Handle null pointer args.
2472         * hurd/hurdsig.c (_hurd_internal_post_signal): When setting ACT to
2473         `ignore, resume the thread if SS_SUSPENDED, regardless of old action.
2475 Sun Jun  2 20:14:30 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2477         * locale/programs/linereader.c (lr_open): Don't pass NULL to
2478         xstrdup; fix memory leak.
2479         (lr_close): Fix memory leak.
2481 Mon Jun  3 15:58:22 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
2483         * hurd/hurdsig.c (_hurd_internal_post_signal): When turning the action
2484         for a HANDLE signal to IGNORE because the signal is blocked, clean
2485         up any pending suspension left over from a call to resume.
2487 Mon Jun  3 00:30:35 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2489         * elf/dl-lookup.c (_dl_lookup_symbol): Take new arg RELOC_ADDR and
2490         don't allow a defn resolving to that address.
2492         * elf/link.h: Update prototype and comment.
2493         * elf/dl-runtime.c (fixup): Define local `resolve' function and pass
2494         it to elf_machine_relplt.
2495         * elf/dl-reloc.c (_dl_relocate_object: resolve): Take new arg
2496         RELOC_ADDR and pass it through to _dl_lookup_symbol.
2497         * elf/do-rel.h (elf_dynamic_do_rel): Pass RESOLVE to elf_machine_rel
2498         instead of calling it ourselves and passing its results.
2499         (elf_dynamic_do_rel): RESOLVE fn takes new arg RELOC_ADDR.
2500         * elf/rtld.c (dl_main): Pass 0 for RELOC_ADDR to _dl_lookup_symbol.
2501         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove SYM_LOADADDR
2502         arg.  Add RESOLVE function ptr arg.  Call *RESOLVE as necessary.
2503         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
2504         * sysdeps/stub/dl-machine.h: Likewise.
2506 Sun Jun  2 14:56:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2508         * csu/initfini.c (_fini): Add extern decl for i_am_not_a_leaf.
2510         * elf/dlfcn.h (dl_open_mode): Enumerated type removed.
2511         (RTLD_LAZY, RTLD_NOW): Define these as macros instead.
2512         (RTLD_GLOBAL): New macro.
2513         (dlopen): Take arg of type int instead of dl_open_mode.
2514         * elf/dlopen.c: Likewise.
2516         * math/math.h (_Mldbl): New macro, either produces L suffix or not.
2517         (M_*): Use it for these constants.
2519         * elf/dl-lookup.c (_dl_lookup_symbol): Arg NOSELF renamed to NOPLT.
2520         Reject SHN_UNDEF defns iff NOPLT is nonzero.
2521         * elf/link.h (_dl_lookup_symbol): Update prototype and comment.
2522         * elf/dl-runtime.c (fixup): Pass 1 to _dl_lookup_symbol for NOPLT.
2523         * elf/dlsym.c (dlsym): Pass 0.
2524         * elf/rtld.c (dl_main): Likewise.
2525         * elf/dl-reloc.c (_dl_relocate_object: resolve): Second arg R_OFFSET
2526         replaced with NOPLT flag.  Pass it through to _dl_lookup_symbol.
2527         * elf/do-rel.h (elf_dynamic_do_rel): Update prototype of RESOLVE arg.
2528         Pass `elf_machine_pltrel_p (R->r_type)' result as NOPLT flag value.
2529         * sysdeps/i386/dl-machine.h (elf_machine_pltrel_p): New macro.
2530         * sysdeps/m68k/dl-machine.h (elf_machine_pltrel_p): Likewise.
2531         * sysdeps/stub/dl-machine.h (elf_machine_pltrel_p): Likewise.
2533         * login/pututline_r.c: Fix typo in sizeof for DATA_TMP alloca.
2535         * sysdeps/generic/gnu/types.h (__clock_t): New type.
2537 Wed May 29 00:57:37 1996  David Mosberger-Tang  <davidm@azstarnet.com>
2539         * sysdeps/unix/sysv/linux/gnu/types.h (__clock_t, __fsid_t): Define
2540         using kernel types.
2541         * time/time.h (clock_t): Include <gnu/types.h> and define using
2542         __clock_t.
2544         * time/Makefile (tests): Add test-tz.
2546         * time/test-tz.c: New test.
2548         * time/clocktest.c: Rewrite to test more meaningfully.
2550         * sysdeps/unix/sysv/linux/syscalls.list: Add bdflush,
2551         create_module, delete_module, get_kernel_syms, init_module,
2552         klogctl.
2554         * sysdeps/unix/sysv/linux/sys/param.h (MAXSYMLINKS): Define as 5
2555         instead of SYMLOOP_MAX, which is nowhere to be found.
2557         * sysdeps/unix/sysv/linux/sys/msq_buf.h,
2558         sysdeps/unix/sysv/linux/sys/sem_buf.h,
2559         sysdeps/unix/sysv/linux/sys/shm_buf.h [__USE_MISC]: Add more
2560         control ops and datastructures.
2562         * sysdeps/unix/sysv/linux/sys/io.h: New file declaring low-level
2563         I/O related functions.
2565         * sysdeps/unix/sysv/linux/sys/kdaemon.h: New file declaring kernel
2566         daemon related functions/operations.
2568         * sysdeps/unix/sysv/linux/sys/klog.h: New file declaring kernel
2569         logging related functions/operations.
2571         * sysdeps/unix/sysv/linux/sys/module.h: New file declaring kernel
2572         module related functions/operations.
2574         * sysdeps/unix/sysv/linux/speed.c: Only do "mention this twice" hack
2575         for non-Alpha based Linux systems.
2577         * sysdeps/unix/sysv/linux/alpha/speed.c: Remove.
2579         * sysdeps/unix/sysv/linux/Makefile (headers): Add sys/module.h,
2580         sys/io.h, sys/klog.h, and sys/kdaemon.h.
2582         * sysdeps/unix/sysdep.h (END): Define empty END macro for
2583         platforms that don't need some sort of end directive at the
2584         end of functions.
2586         * sysdeps/unix/make-syscalls.sh: Emit END($strong) at end of
2587         syscall wrapper to allow correct generation of debugging
2588         information.
2590         * sysdeps/unix/alpha/sysdep.h (END): Redefine to use .end
2591         directive for both ELF and ECOFF.
2592         (ret): Delete macro.  It was a dangerous macro and unnecessary
2593         since the Alpha assemblers recognizes "ret" as a macro themselves.
2595         * sysdeps/gnu/utmpbits.h (struct utmp): Move ut_tv behind
2596         ut_session to guarantee long alignment.  This is important for
2597         Linux/Alpha since ut_tv.tv_sec is 32 bits and time_t is 64 bits.
2598         This will all get cleaned up as programs start to use ut_tv
2599         instead ut_time.
2601         * sysdeps/alpha/divrem.h: Include <sysdep.h> instead of <*/regdef.h>.
2603         * sysdeps/alpha/bsd-_setjmp.S (setjmp): Renamed entry point to
2604         _setjmp.
2606         * sysdeps/alpha/_mcount.S, sysdeps/alpha/bb_init_func.S,
2607         sysdeps/alpha/bsd-_setjmp.S, sysdeps/alpha/bsd-setjmp.S,
2608         sysdeps/alpha/copysign.S, sysdeps/alpha/divrem.h,
2609         sysdeps/alpha/fabs.S, sysdeps/alpha/ffs.S, sysdeps/alpha/htonl.S,
2610         sysdeps/alpha/htons.S, sysdeps/alpha/memchr.S,
2611         sysdeps/alpha/setjmp.S, sysdeps/alpha/strlen.S,
2612         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
2613         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
2614         sysdeps/unix/sysv/linux/alpha/llseek.S,
2615         sysdeps/unix/sysv/linux/alpha/pipe.S,
2616         sysdeps/unix/sysv/linux/alpha/sigsuspend.S,
2617         sysdeps/unix/sysv/linux/alpha/sysdep.S: Use END macro instead of
2618         .end directive.
2620         * csu/initfini.c (_fini): Tell gcc that _fini is not a leaf
2621         function by having it contain a dummy function call.
2623         * configure.in (config_machine): Don't make ELF the default for
2624         Linux/Alpha just yet (use --with-elf instead).
2625         (.init/.fini check): Generate .text to ensure function start and
2626         end are in same section.
2628         * sysdeps/unix/bsd/osf/alpha/brk.S,
2629         sysdeps/unix/sysv/linux/alpha/brk.S (__curbrk): Store the entire
2630         break value, not just the low 32 bits to accomodate large
2631         memories.
2633 Tue May 28 10:46:04 1996  Richard Henderson  <rth@tamu.edu>
2635         * sysdeps/unix/sysv/linux/alpha/brk.S: Rather than attempt to
2636         dynamically resolve _end for initializing __curbrk, support the
2637         brk(0) query idiom.
2639         * sysdeps/alpha/bb_init_func.S: Don't make `init' an external symbol.
2641         * sysdeps/alpha/bsd-_setjmp.S: The function is _setjmp not setjmp.
2643 Sun May 26 22:17:38 1996  Richard Henderson  <rth@tamu.edu>
2645         * stdlib/lcong48_r.c, stdlib/seed48_r.c, stdlib/strtod.c,
2646         stdlib/strtol.c: Include <string.h> for mem* and str* fns used.
2648 Thu May 23 02:15:56 1996  David Mosberger-Tang  <davidm@azstarnet.com>
2650         * sysdeps/unix/sysv/linux/Makefile (headers): Add sys/io.h,
2651         sys/klog.h, and sys/kdaemon.h.
2653         * sysdeps/unix/sysv/linux/sys/io.h: New file.
2654         * sysdeps/unix/sysv/linux/sys/klog.h: Ditto.
2655         * sysdeps/unix/sysv/linux/sys/kdaemon.h: Ditto.
2657         * sysdeps/unix/alpha/sysdep.h (ret): Remove macro.  It is
2658         dangerous and unnecessary since both OSF/1 as and gas define "ret"
2659         as a pseudo-instruction.
2661 Sat Jun  1 17:18:21 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2663         * time/tzset.c (__tzset): Clear tz_rules name pointers after freeing
2664         them.  Bug found by David Mosberger-Tang.
2666         * sysdeps/posix/tempname.c (__stdio_gen_tempname): Use __ptr_t instead
2667         of PTR.
2669         * extra-lib.mk (extra-objs): Use patsubst intead of $(A:=B) syntax
2670         to work around Make bug when A contains var ref.
2672 Fri May 31 18:27:52 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2674         * string/string.h [__USE_MISC]: Declare basename; OSF/1 puts it here.
2676         * sysdeps/unix/sysv/linux/syscalls.list (getpgid, setpgid): Define __
2677         strong names and [gs]etpgid as weak aliases.
2679 Thu May 30 11:24:05 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2681         * math/math_private.h (GET_LDOUBLE_EXP): Add missing backslash.
2683         * po/header.pot: Replace with exact boilerplate pinard dictates.
2685         * sysdeps/i386/strtok.S (Lillegal_argument): Remove this code to set
2686         errno and the check that jumped to it.
2688         * sysdeps/mach/hurd/Makefile (errnos.d): Use $(sed-remove-objpfx).
2690 Thu May 30 03:21:57 1996  Ulrich Drepper  <drepper@cygnus.com>
2692         * FAQ: Document need of gperf program for developers.
2694         * elf/elf.h: Fix typos in comments.
2696         * libio/stdio.h [!__STRICT_ANSI__ || _POSIX_SOURCE]: Add
2697         prototypes for `ctermid' and `cuserid'.
2699         * locale/programs/locale.c: Switch to user selected locale
2700         before printing variables.
2702         * math/Makefile [$(long-double-fcts)==yes]: Define long-m-routines
2703         and long-c-routines.  Only if the `long double' data type is
2704         available we need to compile the functions.
2705         (libm-routines): Add $(long-m-routines).
2706         (routines): Remove isinfl, isnanl.  Use new file s_isinfl and
2707         s_isnanl instead if `long double' is available.
2709         * math/math.h: Include <mathcalls.h> again to define `long double'
2710         functions.
2712         * math/math_private.h: Define data types, prototypes and access
2713         macros for `long double'.
2715         * stdlib/stdlib.h: Add prototypes for `strtoll' and `strtoull'.
2716         [GCC2 && OPTIMIZE]: Define strto{,u}ll as inline function which
2717         calls __strto{,u}q_internal.
2719         * stdlib/strfmon.c: Replace PTR by `void *'.
2721         * stdlib/strtoq.c: Define strtoll as weak alias.
2722         * stdlib/strtouq.c: Define strtoull as weak alias.
2724         * string/tester.c: Correct `strsep' test.
2726         * sysdeps/generic/strsep.c: Make compatible with BSD version.
2727         Trailing characters of skip set are not skipped.  In this case
2728         empty tokens are returned.
2730         * sysdeps/i386/isinfl.c, sysdeps/i386/isnanl.c,
2731         sysdeps/ieee754/isinf.c, sysdeps/ieee754/isinfl.c,
2732         sysdeps/ieee754/isnan.c, sysdeps/ieee754/isnanl.c: Removed.  We
2733         now use the versions part of libm.
2735         * sysdeps/i386/strsep.S: Removed.  Generic C version is of
2736         similar speed.
2737         * sysdeps/i386/strtok.S: Remove support for `strsep'.
2739         * sysdeps/libm-i387/e_acosl.S, sysdeps/libm-i387/s_ceill.S,
2740         sysdeps/libm-i387/s_copysignl.S, sysdeps/libm-i387/s_finitel.S,
2741         sysdeps/libm-i387/s_floorl.S, sysdeps/libm-i387/s_isinfl.c,
2742         sysdeps/libm-i387/s_isnanl.c, sysdeps/libm-i387/s_nextafterl.c,
2743         sysdeps/libm-i387/s_rintl.S, sysdeps/libm-i387/s_significandl.S:
2744         New i387 specific math functions implementing `long double'
2745         versions.
2747         * sysdeps/libm-ieee754/s_ceill.c,
2748         sysdeps/libm-ieee754/s_copysignl.c,
2749         sysdeps/libm-ieee754/s_fabsl.c, sysdeps/libm-ieee754/s_finitel.c,
2750         sysdeps/libm-ieee754/s_floorl.c, sysdeps/libm-ieee754/s_isinfl.c,
2751         sysdeps/libm-ieee754/s_isnanl.c,
2752         sysdeps/libm-ieee754/s_nextafterl.c,
2753         sysdeps/libm-ieee754/s_rintl.c, sysdeps/libm-ieee754/s_scalbnl.c,
2754         sysdeps/libm-ieee754/s_significandl.c: New generic `long double'
2755         versions of libm functions.
2757         * sysdeps/libm-i387/e_exp.S: Add a few comments to explain the
2758         Intel FPU nonsense.
2760         * sysdeps/libm-i387/s_ceil.S, sysdeps/libm-i387/s_ceilf.S,
2761         sysdeps/libm-i387/s_floor.S, sysdeps/libm-i387/s_floorf.S: Correct
2762         handling of local variables.  The old version created a stack
2763         frame but stored the values outside.
2765         * sysdeps/libm-ieee754/s_isinf.c, sysdeps/libm-ieee754/s_isnan.c
2766         [!NO_LONG_DOUBLE]: Define alias with `long double' versions name.
2768 Wed May 29 12:53:10 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2770         * login/pututline_r.c: Include sys/stat.h.  Fix typos.
2772         * version.h (VERSION): Set to 1.90.
2774         * Makerules (distinfo-vars): Write extra-libs and *-routines for each
2775         of its elts.
2776         * MakeTAGS (sources): Add those sources.
2778         * MakeTAGS (all-sources): Add $(others:=.c) and $(tests:=.c).
2780 Wed May 29 08:53:08 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2782         * hurd/report-wait.c (_S_msg_report_wait): Return `itimer' for the
2783         itimer thread.
2785         * hurd/hurdinit.c (_hurd_init): Set _HURDSIG_TRACED before calling
2786         _hurd_proc_init.
2788 Wed May 29 00:52:20 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2790         * string/tester.c (main): Fix strsep tests 6, 7, 20 to expect null
2791         token instead of it being implicitly skipped.
2793         * sysdeps/i386/fpu/__math.h (logb): Correct contraint from =u to =t.
2794         Must operate on top of fp reg stack, not second from top.
2796         * extra-lib.mk (alltypes-$(lib)): Don't append $(objpfx)$(lib).so.
2797         (others): Instead, make this depend on it.
2799 Tue May 28 04:38:10 1996  Ulrich Drepper  <drepper@cygnus.com>
2801         * limits.h: Change MB_LEN_MAX to 6.  A 31-bit ISO 10646
2802         character in UTF-8 encoding has that many bytes.
2804         * locale/langinfo.h: New element _NL_CTYPE_MB_CUR_MAX.
2805         * locale/categories.def: Add description of field _NL_CTYPE_MB_CUR_MAX.
2806         * locale/Makefile (routines): Add mb_cur_max.
2807         * locale/mb_cur_max.c: New file.  This function gets called
2808         when the macro MB_CUR_MAX is used.
2809         * locale/C-ctype.c: Initialize new mb_cur_max field.
2810         * locale/localeinfo.h: Change magic value because of incompatible
2811         change.
2812         * locale/programs/ld-ctype.c: Determine value of mb_cur_max
2813         according to current character set and write it out with the rest.
2814         * stdlib/stdlib.h (MB_CUR_MAX): Not constant anymore.  Get value
2815         according to currently used locale for category LC_CTYPE by
2816         calling the function __ctype_get_mb_cur_max.
2818 Tue May 28 03:27:46 1996  Ulrich Drepper  <drepper@cygnus.com>
2820         * FAQ:  Fix some typos.
2821         Tell that for Linux the kernel header files are necessary.
2823         * PROJECTS: New file.  List of open jobs for glibc.
2824         * Makefile (distribute): Add PROJECTS.
2826         * crypt/GNUmakefile (headers): New variable.  Mention crypt.h.
2827         * crypt/crypt.h: Header for crypt functions.
2829         * elf/elf.h: Add some new constants from recent Cygnus ELF
2830         header files.
2832         * login/getutid_r.c: Test for correct type.
2833         Don't depend on ut_type and ut_id unless _HAVE_UT_TYPE and
2834         _HAVE_UT_ID resp. are defined.
2835         Make really compliant with specification.
2837         * login/getutline_r.c, login/pututline_r.c: Don't depend on
2838         ut_type and ut_id unless _HAVE_UT_TYPE and _HAVE_UT_ID resp. are
2839         defined.
2840         Make really compliant with specification.
2842         * login/setutent_r.c: Don't depend on ut_type and ut_id unless
2843         _HAVE_UT_TYPE and _HAVE_UT_ID resp. are defined.
2845         * login/login.c, login/logout.c, login/logwtmp.c: Complete
2846         rewrite.  Now based on getut*/setut* functions.
2848         * stdlib/strtol.c: Undo changes of Wed May 22 01:48:54 1996.
2849         This prevented using this file in other GNU packages.
2851         * sysdeps/gnu/utmpbits.h: Define _HAVE_UT_TYPE, _HAVE_UT_ID,
2852         and _HAVE_UT_TV because struct utmp has these members.
2854         * sysdeps/libm-i387/e_exp.S: Correct exp(+-Inf) case.
2856         * utmp.h: New file.  Wrapper around login/utmp.h.
2858 Tue May 28 13:11:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2860         * elf/dl-error.c (struct catch): New type.
2861         (catch): New static variable, struct catch *.
2862         (catch_env, signalled_errstring, signalled_objname): Variables removed.
2863         (_dl_signal_error): If CATCH is non-null, set its errstring and
2864         objname members and jump to CATCH->env.  If it is null, call
2865         _dl_sysdep_fatal with a standard message.
2866         * elf/rtld.c (dl_main): Explode `doit' function into dl_main's body.
2867         No longer use _dl_catch_error.
2869         * Makerules (sed-remove-objpfx): Avoid extra space in regexp due to
2870         continuation line.
2872         * sysdeps/unix/sysv/linux/i386/socket.S: Fix off-by-one error in
2873         setting %ecx to 2nd syscall arg: we have pushed nothing, so function
2874         args are found at 4(%esp), not 8(%esp).
2876 Mon May 27 10:10:00 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2878         * Makefile ($(includedir)/stubs.h): Add missing backslash.
2880         * sysdeps/unix/sysv/linux/i386/brk.c (__curbrk): Initialize it so it
2881         can be aliased.
2883         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=termios] (headers):
2884         Append termio.h.
2886         * Makefile ($(includedir)/stubs.h): Print a msg if we do nothing.
2888         * misc/sgtty.h: Add forward decl of struct sgttyb in case it is never
2889         defined.
2891         * sysdeps/unix/sysv/linux/termio.h: New file.
2892         * sysdeps/unix/sysv/linux/Dist: Add it.
2894         * sysdeps/unix/sysv/linux/ioctl-types.h: New file, wrapper around
2895         kernel header <asm/termios.h>.
2897         * misc/Makefile (headers): Add ioctl-types.h.
2898         * sysdeps/generic/ioctl-types.h: New file.
2899         * misc/sys/ioctl.h: Include <ioctl-types.h>.
2900         (struct tchars, struct ltchars, struct sgttyb, struct winsize,
2901         struct ttysize): Types moved there.
2903         * Makefile ($(includedir)/stubs.h): Don't touch target if new one is
2904         identical.
2906         * time/Makefile (z.% rule): Generate generic zone%/ rule after
2907         zone%/right/ and zone%/posix/ rules so they match first.
2909 Sun May 26 15:15:08 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2911         * features.h [_GNU_SOURCE] (_BSD_SOURCE, _SVID_SOURCE,
2912         _POSIX_SOURCE, _POSIX_C_SOURCE): Define these.
2914         * time/Makefile (tzcompile): Add missing backslash.
2916         * stdlib/ldiv.c: Deansideclized.
2918         * wctype/wctype.h (__need_wint_t): Define this and include stddef.h.
2919         [! _WINT_T] (wint_t): Conditionalize typedef on this in case pre-2.7.3
2920         stddef.h doesn't define it.
2921         * wcsmbs/wchar.h: Likewise.
2922         * stdlib/strtod.c: Likewise.
2924         * wcsmbs/wcstok.c: Fix argument name typo.
2926 Sun May 26 19:39:53 1996  Ulrich Drepper  <drepper@cygnus.com>
2928         * intl/loadmsgcat.c (_nl_load_domain): Test correct variable
2929         after malloc.
2931         * string/Makefile (tester-ENV): New variable to suppress message
2932         translation in test.
2934         * string/tester.c: Add tests for strtok_r and strsep.
2936         * sysdeps/i386/i486/strcat.S: Correct some more 8bit operation
2937         <-> 32 bit operand conflicts.
2939         * sysdeps/i386/strsep.S: Wrapper around <sysdeps/i386/strtok.S>
2940         to produce strsep function.
2941         * sysdeps/i386/strtok.S: Optimized implementation of strtok
2942         function.
2943         * sysdeps/i386/strtok_r.S: Wrapper around <sysdeps/i386/strtok.S>
2944         to produce strtok_r function.
2946         * sysdeps/generic/strtok.c: Moved here from string/strtok.c.
2947         Corrected example in comment.
2949         * string/Makefile (routines): Add strtok_r.
2950         * sysdeps/generic/strtok_r.c: New file.  Implement reentrant version
2951         of strtok_r.
2952         * string/string.h: Add prototype for strtok_r.
2953         * wcsmbs/wcstok.c: Handle illegal SAVE_PTR argument the same
2954         as in strtok_r.
2956 Sun May 26 13:28:23 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2958         * time/tzset.c (__tzset): Ignore leading : in $TZ; always try tzfile
2959         first and fall back to 1003.1 syntax only if it fails.
2961         * time/Makefile (install-others): Also install posix/ZONE and
2962         right/ZONE for each ZONE in $(zonenames).
2963         (z.% rule): Generate rules for right/ZONE and posix/ZONE targets too,
2964         the difference begin leapseconds vs /dev/null as 3rd dep.  For
2965         original ZONE targets use $(leapseconds), to be set in Makeconfig.
2966         (target-zone-flavor): New variable.
2967         (tzcompile): Use it to get the right -d for posix/ and right/ flavors.
2968         * Makeconfig (leapseconds): New variable.
2970         * mach/Machrules (%.udeps rule): Depend on Machrules.
2971         Emit deps for .uh and .__h files.
2972         (%.uh, %.__h rules): Don't depend on %.defs; use #include <$*.defs>
2973         instead.
2975 Sun May 26 01:06:47 1996  Ulrich Drepper  <drepper@cygnus.com>
2977         * stdlib/Makefile (routines): Add llabs, lldiv.
2978         * stdlib/llabs.c: New file.  Implementation of return
2979         absolute value of long long argument.
2980         * stdlib/lldiv.c: New file.  Implementation of division with remainder
2981         of long long argument.
2982         * stdlib/stdlib.h [__USE_GNU] (lldiv_t): New type for lldiv
2983         function.
2984         Define prototypes for lldiv and llabs functions.
2986         * locale/C-collate.c: Initialize _NL_COLLATE_NRULES element.
2988         * stdlib/strtod.c: Replace wchar_t with wint_t.  The later is
2989         really the type for a single wide character.
2991         * string/strxfrm.c (print_val): Define separate version for
2992         use as wcsxfrm.  Here we don't need UTF8 encoding.
2994         * wcsmbs/wchar.h:  gcc-2.7.2-960517 finally introduces wint_t
2995         in <stddef.h>.  Use this value and only for older gcc version
2996         define in place.
2997         (uwchar_t): Remove definition.
2999         * wcsmbs/wcscmp.c, wcsmbs/wcscoll.c, wcsmbs/wcsncmp.c,
3000         wcsmbs/wcsxfrm.c, wcsmbs/wmemcmp.c: : Don't use uwchar_t as unsigned
3001         type.  wint_t is intended for this.
3003 Sat May 25 14:10:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3005         * sysdeps/unix/bsd/direntry.h: Use [1] instead of [0] for d_name to
3006         quiet -ansi -pedantic.
3007         * sysdeps/unix/common/direntry.h: Likewise.
3009         * login/Makefile (headers): Add lastlog.h.
3010         * login/lastlog.h: New file.
3012         * login/Makefile (CFLAGS): Don't append -D_THREAD_SAFE.
3013         * login/utmp.h [_REENTRANT || _THREAD_SAFE]: Replace this conditional
3014         with #ifdef __USE_REENTRANT.
3016         * features.h (__GNU_LIBRARY__): Set to 6.
3017         [_GNU_SOURCE] (_POSIX_SOURCE, _POSIX_C_SOURCE, _BSD_SOURCE,
3018         _SVID_SOURCE): Make sure they are all defined.
3020         * sysdeps/unix/sysv/linux/gnu/types.h: Instead of including
3021         <linux/posix_types.h>, define _LINUX_TYPES_DONT_EXPORT and then
3022         include <linux/types.h>.
3024         * resource/sys/resource.h: Remove trailing commas from enums.
3026 Fri May 24 17:30:50 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3028         * sysdeps/generic/netinet/in.h: Remove trailing commas from enums.
3029         * sysdeps/unix/sysv/linux/netinet/in.h: Likewise.
3031         * login/getutline_r.c: Include string.h.
3033         * Rules (static-only-routines): Restore the rule to make these .so's
3034         empty objects.
3036         * login/pututline_r.c: Use struct assignment instead of memcpy.
3038         * login/getutline_r.c: Use strncmp instead of comparing two pointers
3039         that will only be equal if you are overwriting the data and screwing
3040         yourself anyway.
3042 Fri May 24 02:31:36 1996  Ulrich Drepper  <drepper@cygnus.com>
3044         * sysdeps/unix/sysv/linux/speed.c: Add new speed value 460800.
3046 Thu May 23 23:09:33 1996  Ulrich Drepper  <drepper@cygnus.com>
3048         * FAQ: Add answer for 100% source code compatibility to Linux
3049         libc by David Mosberger-Tang.
3051         Update from bind-4.9.4-T3B.
3052         * inet/arpa/inet.h: Add prototypes for inet_pton, inet_ntop,
3053         inet_nsap_addr, and inet_nsap_ntoa.
3054         * resolv/gethnamaddr.c: Correct compatibility problems (sprintf),
3055         remove fourth argument to inet_pton and correct handling of
3056         host_addr passing.
3057         * resolv/inet_ntop.c: Correct compatibility problems (sprintf).
3058         * resolv/inet_pton.c: Remove fourth argument.
3059         * resolv/resolv.h: Remove prototypes for inet_nsap_addr and
3060         inet_nsap_ntoa.  Now in <arpa/inet.h>.
3062         * stdlib/gmp-impl.h: Add prototypes for internal functions.
3064 Thu May 23 22:49:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3066         * Rules (subdir_install): Remove dep on sor-$(subdir).
3067         (static-only-routines): Removed variable and associated rules.
3069 Wed May 22 00:40:50 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3071         * sysdeps/unix/sysv/linux/alpha/speed.c (speeds): Add entry for
3072         460800 baud.
3074         * sysdeps/unix/sysv/linux/alpha/statbuf.h: New file.
3076         * sysdeps/unix/sysv/linux/alpha/Makefile (headers): Add
3077         alpha/ptrace.h.
3078         * sysdeps/unix/sysv/linux/alpha/alpha/ptrace.h: New file.
3080         * sysdeps/libm-ieee754/s_scalbnf.c: Call __scalbnf instead of
3081         scalbnf.
3083         * sysdeps/generic/sigset.h (__sigismember, __sigaddset,
3084         __sigdelset): Add declaration to keep ANSI compilers quiet.
3086         * sysdeps/alpha/__math.h (cabs): Remove underscores from struct
3087         __cabs_complex member names in call to __hypot().
3089         * sysdeps/alpha/copysign.S, sysdeps/alpha/fabs.S: New files.
3091         * sysdeps/alpha/divrem.h: Renamed from sysdeps/alpha/divrem.S to avoid
3092         name collision with math library.
3094         * sysdeps/alpha/divl.S, sysdeps/alpha/divlu.S, sysdeps/alpha/divq.S,
3095         sysdeps/alpha/divqu.S, sysdeps/alpha/reml.S, sysdeps/alpha/remlu.S,
3096         sysdeps/alpha/remq.S, sysdeps/alpha/remqu.S: Include divrem.h instead
3097         of divrem.S.
3099         * sysdeps/unix/alpha/sysdep.h: Include regdef.h.  Define LEAF macro
3100         to simplify declaration of leaf functions.
3102         * sysdeps/alpha/_mcount.S, sysdeps/alpha/bb_init_func.S,
3103         sysdeps/alpha/bsd-_setjmp.S, sysdeps/alpha/ffs.S,
3104         sysdeps/alpha/htonl.S, sysdeps/alpha/htons.S, sysdeps/alpha/memchr.S,
3105         sysdeps/alpha/setjmp.S, sysdeps/alpha/strlen.S,
3106         sysdeps/alpha/udiv_qrnnd.S, sysdeps/unix/sysv/linux/alpha/brk.S,
3107         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
3108         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
3109         sysdeps/unix/sysv/linux/alpha/pipe.S,
3110         sysdeps/unix/sysv/linux/alpha/sigsuspend.S,
3111         sysdeps/unix/sysv/linux/alpha/syscall.S,
3112         sysdeps/unix/sysv/linux/alpha/start.S,
3113         sysdeps/unix/sysv/linux/alpha/sysdep.S: Remove include of regdef.h.
3114         sysdep.h includes it now. Replace ENTRY by LEAF with appropriate
3115         framesize declaration.  Replace "lda pv,sym/jsr pv" by "jsr sym".
3117         * sysdeps/unix/sysv/linux/alpha/sysdep.h (NO_UNDERSCORES): Don't
3118         define.
3120         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Added getsockopt,
3121         ptrace, and sysctl.
3123         * sysdeps/unix/sysv/linux/alpha/profil-counter.h: File removed.
3125         * sysdeps/unix/sysv/linux/alpha/ioperm.c: Modify to support
3126         dynamic recognition of platform type.
3127         (_bus_base): New function.
3129         * sysdeps/unix/sysv/linux/alpha/llseek.S: New file.
3131         * sunrpc/rpc/rpc.h, sunrpc/rpc/svc.h: Avoid nested comments since
3132         they produce ugly warnings by gcc.
3134         * posix/sys/types.h [__USE_MISC]: Add typedef for ulong.
3136 Wed Mar 27 10:26:21 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3138         * sysdeps/alpha/setjmp.S: Must establish global pointer before
3139         address of __sigsetjmp_aux can be loaded.
3141 Wed May 22 22:10:01 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3143         * stdlib/canonicalize.c: New file.
3144         * stdlib/stdlib.h: Declare canonicalize_file_name, realpath.
3145         * stdlib/Makefile (routines): Add canonicalize.
3147         * posix/unistd.h: Declare __canonicalize_directory_name_internal.
3149 Thu May 23 00:01:10 1996  Ulrich Drepper  <drepper@cygnus.com>
3151         * db/recno/rec_seq.c: Prevent `sccsid' definition by using the
3152         same #if condition as in the other db files.
3154         * intl/Makefile: Add -Wno-unused CFLAGS for compilation of
3155         bindtextdom.c, finddomain.c, and localealias.c.
3157         * intl/dcgettext.c: Don't define prototype for getcwd() when
3158         compiling in glibc.
3160         * libio/cleanup.c: Add prototype for _IO_register_cleanup.
3162         * libio/filedoalloc.c, libio/fileops.c, libio/iopopen.c: Don't
3163         define _POSIX_SOURCE unconditionally.
3165         * libio/filedoalloc.c, libio/iopopen.c: Include <unistd.h> if
3166         compiling in glibc.
3168         * libio/fileops.c (_IO_file_close_it): Don't sync file, call
3169         flush instead.  This relaxes the rules from POSIX.1 about
3170         changing the active handle a bit.
3172         * libio/iofopncook.c (struct _IO_cookie_file): Move definition
3173         into <libio.h>.
3174         Add prototypes for local functions to prevent warnings.
3176         * libio/iopopen.c: Change prototypes for _IO_fork, _IO_pipe, and
3177         _IO_dup2 to contain complete parameter list.
3179         * libio/libio.h: Add definition of struct _IO_cookie_file.
3181         * libio/libioP.h: Add prototypes for _IO_vasprintf, _IO_vdprintf,
3182         and _IO_vsnprintf.
3184         * libio/memstream.c: Include <stdio.h>.
3186         * libio/stdio.h: Add prototypes for fopencookie,
3187         __stdio_gen_tempname, __vfscanf, __vsscanf, and __vsnprintf.
3189         * libio/strops.c: Avoid useless expression in `for' initializer.
3191         * locale/findlocale.c: Add some casts to prevent warnings.
3193         * locale/programs/locfile.c (write_locale_data): Don't use
3194         double `/' in locale binary file.
3196         * posix/unistd.h: Remove prototype for `reboot'.
3198         Update from bind-4.9.4-T1A.
3199         * resolv/Makefile (routines): Add inet_ntop and inet_pton.
3200         * resolv/arpa/nameser.h: Add definition of IN6ADDRSZ.
3201         * resolv/gethnamaddr.c, resolv/getnetnamadr.c, resolv/res_comp.c,
3202         resolv/res_debug.c, resolv/res_init.c
3204         * resolv/inet_ntop.c, resolv/inet_pton.c: New files.
3206         * resolv/resolv.h: Add RES_USE_INET6 flag.
3207         (__dn_isvalid): Renamed to __res_dnok.
3208         Add prototypes for __res_ownok and __res_mailok.
3210         * stdio-common/Makefile: Add -Wno-unused to CFLAGS for _itoa.c.
3212         * stdio-common/getline.c, stdio-common/vfscanf.c,
3213         sysdeps/posix/tempname.c: Don't use <ansidecl.h> anymore.
3215         * sysdeps/unix/sysv/linux/Makefile [$subdir == misc]
3216         (sysdep_routines): Add s_reboot.
3217         (install-others): Add $(includedir)/sys/syscall.h.
3218         New rule for $(includedir)/sys/syscall.h to produce from
3219         <asm/unistd.h>.
3221         * sysdeps/unix/sysv/linux/reboot.c: New file.  Make single
3222         argument function call 3 argument system call.
3224         * sysdeps/unix/sysv/linux/sys/reboot.h: New file.  Linux specific
3225         definition for reboot function.
3227         * sysdeps/unix/sysv/linux/syscall.h: Remove old and obsolete
3228         comment.
3230         * sysdeps/unix/sysv/linux/syscalls.list: Rename function for
3231         reboot syscall to __syscall_reboot.
3233         * wcsmbs/wchar.h: Protect prototypes for wcstof and wcstold by
3234         __USE_GNU, not USE_GNU.
3236 Tue May 21 21:55:49 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
3238         * locale/programs/charset.c, locale/programs/ld-collate.c:
3239         Add casts to prevent warnings on 64-bit machines.
3241         * locale/programs/ld-monetary.c: Don't do unnecessary tests for
3242         int_frac_digits and frac_digits which only produce warnings.
3244 Mon May 13 23:45:29 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
3246         * inet/arpa/inet.h: Backup return type of inet_addr to u_long.
3247         * resolv/inet_addr.c: Likewise.
3249         * resolv/Makefile (distribute): Add res_hconf.h
3250         (routines): Add res_hconf.
3252         * resolv/gethnamaddr.c: Add support for /etc/host.conf.
3254         * resolv/res_init.c: Initialize /etc/host.conf reader.
3256         * resolv/res_hconf.c, resolv/res_hconf.h: New files.
3257         Implementation of reading /etc/host.conf.
3259 Wed May 22 21:21:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3261         * Rules (%.out rules): Prepend $($*-ENV) to the command.
3263         * sysdeps/unix/sysv/linux/i386/brk.c (___brk_addr): Define as weak
3264         alias for __curbrk.
3266 Wed May 22 19:37:27 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3268         * hurd/hurdexec.c (_hurd_exec): Pass INIT_TRACEMASK.
3269         * hurd/hurdmsg.c (set_int): Support INIT_TRACEMASK.
3271 Wed May 22 18:47:31 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3273         * sysdeps/mach/hurd/getcwd.c
3274         (_hurd_canonicalize_directory_name_internal): New function, broken out
3275         of __getcwd.
3276         (__getcwd): Use it.
3277         (__canonicalize_directory_name_internal): New function using it.
3279         * sysdeps/posix/getcwd.c (__canonicalize_directory_name_internal): New
3280         function, broken out of __getcwd.
3281         (__getcwd): Use it.
3283 Wed May 22 18:14:05 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3285         * string/argz-create.c (__argz_create): Correctly calculate length.
3287         * string/argz-extract.c (__argz_extract): Add terminating 0 entry.
3288         * hurd/hurdstartup.c (_hurd_startup): ... and don't so here.
3290 Wed May 22 17:22:14 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3292         * posix/glob.c [VMS]: Don't include <pwd.h>.
3293         [HAVE_VMSDIR_H]: Include "vmsdir.h".
3294         (glob) [VMS]: Don't grok ~.
3296 Wed May 22 14:46:53 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3298         * hurd/hurdstartup.c (_hurd_startup): Terminate the vectors we get
3299         back from argz_extract.
3301 Wed May 22 13:56:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3303         * configure.in: Remove checks for objdump, objcopy, and awk.
3304         * config.make.in (OBJDUMP, OBJCOPY, AWK): Variables removed.
3305         * Makefile (distribute): Remove extract-dynsym.
3306         * extract-dynsym: File removed.
3308 Tue May 21 22:17:45 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3310         * termios/cfmakeraw.c: Set MIN to 1 and TIME to 0.
3312 Wed May 22 01:48:54 1996  Ulrich Drepper  <drepper@cygnus.com>
3314         * stdlib/strtol.c [!QUAD] (ULONG_MAX, LONG_MAX): Define these
3315         macros if they are not available.
3316         (WEAKNAME): New macro to declare argument as weak.
3317         Define function with __ prefix and add normal name as weak alias.
3319         * sysdeps/posix/euidaccess.c (S_IROTH, S_IWOTH, S_IXOTH): Defines
3320         these macros if not already available based on R_OK, W_OK, and
3321         X_OK.
3323 Tue May 21 18:48:46 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3325         * misc/sys/syslog.h (__need___va_list): Define this instead of
3326         __need_va_list before including <stdarg.h>.
3328         * Makerules (o-iterator): Use $(object-suffixes-left) instead
3329         of $(object-suffixes) to produce repetitions; this is used for other
3330         lists than just that one.
3331         [versioned]: Use $(o-iterator) properly.
3333         * sysdeps/unix/sysv/linux/Implies: Include `gnu'.
3334         * sysdeps/mach/hurd/Implies: Likewise.
3336 Sat May 18 02:57:46 1996  Ulrich Drepper  <drepper@cygnus.com>
3338         * login/Makefile: New file.  This directory contains functions
3339         for user administration.
3340         * Makefile (subdirs): Add login.
3342         * misc/Makefile (headers): Remove utmp.h.  Now in login/utmp.h.
3343         (extra-libs, libutil-routines): Ditto.
3344         * misc/login.c, misc/login_tty.c, misc/logout.c, misc/logwtmp.c,
3345         misc/utmp.h: Moved to misc/.
3346         * login/login.c, login/login_tty.c, login/logout.c,
3347         login/logwtmp.c, login/utmp.h: Moved to here from misc/.
3349         * login/utmp.h: Split file.  Definitions of data structures
3350         and constants are now in the system dependent utmpbits.h file.
3352         * login/setutent_r.c, login/setutent.c, login/endutent_r.c,
3353         login/endutent.c, login/getutent_r.c, login/getutent.c,
3354         login/getutid_r.c, login/getutid.c, login/getutline_r.c,
3355         login/getutline.c, login/pututline_r.c, login/pututline.c:
3356         New files.  Routines to handle utmp-style files.
3358         * sysdeps/gnu/utmpbits.h: New file.  Contains GNU/Linux
3359         specific definitions of utmp data structures and constants.
3361         * sysdeps/unix/sysv/utmpbits.h: Renamed from sysdeps/unix/sysv/utmp.h.
3363         * sysdeps/generic/utmpbits.h: New file.  Generic (BSDish) version of
3364         definitions of utmp data structures and constants.
3366 Fri May 17 00:01:31 1996  Ulrich Drepper  <drepper@cygnus.com>
3368         * locale/C-monetary.c: Default value for mon_decimal_point should be
3369         '.'.
3371         * stdio-common/printf.h: Remove Linux libc compatibility stuff.
3372         Add `extra' flag.  Currently used in __printf_fp.
3374         * stdio-common/printf_fp.c (__guess_grouping): Renamed from
3375         `guess_grouping' and extend visibility to extern.  This function
3376         is now used in `strfmon'.
3377         (__printf_fp): Recognize new bit flag in info struct.  This
3378         triggers to use the grouping information and decimal point from
3379         the LC_MONETARY category instead of the LC_NUMERIC category.
3381         * stdio-common/vfprintf.c (process_arg): Correct major bug.  In
3382         `complicated' loop we must not use the varargs because the args
3383         are already available in the ARGS_VALUE array.
3385         * stdlib/Makefile (headers): Add monetary.h.
3386         (routines): Add strfmon.
3387         * stdlib/monetary.h: New file.  Header for strfmon function.
3388         * stdlib/strfmon.c: New file.  Implement strfmon function to print
3389         monetary amounts according to current locale's rules.
3391         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: The kernel header is
3392         now (>= Linux-1.3.100) called <asm/vm86.h>.
3394 Thu May 16 00:31:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3396         * Makerules [versioned]: Make symlinks in the build directory, because
3397         the versioned names might be referenced by a DT_NEEDED in another
3398         library.
3400 Wed May 15 18:59:38 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3402         * manual/examples/longopt.c: Include stdlib.h and getopt.h.
3404 Tue May 14 03:36:21 1996  Ulrich Drepper  <drepper@cygnus.com>
3406         * sysdeps/unix/sysv/linux/Makefile [$subdir == misc] (headers):
3407         Add sys/acct.h and sys/sysctl.h.
3409 Tue May 14 19:42:04 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3411         * sysdeps/generic/strrchr.c: Deansideclized.
3413         * elf/Makefile (ldd): Depend on Makefile.
3414         Find ld.so in $(slibdir) instead of $(libdir).
3416         * sysdeps/i386/strrchr.S: Use `testl $3, %esi' instead of `testb $3,
3417         %esi'; gas misassembles the latter into `testb $3, %dh'.
3419         * mach/Machrules (%.udeps rule): Do $(make-target-directory) first.
3421 Tue May 14 16:38:44 1996  David Mosberger-Tang <davidm@AZStarNet.com>
3423         * sunrpc/getrpcent.c (interpret): Declare args.  Rewrite parsing using
3424         strpbrk.
3426 Tue May 14 20:18:38 1996  Ulrich Drepper  <drepper@cygnus.com>
3428         * time/Makefile (routines): Add strptime.
3429         * time/time.h: Add prototype for strptime.
3430         * time/strptime.c: New file.  Implementation according to XPG4.
3432 Tue May 14 14:07:10 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3434         * libc-symbols.h (lint): Macro removed.  The sunrpc code does some
3435         really stupid things #ifdef lint.
3437         * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter): Fix
3438         struct member name: sc_eip -> eip.
3440 Mon May 13 19:52:33 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3442         * Makerules (stub-$(subdir)): Put cmds including cd inside (...) with
3443         output redirect outside it.
3445         * elf/Makefile (subdir_lib): Depend on ld.so.
3447 Sun May 12 22:52:22 1996  Bruce Elliott  <belliott@accessone.com>
3449         * stdio-common/vfprintf.c: Correct handling of unsigned short
3450         values.
3452 Mon May 13 12:03:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3454         * extra-lib.mk (alltype-$(lib)): Put libs in $(objpfx) instead of
3455         $(common-objpfx).
3456         * Makerules [install-lib.a]: Find them there.
3458         * sysdeps/unix/sysv/linux/i386/profil-counter.h: New file.
3460         * extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty.
3462         * posix/glob.h [_AMIGA]: Remove `struct stat;' forward decl.
3464         * configure.in (--with-fp): Note in help string that it's the default.
3466         * locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t
3467         instead of unsigned int for map_collection_max and map_collection_act.
3469         * stdio-common/vfprintf.c [USE_IN_LIBIO] (flockfile, funlockfile):
3470         Macros removed; they are in <stdio.h>.
3471         * stdio-common/vfscanf.c: Likewise.
3473         * posix/glob.c [_AMIGA]: Don't include <pwd.h>.
3474         (glob): Remove bogus & in call to globfree.
3475         [_AMIGA]: Use AmigaDOS file name conventions.
3477         * time/Makefile (zonenames): Target removed.
3478         (extra-objs): Remove it from here.
3479         Include the z.* files directly instead of including zonenames; use
3480         `-include' to not complain before they exist.
3482         * sysdeps/unix/Makefile: Find sysd-syscalls and s-proto.d with
3483         $(common-objpfx) instead of $(objpfx).
3485         * sysdeps/unix/bsd/telldir.c (seekdir, telldir): Use new struct member
3486         names without __.
3488         * Makerules [install-lib-non.a]: Find these things with $(objpfx)
3489         instead of $(common-objpfx).
3491         * Makeconfig (sysdep-configures): New variable.
3492         (config.status): Depend on $(sysdep-configures).
3494 Fri May 10 20:07:52 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3496         * sysdeps/unix/sysv/linux/profil.c: New file.
3498 Fri May 10 19:59:50 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3500         * sysdeps/m68k/Makefile (CFLAGS-setjmp.c): New variable.
3502 Fri May 10 19:55:42 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3504         * shlib-versions: Use libm=6 and libc=6 for m68k-linux.
3506 Sun May 12 11:16:58 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3508         * string/envz.c: Fix uses of unsigned to size_t.
3510         * Makerules ($(libdir)/libc.so): Make the file an ld script.
3512         * sysdeps/mach/hurd/configure.in: Don't grok --with-hurd option.
3514         * sysdeps/mach/configure.in: File removed.
3515         * sysdeps/mach/configure: File removed.
3517         * mach/Machrules (%.udeps rule): Write deps for %_server.[ch] too.
3518         (%_server.[ch] rule): Don't depend on %.defs; use #include to get
3519         installed .defs file.
3521         * stdio-common/vfprintf.c (flockfile, funlockfile): Define to
3522         nothing for stdio.  Fix fUNlockfile -> funlockfile for libio.
3523         * stdio-common/vfscanf.c: Likewise.
3525 Sat May 11 13:43:41 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3527         * hurd/hurdfault.c: Include faultexc_server.h instead of faultexc.h.
3529         * mach/Machrules (%.ir rule): Don't produce deps for imports.
3531         * elf/dl-fini.c (_dl_fini): Clear L->l_init_called after calling fn.
3533         * Makerules (install): Depend on $(slibdir)/libc.so$(libc.so-version).
3534         [!subdir] ($(libdir)/libc.so, $(common-objpfx)/libc-syms.so): Protect
3535         these targets and install dep on $(libdir)/libc.so with this.
3537         * hurd/Makefile: Removed all rules and defns for using code from Hurd
3538         sources and installing headers from there.
3540         * sysdeps/mach/hurd/errnos.awk: Set in_mach_errors to FILENAME when we
3541         set it.  In Mach error matching clause, only match if FILENAME is
3542         still the same value.
3544         * sysdeps/mach/hurd/Makefile: Don't include sysdeps/mach/Makefile;
3545         $(mach-srcdir) no longer exists.
3546         (hurd-srcdir): Variable removed.
3547         (includes): Don't append -I$(hurd-srcdir).
3548         (last-includes): Variable removed.
3549         Remove vpath specs using $(hurd-srcdir).
3550         (mach-errno-h): New canned sequence.
3551         ($(common-objpfx)errnos.d): New target, generated included makefile
3552         to determine absolute file names of Mach headers to search for error
3553         codes and set variable mach-errnos-deps.
3554         ($(common-objpfx)stamp-errnos): Depend on $(mach-errnos-deps) instead
3555         of prior explicit list.
3556         (generated): Add errnos.d, stamp-errnos.
3558         * mach/Machrules (some-if-rtn): New variable and target; compute deps
3559         of some if routine and make all if routines depend on that .d file
3560         instead of static list of .h files.
3562         * mach/Makefile (mach/mach_interface.defs,
3563         mach/memory_object_user.defs): Targets removed.
3564         ($(objpfx)mach-syscalls.mk): Tweak this kludge so it doesn't depend
3565         directly on Mach sources.
3567         * sysdeps/mach/Makefile (mach-srcdir): Variable removed.
3568         (includes): Don't append -I$(mach-srcdir).
3569         Remove vpath specs using $(mach-srcdir).
3571         * hurd/Makefile (server-interfaces): Add faultexc.
3572         (sig): Remove it from here.
3573         (fault%.[ch]): Rule removed.
3574         (MIGFLAGS-faultexc): New variable.
3576         * hurd/faultexc.defs: New file.
3578         * mach/Machrules (%.ustamp rule): Pass $(MIGFLAGS-$*) to mig.
3579         (%_server.[ch] rule): Likewise.
3581         * mach/Makefile: Removed all rules and defns for using code from Mach
3582         sources and installing headers from there.
3584         * Makeconfig [$(build-shared)=yes] (link-libc): Append
3585         $(libc.so-version) to libc.so.
3587 Fri May 10 18:36:14 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3589         * mach/Machrules (%.ustamp rule): Don't depend on %.defs.
3590         (%.udeps): New rule parallel to that one, generating included
3591         makefiles with -M output from `#include <%.defs>'.
3593         * Makerules (sed-remove-objpfx): Remove space before \ at eol.
3595         * Makefile (distribute): Add FAQ.
3596         * FAQ: New file contributed by drepper.
3598         * time/Makefile (headers): Add timebits.h.
3599         * sysdeps/unix/sysv/linux/timebits.h: New file.
3600         * sysdeps/stub/timebits.h: New file.
3601         * time/time.h (CLK_TCK): Define to CLOCKS_PER_SEC.
3602         (CLOCKS_PER_SEC): Remove this macro.  Instead #include <timebits.h>.
3604 Fri May 10 16:22:44 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
3606         * string/argz-create.c (__argz_create): Restore const keyword to
3607         ARGV parm.
3608         * string/argz.h (__argz_create, argz_create): Restore const
3609         keyword.
3610         * string/envz.c (envz_get): Don't declare ENTRY const.
3612 Fri May 10 11:48:03 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3614         * string/argz.h (argz_create): Fix param type.
3615         * string/argz-create.c (__argz_create): Remove const from param type.
3616         * string/envz.c (envz_get): Remove const from return type.
3618 Fri May 10 09:41:54 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
3620         * string/argz.h (__argz_create, argz_create): Omit const keyword
3621         from declaration of ARGV.
3622         * string/envz.h (envz_get): Omit const from declaration of return
3623         type.
3625 Thu May  9 09:17:46 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3627         * aclocal.m4 (AC_FD_MSG, AC_FD_CC): Fix these for autoconf weirdness.
3629         Cleanups in sunrpc code from NIIBE Yutaka <gniibe@mri.co.jp>.
3630         * sunrpc/clnt_tcp.c (clnttcp_create): Don't close *SOCKP if it's -1.
3631         * sunrpc/clnt_simp.c (callrpc): Don't close CRP->socket if it's
3632         RPC_ANYSOCK.
3633         * sunrpc/pmap_clnt.c (pmap_set): Don't close SOCKET, since
3634         CLNT_DESTROY already has.
3635         (pmap_unset): Likewise.
3636         * sunrpc/pm_getmaps.c (pmap_getmaps): Likewise.
3637         * sunrpc/pm_getport.c (pmap_getport): Likewise.
3638         * sunrpc/pmap_rmt.c (pmap_rmtcall): Likewise.
3639         * sunrpc/portmap.c (callit): Likewise.
3641         * Makerules (versioned): Strip whitespace.
3643         * Rules (static-only-routines rule): Remove spurious space in dep.
3645         * misc/getusershell.c: Undo changes of 7 May 96 (rev 1.6).
3646         Cast string constants to char *.
3648         * posix/glob/SMakefile, posix/glob/SCOPTIONS, posix/glob/Makefile.ami:
3649         New files, AmigaDOS support from Aaron Digulla.
3650         * posix/Makefile (glob.tar): Add AmigaDOS support files.
3652         * sysdeps/unix/sysv/linux/net/if.h: New file.
3653         * sysdeps/unix/sysv/linux/Dist: Add it.
3654         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=socket] (headers): Add
3655         net/if.h.
3657         * Makeconfig (link-libc): Add libc.a after libc.so in link.
3659         * Rules (static-only-routines rule): Use empty.o instead of dummy.o.
3660         (empty.o): New target.
3661         (generated): Add empty.c, empty.o.
3663         * resolv: Code updated from BIND-4.9.3P2C3.
3665         * Rules (static-only-routines rule): Use dummy.o, not dummy.so.
3667 Wed May  8 20:04:29 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3669         * extract-dynsym: New file.
3670         * Makefile (distribute): Add it.
3671         * Rules (subdir_install): Depend on $(common-objpfx)sor-$(subdir).
3672         [! libc.so-version]: Clear static-only-routines.
3673         ($(common-objpfx)sor-$(subdir)): New target.
3674         [static-only-routines]: New static pattern rule for these .so's.
3675         * Makerules [libc.so-version] ($(slibdir)/libc.so): Target removed.
3676         [libc.so-version] ($(libdir)/libc.so, $(common-objpfx)libc-syms.so):
3677         New targets replace it.
3678         (install) [libc.so-version]: Depend on $(libdir)/libc.so instead of
3679         $(slibdir)/libc.so.
3680         * io/Makefile (static-only-routines): New variable.
3681         * configure.in: Check for tools objdump and objcopy, and for awk.
3682         * config.make.in (OBJDUMP, OBJCOPY, AWK): New variables.
3684 Thu May  9 01:24:00 1996  Ulrich Drepper  <drepper@cygnus.com>
3686         * locale/programs/config.h: Remove definition of wint_t.
3688         * locale/programs/ld-collate.c: Include <wchar.h> instead of
3689         <wcstr.h>.
3691         * manual/time.texi: Add some more description for %U and %W
3692         format of strftime.  Describe new format %V of strftime.
3694         * resolv/gethnamaddr.c: Prevent warning by preventing variable
3695         definition.
3696         * stdio-common/_itoa.c: Ditto.
3698 Tue May  7 23:43:07 1996  Ulrich Drepper  <drepper@cygnus.com>
3700         * libio/clearerr.c, libio/feof.c, libio/ferror.c, libio/fgetc.c,
3701         libio/fileno.c, libio/fputc.c, libio/freopen.c, libio/fseek.c,
3702         libio/genops.c, libio/getc.c, libio/getchar.c, libio/iofclose.c,
3703         libio/iofflush.c, libio/iofgetpos.c, libio/iofgets.c,
3704         libio/iofputs.c, libio/iofread.c, libio/iofsetpos.c,
3705         libio/ioftell.c, libio/iofwrite.c, libio/iogetdelim.c,
3706         libio/iogets.c, libio/ioputs.c, libio/iosetbuffer.c,
3707         libio/iosetvbuf.c, libio/ioungetc.c, libio/iovsprintf.c,
3708         libio/libio.h, libio/putc.c, libio/putchar.c, libio/rewind.c,
3709         libio/stdio.h, stdio-common/printf_fp.c, stdio-common/vfprintf.c,
3710         stdio-common/vfscanf.c: Prepare for reentrant libio.
3712         * libio/clearerr_u.c, libio/feof_u.c, libio/ferror_u.c,
3713         libio/fputc_u.c, libio/getc_u.c, libio/getchar_u.c,
3714         libio/iofflush_u.c, libio/putc_u.c, libio/putchar_u.c: New files.
3715         Used in reentrant libio.
3717         * misc/getusershell.c: Prevent warnings.
3719 Wed May  8 12:08:35 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3721         * Makerules (install-lib.so rules): Undouble $s in target and dep
3722         parts of o-iterator-doit defns.
3723         (unversioned libraries install rule): Fix pattern.
3725         * mach/Makefile (mach-src-headers): Use $(base-machine) instead of
3726         $(config-machine).
3727         ($(includedir)/machine): Likewise.
3729         * config.make.in (base-machine): New variable.
3730         * configure.in (machine): Move case stmt to set $machine out of sysdep
3731         dirs AC_CACHE_CHECK.
3732         (base_machine): New variable, set in that switch and AC_SUBST'd.
3734         * Makerules (stub-$(subdir)): Use file name in directory as output,
3735         since cmd is cd'd.
3737         * configure.in (MSGFMT): Use : if none found.
3739         * po/Makefile: Include ../Rules instead of ../Makerules.
3741 Tue May  7 23:18:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3743         * po/Makefile: New file.
3744         * Makefile (subdirs): Add po.
3746         * configure.in: Check for msgfmt.
3747         * config.make.in (MSGFMT): New variable.
3749 Sun May  5 23:49:10 1996  Ulrich Drepper  <drepper@cygnus.com>
3751         * misc/Makefile (routines): Add swapoff.
3753         * sysdeps/unix/sysv/linux/Dist: Add sys/quota.h.
3755         * sysdeps/unix/sysv/linux/sys/quota.h: New file.  Wrapper around
3756         kernel header file.
3758 Tue May  7 19:00:01 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3760         * string/argz-extract.c: Remove const from decl.
3761         * string/argz.h: Here too.
3763         * Makeconfig (version.mk): Fix regexp in sed cmd.
3764         Depend on $(..)Makeconfig.
3766         * GMP code updated from gmp-2.0 release.
3767         * stdlib/Makefile (mpn-routines): Removed add_1, added inlines.
3768         * sysdeps/generic/add_1.c: File removed.
3769         * stdlib/strtod.c: mp_limb is now mp_limb_t.
3770         * stdlib/fpioconst.c, stdlib/fpioconst.h: Likewise.
3771         * stdio-common/_itoa.c: Likewise.
3772         * stdio-common/printf_fp.c: Likewise.
3773         Don't include ansidecl.h.
3775         * sysdeps/mach/hurd/getcwd.c: Use io_identity instead of io_stat.
3777         * shlib-versions: New file.
3778         * Makerules (soversions.mk): New target, include file generated from
3779         shlib-versions.  Moved shared library rules before installation rules.
3780         Rewrote shared library installation rules for versioned libraries.
3781         * math/Makefile (libm.so-version): Variable removed.
3783         * sysdeps/mach/hurd/i386/exc2signal.c: Use struct hurd_signal_detail.
3785         * hurd/report-wait.c (_S_msg_describe_ports): New function.
3787         * configure.in: Add AC_PROG_LN_S check.
3788         * config.make.in (LN_S): New variable.
3790 Sun May  5 03:10:44 1996  Ulrich Drepper  <drepper@cygnus.com>
3792         * misc/efgcvt_r.c (ecvt_r): Work aroung gcc bug.  gcc does
3793         not know about weak aliases now and optimizes necessary `if'
3794         statement away.
3796         * posix/unistd.h: Add swapoff prototype.
3798         * sysdeps/generic/confname.h: Add even more POSIX.4 symbols.
3800         * sysdeps/posix/fpathconf.c (__fpathconf): Get information
3801         for _PC_PATH_MAX from fstatfs function if available.
3803         * sysdeps/posix/sysconf.c: Add code to handle _SC_AIO_LISTIO_MAX,
3804         _SC_AIO_MAX, _SC_AIO_PRIO_DELTA_MAX, _SC_DELAYTIMER_MAX,
3805         _SC_MQ_OPEN_MAX, _SC_MQ_PRIO_MAX, _SC_RTSIG_MAX,
3806         _SC_SEM_NSEMS_MAX, _SC_SEM_VALUE_MAX, _SC_SIGQUEUE_MAX, and
3807         _SC_TIMER_MAX.
3808         * sysdeps/unix/sysv/sysv4/sysconf.c: Ditto.
3810         * sysdeps/stub/swapoff.c: New file.  Stub version for swapoff
3811         function.
3813         * sysdeps/unix/syscalls.list:  Add swapoff.
3815         * sysdeps/unix/sysv/linux/Dist: Add sys/acct.h.
3817         * sysdeps/unix/sysv/linux/Makefile [$(subdir) == misc]
3818         (sysdep_routines): Add mount, umount, llseek, setfsgid, setfsuid,
3819         sysinfo, and uselib.
3820         (headers): Add sys/sysinfo.h.
3822         * sysdeps/unix/sysv/linux/gethostid.c: Prevent warning.
3824         * sysdeps/unix/sysv/linux/i386/Makefile [$(subdir) == misc]
3825         (sysdep_routines): Add ioperm, iopl, and vm86.
3826         (headers): Add sys/perm.h and sys/vm86.h.
3828         * sysdeps/unix/sysv/linux/i386/sys/perm.h: New file.  Contains
3829         prototypes for iopl and ioperm.
3831         * sysdeps/unix/sysv/linux/i386/sys/vm86.h:  New file.  Contains
3832         prototype for vm86.
3834         * sysdeps/unix/sysv/linux/i386/syscalls.list: New file.  Add
3835         vm86 system call.
3837         * sysdeps/unix/sysv/linux/sys/acct.h: New file.  Contains
3838         prototypes for acct function.
3840         * sysdeps/unix/sysv/linux/sys/socket.h: Provide real header
3841         file with prototypes.
3843         * sysdeps/unix/sysv/linux/sys/sysinfo.h: New file.  Contains
3844         prototype for sysinfo function.
3846         * sysdeps/unix/sysv/linux/syscalls.list: Add flock, ioperm, iopl,
3847         llseek, setfsgid, setfsuid, sysinfo, and uselib.
3849         * sysdeps/unix/sysv/linux/sysconf.c: Instead of duplicating
3850         posix/sysconf.c now only handle cases different to that
3851         implementation.
3853 Tue May  7 15:08:19 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3855         * stdio/linewrap.c (__line_wrap_output): Renamed from lwoutput
3856         (all references changed).  Now exported.
3858         * stdio/linewrap.c (struct data): Type deleted (moved to linewrap.h).
3859         (wrap_stream, unwrap_stream, lwclose, lwfileno, lwoutput,
3860         line_wrap_stream, line_unwrap_stream): Use struct line_wrap_data
3861         instead of struct data.
3862         (lwoutput, line_wrap_stream, line_unwrap_stream): Rename various
3863         occurences of `wrap' and `wrapmargin' to `wmargin'.
3864         (line_wrapped, line_wrap_lmargin, line_wrap_set_lmargin,
3865         line_wrap_rmargin, line_wrap_set_rmargin, line_wrap_wmargin,
3866         line_wrap_set_wmargin, line_wrap_point): New functions.
3867         * stdio/linewrap.h: New file.
3868         * stdio/Makefile (headers): Add linewrap.h.
3870 Tue May  7 14:19:12 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3872         * sysdeps/unix/sysv/linux/i386/Makefile: File removed.
3874         * stdio/stdio.h: Remove line_wrap_stream, line_unwap_stream decls.
3876         * sysdeps/unix/sysv/linux/schedbits.h: New file.
3878 Tue May  7 13:47:02 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3880         * stdio/linewrap.c (struct data): Make margin fields not-pointers.
3881         (lwoutput): Adjust uses acordingly.
3883 Tue May  7 10:51:52 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3885         * sysdeps/mach/hurd/fdatasync.c: New file.
3886         * sysdeps/mach/hurd/fsync.c: Pass new flag to file_sync.
3888         * sysdeps/mach/hurd/xmknod.c: Pass new flag to dir_link.
3889         * sysdeps/mach/hurd/symlink.c: Likewise.
3890         * sysdeps/mach/hurd/link.c: Likewise.
3891         * sysdeps/mach/hurd/bind.c: Likewise.
3892         * hurd/hurdsig.c (write_corefile): Likewise.
3894         * hurd/hurdsig.c (write_corefile): Pass cttyid port to crash server.
3896         * sysdeps/mach/hurd/fpathconf.c: RPC takes int pointer, not long int.
3898         * sysdeps/mach/hurd/_exit.c (_hurd_exit): Pass sigcode arg to
3899         proc_mark_exit.
3900         * sysdeps/mach/hurd/dl-sysdep.c (_exit): Likewise.
3902         * sysdeps/mach/hurd/wait4.c: Pass sigcode arg to proc_wait.
3904         * sysdeps/mach/hurd/rename.c: Pass new flag to dir_rename.
3906         * hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise): Use struct
3907         hurd_signal_detail.
3908         * hurd/catch-exc.c (_S_catch_exception_raise): Likewise.
3909         * hurd/hurd-raise.c (_hurd_raise_signal): Likewise.
3910         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
3911         Likewise.
3912         * sysdeps/mach/hurd/setitimer.c (restart_itimer): Likewise.
3914         * hurd/hurd/signal.h: Fix _hurd_exception2signal prototype.
3916         * hurd/hurdsig.c (write_corefile): Take const struct
3917         hurd_signal_detail * arg.  Pass all details to crash_dump_task.
3918         (_hurd_internal_post_signal): Pass DETAIL to write_corefile.
3919         (_hurd_internal_post_signal: suspend): Pass code and error to
3920         proc_mark_stop.
3922         * hurd/hurdprio.c (_hurd_priority_which_map): Pass flags arg to
3923         proc_getprocinfo by reference.
3925         * wcsmbs/wcwidth.c, wcsmbs/wcswidth.c: Fixed typos.
3927         * sysdeps/unix/sysv/linux/sys/mman.h: Fixed typo.
3929         * sysdeps/stub/sched_getp.c: Add missing #include <sys/types.h>.
3930         * sysdeps/stub/sched_sets.c: Likewise.
3931         * sysdeps/stub/sched_setp.c: Likewise.
3932         * sysdeps/stub/sched_rr_gi.c: Likewise.
3933         * sysdeps/stub/sched_gets.c: Likewise.
3935         * hurd/hurdsig.c: Use struct hurd_signal_detail.
3936         * hurd/hurd/fd.h (_hurd_fd_error): Likewise.
3937         * sysdeps/mach/hurd/sysd-stdio.c (fd_fail): Likewise.
3939 Mon May  6 09:51:05 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3941         * stdio/linewrap.c: New file.
3942         * stdio/Makefile (routines): Add linewrap.
3943         * stdio/stdio.h [__USE_GNU]: Declare line_wrap_stream,
3944         line_unwrap_stream.
3946 Mon May  6 14:53:26 1996  Ulrich Drepper  <drepper@cygnus.com>
3948         * time/strftime.c (week): Add third parameter telling how
3949         many days must be in new year so that it is called week 1.
3950         (Following ISO 8601).
3951         Correct computation for %U and %V formats when day was first
3952         day of the week.
3953         (strftime): Implement %V format according to Spec1170.
3955 Mon May  6 17:01:09 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
3957         * hurd/hurd/signal.h (_hurd_intr_rpc_mach_msg): New declaration.
3959 Sat May  4 05:44:25 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3961         * hurd/hurd/sigpreempt.h (struct hurd_signal_preempter): Change
3962         prototype of `preempter' elt to use struct hurd_signal_detail.
3964         * hurd/hurd/signal.h (struct hurd_signal_detail): New type.
3965         (struct hurd_sigstate): Make `pending_data' member an array of that.
3966         Use the new type in several decls.
3968         * locale/setlocale.c (_nl_C_name): Variable removed.
3969         * locale/C_name.c: New file.
3970         (_nl_C_name): Put it here instead.
3971         * locale/Makefile (aux): Add C_name.
3973         * sysdeps/mach/hurd/dl-sysdep.c (open): Don't pass io port in
3974         auth_user_authenticate rpc.
3975         (open): Avoid using strtol in digit conversion for "fd/N" magic.
3976         (_dl_sysdep_start): Likewise for memobj name in magic switches.
3978         * elf/Makefile (reloc-link): New variable.
3979         (dl-allobjs.so): New target, link together $(rtld-routines).
3980         (librtld.so): Depend on that instead of the rtld components.
3981         (generated): Add dl-allobjs.so.
3983         * hurd/hurd-raise.c (_hurd_raise_signal): Pass sigcode in msg_sig_post
3984         rpc.
3986         * hurd/hurdmsg.c (_S_msg_set_environment): Use argz.h functions
3987         instead of _hurd_split_args.
3988         (_S_msg_*_exec_flags): Functions removed.
3989         (_S_msg_startup_dosync): Stub removed.
3991 Sat May  4 02:11:55 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3993         * sysdeps/mach/hurd/ptrace.c: Set _hurdsig_traced instead of
3994         EXEC_TRACED bit in _hurd_exec_flags.
3995         Pass sigcode arg in msg_sig_post_untraced rpc.
3997         * sysdeps/mach/hurd/access.c: Don't pass io port in
3998         auth_user_authenticate rpc.
4000         * posix/sched.h: Fix typos.
4002         * sysdeps/mach/hurd/fork.c: Use new critical section lock.
4003         Clear _hurdsig_traced instead of EXEC_TRACED.
4005         * sysdeps/stub/nanosleep.c (nanosleep): Fix typo.
4007         * wcsmbs/wcstol.c: Find strtol.c in ../stdlib.
4008         * wcsmbs/wcstof.c: Find strtod.c in ../stdlib.
4009         * wcsmbs/wcstod.c: Likewise.
4010         * wcsmbs/wcstold.c: Likewise.
4012         * wcsmbs/wcwidth.h: Find cname-lookup.h in ../wctype.
4014         * string/envz.c (envz_entry): Use const.
4015         (envz_get, envz_remove): Likewise.
4016         (envz_entry): Return char *, not const char *.
4018         * string/envz.h: Fix decl.
4020         * string/argz-create.c: Use const in prototype.
4021         * string/argz-next.c: Likewise.
4023 Fri May  3 13:32:08 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4025         * sysdeps/mach/hurd/sigprocmask.c: Pass sigcode arg to msg_sig_post.
4026         * sysdeps/mach/hurd/i386/sigreturn.c: Likewise.
4027         * sysdeps/mach/hurd/sigsuspend.c: Likewise.
4028         * sysdeps/mach/hurd/kill.c: Likewise.
4030         * hurd/hurdexec.c (_hurd_exec): Use new critical section lock.
4031         * hurd/catch-exc.c (_S_catch_exception_raise): Likewise.
4032         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Likewise.
4033         * hurd/thread-cancel.c (hurd_thread_cancel, hurd_check_cancel):
4034         Likewise.
4035         * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Likewise.
4036         * sysdeps/mach/hurd/sigaction.c: Likewise.
4038         * sysdeps/mach/hurd/errnos.awk: Don't use ARGV in comment; it can
4039         change meaninglessly.
4041         * hurd/hurd/signal.h (struct hurd_sigstate): Replace critical section
4042         flag with a spin lock.
4043         (_hurd_critical_section_lock): Use spin_try_lock on that to see if we
4044         get it.  No need to take SS->lock at all.
4045         (_hurd_critical_section_unlock): Unlock SS->critical_section_lock
4046         instead of clearing the old flag member.
4047         * hurd/hurdsig.c (_hurd_internal_post_signal): Use spin_lock_locked to
4048         test the critical section state.
4050         * hurd/hurdinit.c (_hurd_init): Set _hurdsig_traced from the intarray.
4052         * hurd/hurdkill.c (_hurd_sig_post): Pass 0 sigcode in msg_sig_post.
4054         * hurd/hurdsig.c (_hurd_internal_post_signal): Test _hurdsig_traced
4055         instead of testing (_hurd_exec_flags & EXEC_TRACED).
4056         (_S_msg_sig_post): Take sigcode arg and pass it through.
4057         (_S_msg_sig_post_untraced): Likewise.
4058         (reauth_proc): Don't pass proc port in auth_user_authenticate.
4060         * hurd/setauth.c (_hurd_setauth): Don't pass object ports in
4061         auth_user_authenticate RPCs, just the one-off rendezvous port.
4062         * hurd/dtable.c (reauth_dtable): Likewise.
4063         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Likewise.
4065         * hurd/hurdexec.c (_hurd_exec): Pass 0 flags to file_exec.
4066         Pass sigcode arg to msg_sig_post.
4068         * string/argz.h (argz_create): Use const in prototype.
4070         * hurd/hurdinit.c (_hurd_proc_init): Test _hurdsig_traced instead of
4071         testing (_hurd_exec_flags & EXEC_TRACED).
4072         Pass sigcode arg to msg_sig_post.
4074         * hurd/hurd.h: Declare _hurdsig_traced.
4076         * string/argz.h (__argz_next): Cast ENTRY before returning it.
4078         * hurd/hurd/signal.h (_hurd_critical_section_unlock): Pass sigcode arg
4079         to msg_sig_post.
4081         * hurd/path-lookup.c: New file.
4082         * hurd/Makefile (routines): Add path-lookup.
4083         * hurd/hurd/lookup.h: Declare file_name_path_scan,
4084         hurd_file_name_path_lookup.
4085         * hurd/hurd.h: Declare file_name_path_lookup.
4087         * sysdeps/mach/hurd/select.c: The io_select rpc no longer has a TAG_ID
4088         argument.  Instead, use a separate reply port for each RPC and put them
4089         all in a port set to wait for slow replies.
4091         * intl/Makefile (CPPFLAGS): Change $(nlsdir) to $(i18ndir) in
4092         LOCALE_ALIAS_PATH.
4094 Fri May  3 03:14:02 1996  Ulrich Drepper  <drepper@cygnus.com>
4096         * intl/Makefile (routines): Add l10nflist and explodename.
4097         (distribute): Add loadinfo.h and locale.alias.
4098         (install-others): New variable to install locale.alias.
4100         * intl/dcgettext.c, intl/finddomain.c, intl/gettextP.h,
4101         intl/loadmsgcat.c: Adapt for upcoming gettext-0.10.13.  Some code
4102         is now shared with the locale implementation.
4104         * intl/explodename.c, intl/l10nflist.c, intl/loadinfo.h: New file.
4105         Extracted from finddomain.c.  This is also used in the locale
4106         implementation.
4108         * intl/locale.alias: New file.  Locale alias database compatible
4109         with X Window System's locale alias file.  Can now be used in
4110         locale and gettext code.
4112         * libio/stdio.h: Add prototypes for asprint and vasprintf.
4114         * locale/C-collate.c, locale/C-ctype.c, locale/C-messages.c,
4115         locale/C-monetary.c, locale/C-numeric.c, locale/C-time.c: Add new
4116         field in structure with name of locale ("C" in this case).
4118         * locale/Makefile (routines): Add findlocale.
4120         * locale/findlocale.c: New file.  Instead of trying to load the
4121         directly described file we now try to be much smarter when this
4122         fails.  Use the same code as gettext does.
4124         * locale/loadlocale.c, locale/setlocale.c: Rewrite to know about
4125         new loading scheme.
4127         * locale/localeinfo.h: Adapt prototypes and declarations for new
4128         setlocale implementation.  Remove definition of u32_t type.  We
4129         now use u_int32_t from <sys/types.h>.
4131         * locale/programs/charset.h (ILLEGAL_CHAR_VALUE): Provide type
4132         with constant.
4134         * locale/programs/config.h, locale/lc-collate.c,
4135         locale/localeinfo.h, locale/programs/ld-collate.c,
4136         locale/programs/ld-ctype.c, locale/programs/ld-messages.c,
4137         locale/programs/ld-monetary.c, locale/programs/ld-numeric.c,
4138         locale/programs/ld-time.c, locale/weight.h, string/strcoll.c:
4139         Change to use u_int32_t and u_int16_t.
4141         * locale/programs/localedef.c (construct_output_path): Change name
4142         of output locale to contain normalized form of the character set
4143         portion.
4145         * string/Makefile (routines): Add agrz-ctsep and argz-next.
4146         (tests): Add tst-strlen.
4148         * string/argz-ctsep.c: New file.  Implement reverse operation
4149         from argz-stringify.
4151         * string/argz-next.c: Non-inline version of function from argz.h.
4153         * string/argz.h, string/envz.h: Make usable as global header file.
4155         * string/envz.c: Fix declarations to use size_t where prototypes
4156         say so.
4158         * string/tst-strlen.c: New file.  Another test for critical
4159         situation in strlen implementations.
4161         * sysdeps/i386/i586/strlen.S: Fix bug with highest byte in word
4162         being zero.
4164         * wctype/test_wctype.c: Fix controlling comparison after change to
4165         32 bit character class array.
4167 Fri May  3 12:53:12 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4169         * sysdeps/unix/sysv/linux/sys/socket.h: Remove spurious doubled line.
4171 Thu May  2 22:50:52 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4173         * sysdeps/unix/sysv/linux/getpriority.c: New file.
4174         * sysdeps/unix/sysv/linux/syscalls.list: Add s_getpriority.
4176 Thu May  2 22:41:31 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4178         * sysdeps/unix/sysv/linux/m68k/fpu_control.h (_FPU_DEFAULT):
4179         Disable all exceptions.
4181 Thu May  2 22:33:14 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4183         * sysdeps/m68k/fpu/e_acos.c, sysdeps/m68k/fpu/e_acosf.c,
4184         sysdeps/m68k/fpu/e_fmod.c, sysdeps/m68k/fpu/e_fmodf.c,
4185         sysdeps/m68k/fpu/isinfl.c, sysdeps/m68k/fpu/isnanl.c,
4186         sysdeps/m68k/fpu/s_atan.c, sysdeps/m68k/fpu/s_atanf.c,
4187         sysdeps/m68k/fpu/s_frexp.c, sysdeps/m68k/fpu/s_frexpf.c,
4188         sysdeps/m68k/fpu/s_ilogb.c, sysdeps/m68k/fpu/s_ilogbf.c,
4189         sysdeps/m68k/fpu/s_isinf.c, sysdeps/m68k/fpu/s_isinff.c,
4190         sysdeps/m68k/fpu/s_ldexp.c, sysdeps/m68k/fpu/s_ldexpf.c,
4191         sysdeps/m68k/fpu/s_modf.c, sysdeps/m68k/fpu/s_modff.c: Don't
4192         define __NO_MATH_INLINES, which is already defined on command
4193         line.
4195 Thu May  2 22:18:28 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4197         * sysdeps/libm-ieee754/e_j0f.c (__ieee754_j0f, __ieee754_y0f):
4198         Replace 0x80000000 by 0x48000000.
4199         * sysdeps/libm-ieee754/e_j1f.c (__ieee754_j1f): Likewise.
4201 Thu May  2 21:30:33 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4203         * sunrpc/svc_simple.c: Make global variable pl local to
4204         registerrpc.
4206 Thu May  2 00:24:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4208         * time/Makefile (tz-cflags): New variable.
4209         (CFLAGS-tzfile.c): New variable.
4210         (CFLAGS-zic.c): Add $(tz-cflags).
4211         (tz-cc): Remove variable.
4212         ($(objpfx)tzfile.o, $(objpfx)zic.o): Remove targets.
4214 Wed May  1 09:10:04 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4216         * sysdeps/mach/hurd/getcwd.c: Jump out of both loops when we find a
4217         name, instead of checking for reaching end of buffer, which happens
4218         when the match is the last entry in the buffer.
4220         * time/strftime.c: Use canonical autoconf nugget for time.h+sys/time.h
4221         include.
4223 Mon Apr 29 02:48:26 1996  Ulrich Drepper  <drepper@cygnus.com>
4225         * ctype/ctype-info.c: (__ctype_width): New variable.
4226         (__ctype_names): Initialize correctly without offset.
4228         * locale/C-collate.c, locale/C-ctype.c,
4229         locale/C-messages.c, locale/C-monetary.c,
4230         locale/C-numeric.c, locale/C-time.c: Change copyright.
4232         * locale/C-ctype.c (_nl_C_LC_CTYPE_class32): Correct
4233         endianess for initialization value.
4235         * locale/lc-ctype.c (current): Add parameter for offset.
4236         (__ctype32_b, __ctype_width): Add initialization for these
4237         variables.
4239         * locale/programs/charmap.c: Finish support for WIDTH information.
4240         (new_width): New function.
4242         * locale/programs/charset.h (width_rule): new data structure.
4243         (charset_t): Add elements for width information.
4245         * locale/programs/ld-ctype.c (locale_ctype_t): Add element
4246         for width information.
4247         (allocate_arrays): Add new argument for charset.
4248         (ctype_finish): Make sure all characters named in charset
4249         width table are known to name table.
4250         (ctype_output): Correct handling of class and map name
4251         information and write out width information.
4252         (find_idx): Prepare for being called with NULL pointer as
4253         TABLE argument.  This means only allocate name entry.
4254         (allocate_arrays): Correct handling of array element -1.
4255         Because EOF == -1 the value of element 127 must *not* be
4256         mirrored here.
4257         Fill width information from charset tables.
4259         * locale/programs/localedef.c (main): Correct loop over all
4260         categories after change of order from Thu Mar 28 14:22:51 1996.
4261         Add new charset argument to call of `write_all_categories'.
4263         * locale/programs/locales.h (ctype_finish, ctype_output): New
4264         charset argument.
4266         * locale/programs/locfile.c (write_all_categories): Call
4267         `ctype_output' with additional argument charset.
4269         * posix/getconf.c (vars): Add _POSIX_SYNC_IO, _POSIX_ASYNC_IO,
4270         and _POSIX_PRIO_IO definitions.
4272         * posix/posix2_lim.h: Add definition of _POSIX2_CHARCLASS_NAME_MAX
4273         and CHARCLASS_NAME_MAX.
4275         * posix/unistd.h: Document _POSIX_SYNC_IO, _POSIX_ASYNC_IO,
4276         and _POSIX_PRIO_IO.
4278         * stdlib/grouping.h: Prepare for use in wide string functions.
4280         * stdlib/stdlib.h: Correct prototypes for __strto*_internal
4281         functions.
4283         * stdlib/strtod.c: Extend for use as `wcsto{f,d,ld}'.
4285         * stdlib/strtol.c: Extend for use as `wcsto{l,ul,q,uq}'.
4287         * string/strcoll.c: Extend for use as `wcscoll'.
4289         * string/strxfrm.c: Extend for use as `wcsxfrm'.
4291         * sysdeps/generic/confname.h: Add definition of _PC_SYNC_IO,
4292         _PC_ASYNC_IO, _PC_PRIO_IO and _SC_CHARCLASS_NAME_MAX.
4294         * sysdeps/generic/stpncpy.c: Correct return value.
4296         * sysdeps/posix/fpathconf.c: Add handling of _PC_SYNC_IO,
4297         _PC_ASYNC_IO, and _PC_PRIO_IO.
4299         * sysdeps/posix/sysconf.c: Add handling of _SC_REALTIME_SIGNALS,
4300         _SC_PRIORITY_SCHEDULING, _SC_TIMERS, _SC_ASYNCHRONOUS_IO,
4301         _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO, _SC_FSYNC,
4302         _SC_MAPPED_FILES, _SC_MEMLOCK, _SC_MEMLOCK_RANGE,
4303         _SC_MEMORY_PROTECTION, _SC_MESSAGE_PASSING, _SC_SEMAPHORES,
4304         _SC_SHARED_MEMORY_OBJECTS, and _SC_CHARCLASS_NAME_MAX.
4305         * sysdeps/stub/sysconf.c: Ditto.
4306         * sysdeps/unix/sysv/sysv4/sysconf.c: Ditto.
4308         * sysdeps/unix/sysv/linux/Dist: Add sys/sysctl.h.
4310         * sysdeps/unix/sysv/linux/Makefile [subdir == misc]
4311         (sysdep_routines): Add s_sysctl and sysctl.
4313         * sysdeps/unix/sysv/linux/sys/mman.h: Add declaration of mremap.
4315         * sysdeps/unix/sysv/linux/sys/socket.h: New file.  Wrapper
4316         around kernel header.
4318         * sysdeps/unix/sysv/linux/sys/sysctl.h: New file.  Define
4319         interface to `sysctl' function.
4321         * sysdeps/unix/sysv/linux/syscalls.list: Add mremap and _sysctl.
4323         * sysdeps/unix/sysv/linux/sysconf.c: Add handling of
4324         _SC_CHARCLASS_NAME_MAX.
4326         * sysdeps/unix/sysv/linux/sysctl.c: new file.  Implement caller
4327         of _sysctl system call.
4329         * sysvipc/Makefile (routines): Add ftok.
4331         * sysvipc/ftok.c: use variable `proj_id' not `id'.  Patch by
4332         David Mosberger-Tang.
4334         * wcsmbs/Makefile (routines): Add wcpcpy, wcpncpy, wcstol,
4335         wcstoul, wcstoq, wcstouq, wcstod, wcstold, wcstof, wcscoll,
4336         wcsxfrm, wcwidth, and wcswidth.
4338         * wcsmbs/wchar.h: Add declarations for wcpcpy, wcpncpy, wcstol,
4339         wcstoul, wcstoq, wcstouq, wcstod, wcstold, wcstof, wcscoll,
4340         wcsxfrm, wcwidth, and wcswidth.
4341         Declare internal interfaces for wcsto* functions.
4342         [OPTIMIZE]: Define inline functions for wcsto* functions to
4343         call internal interface functions.
4345         * wcsmbs/wcpcpy.c, wcsmbs/wcpncpy.c: New files.  Implement non-
4346         standard function equivalent to stpcpy/stpncpy.
4348         * wcsmbs/wcscoll.c: Implement `wcscoll' function by using
4349         `strcoll' implementation.
4351         * wcsmbs/wcscpy.c, wcsmbs/wcsncpy.c: Use wint_t instead of
4352         wchar_t.
4354         * wcsmbs/wcstod.c: Implement `wcstod' function by using `strtod'
4355         implementation.
4356         * wcsmbs/wcstof.c: Same for `wcstof'.
4357         * wcsmbs/wcstold.c: Same for `strtold'.
4359         * wcsmbs/wcstol.c: Implement `wcstol' function by using `strtol'
4360         implementation.
4361         * wcsmbs/wcstoq.c: Same for `wcstoq'.
4362         * wcsmbs/wcstoul.c: Same for `wcstoul'.
4363         * wcsmbs/wcstouq.c: Same for `wcstouq'.
4365         * wcsmbs/wcswidth.c: Implement `wcswidth' function from X/Open
4366         CAE.
4367         * wcsmbs/wcwidth.c: Ditto for `wcwidth'.
4368         * wcsmbs/wcwidth.h: Common function for definitions of above two
4369         functions.
4371         * wcsmbs/wcsxfrm.c: Implement `wcsxfrm function by using
4372         `strxfrm implementation.
4374         * wctype/wctype.c: Remove case for `wctype_t' being 16 bit type.
4376         * wctype/wctype.h (wint_t): Protect against multiple definition.
4377         (wctype_t): Always define as `unsigned long int'.
4379         * wctype.h: New file.  Wrapper around wctype/wctype.h.
4381 Tue Apr 30 17:30:46 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4383         * hurd/hurdsig.c (_hurdsig_abort_rpcs): Add timeout argument to
4384         interrupt_operation call.
4385         (_hurdsig_interrupt_timeout): New variable.
4387         * hurd/report-wait.c (describe_number): Correctly allocate space
4388         in DESCRIPTION for the digits in I.
4390 Mon Apr 29 00:11:59 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4392         * hurd/hurdstartup.c (_hurd_split_args): Function removed.
4393         (_hurd_startup): Use argz functions.
4395         * hurd/hurdexec.c: Use argz functions.
4397         * errno.h [!__error_t_defined] (error_t): New type.
4398         * sysdeps/mach/hurd/errnos.awk: #define __error_t_defined after the
4399         typedef in errnos.h.
4401         * string/envz.c, string/envz.h: New files.
4402         * string/argz.h, string/argz-append.c, string/argz-count.c,
4403         string/argz-create.c, string/argz-delete.c, string/argz-extract.c,
4404         string/argz-insert.c, string/argz-stringify.c: New files.
4405         * string/Makefile (routines): Add envz, argz-*.
4406         (headers): Add argz.h, envz.h.
4408 Sun Apr 28 14:14:35 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4410         * sysdeps/unix/sysv/linux/i386/Makefile: New file.
4412 Wed Apr 24 17:35:30  Ulrich Drepper  <drepper@cygnus.com>
4414         * inet/netinet/in.h, socket/sys/socket.h: Move to
4415         sysdeps/generic/netinet/in.h, sysdeps/generic/sys/socket.h.
4416         * netinet/in.h, sys/socket.h: Remove file.
4418         * misc/Makefile (routines): Add fdatasync.
4420         * posix/Makefile (headers): Add sched.h.
4421         (routines): Add nanosleep, sched_setp, sched_getp, sched_sets,
4422         sched_gets, sched_yield, sched_primax, sched_primin, sched_rr_gi.
4424         * posix/getconf.c (vars): Add entries for _POSIX_REALTIME_SIGNALS,
4425         _POSIX_PRIORITY_SCHEDULING, _POSIX_TIMERS, _POSIX_ASYNCHRONOUS_IO,
4426         _POSIX_PRIORITIZED_IO, _POSIX_SYNCHRONIZED_IO, _POSIX_FSYNC,
4427         _POSIX_MAPPED_FILES, _POSIX_MEMLOCK, _POSIX_MEMLOCK_RANGE,
4428         _POSIX_MEMORY_PROTECTION, _POSIX_MESSAGE_PASSING,
4429         _POSIX_SEMAPHORES, _POSIX_SHARED_MEMORY_OBJECTS.
4431         * posix/sched.h: New file.  Header for POSIX scheduling interface.
4433         * posix/unistd.h: Describe options from POSIX.4.
4434         Add declaration of fdatasync.
4436         * sysdeps/generic/confname.h: Add definition for
4437          _SC_REALTIME_SIGNALS, _SC_PRIORITY_SCHEDULING, _SC_TIMERS,
4438         _SC_ASYNCHRONOUS_IO, _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO,
4439         _SC_FSYNC, _SC_MAPPED_FILES, _SC_MEMLOCK, _SC_MEMLOCK_RANGE,
4440         _SC_MEMORY_PROTECTION, _SC_MESSAGE_PASSING,
4441         _SC_SEMAPHORES, _SC_SHARED_MEMORY_OBJECTS.
4443         * sysdeps/generic/fdatasync.c: New file.  Default implementation
4444         simply uses fsync.
4446         * sysdeps/generic/netinit/in.h: Moved to here from inet/netinet/in.h.
4448         * sysdeps/generic/schedbits.h: New file.  System dependent
4449         defintion for POSIX.4 scheduling interface.
4451         * sysdeps/generic/sys/socket.h: Moved to here from socket/sys/socket.h.
4453         * sysdeps/stub/nanosleep.c, sysdeps/stub/sched_getp.c,
4454         sysdeps/stub/sched_gets.c, sysdeps/stub/sched_primax.c,
4455         sysdeps/stub/sched_primin.c, sysdeps/stub/sched_rr_gi.c,
4456         sysdeps/stub/sched_setp.c, sysdeps/stub/sched_sets.c,
4457         sysdeps/stub/sched_yield.c: New file:  Stub implementation
4458         for systems missing these POSIX.4 system calls.
4460         * sysdeps/unix/sysv/linux/gnu/types.h,
4461         sysdeps/unix/sysv/linux/ioctls.h: Use kernel header for
4462         data type definitions.
4464         * sysdeps/unix/sysv/linux/netinet/in.h: New file.  Linux
4465         specific version.
4467         * sysdeps/unix/sysv/linux/posix_opt.h: New file.  Define POSIX
4468         options applicable for Linux.
4470         * sysdeps/unix/sysv/linux/syscalls.list: Add definitions for
4471         fdatasync, nanosleep, sched_setparam, sched_getparam,
4472         sched_setscheduler, sched_getscheduler, sched_yield,
4473         sched_get_priority_max, sched_get_priority_min, and
4474         sched_rr_get_interval.
4476         * sysdeps/unix/sysv/linux/sysconf.c: Add handling of POSIX.4
4477         options.
4479         * sysdeps/unix/sysv/linux/termbits.h: Use kernel headers.
4481         * time/sys/time.h: Remove definition of `struct timespec'.
4483         * time/time.h (struct timespec): Move definition to here.
4485 Fri Apr 26 01:55:07 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4487         * malloc/mcheck.c (mabort): Use __libc_fatal only #ifdef _LIBC.
4489 Thu Apr 25 15:49:57 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4491         * sysdeps/mach/hurd/getcwd.c (__getcwd): When we find a match in
4492         the scan for a name, avoid doing another readdir (which overwrites
4493         NENTRIES, and was resulting in a bogus ENOENT).
4495         * sysdeps/mach/hurd/fcntl.c (__fcntl): Add missing break after F_SETFL.
4497 Wed Apr 24 00:22:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4499         * stdio/internals.c (seek_to_target): Set errno if seek function
4500         returns the wrong offset.
4502         * wcsmbs/wcsrtombs.c [! EILSEQ] (EILSEQ): Define to EINVAL.
4503         * wcsmbs/wcrtomb.c: Likewise.
4505         * stdio-common/vfprintf.c: Include errno.h.
4507 Tue Apr 23 21:09:14 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4509         * hurd/hurdsig.c (signal_allowed): For SIGIO/SIGURG, add a new
4510         variable, LUCKY, to use instead of setting D to -1 (which fouls
4511         things up).
4513 Tue Apr 23 15:56:56 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4515         * config.h.in (HAVE_REGEX): New macro.
4517         * sysdeps/unix/syscalls.list: Add statfs, fstatfs.
4518         * io/Makefile (headers): Add sys/statfs.h, statfsbuf.h.
4519         (routines): Add statfs, fstatfs.
4520         * sysdeps/mach/hurd/statfs.c: New file.
4521         * sysdeps/mach/hurd/fstatfs.c: New file.
4522         * sysdeps/stub/fstatfs.c: New file.
4523         * sysdeps/stub/statfs.c: New file.
4524         * io/sys/statfs.h: New file.
4525         * sysdeps/generic/statfsbuf.h: New file.
4526         * sysdeps/unix/sysv/linux/statfsbuf.h: New file.
4528 Tue Apr 23 00:06:47 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4530         * malloc/Makefile (gmalloc-routines): Add valloc back here.
4531         (dist-routines): Remove it here.
4532         * malloc/valloc.c [_MALLOC_INTERNAL && GMALLOC_INHIBIT_VALLOC]
4533         (ELIDE_VALLOC): Define it.
4534         [! ELIDE_VALLOC]: Make whole file conditional on this.
4535         * malloc/malloc.h (valloc): Make decl conditional on
4536         [!GMALLOC_INHIBIT_VALLOC] instead of [!emacs].
4538 Mon Apr 22 00:02:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4540         * MakeTAGS: Include version.mk.
4541         (po/SYS_libc.pot): Add missing / in sed s cmd.
4543 Sat Apr 20 18:13:00 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4545         * Makerules (no-whole-archive): Test $(have-no-whole-archive), not
4546         $(libc_cv_ld_no_whole_archive).
4548 Sat Apr 20 17:07:17 1996  Ulrich Drepper  <drepper@cygnus.com>
4550         * assert/assert.h, ctype/ctype.h, dirent/dirent.h, errno.h,
4551         grp/grp.h, io/fcntl.h, io/sys/stat.h, io/utime.h, locale/locale.h,
4552         math/math.h, misc/nlist.h, misc/sgtty.h, misc/sys/file.h,
4553         misc/sys/ioctl.h, misc/sys/uio.h, posix/sys/times.h,
4554         posix/sys/types.h, posix/sys/utsname.h, posix/sys/wait.h,
4555         posix/tar.h, posix/wordexp.h, pwd/pwd.h, resource/sys/vlimit.h,
4556         resource/sys/vtimes.h, setjmp/setjmp.h, signal/signal.h,
4557         stdio-common/printf.h, stdlib/alloca.h, stdlib/stdlib.h,
4558         string/string.h, sysdeps/generic/sigaction.h,
4559         sysdeps/generic/sigset.h, sysdeps/generic/sys/ptrace.h,
4560         sysdeps/generic/sys/ptrace.h, sysdeps/unix/bsd/osf/sigaction.h,
4561         sysdeps/unix/sysv/linux/sys/ptrace.h,
4562         sysdeps/unix/sysv/minix/sigaction.h,
4563         sysdeps/unix/sysv/sco3.2.4/sigaction.h,
4564         sysdeps/unix/sysv/sysv4/sigaction.h,
4565         sysdeps/unix/sysv/sysv4/sigset.h, termios/termios.h,
4566         time/sys/time.h, time/time.h: Fix copyright comment.
4568 Fri Apr 19 00:49:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4570         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): If uids and gids are
4571         not given in stack aux vector, fetch them with syscalls.
4573         * stdlib/rpmatch.c (rpmatch: try): Take new arg NOMATCH, return value
4574         for nonmatching nonerror (instead of !MATCH).
4575         (rpmatch): Use it, so we return -1 when NOEXPR doesn't match either.
4577         * resolv/getnetnamadr.c (getnetbyaddr): Use u_int32_t instead of
4578         unsigned long for variable NET2.
4580         * time/etcetera, time/europe, time/solar89: Updated from ADO's 96e.
4582 Tue Apr  9 14:37:31 1996  Ulrich Drepper  <drepper@cygnus.com>
4584         * catgets/Makefile, catgets/catgets.c, catgets/catgetsinfo.h,
4585         catgets/config.h, catgets/gencat.c, catgets/nl_types.h,
4586         catgets/open_catalog.c: New files.  Implementation of XPG4
4587         compliant catgets() function and needed tools.
4588         * Makefile (subdirs): Add catgets.
4590 Thu Apr 18 23:36:11 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4592         * math/Makefile (CPPFLAGS): Append -D__NO_MATH_INLINES.
4594 Wed Apr 10 20:48:43 1996  Ulrich Drepper  <drepper@cygnus.com>
4596         * stdio-common/vfprintf.c: Correct some typos.
4598         * sysdeps/libm-ieee754/w_gammaf.c, sysdeps/libm-ieee754/w_lgamma.c,
4599         sysdeps/libm-ieee754/w_lgammaf.c: Reference signgam instead of
4600         __signgam.
4602 Thu Apr 18 21:07:27 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
4604         * Makerules (no-whole-archive): New variable.
4605         (build-shlib): Use it.
4606         * elf/Makefile (libdl.so): Use it.
4607         * configure.in (libc_cv_ld_no_whole_archive): New check for
4608         --no-whole-archive.
4609         * config.make.in (have-no-whole-archive): New variable.
4611         * stdio-common/printf_fp.c: Increase fudge factor for BIGNUM_SIZE calc
4612         from 3 to 4.
4614         * Make-dist: Include version.mk.
4615         (version, release): Variables removed.
4616         * Makeconfig (version.mk): New target.
4618 Fri Apr 19 01:42:18 1996  Ulrich Drepper  <drepper@cygnus.com>
4620         * locale/Makefile (headers): Add langinfo.h.
4621         (CPPFLAGS): Remove -Iliblib.
4623 Mon Apr 15 16:49:04 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4625         * malloc/memalign.c, malloc/malloc.h [__DJGPP__ == 1]: Elide memalign
4626         function and its declaration.
4628 Wed Apr 10 14:13:45 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4630         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Store
4631         MACH_PORT_DEAD in the thread reply-port variable before destroying
4632         the signal handler's reply port, to avoid infinite recursion.
4634 Mon Apr  8 18:27:17 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4636         * sysdeps/mach/gettimeofday.c (__gettimeofday): Don't fail if the
4637         user passes in TZ, just zero it (emacs passes in a dummy variable,
4638         and rms says the hurd should be the one to change).
4640 Sun Apr  7 10:37:30 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4642         * sysdeps/mach/hurd/fork.c: Don't leak send rights to the child's proc
4643         port in the parent.
4645 Fri Apr  5 17:43:41 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4647         * sysdeps/mach/hurd/i386/sigreturn.c (__sigreturn): Store
4648         MACH_PORT_DEAD in the thread reply-port variable before destroying
4649         the signal handler's reply port to avoid infinite recursion.
4650         * sysdeps/mach/hurd/mig-reply.c (__mig_dealloc_reply_port): Only
4651         attempt to destroy PORT if it's a valid port name.
4653 Wed Apr  3 17:10:44 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4655         * extra-lib.mk: Put libs in $(common-objpfx) instead of $(objpfx).
4656         * Makerules ($(install-lib) rules): Find libs with $(common-objpfx)
4657         instead of $(objpfx).
4659 Tue Apr  2 21:27:01 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4661         * posix/glob.c (glob_pattern_p): Avoid scanning past eos if
4662         the pattern ends with a backslash and quoting is enabled.
4663         * posix/fnmatch.c (fnmatch): Likewise; return FNM_NOMATCH for such
4664         patterns.
4666 Mon Apr  1 13:34:55 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4668         * stdio-common/tst-printf.c (main): Add new test case.
4670         * sysdeps/generic/setenv.c (unsetenv): Use old-style definition.
4672 Mon Apr  1 11:39:10  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
4674         * stdlib/strtod.c (STRTOD): Fix handling of American style FP
4675         numbers.
4677         * stdio-common/vfprintf.c (vfprintf): Don't increment format
4678         string pointer twice after seeing `*'.
4680 Sun Mar 31 17:31:54 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4682         * MakeTAGS (po/SYS_libc.pot): Prepend header processed from
4683         po/header.pot.
4685 Sun Mar 31 18:07:32 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
4687         * locale/Makefile (others, install-bin): Compiling locale works
4688         again.
4689         (locale-modules): locale has no --dump option anymore.  Remove
4690         ctypedump.
4692         * locale/programs/config.h: Don't declare euidaccess.
4693         Use #include_next to get libc's config.h.
4695         * locale/programs/ctypedump.c: Not needed anymore.  Dump option
4696         of locale is removed.
4698         * locale/programs/locale.c: Adapt for new locale implementation.
4700         * stdio-common/_itoa.h (_itoa_word): Define as inline function.
4701         * stdio-common/_itoa.c (_itoa_lower_digits, _itoa_upper_digits):
4702         Don't declare static because used in _itoa_word inline function.
4704         * stdio-common/printf-parse.h: Prepare for use in wide-char
4705         stdio implementation.
4706         (find_spec): Take additional argument to work with mbrlen instead
4707         of mblen.
4708         (parse_one_spec): Ditto.
4710         * stdio-common/printf-prs.c: Prepare for use in wide-char
4711         stdio implementation.
4713         * stdio-common/printf.h: Mark change for wide-char handling.
4714         Changing it now would result in incompatibilities.
4716         * stdio-common/vfprintf.c: New and fast implementation.
4718         * wcsmbs/Makefile (routines): Remove pre-ISO C multibyte functions
4719         mbsadvance, mbscat, mbschr, mbscmp, mbscpy, mbsdup, mbslen,
4720         mbsncat, mbsncmp, mbsncpy, mbsrchr, mbstomb.
4721         Change wcswcs to wcsstr.
4722         Add wmemchr, wmemcmp, wmemcpy, wmemmove, wmemset, btowc, wctob,
4723         mbsinit, mbrlen, mbrtowc, wcrtomb, mbsrtowcs, wcsrtombs.
4725         * wcsmbs/btowc.c, wcsmbs/mbrlen.c, wcsmbs/mbrtowc.c,
4726         wcsmbs/mbsinit.c, wcsmbs/mbsrtowcs.c, wcsmbs/wchar.h,
4727         wcsmbs/wcrtomb.c, wcsmbs/wcsrtombs.c, wcsmbs/wcsstr.c,
4728         wcsmbs/wctob.c, wcsmbs/wmemchr.c, wcsmbs/wmemcmp.c,
4729         wcsmbs/wmemcpy.c, wcsmbs/wmemmove.c, wcsmbs/wmemset.c: New
4730         function according to ISO C amendment 1.
4731         * wchar.h: Wrapper around "wcsmbs/wchar.h".
4733         * wcsmbs/wcscat.c, wcsmbs/wcschr.c, wcsmbs/wcscmp.c,
4734         wcsmbs/wcscpy.c, wcsmbs/wcscspn.c, wcsmbs/wcsdup.c,
4735         wcsmbs/wcslen.c, wcsmbs/wcsncat.c, wcsmbs/wcsncmp.c,
4736         wcsmbs/wcsncpy.c, wcsmbs/wcspbrk.c, wcsmbs/wcsrchr.c,
4737         wcsmbs/wcsspn.c, wcsmbs/wcstok.c: Changed to conform with ISO C
4738         amendment 1.
4740         * wcsmbs/mbsadvance.c, wcsmbs/mbscat.c, wcsmbs/mbschr.c,
4741         wcsmbs/mbscmp.c, wcsmbs/mbscpy.c, wcsmbs/mbsdup.c,
4742         wcsmbs/mbslen.c, wcsmbs/mbsncat.c, wcsmbs/mbsncmp.c,
4743         wcsmbs/mbsncpy.c, wcsmbs/mbsrchr.c, wcsmbs/mbstomb.c,
4744         wcsmbs/mbstr.h, wcsmbs/wcstr.h, wcsmbs/wcswcs.c: Removed.
4745         Implement functions from early drafts, not part of final standard.
4747 Sun Mar 31 16:50:41 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4749         * setjmp/setjmp.h (jmp_buf): Change gratuitous struct tag name to
4750         __jmp_bug_tag so its C++ implicit typedef does not conflict with the
4751         __jmp_buf typedef.
4753         * Makerules (BUILD_CFLAGS) [! objdir]: Use $(..)config.h when
4754         compiling in the source directories.
4756 Fri Mar 29 16:26:35 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4758         * sysdeps/libm-ieee754/w_gamma.c: Use signgam instead of __signgam.
4759         * sysdeps/libm-ieee754/s_signgam.c: Undo last change.
4761 Fri Mar 29 11:29:46 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4763         * sysdeps/libm-ieee754/s_signgam.c (signgam): Renamed to __signgam,
4764         with weak alias signgam.
4766 Thu Mar 28 18:32:34 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4768         * Makeconfig (+cflags, +gcc-nowarn): Use gcc flags unconditionally.
4770 Thu Mar 28 14:22:51 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4772         * sunrpc/rpc_main.c (main): Call textdomain.
4774         * MakeTAGS (XGETTEXTFLAGS-siglist.pot, XGETTEXTFLAGS-errlist.pot): Add
4775         --no-location.
4776         (all-pot): Replace $(subdirs) files with $P/subdirs.pot.
4777         ($P/subdirs.pot): New target.
4778         ($P/SYS_libc.pot): Add -n switch.
4780         * locale/locale.h (LC_*): Values reordered to match Linux libc.
4782         * sysdeps/mach/hurd/kill.c: If proc_pid2task gives us MACH_PORT_NULL
4783         the process is a zombie; send no messages and return success.
4785 Thu Mar 28 11:53:26 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4787         * wctype/cname-lookup.h: Find localeinfo.h in ../locale.
4788         * wctype/wctype.c: Likewise.
4789         * wctype/wctrans.c: Likewise.
4791 Thu Mar 28 03:00:43 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
4793         * locale/nl_langinfo.c (nl_langinfo): Use DATA->values instead of
4794         DATA->strings.
4796         * Makerules (BUILD_CFLAGS): Remove $(common-objpfx) from config.h.
4798         * configure.in (.weakext check): Fix asm code to use .weakext instead
4799         of .weak!  Fix bogus test calls.
4800         * configure: Regenerated.
4802 Thu Mar 28 03:25:10 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4804         * locale/programs/xmalloc.c: Test _LIBC as well as STDC_HEADERS.
4806         * locale/programs/ld-collate.c (collate_finish): Use error_at_line
4807         instead of error_with_loc.
4809         * locale/weight.h: Use u_int32_t instead of u32_t.
4810         * string/strxfrm.c: Likewise.
4812         * string/strxfrm.c: Find weight.h in ../locale; don't #include
4813         "localeinfo.h".
4814         * string/strcoll.c: Likewise.
4816         * intl/Makefile (copysrc): Add missing > in sed cmd.
4818 Sat Mar 23 17:52:49 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
4820         * Makeconfig: Rename Makefile variable nlsdir to i18ndir and
4821         change value to $(datadir)/i18n.  `nls' is not an appropriate
4822         name.
4824         * Makefile (subdirs): Add new subdir wctype.
4826         * ctype/ctype-info.c: Add new global variable __ctype_names
4827         and initialize from _nl_C_LC_CTYPE.
4829         * ctype/ctype.h: In P1003.3b/D11 `alnum' is a separate character
4830         class.  Use bit 11.
4831         [_ISbit]: Protect definition of bitmasks because they are also
4832         used in wctype.h.
4834         * libio/genops.c (_IO_sputbackc, _IO_sungetc): Clear EOF flag
4835         after successfully pushing back a character.
4837         Fundamental changes in locale implementation.  Almost nothing
4838         from the old code is used anymore.
4839         * locale/charmap.c, locale/collate.c, locale/config.h,
4840         locale/ctypedump.c, locale/hash.h, locale/keyword.gperf,
4841         locale/keyword.h, locale/loadlocale.c, locale/locale-ctype.c,
4842         locale/locale.c locale/localeconv.c, locale/localedef.c,
4843         locale/localedef.h, locale/locfile-hash.c, locale/locfile-lex.c,
4844         locale/locfile-parse.c, locale/messages.c, locale/monetary.c,
4845         locale/numeric.c, locale/setlocale.c, locale/token.h,
4846         locale/xmalloc.c: Removed.
4848         * locale/Makefile: Update for new locale implementation with
4849         program source code distributed in subdir.
4851         * locale/categories.def, locale/iso-4217.def: Updated file
4852         for new locale implementation.
4854         * locale/langinfo.h: Updated for new locale implementation.
4855         (ERA_D_T_FMT, ERA_T_FMT): New official values according to
4856         P1003.2b/D11.
4857         (_NL_COLLATE_NRULES, _NL_COLLATE_RULES, _NL_COLLATE_HASH_SIZE,
4858         _NL_COLLATE_HASH_LAYERS, _NL_COLLATE_TABLE_EB,
4859         _NL_COLLATE_TABLE_EL, _NL_COLLATE_UNDEFINED, _NL_COLLATE_EXTRA_EB,
4860         _NL_COLLATE_EXTRA_EL, _NL_CTYPE_NAMES_EB, _NL_CTYPE_NAMES_EL,
4861         _NL_CTYPE_HASH_SIZE, _NL_CTYPE_HASH_LAYERS, _NL_CTYPE_CLASS_NAMES,
4862         _NL_CTYPE_MAP_NAMES, _NL_CTYPE_WIDTH): New internal values for
4863         extended LC_CTYPE and LC_COLLATE implementation.
4865         * locale/programs/simple-hash.c, locale/programs/simple-hash.h,
4866         locale/programs/xmalloc.c, locale/programs/xstrdup.c: Helper functions
4867         for locale related programs.
4869         * locale/C-collate.c, locale/C-ctype.c,
4870         locale/C-messages.c, locale/C-monetary.c,
4871         locale/C-numeric.c, locale/C-time.c,
4872         locale/lc-collate.c, locale/lc-ctype.c,
4873         locale/lc-messages.c, locale/lc-monetary.c,
4874         locale/lc-numeric.c, locale/lc-time.c: New implementation of locale
4875         functions, and new generated "C" locale data.
4877         * locale/loadlocale.c: Now handles word fields in locale binary
4878         automatically by changing the endianess if necessary.
4880         * locale/localeinfo.h (LIMAGIC): Changed magic number because
4881         of incompatible changes.
4882         (locale_data): Changed definition to allow word as a value type.
4883         (coll_sort_rule): Values for collation sorting mode.
4884         (_NL_CURRENT_WORD): New macro to access word value of locale entry.
4885         (__collate_table, __collate_extra): Declare new global variables
4886         for collation tables.
4888         * locale/programs/charmap-kw.gperf, locale/programs/charmap-kw.h,
4889         locale/programs/charmap.c, locale/programs/charset.c,
4890         locale/programs/charset.h, locale/programs/config.h,
4891         locale/programs/ctypedump.c, locale/programs/ld-collate.c,
4892         locale/programs/ld-ctype.c, locale/programs/ld-messages.c,
4893         locale/programs/ld-monetary.c, locale/programs/ld-numeric.c,
4894         locale/programs/ld-time.c, locale/programs/linereader.c,
4895         locale/programs/linereader.h, locale/programs/locale.c,
4896         locale/programs/localedef.c, locale/programs/locales.h,
4897         locale/programs/locfile-kw.gperf, locale/programs/locfile-kw.h,
4898         locale/programs/locfile-token.h, locale/programs/locfile.c,
4899         locale/programs/locfile.h, locale/programs/stringtrans.c,
4900         locale/programs/stringtrans.h: Implementation of locale related
4901         programs.
4903         * locale/weight.h: Functions to access collation tables.
4905         * posix/unistd.h: Define _POSIX2_LOCALEDEF.
4907         * stdio-common/printf_fp.c: Fix bug with printing certain numbers
4908         < 10^-1.  Reported by Bill Metzenthen.
4910         * stdio-common/tfformat.c: Add new test for above bug.
4912         * string/strcoll.c, string/strxfrm.c: Real implementation of
4913         string collation according to ISO C.
4915         * wctype/Makefile, wctype/cname-lookup.h, wctype/iswctype.c,
4916         wctype/test_wctype.c, wctype/towctrans.c, wctype/wcfuncs.c,
4917         wctype/wctrans.c, wctype/wctype.c, wctype/wctype.h: New files.
4918         Implementation of wide character classes and mapping.
4920 Wed Mar 27 14:52:11 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4922         * elf/rtld.c (dl_main): Call _dl_sysdep_start_cleanup after
4923         _dl_relocate_object loop.  Avoid relocating RTLD_MAP in that loop, and
4924         do it individually if necessary after _dl_sysdep_start_cleanup call.
4926         * stdlib/Makefile (mpn-routines): Add divrem.
4928 Tue Mar 26 22:54:14  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
4930         * stdio-common/printf_fp.c (__printf_fp): Use mpn_divmod
4931         instead of __mpn_divmod.
4933 Wed Mar 27 10:26:21 1996  David Mosberger-Tang  <davidm@azstarnet.com>
4935         * sysdeps/alpha/setjmp.S: Must establish global pointer before
4936         address of __sigsetjmp_aux can be loaded.
4938 Wed Mar 27 02:23:19 1996 Ulrich Drepper <drepper@gnu.ai.mit.edu>
4940         * sysdeps/i386/i586/memset.S: New file.  Highly optimized
4941         version for i586 contributed by Torbjorn Granlund.
4942         Adapted for use as bzero.
4943         * sysdeps/i386/i586/bzero.S: Use sysdeps/i386/i586/memset.S
4944         code to implement bzero().
4946 Tue Mar 26 20:01:17 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4948         * stdlib/Makefile (mpn-routines): Remove divmod.
4950 Tue Mar 26 15:40:14 1996  Brendan Kehoe  <brendan@zen.org>
4952         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sysdep.h (NO_UNDERSCORES): Use
4953         wrapped with #ifndef, to avoid config.h defining it.
4955 Mon Mar 25 13:10:04 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4957         * malloc/realloc.c (_realloc_internal): In case of growing large
4958         block, leave _heaplimit zero across _malloc_internal call.
4960         * intl/Makefile [gettext-srcdir]: Use gpl2lgpl.sed on copied sources.
4962 Mon Mar 25 03:35:16 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4964         * malloc/malloc.c (morecore): Don't attempt recursive realloc of info
4965         table when _heaplimit==0 during realloc growing large block.
4967         * MakeTAGS (extract): Remove /dev/null from xgettext command line.
4968         (text-srcs): New variable: extract only C sources from $(tags_sources).
4969         (po/$(domain).pot): Depend on that.
4970         If it's empty, cp /dev/null $@ instead of $(extract).
4972         * misc/Makefile (headers): Add iovec.h.
4973         * sysdeps/unix/sysv/linux/iovec.h: New file.
4974         * sysdeps/generic/iovec.h: New file.
4975         * misc/sys/uio.h (struct iovec): Type replaced with #include <iovec.h>.
4977         * configure.in (NO_UNDERSCORES check): Use AC_TRY_LINK instead of
4978         AC_TRY_COMPILE.
4980         * misc/sys/cdefs.h [__USE_BSD] (const, signed, volatile): Move these
4981         macros inside [! __STDC__].
4983         * stdlib/rpmatch.c: New file.
4984         * stdlib/Makefile (routines): Add rpmatch.
4985         * stdlib/stdlib.h [__USE_SVID]: Declare rpmatch.
4987         * MakeTAGS (MSGJOIN): Variable removed.
4988         (po/SYS_libc.pot): Use $(XGETTEXT) instead of $(MSGJOIN).
4990 Wed Mar 20 20:08:46 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4992         * sysdeps/unix/sysdep.h: Don't define C_SYMBOL_NAME.
4994         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Don't define
4995         NO_UNDERSCORES.
4997 Thu Mar 21 11:19:15 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4999         * mach/devstream.c (input): Translate \r to \n on input.
5001 Wed Mar 20 11:28:49 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5003         * stdio-common/printf.h, stdio-common/printf_fp.c,
5004         stdio-common/vfprintf.c: Place const in parameter list at
5005         correct place.
5007 Wed Mar 20 23:58.12 1996  Ulrich Drepper <drepper@gnu.ai.mit.edu>
5009         * sysdeps/i386/ldbl2mpn.c: Copy of former version of
5010         sysdeps/ieee754/ldbl2mpn.c.
5011         * sysdeps/ieee754/ldbl2mpn.c: Remove i386 specific unification.
5012         Reported by Andreas Schwab.
5014 Wed Mar 20 19:58:43 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5016         * version.c: Include version.h to define RELEASE and VERSION macros.
5017         (__libc_release, __libc_version): Use them.
5018         * locale/SYS_libc.c (_libc_intl_domainname): Include ../version.h and
5019         use VERSION to define domainname as `SYS_GNU_libc-VERSION'.
5020         * Make-dist (rel+vers): Snarf the macro values from version.h.
5022         * MakeTAGS (extract): Pass $(XGETTEXTFLAGS-$(@F)).
5023         (XGETTEXTFLAGS-siglist.pot, XGETTEXTFLAGS-errlist.pot): New variables;
5024         pass -a for these files.
5026         * Makerules (po/%.pot): Depend on FORCE target so recursive make is
5027         always run.
5029 Mon Mar 18 22:54:32 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5031         * sysdeps/unix/sysv/linux/wait3.c: New file.
5032         * sysdeps/unix/sysv/linux/wait.c: Use the bsd4.4 wait, not the
5033         one from sysdeps/posix.
5035 Wed Mar 20 09:42:11 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5037         * sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro.
5039         * elf/dl-load.c (_dl_map_object_from_fd): Always set L->l_type; if not
5040         lt_executable, then lt_library.
5041         * elf/rtld.c (dl_main): Don't set NEW->l_type after _dl_map_object.
5043 Wed Mar 20 00:08:23 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5045         * sysdeps/unix/sysv/linux/syscalls.list: Remove gtty and stty.
5047 Tue Mar 19 16:31:06 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5049         * sysdeps/unix/sysv/linux/termbits.h (CRTSCTS, CBAUDEX, VEOL,
5050         VEOL2, VMIN, VTIME): Corrected.
5051         (PAGEOUT, WRAP, VDSUSP): Deleted.
5053 Tue Mar 19 14:18:42 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5055         * sysdeps/unix/readdir.c: Test [! _DIRENT_HAVE_D_RECLEN] instead of
5056         (sizeof (DP->d_name) > 1) to detect fixed-size dir entries.
5058         * sysdeps/i386/fpu/__math.h (asinh): Call log1p instead of __log1p.
5060         * math/math.h: Move M_* constants before __math.h include.
5061         [__NO_MATH_INLINES || __OPTIMIZE__]: Include __math.h only #if this.
5063         * misc/efgcvt_r.c (ecvt_r): Declare floor, log10, fabs as weak extern.
5064         If log10 is not defined (i.e. no -lm), use stupid loop instead.
5066         * features.h (__FAVOR_BSD): Define only if _BSD_SOURCE is defined
5067         and no other _*_SOURCE macro is.
5068         (_GNU_SOURCE): Don't define by default.
5069         * libc-symbols.h (_GNU_SOURCE): Define it.
5071         * configure.in (alpha*-*-linux*): Unset $gnu_ld and $elf.
5073         * config.make.in (weak-symbols): Variable removed.
5074         * configure.in (--with-weak-symbols): Option removed.
5075         (NO_UNDERSCORES, HAVE_ASM_WEAK_DIRECTIVE, HAVE_ASM_WEAKEXT_DIRECTIVE):
5076         New tests.
5078         * config.h.in (HAVE_WEAK_SYMBOLS): #undef removed.
5079         (NO_UNDERSCORES, HAVE_ASM_WEAK_DIRECTIVE, HAVE_ASM_WEAKEXT_DIRECTIVE):
5080         New #undefs.
5081         * libc-symbols.h: Use them instead of HAVE_WEAK_SYMBOLS.
5083         * sysdeps/unix/bsd/pause.c: Moved to sysdeps/unix/common/pause.c.
5085 Mon Mar  4 20:17:28 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5087         * inet/inet_lnaof.c: Use u_int32_t instead of u_long.
5088         * inet/inet_mkadr.c: Likewise.
5089         * inet/inet_net.c: Likewise.
5090         * inet/inet_netof.c: Likewise.
5091         * inet/rcmd.c: Likewise.
5092         * inet/arpa/inet.h: Likewise.
5093         * inet/netinet/in.h: Likewise.
5094         * inet/netinet/tcp.h: Likewise.
5095         * inet/protocols/rwhod.h: Likewise.
5096         * inet/protocols/talkd.h: Likewise.
5097         * resolv/inet_addr.c: Likewise.
5099         * sysdeps/unix/sysv/linux/adjtime.c: Use INT_MAX instead of LONG_MAX.
5101         * sysdeps/unix/sysv/Makefile (sysdep_routines): Don't add s_getdents.
5103         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Don't add mount,
5104         umount.
5106         * sysdeps/alpha/__math.h (atan, cabs): New functions.
5108         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: new file (syscall
5109         expects set-value, not pointer to it).
5111 Sun Feb 25 22:36:10 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5113         * sysdeps/unix/sysv/linux/alpha/profil-counter.h: New file.
5115         * gmon/gmon.c (__bb_head): new variable.
5116         (write_hist, write_call_graph, write_bb_counts): new functions.
5117         (_mcleanup): modified to call above functions instead of directly
5118         writing out gmon.out.
5119         * gmon/sys/gmon.h (struct __bb): New type.
5120         (struct gmonhdr): Type removed.
5121         (struct gmonparam): New member `log_hashfraction'.
5122         (GMONVERSION): Macro removed.
5124         * gmon/sys/gmon_out.h, gmon/bb_exit_func.c,
5125         sysdeps/generic/bb_init_func.c, sysdeps/alpha/bb_init_func.S: new
5126         files.
5127         * gmon/Makefile (headers): Add sys/gmon_out.h.
5128         (routines): Add bb_init_func, bb_exit_func.
5130         * gmon/mcount.c: Avoid integer division.
5132 Wed Feb 21 23:56:41 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5134         * sysdeps/alpha/setjmp.S: switched order in which sp and fp are
5135         passed to match what __sigsetjmp_aux() expects.
5137 Tue Feb 20 11:33:46 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5139         * sysdeps/unix/sysv/linux/alpha/syscalls.list (select, bind,
5140         connect, getpeername, getsockname, listen, recv, recvfrom,
5141         recvmsg, send, sendmsg, sendto, setsockopt, shutdown, socketpair):
5142         added to override same-name assembly file in the parent directory.
5144         * stdlib/stdlib.h: add include of sys/types.h in front of random
5145         etc declarations to ensure int32_t is declared.
5147         * stdlib/random.c, stdlib/random_r.c: replaced "long int" by int32_t
5148         where 32 bit integers are required.  Also change LONG_MAX into
5149         0x7fffffff since the intent is to turn off the sign bit in a
5150         32 bit integer.
5152         * time/offtime.c (__offtime): Use Paul Eggert's code to deal
5153         with very large values for "days" (e.g., 64 bit values).
5155 Mon Feb 19 22:22:12 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5157         * stdlib/stdlib.h (__random, __random_r, random_r, struct
5158         random_data): use int32_t instead of `long int'.
5160 Sat Feb 17 11:29:29 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5162         * sysdeps/unix/sysv/linux/alpha/ioperm.c: new file.
5164         * sysdeps/alpha/ffs.S: new file.
5166         * sysdeps/alpha/fabs.c: File removed.
5168         * time/tzfile.c (__tzfile_read): counter variable is i, *not*
5169         num_transitions!
5171         * time/offtime.c: make capable of dealing with very large (64 bit)
5172         time_t values.  Use old algorithm until a year is reached that
5173         is an integer multiple of 400, then use DAYS_PER_400_YEARS to
5174         do the remainder in a single division.
5176         * sysdeps/generic/ffs.c (ffs): fix variable declarations to
5177         be unsigned int, not unsigned long.
5179         * string/test-ffs.c (main): add test case with all upper bits
5180         set.
5182         * stdlib/tst-strtol.c: add tests cases for machines where
5183         sizeof(long)==8.
5185         * stdlib/testrand.c (main): disallow rand() to return negative
5186         integers.
5188         * stdlib/testmb.c (main): fix format to use %lx instead of %x.
5190         * stdlib/stdlib.h: on 64 bit machines, declare
5191         struct random_data, __random(),  __random_r, and random_r to
5192         return "int" instead of "long int".
5194         * stdlib/random_r.c: 64 bit machines use "int" instead of "long
5195         int".  Similarly, use INT_MAX instead of LONG_MAX.
5197         * stdlib/random.c: on 64 bit machines, randtbl[] and __random[]
5198         need to operate on "int" instead of "long int".
5200         * locale/locfile-hash.c (compute_hashval): make shifted constant
5201         a long to avoid loosing bits on 64 bit machines.
5203         * dirent/tst-seekdir.c (main): fix confusing comment; print
5204         a line to mark point where directory is rewound.
5206 Fri Feb 16 15:01:49 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5208         * time/strftime.c (strftime): any hour > 11 is PM (not > 12!).
5210 Wed Feb 14 00:21:17 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5212         * sysdeps/unix/sysv/linux/alpha/Makefile,
5213         sysdeps/unix/sysv/linux/alpha/brk.S,
5214         sysdeps/unix/sysv/linux/alpha/fpu_control.c,
5215         sysdeps/unix/sysv/linux/alpha/fpu_control.h,
5216         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
5217         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
5218         sysdeps/unix/sysv/linux/alpha/pipe.S,
5219         sysdeps/unix/sysv/linux/alpha/setfpucw.c,
5220         sysdeps/unix/sysv/linux/alpha/sigprocmask.c,
5221         sysdeps/unix/sysv/linux/alpha/speed.c,
5222         sysdeps/unix/sysv/linux/alpha/start.S,
5223         sysdeps/unix/sysv/linux/alpha/syscall.S,
5224         sysdeps/unix/sysv/linux/alpha/syscalls.list,
5225         sysdeps/unix/sysv/linux/alpha/alpha/regdef.h,
5226         sysdeps/unix/sysv/linux/alpha/sysdep.S,
5227         sysdeps/unix/sysv/linux/alpha/sysdep.h: New files.
5229         * sysdeps/alpha/setjmp_aux.c (__sigsetjmp_aux): restore return
5230         address register before returning (gcc 2.7.1 doesn't do it,
5231         presumably because $26 is declared as a global variable).
5233         * sysdeps/unix/sysv/linux/sys/mman.h: msync was missing "flags"
5234         argument.
5236         * sysdeps/unix/alarm.c (alarm): do roundup using test & increment
5237         instead of multiplication.
5239         * sysdeps/posix/sleep.c (sleep): initialize sa_mask to mask of
5240         currently blocked signals instead of the empty mask to ensure
5241         that execution of alarm handler occurs with none of the currently
5242         blocked signals enabled.
5244         * sysdeps/unix/alpha/sysdep.h: new file (adapted from OSF/1 version).
5246         * sysdeps/unix/bsd/osf/alpha/sysdep.h: include
5247         sysdeps/unix/alpha/sysdep.h and removed definitions now in that file.
5249         * sysdeps/alpha/divrem.S, sysdeps/alpha/htonl.S,
5250         sysdeps/alpha/htons.S, sysdeps/alpha/machine-gmon.h,
5251         sysdeps/alpha/_mcount.S, sysdeps/alpha/ntohl.s, sysdeps/alpha/ntohs.s,
5252         sysdeps/alpha/strlen.S: New files.
5254         * sysdeps/alpha/divl.S, sysdeps/alpha/divlu.S, sysdeps/alpha/divq.S,
5255         sysdeps/alpha/divqu.S, sysdeps/alpha/divrem.m4,
5256         sysdeps/alpha/macros.m4, sysdeps/alpha/reml.S, sysdeps/alpha/remlu.S,
5257         sysdeps/alpha/remq.S, sysdeps/alpha/remqu.S, sysdeps/alpha/strlen.c:
5258         Removed.
5260         * sysdeps/generic/sbrk.c (__sbrk): argument is of type ptrdiff_t, not
5261         int.
5263         * sysdeps/alpha/__longjmp.c (__longjmp): moved dummy while loop
5264         to end of function to avoid a jump across NOPs.
5266         * sysdeps/alpha/Makefile (sysdep_routines): Removed all rules
5267         pertaining to integer division/remainder routines since new code
5268         doesn't require them.
5270         * sunrpc/xdr_mem.c, sunrpc/xdr_stdio.c: Use 4 instead of sizeof(long)
5271         where 32 bit quantities are consumed/stored.  Various other minor
5272         64-bit cleanups (casting).
5274         * sunrpc/xdr.c (xdr_int): test for sizeof(int)==4 to determine
5275         whether xdr_long or xdr_short should be used to encode an int.
5276         Notice that an xdr_long is 4 bytes independent of the architecture
5277         (otherwise no Alpha could interoperate with existing NFS servers,
5278         for example).  Ditto for enums.
5280         * sunrpc/svc_udp.c (svcudp_recv): changed test from 4*sizeof(u_long)
5281         to 16 since it really wants 16 bytes.
5283         * sunrpc/svc.c (maskp): changed from u_long* to u_int32*.
5285         * sunrpc/rpc/xdr.h (IXDR_GET_LONG, IXDR_PUT_LONG): change casts to
5286         u_int32_t (instead of u_long).
5288         * sunrpc/rpc_cmsg.c (xdr_callmsg), sunrpc/svc_authux.c: increment
5289         "buf" pointer by casting it to a char* first since a long* may be 8
5290         bytes or more and oa->oa_length may be any multiple of 4.
5292         * sunrpc/clnt_udp.c (clntudp_call): replaced sizeof(u_long) by 4
5293         since it really is testing for 32 bits.  Fixed casts to use
5294         u_int32 instead of u_long.
5295         * sunrpc/xdr_rec.c: Likewise.
5297         * sunrpc/clnt_tcp.c (clnttcp_call): replaced u_long by u_int32.
5298         * sunrpc/rpc/auth.h: Likewise.
5300         * limits.h (LONG_MAX, LONG_MIN, ULONG_MAX): use 64 bit values
5301         for Alpha.
5303 Tue Mar 19 13:27:49 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5305         * sysdeps/i386/fpu/__math.h: New file.
5306         Contributed by John C. Bowman <bowman@hagar.ph.utexas.edu>.
5308 Sun Mar 17 00:28:16 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5310         * sysdeps/posix/clock.c: Don't multiply the return value by
5311         CLOCKS_PER_SEC or CLK_TCK.
5313 Mon Mar 18 13:20:46 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5315         * sysdeps/mach/hurd/getcwd.c: Fail with ENOENT if a parent directory
5316         scan finds no match.
5318         * posix/unistd.h (setpgrp): Declare no-arg version unless __FAVOR_BSD.
5319         * misc/bsd-compat.c (setpgrp): New function, two arg version.
5320         * sysdeps/stub/setpgid.c: Remove setpgrp alias.
5321         * sysdeps/mach/hurd/setpgid.c: Likewise.
5322         * sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
5323         * sysdeps/unix/common/syscalls.list (setpgid): Remove setpgrp alias.
5324         * sysdeps/unix/sysv/irix4/syscalls.list: Likewise.
5325         * sysdeps/unix/sysv/linux/setpgrp.c: Obsolete file removed.
5326         * posix/setpgrp.c (setpgrp): New file.
5327         * posix/Makefile (routines): Add setpgrp.
5329         * elf/Makefile (rtld-link): New canned sequence.
5330         (ld.so, ld-linux.so.1): Use it.  Pass -soname option.
5332         * sysdeps/i386/setjmp.S (__setjmp): Define compatibility entry point.
5334 Sun Mar 17 23:15:32 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5336         * sysdeps/unix/sysv/linux/tcgetpgrp.c,
5337         sysdeps/unix/sysv/linux/tcsetpgrp.c: New files.
5339 Sun Mar 17 07:19:33 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5341         * db/Makefile (CFLAGS-hash_func.c): New variable; pass -Wno-unused.
5342         (CFLAGS): Append -Wno-unitialized.
5344 Sat Mar 16 20:58:43 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5346         * stdlib/erand48_r.c: Use FP division by powers of two to distribute
5347         short bits into double.
5349 Sat Mar 16 20:08:22 1996  David Mosberger-Tang  <davidm@azstarnet.com>
5351         * sysdeps/alpha/memchr.S: New file.
5352         * sysdeps/alpha/memchr.c: Obsolete file removed.
5353         * string/tester.c: Soup up memchr tests.
5355 Sat Mar 16 16:26:09 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5357         * misc/Makefile (headers): Add sysexits.h.
5358         * misc/sysexits.h: New file.
5360 Thu Mar 14 15:20:45 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5362         * sysdeps/libm-ieee754/e_atan2.c (__ieee754_atan2): Change atan
5363         call to __atan.
5364         * sysdeps/libm-ieee754/e_atan2f.c (__ieee754_atan2f): Change atanf
5365         call to __atanf.
5367         * sysdeps/m68k/fpu/e_acos.c, sysdeps/m68k/fpu/e_acosf.c,
5368         sysdeps/m68k/fpu/e_asin.c, sysdeps/m68k/fpu/e_asinf.c,
5369         sysdeps/m68k/fpu/e_atanh.c, sysdeps/m68k/fpu/e_atanhf.c,
5370         sysdeps/m68k/fpu/e_cosh.c, sysdeps/m68k/fpu/e_coshf.c,
5371         sysdeps/m68k/fpu/e_exp.c, sysdeps/m68k/fpu/e_expf.c,
5372         sysdeps/m68k/fpu/e_fmod.c, sysdeps/m68k/fpu/e_fmodf.c,
5373         sysdeps/m68k/fpu/e_log.c, sysdeps/m68k/fpu/e_log10.c,
5374         sysdeps/m68k/fpu/e_log10f.c, sysdeps/m68k/fpu/e_logf.c,
5375         sysdeps/m68k/fpu/e_pow.c, sysdeps/m68k/fpu/e_powf.c,
5376         sysdeps/m68k/fpu/e_remainder.c, sysdeps/m68k/fpu/e_remainderf.c,
5377         sysdeps/m68k/fpu/e_scalb.c, sysdeps/m68k/fpu/e_scalbf.c,
5378         sysdeps/m68k/fpu/e_sinh.c, sysdeps/m68k/fpu/e_sinhf.c,
5379         sysdeps/m68k/fpu/e_sqrt.c, sysdeps/m68k/fpu/e_sqrtf.c,
5380         sysdeps/m68k/fpu/k_cos.c, sysdeps/m68k/fpu/k_cosf.c,
5381         sysdeps/m68k/fpu/k_sin.c, sysdeps/m68k/fpu/k_sinf.c,
5382         sysdeps/m68k/fpu/k_tan.c, sysdeps/m68k/fpu/k_tanf.c,
5383         sysdeps/m68k/fpu/s_atan.c, sysdeps/m68k/fpu/s_atanf.c,
5384         sysdeps/m68k/fpu/s_ceil.c, sysdeps/m68k/fpu/s_ceilf.c,
5385         sysdeps/m68k/fpu/s_cos.c, sysdeps/m68k/fpu/s_cosf.c,
5386         sysdeps/m68k/fpu/s_expm1.c, sysdeps/m68k/fpu/s_expm1f.c,
5387         sysdeps/m68k/fpu/s_fabs.c, sysdeps/m68k/fpu/s_fabsf.c,
5388         sysdeps/m68k/fpu/s_finite.c, sysdeps/m68k/fpu/s_finitef.c,
5389         sysdeps/m68k/fpu/s_floor.c, sysdeps/m68k/fpu/s_floorf.c,
5390         sysdeps/m68k/fpu/s_frexp.c, sysdeps/m68k/fpu/s_frexpf.c,
5391         sysdeps/m68k/fpu/s_ilogb.c, sysdeps/m68k/fpu/s_ilogbf.c,
5392         sysdeps/m68k/fpu/s_isinf.c, sysdeps/m68k/fpu/s_isinff.c,
5393         sysdeps/m68k/fpu/s_isnan.c, sysdeps/m68k/fpu/s_isnanf.c,
5394         sysdeps/m68k/fpu/s_ldexp.c, sysdeps/m68k/fpu/s_ldexpf.c,
5395         sysdeps/m68k/fpu/s_log1p.c, sysdeps/m68k/fpu/s_log1pf.c,
5396         sysdeps/m68k/fpu/s_logb.c, sysdeps/m68k/fpu/s_logbf.c,
5397         sysdeps/m68k/fpu/s_modf.c, sysdeps/m68k/fpu/s_modff.c,
5398         sysdeps/m68k/fpu/s_rint.c, sysdeps/m68k/fpu/s_rintf.c,
5399         sysdeps/m68k/fpu/s_scalbn.c, sysdeps/m68k/fpu/s_scalbnf.c,
5400         sysdeps/m68k/fpu/s_significand.c,
5401         sysdeps/m68k/fpu/s_significandf.c, sysdeps/m68k/fpu/s_sin.c,
5402         sysdeps/m68k/fpu/s_sinf.c, sysdeps/m68k/fpu/s_tan.c,
5403         sysdeps/m68k/fpu/s_tanf.c, sysdeps/m68k/fpu/s_tanh.c,
5404         sysdeps/m68k/fpu/s_tanhf.c: New files, for m68881 port of fdlibm.
5406         * sysdeps/m68k/fpu/__math.h: Rewritten for fdlibm.
5408         * sysdeps/m68k/fpu/isinfl.c: Rewritten to get argument type right.
5409         * sysdeps/m68k/fpu/isnanl.c: Likewise.
5411 Thu Mar 14 06:01:07 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5413         * posix/glob.c (glob): In GLOB_BRACE brace expansion, fix buffer size
5414         calculation to include trailing invariant portion.  Don't use alloca;
5415         instead use a dynamic auto array for GCC, malloc for non-GCC.
5416         Handle nested braces properly.
5418         * elf/elf.h (Elf32_auxv_t): Specify prototype (void) for `a_un.a_fcn'.
5420         * libc-symbols.h (lint): New macro.
5422 Fri Mar 15 01:18:00 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5424         * libio/iosetvbuf.c: Add weak alias setvbuf.
5426 Thu Mar 14 06:01:07 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5428         * string/strnlen.c: New file.
5429         * string/Makefile (routines): Add strnlen.
5430         * string/string.h [__USE_GNU] (strnlen): Declare new function.
5431         [__OPTIMIZE__]: Define extern inline implementation of it.
5433         * stdlib/erand48_r.c: Use __mpn_construct_double instead of ldexp and
5434         addition, to avoid using anything from -lm.
5436 Mon Mar  4 21:57:14 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5438         * sysdeps/unix/sysv/linux/m68k/Makefile: New file.
5440         * sysdeps/unix/sysv/linux/m68k/sysdep.h (SYS_ify): Redefine.
5441         (CALL_MCOUNT): New macro, empty unless [PROF].
5442         (ENTRY): Do CALL_MCOUNT just after the label.
5443         (JUMPTARGET): New macro.
5444         (SYSCALL_ERROR_HANDLER): Fix syntax.
5446 Thu Mar 14 04:20:48 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5448         * sysdeps/unix/sysv/linux/init-first.c (init): Call `__personality'
5449         function instead of using inline asm i386 syscall.
5450         * sysdeps/unix/sysv/linux/syscalls.list: Add personality syscall.
5452         * posix/unistd.h [__USE_BSD]: Declare usleep.
5454 Tue Mar 12 04:57:57 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5456         * misc/efgcvt.c (MAXDIG): New macro computed from <floats.h> constants.
5457         (fcvt, ecvt): Use it for buffer size.
5459         * stdlib/drand48-iter.c (__drand48_iterate): Use u_int64_t instead of
5460         conditionalizing long vs long long.
5462         * stdlib/drand48-iter.c (__drand48_iterate): Don't check for null
5463         pointers; never return EFAULT.
5464         * stdlib/drand48_r.c (drand48_r): Likewise.
5465         * stdlib/erand48_r.c (erand48_r): Likewise.
5467         * setjmp/Makefile (tests): Add jmpbug.
5468         * setjmp/jmpbug.c: New file.
5470 Tue Mar 12 04:42:01 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5472         * sysdeps/sparc/jmp_buf.h: Rewritten; use array of ints, not struct.
5473         * sysdeps/sparc/setjmp.S: Rewritten; store %fp value as well.
5474         * sysdeps/sparc/__longjmp.S: Rewritten; unwind frames one by one with
5475         `restore' until the target frame is hit.
5477 Sun Mar 10 20:29:40 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5479         * sysdeps/unix/sysv/linux/sigsuspend.c: New file.
5480         * sysdeps/unix/sysv/linux/syscalls.list: Remove sigsuspend, add
5481         s_sigsuspend.
5483 Thu Mar  7 21:30:58 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5485         * Makerules (+make-deps, sed-remove-objpfx): Quote periods on the
5486         left side of sed substitutions.
5488 Sun Mar 10 16:58:10 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5490         * stdio-common/printf_fp.c (hack_digit): __mpn_normal_size
5491         is not available anymore.  Do it ourselves.
5493         * sysdeps/unix/sysv/linux/i386/fpu_control.h (_FPU_SETCW):
5494         Correct GCC `asm' syntax.
5496 Tue Mar 12 03:15:02 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5498         * stdio-common/Makefile (tests): Add tst-ungetc.
5499         * stdio-common/tst-ungetc.c: New test from drepper.
5500         * stdio-common/tstscanf.c (main): New %[ test case from drepper.
5502         * sysdeps/libm-ieee754/s_scalbn.c (scalbn): Rename to __scalbn;
5503         somehow this was missed, though the weak alias is already there.
5505         * sysdeps/unix/sysv/linux/i386/fpu_control.h (_FPU_DEFAULT): Change
5506         default to double precision, all interrupts masked; fdlibm requires.
5508 Sat Mar  9 18:44:27 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5510         * sysdeps/unix/sysv/linux/i386/setfpucw.c: Obsolete file removed.
5512 Fri Mar  8 22:16:48 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5514         * stdio-common/printf_fp.c (HAVE_ALLOCA): New macro.
5516 Tue Mar  5 18:45:14 1996  Miles Bader  <miles@gnu.ai.mit.edu>
5518         * sysdeps/mach/hurd/select.c (__select): Include LASTFD in the
5519         final loop.
5521 Mon Mar  4 20:54:40 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5523         * Makeconfig ($(common-objpfx)config.make): Depend on config.h.in.
5525 Tue Mar  5 12:14:57 1996  Miles Bader  <miles@gnu.ai.mit.edu>
5527         * sysdeps/mach/hurd/select.c (__select): Also don't fault just
5528         because some fdmask is 0.
5530 Mon Mar  4 17:35:35 1996  Miles Bader  <miles@gnu.ai.mit.edu>
5532         * sysdeps/mach/hurd/select.c (__select):
5533         Don't increment GOT only because READ/WRITE/EXCEPTFDS is 0!
5534         Don't return without frobbing the bitmasks after a timeout.
5535         When clearing the bitmasks, only loop from FIRSTFD to LASTFD.
5537 Mon Mar  4 17:35:09 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5539         * hurd/catch-signal.c (hurd_safe_memmove): New function.
5540         (hurd_safe_copyin, hurd_safe_copyout): New functions.
5541         * hurd/hurd/sigpreempt.h: Declare them.
5543 Sun Mar  3 08:43:44 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5545         Replace math code with fdlibm from Sun as modified for netbsd by
5546         JT Conklin and Ian Taylor, including x86 FPU support.
5547         * sysdeps/libm-ieee754, sysdeps/libm-i387: New directories.
5548         * math/math_private.h: New file.
5549         * sysdeps/i386/fpu/Implies: New file.
5550         * sysdeps/ieee754/Implies: New file.
5551         * math/machine/asm.h, math/machine/endian.h: New files.
5552         * math/Makefile, math/math.h: Rewritten.
5553         * mathcalls.h, math/mathcalls.h: New file, broken out of math.h.
5554         * math/finite.c: File removed.
5555         * sysdeps/generic/Makefile [$(subdir)=math]: Frobnication removed.
5557         * math/test-math.c: Include errno.h and string.h.
5559         * sysdeps/unix/bsd/dirstream.h: File removed.
5560         * sysdeps/unix/bsd/readdir.c: File removed.
5562 Sat Mar  2 16:35:40 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5564         * sysdeps/unix/sysv/linux/m68k/profil-counter.h: File removed.
5565         * sysdeps/unix/sysv/sysv4/solaris2/sparc/profil-counter.h: File
5566         removed.
5567         * sysdeps/generic/profil-counter.h: New file.
5569 Fri Mar  1 17:11:59 1996  Brendan Kehoe  <brendan@zen.org>
5571         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sigcontext.h: New file,
5572         including <sysdeps/unix/bsd/sun/sparc/sigcontext.h>.
5573         * sysdeps/unix/sysv/sysv4/solaris2/sparc/profil-counter.h: New file,
5574         same as linux/m68k/profil-counter.h except the comment.
5576 Fri Mar  1 10:09:46 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5578         * stdlib/Makefile (mpn-stuff): New target.
5579         (copy-mpn): Use it.
5581         * Code copied from GMP updated to 1.937 version.
5582         * stdlib/strtod.c (HAVE_ALLOCA): Define this for gmp headers.
5584         * posix/glob.c: Use canonical code from autoconf manual for dirent
5585         include.
5586         [_D_NAMLEN]: Redefine NAMLEN using this.
5587         (glob_in_dir): Use NAMLEN macro.
5589         * sysdeps/posix/profil.c: New file.
5591 Thu Feb 29 20:55:57 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5593         * sysdeps/unix/sysv/linux/m68k/profil-counter.h: New file.
5595 Tue Feb 27 12:14:59 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5597         * libc-symbols.h [GCC >= 2.8] (strong_alias, weak_alias): Remove
5598         `extern' keyword.
5600         * time/strftime.c: Support - and _ flags to affect number padding.
5602         * sysdeps/unix/common/tcsendbrk.c: New file.
5604 Mon Feb 26 10:22:30 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5606         * sysdeps/unix/dirstream.h: Rewritten.
5607         * sysdeps/unix/readdir.c: Rewritten.
5608         * sysdeps/unix/telldir.c: Rewritten.
5609         * sysdeps/unix/closedir.c: Use <...> instead of "..." for dirstream.h.
5610         Remove __ from DIR struct member names.
5611         * sysdeps/unix/dirfd.c: Likewise.
5612         * sysdeps/unix/seekdir.c: Likewise.
5613         * sysdeps/unix/rewinddir.c: Likewise.
5614         * sysdeps/unix/opendir.c: Likewise.  Don't allocate extra space after
5615         DIR structure.
5616         * sysdeps/stub/direct.h: File removed.
5617         * sysdeps/unix/bsd/bsd4.4/direct.h: File removed.
5618         * sysdeps/unix/bsd/direct.h: File removed.
5619         * sysdeps/unix/common/direct.h: File removed.
5620         * sysdeps/unix/sysv/irix4/direct.h: File removed.
5621         * sysdeps/unix/sysv/isc3/direct.h: File removed.
5622         * sysdeps/unix/sysv/sco3.2.4/direct.h: File removed.
5623         * sysdeps/unix/sysv/sysv4/solaris2/direct.h: File removed.
5624         * sysdeps/unix/common/direntry.h: New file.
5625         * sysdeps/unix/bsd/direntry.h: New file.
5626         * sysdeps/unix/bsd/bsd4.4/direntry.h: New file.
5627         * sysdeps/unix/sysv/direntry.h: New file.
5628         * sysdeps/stub/direntry.h: New file.
5629         * dirent/dirent.h (struct dirent): Type removed.  Include <direntry.h>
5630         to define it.
5631         (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New macros.
5632         * dirent/Makefile (headers): Add direntry.h.
5633         (distribute): Remove direct.h.
5634         * sysdeps/posix/getcwd.c: Use new macros instead of d_namlen.
5635         * dirent/scandir.c: Likewise.
5636         * io/fts.c (fts_build): Likewise.
5637         * io/ftw.c (ftw_dir): Likewise.
5638         * sysdeps/posix/ttyname.c: Likewise.
5640         * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list: New file.
5642         * sysdeps/mach/hurd/profil.c (MAX_PC_SAMPLES): New macro.
5643         (collector_timeout): New static variable.
5644         (update_waiter): Actually call __task_enable_pc_sampling.
5645         Set collector_timeout based on the `tick' count returned.
5646         (profile_waiter): Use MAX_PC_SAMPLES.  Set nsamples before RPC.
5647         Use collector_timeout in __mach_msg call.
5649         * gmon/Makefile (noprof): New variable containing mcount.
5650         Append profil unless it is in $(unix-syscalls).
5651         (mcount.po): Use $(noprof) for list of targets in this rule.
5653         * libc-symbols.h: Define _LIBC before #include <config.h>.
5655 Sun Feb 25 12:29:23 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5657         * config.h.in [_LIBC] (HAVE_STRERROR): Define it.
5658         Protect 2nd page of #undef's for generator programs with #ifndef _LIBC.
5660         * time/zic.c, time/zdump.c, time/private.h: Updated from ADO 96e.
5662 Fri Feb  9 12:40:19 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
5664         * libio/cleanup.c (_IO_cleanup_registration_needed)
5665         [!_G_HAVE_ATEXIT]: Init to NULL.
5666         * libio/filedoalloc.c (_IO_cleanup_registration_needed): Remove decl.
5668 Thu Feb  8 08:12:50 1996  Brendan Kehoe  <brendan@cygnus.com>
5670         * libio/filedoalloc.c (_IO_cleanup_registration_needed): Revert
5671         previous change, since cleanup.c only defines it if _G_HAVE_ATEXIT.
5673 Wed Feb  7 15:10:17 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
5675         * libio/filedoalloc.c (_IO_cleanup_registration_needed): Declare as
5676         extern.
5678 Sat Feb 24 11:34:13 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5680         * sysdeps/i386/memcmp.S: Fix argument %esp offsets.
5682         * time/sys/time.h (timeradd, timersub): New macros; BSD has these.
5684 Wed Feb 21 02:25:07 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5686         * Rules (others): Depend on $(extra-objs), $(install-lib),
5687         $(install-bin), $(install-sbin), in object directory.
5689         * Makeconfig (link-libc): Don't pass -rpath option with default
5690         path, since ld.so should use the same default.
5691         * Makerules (build-shlib): Likewise.
5693         * Makerules (make-target-directory): Use mkinstalldirs.
5695         * sysdeps/mach/i386/sysdep.h: Include unix/i386/sysdep.h to
5696         redefine ENTRY et al.
5698         * sysdeps/unix/sysv/linux/i386/sysdep.h (NO_UNDERSCORES, ENTRY):
5699         Macros removed.  The code in unix/i386/sysdep.h should now suffice.
5701         * sysdeps/unix/i386/sysdep.h (ALIGNARG): New macro, defns for
5702         [HAVE_ELF] and not.
5703         (ENTRY): Use it in .align directive.
5704         (CALL_MCOUNT): New macro, empty unless [PROF].
5705         (ENTRY): Do CALL_MCOUNT just after the label.
5707         * Makeconfig (CPPFLAGS-.po): New variable, use -DPROF so assembly
5708         code can call mcount.
5710 Tue Feb 20 23:05:16 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5712         * time/private.h, time/zdump.c, time/zic.c: Updated verbatim from ADO;
5713         translation markings are now integrated in his distribution.
5715         * stdlib/strtod.c (round_and_return): Add missing (mp_limb) 1 cast.
5717 Mon Feb 19 18:31:59 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5719         * po: New directory where `LANG.po' files for message translations
5720         will reside.
5721         * po/SYS_libc.pot: New file, template of message strings as in source.
5722         * MakeTAGS: New rules to build po/SYS_libc.pot automatically from
5723         the source using xgettext.
5724         * Makerules ($(..)po/%.pot): New rule.
5725         * manual/Makefile (../po/manual.pot): New target, make it empty.
5727         * sysdeps/unix/bsd/alarm.c: Moved to sysdeps/unix/alarm.c.
5728         * sysdeps/unix/bsd/nice.c: Moved to sysdeps/unix/nice.c.
5729         * sysdeps/unix/bsd/stime.c: Moved to sysdeps/unix/stime.c.
5730         * sysdeps/unix/bsd/time.c: Moved to sysdeps/unix/time.c.
5731         * sysdeps/unix/bsd/utime.c: Moved to sysdeps/unix/utime.c.
5733         * time/zic.c, time/scheck.c, time/private.h, time/tzfile.h:
5734         Updated from ADO 96d.
5736 Sun Feb 18 14:08:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5738         * csu/initfini.c (_init): Remove bogus volatile declarations and
5739         extra variable, take the address of __gmon_start__ only implicitly
5740         to avoid the test being optimized out.
5742 Sun Feb 18 15:08:10 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5744         * sysdeps/posix/utimes.c (__utimes): There are 1000000 usecs in a
5745         sec.
5747 Sun Feb 18 13:56:00 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5749         * elf/Makefile, time/Makefile: Make `all' the default target.
5751 Mon Feb 19 18:09:04 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5753         * misc/sys/ptrace.h: Moved to ...
5754         * sysdeps/generic/sys/ptrace.h: ... here.
5755         * sys/ptrace.h: File removed.
5757 Sun Feb 18 12:13:07 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5759         * sysdeps/unix/sysv/linux/Makefile (headers): Add fpu_control.h.
5761         * sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Put it into .bss
5762         so that the symbol alias works.
5764         * sysdeps/unix/sysv/linux/m68k/fpu_control.h (_FPU_SETCW): Corrected.
5766         * sysdeps/unix/sysv/linux/resourcebits.h: New file.
5768         * sysdeps/unix/sysv/linux/sys/ptrace.h: New file.
5770         * sysdeps/unix/sysv/linux/syscalls.list: Add getegid, geteuid,
5771         getppid and reboot.
5773         * sysdeps/unix/sysv/linux/sysconf.c: Special version that does not
5774         use getdtablesize.
5776 Sat Feb 17 10:30:21 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
5778         * stdio-common/printf_fp.c, stdlib/strtod.c, sysdeps/ieee754/dbl2mpn.c,
5779         sysdeps/ieee754/ldbl2mpn.c, sysdeps/ieee754/mpn2dbl.c,
5780         sysdeps/ieee754/mpn2ldbl.c: Cast left operands of shift instructions
5781         to `long' where necessary.
5783 Thu Feb 15 20:04:50 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5785         * stdlib/fpioconst.h: Introduce new constant _FPIO_CONST_OFFSET.
5786         * stdio-common/printf_fp.c, stdlib/strtod.c: Use _FPIO_CONST_OFFSET
5787         to correctly access MPN array depending on architecture.
5789 Mon Feb 19 15:30:26 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5791         * stdio-common/tstscanf.c (main): Add check for "0" as %d.
5793         * sysdeps/stub/msync.c: Undo change of Jan 29; just two args.
5794         Only some systems have three args; let them define their own stub.
5796         * sysdeps/generic/dl-sysdep.c: Declare _dl_secure.
5798         * sysdeps/generic/machine-gmon.h: New file.
5799         * gmon/Makefile (distribute): Add machine-gmon.h.
5800         * gmon/mcount.c: Undo changes of Feb 13.
5801         Include "machine-gmon.h".
5803 Sun Feb 18 13:24:06 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5805         * sysdeps/unix/sysv/linux/direct.h: File removed, since it is
5806         identical to unix/common/direct.h.
5808         * sysdeps/unix/Makefile [no_deps]: Don't include s-proto.d.
5810         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Don't add ipc.
5812         * stdio-common/Makefile (tests): Remove scanf6.
5814         * sysdeps/unix/sysv/linux/Makefile (non-lib.a): Append libieee.a.
5816         * time/mktime.c (mktime): Move static variable localtime_offset to
5817         file scope.
5819         * stdio-common/vfscanf.c: Put '0' in buffer before scanning for %i
5820         base indicator.
5822 Thu Feb 15 16:56:17 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5824         * sysdeps/m68k/dl-machine.h (elf_machine_load_address): Corrected.
5825         (ELF_MACHINE_BEFORE_RTLD_RELOC): Define.
5826         (_dl_runtime_resolve): Save %a1 as well.
5827         (ELF_MACHINE_RUNTIME_FIXUP_ARGS): Add second dummy arg.
5828         (elf_machine_relplt): Define.
5830         * elf/dl-runtime.c: Include possible extra args in declaration of
5831         fixup.
5833 Fri Feb 16 11:01:59 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5835         * time/tzset.c: Limit hours to 23, not 12.  From jaffer.
5837 Fri Feb 16 10:14:05 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5839         * Makeconfig (CFLAGS-.po): Use -pg instead of -p.
5841 Thu Feb 15 13:57:08 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5843         * mach/Machrules: Use -include for $(*.ir).
5845         * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS): Mask off type bits in
5846         request values.
5847         * sysdeps/mach/hurd/ioctls.h (_IOC_NOTYPE): New macro.
5848         (_IOT_COUNT2): Field is 3 bits, not 2.
5849         * sysdeps/mach/hurd/ioctl.c: Ignore handler if it fails with ENOTTY.
5850         * hurd/hurdioctl.c (_hurd_lookup_ioctl_handler): Mask off type
5851         bits before looking up handler.
5852         (fioctl): Use __hurd_dfail.
5853         (fioctl, fioclex): Use ENOTTY for bogus request instead of EGRATUITOUS.
5855 Thu Feb 15 11:49:45 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5857         * sysdeps/unix/sysv/sysv4/Makefile [$(subdir)-signal]
5858         (sysdep_routines): Don't add sys-sig.
5860         * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list: New file.
5862 Wed Feb 14 00:21:17 1996 David Mosberger-Tang  <davidm@azstarnet.com>
5864         * sysdeps/alpha/memchr.c (memchr): loop searching for matching
5865         character bailed out one too early; changed constant 6 to
5866         7 to fix this.
5868 Wed Feb 14 01:08:58 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5870         * posix/execvp.c: When executing shell on script, first arg is
5871         full file name, not argv[0].
5873         * mach/Makefile [no_deps]: Inhibit inclusion of mach-syscalls.mk.
5874         * mach/Machrules [no_deps]: Inhibit interface rules.
5876         * malloc/Makefile (distribute): Removed TODO.
5878 Tue Feb 13 05:12:02 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5880         * sysdeps/unix/sysv/linux/syscalls.list (ipc): Specify msgget in
5881         caller column.
5883         * sysdeps/unix/common/syscalls.list: Add sigaction syscall.
5885         * sysdeps/unix/sysv/linux/gnu/types.h: Moved from linux/i386.
5887         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=math]
5888         (sysdep_routines): Append setfpucw.
5889         (extra-objs): Append ieee-fpucw.o.
5890         (install-lib): Append libieee.a.
5891         (libieee.a): New target.
5892         * sysdeps/unix/sysv/linux/ieee-fpucw.c: New file.
5893         * sysdeps/unix/sysv/linux/i386/fpu_control.h
5894         (_FPU_GETCW, _FPU_SETCW): New macros.
5895         (fpu_control_t): New typedef.
5896         (__setfpucw): Use fpu_control_t for argument type.
5897         * sysdeps/unix/sysv/linux/fpu_control.c: Moved from linux/i386.
5899         * sysdeps/unix/sysv/linux/init-first.c: Moved from linux/i386.
5901         * sysdeps/unix/sysv/linux/syscalls.list: Add ipc syscall.
5902         * sysdeps/unix/sysv/linux/i386/syscalls.list: File removed.
5904 Sat Feb 10 13:09:03 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5906         * sysdeps/unix/sysv/linux/m68k/brk.c,
5907         sysdeps/unix/sysv/linux/m68k/mmap.S,
5908         sysdeps/unix/sysv/linux/m68k/select.S,
5909         sysdeps/unix/sysv/linux/m68k/sigcontext.h,
5910         sysdeps/unix/sysv/linux/m68k/sigreturn.S,
5911         sysdeps/unix/sysv/linux/m68k/socket.S,
5912         sysdeps/unix/sysv/linux/m68k/syscall.S,
5913         sysdeps/unix/sysv/linux/m68k/sysdep.S,
5914         sysdeps/unix/sysv/linux/m68k/sysdep.h: New files.
5916         * sysdeps/unix/sysv/linux/m68k/fpu_control.h: New file.
5918         * sysdeps/m68k/fpu/isinfl.c, sysdeps/m68k/fpu/isnanl.c,
5919         sysdeps/m68k/isinfl.c, sysdeps/m68k/isnanl.c: New files.
5921         * sysdeps/unix/sysv/linux/sys/mman.h: Define MAP_ANON and
5922         MAP_FILE if not already defined.
5924         * elf/elf.h: Add m68k reloc definitions.
5925         * sysdeps/m68k/dl-machine.h, sysdeps/m68k/elf/start.S: New files.
5927 Tue Feb 13 00:12:12 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5929         * elf/dl-runtime.c (fixup) [ELF_MACHINE_RUNTIME_FIXUP_ARGS]: Let
5930         this macro declare extra leading args.
5932         * Makerules [$(elf)=yes] (ar-symtab-name): Define to empty.
5934         * sysdeps/i386/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE,
5935         elf_machine_relplt): New macros.
5936         * elf/dl-runtime.c: New file.
5937         * sysdeps/i386/dl-runtime.c, sysdeps/stub/dl-runtime.c: Files removed.
5939         * gmon/Makefile (headers): Remove machine-gmon.h.
5940         * sysdeps/stub/machine-gmon.h, sysdeps/i386/machine-gmon.h: Removed.
5941         * gmon/mcount.c [! NO_UNDERSCORES] (_mcount): Specify "mcount" as
5942         the asm name.
5943         (_mcount): Define normally, taking no args.
5944         Use __builtin_return_address to fetch PC values of caller and caller's
5945         caller.
5947         * Makerules: Rewrote rules to update libc archives of all flavors.
5948         Define separate specific rules for each flavor using o-iterator.
5950         * sysdeps/unix/Makefile: Include s-proto.d only ifdef subdir.
5952 Sat Feb 10 11:35:16 1996 Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5954         * Makerules (ar-symtab-name): New macro.  Replace all occurences
5955         of __.SYMDEF by $(ar-symtab-name).
5956         * sysdeps/unix/sysv/Makefile (ar-symtab-name): Define as empty.
5958 Mon Feb 12 03:10:41 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
5960         * Makefile (configure, %/configure): Depend on aclocal.m4.
5961         * Make-dist (configure, %/configure): Likewise.
5963         * sysdeps/unix/Makefile: Include s-proto.d for its deps.
5965         * gmon/sys/gmon.h: Don't include machine-gmon.h; those defns are
5966         only needed in the implementation, not for any users.
5968         * time/northamerica: Updated from ADO 96c, new rules for Mexico in
5969         1996.
5971         * sunrpc/pm_getport.c: #if 0 out gratuitous inclusion of <net/if.h>.
5972         * sunrpc/pm_getmaps.c: Likewise.
5974         * sysdeps/unix/sysv/syscalls.list: Add setrlimit and settimeofday,
5975         so real syscalls override unix/sysv/*.c on sysv-derived systems
5976         that have them.
5977         * sysdeps/unix/common/syscalls.list: Add settimeofday here, to
5978         override unix/sysv/settimeofday.c since that overrides
5979         unix/syscalls.list.
5981         * Makeconfig (+link): Put $(link-libc) after deps from $^,
5982         regardless of where libc.a appears in the deps.
5984         * sysdeps/unix/sysv/sysv4/syscalls.list: Remove redundancies.
5985         Add __waitid.
5986         * sysdeps/unix/sysv/linux/syscalls.list: Remove redundancies.
5987         Define __ name for sigprocmask.
5988         * sysdeps/unix/bsd/ultrix4/syscalls.list: Remove redundancies.
5989         Add getsysinfo.
5990         * sysdeps/unix/bsd/sun/sunos4/syscalls.list: Remove redundancies.
5991         * sysdeps/unix/bsd/sun/syscalls.list: Remove redundancies.
5992         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove redundancies.
5993         * sysdeps/unix/bsd/syscalls.list: Remove settimeofday, utimes.
5994         Add getdents, wait3, waitpid.
5995         * sysdeps/unix/syscalls.list: Add seteuid, setegid, setsid,
5996         settimeofday, sigsuspend, sstk, utimes.
5997         * sysdeps/unix/bsd/ultrix4/mips/sigvec.S: File removed.
5998         * sysdeps/unix/bsd/ultrix4/mips/syscalls.list: New file.
5999         * sysdeps/unix/bsd/ultrix4/mips/Makefile (sysdep_routines):
6000         Removed sigtramp.
6001         * sysdeps/unix/bsd/ultrix4/mips/sigvec.c: Renamed from sigtramp.c.
6002         * sysdeps/unix/bsd/bsd4.4/sstk.S: File removed.
6003         * sysdeps/unix/bsd/hp/m68k/syscalls.list: File removed.
6004         * sysdeps/unix/bsd/osf/alpha/getdents.S: File removed.
6005         * sysdeps/unix/bsd/ultrix4/getsysinfo.S: File removed.
6006         * sysdeps/unix/bsd/ultrix4/waitpid.S: File removed.
6007         * sysdeps/unix/bsd/ultrix4/mips/sigtramp.c: File removed.
6008         * sysdeps/unix/bsd/ultrix4/mips/sigvec.S: File removed.
6009         * sysdeps/unix/bsd/ultrix4/mips/sigvec.c: New file.
6010         * sysdeps/unix/bsd/ultrix4/mips/syscalls.list: New file.
6011         * sysdeps/unix/sysv/irix4/wait3.S: File removed.
6012         * sysdeps/unix/sysv/sysv4/__waitid.S: File removed.
6013         * sysdeps/unix/sysv/sysv4/fchdir.S: File removed.
6014         * sysdeps/unix/sysv/sysv4/setegid.S: File removed.
6015         * sysdeps/unix/sysv/sysv4/seteuid.S: File removed.
6016         * sysdeps/unix/sysv/sysv4/sigaltstack.S: File removed.
6017         * sysdeps/unix/sysv/sysv4/solaris2/utimes.S: File removed.
6019         * hurd/hurdfault.c (_hurdsig_fault_init): Set qlimit on
6020         FORWARD_SIGEXC to one.  Uncomment setting of thread exc port, and
6021         move it to last thing.
6023 Sat Feb 10 05:57:08 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
6025         * sysdeps/generic/make_siglist.c: #undef _SIGNAL_H before defining it.
6027         * sysdeps/unix/sysv/linux/syscalls.list: Add sigprocmask, sigsuspend.
6029 Sat Feb 10 04:18:48 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6031         * posix/execvp.c: If execv fails with ENOEXEC, run the shell on
6032         the file.
6034 Fri Feb  9 11:46:45 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6036         * time/Makefile (CFLAGS-zdump.c, CFLAGS-zic.c, CFLAGS-ialloc.c,
6037         CFLAGS-scheck.c): Use -DNOID instead of -Wno-unused.
6039         * hurd/Makefile (user-interfaces): Added hurd/tioctl.
6041 Thu Feb  8 18:55:27 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6043         * hurd/hurdioctl.c (tiocsctty): Set the terminal's pgrp to our own.
6045 Wed Feb  7 18:48:30 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6047         * Makefile (subdirs): Added wcsmbs.
6048         * wcsmbs: New directory of wide char/multibyte char functions from
6049         drepper.
6051         * hurd/hurdmsg.c (_S_msg_report_wait): Function removed.
6052         * hurd/report-wait.c: New file.
6053         * hurd/Makefile (routines): Added report-wait.
6055         * sysdeps/mach/hurd/Makefile (inhibit-unix-syscalls): New variable.
6057         * sysdeps/mach/hurd/i386/intr-msg.h (struct mach_msg_trap_args):
6058         New type.
6059         (SYSCALL_EXAMINE, MSG_EXAMINE): New inline functions.
6060         * sysdeps/mach/hurd/i386/trampoline.c (struct mach_msg_trap_args):
6061         Structure moved to intr-msg.h; include that.
6063         * time/Makefile (CFLAGS-ialloc.c): Add -Wno-unused.
6064         (CFLAGS-scheck.c): New variable.
6066         * sysdeps/mach/hurd/dl-sysdep.c (__hurd_sigthread_stack_base,
6067         __hurd_sigthread_stack_end, __hurd_sigthread_variables,
6068         __hurd_threadvar_stack_mask): New variables.
6070         * sysdeps/mach/hurd/fork.c: Set the new task's exception port to
6071         its new message port.
6073         * misc/init-misc.c: Put __init_misc in the __libc_subinit set.
6075         * configure.in (uname): Add quoting.
6077         * sysdeps/mach/hurd/fchdir.c: Don't consult errno unless lookup fails.
6078         * hurd/fchroot.c: Likewise.
6080         * posix/sys/types.h [GCC >= 2.7]: Define intN_t/u_intN_t using
6081         __attribute__ ((__mode__ (__XX__))).
6083 Wed Feb 7 03:24:05 1996 Torbjorn Granlund  <tege@tmg.se>
6085         * sysdeps/i386/i586/memcopy.h (WORD_COPY_FWD): Manually allocate
6086         destination cache lines.
6087         (WORD_COPY_BWD): Likewise.
6089 Wed Feb  7 14:16:36 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6091         * sysdeps/generic/Makefile (make_siglist): Get signum.h absolute
6092         file name first thing, before $(native-compile) changes directories.
6094         From Gord Matzigkeit <gord@enci.ucalgary.ca>:
6095         * sysdeps/unix/make_errlist.c: Use strerror if available.
6096         * sysdeps/unix/configure.in: New file
6098         * sysdeps/unix/bsd/sun/syscalls.list: Added sigvec.
6099         * sysdeps/unix/bsd/sun/sigvec.S: File removed.
6101         * sysdeps/stub/sendto.c: Make sockaddr arg pointer to const.
6102         * sysdeps/stub/connect.c: Likewise.
6103         * sysdeps/stub/bind.c: Likewise.
6105         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): RETRYNAME of
6106         "" is only special for FS_RETRY_NORMAL; for FS_RETRY_REAUTH, do
6107         another dir_lookup of "".
6109 Tue Feb  6 12:46:29 1996  David Mosberger-Tang  <davidm@azstarnet.com>
6111         * libc-symbols.h (weak_alias, weak_symbol): added definitions
6112         for ECOFF (HAVE_ECOFF).
6114 Fri Feb  2 13:09:18 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6116         * sysdeps/mach/hurd/fork.c: Clear trace flag in child.
6118 Wed Jan 31 20:08:26 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6120         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Clear SS->intr_port
6121         when cancelled before RPC.
6123 Tue Jan 30 13:32:05 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6125         * dirent/scandir.c: Allocate dirents with correct size for name, and
6126         copy with correct size.
6128         * hurd/hurdinit.c [! PIC] (map0): New function, on _hurd_preinit_hook.
6130         * stdio-common/vfscanf.c (TYPEMOD): New macro of all type modifier
6131         flag bits.
6132         (__vfscanf): Fix checking of extra type modifiers.
6134         * time/asia, time/australasia, time/backward: Updated from ADO 96b.
6136 Tue Jan 30 12:17:26 1996  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6138         * stdlib/strtod.c: Only negate exponent when there really is one.
6140         * stdio-common/vfscanf.c: Accept type modifiers on %n.
6141         Fix FP number parsing.
6143 Mon Jan 29 21:53:40 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6145         * sysdeps/stub/msync.c (msync): Declare third arg FLAGS.
6147         * resolv/Makefile (+cflags): Append to this instead of CFLAGS.
6149 Mon Jan 29 16:29:16 1996  Miles Bader  <miles@gnu.ai.mit.edu>
6151         * sysdeps/mach/hurd/select.c (__select): Recalculate GOT to
6152         include an increment for each operation allowed on each fd.
6154 Mon Jan 29 11:44:38 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6156         * sysdeps/unix/sysv/linux/configure: Set $inhibit_glue.
6158         * Makefile: Use -include for sysd-dirs.
6160         * configure.in (uname): Check for uname in syscalls.list files.
6161         * sysdeps/unix/sysv/syscalls.list: Remove uname.
6162         * sysdeps/unix/syscalls.list: Add uname.
6164         * stdlib/strtol.c (weak1): New macro, to get the right name declared
6165         weak.
6167         * sysdeps/posix/getcwd.c (size_t): Don't define #ifdef __GNU_LIBRARY__.
6169         * db/hash/ndbm.c: Change all uses of `errno' struct member to `errnum'.
6170         (dbm_open): Use dynamic allocation for file name buffer, instead of
6171         limitting its size to MAXPATHLEN.
6173         * db/btree/bt_open.c (tmp): Use dynamic allocation for file name
6174         buffer, instead of limitting its size to MAXPATHLEN.
6176         * db/hash/hash.h (HTAB): Rename member `errno' to `errnum'.
6177         * db/hash/hash.c: Change all uses of `errno' struct member to `errnum'.
6179 Sun Jan 28 19:42:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6181         * time/Makefile: Fix check for cross compiling.
6183 Thu Jan 25 21:10:39 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6185         * db/Makefile (subdir-dirs): Renamed from dbdirs.
6187         * Makerules (distinfo-vars): Add subdir-dirs.
6189         * MakeTAGS: Remove vpath directives.
6190         (all-dirs): Prepend $(subdir-dirs).
6191         (all-sources, all-headers): Use wildcard to find sources.
6193 Mon Jan 29 10:44:38 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6195         * malloc/Makefile (CFLAGS-vm-limit.c, CFLAGS-ralloc.c): New
6196         variables.
6198         * mach/msgserver.c: Declare DEMUX arg with prototype.
6200 Sun Jan 28 17:25:38 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6202         * setjmp/setjmp.h (jmp_buf): Give a tag in the struct defn, to
6203         make C++ happy.
6204         * alpha/jmp_buf.h: Likewise.
6205         * m68k/jmp_buf.h: Likewise.
6206         * mips/jmp_buf.h: Likewise.
6207         * sparc/jmp_buf.h: Likewise.
6208         * vax/jmp_buf.h: Likewise.
6210         * sysdeps/generic/memmem.c: Fix return value in case where
6211         NEEDLE_LEN==0.
6213         * hurd/hurdlookup.c (__file_name_lookup_under,
6214         __file_name_lookup): Restrict mode with umask.
6215         * sysdeps/mach/hurd/xmknod.c: Restrict mode with umask.
6216         * sysdeps/mach/hurd/mkdir.c: Restrict mode with umask.
6218 Fri Jan 26 12:20:45 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6220         * stdlib/strtol.c: Undo last change.  ANSI C changed since the
6221         draft I checked yesterday.  Sigh.
6223 Thu Jan 25 18:58:25 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6225         * stdlib/strtol.c [UNSIGNED]: Don't recognize + or - as sign.
6227 Wed Jan 24 03:22:07 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6229         * malloc/mcheck.c (mabort): Declare prototype.
6231         * sysdeps/unix/sysv/linux/fcntlbits.h: Moved from linux/i386.
6233         * Makerules: Use -include for generated makefiles.
6235         * errno.h: Don't declare errno if it's defined as a macro.
6237         * stdio-common/vfscanf.c: Disallow l flag after ll or L.
6239         * stdio-common/Makefile (tests): Add scanf[1-9].
6240         * stdio-common/scanf[1-9].c: New files.  Bug tests from hjl.
6242 Wed Jan 24 04:18:36 1996  Paul Eggert  <eggert@twinsun.com>
6244         * strftime.c (strftime):
6245         When invoking self, check whether the subsidiary invocation failed.
6246         Use "???" (not "") to denote unknown time zone information.
6248         Make this source file portable to standalone contexts (e.g. GNU Emacs).
6249         <config.h>: Include if HAVE_CONFIG_H is defined.
6250         (HAVE_LIMITS_H, HAVE_MBLEN, HAVE_TM_ZONE, STDC_HEADERS): New symbols,
6251         defined if _LIBC or if <config.h> defines them.
6252         <ansidecl.h>, "../locale/localeinfo.h": Include only if _LIBC.
6253         <sys/types.h>: New include; some hosts require it for `time_t'.
6254         <ctype.h>: Include only if HAVE_MBLEN (since it's only needed then).
6255         <limits.h>: Include only if HAVE_LIMITS_H.
6256         <stddef.h, stdlib.h, string.h>: Include only if STDC_HEADERS.
6257         (memcpy): Define in terms of bcopy if !STDC_HEADERS.
6258         (__P, PTR): Define if not already defined.
6259         (__tzname, __daylight, __timezone): Remove macros; no longer needed.
6260         (add, strftime): Don't use NULL, for portability to some weird hosts.
6261         (fmt): If !_LIBC, don't assume sprintf returns a count.
6262         (week, strftime): Use old-style function declarations.
6263         (weekday_name, month_name): New constants.
6264         (strftime): Use traditional C values if locale support isn't available.
6265         Use `const' instead of CONST.  For time zones, use tm_zone if
6266         possible, then fall back on tzname.  Don't check for multibyte
6267         characters unless mblen is supported.  Use formats like %02d instead
6268         of %.2d, for portability to older hosts.
6270 Wed Jan 24 00:07:52 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6272         * stdio-common/vfscanf.c (GROUP, MALLOC): New flag macros.
6273         (__vfscanf): Eliminate flag vars that were redundant with FLAGS bits.
6274         Fix bug in recognition of %ll flag for long long.
6275         Fix overeager checks for conflicting type modifiers.
6276         With ' flag, match thousands separators for decimal numbers.
6278 Tue Jan 23 22:02:40 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6280         * locale/Makefile (CFLAGS-locfile-lex.c): New variable.
6282         * resolv/Makefile (CFLAGS): Disable some warnings.
6284         * sysdeps/generic/Makefile (elided-routines): Removed hypot.
6285         (+gccwarn): Set with override.
6287         * stdio-common/Makefile (CFLAGS-tst-printf.c): New variable.
6289         * posix/Makefile (CFLAGS-regex.c): New variable.
6291         * malloc/Makefile (CFLAGS-obstack.c): New variable.
6293         * io/Makefile (CFLAGS-fts.c): New variable.
6294         * io/fts.c (fts_open): Use prototypes for COMPAR decl.
6296 Tue Jan 23 21:35:32 1996  Miles Bader  <miles@gnu.ai.mit.edu>
6298         * sysdeps/mach/hurd/bind.c (bind): Ensure NAME for the AF_LOCAL
6299         case is '\0'-terminated.
6301 Tue Jan 23 19:49:54 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6303         * elf/rtld.c (dl_main): Support additional args in --list mode for
6304         debugging: look them up as symbol names and print values.
6306         * misc/getttyent.c (skip, value): Declare with prototypes in file
6307         scope.
6309         * csu/initfini.c (_init): Explicitly set a variable that is
6310         pointer to volatile with the address of __gmon_start__, to avoid
6311         the test being optimized out.
6313 Mon Jan 22 10:40:40 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6315         * sysdeps/posix/getcwd.c [__GNU_LIBRARY__]: Include unistd.h.
6317         * io/fts.h (FTSENT): Define fts_compar member with prototype.
6319         * hurd/hurd.h: Use prototype in getcttyid decl.
6321         * stdlib/l64a.c: Fix typo in last change.
6323         * stdlib/drand48-iter.c: Test limits.h macros instead of sizeof
6324         for determining size of types.
6325         * stdlib/srand48_r.c: Likewise.
6327         * misc/utmp.h: Declare login, logout, logwtmp.
6328         * misc/logout.c: Declare argument as pointer to const.
6329         * misc/login.c: Likewise.
6330         * misc/logwtmp.c: Likewise.
6331         Include time.h, string.h.
6333         * misc/efgcvt_r.c: Include stdlib.h.
6335         * io/mknod.c: Include sys/types.h.
6337         * gmon/sys/gmon.h: Declare monstartup, _mcleanup.
6339         * csu/gmon-start.c (_start, etext): Declare with prototypes.
6341         * stdio-common/vfscanf.c (%[): Fix range handling.
6343 Sun Jan 21 00:55:25 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6345         * misc/Makefile (headers): Rename queue.h to sys/queue.h.
6346         * misc/queue.h: Moved to misc/sys/queue.h.
6348         * sysdeps/unix/sysv/linux/shmat.c: Include sys/shm.h instead of
6349         sys/sem.h.
6351         * stdlib/stdlib.h [__USE_SVID]: Declare a64l, l64a.
6353         * stdlib/l64a.c: Use 6-bit numbers as indices in CONV_TABLE, not
6354         literal byte values.
6356         * misc/bsd-compat.c (getpgrp): Define with prototype.
6358         * misc/init-misc.c (__progname_full): New variable.
6359         (program_invocation_name, program_invocation_short_name): New aliases.
6360         (__init_misc): Define with prototype.  Set __progname_full.
6361         * misc/progname.c: File removed.
6362         * misc/Makefile (aux): Remove progname.
6364         * misc/hsearch_r.c (isprime): Define with prototype.
6366         * sysdeps/unix/sysv/linux/seteuid.c: Just include unix/bsd version.
6367         * sysdeps/unix/bsd/seteuid.c: Disallow arg of -1.
6368         * sysdeps/unix/bsd/setegid.c: Likewise.
6370 Fri Jan 19 13:28:59 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6372         * sysdeps/unix/sysv/linux/tcdrain.c: Define tcdrain, not
6373         __tcdrain.
6375         * posix/glob.c (glob): Use prototype in getlogin decl.
6377         * db/ndbm.h: Declare dbm_error, dbm_clearerr.
6378         * db/db/db.c (__dberr): Define with prototype.
6379         (__dbpanic): Use prototypes in casts.
6380         * db/hash/hash_log2.c: Add prototype decl.
6382         * sysdeps/generic/_strerror.c (_strerror_internal): Define with
6383         prototype.
6385         * sysdeps/unix/mkdir.c, syspdep/unix/rmdir.c: Moved from unix/sysv.
6386         They will be overridden with syscalls if extant by unix/syscalls.list.
6388         * Makeconfig (+gccwarn): Add -Wstrict-prototypes.
6390         * stdio-common/printf_fp.c (__printf_fp): Define with prototype.
6391         * stdio-common/vfprintf.c (_IO_helper_overflow): Likewise.
6393 Thu Jan 18 00:32:43 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6395         * io/Makefile (routines): Add mknod, xstat fxstat lxstat xmknod.
6397         * sysdeps/unix/sysv/linux/ptrace.c: Use ... decl, and stdarg.h to
6398         get args.
6400         * posix/glob.c (_GNU_SOURCE): Define if undefined, so glob.h
6401         defines GNU extensions.
6402         * posix/fnmatch.c: Likewise.
6404         Replaced all simple system call files *.S throughout sysdeps/unix
6405         with syscalls.list files to be processed by make-syscalls.sh.
6406         * sysdeps/unix/s-proto.S: New file.
6407         * sysdeps/unix/syscalls.list: New file.
6408         * sysdeps/unix/bsd/syscalls.list: New file.
6409         * sysdeps/unix/bsd/bsd4.4/syscalls.list: New file.
6410         * sysdeps/unix/bsd/hp/m68k/syscalls.list: New file.
6411         * sysdeps/unix/bsd/osf/syscalls.list: New file.
6412         * sysdeps/unix/bsd/osf/alpha/syscalls.list: New file.
6413         * sysdeps/unix/bsd/sony/newsos4/syscalls.list: New file.
6414         * sysdeps/unix/bsd/sun/syscalls.list: New file.
6415         * sysdeps/unix/bsd/sun/sunos4/syscalls.list: New file.
6416         * sysdeps/unix/bsd/ultrix4/syscalls.list: New file.
6417         * sysdeps/unix/common/syscalls.list: New file.
6418         * sysdeps/unix/inet/syscalls.list: New file.
6419         * sysdeps/unix/mman/syscalls.list: New file.
6420         * sysdeps/unix/sysv/syscalls.list: New file.
6421         * sysdeps/unix/sysv/irix4/syscalls.list: New file.
6422         * sysdeps/unix/sysv/isc2.2/syscalls.list: New file.
6423         * sysdeps/unix/sysv/linux/syscalls.list: New file.
6424         * sysdeps/unix/sysv/linux/i386/syscalls.list: New file.
6425         * sysdeps/unix/sysv/sco3.2.4/syscalls.list: New file.
6426         * sysdeps/unix/sysv/sysv4/syscalls.list: New file.
6427         * sysdeps/unix/sysv/sysv4/i386/syscalls.list: New file.
6428         * sysdeps/unix/sysv/sysv4/solaris2/sparc/syscalls.list: New file.
6429         * sysdeps/unix/acct.S: File removed.
6430         * sysdeps/unix/chdir.S: File removed.
6431         * sysdeps/unix/chmod.S: File removed.
6432         * sysdeps/unix/chown.S: File removed.
6433         * sysdeps/unix/chroot.S: File removed.
6434         * sysdeps/unix/close.S: File removed.
6435         * sysdeps/unix/configure: File removed.
6436         * sysdeps/unix/configure.in: File removed.
6437         * sysdeps/unix/dup.S: File removed.
6438         * sysdeps/unix/fcntl.S: File removed.
6439         * sysdeps/unix/fsync.S: File removed.
6440         * sysdeps/unix/getgid.S: File removed.
6441         * sysdeps/unix/getpid.S: File removed.
6442         * sysdeps/unix/getuid.S: File removed.
6443         * sysdeps/unix/ioctl.S: File removed.
6444         * sysdeps/unix/kill.S: File removed.
6445         * sysdeps/unix/link.S: File removed.
6446         * sysdeps/unix/lseek.S: File removed.
6447         * sysdeps/unix/open.S: File removed.
6448         * sysdeps/unix/ptrace.S: File removed.
6449         * sysdeps/unix/read.S: File removed.
6450         * sysdeps/unix/reboot.S: File removed.
6451         * sysdeps/unix/setgid.S: File removed.
6452         * sysdeps/unix/setuid.S: File removed.
6453         * sysdeps/unix/sync.S: File removed.
6454         * sysdeps/unix/umask.S: File removed.
6455         * sysdeps/unix/unlink.S: File removed.
6456         * sysdeps/unix/write.S: File removed.
6457         * sysdeps/unix/bsd/flock.S: File removed.
6458         * sysdeps/unix/bsd/getdtsz.S: File removed.
6459         * sysdeps/unix/bsd/getpagesize.S: File removed.
6460         * sysdeps/unix/bsd/killpg.S: File removed.
6461         * sysdeps/unix/bsd/profil.S: File removed.
6462         * sysdeps/unix/bsd/readv.S: File removed.
6463         * sysdeps/unix/bsd/settimeofday.S: File removed.
6464         * sysdeps/unix/bsd/sigblock.S: File removed.
6465         * sysdeps/unix/bsd/sigpause.S: File removed.
6466         * sysdeps/unix/bsd/sigsetmask.S: File removed.
6467         * sysdeps/unix/bsd/sigstack.S: File removed.
6468         * sysdeps/unix/bsd/sigvec.S: File removed.
6469         * sysdeps/unix/bsd/utimes.S: File removed.
6470         * sysdeps/unix/bsd/writev.S: File removed.
6471         * sysdeps/unix/bsd/bsd4.4/chflags.S: File removed.
6472         * sysdeps/unix/bsd/bsd4.4/fchdir.S: File removed.
6473         * sysdeps/unix/bsd/bsd4.4/fchflags.S: File removed.
6474         * sysdeps/unix/bsd/bsd4.4/getdents.S: File removed.
6475         * sysdeps/unix/bsd/bsd4.4/getdomain.S: File removed.
6476         * sysdeps/unix/bsd/bsd4.4/revoke.S: File removed.
6477         * sysdeps/unix/bsd/bsd4.4/setdomain.S: File removed.
6478         * sysdeps/unix/bsd/bsd4.4/setegid.S: File removed.
6479         * sysdeps/unix/bsd/bsd4.4/seteuid.S: File removed.
6480         * sysdeps/unix/bsd/bsd4.4/setlogin.S: File removed.
6481         * sysdeps/unix/bsd/bsd4.4/setsid.S: File removed.
6482         * sysdeps/unix/bsd/bsd4.4/sigaltstack.S: File removed.
6483         * sysdeps/unix/bsd/bsd4.4/wait4.S: File removed.
6484         * sysdeps/unix/bsd/hp/m68k/getdents.S: File removed.
6485         * sysdeps/unix/bsd/osf/msync.S: File removed.
6486         * sysdeps/unix/bsd/osf/alpha/wait4.S: File removed.
6487         * sysdeps/unix/bsd/sony/newsos4/fchdir.S: File removed.
6488         * sysdeps/unix/bsd/sony/newsos4/sys_wait4.S: File removed.
6489         * sysdeps/unix/bsd/sun/getdents.S: File removed.
6490         * sysdeps/unix/bsd/sun/sunos3/m68k/wait.S: File removed.
6491         * sysdeps/unix/bsd/sun/sunos4/msync.S: File removed.
6492         * sysdeps/unix/bsd/sun/sunos4/poll.S: File removed.
6493         * sysdeps/unix/bsd/sun/sunos4/setsid.S: File removed.
6494         * sysdeps/unix/bsd/sun/sunos4/sys_mmap.S: File removed.
6495         * sysdeps/unix/bsd/sun/sunos4/sys_wait4.S: File removed.
6496         * sysdeps/unix/bsd/sun/sunos4/uname.S: File removed.
6497         * sysdeps/unix/bsd/ultrix4/getdents.S: File removed.
6498         * sysdeps/unix/bsd/ultrix4/setsid.S: File removed.
6499         * sysdeps/unix/bsd/ultrix4/uname.S: File removed.
6500         * sysdeps/unix/common/access.S: File removed.
6501         * sysdeps/unix/common/adjtime.S: File removed.
6502         * sysdeps/unix/common/dup2.S: File removed.
6503         * sysdeps/unix/common/fchmod.S: File removed.
6504         * sysdeps/unix/common/fchown.S: File removed.
6505         * sysdeps/unix/common/ftruncate.S: File removed.
6506         * sysdeps/unix/common/getgroups.S: File removed.
6507         * sysdeps/unix/common/getitimer.S: File removed.
6508         * sysdeps/unix/common/getpgid.S: File removed.
6509         * sysdeps/unix/common/getpriority.S: File removed.
6510         * sysdeps/unix/common/getrlimit.S: File removed.
6511         * sysdeps/unix/common/getrusage.S: File removed.
6512         * sysdeps/unix/common/gettimeofday.S: File removed.
6513         * sysdeps/unix/common/mkdir.S: File removed.
6514         * sysdeps/unix/common/readlink.S: File removed.
6515         * sysdeps/unix/common/rename.S: File removed.
6516         * sysdeps/unix/common/rmdir.S: File removed.
6517         * sysdeps/unix/common/select.S: File removed.
6518         * sysdeps/unix/common/setgroups.S: File removed.
6519         * sysdeps/unix/common/setitimer.S: File removed.
6520         * sysdeps/unix/common/setpgid.S: File removed.
6521         * sysdeps/unix/common/setpriority.S: File removed.
6522         * sysdeps/unix/common/setregid.S: File removed.
6523         * sysdeps/unix/common/setreuid.S: File removed.
6524         * sysdeps/unix/common/setrlimit.S: File removed.
6525         * sysdeps/unix/common/swapon.S: File removed.
6526         * sysdeps/unix/common/symlink.S: File removed.
6527         * sysdeps/unix/common/truncate.S: File removed.
6528         * sysdeps/unix/common/vhangup.S: File removed.
6529         * sysdeps/unix/inet/accept.S: File removed.
6530         * sysdeps/unix/inet/bind.S: File removed.
6531         * sysdeps/unix/inet/connect.S: File removed.
6532         * sysdeps/unix/inet/gethostid.S: File removed.
6533         * sysdeps/unix/inet/gethostname.S: File removed.
6534         * sysdeps/unix/inet/getpeername.S: File removed.
6535         * sysdeps/unix/inet/getsockname.S: File removed.
6536         * sysdeps/unix/inet/getsockopt.S: File removed.
6537         * sysdeps/unix/inet/listen.S: File removed.
6538         * sysdeps/unix/inet/recv.S: File removed.
6539         * sysdeps/unix/inet/recvfrom.S: File removed.
6540         * sysdeps/unix/inet/recvmsg.S: File removed.
6541         * sysdeps/unix/inet/send.S: File removed.
6542         * sysdeps/unix/inet/sendmsg.S: File removed.
6543         * sysdeps/unix/inet/sendto.S: File removed.
6544         * sysdeps/unix/inet/sethostid.S: File removed.
6545         * sysdeps/unix/inet/sethostname.S: File removed.
6546         * sysdeps/unix/inet/setsockopt.S: File removed.
6547         * sysdeps/unix/inet/shutdown.S: File removed.
6548         * sysdeps/unix/inet/socket.S: File removed.
6549         * sysdeps/unix/inet/socketpair.S: File removed.
6550         * sysdeps/unix/mman/madvise.S: File removed.
6551         * sysdeps/unix/mman/mmap.S: File removed.
6552         * sysdeps/unix/mman/mprotect.S: File removed.
6553         * sysdeps/unix/mman/msync.S: File removed.
6554         * sysdeps/unix/mman/munmap.S: File removed.
6555         * sysdeps/unix/sysv/alarm.S: File removed.
6556         * sysdeps/unix/sysv/ftime.S: File removed.
6557         * sysdeps/unix/sysv/nice.S: File removed.
6558         * sysdeps/unix/sysv/pause.S: File removed.
6559         * sysdeps/unix/sysv/poll.S: File removed.
6560         * sysdeps/unix/sysv/s_getdents.S: File removed.
6561         * sysdeps/unix/sysv/signal.S: File removed.
6562         * sysdeps/unix/sysv/stime.S: File removed.
6563         * sysdeps/unix/sysv/time.S: File removed.
6564         * sysdeps/unix/sysv/times.S: File removed.
6565         * sysdeps/unix/sysv/ulimit.S: File removed.
6566         * sysdeps/unix/sysv/uname.S: File removed.
6567         * sysdeps/unix/sysv/utime.S: File removed.
6568         * sysdeps/unix/sysv/irix4/getpgid.S: File removed.
6569         * sysdeps/unix/sysv/irix4/msync.S: File removed.
6570         * sysdeps/unix/sysv/irix4/setpgid.S: File removed.
6571         * sysdeps/unix/sysv/irix4/signal.S: File removed.
6572         * sysdeps/unix/sysv/irix4/sysmp.S: File removed.
6573         * sysdeps/unix/sysv/irix4/syssgi.S: File removed.
6574         * sysdeps/unix/sysv/isc2.2/rename.S: File removed.
6575         * sysdeps/unix/sysv/linux/adjtimex.S: File removed.
6576         * sysdeps/unix/sysv/linux/fork.S: File removed.
6577         * sysdeps/unix/sysv/linux/getpgid.S: File removed.
6578         * sysdeps/unix/sysv/linux/getpgrp.S: File removed.
6579         * sysdeps/unix/sysv/linux/getsid.S: File removed.
6580         * sysdeps/unix/sysv/linux/gtty.S: File removed.
6581         * sysdeps/unix/sysv/linux/mlock.S: File removed.
6582         * sysdeps/unix/sysv/linux/mlockall.S: File removed.
6583         * sysdeps/unix/sysv/linux/mount.S: File removed.
6584         * sysdeps/unix/sysv/linux/munlock.S: File removed.
6585         * sysdeps/unix/sysv/linux/munlockall.S: File removed.
6586         * sysdeps/unix/sysv/linux/pipe.S: File removed.
6587         * sysdeps/unix/sysv/linux/s_ptrace.S: File removed.
6588         * sysdeps/unix/sysv/linux/setpgid.S: File removed.
6589         * sysdeps/unix/sysv/linux/setsid.S: File removed.
6590         * sysdeps/unix/sysv/linux/settimeofday.S: File removed.
6591         * sysdeps/unix/sysv/linux/sigpending.S: File removed.
6592         * sysdeps/unix/sysv/linux/stty.S: File removed.
6593         * sysdeps/unix/sysv/linux/umount.S: File removed.
6594         * sysdeps/unix/sysv/linux/wait4.S: File removed.
6595         * sysdeps/unix/sysv/linux/i386/ipc.S: File removed.
6596         * sysdeps/unix/sysv/sco3.2.4/pathconf.S: File removed.
6597         * sysdeps/unix/sysv/sco3.2.4/pgrpsys.S: File removed.
6598         * sysdeps/unix/sysv/sco3.2.4/sco_getgrp.S: File removed.
6599         * sysdeps/unix/sysv/sco3.2.4/sigpending.S: File removed.
6600         * sysdeps/unix/sysv/sco3.2.4/sigprocmask.S: File removed.
6601         * sysdeps/unix/sysv/sco3.2.4/sigsuspend.S: File removed.
6602         * sysdeps/unix/sysv/sysv4/pgrpsys.S: File removed.
6603         * sysdeps/unix/sysv/sysv4/sigprocmask.S: File removed.
6604         * sysdeps/unix/sysv/sysv4/sigsuspend.S: File removed.
6605         * sysdeps/unix/sysv/sysv4/sysconfig.S: File removed.
6606         * sysdeps/unix/sysv/sysv4/sysinfo.S: File removed.
6607         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sys-sig.S: File removed.
6609         * io/mknod.c: New file.
6611         * Makerules (COMPILE.s): New variable.
6613         * sysdeps/unix/Makefile (sysd-syscalls): New target; generate with
6614         make-syscalls.sh and include it.
6615         [$(subdir)=misc] (sysdep_routines): Append extra syscalls from
6616         sysd-syscalls.
6617         * sysdeps/unix/make-syscalls.sh: New file.
6619         * Makerules (COMPILE.S): New variable.
6621 Wed Jan 17 11:04:58 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6623         * sysdeps/unix/sysv/linux/statbuf.h (_STAT_VER_LINUX,
6624         _STAT_VER_SVR4, _STAT_VER): New macros.
6625         (_MKNOD_VER_LINUX, _MKNOD_VER_SVR4, _MKNOD_VER): New macros.
6627         * sysdeps/unix/sysv/sysv4/i386/statbuf.h (_STAT_VER, _MKNOD_VER):
6628         New macros.
6630         * io/sys/stat.h (_STAT_VER, _MKNOD_VER): New macros.
6631         (__xstat, __fxstat, __lxstat, __xmknod): Declare new functions.
6632         [__GNUC__] (stat, fstat, lstat, mknod): Define these (and __ names)
6633         as `extern inline's calling the `x' functions.
6634         * io/fstat.c: New file.
6635         * io/lstat.c: New file.
6636         * io/stat.c: New file.
6637         * sysdeps/generic/lstat.c: File removed.
6638         * sysdeps/generic/lxstat.c: New file.
6639         * sysdeps/mach/hurd/fstat.c: File removed.
6640         * sysdeps/mach/hurd/fxstat.c: New file.
6641         * sysdeps/mach/hurd/lstat.c: File removed.
6642         * sysdeps/mach/hurd/lxstat.c: New file.
6643         * sysdeps/mach/hurd/mknod.c: File removed.
6644         * sysdeps/mach/hurd/stat.c: File removed.
6645         * sysdeps/mach/hurd/xmknod.c: New file.
6646         * sysdeps/mach/hurd/xstat.c: New file.
6647         * sysdeps/stub/fstat.c: File removed.
6648         * sysdeps/stub/fxstat.c: New file.
6649         * sysdeps/stub/lstat.c: File removed.
6650         * sysdeps/stub/lxstat.c: New file.
6651         * sysdeps/stub/mknod.c: File removed.
6652         * sysdeps/stub/stat.c: File removed.
6653         * sysdeps/stub/xmknod.c: New file.
6654         * sysdeps/stub/xstat.c: New file.
6655         * sysdeps/unix/common/lstat.S: File removed.
6656         * sysdeps/unix/common/lxstat.c: New file.
6657         * sysdeps/unix/fstat.S: File removed.
6658         * sysdeps/unix/fxstat.c: New file.
6659         * sysdeps/unix/mknod.S: File removed.
6660         * sysdeps/unix/stat.S: File removed.
6661         * sysdeps/unix/sysv/linux/fstat.c: File removed.
6662         * sysdeps/unix/sysv/linux/i386/fxstat.S: File removed.
6663         * sysdeps/unix/sysv/linux/i386/lxstat.S: File removed.
6664         * sysdeps/unix/sysv/linux/i386/xmknod.S: File removed.
6665         * sysdeps/unix/sysv/linux/i386/xstat.S: File removed.
6666         * sysdeps/unix/sysv/linux/lstat.c: File removed.
6667         * sysdeps/unix/sysv/linux/mknod.c: File removed.
6668         * sysdeps/unix/sysv/linux/stat.c: File removed.
6669         * sysdeps/unix/sysv/sysv4/i386/fstat.S: File removed.
6670         * sysdeps/unix/sysv/sysv4/i386/lstat.S: File removed.
6671         * sysdeps/unix/sysv/sysv4/i386/mknod.S: File removed.
6672         * sysdeps/unix/sysv/sysv4/i386/stat.S: File removed.
6673         * sysdeps/unix/xmknod.c: New file.
6674         * sysdeps/unix/xstat.c: New file.
6675         * sysdeps/unix/mkfifo.c: Use __xmknod instead of __mknod.
6676         * misc/Makefile (routines): Remove mknod.
6678         * sysdeps/ieee754/ieee754.h (union ieee854_long_double.ieee_nan):
6679         Add missing ; in little-endian case.
6681         * elf/dynamic-link.h [ELF_MACHINE_NO_REL] (ELF_DYNAMIC_DO_REL):
6682         Define this instead of ELF_DYNAMIC_DO_RELA.
6684         * sysdeps/unix/sysv/time.S: Moved from sysv4.
6685         * sysdeps/unix/sysv/irix4/time.S: File removed.
6687         * sysdeps/unix/sysv/linux/signum.h: Moved from
6688         sysdeps/unix/sysv/linux/i386.
6689         (_NSIG): Move inside #ifdef _SIGNAL_H.
6691 Tue Jan 16 17:37:39 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6693         * sysdeps/unix/seekdir.c: Don't modify POS before seeking.
6694         * sysdeps/unix/telldir.c: Fix position calculation to account for
6695         buffered data properly.
6697         * sysdeps/m68k/Makefile (crypt): Don't define if building a shared
6698         library.
6700         * csu/initfini.c (_init): Call __gmon_start__ if defined (weak ref).
6701         * csu/gmon-start.c (__gmon_start__): Renamed from gmon_start, made
6702         global.
6703         [! HAVE_INITFINI]: Only make it a constructor in this case.
6705         * gmon/Makefile (CFLAGS-mcount.c): New variable.
6706         (mcount.po): New target.
6708         * Makeconfig (CFLAGS): Append $(CFLAGS-$(<F)).
6710         * csu/Makefile [have-initfini=yes] (CPPFLAGS): Append -DHAVE_INITFINI.
6711         (initfini): Compile initfini.c with -fPIC.
6713 Sun Jan 14 01:01:10 1996  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6715         * sysdeps/mips/bytesex.h: Add default byte sex.  By Ralf Baechle.
6717         * sysdeps/unix/sysv/linux/adjtime.c [! MOD_OFFSET]: Use `mode'
6718         member of `struct timex' instead of `modes'.  From Andreas Schwab.
6720         * sysdeps/unix/sysv/linux/mknod.c: New file.  Generic C version.
6721         * sysdeps/unix/sysv/linux/i386/mknod.S: Remove assembler version.
6723         * sysdeps/unix/sysv/linux/Makefile (inhibit-glue): New variable.
6724         [$(subdir) = misc] (sysdep_routines): Add mount, umount, and s_ptrace.
6725         [$(subdir) = misc] (headers): Append sys/mount.h.
6727         * sysdeps/unix/sysv/linux/mount.S, sysdeps/unix/sysv/linux/umount.S:
6728         New files.  Implement system calls.
6729         * sysdeps/unix/sysv/linux/sys/mount.h: New header file.
6731         * sysdeps/unix/sysv/linux/ptrace.c: New file.  Wrapper around
6732         ptrace system call.
6733         * sysdeps/unix/sysv/linux/s_ptrace.S: New file: ptrace system call.
6735         * sysdeps/unix/sysv/linux/i386/gnu/types.h: New file with correct
6736         types for i386/Linux.
6738 Sun Jan 14 17:51:09 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6740         * MakeTAGS (all-sources, all-headers): Always search the
6741         current directory first.
6743         * db/btree/bt_seq.c (__bt_first): Return RET_SPECIAL when key not
6744         found.
6746         * stdio-common/vfscanf.c (inchar, conv_error, input_error,
6747         memory_error): Add cast to void to avoid gcc warning.
6748         (vfscanf): Rewrite character class parsing to make it more efficient.
6750         * misc/efgcvt_r.c (ecvt_r): Handle negative values.
6752         * stdlib/stdlib.h: Replace __CONSTVALUE by attribute.
6753         * stdlib/abs.c, stdlib/div.c, stdlib/labs.c, stdlib/ldiv.c,
6754         sysdeps/generic/hypot.c: Remove obsolete __CONSTVALUE.
6756         * stdio-common/printf_fp.c (__printf_fp): Fix parameter
6757         declaration.
6759         * sysdeps/generic/putenv.c (putenv): Fix second argument of
6760         setenv.
6762         * sysdeps/ieee754/hypot.c: New file, extracted out of cabs.c.
6763         * sysdeps/ieee754/cabs.c: Don't define hypot here.
6765         * sysdeps/ieee754/ieee754.h (union ieee854_long_double): Fix
6766         definition of ieee_nan alternative.
6768         * sysdeps/m68k/__longjmp.c, sysdeps/m68k/setjmp.c: Add register
6769         prefix spec.
6771         * sysdeps/m68k/ffs.c (ffs): Fix register constraint.
6773         * sysdeps/m68k/fpu/__math.h: Include <errno.h>.  Replace obsolete
6774         __CONSTVALUE by attribute.
6775         (floor): Round to negative infinity.
6776         (rint, expm1) [__NO_MATH_INLINES]: Don't define, to avoid type
6777         clash when compiling source.
6778         (pow): Handle x == 0 and x < 0.
6779         (ceil, __isinf, __isnan): Fix register constraints.
6780         (__isinfl, __isnanl): Added.
6781         * sysdeps/m68k/fpu/acos.c, sysdeps/m68k/fpu/atan2.c,
6782         sysdeps/m68k/fpu/fmod.c, sysdeps/m68k/fpu/ldexp.c,
6783         sysdeps/m68k/fpu/pow.c: Remove obsolete __CONSTVALUE.
6785         * sysdeps/m68k/bsd-_setjmp.S, sysdeps/m68k/bsd-setjmp.S: Fix
6786         assembler syntax.
6788         * sysdeps/unix/bsd/bsd4.4/fchdir.S (fchdir): Take only one
6789         argument.
6791         * sysdeps/unix/bsd/clock.c (timeval_to_clock_t): Fix timeval to
6792         clock_t conversion.
6793         (clock): Don't multiply by CLOCKS_PER_SEC.
6795         * sysdeps/unix/bsd/poll.c (poll): Fix msec to timeval conversion.
6797         * sysdeps/unix/bsd/sun/m68k/brk.S (brk): Compare with address of
6798         __end.
6800         * sysdeps/unix/bsd/sun/m68k/vfork.S: Fix assembler syntax.
6802         * sysdeps/unix/bsd/ualarm.c (ualarm): Fix timeval calculation.
6804         * sysdeps/unix/bsd/vax/vfork.S: Remove duplicate label.
6806 Sun Jan 14 01:01:10 1996  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6808         * stdlib/strtol.c: Return correct pointer for strings
6809         like "0xyz" and base 0 or 16.
6811         * string/strxfrm.c: Handle case for LENGTH == 0 correct.
6813         * sunrpc/etc.rpc: Add some more known protocols.
6815 Fri Jan 12 13:40:01 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6817         * posix/gnu/types.h: Moved to sysdeps/generic/gnu/types.h.
6819         * posix/glob.c (glob): Add parens in glob call flags arg for
6820         GLOB_BRACE case.
6822         * string/string.h (strdupa): New macro.
6824         * stdio-common/vfscanf.c (%[): Grok ] as first char in set, not
6825         terminator on empty set.  From drepper.
6827 Thu Jan 11 13:09:20 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6829         * elf/do-rel.h (elf_dynamic_do_rel): Use referring symbol as
6830         referent for STB_LOCAL.
6832 Wed Jan 10 10:11:39 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6834         * time/africa, time/antarctica, time/asia, time/australasia,
6835         time/europe, time/northamerica, time/pacificnew, time/solar87,
6836         time/solar88, time/solar89, time/southamerica: Updated from ADO 96a.
6838 Tue Jan  9 16:10:26 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6840         * elf/dl-load.c (_dl_map_object_from_fd): After mapping first
6841         segment to find location, mprotect excess region to no access,
6842         don't munmap it.
6844         * sysdeps/mach/hurd/dl-sysdep.c (mmap): If vm_map returns
6845         KERN_NO_SPACE for fixed location, deallocate it and try again.
6847 Mon Jan  8 17:43:23 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6849         * locale/Makefile (lib-modules): Renamed hash to locfile-hash.
6850         * locale/hash.c: Renamed to locale/locfile-hash.c.
6852 Sat Jan  6 16:39:14 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6854         * Makefile (subdirs): Added db.
6856         * resolv/Makefile (routines): Add res_data.
6857         * resolv/res_data.c, resolv/res_debug.c, resolv/resolv.h:
6858         Updated from BIND 4.9.3 final release.
6860         * elf/dynamic-link.h (elf_get_dynamic_info): Handle
6861         processor-specific tags.
6862         (ELF_DYNAMIC_DO_REL, ELF_DYNAMIC_DO_RELA): Handle absent DT_PLTREL tag.
6864         * elf/elf.h (DT_MIPS_NUM, DT_PROCNUM): New macros.
6865         * elf/link.h (struct link_map): Extend `l_info' by DT_PROCNUM.
6867         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Take new
6868         arg LAZY.  Only do our work if LAZY and there is a DT_JMPREL record.
6869         * elf/dl-reloc.c (_dl_relocate_object): Call
6870         elf_machine_runtime_setup unconditionally, and pass it LAZY flag.
6872         * elf/dl-load.c: Fixed ELFMAG check to work for either byte order.
6873         Align end of load segment only to page size, not to segment alignment.
6875 Thu Jan  4 11:35:18 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6877         * sysdeps/mach/hurd/setitimer.c: Code rearranged a bit to use new
6878         preemption interface.
6880         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
6881         Use _hurdsig_catch_memory_fault.
6883         * hurd/Makefile (headers): Add hurd/sigpreempt.h.
6884         (sig): Add catch-signal.
6886         * hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise):
6887         Rewritten using a preempter in new interface.
6888         * hurd/hurdfault.h (_hurdsig_catch_fault): Likewise.
6889         (_hurdsig_catch_memory_fault): New macro.
6891 Wed Jan  3 20:23:42 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6893         * hurd/catch-signal.c: New file.
6895         * hurd/intr-msg.c: When restarting RPC, fetch a new reply port.
6897         * hurd/hurdsig.c: Use new hurdfault.h interface.
6898         (abort_all_rpcs): Mutate return value to EINTR in threads whose
6899         replies we will wait for.
6901         * hurd/hurdkill.c (_hurd_sig_post): When doing pgrp, make sure we
6902         do ourselves last.
6904 Wed Jan  3 19:17:10 1996  Miles Bader  <miles@gnu.ai.mit.edu>
6906         * sysdeps/mach/hurd/access.c (__access): Put the uid/gid arguments
6907         to auth_makeauth() in the right order.
6909 Wed Jan  3 17:19:04 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6911         * sysdeps/generic/strsep.c: Rewritten.
6913         * sysdeps/mach/hurd/fork.c: Use a different workaround for the
6914         suspended page fault deadlock kernel bug: thread_abort our signal
6915         thread first thing after proc_dostop.
6917         * sysdeps/mach/hurd/setgid.c: Rewrote gid frobnication to
6918         recognize rootness properly.
6920 Tue Jan  2 00:50:10 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6922         * hurd/hurd/signal.h (struct hurd_sigstate): New member `preempters'.
6923         (hurd_preempt_signals, hurd_unpreempt_signals): Decls removed.
6924         * hurd/hurd/sigpreempt.h: New file.
6925         * hurd/preempt-sig.c: Rewritten with new interface.
6926         * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Remove local signal
6927         preempters being unwound past.
6928         * hurd/hurdsig.c: Use new signal preemption interface.
6930         * db: New directory, 4.4 BSD db package incorporated from BSD db-1.85
6931         release.
6933         * sysdeps/unix/sysv/linux/sys/param.h: Several new macros for BSD
6934         compatibility.
6936         * misc/queue.h: New file, incorporated from 4.4BSD.
6937         * misc/Makefile (headers): Add queue.h.
6939         * posix/sys/types.h [__USE_BSD]: Include endian.h.
6941         * io/sys/stat.h (DEFFILEMODE, ALLPERMS, ACCESSPERMS, S_BLKSIZE):
6942         New macros.
6944 Thu Dec 28 10:21:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6946         * sysdeps/generic/confname.h: Define all names as self-referential
6947         macros so #ifdef works.
6949         * hurd/preempt-sig.c (hurd_unpreempt_signals): Remove bogus asgnmt
6950         of _hurd_signal_preempters[SIGNO].
6952 Mon Dec 25 20:56:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6954         * sysdeps/mach/hurd/bind.c: Translate EEXIST from dir_link into
6955         EADDRINUSE.  If translated node doesn't grok ifsock protocol,
6956         return EADDRINUSE.
6958         * sysdeps/mach/hurd/connect.c: Make address arg
6959         `const struct sockaddr_un *'.
6960         The redecl is kosher and avoids another variable for AF_LOCAL case.
6961         * sysdeps/mach/hurd/sendto.c: Likewise.
6962         * sysdeps/mach/hurd/bind.c: Likewise.
6964         * socket/sys/socket.h (__SOCKADDR_ARG): Enable transparent_union
6965         code for GCC >= 2.7; use __transparent_union__ for name safety;
6966         add several sockaddr flavors.
6967         (__SOCKADDR_ALLTYPES, __SOCKADDR_ONETYPE): New macros used in
6968         constructing the transparent union declarations.
6969         (__CONST_SOCKADDR_ARG): New type (or macro if not GCC 2.7).
6970         (bind, connect, sendto): Make the sockaddr argument use that.
6972 Fri Dec 22 00:57:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6974         * sysdeps/mach/hurd/setgid.c: In root case, store into NEWAUX, not
6975         old vector.
6976         * sysdeps/mach/hurd/setuid.c: Likewise.
6978         * sysdeps/mach/hurd/setuid.c: Rewrote ID frobnication to do the
6979         right thing.
6980         * sysdeps/mach/hurd/setgid.c: Likewise.
6981         * sysdeps/mach/hurd/setreuid.c: Likewise.
6982         * sysdeps/mach/hurd/setregid.c: Likewise.
6983         * sysdeps/mach/hurd/setegid.c: Likewise.
6984         * sysdeps/mach/hurd/seteuid.c: Likewise.
6986         * sysdeps/mach/hurd/fork.c: Peek __mach_task_self_ value before
6987         proc_dostop call to work around kernel paging bug.
6989 Fri Dec 22 00:38:00 1995  H.J. Lu  <hjl@nynexst.com>
6991         * stdio-common/vfscanf.c: Correctly handle white space skipping.
6992         * stdio-common/Makefile (tests): Add bug11.
6993         * stdio-common/bug11.c: New file.
6995 Thu Dec 21 12:19:32 1995  Miles Bader  <miles@gnu.ai.mit.edu>
6997         * sysdeps/mach/hurd/setuid.c (__setuid): Actually add the new uid
6998         instead of putting it (and other uids) in the gids and leaving the
6999         old uids as is.
7001 Wed Dec 20 18:23:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7003         * stdio/internals.c (flushbuf): If the target is -1, always
7004         discard the buffer of read data.
7005         Only set TWIDDLED flag in !ALIGNED case.
7006         Never increment target or offset when old value is -1.
7008 Tue Dec 19 17:00:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7010         * hurd/hurdpid.c (_S_msg_proc_newids): Only run the hook when the
7011         pgrp changes.
7013 Mon Dec 18 13:40:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7015         * stdio/fread.c: Don't increment __offset when it's -1.
7017         * elf/rtld.c (dl_main): Prepend tab to "statically linked".  Exit
7018         0 in that case.
7020         * misc/err.c (vwarnx, vwarn): Fix major brainos.
7022         * sysdeps/mach/hurd/dl-sysdep.c (mmap): Fix setting of
7023         inheritance.
7025 Sun Dec 17 15:56:35 1995  Miles Bader  <miles@gnu.ai.mit.edu>
7027         * misc/getpass.c (getpass): Don't barf if getline returns a null BUF.
7029 Sat Dec 16 10:33:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7031         * Makerules: Use $(do-install-so) for installing shared objects.
7032         (do-install-so): New canned sequence.  Make a symlink LIB.so after
7033         installing LIB.so.VERSION.
7035         * inet/netinet/in.h: Fixed typo in IPPORT_WHOIS.
7037 Fri Dec 15 04:41:22 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7039         * stdio-common/Makefile (tests): Add bug10.
7040         * stdio-common/bug10.c: New file.  From HJ Lu.
7042         * stdio-common/tstdiomisc.c: Make more test-suite like: exit
7043         status tells about successful run.
7045         * stdio-common/vfscanf.c [!USE_IN_LIBIO]: Use `flags' to check
7046         format correctness.
7047         Correct handling of trailing white spaces in format + EOF.
7049 Fri Dec 15 01:31:56 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7051         * stdio-common/Makefile (tests): Add bug8 and bug9.
7052         * stdio-common/bug8.c, stdio-common/bug9.c: New tests.
7054         * stdio-common/vfscanf.c: Fix bug in dynamic buffer handling.
7056         * stdlib/strtod.c: Correct spelling: nominator -> numerator.
7057         Thanks to Jim Meyering.
7059 Sat Nov 25 06:05:12 1995  H.J. Lu  <hjl@nynexst.com>
7061         * stdio-common/vfscanf.c: Always check width !=0.
7062         Correctly handle %%.
7064 Thu Dec 14 02:28:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7066         * posix/glob.c (glob_in_dir): Cast result of opendir to __ptr_t,
7067         and cast STREAM to DIR * before passing to readdir and closedir.
7069 Wed Dec 13 22:06:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7071         * hurd/hurdsig.c (_hurd_internal_post_signal: suspend): Reply
7072         after aborting RPCs but before calling proc_mark_stop.
7074 Mon Dec 11 20:07:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7076         * posix/glob.c [! STDC_HEADERS]: Declare getenv.
7077         (glob): Avoid using function as value.
7079         * elf/rtld.c (dl_main): When mapping argument executable, set
7080         l_name to "", not l_libname.
7081         After loading DT_NEEDED library, set its l_type to lt_library.
7083         * sysdeps/mach/hurd/mmap.c: Don't interpret MAP_INHERIT to mean
7084         VM_INHERIT.  We can't handle MAP_INHERIT easily.
7085         Handle non-page-aligned addresses if congruent to offset.
7087         * elf/dl-init.c: Skip the initializer for l_type lt_executable
7088         with l_name "". Start at _dl_loaded; don't skip the first element.
7090         * elf/dl-load.c (MAP_FILE): Define to zero if undefined.
7091         (MAP_COPY): Define to MAP_PRIVATE if undefined.
7092         (_dl_map_object_from_fd): Don't use MAP_INHERIT in mmap calls.
7093         If file it ET_EXEC, set its l_type to lt_executable.
7095 Sun Dec 10 09:56:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7097         * elf/dl-minimal.c (malloc): Use MAP_PRIVATE in mmap call.
7099 Fri Dec  8 13:04:51 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7101         * locale/error.c, locale/error.h: Files removed.
7102         * locale/Makefile (distribute): Remove error.h.
7103         (lib-modules): Remove error.
7105         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For "tty"
7106         magic, return ENXIO if no ctty.
7108         * sysdeps/mach/hurd/mmap.c: For MAP_FIXED, deallocate a previous
7109         mapping if vm_map fails for that reason.
7111         * posix/glob.c: Implement new options GLOB_ALTDIRFUNC, GLOB_BRACE,
7112         GLOB_TILDE, GLOB_NOMAGIC.
7113         (glob): Use stat instead of lstat to determine directoriness.
7114         * posix/glob.h (GLOB_ALTDIRFUNC, GLOB_BRACE, GLOB_NOMAGIC, GLOB_TILDE):
7115         New flag bits.
7116         (__GLOB_FLAGS): Include them.
7117         (glob_t): New members gl_closedir, gl_readdir, gl_opendir, gl_lstat,
7118         gl_stat.
7120         * elf/elf.h (ET_NUM, SHT_NUM, STB_NUM, STT_NUM, PT_NUM): New macros.
7122         * sysdeps/unix/sysv/linux/sys/mman.h: Include <linux/mman.h> to
7123         define all the bit values.
7124         (MAP_*, MCL_*): Macros removed.
7126 Thu Dec  7 02:27:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7128         * resolv/res_comp.c, resolv/res_debug.c, resolv/res_send.c:
7129         Updated from BIND 4.9.3-BETA27.
7131 Wed Dec  6 18:44:01 1995  Miles Bader  <miles@gnu.ai.mit.edu>
7133         * sysdeps/mach/hurd/select.c (__select): Swap size args to mach_msg.
7135         * sysdeps/mach/hurd/select.c (__select): Frob TYPES correctly when
7136         we get a delayed reply.
7137         Only grab values out of entries in TYPES that have SELECT_RETURNED
7138         turned on, and turn it on whenever an rpc returns.
7139         Only clear bits in the user's fdsets -- those needing to be set
7140         should be already.
7141         Use SELECT_ALL in appropiate places.
7142         (SELECT_RETURNED, SELECT_ALL): New macros.
7144 Wed Dec  6 09:10:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7146         * sysdeps/mach/hurd/sys/param.h (NBBY): New macro.
7148         * gnu-versions.h (_GNU_GLOB_INTERFACE_VERSION): New macro.
7150 Tue Dec  5 14:00:17 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7152         * misc/Makefile (headers): Add error.h, err.h.
7153         (routines): Add error, err.
7154         (gpl2lgpl): New variable.
7155         * misc/err.c: New file.
7156         * misc/err.h: New file.
7157         * misc/error.c, misc/error.h: New files.
7159         * sysdeps/mach/hurd/ioctl.c: Fix typo in last change.
7161         * Makeconfig (+link): Translate libc% from $^, not just libc.a.
7162         (link-libc): Append $(libc.so-version) to libc.so.
7163         (built-program-cmd): Fix comma usage.
7164         * Makerules [libc.so-version] (libc.so$(libc.so-version)): Make a
7165         symlink to libc.so in the build directory.
7166         * Rules ($(others) $(tests)): Depend on the library that appears
7167         in $(link-libc).
7168         (%.out): Use $(built-program-cmd) in commands.
7170         * posix/unistd.h [__USE_MISC]: Declare brk, sbrk.
7172         * sysdeps/generic/setenv.c: Added canonical portability cruft.
7173         (setenv): Use realloc on LAST_ENVIRON instead of always copying.
7174         (unsetenv): New function.
7175         * stdlib/stdlib.h [__USE_BSD]: Declare unsetenv.
7176         * sysdeps/generic/putenv.c: Rewritten using setenv and unsetenv.
7178 Tue Dec  5 02:27:32 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7180         * libio/Makefile (routines): Remove iofscanf, add iopopen, pclose.
7182         * libio/iofscanf.c: Remove file.
7184         * libio/iogetdelim.c (_IO_getdelim): Correct stupid bug at string
7185         termination.
7187         * libio/iopopen.c: New file from GNU libio.
7189         * libio/memstream.c: Fixed bug in fclose handling.  Instead of
7190         providing a close callback we need a finish callback.
7192         * libio/pclose.c: New file.  Derived from popen.c in GNU libio.
7194         * posix/gnu/types.h: Fixed typo.
7196         * stdio-common/errnobug.c: fputs returns EOF in error case.  Do
7197         not test for != 0.
7199         * stdio-common/printf-parse.h (parse_one_spec): Do not force
7200         padding with ' ' if precision is given.  Fix by HJ Lu.
7202         * stdio-common/printf_fp.c: Fix comment.
7204         * stdio-common/tfformat.c, stdio-common/tiformat.c,
7205         stdio-common/tstdiomisc.c: New files from GNU libio test suite.
7207         * stdio-common/tstgetln.c: Provide ssize_t type when testing
7208         libio.
7210         * stdio-common/vfprintf.c (outchar): Use PUTC instead of putc.
7211         (vfprintf): Cleasr args_type array before using it.
7212         When printing 0 as an integer with precision 0 nothing must be
7213         written for the number.
7214         Based on patch by HJ Lu.
7216         * stdio-common/vfscanf.c: Remove fixed input buffer.  Now we
7217         have a dynamically extended buffer.
7219         * stdlib/strtod.c: Merge with version in Linux libc.  This fixes
7220         some bugs with handling of very small numbers and has different
7221         solution for formaer patches.
7223         * sysdeps/i386/i586/add_n.S, sysdeps/i386/i586/sub_n.S: Rename
7224         macros r1 and r2 to t1, and t2 resp.  This is necessary because
7225         glibc headers also define r1.
7227 Mon Dec  4 12:10:28 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7229         * stdlib/gen-mpn-copy (translations): Updated for new layout in
7230         GMP 1.910.
7232         * malloc/malloc.c (__malloc_initialize): Renamed from initialize;
7233         made global.
7234         (malloc): Caller changed.
7235         * malloc/realloc.c (realloc): Call __malloc_initialize if
7236         necessary, before checking hook.
7237         * malloc/malloc.h: Declare __malloc_initialize.
7239         * sysdeps/mach/hurd/ioctl.c: For IOC_VOID request, send ARG itself
7240         as integer_t arg in RPC.
7242 Sat Dec  2 03:47:27 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7244         * sysdeps/mach/hurd/brk.c (DATA_SIZE): Bump to 128MB.
7245         (_hurd_set_brk): Try to allocate more space when we run out.
7247         * sysdeps/generic/sbrk.c: If __curbrk is zero, call __brk with
7248         zero and examine it again.
7249         * sysdeps/unix/sysv/linux/i386/brk.c: New file.
7250         * sysdeps/unix/sysv/linux/i386/brk.S: File removed.
7251         * sysdeps/unix/sysv/linux/i386/sbrk.S: File removed.
7252         * sysdeps/unix/sysv/linux/dl-sysdep.c: New file.
7253         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start) [DL_SYSDEP_INIT]:
7254         Invoke this macro before calling DL_MAIN.
7256         * malloc/malloc.c (malloc): Do initialization here, before
7257         checking the hook.
7258         (_malloc_internal): Don't do it here.
7260 Wed Nov 29 12:30:50 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7262         * libio/vsnprintf.c (__vsnprintf): Define as alias.
7263         * libio/iovsscanf.c (__vsscanf): Define as alias.
7264         * asprintf.c: Remove libio adaptation code added by drepper.
7265         * dprintf.c: Likewise.
7266         * printf.c: Likewise.
7267         * scanf.c: Likewise.
7268         * snprintf.c: Likewise.
7269         * sprintf.c: Likewise.
7270         * sscanf.c: Likewise.
7271         * vprintf.c: Likewise.
7272         * stdio-common/vfscanf.c [USE_IN_LIBIO] (__vfscanf): New wrapper
7273         function.
7274         (vfscanf): Define unconditionally.
7276         * sysdeps/i386/dl-machine.h (elf_machine_rel): If SYM is null, use
7277         zero for value.
7279         * misc/getpass.c: Write a newline after reading the unechoed
7280         password.
7282 Mon Nov 27 19:24:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7284         * posix/Makefile (routines): Add getsid.
7285         * sysdeps/unix/sysv/linux/getsid.S: New file.
7286         * sysdeps/mach/hurd/getsid.c: New file.
7287         * sysdeps/stub/getsid.c: New file.
7288         * posix/unistd.h [__USE_GNU]: Declare getsid.
7290 Sun Nov 26 12:44:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7292         * libc-symbols.h (N_): New macro.
7294 Sat Nov 25 02:48:47 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7296         * assert/assert-perr.c, assert/assert.c, inet/rcmd.c,
7297         malloc/mcheck.c, malloc/vm-limit.c, posix/getconf.c, posix/id.c,
7298         resolv/herror.c, sunrpc/auth_unix.c, sunrpc/clnt_perr.c,
7299         sunrpc/clnt_raw.c, sunrpc/get_myaddr.c, sunrpc/pmap_clnt.c,
7300         sunrpc/pmap_rmt.c, sunrpc/portmap.c, sunrpc/rpc_main.c,
7301         sunrpc/rpc_parse.c, sunrpc/rpc_scan.c, sunrpc/rpc_util.c,
7302         sunrpc/rpcinfo.c, sunrpc/svc_simple.c, sunrpc/svc_tcp.c,
7303         sunrpc/svc_udp.c, time/zdump.c, time/zic.c: Mark translatable
7304         strings.
7306 Sun Nov 26 02:00:02 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7308         * misc/syslog.c (vsyslog) [USE_IN_LIBIO]: Adapted for libio.
7310 Thu Nov 23 02:21:55 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7312         * sysdeps/unix/sysv/linux/{mlock,munlock,mlockall,munlockall}.S:
7313         New files.
7314         * sysdeps/unix/sysv/linux/sys/mman.h: Add prototypes for new functions
7315         mlock, munlock, mlockall, and munlockall.
7317 Thu Nov 23 18:26:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7319         * configure.in (--enable-libio): Set $stdio based on $enableval,
7320         not always to libio.
7322 Thu Nov 23 18:06:48 1995  Richard Stallman  <rms@gnu.ai.mit.edu>
7324         * malloc/malloc.c (_malloc_internal): Can't use
7325         get_contiguous_space when the heap info table
7326         will be growing.  Account for new contiguous space in _heaplimit.
7328 Wed Nov 22 12:37:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7330         * sysdeps/unix/sysv/linux/i386/sysdep.S (_errno): Define as alias
7331         for errno.
7333         * stdio-common/vfprintf.c [USE_IN_LIBIO] (vfprintf): Define as
7334         alias for _IO_vfprintf.
7336         * sysdeps/unix/sysv/linux/sockaddrcom.h: File removed.
7338         * sysdeps/unix/sysv/linux/i386/init-first.c (init): Use
7339         __fpu_control instead of ___fpu_control.
7340         * sysdeps/unix/sysv/linux/i386/ieee_fpu.c
7341         (___fpu_control): Renamed to __fpu_control.
7342         * sysdeps/unix/sysv/linux/i386/fpu_control.h: Likewise.
7343         * sysdeps/unix/sysv/linux/i386/fpu_control.c: Likewise.
7345         * elf/dl-minimal.c: New file.
7346         * elf/Makefile (rtld-routines): Add dl-minimal.
7347         * elf/rtld.c (__dgettext, __assert_fail, __assert_perror_fail):
7348         Functions moved to dl-minimal.c.
7349         * sysdeps/mach/hurd/dl-sysdep.c (malloc, free, realloc,
7350         sigjmp_save, longjmp): Likewise.
7352         * sysdeps/unix/sysv/linux/i386/brk.S (__curbrk): Always initialize
7353         to &_end, regardless of PIC.
7355         * stdio-common/vfscanf.c (__vfscanf): Fix arg name in defn.
7357 Tue Nov 21 14:12:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7359         * malloc/malloc.c (align): Don't check contiguity and call abort.
7361         * hurd/hurdsig.c (post_reply): Function removed.
7362         (abort_thread, abort_all_rpcs, _hurdsig_abort_rpcs): Don't call it.
7363         Take single callback fn arg instead of reply port and type.
7364         (_hurd_internal_post_signal): Callers changed.
7365         Cache reply stub fn ptr in local var before UNTRACED might be changed.
7367         * sysdeps/mach/hurd/mmap.c: Cope with a null write memobj for
7368         PROT_READ|PROT_WRITE copy mapping.  Pass a proper vm_inherit_t to
7369         vm_map.
7371         * elf/rtld.c (_dl_start): For --list, do output and exit before
7372         relocating.
7374 Mon Nov 20 16:19:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7376         * intl/Makefile [gettext-srcdir]: Rewrote copying rules to only
7377         get .c and .h files.
7379         * malloc/malloc.c (align): Use abort instead of assert.
7381 Sun Nov 19 18:23:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7383         * Makeconfig (+includes): Add $($(stdio)-include).
7384         (libio-include): New variable.
7386         * stdlib/strtod.c: Put weak_symbol after function defn.
7387         * stdlib/strtol.c: Likewise.
7389         * configure.in (--enable-libio): If not present, set $stdio to
7390         "default".  Move stdio/libio check to end, so sysdeps fragments
7391         can affect it.  Reset $stdio to "stdio" if it's "default".
7392         * sysdeps/unix/sysv/linux/configure: New file.
7394 Sat Nov 18 16:46:01 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7396         * libio/Makefile, libio/cleanup.c, libio/clearerr.c, libio/feof.c,
7397         libio/ferror.c, libio/fgetc.c, libio/filedoalloc.c, libio/fileno.c,
7398         libio/fileops.c, libio/fputc.c, libio/freopen.c, libio/fseek.c,
7399         libio/genops.c, libio/getc.c, libio/getchar.c, libio/iofclose.c,
7400         libio/iofdopen.c, libio/iofflush.c, libio/iofgetpos.c, libio/iofgets.c,
7401         libio/iofopen.c, libio/iofprintf.c, libio/iofputs.c, libio/iofread.c,
7402         libio/iofscanf.c, libio/iofsetpos.c, libio/ioftell.c, libio/iofwrite.c,
7403         libio/iogetdelim.c, libio/iogetline.c, libio/iogets.c, libio/iolibio.h,
7404         libio/iopadn.c, libio/ioprims.c, libio/ioputs.c, libio/ioseekoff.c,
7405         libio/ioseekpos.c, libio/iosetbuffer.c, libio/iosetvbuf.c,
7406         libio/iosprintf.c, libio/ioungetc.c, libio/iovsprintf.c,
7407         libio/iovsscanf.c, libio/libio.h, libio/libioP.h, libio/putc.c,
7408         libio/putchar.c, libio/rewind.c, libio/setbuf.c, libio/setlinebuf.c,
7409         libio/stdfiles.c, libio/stdio.c, libio/stdio.h, libio/strfile.h,
7410         libio/strops.c, libio/vasprintf.c, libio/vscanf.c, libio/vsnprintf.c:
7411         New files.  Slightly modified version from Linux libc.
7413         * libio/memstream.c, libio/vdprintf.c: New files for functions not
7414         (yet) part of GNU libio.
7416         * libio/iofopncook.c: Implementation of `fopencookie', mainly written
7417         by Per Bothner.
7419         * stdio-common/getline.c: Adapted to libio.
7420         * stdio-common/snprintf.c: Adapted to libio.
7421         * stdio-common/vfprintf.c: Adapted to libio.
7422         * stdio-common/vfscanf.c: Adapted to libio.
7423         * sysdeps/posix/tempname.c: Adapted to libio.
7425 Fri Nov 17 17:57:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7427         * sysdeps/generic/Makefile (make_siglist): Add missing backslash.
7429         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start_cleanup): New
7430         function.
7432         * hurd/hurdfault.c: Replace __libc_fatal calls with assert_perror.
7433         (_hurdsig_fault_init): Remove #if 0 from setting exception port.
7434         Insert send right for SIGEXC before thread_set_special_port.
7435         * hurd/hurdsig.c: Replace __libc_fatal calls with assert_perror.
7436         (_hurdsig_init): Remove #if 0 from setting exception port.
7438         * sysdeps/mach/hurd/ptrace.c (ptrace: PTRACE_CONT): Use
7439         HURD_MSGPORT_RPC macro.
7441 Thu Nov 16 06:07:49 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7443         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start_cleanup): New
7444         function.
7445         (_dl_sysdep_start): Move cleanup code there.
7447         * Makeconfig (default-rpath): New variable.
7448         (link-libc): Use it.
7449         * elf/Makefile (ld.so): Pass -rpath=$(default-rpath).
7450         * elf/rtld.c (_dl_rpath): New variable.
7451         (_dl_start): Set it from rtld_map's DT_RPATH.
7452         Call _dl_setup_hash on rtld_map.
7453         (dl_main): Cache address of _exit in variable before relocating,
7454         and use that in later calls.  Call _dl_sysdep_start_cleanup before
7455         relocating.  Keep track of dependency order while loading; remove
7456         rtld_map from chain, and reinsert in proper order if there is a
7457         dependency on it.
7459         * sysdeps/generic/Makefile (make_siglist): Pass
7460         -DSIGNUM_H=... with config's signum.h location.
7461         * sysdeps/generic/make_siglist.c: Include SIGNUM_H to define
7462         signal numbers.
7463         (HAVE_STRSIGNAL, HAVE_PSIGNAL): Define these before including signame.c
7464         (main): Deansideclize output.
7466         * elf/dl-load.c (_dl_map_object): Use _dl_rpath variable in place
7467         of DEFAULT_RPATH macro.
7468         * elf/Makefile: Undo last change.
7470         * sysdeps/mach/hurd/dl-sysdep.c (free): Don't abort, just nop.
7472 Wed Nov 15 19:22:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7474         * elf/dl-lookup.c (_dl_lookup_symbol): Undefined symbol is no
7475         error if weak.
7477         * elf/Makefile (default-rpath): New variable.
7478         (CPPFLAGS): Append -DDEFAULT_RPATH=....
7479         * elf/dl-load.c (_dl_map_object): Use DEFAULT_RPATH instead of
7480         hard-coded "/lib:/usr/lib".
7482         * sysdeps/mach/hurd/dl-sysdep.c: Include _itoa.h from stdio-common
7483         instead of stdio.
7484         (_dl_sysdep_start): If passed user entry is zero and
7485         EXEC_STACK_ARGS flag set, reset user entry to &_start.
7487         * elf/rtld.c (dl_main): Only call _dl_setup_hash if there is a
7488         DT_HASH element.
7490         * libc-symbols.h [HAVE_ELF] (symbol_set_declare): Gratuitously
7491         repeat weak decl using weak_symbol macro, in case using broken GCC
7492         (<2.8).
7494 Wed Nov 15 18:49:55 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
7496         * sysdeps/i386/isnanl.c: New file.
7497         * sysdeps/i386/isinfl.c: New file.
7499 Tue Nov 14 18:44:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7501         * malloc/free.c (free): Moved null and aligned_blocks checks
7502         inside _free_internal.
7504 Mon Nov 13 15:23:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7506         * malloc/malloc.c (morecore): Fix inverted test in allocating new
7507         info table.
7509         * malloc/malloc.c (align): Fix assertion.
7511         * malloc/malloc.c: Include assert.h.
7513         * libc-symbols.h: Use __attribute__ for GCC 2.8, not 2.7.
7515         * malloc/malloc.h [emacs] (emacs_loser_valloc): Macro removed.
7516         (valloc): Protect decl with [! (_MALLOC_INTERNAL && emacs)].
7518 Fri Nov 10 14:15:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7520         * malloc/malloc.c (align): Assert that space for alignment
7521         adjustment is same original space.
7523         * hurd/hurdprio.c (_hurd_priority_which_map): Cast vm_deallocate
7524         arg to vm_address_t.
7526         * hurd/hurdsig.c (_hurd_internal_post_signal): For SIGNO == 0,
7527         skip straight to pending check.  When UNTRACED, resume process
7528         from suspension first.
7530         * intl/Makefile (headers): New variable, libintl.h.
7531         [gettext-srcdir]: New rules to copy source from $(gettext-srcdir)/intl.
7532         * configure.in: Check for --with-gettext arg.
7534 Fri Nov 10 13:51:30 1995  Richard Stallman  <rms@gnu.ai.mit.edu>
7536         * malloc/malloc.c (get_contiguous_space): New function.
7537         (morecore): Rewrite allocating new malloc info table.
7538         (_malloc_internal): Use get_contiguous_space.
7540 Fri Nov 10 13:03:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7542         * hurd/hurdexec.c (_hurd_exec): If exec'ing self, pass
7543         _hurd_msgport to be destroyed.
7545         * Makerules (installed-libcs): Filter out %_pic.a.
7547         * hurd/hurdinit.c (_hurd_proc_init): When traced, use msg_sig_post
7548         to our msgport to take SIGTRAP, instead of _hurd_raise_signal.
7550         * hurd/Makefile (user-interfaces): Add hurd/process_request.
7552 Wed Nov  8 16:31:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7554         * termios/Makefile (headers): Add sys/ttychars.h.
7555         * termios/sys/ttychars.h: New file, incorporated from 4.4BSD-Lite
7556         for compatibility.
7558         * signal/signal.h [__USE_BSD] (sig_t): New typedef.
7560 Wed Nov  8 15:12:47 1995  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
7562         * sysdeps/mach/hurd/ptrace.c (ptrace) [PTRACE_TRACEME]: Notify the
7563         proc server that we are now traced.
7565 Tue Nov  7 12:29:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7567         * elf/Makefile (ldd): Make it executable.
7569         * Makeconfig (config-LDFLAGS): Find dynamic linker in $(slibdir).
7571         * Makeconfig (slibdir): New variable.
7572         * Makerules (install): Install libc.so in $(slibdir).
7573         * elf/Makefile (install-others): Install ld.so and ld-linux.so.1
7574         in $(slibdir).
7576         * elf/linux-compat.c: New file.
7577         * elf/Makefile (distribute): Add linux-compat.c.
7578         (generated): Add librtld.so.
7579         [$(config-os)=linux*] (extra-objs): Add linux-compat.so.
7580         [$(config-os)=linux*] (extra-objs): Add ld-linux.so.1.
7581         (librtld.so): New target.
7582         (ld.so, ld-linux.so.1): Make from librtld.so.
7584         * elf/rtld.c (dl_main): Instead of weak call to _dl_compat_init,
7585         call our own DT_INIT if we have one (and then clear it).
7586         (__dgettext): New weak function.
7588         * intl/localealias.c (read_alias_file): Avoid sprintf; use memcpy
7589         by hand instead.
7591         * sysdeps/generic/_strerror.c (_strerror_internal): Use _itoa
7592         instead of snprintf.
7594         * sysdeps/mach/_strerror.c (_strerror_internal): Don't write
7595         BUF[BUFLEN].
7597         * elf/rtld.c (rtld_map): New static variable.
7598         (_dl_start): Use a differently named local BOOTSTRAP_MAP for the
7599         bootstrapping.  Then copy data into `rtld_map'.
7600         (dl_main): Finish filling in rtld_map and link it into the chain,
7601         instead of allocating a new structure.
7602         (dl_main): Call _dl_compat_init if it is defined (use weak ref).
7604         * elf/dlsym.c: Fix last change: move REF out of `doit'.
7606 Mon Nov  6 16:20:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7608         * elf/dlsym.c: Return the proper value, not just the defining
7609         object's loadbase.
7611 Sun Nov  5 16:09:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7613         * stdio-common/vfprintf.c (%c): Count the character itself towards
7614         the field width in all cases.
7616         * sysdeps/mach/hurd/getpriority.c (getpriority): Cast
7617         __vm_deallocate arg to vm_address_t.
7619 Fri Nov  3 17:27:49 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7621         * sysdeps/mach/hurd/sendto.c: Don't pass BINDING arg to
7622         socket_create_address.
7623         * sysdeps/mach/hurd/connect.c: Likewise.
7624         * sysdeps/mach/hurd/bind.c: Likewise.
7626         * hurd/hurdprio.c (_hurd_priority_which_map): Pass threadwaits
7627         args to proc_getprocinfo.
7628         * sysdeps/mach/hurd/getpriority.c: Likewise.
7630         * hurd/hurdmsg.c (_S_msg_report_wait): New stub function.
7632 Thu Nov  2 19:24:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7634         * sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Define as common.
7636 Tue Oct 31 00:07:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7638         * sysdeps/mach/hurd/getpriority.c (getpriority): Pass
7639         PI_FETCH_TASKINFO to proc_getprocinfo and through
7640         _hurd_priority_which_map.
7642         * sysdeps/mach/hurd/setpriority.c (setpriority): Pass new arg to
7643         _hurd_priority_which_map.
7644         * hurd/hurdprio.c (_hurd_priority_which_map): New arg PI_FLAGS,
7645         passed through to proc_getprocinfo RPC.
7646         * hurd/hurd/resource.h: Add PI_FLAGS arg in decl.
7648         * sysdeps/mach/hurd/group_member.c: New file.
7649         * sysdeps/generic/group_member.c: New file.
7651         * Makerules (lib-noranlib): Don't depend on $(install-lib).
7652         (others): Do.
7653         * extra-lib.mk: Fix test of $(lib)-no-lib-dep.
7655 Mon Oct 30 12:33:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7657         * Rules (others): Depend on $(extra-objs).
7659         * posix/unistd.h [__USE_GNU]: Declare group_member, __group_member.
7660         * posix/Makefile (routines): Add group_member.
7662         * sysdeps/posix/euidaccess.c: New file, adapted from fileutils.
7664         * sysdeps/unix/sysv/linux/i386/sigaction.c: Tighten constraint for
7665         SIG operand in asm so it must be a register.
7666         Add dead return to quiet gcc warning.
7668         * Makerules (sysd-rules): Write a defn for sysd-rules-done.
7669         [! sysd-rules-done]: Inhibit deps.
7671 Thu Oct 26 23:11:11 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
7673         * sysdeps/unix/sysv/linux/poll.c: Don't define as stub.  Use
7674         simulation of system call using select.
7676         * sysdeps/unix/sysv/linux/signal.c: Use POSIX implementation.
7678         * sysdeps/unix/sysv/linux/statbuf.h: Define _STAT_VER.
7680         * sysdeps/unix/sysv/linux/i386/sigaction.c: Correct parameter
7681         name usage (new->act, old->oact).
7682         Correct asm statement because of gcc strangeness.
7684         * sysdeps/i386/i586/strchr.S: Correct typos: cmp -> cmpb.
7686         * sunrpc/clnt_perr.c: Remove declaration of sys_errlist.  They
7687         conflict with the ones in stdio.h.
7689         * string/tester.c: %Z is no complete format.  Change to %Zd.
7691 Thu Oct 26 18:13:33 1995  Miles Bader  <miles@gnu.ai.mit.edu>
7693         * sysdeps/mach/hurd/bind.c (bind): Swap args to dir_link.
7694         * sysdeps/mach/hurd/link.c (__link): Ditto.
7695         * sysdeps/mach/hurd/symlink.c (__symlink): Ditto.
7696         * sysdeps/mach/hurd/mknod.c (__mknod): Ditto.
7697         Include "stdio-common/_itoa.h" instead of "stdio/_itoa.h".
7699 Thu Oct 26 00:11:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7701         * sysdeps/unix/sysv/linux/i386/sigaction.c: New file.
7703         * sysdeps/unix/sysv/linux/i386/xstat.S: Don't use JUMPTARGET macro
7704         on syscall_error.  For PIC, it is a local label;
7705         for non-PIC, JUMPTARGET expands to the unadorned name anyway.
7706         * sysdeps/unix/sysv/linux/i386/xmknod.S: Likewise.
7707         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
7708         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
7709         * sysdeps/unix/sysv/linux/i386/sbrk.S: Likewise.
7710         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
7711         * sysdeps/unix/sysv/linux/i386/brk.S: Likewise.
7713 Thu Oct 26 03:01:22 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
7715         * sysdeps/unix/sysv/linux/syscall.h: Strip list of syscalls in
7716         comment to the necessary ones.  Add _readv and _writev.
7718         * sysdeps/unix/configure.in: Change syntax for system call test
7719         candidates and adapt sed script for this.  Now use : to separate
7720         syscall name and file name.
7722         * sysdeps/unix/sysv/linux/i386/sysdep.h (ENTRY): System call
7723         number is now set is DO_CALL.  So call with additional argument.
7724         (DO_CALL): Takes an additional argument.  Load system call
7725         number according to new argument.
7726         (SYSCALL_ERROR_HANDLER): Add ; after last ret statement.
7727         * sysdeps/unix/sysv/linux/i386/brk.S [PIC]: Define __syscall_error
7728         locally using SYSCALL_ERROR_HANDLER macro.
7729         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
7730         * sysdeps/unix/sysv/linux/i386/sbrk.S: Likewise.
7731         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
7732         * sysdeps/unix/sysv/linux/i386/xmknod.S: Likewise.
7733         * sysdeps/unix/sysv/linux/i386/xstat.S: Likewise.
7734         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
7735         Don't use DO_CALL macro; instead use lower level macros for better
7736         control.
7738         * sysdeps/unix/sysv/linux/sigaction.h: New file.
7739         * sysdeps/unix/sysv/linux/sigaction.S: File removed.
7740         * sysdeps/unix/sysv/linux/signal.S: File removed.
7742 Wed Oct 25 14:23:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7744         * hurd/hurdstartup.c (_hurd_startup): Use new
7745         exec_startup_get_info RPC from exec_startup.defs
7746         in place of old exec_startup from exec.defs.  Remove kludge to
7747         guess user entry and phdr locations, since the new RPC gives us
7748         that info.
7750         * stdio/stdio.h (sys_errlist, _sys_errlist): Declare const.
7751         * sysdeps/generic/_strerror.c: Undo last change.
7753         * sysdeps/unix/sysv/linux/stat.c: New file.
7754         * sysdeps/unix/sysv/linux/fstat.c: New file.
7755         * sysdeps/unix/sysv/linux/lstat.c: New file.
7756         * sysdeps/unix/sysv/linux/i386/stat.S: File removed.
7757         * sysdeps/unix/sysv/linux/i386/fstat.S: File removed.
7758         * sysdeps/unix/sysv/linux/i386/lstat.S: File removed.
7760 Tue Oct 24 15:22:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7762         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
7763         New macro.
7764         (PSEUDO): Use it instead of SYSCALL_PIC_SETUP and jmp syscall_error.
7766         * sysdeps/unix/sysv/linux/i386/sysdep.S (__syscall_error): Define
7767         only #ifndef PIC.
7769         * Makeconfig (built-program-cmd): New variable.
7770         * sunrpc/Makefile (rpcgen-cmd): Use $(built-program-cmd).
7771         * time/Makefile (zic-cmd): Likewise.
7773         * hurd/Makefile (user-interfaces): Add hurd/exec_startup.
7775         * sunrpc/Makefile (librpcsvc-no-lib-dep): New variable.
7776         * extra-lib.mk: If $(lib)-no-lib-dep is defined and MAKELEVEL>0,
7777         make `others' rather than `lib-noranlib' depend on the libraries.
7779         * sysdeps/unix/configure.in: Check for fchdir syscall.
7780         Improve sed script to allow / on rhs without / on lhs.
7782 Thu Oct 19 03:47:32 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
7784         * sysdeps/unix/sysv/linux/termbits.h: Don't define speed constants.
7786         * elf/rtld.c: Include _itoa.h from stdio-common instead of stdio.
7788         * sysdeps/unix/sysv/linux/select.S: New file.
7790 Wed Oct 18 03:33:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7792         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Use
7793         SYSCALL_PIC_SETUP before jumping to syscall_error.
7794         * sysdeps/unix/i386/sysdep.h (SYSCALL_PIC_SETUP): New macro.
7795         (PSEUDO): Use it before jumping to syscall_error.
7796         * sysdeps/unix/i386/sysdep.S [! PIC]: Don't find GOT address;
7797         expect it in %ebx on entry.  Pop old %ebx value off stack after
7798         using it.
7800         * signal/signal.h [__USE_BSD] (_sys_siglist, sys_siglist): Declare
7801         them.
7803         * sysdeps/generic/_strerror.c: Declare _sys_errlist and _sys_nerr.
7805         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For magic
7806         `fd/', pass the right pointer to strtol to parse the number.
7808 Tue Oct 17 23:00:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7810         * sysdeps/mach/_strerror.c: Include stdio-common/_itoa.h instead
7811         of stdio/_itoa.h.
7813 Tue Oct 17 19:51:17 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
7815         * sysdeps/unix/sysv/linux/i386/stat.S [PIC] (__stat): Set GOT
7816         register %ebx before calling __xstat through PLT.
7818         * sysdeps/unix/sysv/linux/i386/sysdep.S: Fix typo in comment.
7820         * sysdeps/unix/sysv/linux/sigset.h: Remove file.
7822 Tue Oct 17 01:21:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7824         * hurd/hurdsock.c: Include stdio-common/_itoa.h instead of
7825         stdio/_itoa.h.
7826         * hurd/hurdlookup.c: Likewise.
7828         * hurd/hurd/signal.h: Declare hurd_preempt_signals and
7829         hurd_unpreempt_signals.
7831         * stdio/stdio.h: Declare __snprintf and __vsnprintf.
7833         * stdio-common/psignal.c: Translate signal description strings.
7834         * string/strsignal.c: Likewise.
7835         * sysdeps/generic/_strerror.c (_strerror_internal): Translate
7836         error strings.
7837         * sysdeps/mach/_strerror.c: Likewise.
7839         * stdio-common/snprintf.c (__snprintf): Renamed from snprintf;
7840         call __vsnprintf.
7841         (snprintf): Define as weak alias.
7842         * stdio/vsnprintf.c (__vsnprintf): Renamed from vsnprintf.
7843         (vsnprintf): Define as weak alias.
7845 Mon Oct 16 03:22:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7847         * Makerules (install-lib): Filter out %_pic.a; install only the
7848         linked shared objects.
7850         * locale/Makefile (aux): Add SYS_libc.
7851         * locale/SYS_libc.c: New file.
7852         * libc-symbols.h [! ASSEMBLER] (_): New macro.
7854         * configure.in (libc_cv_asm_set_directive): Link program into
7855         conftest instead of letting it default to a.out.
7857         * elf/Makefile (install-others): Add missing slash.
7859         * elf/ldd.sh.in: Prepend `./' to relative file names so ld.so
7860         won't search LD_LIBRARY_PATH.
7862         * Makefile (subdirs): Replace stdio with stdio-common and $(stdio).
7863         * configure.in: Grok arg --enable-libio.
7864         ($stdio = libio): Define USE_IN_LIBIO.
7865         * config.h.in (USE_IN_LIBIO): Add #undef.
7866         * config.make.in (stdio): New variable, set by configure.
7867         * Makeconfig (stdio): New variable.
7868         * stdio.h [USE_IN_LIBIO]: Include libio/stdio.h instead of
7869         stdio/stdio.h.
7870         * stdio-common/Makefile: New file.
7871         * stdio/Makefile: Half the contents moved to stdio-common/Makefile.
7872         * stdio/_itoa.c: Moved to stdio-common.
7873         * stdio/_itoa.h: Moved to stdio-common.
7874         * stdio/asprintf.c: Moved to stdio-common.
7875         * stdio/bug1.c: Moved to stdio-common.
7876         * stdio/bug1.input: Moved to stdio-common.
7877         * stdio/bug2.c: Moved to stdio-common.
7878         * stdio/bug3.c: Moved to stdio-common.
7879         * stdio/bug4.c: Moved to stdio-common.
7880         * stdio/bug5.c: Moved to stdio-common.
7881         * stdio/bug6.c: Moved to stdio-common.
7882         * stdio/bug6.input: Moved to stdio-common.
7883         * stdio/bug7.c: Moved to stdio-common.
7884         * stdio/dprintf.c: Moved to stdio-common.
7885         * stdio/errnobug.c: Moved to stdio-common.
7886         * stdio/getline.c: Moved to stdio-common.
7887         * stdio/getw.c: Moved to stdio-common.
7888         * stdio/perror.c: Moved to stdio-common.
7889         * stdio/printf-parse.h: Moved to stdio-common.
7890         * stdio/printf-prs.c: Moved to stdio-common.
7891         * stdio/printf.c: Moved to stdio-common.
7892         * stdio/printf.h: Moved to stdio-common.
7893         * stdio/printf_fp.c: Moved to stdio-common.
7894         * stdio/psignal.c: Moved to stdio-common.
7895         * stdio/putw.c: Moved to stdio-common.
7896         * stdio/reg-printf.c: Moved to stdio-common.
7897         * stdio/scanf.c: Moved to stdio-common.
7898         * stdio/snprintf.c: Moved to stdio-common.
7899         * stdio/sprintf.c: Moved to stdio-common.
7900         * stdio/sscanf.c: Moved to stdio-common.
7901         * stdio/tempnam.c: Moved to stdio-common.
7902         * stdio/temptest.c: Moved to stdio-common.
7903         * stdio/test-fseek.c: Moved to stdio-common.
7904         * stdio/test-fwrite.c: Moved to stdio-common.
7905         * stdio/test-popen.c: Moved to stdio-common.
7906         * stdio/test_rdwr.c: Moved to stdio-common.
7907         * stdio/tmpfile.c: Moved to stdio-common.
7908         * stdio/tmpnam.c: Moved to stdio-common.
7909         * stdio/tst-fileno.c: Moved to stdio-common.
7910         * stdio/tst-printf.c: Moved to stdio-common.
7911         * stdio/tstgetln.c: Moved to stdio-common.
7912         * stdio/tstgetln.input: Moved to stdio-common.
7913         * stdio/tstscanf.c: Moved to stdio-common.
7914         * stdio/tstscanf.input: Moved to stdio-common.
7915         * stdio/vfprintf.c: Moved to stdio-common.
7916         * stdio/vfscanf.c: Moved to stdio-common.
7917         * stdio/vprintf.c: Moved to stdio-common.
7918         * stdio/xbug.c: Moved to stdio-common.
7919         * sysdeps/generic/Makefile (siglist.c rules): Do this in subdir
7920         stdio-common instead of stdio.
7921         * sysdeps/unix/Makefile (errlist.c rules): Likewise.
7922         * stdio-common/asprintf.c [USE_IN_LIBIO]: Call libio primitive
7923         function.
7924         * stdio-common/dprintf.c: Likewise.
7925         * stdio-common/printf.c: Likewise.
7926         * stdio-common/scanf.c: Likewise.
7927         * stdio-common/snprintf.c: Likewise.
7928         * stdio-common/sprintf.c: Likewise.
7929         * stdio-common/sscanf.c: Likewise.
7930         * stdio-common/vprintf.c: Likewise.
7932         * Makerules: Include $(+depfiles) directly instead of generating
7933         depend-$(subdir).
7934         (depend-$(subdir)): Target removed.
7935         (common-clean): Don't remove depend-$(subdir).
7937         * sysdeps/unix/sysv/linux/Makefile (rtld-installed-name): New variable.
7938         (config-LDFLAGS): Variable removed.
7940         * sysdeps/mach/hurd/getcwd.c: Use __file_name_lookup_under.
7941         * sysdeps/mach/hurd/bind.c: Likewise.
7942         * sysdeps/mach/hurd/access.c: Use new __hurd_file_name_lookup
7943         calling convention.
7945         * hurd/hurdexec.c: Undo last change (10 Oct 95).
7947 Sun Oct 15 21:04:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7949         * hurd/hurd/lookup.h: New file.
7950         * hurd/hurdlookup.c (__file_name_lookup_under): New function.
7951         (__hurd_file_name_lookup, __hurd_file_name_lookup_retry,
7952         __hurd_file_name_split): Rewritten to take callback functions for
7953         using any needed init or dtable port, instead of passing in crdir
7954         and cwdir ports.
7955         (__file_name_lookup, __file_name_split): Use new calling
7956         convention; pass _hurd_ports_use and __getdport as the callback
7957         functions.
7959         * sysdeps/mach/hurd/chroot.c: Use __file_name_lookup_under instead
7960         of __hurd_file_name_lookup.
7961         * sysdeps/mach/hurd/chdir.c: Likewise.
7962         * sysdeps/mach/hurd/fchdir.c: Likewise.
7963         * hurd/fchroot.c: Likewise.
7965         * stdlib/Makefile (mpn-found): Don't omit %.s.
7966         (mpn-copy-sysdep): Omit files in nonexistent directories.
7967         (copy-mpn): Commit files to CVS.
7968         * stdlib/gen-mpn-copy (translations): Update translations for GMP
7969         1.906.7.
7971         * configure.in (machine): Translate alpha* to alpha/&, hppa* to hppa/&.
7973 Sat Oct 14 02:52:36 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
7975         * malloc/malloc.c (_malloc_internal): Performance fix.  Move
7976         if statement out of loop.
7978         * stdio/_itoa.c, stdio/_itoa.h: Complete rewrite.  Much faster
7979         implementation using GMP functions.  Contributed by
7980         Torbjorn Granlund and Ulrich Drepper.
7982         * stdio/test_rdwr.c: Include <errno.h>.
7984         * sysdeps/i386/i586/Implies: New file.
7986         New highly optimized string functions for i[345]86.
7987         * sysdeps/i386/memchr.S, sysdeps/i386/memcmp.S: New files.
7988         * sysdeps/i386/stpcpy.S, sysdeps/i386/stpncpy.S: New files.
7989         * sysdeps/i386/strchr.S, sysdeps/i386/strcspn.S: New files.
7990         * sysdeps/i386/strpbrk.S, sysdeps/i386/strrchr.S: New files.
7991         * sysdeps/i386/strspn.S, sysdeps/i386/i486/strcat.S: New files.
7992         * sysdeps/i386/i486/strlen.S, sysdeps/i386/i586/strchr.S: New files.
7993         * sysdeps/i386/i586/strlen.S: New file.
7994         * sysdeps/i386/memchr.c: Removed.  There is now an assembler version.
7996         * sysdeps/i386/i586/memcopy.h (WORD_COPY_BWD): Parameters did
7997         not correspond to used values.
7999         * sysdeps/unix/sysv/linux/nfs/nfs.h: New file.  Simply a wrapper
8000         around a kernel header file.
8001         * sysdeps/unix/sysv/linux/Dist: Add it.
8002         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=sunrpc] (headers):
8003         Likewise.
8005         * sysdeps/unix/sysv/linux/local_lim.h: Rewrite.  Instead of
8006         defining ourself we use a kernel header file.
8008         * sysdeps/unix/sysv/linux/i386/sysdep.h (DO_CALL): Optimize system
8009         call handler for i586.
8011         * sysdeps/unix/sysv/linux/sys/param.h: Add copyright and clean up.
8013 Thu Oct 12 15:45:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8015         * hurd/hurd.h (file_name_lookup_under): Declare it.
8016         * hurd/Makefile (headers): Add hurd/lookup.h.
8018         * hurd/hurdinit.c (_hurd_ports_use): New function.
8019         * hurd/hurd.h (_hurd_ports_use): Declare it.
8020         (hurd_invoke_translator, hurd_file_name_lookup, hurd_file_name_split,
8021         hurd_file_name_lookup_retry): Remove these decls.
8022         * hurd/Makefile (routines): Remove invoke-trans.
8024 Wed Oct 11 00:00:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8026         * sysdeps/i386/dl-machine.h (elf_machine_rel): Use +=, not =, to
8027         apply R_386_PC32 reloc.
8029         * Makeconfig (config-LDFLAGS): Add missing slash.
8031         * sysdeps/mach/hurd/profil.c (fork_profil): Only call
8032         update_waiter if profiling was enabled in the parent.
8034         * csu/initfini.c: Don't pass -f flag to cp.
8036 Tue Oct 10 23:08:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8038         * Makerules (build-shlib): Pass -rpath and -rpath-link options.
8039         (LDFLAGS-c.so): Don't pass -dynamic-linker here.
8040         * Makeconfig (+link): Pass $(sysdep-LDFLAGS).
8041         (link-libc): Pass -rpath and -rpath-link options.
8043         * MakeTAGS (all-dirs): Omit CVS directories.
8044         Specify vpath directives to find source files in $(all-dirs).
8045         (sources, headers): Append sources and headers from $(all-dist) to
8046         these.
8047         (all-dist): Filter them out of this.
8048         (all-headers, all-sources): Use $(shell find ...) instead of
8049         $(wildcard ...).
8051         * sysdeps/mach/hurd/Makefile (sysdep-LDFLAGS): New variable; pass
8052         -rpath-link.
8054         * hurd/hurdexec.c: Pass poly and dealloc args to __file_exec.
8056         * elf/Makefile (install-others): Add missing $.
8058 Mon Oct  9 02:54:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8060         * mach/Makefile ($(objpfx)errsystems.c): Rule reenabled.
8062         * Makeconfig (config-LDFLAGS): Define to
8063         -Wl-dynamic-linker=$(libdir)$(rtld-installed-name).
8064         (rtld-installed-name): New variable.
8065         * elf/Makefile (install-lib): Variable removed.
8066         (install-others): Define this instead, to
8067         $(libdir)(rtld-installed-name).
8068         ($(libdir)(rtld-installed-name)): New target; install from ld.so.
8070         * elf/ldd.sh.in: New file.
8071         * elf/Makefile (distribute): Add ldd.sh.in.
8072         (install-bin): Add ldd.
8073         ($(objpfx)ldd: ldd.sh.in): New rule.
8075         * sysdeps/mach/hurd/dl-sysdep.c: Use __hurd_fail throughout.
8076         * hurd/hurd.h (__hurd_fail): Replace macro with inline function.
8077         Translate some Mach errors to Hurd errors.
8079         * elf/rtld.c (dl_main): Under --list, print msg if executable is
8080         statically linked.
8082         * elf/dl-load.c (_dl_map_object_from_fd): Rewrote program header
8083         table processing.
8085 Sat Oct  7 01:25:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8087         * sysdeps/stub/machine-gmon.h: Add #error.
8089 Fri Oct  6 01:49:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8091         * elf/dynamic-link.h (elf_get_dynamic_info): If DYN is null, don't
8092         examine it.
8094 Fri Sep 29 03:43:51 1995  Paul Eggert  <eggert@twinsun.com>
8096         Rewrite mktime from scratch for performance, and for correctness
8097         in the presence of leap seconds.
8099         * time/mktime.c (ydhms_tm_diff, not_equal_tm, print_tm, check_result):
8100         New functions.
8101         (LEAP_SECONDS_POSSIBLE, CHAR_BIT, INT_MIN, INT_MAX,
8102         TIME_T_MIN, TIME_T_MAX, TM_YEAR_BASE, EPOCH_YEAR): New macros.
8103         <limits.h>, <stdlib.h>: New #includes.
8104         (main): Support tests with given broken-down value; support benchmarks.
8105         (__mon_lengths, debugging_enabled, printtm, dist_tm, doit,
8106         do_normalization, normalize, BAD_STRUCT_TM, SKIP_VALUE,
8107         <ctype.h>): Remove.
8109         * time/time.h, time/mktime.c (__mktime_internal): New offset arg.
8110         * time/mktime.c (mktime), time/timegm.c (timegm): Use it.
8112         * time/mktime.c (__mon_yday): New variable; replaces `__mon_lengths'.
8113         time/offtime.c (__offtime), time/tzset.c (compute_change): Use it.
8115         * time/offtime.c (__offtime): Remove useless assignment
8116         `tp->tm_isdst = -1'.
8118         * manual/maint.texi: Update credits.
8120 Fri Oct  6 00:28:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8122         * sysdeps/unix/common/readv.S: Moved to sysdeps/unix/bsd.
8123         * sysdeps/unix/common/writev.S: Moved to sysdeps/unix/bsd.
8124         * sysdeps/unix/sysv/linux/readv.c: File removed.
8125         * sysdeps/unix/sysv/linux/writev.c: File removed.
8126         * sysdeps/unix/configure.in: Check for readv and writev syscalls.
8128         * sysdeps/unix/configure.in: If eval doesn't set $unix_srcname,
8129         set it to $unix_syscall instead of $unix_function.
8131 Thu Oct  5 00:59:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8133         * elf/rtld.c (dl_main): Grok --list flag.
8134         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Ignore -- args.
8136 Wed Oct  4 00:21:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8138         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_message): New function.
8139         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_message): New function.
8140         * elf/link.h (_dl_sysdep_message): Declare it.
8142         * sysdeps/unix/Makefile ($(common-objpfx)ioctls): Remove NULL from
8143         the list.
8145         * time/northamerica: Corrections to Canada data from ADO 95i.
8147         * sysdeps/unix/sysv/linux/Makefile (headers): Don't append to this
8148         unconditionally.  In socket subdir, append sys/socketcall.h; in
8149         time subdir, append sys/timex.h.
8150         (config-LDFLAGS): New variable.
8151         * sysdeps/unix/sysv/linux/Dist: New file.
8152         * Makeconfig (+link): Pass $(config-LDFLAGS) before $(LDFLAGS).
8154         * sysdeps/generic/stpncpy.c: Don't increment DEST when zero-filling.
8156         * elf/dlopen.c (dlopen): Don't pass USER_ENTRY arg to _dl_map_object.
8158 Sat Sep 30 11:47:05 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8160         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): If started by
8161         kernel with args on stack, point _dl_hurd_data at zero data
8162         instead of garbage.  When ld.so run as program, grok args
8163         -LIB=MEMOBJ and pre-load shared object files found in memory
8164         objects loaded by the boot loader.
8166         * elf/link.h (struct link_map): New member `l_entry'.
8167         (_dl_map_object, _dl_map_object_from_fd): Remove last arg ENTRY_POINT.
8168         * elf/dl-load.c (_dl_map_object, _dl_map_object_from_fd): Remove
8169         last arg ENTRY_POINT.  Store the entry point location in the
8170         `l_entry' member of the new map.
8171         * elf/rtld.c (dl_main): Don't pass USER_ENTRY arg to
8172         _dl_map_object.  When run as program, set *USER_ENTRY to L->l_entry.
8173         * elf/dl-init.c (_dl_init_next): Don't pass ENTRY_POINT arg to
8174         _dl_map_object.
8176         * posix/tstgetopt.c, posix/tstgetopt.args: Test long options too.
8178         * sysdeps/unix/sysv/linux/i386/init-first.c (init): Save, set, and
8179         restore %ebx by hand for personality syscall.
8180         GCC cannot deal with spilling the dedicated GOT register.
8182         * misc/Makefile (routines): Add mntent, which was somehow omitted.
8184 Fri Sep 29 15:07:10 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
8186         * sysdeps/unix/sysv/linux/adjtime.c (__adjtime):
8187         Change name of field `mode' in `struct timex' to `modes'.
8188         Linux-1.3.28 updates this name according to RFC 1489.
8190 Thu Sep 28 13:05:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8192         Merge new message handling code from GNU gettext, by Drepper.
8193         * intl: New directory.
8194         * Makefile (subdirs): Add intl.
8196         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Return
8197         USER_ENTRY instead of storing it on our stack.
8199         * elf/rtld.c (rtld_command): Variable removed.
8200         (_dl_skip_args): New variable.
8201         (dl_main): Increment _dl_skip_args instead of setting rtld_command.
8202         If the link_map for the executable itself is not first in the chain,
8203         make it so.
8204         * sysdeps/i386/dl-machine.h (RTLD_START): Use _dl_skip_args as
8205         count of args to skip.
8207 Thu Sep 28 09:20:04 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
8209         * stdlib/strtod.c (STRTOF): Fix handling of numbers with lots of
8210         leading zeroes.
8212 Wed Sep 27 00:27:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8214         * sysdeps/mach/hurd/getcwd.c (__getcwd): Renamed from getcwd.
8215         (getcwd): Define as weak alias.
8216         * sysdeps/posix/getcwd.c: Likewise.
8217         * sysdeps/stub/getcwd.c: Likewise.
8218         * posix/unistd.h: Declare __getcwd.
8220         * string/string.h: Declare __strcasecmp.
8221         * sysdeps/generic/strcasecmp.c (__strcasecmp): Renamed from
8222         strcasecmp.
8223         (strcasecmp): Define as weak alias.
8225         * string/string.h: Declare __stpcpy.
8226         * sysdeps/generic/stpcpy.c (__stpcpy): Renamed from stpcpy.
8227         (stpcpy): Define as weak alias.
8229         * sysdeps/unix/sysv/linux/Implies: Add unix/common.
8231         * sysdeps/unix/i386/sysdep.h [HAVE_ELF] (ASM_TYPE_DIRECTIVE):
8232         Don't use `type' for arg name, since we are using it as a keyword
8233         in the rhs.
8235         * sysdeps/unix/configure.in: Check for syscalls getpriority,
8236         setpriority, getrlimit, setrlimit.
8238         * sysdeps/posix/truncate.c: Include fcntl.h.
8240         * sysdeps/generic/getdomain.c: Include string.h for strncpy decl.
8242         * sysdeps/stub/getpriority.c: Don't include obsolete gnu-stabs.h;
8243         use new stub_warning syntax.
8244         * sysdeps/stub/setpriority.c: Likewise.
8245         * sysdeps/stub/__longjmp.c: Likewise.
8246         * sysdeps/stub/_exit.c: Likewise.
8247         * sysdeps/stub/accept.c: Likewise.
8248         * sysdeps/stub/acos.c: Likewise.
8249         * sysdeps/stub/alarm.c: Likewise.
8250         * sysdeps/stub/asin.c: Likewise.
8251         * sysdeps/stub/atan2.c: Likewise.
8252         * sysdeps/stub/bind.c: Likewise.
8253         * sysdeps/stub/cbrt.c: Likewise.
8254         * sysdeps/stub/chroot.c: Likewise.
8255         * sysdeps/stub/closedir.c: Likewise.
8256         * sysdeps/stub/connect.c: Likewise.
8257         * sysdeps/stub/cos.c: Likewise.
8258         * sysdeps/stub/cosh.c: Likewise.
8259         * sysdeps/stub/ctermid.c: Likewise.
8260         * sysdeps/stub/cuserid.c: Likewise.
8261         * sysdeps/stub/defs.c: Likewise.
8262         * sysdeps/stub/exp.c: Likewise.
8263         * sysdeps/stub/fmod.c: Likewise.
8264         * sysdeps/stub/frexp.c: Likewise.
8265         * sysdeps/stub/fsync.c: Likewise.
8266         * sysdeps/stub/getcwd.c: Likewise.
8267         * sysdeps/stub/getenv.c: Likewise.
8268         * sysdeps/stub/gethostid.c: Likewise.
8269         * sysdeps/stub/getlogin.c: Likewise.
8270         * sysdeps/stub/getpeername.c: Likewise.
8271         * sysdeps/stub/getrlimit.c: Likewise.
8272         * sysdeps/stub/getsockname.c: Likewise.
8273         * sysdeps/stub/getsockopt.c: Likewise.
8274         * sysdeps/stub/listen.c: Likewise.
8275         * sysdeps/stub/log.c: Likewise.
8276         * sysdeps/stub/log10.c: Likewise.
8277         * sysdeps/stub/mkfifo.c: Likewise.
8278         * sysdeps/stub/morecore.c: Likewise.
8279         * sysdeps/stub/nice.c: Likewise.
8280         * sysdeps/stub/nlist.c: Likewise.
8281         * sysdeps/stub/opendir.c: Likewise.
8282         * sysdeps/stub/pipestream.c: Likewise.
8283         * sysdeps/stub/ptrace.c: Likewise.
8284         * sysdeps/stub/putenv.c: Likewise.
8285         * sysdeps/stub/readdir.c: Likewise.
8286         * sysdeps/stub/reboot.c: Likewise.
8287         * sysdeps/stub/recv.c: Likewise.
8288         * sysdeps/stub/recvfrom.c: Likewise.
8289         * sysdeps/stub/rename.c: Likewise.
8290         * sysdeps/stub/rewinddir.c: Likewise.
8291         * sysdeps/stub/seekdir.c: Likewise.
8292         * sysdeps/stub/send.c: Likewise.
8293         * sysdeps/stub/sendto.c: Likewise.
8294         * sysdeps/stub/setegid.c: Likewise.
8295         * sysdeps/stub/seteuid.c: Likewise.
8296         * sysdeps/stub/setgroups.c: Likewise.
8297         * sysdeps/stub/sethostid.c: Likewise.
8298         * sysdeps/stub/sethostname.c: Likewise.
8299         * sysdeps/stub/setjmp.c: Likewise.
8300         * sysdeps/stub/setrlimit.c: Likewise.
8301         * sysdeps/stub/setsockopt.c: Likewise.
8302         * sysdeps/stub/shutdown.c: Likewise.
8303         * sysdeps/stub/signal.c: Likewise.
8304         * sysdeps/stub/sigsuspend.c: Likewise.
8305         * sysdeps/stub/sin.c: Likewise.
8306         * sysdeps/stub/sinh.c: Likewise.
8307         * sysdeps/stub/socket.c: Likewise.
8308         * sysdeps/stub/socketpair.c: Likewise.
8309         * sysdeps/stub/sqrt.c: Likewise.
8310         * sysdeps/stub/sync.c: Likewise.
8311         * sysdeps/stub/system.c: Likewise.
8312         * sysdeps/stub/tan.c: Likewise.
8313         * sysdeps/stub/tanh.c: Likewise.
8314         * sysdeps/stub/tcdrain.c: Likewise.
8315         * sysdeps/stub/tcflow.c: Likewise.
8316         * sysdeps/stub/tcgetpgrp.c: Likewise.
8317         * sysdeps/stub/tcsendbrk.c: Likewise.
8318         * sysdeps/stub/tcsetattr.c: Likewise.
8319         * sysdeps/stub/tcsetpgrp.c: Likewise.
8320         * sysdeps/stub/telldir.c: Likewise.
8321         * sysdeps/stub/tempname.c: Likewise.
8322         * sysdeps/stub/ttyname.c: Likewise.
8323         * sysdeps/stub/ttyname_r.c: Likewise.
8324         * sysdeps/stub/utime.c: Likewise.
8326         * gmon/gmon.c (moncontrol): Don't cast buffer arg to profil.
8328         * time/mktime.c (localtime_r): Use 0 instead of NULL.
8330         * config.make.in (AS): New variable; set to `$(CC) -c'.
8332         * posix/unistd.h [__USE_BSD]: Declare profil.
8334         * elf/dl-load.c (_dl_map_object_from_fd): New function, broken out
8335         of _dl_map_object.
8336         (_dl_map_object): Call it.
8337         * elf/link.h (_dl_map_object_from_fd): Declare it.
8339 Tue Sep 26 16:50:17 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8341         * locale/libintl.h: Rewritten by Ulrich Drepper for use with GNU
8342         gettext code.
8344         * sysdeps/unix/sysv/linux/sys/param.h: New file.
8345         * sysdeps/unix/sysv/linux/Subdirs: File removed.
8347         * libc-symbols.h (_LIBC): Define to 1, not just empty.
8349         * gmon: New directory of profiling code, incorporated from
8350         4.4BSD-Lite and modified.
8351         * sysdeps/i386/machine-gmon.h: New file.
8352         * sysdeps/stub/machine-gmon.h: New file.
8353         * sysdeps/mach/hurd/profil.c: New file.
8354         * sysdeps/stub/profil.c: New file.
8355         * sysdeps/unix/bsd/profil.S: New file.
8356         * Makefile (subdirs): Add gmon.
8357         * csu/gmon-start.c: New file.
8358         * csu/Makefile (extra-objs): Add gmon-start.o,
8359         g$(start-installed-name).
8360         (install-lib, omit-deps): Add g$(start-installed-name).
8361         ($(objpfx)g$(start-installed-name)): New target.
8363 Fri Sep 22 14:24:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8365         * sysdeps/mach/hurd/Makefile: Elide sunrpc from $(subdirs) for the
8366         time being.
8368 Thu Sep 21 00:03:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8370         * sysdeps/unix/configure.in: Check for `profil' syscall.
8372         * manual/Makefile (infodir, prefix, INSTALL, INSTALL_DATA): Variables
8373         removed.
8375         * time/africa, time/asia, time/europe, time/northamerica,
8376         time/yearistype: New data from ADO 95h.
8378         * Makerules (build-shlib): Use $(@F:lib%.so=%) in place of
8379         $(notdir $*), so it wins for the explicit libc.so rule as well as the
8380         pattern rule.
8382         * sysdeps/stub/sys/sem_buf.h (union semun): New type.
8384         * sysdeps/mach/hurd/i386/init-first.c (init1) [PIC]: Call
8385         __libc_global_ctors.
8386         * sysdeps/i386/init-first.c: Rewritten.
8387         * sysdeps/unix/sysv/linux/i386/init-first.S: File removed.
8388         * sysdeps/unix/sysv/linux/i386/init-first.c: New file.
8390         * sysdeps/unix/sysv/linux/i386/fpu_control.h: Fix name in decl of
8391         ___fpu_control.
8393         * Makerules (build-shlib): New canned sequence, broken out of
8394         lib%.so rule.  Link in $^ instead of just $<.
8395         (lib%.so: lib%_pic.a): Use it.
8396         (libc.so): New target; use $(build-shlib) for cmds, but also depend
8397         on soinit.so first and sofini.so last.
8399         * elf/soinit.c: New file.
8400         * elf/sofini.c: New file.
8401         * elf/Makefile (distribute): Add soinit.c and sofini.c.
8402         (extra-objs): Add soinit.so and sofini.so.
8404         * sysvipc/sys/shm.h (shmat): Fix return type to char *.
8405         * sysdeps/stub/sys/ipc_buf.h (key_t): Type removed.
8407         * misc/syslog.c (vsyslog): Rewritten using open_memstream to
8408         dynamically allocate buffers.
8410         * Makerules (install-lib-nosubdir): Make this, rather than
8411         install-no-libc.a, depend on the installed shared libraries.
8413 Wed Sep 20 18:02:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8415         * locale/locale.c: Include errno.h.
8416         * locale/localedef.c: Likewise.
8418 Tue Sep 19 00:02:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8420         * Makefile (distclean-1): Remove config.cache, config.log, config.h.
8421         (parent-mostlyclean): Remove all flavors of the parent library.
8423         * misc/mntent.c (getmntent): Skip multiple whitespace chars
8424         between fields.
8426         * hurd/hurdstartup.c (_hurd_startup): If RPC returns
8427         EXEC_STACK_ARGS flag, get args from stack.
8428         If args on stack but have info from RPC, relocate args on stack to make
8429         space for struct hurd_startup_data.
8431 Mon Sep 18 15:06:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8433         * elf/dl-object.c: Include errno.h.
8434         * posix/execvp.c: Likewise.
8435         * dirent/scandir.c: Likewise.
8436         * sysdeps/posix/system.c: Likewise.
8437         * sysdeps/generic/setenv.c: Likewise.
8438         * stdlib/msort.c: Likewise.
8439         * stdio/memstream.c: Likewise.
8440         * stdio/fclose.c: Likewise.
8441         * stdio/getdelim.c: Likewise.
8442         * stdio/setvbuf.c: Likewise.
8443         * sysdeps/ieee754/ldexp.c: Likewise.
8444         * locale/locfile-parse.c: Likewise.
8446         * stdlib/lcong48_r.c: Don't check for null argument; let it fault.
8447         * stdlib/seed48_r.c: Likewise.
8448         * stdlib/srand48_r.c: Likewise.
8449         * stdlib/jrand48_r.c: Likewise.
8450         * stdlib/nrand48_r.c: Likewise.
8452         * Makeconfig (+gccwarn): Remove -Wbad-function-cast, which seems
8453         to be useless.
8455 Mon Sep 18 12:39:22 1995  Paul Eggert  <eggert@twinsun.com>
8457         * mktime.c (localtime_r): Add substitute if the system doesn't
8458         provide one.
8460 Mon Sep 18 14:39:20 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8462         * time/gmtime.c (gmtime_r): Define as weak alias.
8463         * time/localtime.c (localtime_r): Define as weak alias.
8464         * time/time.h [__USE_REENTRANT] (gmtime_r, localtime_r): Declare them.
8466         * errno.h: Only define _ERRNO_H #ifndef __need_Emath.
8467         #undef __need_Emath after including errnos.h.
8468         [_ERRNO_H]: Protect decls with this.
8470 Sun Sep 17 08:22:12 1995  Paul Eggert  <eggert@twinsun.com>
8472         Fix mktime so that it does not write over localtime's returned value.
8473         * localtime.c (__localtime_r): New function, with extra arg
8474         specifying where to store result.
8475         (localtime): Use it.
8476         (_tmbuf): New var.
8477         * gmtime.c (__gmtime_r, gmtime, _tmbuf): Likewise.
8478         * mktime.c (__mktime_internal): Conversion function is now
8479         __localtime_r style, not localtime style.
8480         (mktime): Pass __localtime_r, not localtime.
8481         * timegm.c (timegm): Pass __gmtime_r, not gmtime.
8482         * offtime.c (__offtime): New arg specifying where to store result.
8483         * time.h (__mktime_internal, __offtime): Adjust decls accordingly.
8484         (__gmtime_r, __localtime_r): New decls.
8486         * time/localtime.c: <stddef.h>, <ctype.h>, <stdio.h>,
8487         <stdlib.h>, <string.h>: Remove includes.
8488         <errno.h>: Add include.
8490         * time/mktime.c, time/time.h, time/timegm.c (__mktime_internal):
8491         Renamed from _mktime_internal to avoid namespace pollution.
8493         * time/gmtime.c: Clear tm_isdst.
8495 Mon Sep 18 01:58:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8497         * misc/efgcvt_r.c (ecvt_r, fcvt_r): Last arg is size_t, not int.
8498         * stdlib/stdlib.h (ecvt_r, fcvt_r): Fix type of last arg: make it
8499         size_t.
8501         * sysdeps/mach/hurd/fpathconf.c: Call __io_pathconf instead of
8502         __file_pathconf.
8503         * sysdeps/mach/hurd/pathconf.c: Likewise.
8505         * Makefile (subdirs): Add sysvipc.
8507         * stdlib/srand48_r.c (srand48_r): Use UL suffix for huge constant.
8508         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
8510 Sun Sep 17 18:29:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8512         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Call
8513          __file_set_size instead of __file_truncate.
8515         * features.h (__USE_REENTRANT): New macro.
8517         * sysdeps/mach/hurd/truncate.c: Call __file_set_size instead of
8518         __file_truncate.
8519         * sysdeps/mach/hurd/ftruncate.c: Likewise.
8521         * sysdeps/unix/sysv/linux/dl-machine.h: File removed.
8523 Sat Sep 16 17:47:19 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
8525         * elf/elf.h (AT_GID): Fix typo: Read -> Real.
8527         * misc/efgvt_r.c: New file.  Reentrant version of [efg]cvt functions.
8528         * misc/efgcvt.c: Rewrite to use reentrant functions.
8529         * misc/search.h: Many decls for hsearch functions.
8530         * misc/hsearch_r.c: New file.  Reentrant version of functions from
8531         hsearch family.
8532         * misc/hsearch.c, misc/tsearch.c: New files.
8533         * misc/Makefile (routines): Add efgcvt_r, hsearch_r, hsearch, tsearch.
8535         * posix/unistd.h (ttyname_r): Add prototype for new function.
8537         * stdlib/drand48_r.c, stdlib/erand48_r.c, stdlib/jrand48_r.c,
8538         stdlib/lrand48_r.c, stdlib/mrand48_r.c, stdlib/nrand48_r.c,
8539         stdlib/seed48_r.c, stdlib/srand48_r.c, stdlib/lcong48_r.c,
8540         stdlib/drand48-iter.c: New files implementing reentrant versions
8541         of functions from drand48 family.
8542         * stdlib/seed48.c, stdlib/drand48.c, stdlib/erand48.c,
8543         stdlib/jrand48.c, stdlib/lrand48.c, stdlib/mrand48.c,
8544         stdlib/nrand48.c, stdlib/srand48.c, stdlib/lcong48.c:
8545         Rewrite to use reentrant versions.
8546         * stdlib/a64l.c, stdlib/l64a.c: New files.  Implement a64l()
8547         and l64a() functions from SysV library.
8548         * stdlib/Makefile (routines): Add drand48_r, erand48_r, lrand48_r,
8549         nrand48_r, mrand48_r, jrand48_r, srand48_r, seed48_r, lcong48_r,
8550         drand48-iter, a64l, l64a.
8551         * stdlib/stdlib.h: Declare them.
8553         * stdlib/random_r.c: New file.  Reentrant version of functions
8554         from random family.
8555         * stdlib/stdlib.h: Declare them.
8556         * stdlib/random.c: Rewrite to use reentrant functions.
8558         * string/strerror_r.c: New file.  Reentrant version.
8559         * string/strerror.c: Change for new _strerror_internal form.
8560         * string/Makefile (routines): Add strerror_r.
8562         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Set default
8563         value of user_entry to `_start'.
8564         Close AT_ENTRY case with `break'.
8566         * sysdeps/generic/strstr.c: New and much faster implementation
8567         by Stephen R. van den Berg.
8569         * sysdeps/generic/_strerror.c: _strerror_internal now takes
8570         three argument and has and explicit buffer length.
8571         * sysdeps/mach/_strerror.c: Change for new interface with three
8572         arguments.
8573         * stdio/perror.c, stdio/vfprintf.c: Callers changed.
8575         * sysdeps/mach/hurd/ttyname_r.c: New file.  Reentrant version.
8576         * sysdeps/posix/ttyname_r.c: New file.  Reentrant version.
8577         * sysdeps/stub/ttyname_r: New file.  Define as dummy function.
8579         * sysdeps/posix/utimes.c: Include <utime.h> for prototype.
8580         (utimes): First parameter to utime must be file, not path.
8582         * sysdeps/posix/sysconf.c (__sysconf): Test for CLK_TCK in case
8583         _SC_CLK_TCK and return it when available.
8584         Test for STREAM_MAX in case _SC_STREAM_MAX and return it when
8585         available.
8586         Add case for _SC_2_LOCALEDEF which is now available.
8588         * posix/sys/types.h [__USE_SVID] (key_t): New type.
8589         * sysvipc/Makefile, sysvipc/ftok.c, sysvipc/sys/ipc.h,
8590         sysvipc/sys/msg.h, sysvipc/sys/sem.h, sysvipc/sys/shm.h,
8591         sysdeps/stub/sys/msq_buf.h, sysdeps/stub/sys/sem_buf.h,
8592         sysdeps/stub/sys/shm_buf.h, sysdeps/stub/sys/ipc_buf.h,
8593         sysdeps/stub/semctl.c, sysdeps/stub/semget.c, sysdeps/stub/semop.c,
8594         sysdeps/stub/shmat.c, sysdeps/stub/shmctl.c, sysdeps/stub/shmdt.c,
8595         sysdeps/stub/shmget.c, sysdeps/stub/msgctl.c, sysdeps/stub/msgget.c,
8596         sysdeps/stub/msgrcv.c, sysdeps/stub/msgsnd.c: New files.
8597         Add implementation of System V IPC.
8599 Fri Sep 15 21:34:28 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8601         * hurd/hurdsig.c: Include <hurd/crash.h> in place of <hurd/core.h>.
8602         (write_corefile): Call __crash_dump_task instead of __core_dump_task.
8603         Use envariable CRASHSERVER instead of CORESERVER.
8604         * hurd/Makefile (user-interfaces): Replace hurd/core with hurd/crash.
8606 Tue Sep 12 14:30:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8608         * misc/mntent.c: New file.
8609         * misc/mntent.h: New file.
8610         * misc/Makefile (headers): Added mntent.h.
8611         (routines): Added mntent.
8612         * misc/fstab.c: Rewritten using mntent functions.
8614 Mon Sep 11 14:00:14 1995  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
8616         * posix/glob.c (glob): Comment fix.
8618 Fri Sep  8 16:25:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8620         * libc-symbols.h [HAVE_ELF] (symbol_set_declare): Declare the
8621         symbols weak.
8623         * conf/portability.h (NEED_INETADDR, NEED_INETATON): Define to 1,
8624         not empty.
8626 Fri Sep  8 16:32:12 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
8628         * sysdeps/unix/sysv/linux/Implies,
8629         sysdeps/unix/sysv/linux/Makefile, sysdeps/unix/sysv/linux/Subdirs,
8630         sysdeps/unix/sysv/linux/accept.S, sysdeps/unix/sysv/linux/adjtime.c,
8631         sysdeps/unix/sysv/linux/adjtimex.S, sysdeps/unix/sysv/linux/bind.S,
8632         sysdeps/unix/sysv/linux/connect.S, sysdeps/unix/sysv/linux/direct.h,
8633         sysdeps/unix/sysv/linux/dl-machine.h, sysdeps/unix/sysv/linux/errnos.h,
8634         sysdeps/unix/sysv/linux/fork.S, sysdeps/unix/sysv/linux/gethostid.c,
8635         sysdeps/unix/sysv/linux/gethostname.C,
8636         sysdeps/unix/sysv/linux/getpeername.S,
8637         sysdeps/unix/sysv/linux/getpgid.S, sysdeps/unix/sysv/linux/getpgrp.S,
8638         sysdeps/unix/sysv/linux/getsockname.S,
8639         sysdeps/unix/sysv/linux/getsockopt.S, sysdeps/unix/sysv/linux/gtty.S,
8640         sysdeps/unix/sysv/linux/listen.S, sysdeps/unix/sysv/linux/local_lim.h,
8641         sysdeps/unix/sysv/linux/madvise.c, sysdeps/unix/sysv/linux/msgctl.c,
8642         sysdeps/unix/sysv/linux/msgget.c, sysdeps/unix/sysv/linux/msgrcv.c,
8643         sysdeps/unix/sysv/linux/msgsnd.c, sysdeps/unix/sysv/linux/pipe.S,
8644         sysdeps/unix/sysv/linux/poll.c, sysdeps/unix/sysv/linux/readv.c,
8645         sysdeps/unix/sysv/linux/recv.S, sysdeps/unix/sysv/linux/recvfrom.S,
8646         sysdeps/unix/sysv/linux/recvmsg.S, sysdeps/unix/sysv/linux/semctl.c,
8647         sysdeps/unix/sysv/linux/semget.c, sysdeps/unix/sysv/linux/semop.c,
8648         sysdeps/unix/sysv/linux/send.S, sysdeps/unix/sysv/linux/sendmsg.S,
8649         sysdeps/unix/sysv/linux/sendto.S, sysdeps/unix/sysv/linux/setegid.c,
8650         sysdeps/unix/sysv/linux/seteuid.c, sysdeps/unix/sysv/linux/sethostid.c,
8651         sysdeps/unix/sysv/linux/setpgid.c, sysdeps/unix/sysv/linux/setpgrp.c,
8652         sysdeps/unix/sysv/linux/setsid.S, sysdeps/unix/sysv/linux/setsockopt.S,
8653         sysdeps/unix/sysv/linux/settimeofday.S,
8654         sysdeps/unix/sysv/linux/shmat.c, sysdeps/unix/sysv/linux/shmctl.c,
8655         sysdeps/unix/sysv/linux/shmdt.c, sysdeps/unix/sysv/linux/shmget.c,
8656         sysdeps/unix/sysv/linux/shutdown.S,
8657         sysdeps/unix/sysv/linux/sigaction.S, sysdeps/unix/sysv/linux/signal.S,
8658         sysdeps/unix/sysv/linux/sigpending.S, sysdeps/unix/sysv/linux/sigset.h,
8659         sysdeps/unix/sysv/linux/sockaddrcom.h,
8660         sysdeps/unix/sysv/linux/socketpair.S, sysdeps/unix/sysv/linux/speed.c,
8661         sysdeps/unix/sysv/linux/statbuf.h, sysdeps/unix/sysv/linux/stty.S,
8662         sysdeps/unix/sysv/linux/syscall.h, sysdeps/unix/sysv/linux/sysconf.c,
8663         sysdeps/unix/sysv/linux/tcdrain.c, sysdeps/unix/sysv/linux/tcflow.c,
8664         sysdeps/unix/sysv/linux/tcflush.c, sysdeps/unix/sysv/linux/tcgetattr.c,
8665         sysdeps/unix/sysv/linux/tcsetattr.c,
8666         sysdeps/unix/sysv/linux/termbits.h, sysdeps/unix/sysv/linux/ualarm.c,
8667         sysdeps/unix/sysv/linux/ulimit.c, sysdeps/unix/sysv/linux/usleep.c,
8668         sysdeps/unix/sysv/linux/utsnamelen.h, sysdeps/unix/sysv/linux/vfork.c,
8669         sysdeps/unix/sysv/linux/wait.c, sysdeps/unix/sysv/linux/wait4.S,
8670         sysdeps/unix/sysv/linux/waitpid.c, sysdeps/unix/sysv/linux/writev.c:
8671         New Linux/ELF specific, architecture independent files.
8672         * sysdeps/unix/sysv/linux/i386/Dist,
8673         sysdeps/unix/sysv/linux/i386/Makefile,
8674         sysdeps/unix/sysv/linux/i386/brk.S,
8675         sysdeps/unix/sysv/linux/i386/fcntlbits.h,
8676         sysdeps/unix/sysv/linux/i386/fpu_control.c,
8677         sysdeps/unix/sysv/linux/i386/fpu_control.h,
8678         sysdeps/unix/sysv/linux/i386/fstat.S,
8679         sysdeps/unix/sysv/linux/i386/fxstat.S,
8680         sysdeps/unix/sysv/linux/i386/ieee_fpu.c,
8681         sysdeps/unix/sysv/linux/i386/init-first.S,
8682         sysdeps/unix/sysv/linux/i386/ipc.S,
8683         sysdeps/unix/sysv/linux/i386/lstat.S,
8684         sysdeps/unix/sysv/linux/i386/lxstat.S,
8685         sysdeps/unix/sysv/linux/i386/mknod.S,
8686         sysdeps/unix/sysv/linux/i386/mmap.S,
8687         sysdeps/unix/sysv/linux/i386/sbrk.S,
8688         sysdeps/unix/sysv/linux/i386/setfpucw.c,
8689         sysdeps/unix/sysv/linux/i386/signum.h,
8690         sysdeps/unix/sysv/linux/i386/socket.S,
8691         sysdeps/unix/sysv/linux/i386/stat.S,
8692         sysdeps/unix/sysv/linux/i386/syscall.S,
8693         sysdeps/unix/sysv/linux/i386/sysdep.S,
8694         sysdeps/unix/sysv/linux/i386/sysdep.h,
8695         sysdeps/unix/sysv/linux/i386/xmknod.S,
8696         sysdeps/unix/sysv/linux/i386/xstat.S:
8697         New Linux i386/ELF specific files.
8698         * sysdeps/unix/sysv/linux/sys/ipc_buf.h,
8699         sysdeps/unix/sysv/linux/sys/mman.h,
8700         sysdeps/unix/sysv/linux/sys/msq_buf.h,
8701         sysdeps/unix/sysv/linux/sys/sem_buf.h,
8702         sysdeps/unix/sysv/linux/sys/shm_buf.h,
8703         sysdeps/unix/sysv/linux/sys/socketcall.h,
8704         sysdeps/unix/sysv/linux/sys/timex.h:
8705         New Linux/ELF specific, architecture independent header files.
8706         * sysdeps/unix/sysv/sysv4/linux: Tree removed.
8708 Thu Sep  7 17:05:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8710         * stdlib/msort.c (msort_with_tmp): Fixed alignment test.  B1 and
8711         B2 are always congruent; just test that B1 is aligned.
8713 Wed Sep  6 19:41:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8715         * elf/dl-lookup.c (_dl_lookup_symbol): Test WEAK_VALUE.s rather
8716         than WEAK_VALUE.a to see if a weak value has been set.  A valid
8717         weak value may set WEAK_VALUE.a to 0.
8719 Fri Sep  1 16:16:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8721         * sysdeps/mach/hurd/i386/longjmp-ts.c: Use new array format for
8722         jmp_buf.
8724         * libc-symbols.h (link_warning): Take new first arg SYMBOL; ask
8725         for a warning on references to that specific symbol, not the
8726         entire containing object file.
8727         (stub_warning): Pass symbol name to link_warning.
8728         * stdio/gets.c: Pass function name in link_warning invocation.
8730         * hurd/intr-msg.c: Treat apparent EINTR return from msg trap like
8731         MACH_SEND_INTERRUPTED.  That indicates interrupt_operation was
8732         sent, but failed.
8734         * stdlib/msort.c: Include memcopy.h.
8735         (msort_with_tmp): If operating on aligned op_t words, use direct word
8736         fetches and stores.
8738         * sysdeps/i386/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC): Add
8739         missing backslash.
8741 Thu Aug 31 13:23:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8743         * sysdeps/unix/i386/brk.S [PIC]: Set __curbrk through the GOT.
8745         Rewrote i386 setjmp code in assembly, so as to avoid fighting
8746         with the compiler for the register values.
8747         * sysdeps/i386/setjmp.S, sysdeps/i386/__longjmp.S: New files.
8748         * sysdeps/i386/setjmp.c, sysdeps/i386/__longjmp.c: Files removed.
8749         * sysdeps/i386/jmp_buf.h [! _ASM] (__jmp_buf): Define as array of ints.
8750         [__USE_MISC || _ASM] (JB_*): New macros, for indices therein.
8751         (_JMPBUF_UNWINDS): Use JB_SP.
8753 Wed Aug 30 16:44:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8755         * sysdeps/mach/hurd/select.c: Deal with out of order replies
8756         during io_select request loop.
8757         Handle MACH_RCV_TIMED_OUT error from requests.
8758         * hurd/intr-msg.c: If the user passed the MACH_RCV_TIMEOUT option,
8759         distinguish MACH_RCV_TIMED_OUT from EINTR.
8761         * posix/glob.c (glob): Use realloc to extend strings for GLOB_MARK
8762         slash.
8763         (glob_in_dir): Don't allocate extra byte here.
8765         * sysdeps/i386/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
8766         Decrement the DT_RELSZ value for the skipped reloc.
8768 Tue Aug 29 12:35:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8770         * time/australasia: Updated data from ADO.
8772 Mon Aug 28 17:47:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8774         * dirent/dirent.h: Don't include <dirstream.h>.
8775         Instead, define DIR as typedef for (undefined) `struct __dirstream'.
8777 Fri Aug 25 12:12:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8779         * sysdeps/mach/hurd/dirstream.h: Define `struct __dirstream'
8780         instead of `DIR'.
8781         * sysdeps/unix/bsd/dirstream.h: Likewise.
8782         * sysdeps/stub/dirstream.h: Likewise.
8783         * sysdeps/unix/dirstream.h: Likewise.
8784         * sysdeps/mach/hurd/telldir.c: Include "dirstream.h".
8785         * sysdeps/mach/hurd/seekdir.c: Likewise.
8786         * sysdeps/mach/hurd/opendir.c: Likewise.
8787         * sysdeps/mach/hurd/closedir.c: Likewise.
8788         * sysdeps/mach/hurd/readdir.c: Likewise.
8789         * sysdeps/unix/telldir.c: Likewise.
8790         * sysdeps/unix/seekdir.c: Likewise.
8791         * sysdeps/unix/rewinddir.c: Likewise.
8792         * sysdeps/unix/readdir.c: Likewise.
8793         * sysdeps/unix/opendir.c: Likewise.
8794         * sysdeps/unix/closedir.c: Likewise.
8795         * sysdeps/unix/bsd/telldir.c: Likewise.
8796         * sysdeps/unix/bsd/readdir.c: Likewise.
8797         * dirent/Makefile (headers): Remove dirstream.h.
8798         (distribute): Put it here instead.
8800         * sysdeps/mach/hurd/mmap.c: Fix inverted test of MAP_FIXED.
8802         * stdio/vfscanf.c (number): Allow field width to inhibit first
8803         digit after base detection.
8805         * stdio/vfprintf.c (vfprintf: %s): Never search past the limit
8806         specified by the precision.
8808         * grp/grpread.c (__grpscan): New function.
8809         * grp/grp.h (__grpscan): Declare it.
8810         * grp/getgrgid.c: Use __grpscan.
8811         * grp/getgrnam.c: Likewise.
8812         * pwd/pwdread.c (__pwdscan): New function.
8813         * pwd/pwd.h (__pwdscan): Declare it.
8814         * pwd/getpwnam.c: Use __pwdscan.
8815         * pwd/getpwuid.c: Likewise.
8817 Thu Aug 24 16:29:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8819         * sysdeps/mach/hurd/mmap.c: Treat (FLAGS & MAP_TYPE) == 0 like
8820         MAP_FILE.
8822         * hurd/thread-cancel.c: Return EINTR when called on self.
8823         * sysdeps/i386/elf/start.S (data_start): Define as weak alias for
8824         __data_start.
8826 Tue Aug 22 16:49:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8828         * inet/netdb.h: Moved to resolv.
8829         * inet/Makefile (headers): Remove netdb.h.
8830         * resolv/Makefile (headers): Add netdb.h.
8831         * resolv/gethnamaddr.c, resolv/inet_addr.c, resolv/netdb.h,
8832         resolv/res_send.c: Updated from BIND-4.9.3-BETA26.
8834         * hurd/thread-cancel.c: If SS->cancel_hook is not null, call it before
8835         resuming the thread.
8836         * hurd/hurd/signal.h (struct hurd_sigstate): New member `cancel_hook'.
8838         * hurd/Makefile: Removed dep on hurd/signal.h for RPC stub objects.
8840 Mon Aug 21 16:37:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8842         * sysdeps/i386/dl-machine.h (elf_machine_rel): Grok R_386_NONE
8843         relocs, and do nothing.  Why the linker generates them we may
8844         never know.
8846 Thu Aug 17 16:18:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8848         * sysdeps/mach/hurd/Makefile: Don't elide sunrpc and manual from
8849         `subdirs' variable.
8851         * sysdeps/mach/hurd/i386/intr-msg.h: New file.
8852         * hurd/intr-msg.c: Use INTR_MSG_TRAP macro from machine-dependent
8853         "intr-msg.h" for special syscall code, instead of i386-specific asm.
8854         * hurd/hurdsig.c: Use INTR_MSG_BACK_OUT macro from
8855         machine-dependent "intr-msg.h" before mutating thread state to
8856         skip RPC.
8858         * sysdeps/mach/hurd/i386/trampoline.c: If PC is inside
8859         _hurd_intr_rpc_mach_msg special syscall code, use real SP saved in
8860         %ecx.
8862         * Makeconfig (link-libc): New variable; use shared library if
8863         available.
8864         (+link): Use it.
8866         * sysdeps/mach/hurd/fork.c (_hurd_fork_locks): Variable removed.
8867         Instead, declare with `symbol_set_declare'.
8868         (fork): Use symbol_set_* macros for _hurd_fork_locks.
8869         Use SS->thread instead of __mach_thread_self ().  Suspend all
8870         other threads during task_create and port copying.
8872 Wed Aug 16 17:04:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8874         * hurd/intr-msg.c: Fixed calculation of syscall %esp.
8876 Tue Aug 15 12:26:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8878         * hurd/hurdsig.c (_hurdsig_abort_rpcs): Remove `static'.
8880         * hurd/Makefile (sig): Add intr-msg.
8882 Mon Aug 14 16:51:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8884         * hurd/thread-cancel.c: New file.
8885         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler): In
8886         rpc_wait case, frob mach_msg args to set timeout on receive.
8887         (_hurdsig_rcv_interrupted_p): Function removed.
8888         * sysdeps/mach/hurd/alpha/trampoline.c: Likewise.
8889         * sysdeps/mach/hurd/hppa/trampoline.c: Likewise.
8890         * sysdeps/mach/hurd/mips/trampoline.c: Likewise.
8891         * hurd/intr-msg.c: New file.
8892         * hurd/hurd/signal.h (struct hurd_sigstate): New member `cancel'.
8893         (_hurdsig_rcv_interrupted_p): Declaration removed.
8894         (HURD_EINTR_RPC): Macro removed.
8895         (_hurd_longjmp_thread_state, _hurd_interrupted_rpc_timeout): Declare
8896         these.
8897         * hurd/intr-rpc.h: New file.
8898         * hurd/intr-rpc.defs: Just import intr-rpc.h.
8899         * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): New variable.
8900         (interrupted_reply_port_location): Take new flag arg; only catch
8901         faults if it's set.
8902         (abort_rpcs): Rename to _hurdsig_abort_rpcs; take same new flag arg.
8903         No longer use _hurdsig_rcv_interrupted_p; instead compare PC to
8904         &_hurd_intr_rpc_msg_in_trap.  If before it, mutate state to simulate
8905         MACH_SEND_INTERRUPTED return; on it, interrupt the operation.  All
8906         callers changed.
8907         * hurd/hurd.h (hurd_thread_cancel, hurd_check_cancel): Declare these.
8908         * hurd/Makefile (distribute): Remove intr-rpc.awk.
8909         (sig): Add thread-cancel.
8910         (transform-user-stub, transform-user-stub-output): Variables removed.
8911         * sysdeps/mach/hurd/dl-sysdep.c: Change all RPCs from
8912         `__hurd_intr_rpc_*' to `__*'.
8913         (_hurd_intr_rpc_mach_msg): New function.
8914         (_hurd_thread_sigstate): Function removed.
8915         * sysdeps/mach/hurd/ioctl.c: Use _hurd_intr_rpc_mach_msg function,
8916         instead of __mach_msg inside HURD_EINTR_RPC macro.
8918         * sysdeps/generic/morecore.c [__GNU_LIBRARY__]: Declare `__sbrk'
8919         to take ptrdiff_t arg.
8921         * sysdeps/mach/hurd/fork.c: Remove _hurd_longjmp_thread_state decl.
8923         * sysdeps/mach/hurd/kill.c (kill_pid): Don't make `inline'.
8925         * libc-symbols.h [GCC >= 2.7] (strong_alias, weak_symbol,
8926         weak_alias): Use `extern' storage class.
8928 Wed Aug  9 14:25:35 1995  Miles Bader  <miles@geech.gnu.ai.mit.edu>
8930         * sysdeps/mach/hurd/setuid.c (__setuid): Switch the port-type and
8931         port-count parameters to __auth_makeauth.
8932         * sysdeps/mach/hurd/setgid.c (__setgid): Ditto.
8934 Tue Aug  8 12:22:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8936         * hurd/sigunwind.c: Remove _hurd_longjmp_thread_state decl.
8938         * inet/netinet/tcp.h: New file, incorporated from 4.4BSD-Lite.
8940 Tue Aug  8 12:06:04 1995  Michael I. Bushnell, p/BSG  <mib@duality.gnu.ai.mit.edu>
8942         * inet/netinet/in.h (IP_MULTICAST_TTL, IP_MULTICAST_LOOP,
8943         IP_MULTICAST_IP, IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP): New IP
8944         layer socket options.
8945         (IPPROTO_GGP): Delete obsolote protocol.
8946         (IPPROTO_IGMP): Add new protocol (with same value [2] as old GGP).
8947         (struct ip_mreq): New type.
8949 Mon Aug  7 14:04:36 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8951         * stdlib/strtol.c: Use #ifdef, not #if, for HAVE_LIMITS_H.
8953         * posix/glob.c (glob_in_dir): Allocate GLOB_MARK byte in case when
8954         (NFOUND == 0 && (FLAGS & GLOB_NOCHECK)).
8956         * sysdeps/generic/sysd-stdio.c (__stdio_reopen): Return failure
8957         when __stdio_open fails with a code other than ENFILE or EMFILE.
8959 Fri Aug  4 16:01:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8961         * Makefile (headers): Added gnu-versions.h.
8963 Thu Aug  3 14:41:11 1995  Michael I. Bushnell  <mib@duality.gnu.ai.mit.edu>
8965         * inet/netinet/in.h (IN_CLASSD, IN_EXPERIMENTAL, IN_BADCLASS): Use
8966         equality, not assignment, to test bitfields.
8968 Sat Jul 29 10:41:06 1995  Miles Bader  <miles@churchy.gnu.ai.mit.edu>
8970         * sysdeps/mach/hurd/sendto.c (sendto): Use the ifsock protocol to
8971         resolve AF_LOCAL addresses.
8973         * sysdeps/mach/hurd/accept.c (accept): If the protocol family
8974         can't tell us what an address means, just return a zero-length
8975         buffer instead.
8976         * sysdeps/mach/hurd/recvfrom.c (recvfrom): Ditto.
8978 Fri Jul 28 15:29:11 1995  Miles Bader  <miles@churchy.gnu.ai.mit.edu>
8980         * sysdeps/mach/hurd/bind.c (bind): Don't use
8981         file_invoke_translator, as it doesn't work.  Instead just lookup
8982         the translated node again, and hope we're not hit by any race
8983         conditions.
8985 Wed Jul 26 02:00:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8987         * csu/Makefile [$(elf)=yes] (have-initfini): Set to yes.
8988         [$(have-initfini)=yes]: Test this rather than $(elf) for crtstuff.
8989         [start-installed-name-rule]: If this is defined, elide rule for
8990         $(objpfx)$(start-installed-name).
8991         * csu/initfini.c (SECTION): New macro, different definitions for
8992         #ifdef HAVE_ELF and not.
8993         (_init, _fini): Use that macro.
8994         * sysdeps/unix/sysv/sco3.2.4/Makefile [$(subdir)=csu]
8995         (start-installed-rule, start-installed-name-rule): New variables;
8996         specify crt1.o, created by our own rule.
8997         ($(objpfx)crt1.o): New rule.
8998         * configure.in: Require autoconf 2.4.2 or later.  Change all
8999         AC_CACHE_VAL uses to use new AC_CACHE_CHECK macro instead;
9000         prettify some messages.
9001         [$elf!=yes] (libc_cv_have_initfini): New test for `.init' and `.fini'
9002         sections.
9003         * munch-tmpl.c [HAVE_INITFINI]: Call _init and atexit (_fini) in
9004         this case rather than #ifdef HAVE_ELF.
9005         * config.h.in (HAVE_INITFINI): New macro.
9006         * config.make.in (have-initfini): New variable, set by configure.
9008         * stdio/vfscanf.c (conv_error): Simplify expression to avoid
9009         "value computed is not used" warning.
9011         * Makeconfig (+gccwarn): Removed -Wconversion.
9013         * csu/initfini.c (GLOBAL): Macro removed.
9014         (_init, _fini): Always define globally.
9015         * csu/Makefile (crtstuff, initfini): Don't make crt[in]_s.o.
9017         * asia, backward, europe, leapseconds, southamerica: New data from
9018         ADO's 95e.
9020         * inet/Makefile (routines): Removed inet_addr.
9021         * inet/inet_addr.c: Moved to resolv/ subdirectory.
9022         * resolv/Makefile (routines): Added inet_addr.
9023         * resolv/inet_addr.c: Incorporated from BIND 4.9.3-BETA24 release.
9024         * resolv/gethnamaddr.c: Likewise.
9025         * resolv/getnetbyaddr.c: Likewise.
9026         * resolv/getnetbyname.c: Likewise.
9027         * resolv/getnetent.c: Likewise.
9028         * resolv/getnetnamadr.c: Likewise.
9029         * resolv/herror.c: Likewise.
9030         * resolv/nsap_addr.c: Likewise.
9031         * resolv/res_comp.c: Likewise.
9032         * resolv/res_debug.c: Likewise.
9033         * resolv/res_init.c: Likewise.
9034         * resolv/res_mkquery.c: Likewise.
9035         * resolv/res_query.c: Likewise.
9036         * resolv/res_send.c: Likewise.
9037         * resolv/resolv.h: Likewise.
9038         * resolv/sethostent.c: Likewise.
9039         * resolv/arpa/nameser.h: Likewise.
9040         * inet/netdb.h: Incorporated from BIND 4.9.3-BETA24 release.
9041         [__GNU_LIBRARY__]: Include <rpc/netdb.h> instead of repeating
9042         its declarations (and doing so only #ifdef sun!).
9043         * conf/portability.h (NEED_INETADDR, NEED_INETATON): New macros.
9045         * posix/sys/types.h [__USE_BSD] (__BIT_TYPES_DEFINED__): New macro.
9046         [__USE_BSD] [__GNUC__] (int64_t, u_int64_t, register_t): New typedefs.
9048         * malloc/memalign.c: Allocate (SIZE + ALIGNMENT - 1) and then trim
9049         if possible.
9051         * mach/shortcut.awk: Emit decls for RPC.
9053         * libc-symbols.h [GCC >= 2.7 && !ASSEMBLER] (weak_symbol,
9054         weak_alias, strong_alias): Define using GCC __attribute__ syntax.
9056         * Makerules ($(installed-libcs)): Depend on `lib' (only).
9058 Tue Jul 25 09:14:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9060         * sysdeps/mach/hurd/pathconf.c: Declare VALUE as int, not long int.
9062         * stdlib/strtol.c [_LIBC]: Define STDC_HEADERS.
9064         * sysdeps/unix/sysv/ftime.S: New file.
9066         * locale/locfile-parse.c (categories_write): Cast "" to char *.
9068         * io/fcntl.h [__OPTIMIZE__] (creat): Macro removed.
9070         * time/strftime.c: Use year modulo 100 for %y.
9072         * time/sys/timeb.h: Add __BEGIN_DECLS and __END_DECLS.
9074         * sysdeps/unix/snarf-ioctls (snarfexclude): Use two sed's instead
9075         of one, to work around bug in sunos4.1.2 sed.
9077         * stdio/vfprintf.c (vfprintf): For %s with precision spec, use
9078         memchr instead of strlen to limit search for NUL by precision.
9080 Mon Jul 24 03:13:16 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9082         * sysdeps/posix/pathconf.c: New file.
9084 Sat Jul 22 20:53:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9086         * sysdeps/unix/i386/sysdep.h (JUMPTARGET): Use ## to avoid space
9087         before @PLT.
9088         * sysdeps/mach/i386/sysdep.h (JUMPTARGET): New macro.
9089         * sysdeps/i386/bsd-_setjmp.S: Use JUMPTARGET macro in jmp insn.
9090         * sysdeps/i386/bsd-setjmp.S: Likewise.
9092 Sat Jul 22 19:58:54 1995  Michael I Bushnell  <mib@geech.gnu.ai.mit.edu>
9094         * inet/Makefile (routines): Added `ruserpass'.
9095         * inet/ruserpass.c: New file, from BSD Net-2 sources for the FTP
9096         client.  Modified to remove the fourth arg AACCT.  Do nothing for
9097         the `account' and `macdef' keywords.  Other incidental changes
9098         because we are not in the FTP source tree.
9100 Sat Jul 22 01:56:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9102         * sysdeps/stub/init-posix.c: Removed stub warning.
9104         * Makefile (autoconf-it): Make it executable and unwritable.
9106         * configure.in (sysnames): Under --enable-debug-configure, spew
9107         potential sysnames.
9109         * sysdeps/unix/i386/sysdep.h (JUMPTARGET): New macro; use name@PLT
9110         #ifdef PIC.
9111         (PSEUDO): Use JUMPTARGET(syscall_error) in jump insn.
9112         * sysdeps/unix/i386/syscall.S: Use JUMPTARGET(syscall_error) in
9113         jump insn.
9115         * sysdeps/unix/sysv/sysv4/linux/i386/sysdep.h: Rewritten.
9116         * sysdeps/unix/sysv/sysv4/linux/i386/syscall.S: New file.
9117         * sysdeps/unix/sysv/sysv4/linux/i386/socket.S: Include
9118         <sys/socketcall.h>.  Save %ebx in call-clobbered %edx instead of
9119         stack.  Use JUMPTARGET(syscall_error) in jump insn.
9121         * Makeconfig (+gccwarn): Add -Wbad-function-cast -Wconversion.
9123         * sysdeps/unix/i386/sysdep.h (ENTRY): Use ASM_GLOBAL_DIRECTIVE and
9124         ASM_TYPE_DIRECTIVE.
9125         (ASM_TYPE_DIRECTIVE): New macro; defined using `.type' #ifdef ELF.
9127         * sysdeps/unix/sysv/sysv4/linux/i386/sysdep.S (__syscall_error):
9128         Rewritten, #include'ing unix/i386/sysdep.S for most of the code.
9129         * sysdeps/unix/i386/sysdep.S [PIC]: Store into `errno' through the GOT.
9131         * configure.in (os=linux*): Use unix/sysv/sysv4 for $base_os,
9132         instead of unix/sysv.
9133         * sysdeps/unix/sysv/linux/{accept,connect,getsockname,rename,
9134         socketpair,waitpid,bind,getpeername,listen,setsid,wait4}.S: Moved
9135         to new directory sysdeps/unix/sysv/sysv4/linux.
9136         * sysdeps/unix/sysv/linux: Directory removed.
9137         * sysdeps/unix/sysv/i386/linux/{socket.S,sysdep.h,sysdep.S}: Moved
9138         to new directory sysdeps/unix/sysv/sysv4/linux/i386.
9139         * sysdeps/unix/sysv/linux/i386: Directory removed.
9141         Fixes to help Linux, inspired by drepper's work:
9142         * sysdeps/posix/utimes.c: New file.
9143         * sysdeps/generic/getdomain.c: New file.
9144         * sysdeps/i386/init-first.c: Removed gratuitous #include <hurd.h>.
9145         * sysdeps/generic/dl-sysdep.c: Include <unistd.h> and declare
9146         externals _dl_argc, _dl_argc, and _environ.
9148 Fri Jul 21 12:57:29 1995  Michael I Bushnell  <mib@geech.gnu.ai.mit.edu>
9150         * sysdeps/mach/hurd/socket.c (socket): Consider MIG_BAD_ID and
9151         EOPNOTSUPP as indications that the server has died.
9152         * sysdeps/mach/hurd/pipe.c (__pipe): Likewise.
9153         * sysdeps/mach/hurd/socketpair.c (socketpair): Likewise.
9155 Mon Jul 17 08:45:40 1995  Jim Meyering  (meyering@comco.com)
9157         * strtol.c: Portability changes from Uli Drepper.
9158         [!STDC_HEADERS && !defined(NULL)]: Define NULL.
9160 Mon Jul 10 05:39:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9162         * sysdeps/mach/hurd/i386/init-first.c (init): Take just one arg,
9163         DATA for the entry SP; DATA[-1] is always the return address
9164         location.  In both cthreads and non-cthreads cases, use asm to
9165         force parameters into %eax and %ecx before return, and mutate
9166         DATA[-1] to return to specific asm code to set up the user from
9167         %eax and %ecx.
9168         [PIC] (_init): Caller changed.
9169         (__libc_init_first) [! PIC] (doinit): Use asm to effect call to init
9170         with SP unwound to argument data ptr.
9172 Thu Jul  6 14:28:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9174         * sysdeps/mach/hurd/dl-sysdep.c (fmh): Fixed this kludge to work
9175         when 0x08000000 and up are not mapped.
9177         * Makerules (stamp$o-$(subdir) rule): Remove the timestamp file
9178         before touching it.
9179         (lib%.so): Use -Wl to get -soname to ld.
9181         * elf/dlsym.c: Pass final arg to _dl_lookup_symbol.
9183         * elf/Makefile (libdl.so): Pass $(LDFLAGS.so).
9185 Tue Jun 20 02:18:19 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9187         * Makerules (lib%.so: lib%_pic.a): Pass -soname switch giving the
9188         library's name including $(libprefix) and major version number.
9190         * locale/locale-ctype.c (allocate_arrays): Use xmalloc and bzero
9191         in place of xcalloc.
9193         * Makeconfig (prefix, exec_prefix, libprefix): Instead of
9194         `ifndef', use the $(origin) function to only set these if they are
9195         undefined, and not if they are defined to empty.
9197         * gnu-versions.h: New file.
9198         * features.h (__GNU_LIBRARY__): Increase value to 5.
9200 Wed Jun 14 03:45:24 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9202         * stdio/stdio.h (__validfp): Use ({...}) rather than a comma
9203         expression, to avoid gcc's "value computed is not used" warning.
9205         * libc-symbols.h (_elf_set_element): Give the set-element variable
9206         an `unused' attribute.
9208         * hurd/hurd/threadvar.h (__hurd_threadvar_location): Declare with
9209         __attribute__ ((__const__)).
9210         * hurd/hurd/signal.h (_hurd_self_sigstate): Likewise.
9212         * hurd/hurd/userlink.h (_hurd_userlink_link): Properly set
9213         LINK->resource.next->resource.prevp when appropriate, not
9214         LINK->resource.next->thread.prevp!!!
9216 Tue Jun 13 15:45:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9218         * configure.in (libc_cv_asm_set_directive): Make sure that the
9219         `.set' directive really worked by linking against a reference to
9220         the alias.
9222         * sysdeps/stub/init-first.c: Don't include <hurd.h>.
9223         [PIC] (soinit): Renamed to (global) _init.
9225 Mon Jun 12 13:15:45 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9227         * malloc/Makefile (gmalloc-routines): Remove valloc.
9228         (dist-routines): Add it here.
9230         * malloc/malloc.h [_MALLOC_INTERNAL] [emacs] (valloc): #define to
9231         emacs_loser_valloc to inhibit valloc declaration below.
9233         * Makerules (lib%.so: lib%_pic.a): Moved this rule to after
9234         installation rules.
9236         * sysdeps/mach/sysdep.h [HAVE_ELF] (ENTRY): Redefine this macro so
9237         it uses the `.type' directive, which is necessary for shared
9238         libraries to work properly.
9240 Thu Jun  8 02:50:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9242         * elf/dl-load.c (_dl_map_object): Add MAP_INHERIT flag in mmap
9243         from zero fill.
9245         * elf/dl-lookup.c (_dl_lookup_symbol): Take new flag arg NOSELF;
9246         if nonzero, don't let *REF satisfy the reference itself.
9247         * elf/link.h (_dl_lookup_symbol): Add new arg NOSELF in decl.
9248         * sysdeps/i386/dl-runtime.c (_dl_runtime_resolve): Pass new arg to
9249         _dl_lookup_symbol.
9250         * elf/do-rel.h (elf_dynamic_do_rel): Pass new second arg of
9251         R->r_offset to RESOLVE callback.
9252         * elf/dl-reloc.c (_dl_relocate_object: resolve): Don't let *REF
9253         satisfy the reference itself if its value equals the reloc's
9254         offset.
9256         * elf/rtld.c (dl_main): Write a newline in fatal msg.
9258         * Makerules (lib%.so: lib%_pic.a): Pass $(LDFLAGS.so).
9260         * elf/rtld.c [! NDEBUG] (__assert_perror_fail): New function.
9262         * hurd/hurdstartup.c (_hurd_startup): Fancier kludge to guess phdr
9263         and user entry point addresses.
9265         * elf/dl-load.c (open_path): Don't do strlen on DIRPATH if it's null.
9266         (_dl_map_object): DT_RPATH value is relative to DT_STRTAB value.
9268         * Makerules (install-lib.so): Don't include libc.so.
9269         [$(build-shared)=yes] (install): Depend on the installed libc.so file.
9270         [$(build-shared)=yes] (install-no-libc.a): Make this, rather than
9271         install, depend on the installed $(install-lib.so) files.
9272         [$(build-shared)=yes] (install-lib.so): Append libc.so after that rule.
9274         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Add kludge to
9275         allocate high addresses to avoid random mappings appearing there.
9276         (mmap): Comment out mask; always pass zero.
9278 Tue Jun  6 13:34:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9280         * sysdeps/i386/dl-machine.h (ELF_MACHINE_USER_ADDRESS_MASK): New macro.
9281         * sysdeps/mach/hurd/dl-sysdep.c (mmap): Use it as mask in vm_map call.
9283         * elf/dl-error.c (_dl_catch_error): Clear *ERRSTRING and *OBJNAME
9284         when successful.
9286         * sysdeps/mach/hurd/dl-sysdep.c (threadvars): New static variable.
9287         (__hurd_threadvar_max, __hurd_threadvar_stack_offset): Define these
9288         variables, using the `threadvars' buffer.
9290         * elf/dl-reloc.c: Don't dereference L->l_prev when it's null.
9291         * sysdeps/i386/dl-runtime.c: Likewise.
9293         * elf/rtld.c (dl_main): Add missing NULL terminating argument in
9294         _dl_sysdep_fatal call.
9295         (__assert_fail): Likewise.
9297         * locale/Makefile (localedef-modules): Renamed ctype to
9298         locale-ctype so as not to conflict with the object file for
9299         ctype/ctype.c in the build directory.
9301 Mon Jun  5 04:02:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9303         * elf/elf.h (ELFMAG): Use \177 instead of \x7f.  It seems GCC
9304         insists on seeing the following E as part of hex 7FE, and
9305         complaining that is wider than a byte.
9307 Sun Jun  4 22:14:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9309         * hurd/Makefile (sig): Added thread-self.
9310         * hurd/hurd.h: Declare hurd_thread_self.
9311         * hurd/thread-self.c: New file.
9313 Thu Jun  1 12:17:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9315         * elf/rtld.c: Initialize RTLD_MAP.l_type.
9316         * elf/dl-reloc.c (_dl_relocate_object): Clear LAZY if relocating
9317         the dynamic linker itself.
9318         * sysdeps/i386/dl-machine.h (elf_machine_rel): If MAP->l_type is
9319         lt_interpreter, first undo relocation done during bootstrapping.
9321 Tue May 30 15:52:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9323         * mach/Makefile (server-interfaces): Removed notify and
9324         device_reply.  For shlibs with eager binding, libmachuser.so must
9325         not refer to any functions not defined in libc.
9327 Sat May 27 16:23:22 1995  Jim Meyering  (meyering@comco.com)
9329         * sysdeps/generic/memchr.c: Cast RHS to const unsigned char *
9330         to avoid error from Irix-4.0.5's C compiler.  From Kaveh Ghazi.
9332 Fri May 26 13:00:08 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9334         * hurd/hurdsig.c (_hurd_internal_post_signal): Don't loop to check
9335         pending signals if the thread is in a critical section.  It will
9336         send us a msg when it finishes.
9338         * sysdeps/mach/hurd/pathconf.c: New file.
9339         * sysdeps/mach/hurd/fpathconf.c: New file.
9341         * sysdeps/mach/hurd/sigaction.c: Only notify the proc server for
9342         SIGCHLD when the SA_NOCLDSTOP bit actually changes.
9344 Sun May 21 05:05:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9346         * elf/Makefile (ld.so): Use -nostartfiles in addition to
9347         -nostdlib.
9349 Sun May 21 02:01:29 1995  Jim Meyering  (meyering@comco.com)
9351         * sysdeps/generic/memchr.c: Don't include <string.h> at all.
9352         HPUX-9.01 and IRIX-4.0.5 vendor C compilers get conflicting dcls for
9353         memchr unless one manually arranges for them to define __STDC__.
9355 Fri May 19 17:16:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9357         * sysdeps/mach/hurd/i386/init-first.c: In cthreads case, handle
9358         args on stack from kernel.
9360         * posix/Makefile, sysdeps/alpha/Makefile,
9361         * sysdeps/mach/hurd/Makefile, sysdeps/sparc/Makefile, Makefile,
9362         * Makerules, Make-dist: Fix "cvs commit" cmds in rules to not fail
9363         in the absence of CVS dirs.
9365         * hurd/hurdstartup.c: Don't call __mach_init.  Grok args from the
9366         kernel on the stack properly.
9368         * set-init.c: Never call _init/_fini; just run __libc_subinit.
9370         * Makerules (LDFLAGS-c.so): Add -nostartfiles.
9371         * mach/Machrules (LDFLAGS-$(interface.so)): Likewise.
9373         * configure.in: Move defaulting of --with-elf and --with-gnu-*
9374         based on host os outside the AC_CACHE_VAL for the sysdirs
9375         calculation.
9377         * Makeconfig (localedir, nlsdir): New variables.
9379         * values.h: New file.
9380         * Makefile (headers): Add values.h.
9382         * locale/Makefile (distribute): Add error.h.
9383         * locale/localedef.c: Include "error.h".
9384         (main): Use error_message_count instead of warning_cntr.
9386 Wed May 17 16:50:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9388         Merged 1003.2 locale and localedef programs by Ulrich Drepper.
9389         * locale/charmap.c: New file.
9390         * locale/collate.c: New file.
9391         * locale/config.h: New file.
9392         * locale/ctype.c: New file.
9393         * locale/ctypedump.c: New file.
9394         * locale/hash.c: New file.
9395         * locale/hash.h: New file.
9396         * locale/iso-4217.def: New file.
9397         * locale/keyword.gperf: New file.
9398         * locale/keyword.h: New file.
9399         * locale/libintl.h: New file.
9400         * locale/locale.c: New file.
9401         * locale/localedef.c: New file.
9402         * locale/localedef.h: New file.
9403         * locale/locfile-lex.c: New file.
9404         * locale/locfile-parse.c: New file.
9405         * locale/messages.c: New file.
9406         * locale/monetary.c: New file.
9407         * locale/numeric.c: New file.
9408         * locale/token.h: New file.
9410         * posix/regex.c, posix/regex.h: New files, incorporated from GNU regex.
9411         * posix/Makefile (headers): Add regex.h.
9412         (routines): Add regex.
9413         (gpl2lgpl): Add regex.c and regex.h.
9415 Tue May 16 17:35:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9417         * locale/loadlocale.c: Expect macro LOCALE_PATH to be defined,
9418         instead of hard-coding "/share/locale".
9420 Sat May 13 02:16:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9422         * configure.in (os=gnu*): Always set elf=yes, not just for os=gnu*elf*.
9424 Fri May 12 15:31:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9426         * elf/elf.h (ELFMAG, SELFMAG): New macros.
9428 Fri May 12 11:24:53 1995  Michael I Bushnell  <mib@duality.gnu.ai.mit.edu>
9430         * hurd/alloc-fd.c (_hurd_alloc_fd): Don't reduce FIRST_FD in
9431         the case where it starts out less than _hurd_dtablesize.
9433 Thu May 11 20:51:05 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9435         * hurd/alloc-fd.c (_hurd_alloc_fd): When expanding the dtable,
9436         make sure the new size exceeds FIRST_FD.
9438 Wed May 10 21:00:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9440         * sysdeps/mach/i386/sysdep.h (RETURN_TO): New macro.
9442 Tue May  9 01:26:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9444         * Makerules (install-lib.so): Add %.so for each %_pic.a.
9446         * sysdeps/i386/elf/start.S (__data_start): Define this symbol as
9447         the first thing in .data.
9449         * sysdeps/mach/_strerror.c (_strerror_internal): Eschew sprintf.
9451         * hurd/hurdstartup.h: New file.
9453         * sysdeps/i386/elf/start.S: Give two operands to `testl' when they
9454         are the same.  Use `jz' instead of `jeq'.
9456         * Makeconfig (config.make): Depend on config.status, and run it to
9457         update.
9458         (config.status): New target; depend on configure.
9459         If target (config.status) exists, run it with --recheck to update;
9460         if not, give error msg saying to run confiugre by hand.
9461         * Makerules [$(sysd-Makefile-sysdirs) != $(sysdirs)]
9462         (sysd-Makefile-force): Set this variable to FORCE in this case, to
9463         force a rebuild of sysd-Makefile.
9464         (sysd-Makefile): Depend on $(sysd-Makefile-force).
9465         Write into the file sysd-Makefile-sysdirs:=$(sysdirs).
9466         [$(sysd-rules-sysdirs) != $(sysdirs)] (sysd-rules-force): Set this
9467         variable to FORCE in this case, to force a rebuild of sysd-rules.
9468         (sysd-rules): Depend on $(sysd-rules-force).
9469         Write into the file sysd-rules-sysdirs:=$(sysdirs).
9471         * Makerules (LDFLAGS-c.so): Change ld option -interp to
9472         -dynamic-linker.
9474         * Makerules (do-install-program): New canned sequence.
9475         (install-bin, install-sbin): Use it.
9476         (install for lib*.so): Use it instead of $(do-install).
9477         Fix .so installation rules to handle lib*.so and *.so, deal with
9478         $(libprefix) right, and install *.so as *.so$($(*.so)-version);
9479         i.e. "libc.so-version = .1".
9481 Mon May  8 05:10:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9483         * elf/do-rel.h: New file, split out of dynamic-link.h.
9484         * elf/Makefile (distribute): Add do-rel.h.
9486 Sat May  6 11:06:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9488         * Makeconfig (+gccwarn): Add -Winline.
9490         * hurd/hurdsig.c (_hurd_internal_post_signal): If SS->context is
9491         set, avoid abort_rpcs, and use reply and intr ports saved in
9492         SS->context.
9493         * sysdeps/mach/hurd/i386/trampoline.c: Don't set SS->intr_port
9494         from SS->context.  Don't clear SS->context.
9495         * sysdeps/mach/hurd/i386/sigreturn.c: Don't set SS->intr_port when
9496         setting SS->context.  If msg_sig_post returns, re-lock and clear
9497         SS->context.
9499 Fri May  5 10:37:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9501         * mach/Makefile (errsystems.c): Comment out generation rule.
9503         * sysdeps/mach/_strerror.c: Consider a system unknown if its
9504         bad_sub member is null.
9506         * mach/mig-alloc.c: Add weak alias to non-__ name.
9508 Wed May  3 11:56:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9510         * sysdeps/mach/hurd/dup2.c: Fixed broken test in last change.
9512 Tue May  2 01:52:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9514         * elf/dl-error.c (_dl_catch_error): Actually call the OPERATE
9515         function.  Duh.
9517         * hurd/Makefile (distribute): Added hurdstartup.h.
9518         * hurd/hurd.h: Remove _hurd_startup decl.
9520         * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS): Use __attribute__
9521         ((__unused__)) instead of gratuitous self reference.
9523         * sysdeps/mach/hurd/dup2.c: Call _hurd_alloc_fd to expand the
9524         table if FD2 doesn't fit.
9526         * sysdeps/mach/hurd/getdtsz.c: Return the RLIM_NOFILE soft limit,
9527         not the current table size.
9529         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS, CALL_WITH_SP): Rewritten.
9531         Implemented runtime dynamic linker to support ELF shared libraries.
9532         * elf/Makefile: Added rules to make ld.so and libdl.
9533         * elf/dl-error.c: New file.
9534         * elf/dl-fini.c: New file.
9535         * elf/dl-init.c: New file.
9536         * elf/dl-load.c: New file.
9537         * elf/dl-lookup.c: New file.
9538         * elf/dl-object.c: New file.
9539         * elf/dl-reloc.c: New file.
9540         * elf/dlclose.c: New file.
9541         * elf/dlerror.c: New file.
9542         * elf/dlopen.c: New file.
9543         * elf/dlsym.c: New file.
9544         * elf/dynamic-link.h: New file.
9545         * elf/link.h: New file.
9546         * elf/rtld.c: New file.
9547         * sysdeps/i386/dl-machine.h: New file.
9548         * sysdeps/stub/dl-machine.h: New file.
9549         * sysdeps/i386/dl-runtime.c: New file.
9550         * sysdeps/stub/dl-runtime.c: New file.
9551         * sysdeps/i386/elf/start.S: New file.
9552         * sysdeps/generic/dl-sysdep.c: New file.
9553         * sysdeps/mach/hurd/dl-sysdep.c: New file.
9554         * sysdeps/mach/hurd/i386/init-first.c: New file.
9555         * sysdeps/i386/init-first.c: New file.
9556         * sysdeps/stub/init-first.c: New file.
9558 Mon May  1 18:48:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9560         * Makerules (LDFLAGS-c.so): Add -interp and -e switches to make
9561         libc.so runnable.
9562         * version.c (__libc_print_version): Add "et al" and missing NL to
9563         author credit.
9565 Sat Apr 29 15:46:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9567         * posix/glob.c (S_ISDIR): Define if undefined.
9569 Thu Apr 27 01:24:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9571         * configure.in: Unless --without-fp, prepend */fpu before each
9572         machine dir in $mach; don't prepend FPU dirs at end.  If
9573         --with-elf, prepend MACHINE/elf directories at end; don't insert
9574         them into $mach.
9576         * Makerules (dist): Filter out *.[cSs] from $(distribute) in deps.
9578         * sysdeps/stub/clock.c: Added stub warning.
9579         * sysdeps/stub/dirfd.c: Likewise.
9580         * sysdeps/stub/exc2signal.c: Likewise.
9581         * sysdeps/stub/fdopen.c: Likewise.
9582         * sysdeps/stub/flock.c: Likewise.
9583         * sysdeps/stub/fpathconf.c: Likewise.
9584         * sysdeps/stub/ftruncate.c: Likewise.
9585         * sysdeps/stub/gtty.c: Likewise.
9586         * sysdeps/stub/isatty.c: Likewise.
9587         * sysdeps/stub/killpg.c: Likewise.
9588         * sysdeps/stub/madvise.c: Likewise.
9589         * sysdeps/stub/mkstemp.c: Likewise.
9590         * sysdeps/stub/mktemp.c: Likewise.
9591         * sysdeps/stub/mprotect.c: Likewise.
9592         * sysdeps/stub/msync.c: Likewise.
9593         * sysdeps/stub/pathconf.c: Likewise.
9594         * sysdeps/stub/poll.c: Likewise.
9595         * sysdeps/stub/raise.c: Likewise.
9596         * sysdeps/stub/readv.c: Likewise.
9597         * sysdeps/stub/setenv.c: Likewise.
9598         * sysdeps/stub/setlogin.c: Likewise.
9599         * sysdeps/stub/sigaltstack.c: Likewise.
9600         * sysdeps/stub/sigintr.c: Likewise.
9601         * sysdeps/stub/sigstack.c: Likewise.
9602         * sysdeps/stub/sleep.c: Likewise.
9603         * sysdeps/stub/sstk.c: Likewise.
9604         * sysdeps/stub/stime.c: Likewise.
9605         * sysdeps/stub/stty.c: Likewise.
9606         * sysdeps/stub/syscall.c: Likewise.
9607         * sysdeps/stub/sysconf.c: Likewise.
9608         * sysdeps/stub/truncate.c: Likewise.
9609         * sysdeps/stub/ualarm.c: Likewise.
9610         * sysdeps/stub/usleep.c: Likewise.
9611         * sysdeps/stub/utimes.c: Likewise.
9612         * sysdeps/stub/writev.c: Likewise.
9614         * sysdeps/stub/libc_fatal.c: Remove __NORETURN keyword.
9616 Wed Apr 26 16:06:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9618         * locale/loadlocale.c (_nl_free_locale): Do nothing if DATA is null.
9620 Tue Apr 25 17:17:19 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9622         * posix/glob.c (glob): If GLOB_MARK set, stat names to find
9623         directories and append slashes to them in final pass before
9624         sorting.
9625         (glob_in_dir): If GLOB_MARK set, just allocate the extra char for the
9626         slash; never append it here.
9628 Sat Apr 22 14:48:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9630         * mach/Machrules [interface-library]
9631         (LDFLAGS-$(interface-library:lib%=%.so)): New variable, set to
9632         -nostdlib.
9634         * sysdeps/mach/hurd/fork.c: Subfunction `unlockss' removed.  Lock
9635         _hurd_siglock only around initial task creation in parent.  Use
9636         _hurd_critical_section_unlock at end.  Handle dead name rights
9637         properly, and deal with a send right dying while we try to copy
9638         it.  For the time being, use assert_perror for kernel and proc RPC
9639         failures.
9641 Fri Apr 21 01:10:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9643         * extra-lib.mk: Don't include $(o-iterator); construct it by hand
9644         using $(object-suffixes-$(lib)) instead.
9646         * sysdeps/mach/hurd/Makefile (LDLIBS-c.so): New variable.
9648         * Makerules (lib%.so: lib%_pic.a): Pass $(LDFLAGS-$(notdir $*).so).
9649         (LDFLAGS-c.so): New variable.
9651         * resolv/res_init.c (res_init): Don't clobber _res.options with
9652         RES_DEFAULT.  If RES_INIT is clear, OR in RES_DEFAULT.
9654         * hurd/hurd.h: Declare _hurd_startup.
9655         * hurd/hurdstartup.c: New file.
9656         * hurd/Makefile (routines): Add hurdstartup.
9658 Thu Apr 20 22:23:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9660         * hurd/hurdsig.c: Use assert_perror for many calls which should
9661         never fail and previously were not checked.
9663         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
9664         Point the return address for sigreturn's frame at a "hlt" insn so
9665         it will definitely crash if sigreturn returns.
9667 Wed Apr 19 18:40:11 1995  Brendan Kehoe  (brendan@zen.org)
9669         * time/tzset.c (__tzname, __daylight, __timezone): Don't check
9670         HAVE_WEAK_SYMBOLS for doing weak_alias.
9672 Wed Apr 19 18:12:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9674         * configure.in: Move $os tests to set $elf et al earlier, before
9675         construction of $sysnames.  Instead of prepending MACHINE/elf to
9676         $sysnames, append &/elf after each elt appended to $mach.
9678 Tue Apr 18 14:00:19 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9680         * configure.in (libc_cv_asm_global_directive): New check to define
9681         ASM_GLOBAL_DIRECTIVE.
9682         * config.h.in: Add #undef ASM_GLOBAL_DIRECTIVE.
9683         * libc-symbols.h (strong_alias_asm, strong_alias): Use
9684         ASM_GLOBAL_DIRECTIVE on the alias.
9686         * sysdeps/unix/make_errlist.c (main): Don't generate "#ifdef
9687         HAVE_WEAK_SYMBOLS" #defns.
9689 Mon Apr 17 12:02:49 1995  Brendan Kehoe  (brendan@zen.org)
9691         * sysdeps/alpha/strlen.c (strlen): Fix cmpbge insn, and returning
9692         of the byte that was zero, so we return a valid number.
9694 Sun Apr 16 03:23:09 1995  Brendan Kehoe  (brendan@zen.org)
9696         * sysdeps/unix/bsd/ultrix4/mips/sysdep.h: New file defining
9697         NO_UNDERSCORES then using sysdeps/unix/mips/sysdep.h.
9699 Fri Apr 14 18:49:03 1995  Brendan Kehoe  (brendan@zen.org)
9701         * sysdeps/ieee754/mpn2dbl.c (__mpn_construct_double)
9702         [BITS_PER_MP_LIMB == 64]: Refer to `u', not to non-existent `i'.
9703         * sysdeps/ieee754/mpn2ldbl.c (__mpn_construct_long_double)
9704         [BITS_PER_MP_LIMB == 64]: Likewise.
9706         * sysdeps/unix/bsd/osf/alpha/killpg.S (killpg): Add .end directive.
9707         * sysdeps/unix/bsd/osf/alpha/sigblock.S (__sigblock): Likewise.
9708         * sysdeps/unix/bsd/osf/alpha/sigsetmask.S (__sigsetmask): Likewise.
9709         * sysdeps/unix/bsd/osf/alpha/sigpause.S (__sigpause): Likewise.
9710         * sysdeps/unix/bsd/osf/alpha/sigvec.S (__sigvec): Likewise.
9711         * sysdeps/unix/bsd/osf/alpha/getdents.S (__getdirentries): Likewise.
9712         * sysdeps/unix/bsd/osf/alpha/fork.S (__fork): Likewise.
9713         * sysdeps/unix/bsd/osf/alpha/pipe.S (__pipe): Likewise.
9714         * sysdeps/unix/bsd/osf/alpha/recv.S (recv): Likewise.
9715         * sysdeps/unix/bsd/osf/alpha/send.S (send): Likewise.
9716         * sysdeps/unix/bsd/osf/alpha/vhangup.S (vhangup): Likewise.
9718         * sysdeps/unix/mips/brk.S (__brk, __curbrk): Add .end directive.
9719         * sysdeps/unix/mips/fork.S (fork): Likewise.
9720         * sysdeps/unix/mips/pipe.S (fork): Likewise.
9721         * sysdeps/unix/mips/sigreturn.S (__sigreturn): Likewise.
9722         * sysdeps/unix/mips/sysdep.S (sysdep_error): Likewise.
9723         * sysdeps/unix/mips/wait.S (__handler): Likewise.
9724         * sysdeps/mips/setjmp.S (__sigsetjmp): Likewise.
9725         * sysdeps/mips/bsd-setjmp.S (setjmp): Likewise.
9726         * sysdeps/unix/bsd/ultrix4/getsysinfo.S (getsysinfo): Likewise.
9727         * sysdeps/unix/bsd/ultrix4/wait3.S (waitpid): Likewise.
9728         * sysdeps/unix/bsd/ultrix4/waitpid.S (waitpid): Likewise.
9729         * sysdeps/unix/bsd/ultrix4/mips/__handler.S (__handler): Likewise.
9730         * sysdeps/unix/bsd/ultrix4/mips/sigvec.S (__raw_sigvec): Likewise.
9731         * sysdeps/unix/bsd/ultrix4/mips/start.S (__start): Likewise.
9732         * sysdeps/unix/bsd/ultrix4/mips/vfork.S (vfork): Likewise.
9733         * sysdeps/mips/bsd-_setjmp.S (setjmp): Likewise.  Use `$0'
9734         instead of `zero' for the li instruction.
9736         * sysdeps/unix/bsd/osf/alpha/start.S: Change comments to be
9737         preprocessor comments, not assembler comments.
9738         * sysdeps/unix/bsd/osf/alpha/brk.S: Likewise.
9739         * sysdeps/unix/bsd/osf/alpha/sysdep.h (NO_UNDERSCORES): Define.
9741 Fri Apr 14 15:53:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9743         * malloc/malloc.c (register_heapinfo) [__GNUC__]: Use __inline__
9744         in place of inline.
9746 Thu Apr 13 09:45:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9748         * Makefile (distribute): Add ChangeLog.[0-9].
9750         * configure.in: Add check for .set directive.
9751         * config.h.in: Add #undef HAVE_ASM_SET_DIRECTIVE.
9752         * libc-symbols.h [! HAVE_ASM_SET_DIRECTIVE] (strong_alias,
9753         strong_alias_asm): Use `foo = bar' syntax instead.
9755         * Makerules [! subdir] (O%-lib): Don't prepend ../.
9757         * sysdeps/generic/expm1.c: #undef expm1 before weak_alias.
9759         * configure.in: Fix AC_ARG_WITH uses; check for --with-fp.  Move
9760         $host_os checks to set gnu_ld/as and elf before sysdirs
9761         generation.  Fix $with_fp test.
9762         [$elf=yes]: Prepend MACHINE/elf directory.
9764         * elf/libelf.h (elf_hash): Use XOR instead of ANDN when the bits
9765         being cleared are already known to be set.  Thanks Ulrich.
9767 Wed Apr 12 23:27:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9769         * posix/environ.c: Add weak alias `_environ'.
9771 Tue Apr 11 20:38:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9773         * sysdeps/i386/add_n.S [PIC]: Use self-call to avoid generating reloc.
9774         * sysdeps/i386/sub_n.S [PIC]: Likewise.
9776 Mon Apr 10 14:53:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9778         * libc-symbols.h (_elf_set_element) [PIC]: Don't make the element
9779         word `const'.
9781         * Makeconfig (CPPFLAGS, CFLAGS): Fix swapped references to
9782         $(foo-$(suffix $@)).
9784         * manual/Makefile (chapters-incl): Filter out summary.texi.
9786         * stdlib/strtod.c (STRTOF): Use extra macro to make STRTOF's #defn
9787         a weak symbol instead of literal "STRTOF".
9789         * locale/setlocale.c: Work around ld bug: don't weakify refs to
9790         _nl_{current,C}_*.
9792 Sun Apr  9 01:24:33 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9794         * Makerules (+depfiles): Translate %.so to %.o in $(extra-objs).
9796         * malloc/free.c [emacs] (__malloc_safe_bcopy): Define to safe_bcopy.
9797         * malloc/realloc.c (__malloc_safe_bcopy): Undefine before defining.
9799         * malloc/free.c (memmove, __malloc_safe_bcopy): Do include these
9800         #ifdef emacs, but only #ifndef memmove.
9801         * malloc/realloc.c [emacs] (__malloc_safe_bcopy): Just #define to
9802         safe_bcopy.
9803         (memmove): Define only if undefined.
9805 Sat Apr  8 00:40:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9807         * extra-lib.mk (install-lib, extra-objs, alltypes-$(lib)): Make
9808         sure these are simply-expanded variables.
9810         * locale/loadlocale.c (_nl_load_locale): Use MAP_INHERIT flag in
9811         mmap call.
9813         * configure.in (os=freebsd*|bsdi*): Set base_os=unix/bsd/bsd4.4
9814         for these too.
9816         * sysdeps/unix/sysv/tcsetattr.c: Use |= instead of = to properly
9817         set c_oflag value.
9819         * Makeconfig [! objpfx] (csu-objpfx): Add trailing slash.
9821         * locale/Makefile (categories): Uncomment collate.
9822         * locale/lc-collate.c: New file.
9824         * malloc/free.c (__malloc_safe_bcopy, memmove): Don't define
9825         #ifdef emacs.
9826         * malloc/realloc.c: Likewise.
9828         * stdio/_itoa.h (_EXTERN_INLINE): Define if undefined.
9829         (_itoa): Use it in defn.
9830         * stdio/_itoa.c (_EXTERN_INLINE): Define to empty before #include
9831         "_itoa.h".
9832         (_itoa): Function removed.
9834         * malloc/free.c: Remove use of `assert'.
9836         * malloc/realloc.c [! emacs] (safe_bcopy): Renamed to
9837         __malloc_safe_bcopy; #define safe_bcopy.
9838         * malloc/free.c: Cope with systems lacking `memmove'.
9839         (_free_internal): Cast result of _malloc_internal.
9841 Wed Apr  5 00:13:45 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9843         * hurd/hurdinline.c: Include signal.h first, so we don't define
9844         its inlines too.
9846         * sysdeps/unix/sysv/sysv4/sigset.h (__sigfillset): Use ~0L instead
9847         of -1 to avoid compiler warning.
9849         * configure.in (host_os=linux*): Set elf=yes for this, not just
9850         linux*elf*.
9852         * misc/login_tty.c [! TIOCSCTTY]: Try an emulation using ttyname
9853         and open.
9855         * sysdeps/i386/bsd-_setjmp.S: Fix typo in name: setjmp -> _setjmp.
9857 Tue Apr  4 00:48:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9859         * sysdeps/unix/start.c: Remove spurious decl and #endif.
9861         * misc/progname.c (program_invocation_name,
9862         program_invocation_short_name): Make these initialized data
9863         definitions.
9865         * sysdeps/mach/hurd/setitimer.c (fork_itimer): Add self reference
9866         so gcc doesn't optimize out the function entirely.
9868 Sun Apr  2 13:13:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9870         * posix/execvp.c: Don't use stat to search path; just try execv
9871         until it works.
9873         * sysdeps/mach/hurd/i386/trampoline.c: Add a link to
9874         SS->active_resources, so that _hurdsig_longjmp_from_handler will
9875         be called when a longjmp unwinds the signal frame.
9876         * sysdeps/mach/hurd/i386/sigreturn.c: Remove the link on the
9877         SS->active_resources chain added by _hurd_setup_sighandler.
9878         * hurd/sigunwind.c: New file.
9879         * hurd/Makefile (sig): Add sigunwind.
9881         * Makerules (lib%.so: lib%_pic.a): Remove dir name from $*.
9883         * MakeTAGS (tags-sources): Include $(all-dist).
9884         [subdir] (all-dist): Define to $(distribute).
9886 Sat Apr  1 00:08:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9888         * Makerules (lib%.so: lib%_pic.a): Pass -L options for subdir and
9889         parent objdirs.
9891         * extra-lib.mk (object-suffixes-$(lib)): New variable, produced by
9892         filtering out $($(lib)-inhibit-o); use that instead of
9893         $(object-suffixes) in all the other variables.
9895         * locale/loadlocale.c (_nl_load_locale) [MAP_FILE]: Define it zero
9896         if undefined.
9898         * string/strxfrm.c: Just copy the string (for now).
9899         * string/strcoll.c: Just call strcmp (for now).
9901         * mach/Makefile (lock): Add mutex-init.
9902         * mach/mutex-solid.c (_cthread_mutex_lock_routine,
9903         _cthread_mutex_unlock_routine): Variables removed.
9904         (__mutex_lock_solid, __mutex_unlock_solid): Don't use them; just stub.
9905         (__mutex_init): Function moved to new file mutex-init.c.
9906         * mach/mutex-init.c: New file, broken out of mutex-solid.c.
9908 Thu Mar 30 20:43:02 1995  Brendan Kehoe  <brendan@zen.org>
9910         * sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
9911         * sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
9913 Thu Mar 30 01:38:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9915         * elf/elf.h (STN_UNDEF): New macro (distinct from SHN_UNDEF, though
9916         both are zero).
9918 Wed Mar 29 11:26:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9920         * elf/dlfcn.h: New file.
9922         * Make-dist (README): Commit it to CVS if there is a CVS directory.
9924         More changes from Germano Caronni <caronni@tik.ethz.ch>:
9925         * malloc/free.c: Relocate _heapinfo when that allows us to return
9926         core to the system.
9928         * malloc/malloc.c: Move #include <errno.h> outside #ifndef
9929         _MALLOC_INTERNAL.
9931 Mon Mar 27 02:23:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9933         * mach/Makefile (headers): Add mach/mach_traps.h.
9935         * Makerules ($(installed-libcs) rule): Fix typos.
9937         * sysdeps/unix/bsd/bsd4.4/revoke.S: New file.
9938         * sysdeps/stub/revoke.c: New file.
9939         * misc/Makefile (routines): Add revoke.
9940         * posix/unistd.h [__USE_BSD] (revoke): Declare it.
9941         * sysdeps/generic/pty.c (openpty, forkpty): Declare return types.
9942         (forkpty): Declare login_tty.
9943         * misc/logwtmp.c (logwtmp): Declare to return void.
9944         * misc/login_tty.c (login_tty): Include unistd.h.  Declare return type.
9946         * posix/unistd.h [__USE_BSD] (ttyslot): Declare it.
9948         * posix/unistd.h [__USE_BSD] (L_SET, L_INCR, L_XTND): Define
9949         unless L_SET already defined.
9950         * misc/sys/file.h (L_SET, L_INCR, L_XTND): Don't define if L_SET
9951         already defined.
9953         Incorporated -lutil library from 4.4-Lite.
9954         * misc/Makefile (extra-libs, libutil-routines): New variables.
9955         * misc/login.c, misc/login_tty.c, misc/logout.c, misc/logwtmp.c,
9956         sysdeps/generic/pty.c: New files for -lutil incorporated from 4.4-Lite.
9958         Support simple, light-weight unwind-protect mechanism for longjmp.
9959         * setjmp/longjmp.c: Call _longjmp_unwind first thing.
9960         * sysdeps/mach/hurd/jmp-unwind.c: New file.
9961         * sysdeps/stub/jmp-unwind.c: New file.
9962         * sysdeps/i386/jmp_buf.h (_JMPBUF_UNWINDS): New macro.
9963         * sysdeps/mips/jmp_buf.h (_JMPBUF_UNWINDS): New macro.
9964         * setjmp/Makefile (routines): Add jmp-unwind.
9965         * hurd/hurd/userlink.h (struct hurd_userlink): Move `next' and
9966         `prevp' members into new substructure `resource'; add another such
9967         substructure `thread' and members `cleanup' (function ptr) and
9968         `cleanup_data' (generic ptr).
9969         (_hurd_userlink_link, _hurd_userlink_unlink): Insert/remove LINK
9970         into the `_hurd_self_sigstate ()->active_resources' list via the
9971         `thread' substructure.
9972         * hurd/hurd/port.h (_hurd_port_cleanup): Declare it.
9973         (_hurd_port_locked_get): Set LINK->cleanup to _hurd_port_cleanup and
9974         LINK->cleanup_data' to the port extracted.
9975         * hurd/hurd/signal.h (struct hurd_sigstate): New member
9976         `active_resources'.
9977         * hurd/port-cleanup.c: New file.
9978         * hurd/Makefile (routines): Add port-cleanup.
9980         * malloc/malloc.c: Include errno.h.
9982 Sat Mar 25 18:24:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9984         * locale/loadlocale.c (_nl_load_locale): Avoid */ inside comment.
9986 Fri Mar 24 02:35:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9988         * misc/Makefile (headers): Add utmp.h.
9989         * misc/utmp.h: New file, incorporated from 4.4-Lite.
9991         * stdio/printf-parse.h: New file, mostly written by drepper.
9992         * stdio/vfprintf.c: Rewritten, mostly by drepper.
9993         * stdio/printf-prs.c: Rewritten.
9994         * stdio/Makefile (distribute): Add printf-parse.h.
9996 Thu Mar 23 22:03:44 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9998         * sysdeps/unix/start.c [! NO_UNDERSCORES]: Don't declare _start
9999         with asm name.  Just do a ".set start, __start".
10001         * malloc/realloc.c: Call _free_internal instead of free.
10003 Tue Mar 21 00:14:27 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10005         * locale/loadlocale.c (_nl_load_locale): If LOCALE/LC_* is a
10006         directory, open LOCALE/LC_*/SYS_LC_* instead.
10008 Mon Mar 20 03:19:23 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10010         * stdio/fpioconst.c, stdio/fpioconst.h, stdio/gmp-impl.h,
10011         stdio/gmp.h, stdio/longlong.h, stdio/mp_clz_tab.c,
10012         stdio/gen-mpn-copy: Files moved to stdlib.
10013         * stdio/Makefile: All mpn stuff moved to stdlib/Makefile.
10014         * stdlib/Makefile: All the mpn stuff moved here from stdio/Makefile.
10015         * stdio/printf_fp.c: Use ../stdlib to find fpioconst.h and gmp
10016         headers.
10017         * stdlib/strtod.c: Don't use ../stdio to find fpioconst.h and gmp
10018         headers.
10020         * Makefile (parent-mostlyclean): Don't use $(libc.a).
10021         (parent-clean): Use $(objpfx) to find sysd-*.
10022         * Rules (generated): Append dummy.o dummy.c.
10023         * Makerules (lib): Depend on lib-noranlib.
10024         (lib-noranlib): Depend on $(install-lib) in objdir.
10025         (common-mostlyclean): Remove $(install-lib) and stub-$(subdir)
10026         from objdir.  Don't remove TAGS; it comes in the distribution.
10028         * malloc/malloc.c (morecore): Save errno around call to
10029         _realloc_internal.  Don't account for the additional new blocks of
10030         the info table itself when choosing the new table size for the
10031         first crack; if it succeeds, the new blocks will have been found
10032         in existing free space already described by the existing info
10033         table.
10035         * stdio/vfscanf.c (%n): Use READ_IN - 1, so as not to count the
10036         read-ahead character.
10038 Sat Mar 18 14:07:08 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10040         * hurd/dtable.c, hurd/getdport.c, hurd/hurd.h, hurd/hurdexec.c,
10041           hurd/hurdinit.c, hurd/hurdprio.c, hurd/hurdsock.c,
10042           hurd/ports-get.c, hurd/ports-set.c, hurd/setauth.c,
10043           hurd/setuids.c, sysdeps/mach/hurd/i386/trampoline.c:
10044         Get anal with unsigned to pacify compiler.
10046         * stdio/vfscanf.c: Grok positional parameter specs (i.e. %3$d
10047         means %d from 3rd arg).
10049         * sysdeps/mach/hurd/closedir.c: Include hurd/fd.h.
10051         * stdlib/strtol.c: If !GROUP, set END to null.  In loop, test only
10052         END, not GROUP.
10054 Fri Mar 17 12:58:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10056         * Makefile (subdirs): Put elf last.
10058         * sunrpc/Makefile (install-lib): Variable removed.
10059         (rpcsvc-objs): Variable removed.
10060         (extra-objs): Don't include $(rpcsvc-objs).
10061         (extra-libs): New variable, contains librpcsvc.
10062         (librpcsvc-routines): New variable.
10063         (librpcsvc-inhibit-o): New variable, contains .so.
10064         (omit-deps): Set this to $(librpcsvc-routines).
10065         ($(objpfx)rpcgen): Don't use $(libc.a).
10066         (lib, $(objpfx)librpcsvc.a): Targets removed.
10068         * o-iterator.mk, extra-lib.mk: New files.
10069         * Makerules (o-iterator): New variable.
10070         [extra-libs]: Include extra-lib.mk to generate rules for each word
10071         of $(extra-libs).
10072         * Makefile (distribute): Add extra-lib.mk, o-iterator.mk.
10074 Fri Mar 17 13:28:04 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
10076         * sysdeps/ieee754/ldbl2mpn.c (__mpn_extract_long_double):
10077         Handle 80-bit denormalized numbers correctly.
10079         * stdlib/strtod.c, stdlib/strtof.c, stdlib/strtold.c:
10080         (IMPLICIT_ONE, *_MAX_10_EXP_LOG): Macros removed; no longer needed.
10081         * stdlib/strtod.c (RETURN): Add parentheses around return value.
10082         (round_and_return): Correct handling of denormalized numbers.
10084         * stdio/fpioconst.c, stdio/fpioconst.h: Don't use
10085         LDBL_MAX_10_EXP_LOG; LAST_POW10 defines the maximal available
10086         exponent.
10088 Thu Mar 16 00:04:41 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10090         * locale/C-ctype.c: New correct data generated by drepper.
10092         * Rules: Don't use $(libc.a).
10094         Parsing of grouped numbers contributed by Ulrich Drepper.
10095         * stdlib/strtol.c (__strtol_internal): Renamed from strtol.  Take
10096         new flag arg; if nonzero, parse locale-dependent thousands
10097         grouping and interpret only the prefix that is correctly grouped.
10098         (strtol): Define this to call _strtol_internal with zero for the flag.
10099         Use a weak symbol for the definition.
10100         * stdlib/strtod.c (strtod, __strtod_internal): Likewise.
10101         Check for the exponent of the number overflowing the float format.
10102         * stdlib/stdlib.h (__strtof, __strtold): Declarations removed.
10103         (__strto{f,d,ld,l,ul,q,uq}_internal): Declare these functions.
10104         [__OPTIMIZE__]: Define inline functions calling those.
10105         * stdlib/strtold.c (STRTOF): Set to strtold, not __strtold.
10106         (strtold): Remove weak alias.
10107         * stdlib/strtof.c (STRTOF): Set to strtof, not __strtof.
10108         (strtof): Remove weak alias.
10109         * stdlib/grouping.h: New file, written by drepper.
10110         * stdlib/Makefile (distribute): Add grouping.h.
10111         * stdio/vfscanf.c: Grok %' modifier to numeric conversions.  Call
10112         __strtoX_internal with the grouping flag set iff the modifier is
10113         present.
10115 Wed Mar 15 00:40:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10117         * sysdeps/generic/memchr.c: Fix typos: limit.h -> limits.h.
10119         * mach/Machrules: Produce static deps for all object flavors.
10120         [interface-library]: Remove all these variables and rules.
10121         ($(interface-library)-routines): Define this variable.
10122         (extra-libs): Append $(interface-library) to this.
10123         * mach/Makefile (interface-library): Omit .a suffix.
10124         * hurd/Makefile: Likewise.
10126 Tue Mar 14 23:40:31 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10128         * stdio/internals.c (flushbuf): If !FLUSH_ONLY, don't skip out
10129         early if no new data in buffer after priming.
10131 Mon Mar 13 01:48:16 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10133         * Makerules (object-suffixes, libtypes): Move all these variables
10134         to Makeconfig.
10135         * Makeconfig (object-suffixes, libtypes): Moved here from Makerules.
10137         * Makerules (build-extra-lib): New canned sequence.
10139         * sysdeps/mach/hurd/euidaccess.c: Include fcntl.h.  Declare ERR;
10140         fix uses of FILE and PORT.  Remove bogus weak alias for `access'.
10142         * sysdeps/mach/hurd/dirfd.c: Include hurd/fd.h and errno.h.
10143         Add missing semicolon.
10144         * sysdeps/mach/hurd/opendir.c: Include hurd/fd.h.  Use a `struct
10145         hurd_fd *' temp var, since DIRP->__fd is a `void *'.
10146         * sysdeps/mach/hurd/readdir.c: Include hurd/fd.h.
10148         * stdlib/wcstombs.c: #if 0 out code for non-ASCII chars until the
10149         locale data format is implemented.
10151         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
10152         Pass &__sigreturn on the stack to the trampoline code, so it is
10153         not position-dependent.
10155         * stdio/printf_fp.c (NDEBUG): Define this to disable assert.
10156         Don't include <stdarg.h>.
10157         (__printf_fp): Last arg ARGS is now `const void **const';
10158         dereference ARGS[0] instead of using va_arg.
10160         * locale/setlocale.c: In LC_ALL case, initialize CATEGORY before
10161         loop to install data.
10163         * locale/loadlocale.c (_nl_category_num_items): Use _NL_ITEM_INDEX
10164         to extract number from item code.
10165         (_nl_load_locale): Close the descriptor when finished.
10167         * malloc/realloc.c (_realloc_internal): Call _malloc_internal in
10168         place of malloc.
10170         * time/tzfile.c (__tzfile_default): Initialize RULE_STDOFF to zero.
10172         * stdio/printf_fp.c (group_number): Cast *GROUPING to unsigned int
10173         to avoid warning.
10174         * sysdeps/generic/sigset.h (__SIGSETFN): Cast result of sizeof to
10175         int to avoid warning.
10177         Support building several flavors of objects and libraries.
10178         * Makerules (libtypes, object-suffixes): New variables.
10179         (libtype.*, CFLAGS-*, CPPFLAGS-*): New variables for each object
10180         suffix.
10181         (CFLAGS, CPPFLAGS): Append $(C{,CPP}FLAGS-$(suffix $@)).
10182         (%.so, %.po, %.go): New compilation rules for %.S, %.s, %.c.
10183         (close-check-inhibit-asm): Append a semicolon.
10184         (sysd-rules): Generate rules for each object suffix.
10185         (compile.S, compile.c): Always assume gcc.
10186         (OUTPUT_OPTION): Define unconditionally.
10187         (+make-deps): In generated rule, produce a dependent for each
10188         object suffix.
10189         (.SUFFIXES): Add $(object-suffixes) in place of .o.
10190         (.PRECIOUS): Make all suffix flavors precious.
10191         ($(libc.a)): Target removed.
10192         (lib): Depend on each enabled libtype.
10193         (libobjs, objects, objs): Depend on all the enabled object flavors.
10194         (lib%.a): New pattern rule.
10195         [$(build-shared)=yes] (lib%.so: lib%_pic.a): New pattern rule.
10196         (stamp-$(subdir)): Rewritten to a pattern rule for stamp.%-$(subdir)
10197         to make one for each flavor; library dep rule likewise rewritten.
10198         ($(libc.a)(__.SYMDEF)): Target replaced with one target for each
10199         flavor.
10200         (symdef.%): New pattern rule; helper for __.SYMDEF targets.
10201         (installed-libcs): New variable.
10202         (install): Depend on that instead of
10203         $(libdir)/lib$(libprefix)$(libc-name).a;
10204         that file's rule rewritten to make each enabled libtype.
10205         (install-lib.so): New variable, filters lib%.so from $(install-lib).
10206         (install-lib): Filter out lib%.so after setting install-lib.so.
10207         [$(build-shared)=yes] (install): Install $(install-lib.so).
10208         (common-mostlyclean): Remove all flavors of objects.
10209         * Makefile ($(libc.a)(__.SYMDEF)): Target removed.
10210         [$(build-shared)=yes] (lib): Depend on $(common-objpfx)libc.so.
10212 Sun Mar 12 18:21:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10214         * sysdeps/stub/ulimit.c: Don't include gnu-stabs.h.
10215         * sysdeps/stub/pause.c: Likewise.
10216         * sysdeps/stub/time.c: Likewise.
10218         * stdlib/mbtowc.c: #if 0 out code for non-ASCII chars until the
10219         locale data format is implemented.
10220         * stdlib/wctomb.c: Likewise.
10222         * mach/Makefile ($(objpfx)errsystems.c): Reenable this rule; the
10223         gcc bug is fixed.
10224         * mach/errsystems.c: File removed.
10226         * Makeconfig (libc.a): Variable removed.
10227         (+link): Don't use it.
10229         * configure.in (AC_ARG_ENABLE calls): Use $enableval instead of
10230         assuming `yes'.
10232         * malloc/malloc.h (_malloc_internal, _realloc_internal): Declare these.
10233         * malloc/realloc.c (_realloc_internal): Renamed from realloc;
10234         don't use __realloc_hook.
10235         (realloc): New function; call __realloc_hook ?: _realloc_internal.
10236         * malloc/malloc.c (_malloc_internal): Renamed from malloc;
10237         don't use __malloc_hook.
10238         (malloc): New function; call __malloc_hook ?: _malloc_internal.
10239         Changes from Germano Caronni <caronni@tik.ethz.ch>:
10240         (initialize): Set up _heaplimit to cover the _heapinfo table.
10241         (morecore_recursing): New static variable.
10242         (morecore): If that is set, return null immediately.
10243         When growing the info table, before getting new core from the
10244         system for it, set morecore_recursing and try moving _heapinfo
10245         with _realloc_internal.  When that fails and we get new core, set
10246         _heaplimit to cover the core for the new _heapinfo table.
10247         (register_heapinfo): New function.  Record the _heapinfo table's
10248         own blocks in that table and in the statistics variables.
10249         (initialize, _malloc_internal): Use it after allocating new table.
10251 Fri Mar 10 22:26:28 1995  Jim Meyering  (meyering@comco.com)
10253         * sysdeps/generic/memchr.c: Remove ansidecl.h and clean up for use
10254         by other packages.
10255         [LONG_MAX <= LONG_MAX_32_BITS]: Don't compile 64-bit code.
10257 Fri Mar 10 13:31:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10259         * mach/errorlib.h (errors): Use const for decl.
10261         * time/tzfile.c (uc2ul, _uc2ul): Macros removed.
10262         (decode): New inline function; decode signed 32-bit integers, and
10263         sign-extend properly when long is longer than 32 bits.
10264         (__tzfile_read): Changed all uses of uc2ul to decode.
10265         Decode the transition times properly when sizeof (time_t) > 4.
10267         * stdio/printf.h: Doc fixes.  Don't #include <stddef.h>.
10268         (printf_function): Make last arg ARGS a vector of pointers instead of a
10269         pointer to va_list.
10271 Fri Mar 10 13:46:25 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
10273         * stdio/vfprintf.c [USE_IN_LIBIO] (PAD): Use return value of _IO_padn.
10274         (buffered_vfprintf): Remove line buffer when flush failed.
10276 Fri Mar 10 00:04:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10278         * time/tzfile.c (struct ttinfo): New member `isgmt'.
10279         (__tzfile_read): Read isgmt flags for each type.
10280         (__tzfile_default): When using TZDEFRULES DST rules, adjust
10281         transition times according to the isstd and isgmt flags for the
10282         types of each transition, and adjust each transition to point to
10283         type index either 0 or 1.  Reset type indices 0 and 1 to describe
10284         the user's settings.
10286 Thu Mar  9 22:29:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10288         * locale/categories.def (LC_CTYPE): Merge CLASS_EB and CLASS_EL
10289         into just CLASS.  Add standard/optional flag to all items.
10291         * locale/localeinfo.h (_NL_CURRENT_DEFINE): Fix typo.
10293         * ctype/ctype.h [__BYTE_ORDER == __LITTLE_ENDIAN] (_ISbit):
10294         Rearrange defn to satisfy compiler.
10296         * locale/localeinfo.h: Declare _nl_current.
10298         * configure.in: Use AC_CHECK_TOOL for CC, AR, RANLIB.  Accept args
10299         --enable-shared, --enable-profile, --enable-omitfp; pass settings
10300         through to config.make.
10301         * config.make.in (build-shared, build-profile, build-omitfp): New
10302         config vars.
10304         * elf/elf.h (STN_UNDEF): Renamed to SHN_UNDEF (typo).
10305         (DT_NUM): New macro.
10307         * locale/nl_langinfo.c: Include errno.h and stddef.h.  Fix typos.
10309         * locale/lc-ctype.c (_nl_postload_ctype): Fix macro insanity.
10311         * locale/loadlocale.c (_nl_load_locale) [! MAP_COPY]: Define
10312         MAP_COPY to MAP_PRIVATE.
10314 Thu Mar  9 17:16:53 1995  Brendan Kehoe  (brendan@zen.org)
10316         * sysdeps/alpha/divrem.m4: Undefine `ret' to avoid the definition
10317         that's used inside the alpha sysdep.h.
10319         * sysdeps/alpha/__longjmp.c (__longjmp): Remove obsolete __NORETURN
10320         keyword.
10321         * sysdeps/alpha/__math.h (__copysign): Remove obsolete __CONSTVALUE.
10323         * configure.in: Match `osf*', not `osf1*'.
10324         * configure: Likewise.
10325         * sysdeps/unix/bsd/osf: Renamed from `sysdeps/unix/bsd/osf1'.
10327 Wed Mar  8 13:38:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10329         * posix/glob/configure.bat: Fixes from DJ.
10331         * time/backward, time/europe, time/northamerica, time/pacificnew,
10332         time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
10333         time/ialloc.c: Code and data updated from ADO's 95b.
10334         * time/emkdir.c: File removed.
10335         * time/Makefile (distribute, extra-objs, zic): Omit it.
10337         * time/localtime.c: Deansideclized.  Never #define __tzname et al
10338         to non-__ names.
10340         * locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
10341         instead of short int *.
10342         * ctype/ctype-info.c: Likewise.
10343         * ctype/ctype.h: Likewise.
10345         * locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
10346         of EB and EL versions.
10348 Mon Mar  6 12:34:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10350         * ctype/ctype.h (_ISbit): New macro, defined dependent on byte order.
10351         (_IS* enum): Use _ISbit to produce values.
10353 Sun Mar  5 19:40:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10355         * locale/localeinfo.h: Rewritten for new locale system, using
10356         locale data files and with <langinfo.h> interface.
10357         * locale/setlocale.c: Rewritten to use locale data files.
10358         * langinfo.h: New file.
10359         * locale/langinfo.h: New file.
10360         * locale/nl_langinfo.c: New file.
10361         * locale/loadlocale.c: New file.
10362         * locale/lc-ctype.c: New file.
10363         * locale/lc-messages.c: New file.
10364         * locale/lc-monetary.c: New file.
10365         * locale/lc-numeric.c: New file.
10366         * locale/lc-time.c: New file.
10367         * locale/categories.def: New file.
10368         * locale/Makefile (headers): Remove localeinfo.h.
10369         (distribute): New variable; put localeinfo.h here, and categories.def.
10370         (routines): Add loadlocale.
10371         (categories): New variable.
10372         (aux): Use that to get C-category and lc-category.
10373         * ctype/ctype.h (_IS*): Use independent bits for all but _ISalnum.
10374         * ctype/ctype-info.c: For initial tables, use
10375         _nl_C_LC_CTYPE_{class,toupper,tolower} constant tables defined in
10376         locale/C-ctype.c.
10377         * locale/C-ctype.c, locale/C-messages.c: New files.
10378         * locale/C-monetary.c, locale/C-numeric.c, locale/C-time.c:
10379         Default "C" locale data updated for new locale system.
10380         * locale/C-collate.c: File removed.
10381         * locale/C-ctype_ct.c: File removed.
10382         * locale/C-ctype_mb.c: File removed.
10383         * locale/C-response.c: File removed.
10384         * locale/localeconv.c: Use _NL_CURRENT macro to access locale data.
10385         * stdio/printf_fp.c, stdio/vfprintf.c, stdio/vfscanf.c,
10386           stdlib/strtod.c, time/asctime.c, time/strftime.c:
10387         Include ../locale/localeinfo.h and use _NL_CURRENT macro to access
10388         locale data.
10389         * time/localtime.c: Don't include <localeinfo.h>.
10390         * time/tzset.c: Don't use locale items for default TZ value or
10391         "GMT" string (use "UTC").
10393         * stdio/vfprintf.c [USE_IN_LIBIO] (PAD): Only call the function if
10394         WIDTH>0; update DONE.
10396         * malloc/malloc.c (morecore): Fix last change to calculate by
10397         blocks instead of bytes.
10399 Fri Mar  3 12:24:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10401         * sysdeps/generic/sys/mman.h (__mmap, __munmap): Declare these.
10402         * sysdeps/unix/sysv/irix4/sys/mman.h: Likewise.
10403         * sysdeps/unix/bsd/ultrix4/sys/mman.h: Likewise.
10404         * sysdeps/unix/bsd/osf1/sys/mman.h: Likewise.
10405         * sysdeps/unix/bsd/sun/sunos4/sys/mman.h: Likewise.
10406         * sysdeps/stub/munmap.c (munmap): Rename to __munmap, add weak
10407         alias munmap.
10408         * sysdeps/unix/mman/munmap.S: Likewise.
10409         * sysdeps/mach/munmap.c: Likewise.
10410         * sysdeps/mach/hurd/mmap.c (mmap): Rename to __mmap, add weak
10411         alias mmap.
10412         * sysdeps/unix/mman/mmap.S: Likewise.
10413         * sysdeps/unix/bsd/sun/sunos4/mmap.c: Likewise.
10414         * sysdeps/stub/mmap.c: Likewise.
10416         * sysdeps/unix/bsd/setsid.c: Use __getpgid instead of __getpgrp.
10418         * sysdeps/unix/dirfd.c: #undef dirfd before function defn.
10420 Thu Mar  2 12:15:24 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10422         * misc/search.h: Add missing semicolon.
10424         * sysdeps/unix/dirfd.c: Fix typo.
10426         * sysdeps/generic/sys/mman.h (mmap): Use __off_t instead of off_t
10427         in decl.
10429         * stdio/vfscanf.c (%c): In no-assign case, fix loop to decrement
10430         WIDTH before test.
10432 Wed Mar  1 00:57:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10434         * stdlib/strtod.c: Fixes from drepper.
10435         [IMPLICIT_ONE]: New macro, one for IEEE754 formats.
10436         * stdlib/strtold.c [IMPLICIT_ONE]: New macro, 0.
10437         * stdlib/strtof.c [IMPLICIT_ONE]: New macro, 1.
10439         * stdio/vfprintf.c: Correctly notice Z modifier.
10441         * misc/search.h: New file.
10442         * misc/Makefile (headers): Add search.h.
10443         * misc/insremque.c: Include search.h.
10444         (struct qelem): Type removed.
10446 Mon Feb 27 07:00:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10448         * elf/libelf.h: New file.
10449         * elf/elf_hash.c: New file.
10451 Sun Feb 26 15:51:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10453         Changes from Germano Caronni <caronni@tik.ethz.ch>:
10454         * malloc/malloc.c (morecore): Account in NEWSIZE for the
10455         malloc_info structures for each new block.
10457 Sat Feb 25 02:17:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10459         * sysdeps/mach/hurd/kill.c: When the process has no message port
10460         registered and we have its task port, translate a few signals to
10461         task_suspend/task_resume/task_terminate.
10463 Fri Feb 24 14:40:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10465         * io/Makefile (routines): Add euidaccess.
10466         * sysdeps/mach/hurd/euidaccess.c: New file.
10467         * sysdeps/stub/euidaccess.c: New file.
10468         * posix/unistd.h [__USE_GNU] (euidaccess): Declare it.
10470         * dirent/Makefile (routines): Add dirfd.
10471         * sysdeps/stub/dirfd.c: New file.
10472         * sysdeps/unix/dirfd.c: New file.
10473         * sysdeps/unix/dirstream.h (_DIR_dirfd): New macro.
10474         * dirent/dirent.h (dirfd): Declare new function.  Define as macro
10475         _DIR_dirfd if that is defined.
10476         * sysdeps/mach/hurd/dirstream.h (DIR): Replace `__port' member
10477         with `void *__fd'.
10478         * sysdeps/mach/hurd/opendir.c: Use DIRP->__fd instead of DIRP->__port.
10479         Open the file with `open'; set FD_CLOEXEC on the fd.
10480         * sysdeps/mach/hurd/closedir.c: Likewise.
10481         * sysdeps/mach/hurd/readdir.c: Likewise.
10482         * sysdeps/mach/hurd/dirfd.c: New file.
10484         * posix/Makefile (glob/configure): Do cvs commit if there is a CVS
10485         directory.
10486         (glob/ChangeLog): Likewise.
10488         * locale/locale.h (LC_*): Use small integers instead of bit masks.
10490         * stdio/bug4.c: Put temporary files in /tmp.
10491         * stdio/bug3.c: Likewise.
10492         * stdio/bug5.c: Likewise.
10493         * stdio/test-fseek.c: Likewise.
10494         * stdio/test-popen.c: Likewise.
10496 Wed Feb 22 00:44:41 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10498         * posix/glob/configure.in: Put AC_ISC_POSIX before AC_CONST.
10500         * libc-symbols.h (weak_symbol): New macro.
10502         * hurd/hurdsig.c (_hurd_internal_post_signal): Ignore preempter
10503         elts with null handlers.
10505         * sysdeps/mach/hurd/i386/sigreturn.c: Restore the FPU state.
10507 Tue Feb 21 21:53:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10509         * stdlib/random.c (__srandom): Change algorithm used to populate
10510         the state array.
10511         (randtbl): Recomputed with new algorithm.
10513         * sysdeps/sparc/Makefile [subdir=crypt] (crypt): Reset only if set
10514         to original value of `crypt'.
10515         * sysdeps/unix/sysv/sysv4/solaris2/sparc/Makefile [subdir=crypt]
10516         (crypt): New variable, set to crypt.solar.
10518 Tue Feb 21 11:50:37 1995  Brendan Kehoe  (brendan@zen.org)
10520         * sysdeps/sparc/Makefile (routines): Reference `dotmul', not `mul'.
10522         * config.h.in: Put comment around ^L to pacify Solaris as here too.
10524 Tue Feb 21 00:10:50 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10526         * string/Makefile (distribute): Add pagecopy.h.
10527         * sysdeps/mach/pagecopy.h: New file.
10528         * sysdeps/generic/pagecopy.h: New file.
10529         * sysdeps/generic/memcpy.c: Include pagecopy.h; call
10530         PAGE_COPY_FWD_MAYBE first when word aligned.
10531         * sysdeps/generic/memmove.c: Likewise.
10533         * misc/bsd-compat.c (longjmp, setjmp): Functions removed.
10534         (getpgrp): Call __getpgid instead of __getpgrp.
10536         * Makefile (subdirs): Add elf first.
10537         * elf/Makefile: New file.
10538         * elf/elf.h: New file.
10540         * sysdeps/unix/start.c (errno): Only define if it's not #define'd
10541         as a macro.
10542         [! NO_UNDERSCORES]: Define `start' as a weak alias, not a symbol
10543         indirection.
10545         * csu/Makefile (crtstuff): New variable consolidates crti, crtn;
10546         add crti_s, crtn_s.
10547         (install-lib, extra-objs, generated-, omit-deps): Use that.
10548         (initfini): New canned sequence, broken out of crt[in].s rule.
10549         (crt[in].s rule): Use it.
10550         (crt[in]_s.s): New rule.
10551         * csu/initfini.c (GLOBAL): New macro; define it to empty if undefined.
10552         (_init, _fini): Use GLOBAL as storage class.
10553         Add self reference to avoid GCC optimizing out the functions.
10555         * Makefile (headers): Remove $(stddef.h).
10556         * Makeconfig (stddef.h): Variable removed; now require gcc version
10557         >= 2.2.
10558         * stddef.h: File removed.
10560 Mon Feb 20 19:42:31 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10562         * sysdeps/unix/bsd/ultrix4/mips/start.S: Remove `__environ'
10563         definition.
10564         * sysdeps/unix/bsd/osf1/alpha/start.S: Likewise.
10566         * stdlib/strtod.c: Allow the string to start with a decimal point
10567         without a leading zero.
10569 Mon Feb 20 04:04:57 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
10571         * Makefile (subdirs): Put csu first.
10573         * sysdeps/mach/hurd/start.c: Include unistd.h for __environ decl.
10575         * Makeconfig [elf=yes] (+preinit, +postinit): New variables, set
10576         to crt[in].o.
10577         (csu-objpfx): New variable.
10578         (+link): Use it to find start.o and $(+preinit), $(+postinit).
10580         * Rules (subdir_lib, all): Depend on objs.
10582         * config.h.in [HAVE_ELF || HAVE_GNU_LD]: Define HAVE_WEAK_SYMBOLS.
10584         * stdlib/strtod.c (PASTE, PASTE1): New helper macros; use these in
10585         access to float.h macros.
10587         * misc/efgcvt.c: New file.
10588         * misc/Makefile (routines): Add efgcvt.
10590 Sun Feb 19 20:10:43 1995  Brendan Kehoe  <brendan@zen.org>
10592         * sysdeps/sparc/mul.S: Renamed to `dotmul.S'.
10593         * sysdeps/sparc/Makefile (routines): Reference `dotmul.S', not `mul.S',
10594         to avoid a misreference that would override sysdeps/generic/mul.c.
10595         * sysdeps/sparc/Dist: Likewise.
10597 Sun Feb 19 17:46:13 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
10599         * posix/Makefile (aux): Add environ.
10600         * posix/environ.c: New file.
10601         * sysdeps/unix/sparc/start.c: Remove __environ definition.
10602         * sysdeps/unix/start.c: Likewise.
10603         * sysdeps/unix/sysv/irix4/start.c: Likewise.
10604         * sysdeps/mach/hurd/start.c: Likewise.
10605         * sysdeps/mach/start.c: Likewise.
10606         * sysdeps/stub/start.c: Likewise.
10608         * sysdeps/unix/make_errlist.c: In produced program, test
10609         HAVE_WEAK_SYMBOLS instead of HAVE_GNU_LD.
10610         * sysdeps/unix/sysv/sysv4/dup2.c: Fix #include of renamed file.
10611         Remove extra weak alias.
10613         * sysdeps/unix/sysv/sysv4/sigaltstack.S: Fix unsquashed file name
10614         in #include.
10616         * libc-symbols.h: Put comment around ^L to pacify Solaris as.
10618         * sysdeps/posix/Makefile (cded-objdir-includes): New variable
10619         replaced cded-objdir-CPPFLAGS; transform $(+includes) instead of
10620         $(CPPFLAGS).
10621         (mk-stdiolim): Use it instead.
10623 Fri Feb 17 12:16:27 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
10625         * mach/mach_init.c (__vm_page_size): Make it initialized.  It does
10626         not work to make a weak alias to a bss symbol.
10628         * stdio/Makefile (distribute): Remove mpn-copy.mk; add gen-mpn-copy.
10629         (tests): Add test-fwrite.
10630         * stdio/test-fwrite.c: New file.
10632         * stdlib/stdlib.h [__USE_GNU]: Declare strtof, strtold, __strtof,
10633         __strtold.
10635         * Makefile (autoconf-it): New canned sequence.  Do cvs commit if
10636         there is a CVS directory.
10637         (configure, %/configure): Use $(autoconf-it) for cmds.
10638         * Make-dist: Likewise.
10639         * sysdeps/mach/hurd/Makefile (errlist.c, errnos.h): Do cvs commit
10640         if there is a CVS directory.
10641         * sysdeps/sparc/Makefile (divrem output): Likewise.
10642         * sysdeps/alpha/Makefile (divrem output): Likewise.
10643         * Makerules ($(gpl2lgpl)): Likewise.
10645         * Makerules (rule to install lib%.a from $(install-lib)): Fix
10646         patsubst to elide ranlib for $(non-lib.a).
10648         * stdio/tst-printf.c: Enable FP tests.  Add some new tests from rfg.
10650 Thu Feb 16 04:06:06 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
10652         * sysdeps/mach/hurd/mig-reply.c: Add weak aliases to non-__ names.
10653         * mach/mig-dealloc.c: Add weak alias mig_deallocate.
10655 Wed Feb 15 13:34:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10657         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Take new arg
10658         DEALLOC_REFPORT; deallocate the refport after use only if it
10659         evaluates to nonzero.
10660         * sysdeps/mach/hurd/kill.c: Pass DEALLOC_REFPORT arg of one.
10661         * hurd/hurdkill.c: Pass DEALLOC_REFPORT arg of zero.
10663         * hurd/hurdsig.c (abort_rpcs): Take new arg int *STATE_CHANGE; set
10664         *STATE_CHANGE to indicate whether or not we changed *STATE and it
10665         should be committed to the thread.
10666         (abort_all_rpcs): Take new arg LIVE; if nonzero and abort_rpcs changes
10667         state for a thread, do thread_set_state on that thread.  Don't use
10668         SS->intr_port for collecting reply ports, it is not safe to
10669         clobber that when suspending; instead, alloca a temporary array.
10670         (_hurd_internal_post_signal): Pass LIVE flag to abort_all_rpcs:
10671         zero when dying, one when suspending.  Pass new arg to abort_rpcs.
10673         * sysdeps/mach/hurd/stdio_init.c: Don't lock the file descriptor;
10674         HURD_FD_PORT_USE will.  Don't use critical sections around
10675         HURD_FD_PORT_USE invocations.
10677         * sysdeps/mach/hurd/stdio_init.c: Don't make pipes/FIFOs unbuffered.
10678         * sysdeps/posix/stdio_init.c: Likewise.
10680 Tue Feb 14 03:01:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10682         * hurd/hurd/fd.h (_hurd_fd_get): Don't do critical section
10683         locking; don't leave the descriptor locked on return.
10684         (HURD_FD_PORT_USE): Don't expect _hurd_fd_get to return the fd locked.
10685         Use a critical section around locking the descriptor.
10686         Check for an empty descriptor and return EBADF.
10687         * sysdeps/mach/hurd/dup2.c: Likewise.
10688         * sysdeps/mach/hurd/fcntl.c: Likewise.
10689         Use HURD_FD_PORT_USE macro for RPCs.
10690         * sysdeps/mach/hurd/sysd-stdio.c: Don't lock the descriptor before
10691         using HURD_FD_PORT_USE.
10692         * sysdeps/mach/hurd/defs.c (init_stdio): Don't expect _hurd_fd_get
10693         to lock the descriptor.
10694         * sysdeps/mach/hurd/stdio_init.c: Use critical sections while
10695         locking the descriptor.
10696         * sysdeps/mach/hurd/fdopen.c: Likewise.
10697         * hurd/fd-close.c: Likewise.
10698         Don't expect the descriptor to be locked on entry.
10699         Check for empty descriptor and return EBADF.
10701         Factor ctty RPC code for SIGTTIN/SIGTTOU generation out into
10702         new functions _hurd_ctty_input and _hurd_ctty_output, each
10703         called with (io_t port, io_t ctty, error_t (*rpc) (io_t)).
10704         * hurd/ctty-input.c: New file.
10705         * hurd/ctty-output.c: New file.
10706         * hurd/Makefile (dtable): Add ctty-input and ctty-output.
10707         * hurd/fd-read.c: Use _hurd_ctty_input.
10708         * hurd/fd-write.c: Use _hurd_ctty_output.
10709         * sysdeps/mach/hurd/ioctl.c: Likewise.
10710         * hurd/hurd/fd.h (_hurd_ctty_input, _hurd_ctty_output): Declare them.
10712 Mon Feb 13 11:36:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10714         * stdio/vfscanf.c (%e, %f, %g): Use strtod, __strtold, or __strtof
10715         as appropriate to the type.
10717         * sysdeps/ieee754/huge_val.h (__huge_val_t): New macro to avoid
10718         repeating the union.
10719         (HUGE_VAL, __huge_val): Use it.
10720         [__USE_GNU] (HUGE_VALf, HUGE_VALl): New macros, along with
10721         analogous macros to HUGE_VAL's: __huge_val[fl]_t, __HUGE_VAL[fl]_bytes.
10722         * stdlib/strtold.c (FLOAT_HUGE_VAL): Define this to HUGE_VALl.
10723         (STRTOF): Set to __strtold; define strtold as weak alias.
10724         * stdlib/strtof.c (FLOAT_HUGE_VAL): Define this to HUGE_VALf.
10725         (STRTOF): Set to __strtof; define strtof as weak alias.
10727         * sysdeps/ieee754/ieee754.h (union ieee754_float): New type.
10728         (IEEE754_FLOAT_BIAS): New macro.
10730         * sysdeps/ieee754/mpn2ldbl.c: Fix typos.
10732         * stdlib/testmb.c: Add tests from rfg for using normal chars as
10733         multibyte chars.
10735         * hurd/hurdmalloc.c (malloc_init): Add self reference to avoid not
10736         only the `defined but not used' warning, but also to avoid GCC
10737         optimizing out the entire function (!).
10739         * stdlib/wctomb.c: Include ctype.h.
10741         * Makerules (install-lib-non.a): Don't include $(non-lib.a).
10743         * hurd/hurdmalloc.c: Include string.h; #define bcopy using memcpy.
10745 Sat Feb 11 04:05:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10747         * stdio/printf_fp.c: Include "fpioconst.h".
10748         (_tens_p): Table moved to fpioconst.c, renamed to _fpioconst_pow10.
10749         (__printf_fp): All references changed.
10750         Don't bother computing THOUSANDS_SEP if GROUPING is empty.
10751         (group_number): Use memmove instead of memcpy, since operands overlap.
10752         * stdio/fpioconst.c: New file, tables broken out of stdio/printf_fp.c.
10753         * stdio/fpioconst.h: New file, header declaring the table data.
10754         * stdio/Makefile (aux): Add fpioconst.
10755         (distribute): Add fpioconst.h.
10756         * stdlib/strtod.c: Complete rewrite from drepper.
10757         * stdlib/strtof.c: New file.
10758         * stdlib/strtold.c: New file.
10759         * stdlib/Makefile (routines): Add strtof, strtold.
10760         * stdio/Makefile (routines): Add mpn2flt, mpn2dbl, mpn2ldbl.
10761         * sysdeps/stub/mpn2flt.c: New file.
10762         * sysdeps/stub/mpn2dbl.c: New file.
10763         * sysdeps/stub/mpn2ldbl.c: New file.
10764         * sysdeps/ieee754/mpn2flt.c: New file.
10765         * sysdeps/ieee754/mpn2dbl.c: New file.
10766         * sysdeps/ieee754/mpn2ldbl.c: New file.
10768         * Makerules (install-lib.a): Don't filter out $(non-lib.a).
10769         ($(install-lib.a) in $(libdir) rule): Elide ranlib command when $@
10770         appears in $(non-lib.a).
10772 Fri Feb 10 17:20:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10774         * stdlib/wctomb.c: A normal ASCII character translates to itself.
10775         * stdlib/mbtowc.c: Likewise.
10777 Thu Feb  9 03:55:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10779         * setjmp/setjmp.h (longjmp, _longjmp, __longjmp, siglongjmp):
10780         Remove `const' from prototypes.
10781         * sysdeps/m68k/__longjmp.c: Likewise.
10782         * setjmp/longjmp.c: Likewise.
10783         * sysdeps/i386/__longjmp.c: Likewise.
10785         * sysdeps/posix/tempname.c: Increment *IDX at beginning of loop,
10786         so when we return a name, it is incremented past the value that
10787         produces that same name.
10789         * stdio/fgets.c (fgets): Change `size_t' to `int' in prototype.  Sigh.
10790         * stdio/stdio.h (fgets): Likewise.
10792         * stdio/vfprintf.c (printf_unknown): Print ' for INFO->group flag.
10794         * hurd/fd-write.c: Don't clobber ERR with the msg_sig_post call
10795         when it's EBACKGROUND; we need to notice that it is EBACKGROUND
10796         and retry the RPC.
10797         * hurd/fd-read.c: Likewise.
10799 Wed Feb  8 05:01:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10801         * sysdeps/mach/sysdep.h (FATAL_PREPARE_INCLUDE): New macro, set to
10802         <mach/mig_support.h>.
10803         * assert/assert-perr.c [FATAL_PREPARE_INCLUDE]: Include it.
10804         * assert/assert.c: Likewise.
10805         * sysdeps/posix/libc_fatal.c: Likewise.
10807 Tue Feb  7 12:17:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10809         * stdio/stdio.h [__STRICT_ANSI__] (stdin, stdout, stderr): Define
10810         as macros, to satisfy ANSI pedants.
10812         * stdio/internals.c (flushbuf): When there is no new data after
10813         priming the stream, return without writing out the buffer.
10814         * stdio/Makefile (tests): Add bug7.
10815         * stdio/bug7.c: New file.
10817         * io/sys/stat.h (S_IFIFO, S_IFLNK, S_IFSOCK, S_ISFIFO, S_ISLNK,
10818         S_ISSOCK): Define only if the corresponding underlying __S_IF* macro
10819         is defined.
10821         * stdio/getdelim.c: Decrement COPY after getting a char from __fillbf.
10823         * stdio/Makefile (tests): Add errnobug.
10824         * stdio/errnobug.c: New file.
10826         * mach/mig_strncpy.c: Include string.h.
10828         * sysdeps/mach/sysdep.h: Don't #include <mach/mig_support.h>.  Its
10829         inlines cause trouble for files defining global register variables.
10831         * stdio/vfprintf.c: Use _strerror_internal for %m.
10833         * sysdeps/ieee754/dbl2mpn.c: Fixes from drepper for 64-bit limbs.
10835         * stdio/printf.h (struct printf_info): New member `group', for %' flag.
10836         * stdio/printf-prs.c (parse_printf_format): Grok %' flag and set flag.
10837         * stdio/vfprintf.c (group_number): New function.
10838         (vfprintf): Support %' flag for integer formats, by calling
10839         group_number after formatting the number in WORK.
10840         * stdio/printf_fp.c (guess_grouping, group_number): New functions.
10841         (__printf_fp): Implement `group' flag using them.
10843         * Makefile (include sysd-dirs): Protect with ifndef avoid-generated.
10844         (parent-clean): Remove sysd-rules, not sysdirs.
10845         (distclean): Pass avoid-generated=yes to submake.
10846         (distclean-1): Remove $(sysdep-$(distclean-1)).
10848         * Makerules (objects, objs): Depend on $(extra-objs) too.
10849         (include sysd-Makefile): Protect with ifndef avoid-generated.
10851         * Makeconfig (+defines, +gnu-stabs, gnu-as): Variables removed.
10852         (CPPFLAGS): Use $(defines) in place of $(+defines).
10853         Replace -D_LIBC with -include $(..)libc-symbols.h.
10855         * stdio/freopen.c: Set seen bit before calling fclose.
10857 Mon Feb  6 18:34:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10859         * sysdeps/mach/hurd/setpriority.c: Keep track of numbers of
10860         successes and each kind of failure.  Return EPERM or EACCES only
10861         if every task failed that way.
10863         * sysdeps/mach/hurd/getpriority.c: Handle out of band buffers
10864         correctly.
10866         * sysdeps/mach/hurd/ptrace.c (PTRACE_ATTACH, PTRACE_DETACH): Stop
10867         or resume the process after frobbing.
10869         * hurd/hurdsig.c: Use spin lock operations on sigstate locks
10870         throughout.
10871         (_hurd_thread_sigstate): Don't lock the sigstate lock.
10872         (_hurd_internal_post_signal): New subfunction `mark_pending'; replace
10873         repeated sequences with calls to it.  Don't expect the sigstate
10874         lock to be held on entry; lock it just before examining sigaction.
10875         In handler case, check SS->critical_section after calling
10876         abort_rpcs; if set, mark the signal pending and resume the thread.
10877         * hurd/hurd/signal.h (_hurd_self_sigstate_unlocked): Function removed.
10878         (_hurd_self_sigstate): Don't lock the sigstate lock.
10879         (HURD_EINTR_RPC): Call _hurd_self_sigstate instead of
10880         _hurd_self_sigstate_unlocked.
10881         * hurd/msgportdemux.c: Don't expect _hurd_self_sigstate to lock
10882         the sigstate lock.
10883         * hurd/hurdexec.c: Use spin lock operations on sigstate lock.
10884         Don't expect _hurd_self_sigstate to lock it.  Fix critical section
10885         locking.
10886         * hurd/hurd-raise.c: Likewise.
10887         * sysdeps/mach/hurd/sigsuspend.c: Likewise.
10888         * sysdeps/mach/hurd/sigpending.c: Likewise.
10889         * sysdeps/mach/hurd/sigaltstack.c: Likewise.
10890         * sysdeps/mach/hurd/sigaction.c: Likewise.
10891         * sysdeps/mach/hurd/sigprocmask.c: Likewise.
10892         * hurd/fd-write.c: Likewise.
10893         * hurd/fd-read.c: Likewise.
10894         * sysdeps/mach/hurd/ioctl.c: Likewise.
10895         * sysdeps/mach/hurd/fork.c: Likewise.
10896         * sysdeps/mach/hurd/i386/sigreturn.c: Likewise.
10897         * sysdeps/mach/hurd/mips/sigreturn.c: Likewise.
10898         * sysdeps/mach/hurd/alpha/sigreturn.c: Likewise.
10899         * hurd/hurdmsg.c (get_int): Likewise.
10901         * stdio/vfprintf.c: Include stddef.h.  Fix typos in libio code.
10903         * stdio/vfprintf.c (__pad): Function renamed to __printf_pad, made
10904         global.
10905         (PAD): Caller changed.
10906         * stdio/printf_fp.c (__pad): Function removed.
10907         (PAD): Use __printf_pad instead.
10909 Sun Feb  5 17:59:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10911         Merged new FP printer by Ulrich Drepper.
10912         * stdio/printf_fp.c: Rewrite by drepper.
10913         * stdio/Makefile (routines): Add ldbl2mpn.
10914         * sysdeps/ieee754/ieee754.h (union ieee754_double): Add `ieee_nan'
10915         member.
10916         (union ieee854_long_double): New type, from drepper.
10917         (IEEE754_DOUBLE_BIAS, IEEE854_LONG_DOUBLE_BIAS): New macros.
10918         * sysdeps/ieee754/ldbl2mpn.c: New file, by drepper.
10919         * sysdeps/stub/ldbl2mpn.c: New file.
10920         * math/Makefile (routines): Add isinfl and isnanl.
10921         * sysdeps/ieee754/isinfl.c: New file.
10922         * sysdeps/stub/isinfl.c: New file.
10923         * sysdeps/ieee754/isnanl.c: New file.
10924         * sysdeps/stub/isnanl.c: New file.
10926         * malloc/malloc.c (__malloc_extra_blocks): New variable.
10927         (malloc): When getting more core, get __malloc_extra_blocks extra;
10928         put the new block at the end of the free list and let the next loop
10929         iteration use the initial portion of it.
10930         * malloc/free.c (_free_internal): Account for twice
10931         __malloc_extra_blocks in deciding if we have so much extra memory
10932         we should return it to the system.
10933         * malloc/malloc.h (__malloc_extra_blocks): Declare it.
10934         * posix/glob.c (prefix_array, glob_pattern_p): Remove gratuitous
10935         const in parameter decl.
10937         * sysdeps/unix/mips/sysdep.h (ENTRY): Add `.ent' directive.
10939 Fri Feb  3 18:15:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10941         * munch.awk (EXTERNS): Print decls using __P instead of EXFUN.
10943         * sysdeps/mips/setjmp_aux.c: Use ENV[0].__jmpbuf[0].
10944         * sysdeps/mips/bsd-_setjmp.S: Use `li' insn instead of `move'.
10945         * sysdeps/mips/bsd-setjmp.S: Likewise.
10946         * sysdeps/mips/__longjmp.c: Remove obsolete __NORETURN keyword.
10947         * sysdeps/mach/hurd/mips/trampoline.c (_hurd_setup_sighandler):
10948         Use `long int' for sigcode.  Use explicit register numbers instead
10949         of names.
10950         (_hurdsig_rcv_interrupted_p): Use _hurdsig_catch_fault.
10951         * sysdeps/mach/hurd/mips/exc2signal.c: Use `long int' for sigcode.
10953 Thu Feb  2 20:06:45 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10955         * hurd/hurdmalloc.c: Remove bogus bcopy decl.
10957         * mach/mig_strncpy.c: Add missing `const' in prototype.  Rewritten
10958         using __stpncpy.
10960         * io/ftw.c (ftw, ftw_dir): Treat ENOENT from stat like EACCES.
10962         * stdio/vfprintf.c: Set PREC to zero for %. without following digit.
10964 Tue Jan 31 13:49:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10966         * mach/mig_strncpy.c: Include mach.h instead of string.h.  Use
10967         vm_size_t instead of size_t for arg and return types.
10969         * mach/mach_init.c: Don't declare __mig_init; mach/mig_support.h
10970         already does.
10972 Mon Jan 30 00:33:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10974         * set-hooks.h (RUN_HOOK): Dereference PTR properly.
10976         * configure.in (friendly stddef.h check): Write override defn for
10977         `stddef.h' Make variable.
10978         (AC_LINK_FILES): Use `echo ...` to avoid " " appearing nonempty.
10980         * configure.in (host_os=sysv4*|solaris2*): Set elf=yes.
10982         * Rules ($(objpfx)dummy.o): Write an empty function, not just an
10983         empty file.
10985         * sysdeps/sparc/Makefile (sysdep-realclean): New variable.
10987 Sat Jan 28 03:38:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10989         * Makefile (distribute): Remove gnu-stabs.h; add libc-symbols.h.
10991         * sysdeps/mach/sysdep.h [ASSEMBLER]: Protect include of
10992         mach/machine/syscall_sw.h with this.
10994 Fri Jan 27 18:33:20 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10996         * hurd/hurd/signal.h: Include <hurd/msg.h>, and <spin-lock.h>
10997         instead of <lock-intern.h>.
10998         (struct hurd_sigstate): Member `lock' changed to a `spin_lock_t'.
10999         (_hurd_critical_section_lock): Use spin lock operators.
11000         Don't hold the sigstate lock, unlock it after setting the flag.
11001         (_hurd_critical_section_unlock): Take the sigstate lock
11002         to clear the flag; while holding it, check pending signals.  After
11003         unlocking, sig_post ourselves if there were pending signals.
11005         * hurd/catch-exc.c (_S_catch_exception_raise): Don't take the
11006         sigstate lock.  If it is locked, clear SS->critical_section and
11007         SS->context, and unlock it.
11009         * sysdeps/mach/sysdep.h (EXT, LEXT): New macros.
11011         * set-init.c (__libc_init) [HAVE_ELF]: Run _init and atexit (_fini).
11012         * munch-tmpl.c: Likewise.
11014         * mach/Makefile (routines): Don't filter out syscall_% from
11015         $(mach-syscalls).
11017 Fri Jan 27 17:53:49 1995  Jim Meyering  (meyering@comco.com)
11019         * posix/fnmatch.c: Declare errno if it's not defined.
11020         That's simpler than testing #if !defined(__GNU_LIBRARY__)
11021         && !defined(STDC_HEADERS).
11023 Fri Jan 27 15:40:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11025         * csu/Makefile: New file.
11026         * csu/initfini.c: New file.
11027         * Makefile (+other_dirs): Add csu.
11028         (+init): Variable renamed to libc-init.  All references changed.
11029         (aux): Remove start.
11030         (install-lib): Variable removed.
11031         (crt0.o, Mcrt1.o  crt1.o): Targets removed.
11033         * mach/Machrules (static deps of RPC_*.o): Add $(..)libc-symbols.h
11034         and $(objpfx)config.h.
11035         (static deps of RPC alias *.o): Removed.
11037         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sysdep.h [ASSEMBLER]:
11038         Protect macros with this.
11039         * sysdeps/unix/bsd/osf1/alpha/sysdep.h: Likewise.
11040         * sysdeps/unix/bsd/sequent/i386/sysdep.h: Likewise.
11041         * sysdeps/unix/bsd/vax/sysdep.h: Likewise.
11042         * sysdeps/unix/bsd/sun/m68k/sysdep.h: Likewise.
11043         * sysdeps/unix/bsd/sony/newsos/m68k/sysdep.h: Likewise.
11044         * sysdeps/unix/mips/sysdep.h: Likewise.
11046 Thu Jan 26 00:02:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11048         * Makerules (compile.[Sc]): Match gcc in $(CC) better.
11049         (BUILD_CFLAGS): Instead of $(config-defines), use -include config.h.
11051         * hurd/intr-rpc.awk: Emit weak alias.
11053         * sysdeps/unix/bsd/sun/sunos4/wait4.c: Call getpgrp instead of
11054         __getpgrp.
11056         * sysdeps/unix/bsd/hp/m68k/sysdep.h [ASSEMBLER]: Protect macros with
11057         this.
11058         * sysdeps/unix/i386/sysdep.h: Likewise.
11059         * sysdeps/unix/sparc/sysdep.h: Likewise.
11061         * io/ftw.c: Avoid `ret' as variable name.
11062         * posix/glob.c: Likewise.
11064         * ctype/ctype.h (_ISalpha): Define as its own bit.
11065         * locale/C-ctype_ct.c (__ctype_b_C): Set _ISalpha bit in all letters.
11067         * stdlib/exit.c [HAVE_GNU_LD]: Protect #include "set-hooks.h" and
11068         DEFINE_HOOK with this.
11070 Wed Jan 25 00:45:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11072         * hurd/hurdinit.c: Use DECLARE_HOOK instead of `extern DEFINE_HOOK'.
11073         * mach/spin-solid.c (spin_lock_solid): Define as weak alias to __name.
11074         * mach/shortcut.awk: Emit weak alias.
11075         * mach/spin-lock.c: Add weak aliases for all spin-lock.h functions.
11076         * mach/mach_init.c (mach_init, vm_page_size): Defin weak aliases for
11077         __ names.
11078         * mach/Makefile (lock): Remove spin-syms.
11079         (routines): Remove __ names, vm_page_size, msgserver_t.
11080         ($(mach-syscalls) rule): Generate files without __, add weak alias.
11081         Remove symbol alias file rule.
11082         ($(mach-shortcuts) rule): Likewise.
11083         [!mach-shortcuts] (user-interfaces): Filter out mach/mach4 too.
11084         * mach/Machrules (if-calls.c): Variable and rule removed.
11085         (interface-headers): Don't add $($(if)-calls).
11086         (transform-user-stub): Define to add weak alias.
11087         * set-hooks.h: Use new libc-symbols.h set access macros.
11088         * time/Makefile (routines): Remove __ names.
11089         (aux): Variable removed.
11090         * hurd/Makefile: Likewise.
11091         * sysdeps/unix/start.c (environ): Define as weak alias for __environ.
11092         (data_start): Define as weak alias for __data_start.
11093         * sysdeps/mach/hurd/start.c: Likewise.
11094         * sysdeps/unix/sparc/start.c: Likewise.
11095         * sysdeps/unix/make_errlist.c: Emit weak aliases for sys_nerr and
11096         sys_errlist.
11097         * sysdeps/mach/hurd/errlist.awk: Likewise.
11098         * sysdeps/unix/bsd/osf1/alpha/start.S (environ): Define as weak
11099         alias for __environ.
11100         * sysdeps/unix/bsd/ultrix4/mips/start.S: Likewise.
11101         * sysdeps/stub/setdomain.c: Use new stub_warning macro.
11102         * sysdeps/stub/getdomain.c: Likewise.
11103         * sysdeps/stub/vhangup.c: Likewise.
11104         * sysdeps/stub/swapon.c: Likewise.
11105         * sysdeps/stub/sendmsg.c: Likewise.
11106         * sysdeps/stub/recvmsg.c: Likewise.
11107         * sysdeps/stub/acct.c: Likewise.
11108         * sysdeps/stub/isinf.c: Likewise.  Add weak alias isinf for __isinf.
11109         * sysdeps/mach/hurd/_exit.c: Remove obsolete __NORETURN keyword.
11110         * sysdeps/posix/libc_fatal.c: Likewise.
11111         * sysdeps/i386/abort.c: Likewise.
11112         * sysdeps/i386/__longjmp.c: Likewise.
11113         * sysdeps/generic/make_siglist.c: Emit defn always for
11114         _sys_siglist.  Emit weak alias to sys_siglist.
11115         * sysdeps/generic/atan.c: Remove obsolete __CONSTVALUE keyword.
11116         * sysdeps/ieee754/log10.c: Likewise.
11117         * time/difftime.c: Likewise.
11118         * stdlib/random.c (srand): Define as weak alias for __srandom.
11119         * stdlib/exit.c: Remove obsolete __NORETURN keyword.  Use set-hooks
11120         macros for __libc_atexit.
11121         * stdlib/Makefile (routines): Remove __random, srand.
11122         * stdio/gets.c: Use new link_warning macro instead of old
11123         warn_references.
11124         * stdio/Makefile (routines): Remove __ names.
11125         (aux): Remove syms-stdio.
11126         * socket/Makefile (routines): Added e on getpeernam and getsocknam.
11127         * setjmp/longjmp.c: Remove obsolete __NORETURN keyword.
11128         * setjmp/Makefile (routines): Remove _longjmp, siglongjmp.
11129         * setjmp/setjmp.h: Replace __NORETURN keyword with __attribute__ uses.
11130         * stdio/stdio.h: Likewise.
11131         * misc/Makefile (routines): Remove __ names.
11132         (aux): Remove data_start.
11133         * sysdeps/mach/hurd/defs.c: Don't include gnu-stabs.h.
11134         * sysdeps/mach/hurd/brk.c: Likewise.
11135         * hurd/hurdid.c: Likewise.
11136         * hurd/hurdpid.c: Likewise.
11137         * hurd/openport.c: Likewise.
11138         * hurd/hurdsock.c: Likewise.
11139         * hurd/hurdsig.c: Likewise.
11140         * hurd/hurdrlimit.c: Likewise.
11141         * hurd/hurdmalloc.c: Likewise.
11142         * hurd/dtable.c: Likewise.
11143         * hurd/setauth.c: Likewise.
11144         * misc/progname.c: Likewise.
11145         * misc/init-misc.c: Likewise.
11146         * sysdeps/generic/vfork.c: Likewise.
11147         * sysdeps/unix/bsd/init-posix.c: Likewise.
11148         * math/math.h: Replace __CONSTVALUE keyword with __attribute__ uses.
11149         * time/time.h: Likewise.
11150         * math/Makefile (routines): Remove __ names.
11151         * io/Makefile: Likewise.
11152         * termios/Makefile: Likewise.
11153         * resource/Makefile: Likewise.
11154         * signal/Makefile: Likewise.
11155         * dirent/Makefile: Likewise.
11156         * assert/assert.h: Replace __NORETURN keyword with __attribute__
11157         uses.  Functions return void and macros deal with this.
11158         * assert/assert-perr.c: Remove obsolete __NORETURN keyword.
11159         Return void.  Don't include gnu-stabs.h.
11160         * assert/assert.c: Likewise.
11161         * posix/Makefile (routines): Remove __ names, setpgrp.  Add
11162         getpgid.
11163         (aux): Remove environ.
11164         * stdlib/stdlib.h (abort, exit): Replace __NORETURN keyword with
11165         __attribute__ use.
11166         * posix/unistd.h (_exit): Likewise.
11167         (__getpgrp, __setpgrp): Declarations removed.
11168         (__getpgid, getpid): Declare these.
11170         * configure.in (host_os=gnuelf|linuxelf): Set elf=yes.  Do AC_SUBST
11171         for gnu_ld, gnu_as, elf, and weak.  Call AC_LINK_FILEES on
11172         $libc_link_{sources,dests}.
11173         * sysdeps/unix/configure.in: Remove __ from file names.  Don't
11174         create files, just add to libc_link_{dests,sources}.
11176         * config.make.in (gnu-as, gnu-ld, elf, weak-symbols): New variables.
11178         * config.h.in: Add #undefs used by sysdeps configures.
11180         * sysdeps/unix/sysv/sysv4/Makefile (sysdep_routines): Removed
11181         __setpgid, __getpgid.
11182         * sysdeps/unix/sysv/sco3.2.4/setpgid.c: Included file was renamed
11183         from setpgrp.c.
11184         * sysdeps/unix/sysv/sco3.2.4/getpgid.c: Included file was renamed
11185         from __getpgrp.c.
11186         * sysdeps/unix/bsd/getpgrp.c: File removed.
11187         * sysdeps/generic/getpgrp.c: Moved from sysdeps/stub/getpgrp.c.
11188         Call __getpgid with zero.
11189         * sysdeps/stub/setpgid.c: Renamed __setpgrp to __setpgid, added
11190         weak aliases setpgid and setpgrp.
11191         * sysdeps/unix/sysv/irix4/setpgid.S: Likewise.
11192         * sysdeps/unix/common/setpgid.S: Likewise.
11193         * sysdeps/mach/hurd/setpgid.c: Likewise.
11194         * sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
11195         Use subcall 5 to __pgrpsys.
11196         * sysdeps/stub/getpgid.c: Renamed __getpgrp to __getpgid, added
11197         weak alias getpgid.
11198         * sysdeps/mach/hurd/getpgid.c: Likewise.
11199         * sysdeps/unix/sysv/irix4/getpgid.S: Likewise.
11200         * sysdeps/unix/common/getpgid.S: Likewise.
11201         * sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
11202         Use subcall 4 to __pgrpsys.
11203         * sysdeps/stub/__getpgrp.c: Renamed to getpgid.c.
11204         * sysdeps/unix/sysv/sysv4/__getpgrp.c: Renamed to getpgid.c.
11205         * sysdeps/unix/sysv/sco3.2.4/__getpgrp.c: Renamed to getpgid.c.
11206         * sysdeps/unix/sysv/irix4/__getpgrp.S: Renamed to getpgid.S.
11207         * sysdeps/unix/common/__getpgrp.S: Renamed to getpgid.S.
11208         * sysdeps/mach/hurd/__getpgrp.c: Renamed to getpgid.c.
11209         * sysdeps/stub/setpgrp.c: Renamed to setpgid.c.
11210         * sysdeps/unix/sysv/sysv4/setpgrp.c: Renamed to setpgid.c.
11211         * sysdeps/unix/sysv/sco3.2.4/setpgrp.c: Renamed to setpgid.c.
11212         * sysdeps/unix/sysv/irix4/setpgrp.S: Renamed to setpgid.S.
11213         * sysdeps/unix/common/setpgrp.S: Renamed to setpgid.S.
11214         * sysdeps/mach/hurd/setpgrp.c: Renamed to setpgid.c.
11216         * sysdeps/unix/bsd/hp/m68k/getdents.S: Included file was renamed
11217         from __getdents.S.
11219         * sysdeps/posix/defs.c: Don't include gnu-stabs.h.
11220         * sysdeps/stub/sigpending.c: Use new libc-symbols.h macro for stub
11221         warning.
11222         * sysdeps/stub/fexecve.c: Likewise.
11223         * sysdeps/stub/fchdir.c: Likewise.
11224         * sysdeps/stub/fchflags.c: Likewise.
11225         * sysdeps/stub/chflags.c: Likewise.
11227         * sysdeps/m68k/__longjmp.c: Remove __NORETURN; it's obsolete.
11228         * sysdeps/generic/abort.c: Likewise.
11229         * sysdeps/ieee754/ldexp.c: Remove __CONSTVALUE; it's obsolete.
11231         * hurd/hurdioctl.c: Include hurd/ioctl.h.
11232         (_hurd_ioctl_handler_lists): Define this set.
11233         (_hurd_lookup_ioctl_handler): New function.
11234         * hurd/hurd/fd.h: ioctl handler stuff moved to hurd/ioctl.h.
11235         * hurd/hurd/ioctl.h: New file, broken out of hurd/fd.h.
11236         (_hurd_lookup_ioctl_handler): Declare it.
11237         (ioctl_handler_t): New typedef.  Use it throughout.
11238         * sysdeps/mach/hurd/ioctl.c: Include hurd/ioctl.h.
11239         (_hurd_ioctl_handler_lists): Don't define.
11240         (__ioctl): Call _hurd_lookup_ioctl_handler.
11242         * stdlib/strtol.c (maxquad): Make this const.
11243         [__GNUC__ == 2 && __GNUC_MINOR__ < 7]: Only use maxquad in this case.
11245         * posix/glob/configure.in: Put AC_AIX and AC_MINIX early, before
11246         any compile tests.
11248         * sysdeps/mach/hurd/setitimer.c (timer_thread): Call
11249         __msg_sig_post_request, not __sig_post_request.
11251         * misc/getusersh.c: Renamed to getusershell.c.
11252         * sysdeps/stub/sethostnam.c: Renamed to sethostname.c.
11253         * sysdeps/unix/inet/sethostnam.S: Renamed to sethostname.S.
11254         * sysdeps/unix/sysv/sysv4/sethostnam.c: Renamed to sethostname.c.
11255         * sysdeps/mach/hurd/sethostnam.c: Renamed to sethostname.c.
11257 Tue Jan 24 00:14:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11259         * sysdeps/stub/settod.c: Renamed to settimeofday.c.
11260         * sysdeps/unix/bsd/settod.S: Renamed to settimeofday.c.
11261         * sysdeps/unix/sysv/settod.c: Renamed to settimeofday.c.
11262         * sysdeps/mach/hurd/settod.c: Renamed to settimeofday.c.
11263         * sysdeps/stub/setitmr.c: Renamed to setitimer.c.
11264         * sysdeps/unix/common/setitmr.S: Renamed to setitimer.S.
11265         * sysdeps/mach/hurd/setitmr.c: Renamed to setitimer.c.
11266         * sysdeps/posix/fpathcon.c: Renamed to fpathconf.c.
11267         * sysdeps/stub/fpathcon.c: Renamed to fpathconf.c.
11268         * sysdeps/unix/sysv/irix4/fpathcon.c: Renamed to fpathconf.c.
11269         * sysdeps/stub/getprio.c: Renamed to getpriority.c.
11270         * sysdeps/unix/sysv/irix4/getprio.c: Renamed to getpriority.c.
11271         * sysdeps/unix/common/getprio.S: Renamed to getpriority.S.
11272         * sysdeps/mach/hurd/getprio.c: Renamed to getpriority.c.
11273         * sysdeps/stub/setprio.c: Renamed to setpriority.c.
11274         * sysdeps/unix/sysv/irix4/setprio.c: Renamed to setpriority.c.
11275         * sysdeps/unix/common/setprio.S: Renamed to setpriority.S.
11276         * sysdeps/mach/hurd/setprio.c: Renamed to setpriority.c.
11277         * sysdeps/stub/getpeernam.c: Renamed to getpeername.c.
11278         * sysdeps/unix/inet/getpeernam.S: Renamed to getpeername.S.
11279         * sysdeps/unix/sysv/linux/getpeernam.S: Renamed to getpeername.S.
11280         * sysdeps/mach/hurd/getpeernam.c: Renamed to getpeername.c.
11281         * sysdeps/stub/getsocknam.c: Renamed to getsockname.c.
11282         * sysdeps/unix/inet/getsocknam.S: Renamed to getsockname.S.
11283         * sysdeps/unix/sysv/linux/getsocknam.S: Renamed to getsockname.S.
11284         * sysdeps/mach/hurd/getsocknam.c: Renamed to getsockname.c.
11285         * sysdeps/stub/sigaltstk.c: Renamed to sigaltstack.c.
11286         * sysdeps/unix/bsd/bsd4.4/sigaltstk.S: Renamed to sigaltstack.S.
11287         * sysdeps/unix/sysv/sysv4/sigaltstk.S: Renamed to sigaltstack.S.
11288         * sysdeps/mach/hurd/sigaltstk.c: Renamed to sigaltstack.c.
11290         * sysdeps/mach/hurd/i386/sigreturn.c: Call __msg_sig_post instead
11291         of __sig_post.
11292         * sysdeps/mach/hurd/sigsuspend.c: Likewise.
11293         * sysdeps/mach/hurd/kill.c: Likewise.
11294         * sysdeps/mach/hurd/sigprocmask.c: Likewise.
11296         * misc/sys/cdefs.h (__NORETURN, __CONSTVALUE): Macros removed.
11297         [!__GNUC__ || __GNUC__<2] (__attribute__): Define to empty.
11299         * sysdeps/stub/remove.c: New file.
11300         * sysdeps/posix/remove.c: New file.
11302 Mon Jan 23 03:26:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11304         * time/mktime.c [weak_alias] (timelocal): Define as weak alias for
11305         mktime.
11306         * mach/mig_strncpy.c (mig_strncpy): Define as weak alias for
11307         __mig_strncpy.
11308         * mach/msg-destroy.c: Renamed from __msg_dest.c.
11309         (mach_msg_destroy): Define as weak alias for __mach_msg_destroy.
11310         * mach/setup-thread.c (mach_setup_thread): Define as weak alias.
11311         * time/tzset.c (tzname, daylight, timezone): Define as weak
11312         aliases for __ names.
11313         * hurd/hurdkill.c (hurd_sig_post): Define as weak alias.
11314         * hurd/hurdlookup.c: Add weak aliases for non-__ names.
11315         * Makefile (+init): Test $(gnu-ld)=yes, not for $(+gnu-stabs)
11316         being defined.
11318 Sun Jan 22 15:19:51 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11320         * string/Makefile (routines): Remove __ names, index, rindex, and
11321         bcmp.
11322         * sysdeps/alpha/strchr.c [weak_alias] (index): Define as weak
11323         alias for strchr.
11324         * sysdeps/generic/strchr.c: Likewise.
11325         * sysdeps/generic/strrchr.c [weak_alias] (rindex): Define as weak
11326         alias for strrchr.
11327         * sysdeps/generic/memcmp.c [weak_alias] (bcmp): Define as weak
11328         alias for memcmp.
11330         * malloc/free.c (cfree): Define this function, with weak_alias if
11331         available, otherwise a C function.
11332         * malloc/Makefile (gmalloc-routines): Remove cfree.
11334 Sat Jan 21 08:08:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11336         * stdio/fseek.c: Do move bufp by O when that puts it exactly at
11337         get_limit.  This has the effect of no-op'ing properly for zero.
11339         * configure.in: Add AC_CONFIG_HEADER(config.h).
11340         (--with-elf, --with-weak-symbols): Grok these and define HAVE_*.
11341         * config.h.in: New file.
11343         * setjmp/longjmp.c: Add weak aliases _longjmp, siglongjmp.
11344         All code converted to use weak symbols, defined in the files which
11345         define the real code (with the __ names, the non-__ names are weak).
11346         All old symbol alias files removed.
11347         Many files renamed to remove __ prefix since there is now just
11348         the one file for both the __ and non-__ name for each function.
11349         * libc-symbols.h: New file.
11350         * set-hooks.h: Use libc-symbols.h macros for accessing symbol
11351         sets.
11352         * gnu-stabs.h: Prepend #error this file is obsolete.
11353         * sysdeps/ieee754/ldexp.c: Add weak aliases scalb and __scalb.
11354         * sysdeps/stub/__access.c: Renamed to access.c; added weak alias
11355         access.
11356         * sysdeps/unix/common/__access.S: Likewise.
11357         * sysdeps/mach/hurd/__access.c: Likewise.
11358         * sysdeps/stub/__adjtime.c: Renamed to adjtime.c; added weak alias
11359         adjtime.
11360         * sysdeps/unix/common/__adjtime.S: Likewise.
11361         * sysdeps/mach/__adjtime.c: Likewise.
11362         * sysdeps/mach/hurd/__adjtime.c: Likewise.
11363         * sysdeps/stub/__brk.c: Renamed to brk.c; added weak alias brk.
11364         * sysdeps/unix/bsd/sun/m68k/__brk.S: Likewise.
11365         * sysdeps/unix/bsd/vax/__brk.S: Likewise.
11366         * sysdeps/unix/bsd/hp/m68k/__brk.S: Likewise.
11367         * sysdeps/unix/bsd/osf1/alpha/__brk.S: Likewise.
11368         * sysdeps/unix/i386/__brk.S: Likewise.
11369         * sysdeps/unix/sparc/__brk.S: Likewise.
11370         * sysdeps/unix/mips/__brk.S: Likewise.
11371         * sysdeps/mach/hurd/__brk.c: Likewise.
11372         * sysdeps/standalone/__brk.c: Likewise.
11373         * sysdeps/stub/__chdir.c: Renamed to chdir.c; added weak alias chdir.
11374         * sysdeps/unix/__chdir.S: Likewise.
11375         * sysdeps/mach/hurd/__chdir.c: Likewise.
11376         * sysdeps/stub/__chmod.c: Renamed to chmod.c; added weak alias chmod.
11377         * sysdeps/unix/__chmod.S: Likewise.
11378         * sysdeps/mach/hurd/__chmod.c: Likewise.
11379         * sysdeps/stub/__chown.c: Renamed to chown.c; added weak alias chown.
11380         * sysdeps/unix/__chown.S: Likewise.
11381         * sysdeps/mach/hurd/__chown.c: Likewise.
11382         * sysdeps/stub/__close.c: Renamed to close.c; added weak alias close.
11383         * sysdeps/unix/__close.S: Likewise.
11384         * sysdeps/mach/hurd/__close.c: Likewise.
11385         * sysdeps/standalone/__close.c: Likewise.
11386         * sysdeps/generic/__copysign.c: Renamed to copysign.c; added weak
11387         alias copysign.
11388         * sysdeps/ieee754/__copysign.c: Likewise.
11389         * sysdeps/alpha/__copysign.c: Likewise.
11390         * sysdeps/ieee754/__drem.c: Renamed to drem.c; added weak alias drem.
11391         * sysdeps/m68k/fpu/__drem.c: Likewise.
11392         * sysdeps/stub/__drem.c: Likewise.
11393         * sysdeps/posix/__dup.c: Renamed to dup.c; added weak alias dup.
11394         * sysdeps/stub/__dup.c: Likewise.
11395         * sysdeps/unix/__dup.S: Likewise.
11396         * sysdeps/posix/__dup2.c: Renamed to dup2.c; added weak alias dup2.
11397         * sysdeps/stub/__dup2.c: Likewise.
11398         * sysdeps/unix/sysv/sysv4/__dup2.c: Likewise.
11399         * sysdeps/unix/sysv/irix4/__dup2.c: Likewise.
11400         * sysdeps/unix/common/__dup2.S: Likewise.
11401         * sysdeps/mach/hurd/__dup2.c: Likewise.
11402         * sysdeps/stub/__execve.c: Renamed to execve.c; added weak alias
11403         execve.
11404         * sysdeps/unix/__execve.S: Likewise.
11405         * sysdeps/mach/hurd/__execve.c: Likewise.
11406         * sysdeps/generic/__expm1.c: Renamed to expm1.c; added weak alias
11407         expm1.
11408         * sysdeps/m68k/fpu/__expm1.c: Likewise.
11409         * sysdeps/stub/__fchmod.c: Renamed to fchmod.c; added weak alias
11410         fchmod.
11411         * sysdeps/unix/common/__fchmod.S: Likewise.
11412         * sysdeps/mach/hurd/__fchmod.c: Likewise.
11413         * sysdeps/stub/__fchown.c: Renamed to fchown.c; added weak alias
11414         fchown.
11415         * sysdeps/unix/common/__fchown.S: Likewise.
11416         * sysdeps/mach/hurd/__fchown.c: Likewise.
11417         * sysdeps/stub/__fcntl.c: Renamed to fcntl.c; added weak alias fcntl.
11418         * sysdeps/unix/__fcntl.S: Likewise.
11419         * sysdeps/mach/hurd/__fcntl.c: Likewise.
11420         * math/__finite.c: Renamed to finite.c; added weak alias finite.
11421         * sysdeps/posix/__flock.c: Renamed to flock.c; added weak alias flock.
11422         * sysdeps/stub/__flock.c: Likewise.
11423         * sysdeps/unix/bsd/__flock.S: Likewise.
11424         * sysdeps/mach/hurd/__flock.c: Likewise.
11425         * hurd/__fopenport.c: Renamed to fopenport.c; added weak alias
11426         fopenport.
11427         * sysdeps/stub/__fork.c: Renamed to fork.c; added weak alias fork.
11428         * sysdeps/unix/__fork.S: Likewise.
11429         * sysdeps/unix/bsd/osf1/alpha/__fork.S: Likewise.
11430         * sysdeps/unix/i386/__fork.S: Likewise.
11431         * sysdeps/unix/sparc/__fork.S: Likewise.
11432         * sysdeps/unix/mips/__fork.S: Likewise.
11433         * sysdeps/mach/hurd/__fork.c: Likewise.
11434         * sysdeps/posix/__fpathcon.c: Renamed to fpathcon.c; added weak
11435         alias fpathconf.
11436         * sysdeps/stub/__fpathcon.c: Likewise.
11437         * sysdeps/unix/sysv/irix4/__fpathcon.c: Likewise.
11438         * sysdeps/stub/__fstat.c: Renamed to fstat.c; added weak alias fstat.
11439         * sysdeps/unix/__fstat.S: Likewise.
11440         * sysdeps/unix/sysv/sysv4/i386/__fstat.S: Likewise.
11441         * sysdeps/mach/hurd/__fstat.c: Likewise.
11442         * stdio/__getdelim.c: Renamed to getdelim.c; added weak alias
11443         getdelim.
11444         * sysdeps/stub/__getdents.c: Renamed to getdents.c; added weak
11445         alias getdents.
11446         * sysdeps/unix/__getdents.c: Likewise.
11447         * sysdeps/unix/bsd/sun/__getdents.S: Likewise.
11448         * sysdeps/unix/bsd/hp/m68k/__getdents.S: Likewise.
11449         * sysdeps/unix/bsd/ultrix4/__getdents.S: Likewise.
11450         * sysdeps/unix/bsd/bsd4.4/__getdents.S: Likewise.
11451         * sysdeps/unix/bsd/osf1/alpha/__getdents.S: Likewise.
11452         * sysdeps/unix/sysv/__getdents.c: Likewise.
11453         * sysdeps/mach/hurd/__getdents.c: Likewise.
11454         * hurd/__getdport.c: Renamed to getdport.c; added weak alias getdport.
11455         * sysdeps/posix/__getdtsz.c: Renamed to getdtsz.c; added weak
11456         alias getdtablesize.
11457         * sysdeps/stub/__getdtsz.c: Likewise.
11458         * sysdeps/unix/bsd/__getdtsz.S: Likewise.
11459         * sysdeps/unix/sysv/sysv4/__getdtsz.c: Likewise.
11460         * sysdeps/mach/hurd/__getdtsz.c: Likewise.
11461         * sysdeps/stub/__getegid.c: Renamed to getegid.c; added weak alias
11462         getegid.
11463         * sysdeps/unix/__getegid.S: Likewise.
11464         * sysdeps/mach/hurd/__getegid.c: Likewise.
11465         * sysdeps/stub/__geteuid.c: Renamed to geteuid.c; added weak alias
11466         geteuid.
11467         * sysdeps/unix/__geteuid.S: Likewise.
11468         * sysdeps/mach/hurd/__geteuid.c: Likewise.
11469         * sysdeps/stub/__getgid.c: Renamed to getgid.c; added weak alias
11470         getgid.
11471         * sysdeps/unix/__getgid.S: Likewise.
11472         * sysdeps/mach/hurd/__getgid.c: Likewise.
11473         * sysdeps/stub/__getgrps.c: Renamed to getgroups.c; added weak
11474         alias getgroups.
11475         * sysdeps/unix/bsd/sequent/i386/__getgrps.S: Likewise.
11476         * sysdeps/unix/sysv/sco3.2.4/__getgrps.c: Likewise.
11477         * sysdeps/unix/sysv/irix4/__getgrps.c: Likewise.
11478         * sysdeps/unix/common/__getgrps.S: Likewise.
11479         * sysdeps/mach/hurd/__getgrps.c: Likewise.
11480         * sysdeps/stub/__gethstnm.c: Renamed to gethostname.c; added weak
11481         alias gethostname.
11482         * sysdeps/unix/inet/__gethstnm.S: Likewise.
11483         * sysdeps/unix/sysv/__gethstnm.c: Likewise.
11484         * sysdeps/unix/sysv/sysv4/__gethstnm.c: Likewise.
11485         * sysdeps/mach/hurd/__gethstnm.c: Likewise.
11486         * sysdeps/stub/__getitmr.c: Renamed to getitimer.c; added weak
11487         alias getitimer.
11488         * sysdeps/unix/common/__getitmr.S: Likewise.
11489         * sysdeps/mach/hurd/__getitmr.c: Likewise.
11490         * stdio/__getline.c: Renamed to getline.c; added weak alias getline.
11491         * sysdeps/posix/__getpgsz.c: Renamed to getpagesize.c; added weak
11492         alias getpagesize.
11493         * sysdeps/stub/__getpgsz.c: Likewise.
11494         * sysdeps/unix/__getpgsz.c: Likewise.
11495         * sysdeps/unix/bsd/__getpgsz.S: Likewise.
11496         * sysdeps/unix/sysv/sysv4/__getpgsz.c: Likewise.
11497         * sysdeps/mach/__getpgsz.c: Likewise.
11498         * sysdeps/stub/__getpid.c: Renamed to getpid.c; added weak alias
11499         getpid.
11500         * sysdeps/unix/__getpid.S: Likewise.
11501         * sysdeps/mach/hurd/__getpid.c: Likewise.
11502         * sysdeps/stub/__getppid.c: Renamed to getppid.c; added weak alias
11503         getppid.
11504         * sysdeps/unix/__getppid.S: Likewise.
11505         * sysdeps/mach/hurd/__getppid.c: Likewise.
11506         * sysdeps/posix/__gettod.c: Renamed to gettimeofday.c; added weak
11507         alias gettimeofday.
11508         * sysdeps/stub/__gettod.c: Likewise.
11509         * sysdeps/unix/sysv/irix4/__gettod.c: Likewise.
11510         * sysdeps/unix/common/__gettod.S: Likewise.
11511         * sysdeps/mach/__gettod.c: Likewise.
11512         * sysdeps/stub/__getuid.c: Renamed to getuid.c; added weak alias
11513         getuid.
11514         * sysdeps/unix/__getuid.S: Likewise.
11515         * sysdeps/mach/hurd/__getuid.c: Likewise.
11516         * sysdeps/generic/__infnan.c: Renamed to infnan.c; added weak
11517         alias infnan.
11518         * sysdeps/ieee754/__infnan.c: Likewise.
11519         * sysdeps/vax/__infnan.c: Likewise.
11520         * sysdeps/stub/__ioctl.c: Renamed to ioctl.c; added weak alias ioctl.
11521         * sysdeps/unix/__ioctl.S: Likewise.
11522         * sysdeps/mach/hurd/__ioctl.c: Likewise.
11523         * sysdeps/posix/__isatty.c: Renamed to isatty.c; added weak alias
11524         isatty.
11525         * sysdeps/stub/__isatty.c: Likewise.
11526         * sysdeps/unix/bsd/__isatty.c: Likewise.
11527         * sysdeps/mach/hurd/__isatty.c: Likewise.
11528         * sysdeps/ieee754/__isinf.c: Renamed to isinf.c; added weak alias
11529         isinf.
11530         * sysdeps/m68k/fpu/__isinf.c: Likewise.
11531         * sysdeps/stub/__isinf.c: Likewise.
11532         * sysdeps/generic/__isnan.c: Renamed to isnan.c; added weak alias
11533         isnan.
11534         * sysdeps/ieee754/__isnan.c: Likewise.
11535         * sysdeps/m68k/fpu/__isnan.c: Likewise.
11536         * sysdeps/stub/__kill.c: Renamed to kill.c; added weak alias kill.
11537         * sysdeps/unix/__kill.S: Likewise.
11538         * sysdeps/mach/hurd/__kill.c: Likewise.
11539         * sysdeps/stub/__link.c: Renamed to link.c; added weak alias link.
11540         * sysdeps/unix/__link.S: Likewise.
11541         * sysdeps/mach/hurd/__link.c: Likewise.
11542         * sysdeps/ieee754/__logb.c: Renamed to logb.c; added weak alias logb.
11543         * sysdeps/m68k/fpu/__logb.c: Likewise.
11544         * sysdeps/stub/__logb.c: Likewise.
11545         * sysdeps/stub/__lseek.c: Renamed to lseek.c; added weak alias lseek.
11546         * sysdeps/unix/__lseek.S: Likewise.
11547         * sysdeps/mach/hurd/__lseek.c: Likewise.
11548         * sysdeps/generic/__lstat.c: Renamed to lstat.c; added weak alias
11549         lstat.
11550         * sysdeps/stub/__lstat.c: Likewise.
11551         * sysdeps/unix/sysv/sysv4/i386/__lstat.S: Likewise.
11552         * sysdeps/unix/common/__lstat.S: Likewise.
11553         * sysdeps/mach/hurd/__lstat.c: Likewise.
11554         * sysdeps/generic/__memccpy.c: Renamed to memccpy.c; added weak
11555         alias memccpy.
11556         * sysdeps/vax/__memccpy.c: Likewise.
11557         * sysdeps/stub/__mkdir.c: Renamed to mkdir.c; added weak alias mkdir.
11558         * sysdeps/unix/sysv/__mkdir.c: Likewise.
11559         * sysdeps/unix/common/__mkdir.S: Likewise.
11560         * sysdeps/mach/hurd/__mkdir.c: Likewise.
11561         * sysdeps/stub/__mknod.c: Renamed to mknod.c; added weak alias mknod.
11562         * sysdeps/unix/__mknod.S: Likewise.
11563         * sysdeps/unix/sysv/sysv4/i386/__mknod.S: Likewise.
11564         * sysdeps/mach/hurd/__mknod.c: Likewise.
11565         * mach/__msg.c: Renamed to msg.c; added weak alias mach_msg.
11566         * mach/__msgserver.c: Renamed to msgserver.c; added weak alias
11567         mach_msg_server.
11568         * sysdeps/stub/__open.c: Renamed to open.c; added weak alias open.
11569         * sysdeps/unix/__open.S: Likewise.
11570         * sysdeps/mach/hurd/__open.c: Likewise.
11571         * sysdeps/standalone/__open.c: Likewise.
11572         * sysdeps/stub/__pathconf.c: Renamed to pathconf.c; added weak
11573         alias pathconf.
11574         * sysdeps/unix/sysv/sco3.2.4/__pathconf.S: Likewise.
11575         * sysdeps/unix/sysv/irix4/__pathconf.c: Likewise.
11576         * hurd/__pid2task.c: Renamed to pid2task.c; added weak alias pid2task.
11577         * sysdeps/stub/__pipe.c: Renamed to pipe.c; added weak alias pipe.
11578         * sysdeps/unix/bsd/vax/__pipe.S: Likewise.
11579         * sysdeps/unix/bsd/m68k/__pipe.S: Likewise.
11580         * sysdeps/unix/bsd/osf1/alpha/__pipe.S: Likewise.
11581         * sysdeps/unix/i386/__pipe.S: Likewise.
11582         * sysdeps/unix/sparc/__pipe.S: Likewise.
11583         * sysdeps/unix/mips/__pipe.S: Likewise.
11584         * sysdeps/mach/hurd/__pipe.c: Likewise.
11585         * stdlib/__random.c: Renamed to random.c; added weak alias random.
11586         * sysdeps/stub/__read.c: Renamed to read.c; added weak alias read.
11587         * sysdeps/unix/__read.S: Likewise.
11588         * sysdeps/mach/hurd/__read.c: Likewise.
11589         * sysdeps/standalone/__read.c: Likewise.
11590         * sysdeps/stub/__readlink.c: Renamed to readlink.c; added weak
11591         alias readlink.
11592         * sysdeps/unix/common/__readlink.S: Likewise.
11593         * sysdeps/mach/hurd/__readlink.c: Likewise.
11594         * sysdeps/generic/__rint.c: Renamed to rint.c; added weak alias rint.
11595         * sysdeps/m68k/fpu/__rint.c: Likewise.
11596         * sysdeps/stub/__rmdir.c: Renamed to rmdir.c; added weak alias rmdir.
11597         * sysdeps/unix/sysv/__rmdir.c: Likewise.
11598         * sysdeps/unix/common/__rmdir.S: Likewise.
11599         * sysdeps/mach/hurd/__rmdir.c: Likewise.
11600         * sysdeps/generic/__sbrk.c: Renamed to sbrk.c; added weak alias sbrk.
11601         * sysdeps/stub/__sbrk.c: Likewise.
11602         * sysdeps/mach/hurd/__sbrk.c: Likewise.
11603         * math/__scalb.c: Renamed to scalb.c; added weak alias scalb.
11604         * sysdeps/stub/__select.c: Renamed to select.c; added weak alias
11605         select.
11606         * sysdeps/unix/common/__select.S: Likewise.
11607         * sysdeps/mach/hurd/__select.c: Likewise.
11608         * hurd/__setauth.c: Renamed to setauth.c; added weak alias setauth.
11609         * sysdeps/stub/__setgid.c: Renamed to setgid.c; added weak alias
11610         setgid.
11611         * sysdeps/unix/__setgid.S: Likewise.
11612         * sysdeps/unix/bsd/__setgid.c: Likewise.
11613         * sysdeps/mach/hurd/__setgid.c: Likewise.
11614         * sysdeps/stub/__setitmr.c: Renamed to setitmr.c; added weak alias
11615         setitmr
11616         * sysdeps/unix/common/__setitmr.S: Likewise.
11617         * sysdeps/mach/hurd/__setitmr.c: Likewise.
11618         * sysdeps/stub/__setpgrp.c: Renamed to setpgrp.c; added weak alias
11619         setpgrp
11620         * sysdeps/unix/sysv/sysv4/__setpgrp.c: Likewise.
11621         * sysdeps/unix/sysv/sco3.2.4/__setpgrp.c: Likewise.
11622         * sysdeps/unix/sysv/irix4/__setpgrp.S: Likewise.
11623         * sysdeps/unix/common/__setpgrp.S: Likewise.
11624         * sysdeps/mach/hurd/__setpgrp.c: Likewise.
11625         * sysdeps/stub/__setregid.c: Renamed to setregid.c; added weak
11626         alias setregid.
11627         * sysdeps/unix/common/__setregid.S: Likewise.
11628         * sysdeps/mach/hurd/__setregid.c: Likewise.
11629         * sysdeps/stub/__setreuid.c: Renamed to setreuid.c; added weak
11630         alias setreuid.
11631         * sysdeps/unix/common/__setreuid.S: Likewise.
11632         * sysdeps/mach/hurd/__setreuid.c: Likewise.
11633         * sysdeps/stub/__setsid.c: Renamed to setsid.c; added weak alias
11634         setsid.
11635         * sysdeps/unix/bsd/__setsid.c: Likewise.
11636         * sysdeps/unix/bsd/sun/sunos4/__setsid.S: Likewise.
11637         * sysdeps/unix/bsd/ultrix4/__setsid.S: Likewise.
11638         * sysdeps/unix/bsd/bsd4.4/__setsid.S: Likewise.
11639         * sysdeps/unix/sysv/linux/__setsid.S: Likewise.
11640         * sysdeps/unix/sysv/sysv4/__setsid.c: Likewise.
11641         * sysdeps/unix/sysv/sco3.2.4/__setsid.c: Likewise.
11642         * sysdeps/mach/hurd/__setsid.c: Likewise.
11643         * sysdeps/stub/__settod.c: Renamed to settod.c; added weak alias
11644         settimeofday.
11645         * sysdeps/unix/bsd/__settod.S: Likewise.
11646         * sysdeps/unix/sysv/__settod.c: Likewise.
11647         * sysdeps/mach/hurd/__settod.c: Likewise.
11648         * sysdeps/stub/__setuid.c: Renamed to setuid.c; added weak alias
11649         setuid.
11650         * sysdeps/unix/__setuid.S: Likewise.
11651         * sysdeps/unix/bsd/__setuid.c: Likewise.
11652         * sysdeps/mach/hurd/__setuid.c: Likewise.
11653         * sysdeps/posix/__sigblock.c: Renamed to sigblock.c; added weak
11654         alias sigblock.
11655         * sysdeps/stub/__sigblock.c: Likewise.
11656         * sysdeps/unix/bsd/__sigblock.S: Likewise.
11657         * sysdeps/unix/bsd/bsd4.4/__sigblock.c: Likewise.
11658         * sysdeps/unix/bsd/osf1/alpha/__sigblock.S: Likewise.
11659         * sysdeps/posix/__sigpause.c: Renamed to sigpause.c; added weak
11660         alias sigpause.
11661         * sysdeps/stub/__sigpause.c: Likewise.
11662         * sysdeps/unix/bsd/__sigpause.S: Likewise.
11663         * sysdeps/unix/bsd/osf1/alpha/__sigpause.S: Likewise.
11664         * sysdeps/stub/__sigproc.c: Renamed to sigprocmask.c; added weak
11665         alias sigprocmask.
11666         * sysdeps/unix/bsd/__sigproc.c: Likewise.
11667         * sysdeps/unix/sysv/sysv4/__sigproc.S: Likewise.
11668         * sysdeps/unix/sysv/sco3.2.4/__sigproc.S: Likewise.
11669         * sysdeps/mach/hurd/__sigproc.c: Likewise.
11670         * sysdeps/stub/__sigret.c: Renamed to sigreturn.c; added weak
11671         alias sigreturn.
11672         * sysdeps/unix/bsd/sun/__sigret.S: Likewise.
11673         * sysdeps/unix/sysv/i386/__sigret.S: Likewise.
11674         * sysdeps/unix/sysv/irix4/__sigret.S: Likewise.
11675         * sysdeps/unix/i386/__sigret.S: Likewise.
11676         * sysdeps/unix/mips/__sigret.S: Likewise.
11677         * sysdeps/mach/hurd/i386/__sigret.c: Likewise.
11678         * sysdeps/mach/hurd/alpha/__sigret.c: Likewise.
11679         * sysdeps/mach/hurd/mips/__sigret.c: Likewise.
11680         * sysdeps/posix/__sigvec.c: Renamed to sigvec.c; added weak alias
11681         sigvec.
11682         * sysdeps/stub/__sigvec.c: Likewise.
11683         * sysdeps/unix/bsd/__sigvec.S: Likewise.
11684         * sysdeps/unix/bsd/sun/__sigvec.S: Likewise.
11685         * sysdeps/unix/bsd/sequent/i386/__sigvec.S: Likewise.
11686         * sysdeps/unix/bsd/ultrix4/mips/__sigvec.S: Likewise.
11687         * sysdeps/unix/bsd/bsd4.4/__sigvec.c: Likewise.
11688         * sysdeps/unix/bsd/osf1/alpha/__sigvec.S: Likewise.
11689         * sysdeps/stub/__stat.c: Renamed to stat.c; added weak alias stat.
11690         * sysdeps/unix/__stat.S: Likewise.
11691         * sysdeps/unix/sysv/sysv4/i386/__stat.S: Likewise.
11692         * sysdeps/mach/hurd/__stat.c: Likewise.
11693         * sysdeps/generic/__stpncpy.c: Renamed to stpncpy.c; added weak
11694         alias stpncpy.
11695         * sysdeps/stub/__symlink.c: Renamed to symlink.c; added weak alias
11696         symlink.
11697         * sysdeps/unix/common/__symlink.S: Likewise.
11698         * sysdeps/mach/hurd/__symlink.c: Likewise.
11699         * sysdeps/posix/__sysconf.c: Renamed to sysconf.c; added weak
11700         alias sysconf.
11701         * sysdeps/stub/__sysconf.c: Likewise.
11702         * sysdeps/unix/bsd/ultrix4/__sysconf.c: Likewise.
11703         * sysdeps/unix/sysv/sysv4/__sysconf.c: Likewise.
11704         * sysdeps/unix/sysv/sco3.2.4/__sysconf.S: Likewise.
11705         * sysdeps/unix/sysv/irix4/__sysconf.c: Likewise.
11706         * hurd/__task2pid.c: Renamed to task2pid.c; added weak alias task2pid.
11707         * sysdeps/stub/__times.c: Renamed to times.c; added weak alias times.
11708         * sysdeps/unix/bsd/__times.c: Likewise.
11709         * sysdeps/unix/sysv/__times.S: Likewise.
11710         * time/__tzset.c: Renamed to tzset.c; added weak alias tzset.
11711         * sysdeps/stub/__umask.c: Renamed to umask.c; added weak alias umask.
11712         * sysdeps/unix/__umask.S: Likewise.
11713         * sysdeps/mach/hurd/__umask.c: Likewise.
11714         * sysdeps/stub/__unlink.c: Renamed to unlink.c; added weak alias
11715         unlink.
11716         * sysdeps/unix/__unlink.S: Likewise.
11717         * sysdeps/mach/hurd/__unlink.c: Likewise.
11718         * sysdeps/stub/__utimes.c: Renamed to utimes.c; added weak alias
11719         utimes.
11720         * sysdeps/unix/bsd/__utimes.S: Likewise.
11721         * sysdeps/unix/sysv/sysv4/solaris2/__utimes.S: Likewise.
11722         * sysdeps/mach/hurd/__utimes.c: Likewise.
11723         * sysdeps/generic/__vfork.c: Renamed to vfork.c; added weak alias
11724         vfork.
11725         * sysdeps/unix/bsd/sun/m68k/__vfork.S: Likewise.
11726         * sysdeps/unix/bsd/vax/__vfork.S: Likewise.
11727         * sysdeps/unix/bsd/i386/__vfork.S: Likewise.
11728         * sysdeps/unix/bsd/hp/m68k/__vfork.S: Likewise.
11729         * sysdeps/unix/bsd/ultrix4/mips/__vfork.S: Likewise.
11730         * sysdeps/unix/sysv/sysv4/i386/__vfork.S: Likewise.
11731         * sysdeps/unix/sparc/__vfork.S: Likewise.
11732         * stdio/__vfscanf.c: Renamed to vfscanf.c; added weak alias vfscanf.
11733         * stdio/__vsscanf.c: Renamed to vsscanf.c; added weak alias vsscanf.
11734         * sysdeps/posix/__wait.c: Renamed to wait.c; added weak alias wait.
11735         * sysdeps/stub/__wait.c: Likewise.
11736         * sysdeps/unix/bsd/sony/newsos4/__wait.c: Likewise.
11737         * sysdeps/unix/bsd/sun/sunos4/__wait.c: Likewise.
11738         * sysdeps/unix/bsd/sun/sunos3/m68k/__wait.S: Likewise.
11739         * sysdeps/unix/bsd/vax/__wait.S: Likewise.
11740         * sysdeps/unix/bsd/m68k/__wait.S: Likewise.
11741         * sysdeps/unix/bsd/bsd4.4/__wait.c: Likewise.
11742         * sysdeps/unix/sysv/i386/linux/__wait.S: Likewise.
11743         * sysdeps/unix/sysv/irix4/__wait.S: Likewise.
11744         * sysdeps/unix/i386/__wait.S: Likewise.
11745         * sysdeps/unix/mips/__wait.S: Likewise.
11746         * sysdeps/posix/__wait3.c: Renamed to wait3.c; added weak alias wait3.
11747         * sysdeps/stub/__wait3.c: Likewise.
11748         * sysdeps/unix/bsd/sony/newsos4/__wait3.c: Likewise.
11749         * sysdeps/unix/bsd/sun/sunos4/__wait3.c: Likewise.
11750         * sysdeps/unix/bsd/vax/__wait3.S: Likewise.
11751         * sysdeps/unix/bsd/i386/__wait3.S: Likewise.
11752         * sysdeps/unix/bsd/hp/m68k/__wait3.S: Likewise.
11753         * sysdeps/unix/bsd/ultrix4/__wait3.S: Likewise.
11754         * sysdeps/unix/bsd/bsd4.4/__wait3.c: Likewise.
11755         * sysdeps/unix/sysv/irix4/__wait3.S: Likewise.
11756         * sysdeps/stub/__wait4.c: Renamed to wait4.c; added weak alias wait4.
11757         * sysdeps/unix/bsd/sony/newsos4/__wait4.c: Likewise.
11758         * sysdeps/unix/bsd/sun/sunos4/__wait4.c: Likewise.
11759         * sysdeps/unix/bsd/bsd4.4/__wait4.S: Likewise.
11760         * sysdeps/unix/bsd/osf1/alpha/__wait4.S: Likewise.
11761         * sysdeps/unix/sysv/linux/__wait4.S: Likewise.
11762         * sysdeps/mach/hurd/__wait4.c: Likewise.
11763         * sysdeps/stub/__waitpid.c: Renamed to waitpid.c; added weak alias
11764         waitpid.
11765         * sysdeps/unix/bsd/sun/sunos4/__waitpid.c: Likewise.
11766         * sysdeps/unix/bsd/ultrix4/__waitpid.S: Likewise.
11767         * sysdeps/unix/bsd/bsd4.4/__waitpid.c: Likewise.
11768         * sysdeps/unix/bsd/osf1/alpha/__waitpid.c: Likewise.
11769         * sysdeps/unix/sysv/linux/__waitpid.S: Likewise.
11770         * sysdeps/unix/sysv/sysv4/__waitpid.c: Likewise.
11771         * sysdeps/unix/sysv/sco3.2.4/__waitpid.S: Likewise.
11772         * sysdeps/unix/sysv/irix4/__waitpid.c: Likewise.
11773         * sysdeps/stub/__write.c: Renamed to write.c; added weak alias write.
11774         * sysdeps/unix/__write.S: Likewise.
11775         * sysdeps/mach/hurd/__write.c: Likewise.
11776         * sysdeps/standalone/__write.c: Likewise.
11777         * sysdeps/stub/__tcgetatr.c: Renamed to tcgetattr.c; added weak
11778         alias tcgetattr.
11779         * sysdeps/unix/bsd/__tcgetatr.c: Likewise.
11780         * sysdeps/unix/bsd/sun/sunos4/__tcgetatr.c: Likewise.
11781         * sysdeps/unix/bsd/bsd4.4/__tcgetatr.c: Likewise.
11782         * sysdeps/unix/sysv/__tcgetatr.c: Likewise.
11783         * sysdeps/stub/__sigact.c: Renamed to sigaction.c; added weak
11784         alias sigaction.
11785         * sysdeps/unix/bsd/__sigact.c: Likewise.
11786         * sysdeps/unix/sysv/__sigact.c: Likewise.
11787         * sysdeps/unix/sysv/sysv4/__sigact.c: Likewise.
11788         * sysdeps/unix/sysv/sco3.2.4/__sigact.S: Likewise.
11789         * sysdeps/mach/hurd/__sigact.c: Likewise.
11790         * sysdeps/posix/__sigstmsk.c: Renamed to sigsetmask.c; added weak
11791         alias sigsetmask.
11792         * sysdeps/stub/__sigstmsk.c: Likewise.
11793         * sysdeps/unix/bsd/__sigstmsk.S: Likewise.
11794         * sysdeps/unix/bsd/bsd4.4/__sigstmsk.c: Likewise.
11795         * sysdeps/unix/bsd/osf1/alpha/__sigstmsk.S: Likewise.
11796         * sysdeps/stub/__getrusag.c: Renamed to getrusage.c; added weak
11797         alias getrusage.
11798         * sysdeps/unix/sysv/irix4/__getrusag.c: Likewise.
11799         * sysdeps/unix/common/__getrusag.S: Likewise.
11800         * hurd/task2pid.c: File removed.
11801         * hurd/setauth.c: File removed.
11802         * hurd/pid2task.c: File removed.
11803         * hurd/hurdsyms.c: File removed.
11804         * hurd/getdport.c: File removed.
11805         * hurd/fopenport.c: File removed.
11806         * mach/thread-sym.c: File removed.
11807         * mach/spin-syms.c: File removed.
11808         * mach/msgserver_t.c: File removed.
11809         * mach/msgserver.c: File removed.
11810         * mach/msg.c: File removed.
11811         * mach/mig_syms.c: File removed.
11812         * malloc/mcheck-init.c: File removed.
11813         * malloc/cfree.c: File removed.
11814         * io/flock.c: File removed.
11815         * io/write.c: File removed.
11816         * io/unlink.c: File removed.
11817         * io/umask.c: File removed.
11818         * io/symlink.c: File removed.
11819         * io/rmdir.c: File removed.
11820         * io/readlink.c: File removed.
11821         * io/read.c: File removed.
11822         * io/pipe.c: File removed.
11823         * io/open.c: File removed.
11824         * io/mkdir.c: File removed.
11825         * io/lstat.c: File removed.
11826         * io/lseek.c: File removed.
11827         * io/link.c: File removed.
11828         * io/isatty.c: File removed.
11829         * io/stat.c: File removed.
11830         * io/fstat.c: File removed.
11831         * io/fchown.c: File removed.
11832         * io/fchmod.c: File removed.
11833         * io/dup2.c: File removed.
11834         * io/dup.c: File removed.
11835         * io/close.c: File removed.
11836         * io/fcntl.c: File removed.
11837         * io/chmod.c: File removed.
11838         * io/chdir.c: File removed.
11839         * io/access.c: File removed.
11840         * io/chown.c: File removed.
11841         * time/tzset.c: File removed.
11842         * time/timelocal.c: File removed.
11843         * time/syms-time.c: File removed.
11844         * time/settod.c: File removed.
11845         * time/setitmr.c: File removed.
11846         * time/gettod.c: File removed.
11847         * time/getitmr.c: File removed.
11848         * time/adjtime.c: File removed.
11849         * termios/tcgetattr.c: File removed.
11850         * string/stpncpy.c: File removed.
11851         * string/rindex.c: File removed.
11852         * string/memccpy.c: File removed.
11853         * string/index.c: File removed.
11854         * string/bcmp.c: File removed.
11855         * stdlib/srand.c: File removed.
11856         * stdlib/random.c: File removed.
11857         * stdio/vsscanf.c: File removed.
11858         * stdio/vfscanf.c: File removed.
11859         * stdio/syms-stdio.c: File removed.
11860         * stdio/remove.c: File removed.
11861         * stdio/getline.c: File removed.
11862         * stdio/getdelim.c: File removed.
11863         * signal/ssignal.c: File removed.
11864         * signal/sigvec.c: File removed.
11865         * signal/sigsetmask.c: File removed.
11866         * signal/sigret.c: File removed.
11867         * signal/sigproc.c: File removed.
11868         * signal/sigpause.c: File removed.
11869         * signal/sigblock.c: File removed.
11870         * signal/sigaction.c: File removed.
11871         * signal/kill.c: File removed.
11872         * signal/gsignal.c: File removed.
11873         * setjmp/siglongjmp.c: File removed.
11874         * setjmp/_longjmp.c: File removed.
11875         * resource/getrusage.c: File removed.
11876         * posix/waitpid.c: File removed.
11877         * posix/wait4.c: File removed.
11878         * posix/wait3.c: File removed.
11879         * posix/wait.c: File removed.
11880         * posix/times.c: File removed.
11881         * posix/sysconf.c: File removed.
11882         * posix/setuid.c: File removed.
11883         * posix/setsid.c: File removed.
11884         * posix/setpgrp.c: File removed.
11885         * posix/setpgid.c: File removed.
11886         * posix/setgid.c: File removed.
11887         * posix/pathconf.c: File removed.
11888         * posix/getuid.c: File removed.
11889         * posix/getppid.c: File removed.
11890         * posix/getpid.c: File removed.
11891         * posix/getgrps.c: File removed.
11892         * posix/getgid.c: File removed.
11893         * posix/geteuid.c: File removed.
11894         * posix/getegid.c: File removed.
11895         * posix/fpathcon.c: File removed.
11896         * posix/fork.c: File removed.
11897         * posix/execve.c: File removed.
11898         * posix/environ.c: File removed.
11899         * misc/utimes.c: File removed.
11900         * misc/setreuid.c: File removed.
11901         * misc/setregid.c: File removed.
11902         * misc/select.c: File removed.
11903         * misc/sbrk.c: File removed.
11904         * misc/mknod.c: File removed.
11905         * misc/ioctl.c: File removed.
11906         * misc/getpgsz.c: File removed.
11907         * misc/gethstnm.c: File removed.
11908         * misc/getdtsz.c: File removed.
11909         * misc/data_start.c: File removed.
11910         * misc/brk.c: File removed.
11911         * math/scalb.c: File removed.
11912         * math/rint.c: File removed.
11913         * math/logb.c: File removed.
11914         * math/isnan.c: File removed.
11915         * math/isinf.c: File removed.
11916         * math/infnan.c: File removed.
11917         * math/finite.c: File removed.
11918         * math/expm1.c: File removed.
11919         * math/drem.c: File removed.
11920         * math/copysign.c: File removed.
11921         * math/__scalb.c: File removed.
11922         * dirent/getdents.c: File removed.
11924 Fri Jan 20 16:11:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11926         * sysdeps/generic/morecore.c (__default_morecore): Use
11927         __malloc_ptrdiff_t; don't cast arg to int.
11929         * resolv/getnetnamadr.c: Include "conf/portability.h".
11931 Thu Jan 19 02:20:04 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11933         * stdlib/strtol.c: Include errno.h.
11934         [QUAD] (ULONG_MAX): Define to a static variable initialized to
11935         ULONG_LONG_MAX. This is to work around a GCC bug in using the
11936         constant in arithmetic.
11938         * posix/unistd.h (daemon): Declare it.
11940         * malloc/mcheck-init.c: Remove GNU ld hacks.
11941         (__malloc_initialize_hook): Initialize this hook to turn_on_mcheck.
11942         * malloc/malloc.c (__malloc_initialize_hook): New hook variable.
11943         (initialize): Call the hook if set.
11944         * malloc/malloc.h: Use __malloc_{size,ptrdiff}_t in prototypes.
11945         (__malloc_initialize_hook): Declare new hook variable.
11947 Wed Jan 18 01:43:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11949         * hurd/hurdsig.c: Prepend `msg_' to server RPC names.
11950         * hurd/hurdpid.c: Likewise.
11951         * hurd/hurdauth.c: Likewise.
11953 Tue Jan 17 03:16:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
11955         * sysdeps/mach/hurd/__select.c: If some replies are EINTR, succeed
11956         if any are successful.
11958         * hurd/hurdmsg.c: Prepend `msg_' to all RPC names.
11959         (_S_msg_get_exec_flags, _S_msg_set_exec_flags,
11960         _S_msg_set_some_exec_flags, _S_msg_clear_some_exec_flags): New
11961         functions.
11962         (_S_io_select_done, _S_dir_changed, _S_file_changed): Stubs removed.
11964         * hurd/hurdkill.c: __sig_post renamed to __msg_sig_post.
11965         * hurd/hurd-raise.c: Likewise.
11966         * hurd/hurdsig.c (post_reply): Prepend `msg_' to RPC names.
11968         * sysdeps/mach/hurd/ptrace.c: New file.
11970         * sysdeps/mach/hurd/__select.c: Revamped to use new io_select
11971         interface, which has normal EINTR semantics.  Instead of waiting
11972         for io_select_done notification messages, send io_select messages
11973         with short reply timeout and then wait for io_select_reply
11974         messages.
11976         * hurd/hurdexec.c (_hurd_exec): Pass (_hurd_exec_flags &
11977         EXEC_INHERITED) to file_exec.
11979         * hurd/hurdsig.c (post_reply): Take new arg UNTRACED; if nonzero,
11980         use sig_post_untraced_reply.  All callers changed.
11981         (abort_thread, abort_rpcs): Take same new arg and pass it through.
11982         All callers changed.
11983         (_hurd_internal_post_signal): Take new arg UNTRACED.
11984         If zero and process is traced, stop with SIGNO as stop signal.  If
11985         nonzero, resume process before delivering signal (unless
11986         ACT==stop).  Expand local fn sigwakeup into block at end taken iff
11987         SIGNO!=0.
11988         (signal_allowed): New function, broken out of _S_sig_post.
11989         (_S_sig_post): Call it.  Pass UNTRACED arg of false to
11990         _hurd_internal_post_signal.
11991         (_S_sig_post_untraced): New function.  Just like _S_sig_post, but
11992         pass true for UNTRACED.
11993         * hurd/hurd/signal.h (_hurd_internal_post_signal): Take new arg
11994         UNTRACED.
11995         * hurd/catch-exc.c (_S_catch_exception_raise): Pass UNTRACED arg
11996         to _hurd_internal_post_signal (value zero).
11998 Mon Jan 16 16:40:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12000         * hurd/hurdinit.c (_hurd_exec_flags): New variable.
12001         (_hurd_init): Initialize it from FLAGS arg.
12002         (_hurd_proc_init): If EXEC_TRACED is set in _hurd_exec_flags,
12003         raise a SIGTRAP signal (with a sigcode of zero).
12004         * hurd/hurd.h (_hurd_exec_flags): Declare it.
12006         * Version 1.09.5.
12008 Mon Jan 16 16:16:55 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
12010         * malloc/malloc.c (malloc): Fix 1-off in previous change.
12012 Mon Jan 16 15:49:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12014         * posix/glob/Makefile.in: Remove config.h and config.log.
12016 Sun Jan 15 06:56:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12018         * posix/glob/configure.in: Add AC_CONST check.
12020         * conf/portability.h: #undef sun.
12021         * resolv/res_query.c: Updated from BIND-4.9.3-BETA17.
12022         * resolv/getnetnamadr.c: Likewise.
12024         * socket/Makefile (headers): Add sockaddrcom.h.
12025         * inet/netinet/in.h: Include <sockaddrcom.h>.
12026         (struct sockaddr_in): Use the __SOCKADDR_COMMON macro.
12027         * socket/sys/un.h (struct sockaddr_in): Likewise.
12028         * socket/sys/socket.h (struct sockaddr): Likewise.
12029         * sysdeps/unix/bsd/bsd4.4/sockaddrcom.h: New file.
12030         * sysdeps/generic/sockaddrcom.h: New file.
12032         * sysdeps/unix/sysv/sysv4/ftruncate.c: New file.
12033         * sysdeps/unix/common/fcntlbits.h [__USE_SVID] (F_ALLOCSP,
12034         F_FREESP): New macros.
12035         * sysdeps/posix/truncate.c: New file.
12037         * malloc/malloc.c (malloc): Fix typos in RMS's change.
12039         * malloc/Makefile (dist-routines): Add malloc-find.
12040         * malloc/malloc.h (malloc_find_object_address): Declare it.
12041         * malloc/malloc-find.c: New file.
12043         * malloc/malloc.h (__malloc_ptrdiff_t): New macro, defined a la
12044         __malloc_size_t.
12045         (malloc_info): Use that type for member `busy.info.size'.
12047         * stdlib/strtol.c: Change uses of `long' keyword throughout to use
12048         `LONG' macro.
12049         [! QUAD] (LONG): Define as long.
12050         [QUAD] (LONG): Define as long long.
12051         [QUAD] (LONG_MIN, LONG_MAX, ULONG_MAX): Redefine to long long
12052         versions.
12053         [QUAD] (strtoul, strtol): Define to strtouq, strtoq.
12054         * stdlib/Makefile (routines): Add strtoq and strtouq.
12055         * stdlib/strtoq.c, stdlib/strtouq.c: New files.
12056         * stdlib/stdlib.h [__GNUC__ && __USE_BSD] (strtoq, strtouq):
12057         Declare them.
12059         * stdio/vfprintf.c: If there was a precision specified, ignore the
12060         0 flag and always pad with spaces.
12062         * stdio/vfprintf.c: Don't use strchr to skip text until next %.
12063         Use a loop and also stop on first !isascii char.
12065 Wed Jan 11 00:07:10 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
12067         * malloc/malloc.h (malloc_info): Change usage of .busy.info.size.
12069         * malloc/malloc.c (malloc): For a multi-block object, store a
12070         negative number into the busy.info.size of all but the first block.
12072 Tue Jan 10 13:45:20 1995  Brendan Kehoe  <brendan@zen.org>
12074         * sysdeps/unix/bsd/ultrix4/mips/start.S: Use s0, s1, and s2
12075         instead of t0, t1, and t2.
12077 Tue Jan 10 05:53:50 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12079         * malloc/memalign.c (__memalign_hook): New variable.
12080         (memalign): Call it if set.
12081         * malloc/malloc.h (__memalign_hook): Declare new variable.
12083 Wed Dec 28 03:27:21 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12085         * conf/portability.h: Include string.h and stdlib.h.
12086         * inet/netdb.h (NETDB_INTERNAL, NETDB_SUCCESS): New macros.
12087         * resolv/resolv.h, resolv/arpa/nameser.h, resolv/gethnamaddr.c,
12088         resolv/getnetbyname.c, resolv/getnetent.c, resolv/herror.c,
12089         resolv/res_mkquery.c, resolv/res_send.c, resolv/res_comp.c,
12090         resolv/res_debug.c, resolv/res_init.c: Updated from BIND 4.9.3-BETA14.
12092         * sysdeps/m68k/fpu/__math.h (__m81_inline): New macro.  Replace
12093         all uses of `extern __inline' with `__m81_inline'.
12095         * sysdeps/unix/bsd/hp/m68k/__vfork.S: Use subl, not decl.
12096         * sysdeps/unix/__fork.S: Swap args in subl.
12098         * posix/sys/types.h [__USE_MISC] (ushort, uint): New typedefs, for
12099         compatibility.
12101 Tue Dec 20 13:33:20 1994  Michael I Bushnell  <mib@geech.gnu.ai.mit.edu>
12103         * sysdeps/mach/hurd/__setpgrp.c (__setpgrp): Use __swtch_pri instead
12104         of swtch.
12105         * sysdeps/mach/hurd/__setsid.c (__setsid): Likewise.
12106         * mach/spin-solid.c (__spin_lock_solid): Likewise.
12108 Thu Dec 15 12:01:07 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12110         * inet/rcmd.c (iruserok): Use alloca instead of fixed-size buffer
12111         for PBUF.
12112         (__ivaliduser): Use getline instead of fgets with fixed-size buffer.
12114         * sysdeps/mach/hurd/Makefile (subdirs): Don't elide inet.
12116 Wed Dec 14 18:20:56 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12118         * sysdeps/alpha/bsd-setjmp.S: Reverse register and immediate args
12119         in `bis' insn; immediate must be second.
12121         * sysdeps/unix/__fork.S: Use subl instead of decl.
12122         * sysdeps/unix/i386/__fork.S: New file.
12124         * sysdeps/mach/hurd/alpha/trampoline.c (_hurd_setup_sighandler):
12125         Remove A macro; just use `asm volatile' with proper quotes in each
12126         line.
12127         * sysdeps/mach/alpha/sysdep.h (CALL_WITH_SP): Put parens around
12128         jmp target register.
12130         * time/africa, time/asia, time/australasia, time/emkdir.c,
12131         time/europe, time/ialloc.c, time/northamerica, time/private.h,
12132         time/scheck.c, time/yearistype, time/zdump.c, time/zic.c: New code
12133         and data from ADO 94h distribution.
12135         * sysdeps/sparc/setjmp.S: Use sethi and or to put address of
12136         __sigjmp_save in %g1 and jmp there.  jmp cannot contain a complete
12137         absolute pointer.  Put second store in jmp delay slot.
12139 Tue Dec 13 15:47:52 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
12141         * sysdeps/sparc/bsd-_setjmp.S: Use sethi and or to put address of
12142         __sigsetjmp in %g1 and jmp there.  jmp cannot contain a complete
12143         absolute pointer.
12144         * sysdeps/sparc/bsd-setjmp.S: Likewise.
12146         * configure.in: Use ; before } in { ... } exprs.
12150 See ChangeLog.4 for earlier changes.