* elf/Makefile ($(objpfx)$(rtld-installed-name)): New target to make
[glibc.git] / ChangeLog
blobbfa537b79e86d7853f928c73d07e7b0d6e038d2d
1 Tue Jun 11 15:09:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3         * elf/Makefile ($(objpfx)$(rtld-installed-name)): New target to make
4         link to ld.so if that is not the installed name.
5         (lib-noranlib): Depend on the installed name in the build directory
6         instead of on ld.so.
8         * Makeconfig (link-libc): Include $(elfobjdir)/$(rtld-installed-name)
9         between libc.so and libc.a, because with libc.so's DT_NEEDED for ld.so
10         ld searches libc.a before ld.so (is that an ld bug?).
11         Add $(elfobjdir) to -rpath-link.
13         * Makerules (elfobjdir): Define as . when $(subdir) is elf.
15         * sysdeps/i386/dl-machine.h (elf_machine_rel): In R_386_32 case when
16         relocating _dl_rtld_map, subtract SYM's value from final reloc value,
17         but don't change *RELOC_ADDR before calling *RESOLVE, because it might
18         call the function we are relocating!
20         * string/basename.c: New file.
21         * string/Makefile (routines): Add basename.
23 Mon Jun 10 06:14:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
25         * Makerules ($(common-objpfx)libc.so): Depend on $(elfobjdir)/ld.so.
27         * elf/dl-close.c: New file.
28         * elf/link.h: Declare _dl_close.
29         * elf/Makefile (routines): Add dl-close.
30         * elf/dlclose.c (dlclose): Use _dl_close.
32         * elf/Makefile ($(objpfx)librtld.so): Remove libelf from deps.
34         * elf/dl-runtime.c (_dl_global_scope): New variable.
35         (_dl_object_relocation_scope): New function.
36         (fixup): Use it.
37         * elf/rtld.c (dl_main): Use it.
38         * elf/dl-open.c (_dl_open): Use it.  If (MODE & RTLD_GLOBAL), set the
39         l_global bit and append the new map to _dl_global_scope.
40         * elf/link.h: Declare _dl_global_scope, _dl_global_scope_alloc,
41         and _dl_object_relocation_scope.
43         * elf/link.h (struct link_map): Add l_loader member.
44         Remove _dl_map_object_from_fd decl.
45         * elf/dl-load.c (_dl_map_object): Pass LOADER to ...
46         (_dl_map_object_from_fd): Take new arg LOADER and set l_loader member.
47         (_dl_map_object): Try DT_RPATH from all loaders up the chain.
49         * elf/dl-object.c (_dl_loaded): Variable removed.
50         (_dl_default_scope): New variable replaces it.
51         * elf/link.h (_dl_loaded): Remove variable decl; instead define as
52         macro for _dl_default_scope[2].
53         (_dl_default_scope): Declare it.
54         * sysdeps/i386/dl-machine.h (RTLD_START): Use _dl_default_scope[2]
55         instead of _dl_loaded.
56         * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
57         * elf/rtld.c (dl_main): Use _dl_default_scope for symbol lookups.
59         * elf/dl-reloc.c (_dl_relocate_object): Remove check for _dl_rtld_map.
60         * elf/rtld.c (dl_main): Pass 0 for LAZY flag when re-relocating self.
62         * elf/link.h (struct link_map.l_type): Remove lt_interpreter.
63         (struct link_map): Add new flag member l_global.
65         * elf/dl-reloc.c (_dl_relocate_object): Check for _dl_rtld_map
66         directly instead of looking for lt_interpreter.
67         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
68         * elf/rtld.c (_dl_start): Don't bother setting BOOTSTRAP_MAP.l_type.
69         (dl_main): Set _dl_rtld_map.l_type to lt_library.
71         * elf/dl-deps.c (_dl_map_object_deps): Propagate MAP->l_type to
72         dependencies loaded, downgrading lt_executable -> lt_library.
74         * elf/dl-load.c (_dl_map_object_from_fd): Take new arg TYPE and set
75         l_type from that, translating lt_library->lt_executable based on the
76         file's ELF type.
77         (_dl_map_object): Likewise.
78         * elf/link.h: Update prototypes.
79         * elf/dl-open.c: Pass type lt_loaded.
80         * elf/rtld.c: Pass type lt_library.
82         * elf/dl-load.c (_dl_map_object_from_fd): Handle null return from
83         _dl_new_object.
84         (_dl_map_object_from_fd: lose): Unchain and free L if it's not null.
85         Free REALNAME, and just use NAME in error message.
86         * elf/dl-object.c (_dl_new_object): If malloc fails, return null
87         instead of calling _dl_signal_error.
89         * elf/dl-load.c (_dl_map_object_from_fd): Close FD before signalling
90         error for _dl_zerofd setup failure.
92         * elf/dl-object.c (_dl_startup_loaded): Variable removed.
93         * elf/link.h: Remove its decl.
95         * elf/dl-reloc.c (_dl_relocate_object): Take new SCOPE arg and pass it
96         through to _dl_lookup_symbol.
97         * elf/link.h (_dl_relocate_object): Update comment and prototype.
98         * elf/rtld.c (dl_main): Pass scope vector to _dl_relocate_object.
100         * elf/dl-lookup.c (_dl_lookup_symbol): Arg SYMBOL_SCOPE is now a
101         null-terminated vector of pointers, no longer a vector of exactly two.
102         * elf/link.h (_dl_lookup_symbol): Update comment and prototype.
104         * elf/dl-runtime.c (fixup): Set up scope for symbol lookup properly as
105         done in _dl_relocate_object.
107         * elf/dlopen.c: Pass "" to _dl_open when FILE is null.
109         * elf/link.h: Include elfclass.h to define __ELF_NATIVE_CLASS.
110         (ElfW, ELFW): Use it.
111         * elf/Makefile (headers): Add elfclass.h.
112         * sysdeps/wordsize-32/elfclass.h: New file.
113         * sysdeps/wordsize-64/elfclass.h: New file.
114         * sysdeps/alpha/Implies: Add wordsize-64.
115         * sysdeps/i386/Implies: Add wordsize-32.
116         * sysdeps/m68k/Implies: Add wordsize-32.
117         * sysdeps/mips/Implies: Add wordsize-32.
118         * sysdeps/sparc/Implies: Add wordsize-32.
120         * sysdeps/mach/hurd/dl-sysdep.c (__open): Define this instead of open.
121         (__close, __mmap): Likewise define with __ names now.
123 Mon Jun 10 05:13:18 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
125         * elf/dl-support.c: New file.
126         * elf/Makefile (CFLAGS-dl-support.c): New variable.
127         (routines, elide-routines.so): Add dl-support.
129         * elf/dl-minimal.c (_dl_pagesize): Remove common defn.
130         * elf/dl-load.c (_dl_pagesize): Define it here.
131         (_dl_map_object_from_fd): Initialize it if zero.
132         * elf/link.h (_dl_pagesize): Remove const.
134 Sun Jun  9 04:04:26 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
136         * elf/Makefile (routines): Add dl-symbol.
137         * elf/dl-lookup.c (_dl_symbol_value): Moved to ...
138         * elf/dl-symbol.c: New file.
140         * elf/elf.h (Elf32_Xword, Elf32_Sxword): New types.
141         (Elf32_Section, Elf64_Section): New types, 16 bits.
142         (Elf32_Sym, Elf64_Sym): Use it.
144         * elf/dl-deps.c (_dl_open): Moved to ...
145         * elf/dl-open.c: New file.
146         * Makefile (routines): Add dl-open.
148         * elf/Makefile (dl-routines): New variable.
149         (routines): Add $(dl-routines).
150         (elide-routines.so): New variable, set to $(dl-routines).
151         (libdl-inhibit-o): Variable removed; build all flavors of -ldl.
152         (rtld-routines): All but rtld, dl-sysdep, and dl-minimal moved to
153         $(dl-routines).
155         * elf/dl-lookup.c (_dl_lookup_symbol): Remove magic symbol grokage.
157         * elf/dladdr.c: Use ELFW(ST_BIND) in place of ELF32_ST_BIND.
159         * elf/dl-load.c (open_path): Use __ names for open and close.  Avoid
160         using strdup.
161         (_dl_map_object): Likewise.
162         (_dl_map_object_from_fd): Use __ names for mmap, munmap, and mprotect.
163         * elf/dl-minimal.c (malloc): Likewise.
164         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
166         * elf/dl-minimal.c (_dl_pagesize): New variable.
167         (malloc): Use that instead of a static variable.
168         * elf/dl-reloc.c (_dl_relocate_object): Use _dl_pagesize instead of
169         calling getpagesize.
170         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
171         * elf/link.h: Declare _dl_pagesize.
173         * elf/rtld.c (dl_r_debug): Renamed to _dl_r_debug.
175         * elf/link.h (struct link_map): Use Half for l_phnum instead of Word.
176         * elf/rtld.c (dl_main): Use Half for phdr count arg.
177         (_dl_sysdep_start): Update prototype of DL_MAIN function ptr arg.
179         * elf/dl-load.c (_dl_map_object_from_fd): Use explicit Elf32_Word to
180         extract 4-byte magic number, not ElfW(Word).  Match EI_CLASS against
181         native wordsize, either 32 or 64.
183         * elf/elf.h (Elf64_Byte, Elf64_Section): Typedefs removed.  In C a
184         char is always a byte, no need for a typedef.  Section indices are
185         16-bit quantities in elf64, which already have a typedef Elf64_Half.
187         Remove partial -lelf implementation.  There is now a
188         separately-distributed `libelf' package that implements it.
189         * elf/dl-lookup.c: Don't #include <libelf.h> any more.
190         (_dl_elf_hash): New function, moved from
191         libelf.h:elf_hash.
192         (_dl_lookup_symbol): Use it instead of elf_hash.
193         * elf/libelf.h: File removed.
194         * elf/elf_hash.c: File removed.
195         * elf/Makefile (headers): Remove libelf.h.
196         (extra-libs): Remove libelf.
197         (libelf-routines): Variable removed.
199         * elf/Makefile (libdl.so): Remove commands from this target.  The
200         implicit rule commands are correct, this explicit rule just serves to
201         add some dependencies.
203         * elf/dl-lookup.c (_dl_lookup_symbol): Use ELFW(ST_TYPE) in place of
204         ELF32_ST_TYPE.  Likewise ST_BIND.
205         * elf/do-rel.h (elf_dynamic_do_rel): Likewise R_SYM.
207         * elf/link.h (ElfW): New macro for wordsize-independent ElfXX_* type
208         naming.
209         (ELFW): New macro, likewise for ELFXX_* macro naming.
210         (_ElfW, _ElfW_1): New macros, subroutines of ElfW and ELF.
212 Sat Jun  8 20:52:38 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
214         * elf/link.h, elf/do-rel.h, elf/dynamic-link.h, elf/dl-deps.c,
215         elf/dl-init.c, elf/dl-load.c, elf/dl-lookup.c, elf/dl-reloc.c,
216         elf/dl-runtime.c, elf/dladdr.c, elf/dlclose.c, elf/dlsym.c,
217         elf/linux-compat.c, elf/rtld.c: Change all uses of `Elf32_XXX' to
218         `ElfW(XXX)' for wordsize-independence.
220 Sat Jun  8 20:50:42 1996  Richard Henderson  <rth@tamu.edu>
222         * elf/elf.h: Move Elf64_* types in parity with Elf32 counterparts.
223         (Elf64_auxv_t): New type.
224         (EM_ALPHA, R_ALPHA_*): New macros for elf64-alpha format.
226 Mon Jun 10 02:22:24 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
228         * sysdeps/unix/sysv/linux/configure.in: New file, start with configure.
229         Add check for installed <linux/version.h> being v2.0 or later.
231         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_open_zero_fill): Call __open
232         instead of open.
233         (_dl_sysdep_fatal): Call __write instead of write.
234         (_dl_sysdep_message): Likewise.
236 Sun Jun  9 20:40:00 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
238         * sysdeps/m68k/fpu/e_acosl.c: New file.
240 Sun Jun  9 01:11:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
242         * Makerules (o-objects): New variable.  Use it in place of
243         $(objects:.o=$o); it filters out $(elide-routines$o).
244         Use o-iterator for ar and ranlib rules so they use the per-type object
245         list.
247         * elf/dl-load.c (_dl_map_object_from_fd): Close FD before return.
249         * sysdeps/mach/mprotect.c: Define with __ name and weak alias.
250         * sysdeps/stub/mprotect.c: Likewise.
251         * sysdeps/unix/mman/syscalls.list (mprotect): Likewise.
252         * sysdeps/generic/sys/mman.h: Declare __mprotect.
253         * sysdeps/unix/sysv/irix4/sys/mman.h: Likewise.
254         * sysdeps/unix/sysv/linux/sys/mman.h: Likewise.
255         * sysdeps/unix/bsd/sun/sunos4/sys/mman.h: Likewise.
256         * sysdeps/unix/bsd/osf/sys/mman.h: Likewise.
257         * sysdeps/unix/bsd/ultrix4/sys/mman.h: Likewise.
259         * Make-dist ($(tardir).tar): Use sed to check for file names longer
260         than 14 chars, instead of doschk which checks for other things we
261         don't care about.
263         * Version 1.90 test release.
265         * Makerules (make-target-directory): Use ./mkinstalldirs so we do not
266         assume . is in PATH.
268 Sat Jun  8 22:05:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
270         * math/Makefile (distribute): Comment out addition of
271         $(long-m-routines) sources until they are all written.
273         * math/Makefile (distribute): Append long double source names to this
274         instead of using elided-routines.
276 Sat Jun  8 15:15:07 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
278         * mach/mach_shortcuts.c: Obsolete file removed.
279         * mach/mach_syscalls.h: Likewise.
281         * hurd/Makefile (distribute): Consolidate defns into one.
283         * time/Makefile (tzfiles): Add solar87 solar88 solar89.
285 Fri Jun  7 16:48:13 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
287         * sysdeps/unix/sysv/linux/i386/Dist: New file, list sys/perm.h and
288         sys/vm86.h.
290         Removed old math code no longer used since the fdlibm integration.
291         * sysdeps/stub/acos.c: File removed.
292         * sysdeps/stub/asin.c: File removed.
293         * sysdeps/stub/atan2.c: File removed.
294         * sysdeps/stub/cosh.c: File removed.
295         * sysdeps/stub/exp.c: File removed.
296         * sysdeps/stub/fmod.c: File removed.
297         * sysdeps/stub/frexp.c: File removed.
298         * sysdeps/stub/log.c: File removed.
299         * sysdeps/stub/log10.c: File removed.
300         * sysdeps/stub/sinh.c: File removed.
301         * sysdeps/stub/tan.c: File removed.
302         * sysdeps/stub/tanh.c: File removed.
303         * sysdeps/generic/acos.c: File removed.
304         * sysdeps/generic/acosh.c: File removed.
305         * sysdeps/generic/asin.c: File removed.
306         * sysdeps/generic/asinh.c: File removed.
307         * sysdeps/generic/atan.c: File removed.
308         * sysdeps/generic/atan2.c: File removed.
309         * sysdeps/generic/atanh.c: File removed.
310         * sysdeps/generic/cabs.c: File removed.
311         * sysdeps/generic/ceil.c: File removed.
312         * sysdeps/generic/copysign.c: File removed.
313         * sysdeps/generic/cosh.c: File removed.
314         * sysdeps/generic/exp.c: File removed.
315         * sysdeps/generic/expm1.c: File removed.
316         * sysdeps/generic/fabs.c: File removed.
317         * sysdeps/generic/floor.c: File removed.
318         * sysdeps/generic/fmod.c: File removed.
319         * sysdeps/generic/frexp.c: File removed.
320         * sysdeps/generic/hypot.c: File removed.
321         * sysdeps/generic/infnan.c: File removed.
322         * sysdeps/generic/isnan.c: File removed.
323         * sysdeps/generic/ldexp.c: File removed.
324         * sysdeps/generic/log.c: File removed.
325         * sysdeps/generic/log10.c: File removed.
326         * sysdeps/generic/log1p.c: File removed.
327         * sysdeps/generic/modf.c: File removed.
328         * sysdeps/generic/pow.c: File removed.
329         * sysdeps/generic/rint.c: File removed.
330         * sysdeps/generic/sinh.c: File removed.
331         * sysdeps/generic/tan.c: File removed.
332         * sysdeps/generic/tanh.c: File removed.
333         * sysdeps/ieee754/cabs.c: File removed.
334         * sysdeps/ieee754/copysign.c: File removed.
335         * sysdeps/ieee754/frexp.c: File removed.
336         * sysdeps/ieee754/hypot.c: File removed.
337         * sysdeps/ieee754/infnan.c: File removed.
338         * sysdeps/ieee754/ldexp.c: File removed.
339         * sysdeps/ieee754/log10.c: File removed.
341         * posix/Makefile (headers): Add schedbits.h.
343         * math/Makefile (elided-routines): Add long double routines.
345 Fri Jun  7 11:02:22 1996  Miles Bader  <miles@gnu.ai.mit.edu>
347         * sysdeps/mach/hurd/getpriority.c (getpriority): Use new interface
348         to __proc_getprocinfo.
350         * login/login.c (tty_name): New function.
351         (login): Use it.
352         (PATH_MAX): MACRO removed.
353         <stdlib.h>: New include.
355 Fri Jun  7 09:11:17 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
357         * sysdeps/unix/sysv/linux/Dist: Add sys/sysinfo.h, sys/mount.h,
358         sys/kdaemon.h, sys/io.h, sys/mount.h, sysctl.c.
360         * gmon/Makefile (distribute): Add profil-counter.h.
362         * sysdeps/unix/sysv/linux/alpha/Dist: New file.
364         * sysdeps/unix/Dist: Add s-proto.S.
366         * sysdeps/unix/common/mk-local_lim.c: Obsolete file removed.
368         * Make-dist (+sysdep-tsrcs): Get all syscalls.list files too.
370         * csu/Makefile (distribute): Add start.c.
372         * elf/Makefile (distribute): Add dl-machine.h.
374         * sysdeps/alpha/Dist: Add _mcount.S.
376         * sysdeps/alpha/Makefile (sysdep_routines): Append instead of
377         resetting; don't add bb_init_func.
379         * string/Makefile (routines): Add strerror_r.
380         * string/string.h (strerror_r): Use int for BUFLEN arg.
382         * Makefile (distribute): Add shlib-versions.
384         * po/Makefile (distribute): Add SYS_libc.pot.
386         * misc/Makefile (routines): Add lsearch.
388         * manual/lang.texi (Consistency Checking): Merge in assert_perror defn
389         and other changes inadvertently made to the obsolete assert.texi.
390         * manual/assert.texi: File removed.
392         * mach/mach_syscalls.c: Obsolete file removed.
393         * mach/mach_syscalls.h: Likewise.
394         * mach/mach_traps.S: Likewise.
395         * mach/msg_destroy.c: Likewise.
396         * mach/vm_page_size.c: Likewise.
398         * locale/Makefile (distribute): Add weight.h, charset.h.
400         * Makefile (distribute): Add version.h.
402         * hurd/Makefile (headers): Add hurd/ioctl.h.
403         (distribute): Add intr-rpc.d, intr-rpc.h, faultexc.defs.
405         * csu/Makefile (distribute): Add gmon-start.c.
407         * Makefile (distribute): Add config.h.in.
409 Wed Jun  5 22:06:21 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
411         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Fix type of reloc
412         argument.
413         [case R_68K_32]: Check for resolve being null.
414         (RTLD_START): Add missing label.
416 Fri Jun  7 1996 05:29:32  Ulrich Drepper  <drepper@cygnus.com>
418         * misc/lsearch.c: New file.  Implementation of lfind and
419         lsearch functions.
421         * misc/search.h: Add prototype for functions from tsearch
422         family with __ prefix.
423         Correct prototype for lsearch: BASE parameter must not be
424         const.
426         * misc/tsearch.c: prepend all global function names with __
427         and make normal names weak aliases.
429 Fri Jun  7 00:15:24 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
431         * Make-dist (sysdep_dirs): Skip CVS dirs.
433 Thu Jun  6 16:12:39 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
435         * malloc/Makefile (distribute): Change malloc/gmalloc-head.c to
436         gmalloc-head.c.
437         (malloc/gmalloc.c): Depend on malloc/gmalloc-head.c.
438         (malloc/Makefile): Do $(make-target-directory) first.
439         * malloc/gmalloc-head.c: New file.
441         * po/Makefile (linguas.mo): Don't commit .mo files to cvs.
443         * hurd/hurdsig.c (_hurd_internal_post_signal): For SIGNO==0 pending
444         check, deliver a pending blocked signal if its action might be to
445         ignore.
446         * sysdeps/mach/hurd/sigaction.c: If new action is SIG_IGN or SIG_DFL
447         and SIG is pending, wake up signal thread to check us.
449         * hurd/hurdsig.c (_hurd_internal_post_signal): Don't mark a signal
450         pending while blocked or stopped when the action is to ignore it.
452 Thu Jun  6 12:56:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
454         * hurd/hurdsig.c (_hurd_internal_post_signal: resume): Only set
455         SS_SUSPENDED when the thread is really suspended.
457         * elf/rtld.c (dl_main): Don't dereference _dl_rtld_map.l_next if null.
459         * Makerules (headers): Move append of $(sysdep_headers) after include
460         of sysdep makefiles.
462         * sysdeps/mach/hurd/errlist.c: File removed.
464 Thu Jun  6 07:32:14 1996  Miles Bader  <miles@gnu.ai.mit.edu>
466         * resolv/gethnamaddr.c (struct hstorage): Make NAME field a pointer.
467         (_gethtbyname2): Remove ALIAS variable.
468         Initialize NAME field of SELF and TARGET to 0.
469         Add SELF_NAME_SIZE static variable.
470         Add loop to call gethostname until the space we allocated is enough.
471         Use malloced strings instead of fixed size buffers.
472         <stdlib.h>, <unistd.h>: New includes.
473         * sysdeps/generic/sys/socket.h (PF_INET6, AF_INET6): New macros.
475         * sysdeps/mach/hurd/errlist.c (_sys_errlist): Add EILSEQ.
476         (_sys_nerr): Initialize to 107.
477         Update _HURD_ERRNOS consistency check.
479         * stdlib/canonicalize.c (canonicalize): Use pathconf for PATH_MAX,
480         not sysconf.
482         * login/login.c [!PATH_MAX] (PATH_MAX): Define to be 1024 if not
483         already defined.
485         * sysdeps/mach/hurd/setitimer.c (timer_thread): Supply SIGCODE
486         argument to __msg_sig_post_request.
488         * hurd/hurdmalloc.c: Changes to bring in line with the hurd
489         libthreads/malloc.c:
490         (more_memory): Use assert_perror instead of MACH_CALL.
491         "cthread_internals.h": Include removed.
492         (realloc): Use LOG2_MIN_SIZE.
493         (LOG2_MIN_SIZE): New macro.
494         (realloc): Don't bother allocating a new block if the
495         new size request fits in the old one and doesn't waste any space.
496         Only free the old block if we successfully got a new one.
497         [MCHECK] (struct header): New type.
498         (union header): Only define if !MCHECK.
499         (HEADER_SIZE, HEADER_NEXT, HEADER_FREE, HEADER_CHECK): New macros.
500         [MCHECK] (MIN_SIZE): Add correct definition for this case.
501         (more_memory, malloc, free, realloc): Use above macros, and add
502         appropiate checks & frobs in MCHECK case.
504 Thu Jun  6 02:00:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
506         * Makerules (distinfo-vars): Don't write constant line to frob sources.
507         * Make-dist (sources): Append $(elided-routines) and $(extra-libs)
508         routines.
510 Tue Jun  4 22:03:02 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
512         * sysdeps/m68k/fpu/__math.h: Define long double versions of
513         the inline functions.
514         * sysdeps/m68k/fpu/e_asinl.c, sysdeps/m68k/fpu/e_atanl.c,
515         sysdeps/m68k/fpu/e_acosl.c, sysdeps/m68k/fpu/e_expl.c,
516         sysdeps/m68k/fpu/e_fmodl.c, sysdeps/m68k/fpu/e_log10l.c,
517         sysdeps/m68k/fpu/e_logl.c, sysdeps/m68k/fpu/e_powl.c,
518         sysdeps/m68k/fpu/e_remainderl.c, sysdeps/m68k/fpu/e_scalbl.c,
519         sysdeps/m68k/fpu/e_sinhl.c, sysdeps/m68k/fpu/e_sqrtl.c,
520         sysdeps/m68k/fpu/k_cosl.c, sysdeps/m68k/fpu/k_sinl.c,
521         sysdeps/m68k/fpu/k_tanl.c, sysdeps/m68k/fpu/s_atanl.c,
522         sysdeps/m68k/fpu/s_ceill.c, sysdeps/m68k/fpu/s_cosl.c,
523         sysdeps/m68k/fpu/s_expm1l.c, sysdeps/m68k/fpu/s_fabsl.c,
524         sysdeps/m68k/fpu/s_finitel.c, sysdeps/m68k/fpu/s_floorl.c,
525         sysdeps/m68k/fpu/s_frexpl.c, sysdeps/m68k/fpu/s_ilogbl.c,
526         sysdeps/m68k/fpu/s_isinfl.c, sysdeps/m68k/fpu/s_isnanl.c,
527         sysdeps/m68k/fpu/s_ldexpl.c, sysdeps/m68k/fpu/s_log1pl.c,
528         sysdeps/m68k/fpu/s_logbl.c, sysdeps/m68k/fpu/s_modfl.c,
529         sysdeps/m68k/fpu/s_rintl.c, sysdeps/m68k/fpu/s_scalbnl.c,
530         sysdeps/m68k/fpu/s_significandl.c, sysdeps/m68k/fpu/s_sinl.c,
531         sysdeps/m68k/fpu/e_atanhl.c, sysdeps/m68k/fpu/e_coshl.c: New files.
533         * sysdeps/m68k/fpu/e_acos.c, sysdeps/m68k/fpu/e_fmod.c,
534         sysdeps/m68k/fpu/k_cos.c, sysdeps/m68k/fpu/k_sin.c,
535         sysdeps/m68k/fpu/k_tan.c, sysdeps/m68k/fpu/s_atan.c,
536         sysdeps/m68k/fpu/s_frexp.c, sysdeps/m68k/fpu/s_ilogb.c,
537         sysdeps/m68k/fpu/s_isinf.c, sysdeps/m68k/fpu/s_ldexp.c,
538         sysdeps/m68k/fpu/s_modf.c: Define generic functions using FUNC and
539         float_type with appropriate defaults.
541         * sysdeps/m68k/fpu/e_acosf.c, sysdeps/m68k/fpu/e_fmodf.c,
542         sysdeps/m68k/fpu/k_cosf.c, sysdeps/m68k/fpu/k_sinf.c,
543         sysdeps/m68k/fpu/k_tanf.c, sysdeps/m68k/fpu/s_atanf.c,
544         sysdeps/m68k/fpu/s_frexpf.c, sysdeps/m68k/fpu/s_ilogbf.c,
545         sysdeps/m68k/fpu/s_isinff.c, sysdeps/m68k/fpu/s_ldexpf.c,
546         sysdeps/m68k/fpu/s_modff.c: Include the corresponding double
547         versions with appropriate definitions to get float functions,
548         instead of defining them directly.
550         * sysdeps/m68k/fpu/acos.c: File removed.
551         * sysdeps/m68k/fpu/asin.c: File removed.
552         * sysdeps/m68k/fpu/atan.c: File removed.
553         * sysdeps/m68k/fpu/atan2.c: File removed.
554         * sysdeps/m68k/fpu/atanh.c: File removed.
555         * sysdeps/m68k/fpu/ceil.c: File removed.
556         * sysdeps/m68k/fpu/cos.c: File removed.
557         * sysdeps/m68k/fpu/cosh.c: File removed.
558         * sysdeps/m68k/fpu/drem.c: File removed.
559         * sysdeps/m68k/fpu/exp.c: File removed.
560         * sysdeps/m68k/fpu/expm1.c: File removed.
561         * sysdeps/m68k/fpu/fabs.c: File removed.
562         * sysdeps/m68k/fpu/fl.h: File removed.
563         * sysdeps/m68k/fpu/floor.c: File removed.
564         * sysdeps/m68k/fpu/fmod.c: File removed.
565         * sysdeps/m68k/fpu/frexp.c: File removed.
566         * sysdeps/m68k/fpu/isinf.c: File removed.
567         * sysdeps/m68k/fpu/isinfl.c: File removed.
568         * sysdeps/m68k/fpu/isnan.c: File removed.
569         * sysdeps/m68k/fpu/isnanl.c: File removed.
570         * sysdeps/m68k/fpu/ldexp.c: File removed.
571         * sysdeps/m68k/fpu/log.c: File removed.
572         * sysdeps/m68k/fpu/log10.c: File removed.
573         * sysdeps/m68k/fpu/log1p.c: File removed.
574         * sysdeps/m68k/fpu/logb.c: File removed.
575         * sysdeps/m68k/fpu/pow.c: File removed.
576         * sysdeps/m68k/fpu/rint.c: File removed.
577         * sysdeps/m68k/fpu/sin.c: File removed.
578         * sysdeps/m68k/fpu/sinh.c: File removed.
579         * sysdeps/m68k/fpu/sqrt.c: File removed.
580         * sysdeps/m68k/fpu/tan.c: File removed.
581         * sysdeps/m68k/fpu/tanh.c: File removed.
583 Thu Jun  6 00:02:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
585         * sysdeps/unix/sysv/linux/syscalls.list: Add select (the syscall name
586         is _newselect).
587         * sysdeps/unix/sysv/linux/select.S: File removed.
589         * sysdeps/unix/sysv/linux/m68k/select.S: File removed; obsolete with
590         current kernels, generic linux version is fine.
592         * locale/Makefile: Add vpath for %.gperf to programs.
594         * Make-dist (+tsrcs): Variable removed.
595         (dist): Process $^ here instead of using $(+tsrcs).
597         * sysdeps/unix/sysv/linux/Makefile (install-others): Don't set.
598         ($(includedir)/sys/syscall.h): Target removed.
599         (sysdep_headers): Add syscall-list.h.
600         ($(objpfx)syscall-%.[dh]): New rule to build syscall-list.[dh].
601         (generated): Add those.
602         * sysdeps/unix/sysv/linux/syscall.h: Include <syscall-list.h>.
604 Wed Jun  5 15:57:28 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
606         * misc/sys/syscall.h: New file.
607         * misc/Makefile (headers): Add sys/syscall.h.
609         * time/tzfile.h, time/private.h, time/zdump.c, time/zic.c,
610         time/africa, time/asia, time/australasia, time/europe,
611         time/northamerica, time/southamerica: Updated from ADO 96h.
613         * Make-dist (all-headers): Filter $(sysdep_headers) out of $(headers).
614         (try-sysdeps, +sysdep-names): Check sysdeps/libm-ieee754 too.
616         * Makerules (distinfo-vars): Add sysdep_headers.
617         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Append to
618         this instead of $(headers).
619         * sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
620         * sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
622         * Make-dist [subdirs-dirs]: Don't prefix $(subdir-dirs) with
623         $(subdir); we are already there.
625         * sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: Removed.
627         * mach/Machrules: Undo last change.
628         (mach-generated): List .uh and .__h files only for $(user-interfaces),
629         not for each .h in $(interface-headers); server-interfaces have no .uh
630         or .__h files.
632 Wed Jun  5 15:42:51 1996  Miles Bader  <miles@gnu.ai.mit.edu>
634         * mach/Machrules (%_server.uh, %_server.__h): New rules, so that the
635         corrsponding .defs file with without the `_server' will be used.
637         * mach/Makefile (mach/mach_interface.defs): Renamed from
638         mach_interface.defs.
639         (mach/memory_object_user.defs): New variable.
641 Wed Jun  5 15:10:58 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
643         * Make-dist [subdir-dirs]: Set vpath for %, not just %.c.
645         * locale/Makefile (subdir-dirs): New variable.
647 Wed Jun  5 00:01:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
649         * Makerules (distinfo-vars): Add sysdep_routines.
651         * mach/Machrules (include-%.defs): New canned sequence.
652         Change all uses of `#include <$*.defs>' in cmds to use it.
653         * mach/Makefile (mach_interface.defs): New variable, set to mach.defs.
655         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle RESOLVE being
656         null in all cases but R_386_COPY.
657         (elf_machine_rel):
659 Wed Jun  5 00:01:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
661         * sysdeps/unix/bsd/ultrix4/mips/Dist: Updated.
662         * sysdeps/unix/bsd/ultrix4/Dist: Removed.
663         * sysdeps/unix/sysv/sysv4/Dist: Updated.
664         * sysdeps/unix/sysv/sco3.2.4/Dist: Removed.
665         * sysdeps/unix/sysv/irix4/Dist: Updated.
666         * sysdeps/unix/sysv/linux/i386/Dist: Removed.
667         * sysdeps/unix/sysv/Dist: Updated.
668         * sysdeps/unix/bsd/sun/sunos4/Dist: Removed.
669         * sysdeps/unix/bsd/sony/newsos4/Dist: Removed.
670         * sysdeps/gnu/Dist: New file.
671         * sysdeps/alpha/Dist: Updated.
672         * sysdeps/mach/hurd/Dist: Updated.
674         * Make-dist [subdir-dirs]: Set a vpath for %.c.
676         * Make-dist (README): Fix typo in cvs cmd.
678         * elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change.
679         Comment out ref to nonexistent _dl_close.
681 Tue Jun  4 21:01:20 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
683         * math/Makefile (libm-support, libm-calls): New variables.
684         (libm-routines): Construct this from those.
685         (calls): New variable.
686         (routines): Construct this from it.
688         * resolv/res_debug.c: Add missing #include <ctype.h>.
690         * sysdeps/unix/getlogin.c: Must pass struct utmp ptr to getutline_r.
691         * sysdeps/unix/getlogin_r.c: Likewise.
693         * sysdeps/libm-ieee754/w_hypotl.c: Fix typo.
695         * sysdeps/libm-ieee754/w_cabsl.c: __cabsl_complex -> __cabs_complexl
697         * math/Makefile (long-m-routines): Define recursive variable as
698         $(long-m-$(long-double-fcts)).
699         (long-m-yes): Put list of routines here.
700         (long-c-routines, long-c-yes): Likewise.
702         * sysdeps/unix/sysv/linux/schedbits.h: File removed.
704         * sysdeps/i386/Makefile (long-double-fcts): New variable, set to yes.
705         * sysdeps/m68k/Makefile: Likewise.
707         * math/Makefile [$(long-double-fcts)!=yes] (CPPFLAGS): Append
708         -DNO_LONG_DOUBLE.
710         * sysdeps/mach/hurd/getlogin_r.c: New file.
712 Wed Jun  5 02:11:30 1996  Ulrich Drepper  <drepper@cygnus.com>
714         * io/Makefile (routines): Add ttyname_r.
716         * resolv/res_debug.c, resolv/resolv.h: Update from bind-4.3.4-T4A.
718         * sysdeps/libm-i387/e_asinl.S, sysdeps/libm-i387/e_atan2l.S,
719         sysdeps/libm-i387/e_expl.S, sysdeps/libm-i387/e_fmodl.S,
720         sysdeps/libm-i387/e_log10l.S, sysdeps/libm-i387/e_logl.S,
721         sysdeps/libm-i387/e_remainderl.S, sysdeps/libm-i387/e_scalbl.S,
722         sysdeps/libm-i387/e_sqrtl.S, sysdeps/libm-i387/s_atanl.S,
723         sysdeps/libm-i387/s_cosl.S, sysdeps/libm-i387/s_ilogbl.S,
724         sysdeps/libm-i387/s_log1pl.S, sysdeps/libm-i387/s_logbl.S,
725         sysdeps/libm-i387/s_scalbnl.S, sysdeps/libm-i387/s_sinl.S,
726         sysdeps/libm-i387/s_tanl.S: New files.  i387 assembler versions
727         of `long double' math functions.
729         * sysdeps/libm-ieee754/k_standard.c: Add handling for errors
730         in long double functions.
732         * sysdeps/libm-ieee754/s_ilogbl.c, sysdeps/libm-ieee754/s_logbl.c,
733         sysdeps/libm-ieee754/s_modfl.c:  New files.  Generic versions
734         of `long double' math functions.
736         * sysdeps/libm-ieee754/s_isinf.c [NO_LONG_DOUBLE]: Add string
737         alias for __isinfl.
739         * sysdeps/libm-ieee754/w_acoshl.c, sysdeps/libm-ieee754/w_acosl.c,
740         sysdeps/libm-ieee754/w_asinl.c, sysdeps/libm-ieee754/w_atan2l.c,
741         sysdeps/libm-ieee754/w_atanhl.c, sysdeps/libm-ieee754/w_cabsl.c,
742         sysdeps/libm-ieee754/w_coshl.c, sysdeps/libm-ieee754/w_dreml.c,
743         sysdeps/libm-ieee754/w_expl.c, sysdeps/libm-ieee754/w_fmodl.c,
744         sysdeps/libm-ieee754/w_gammal.c, sysdeps/libm-ieee754/w_gammal_r.c,
745         sysdeps/libm-ieee754/w_hypotl.c, sysdeps/libm-ieee754/w_j0l.c,
746         sysdeps/libm-ieee754/w_j1l.c, sysdeps/libm-ieee754/w_jnl.c,
747         sysdeps/libm-ieee754/w_lgammal.c, sysdeps/libm-ieee754/w_lgammal_r.c,
748         sysdeps/libm-ieee754/w_log10l.c, sysdeps/libm-ieee754/w_logl.c,
749         sysdeps/libm-ieee754/w_powl.c, sysdeps/libm-ieee754/w_remainderl.c,
750         sysdeps/libm-ieee754/w_scalbl.c, sysdeps/libm-ieee754/w_sinhl.c,
751         sysdeps/libm-ieee754/w_sqrtl.c: New files.  Wrapper functions
752         around long double function implementations.
754         * sysdeps/posix/ttyname_r.c (ttyname_r): Use _D_EXACT_NAMLEN
755         to determine length of directory entry name.
757         * posix/Makefile (routines): Add getlogin_r.
758         * posix/unistd.h: Add prototype for getlogin_r.
759         * sysdeps/stub/getlogin_r.c: New file.  Reentrant version of
760         getlogin function, specified in P1003.1c/D6.  Stub version.
761         * sysdeps/unix/getlogin.c (getlogin): Use ttyname_r instead of
762         ttyname.  This avoids saving and restoring the old content.
763         Also use setutent_r, getutline_r and endutent_r instead of
764         accing UTMP file directly.
765         * sysdeps/unix/getlogin_r.c: New file.  Reentrant version of
766         getlogin function, specified in P1003.1c/D6.
768 Tue Jun  4 20:10:09 1996  J.T. Conklin  <jtc@cygnus.com>
770         * sysdeps/libm-i387/s_finitef.S: Fix mask for exponent.
772 Tue Jun  4 18:57:57 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
774         * elf/dl-lookup.c (_dl_lookup_symbol): Grok magical undefined symbols
775         _GNU_libc_dl_{open,close,symbol} and resolve them to dl functions.
777         * elf/rtld.c (rtld_map): Renamed to _dl_rtld_map, made global.
778         * elf/link.h: Declare _dl_rtld_map.
780         * elf/dl-lookup.c (_dl_symbol_value): New function.
781         * elf/link.h: Declare it.
783         * elf/dladdr.c: Remove #include <setjmp.h>, we don't use it.
785         * shlib-versions: Set libdl=2.
787         * elf/dl-deps.c (_dl_map_object_deps): Use a linked list of alloca'd
788         elements and then scan it to fill the single malloc'd array, instead
789         of using realloc to grow the array in the first pass.  _dl_map_object
790         may do some mallocs that break our stream of reallocs, and the minimal
791         realloc can't handle that.
793         * elf/dl-init.c (_dl_init_next): Take argument, link_map whose
794         searchlist describes the piece of the DT_NEEDED graph to be
795         initialized.
796         * elf/link.h: Update prototype.
797         * sysdeps/i386/dl-machine.h (RTLD_START): Pass _dl_loaded as argument
798         to _dl_init_next.
799         * sysdeps/m68k/dl-machine.h: Likewise.
800         * elf/dl-deps.c (_dl_open): Pass new object as arg to _dl_init_next.
802         * elf/link.h (struct link_map): Add `l_reserved' member, soaking up
803         extra bits in last byte.
804         * elf/dl-deps.c (_dl_map_object_deps): Use that for mark bit to avoid
805         putting dup elts in search list.
807         * elf/dlclose.c: Use MAP->l_searchlist to find deps to close.
809         * elf/dlsym.c: Don't tweak linked list.  Scope array given to
810         _dl_lookup_symbol does the right thing.
812         * elf/Makefile (subdir_lib): Change this target to lib-noranlib.
813         (lib-noranlib): Depend on on $(extra-objs).
815         * errno.h: Move __END_DECLS out of #ifdef's so it matches
816         __BEGIN_DECLS.
818 Tue Jun  4 02:25:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
820         * stdio-common/vfprintf.c [USE_IN_LIBIO] (size_t): Don't define as
821         macro.  _IO_size_t is just an alias for the real size_t anyway.
823         * elf/Makefile (libdl-routines): Add dladdr.
824         * elf/dladdr.c: New file.
825         * elf/dlfcn.h (Dl_info): New typedef.
826         (dladdr): Declare it.
828         * sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'.
830         * intl/l10nflist.c: Fix conditional on #include <argz.h>.
832         * libio/stdio.h (FOPEN_MAX, FILENAME_MAX, TMP_MAX, L_tmpnam): Macros
833         removed.  Instead, include <stdio_lim.h>.
835         * libio/_G_config.h: New file.
836         * libio/Makefile (headers): Add _G_config.h.
838         * MakeTAGS (po/errlist.pot): Extract from sysdeps/gnu/errlist.c.
840         * sysdeps/unix/sysv/linux/gnu/types.h (__KERNEL_STRICT_NAMES): Define
841         this macro too; current Linux kernels test that instead of
842         _LINUX_TYPES_DONT_EXPORT.
844         * elf/linux-compat.c (_init): Pass reloc_addr arg to _dl_lookup_symbol.
846         * elf/dl-lookup.c (_dl_lookup_symbol): Use l_searchlist.
848         * elf/dl-deps.c: New file.
849         * elf/Makefile (rtld-routines): Add dl-deps.
850         * elf/link.h: Declare _dl_map_object_deps, _dl_open.
851         * elf/rtld.c (dl_main): Use _dl_map_object_deps.
852         * elf/dlopen.c: Use _dl_open.
854         * elf/rtld.c (dl_main): Remove BEFORE_RTLD variable and list
855         frobnication based on its value.  Detach RTLD_MAP from the chain if
856         its l_opencount is zero after loading deps.
858         * elf/dlfcn.h (RTLD_BINDING_MASK): New macro.
860         * elf/link.h (struct link_map): Replace l_deps_loaded flag member with
861         `struct link_map **l_searchlist' and `unsigned int l_nsearchlist'.
862         * elf/dl-lookup.c (_dl_lookup_symbol): Make SYMBOL_SCOPE arg an array
863         of two link_map ptrs.  Search the maps in the l_searchlist of each
864         elt that is not null.
865         * elf/dl-reloc.c (_dl_relocate_object): Pass proper SCOPE array.
866         * elf/dl-runtime.c: Likewise.
867         * elf/dlsym.c: Likewise.
868         * elf/rtld.c (dl_main): Likewise.
870         * elf/dl-minimal.c (realloc): Support realloc of the block most
871         recently returned by the minimal malloc.
873 Tue Jun  4 00:16:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
875         * sysdeps/gnu/errlist.awk: Produce N_("..."), not _N("...").
877         * intl: Updated from gettext-0.10.13.
878         * intl/localealias.c, intl/dcgettext.c [_LIBC]: Define HAVE_ALLOCA.
880         * signal/siggetmask.c: New file.  Wrapper around sigblock with
881         link_warning about obsolescence.
882         * signal/Makefile (routines): Add siggetmask.
884         * sysdeps/gnu/errlist.awk: New file, adapted from ...
885         * sysdeps/mach/hurd/errlist.awk: File removed, above file replaces it.
886         * sysdeps/mach/hurd/Makefile (errlist.c): Target removed.
887         * sysdeps/gnu/Makefile: New file.
888         (sysdeps/gnu/errlist.c): Make the errlist.c generation rule into this.
890 Mon Jun  3 21:03:54 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
892         * manual/errno.texi (Error Codes): Add placeholder items for missing
893         Linux/i386 errno codes, with perror text but no documentation.
894         Some existing perror texts changed.
896         * malloc/mcheck.c (freehook, reallochook): Handle null pointer args.
898         * hurd/hurdsig.c (_hurd_internal_post_signal): When setting ACT to
899         `ignore, resume the thread if SS_SUSPENDED, regardless of old action.
901 Sun Jun  2 20:14:30 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
903         * locale/programs/linereader.c (lr_open): Don't pass NULL to
904         xstrdup; fix memory leak.
905         (lr_close): Fix memory leak.
907 Mon Jun  3 15:58:22 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
909         * hurd/hurdsig.c (_hurd_internal_post_signal): When turning the action
910         for a HANDLE signal to IGNORE because the signal is blocked, clean
911         up any pending suspension left over from a call to resume.
913 Mon Jun  3 00:30:35 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
915         * elf/dl-lookup.c (_dl_lookup_symbol): Take new arg RELOC_ADDR and
916         don't allow a defn resolving to that address.
918         * elf/link.h: Update prototype and comment.
919         * elf/dl-runtime.c (fixup): Define local `resolve' function and pass
920         it to elf_machine_relplt.
921         * elf/dl-reloc.c (_dl_relocate_object: resolve): Take new arg
922         RELOC_ADDR and pass it through to _dl_lookup_symbol.
923         * elf/do-rel.h (elf_dynamic_do_rel): Pass RESOLVE to elf_machine_rel
924         instead of calling it ourselves and passing its results.
925         (elf_dynamic_do_rel): RESOLVE fn takes new arg RELOC_ADDR.
926         * elf/rtld.c (dl_main): Pass 0 for RELOC_ADDR to _dl_lookup_symbol.
927         * sysdeps/i386/dl-machine.h (elf_machine_rel): Remove SYM_LOADADDR
928         arg.  Add RESOLVE function ptr arg.  Call *RESOLVE as necessary.
929         * sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
930         * sysdeps/stub/dl-machine.h: Likewise.
932 Sun Jun  2 14:56:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
934         * csu/initfini.c (_fini): Add extern decl for i_am_not_a_leaf.
936         * elf/dlfcn.h (dl_open_mode): Enumerated type removed.
937         (RTLD_LAZY, RTLD_NOW): Define these as macros instead.
938         (RTLD_GLOBAL): New macro.
939         (dlopen): Take arg of type int instead of dl_open_mode.
940         * elf/dlopen.c: Likewise.
942         * math/math.h (_Mldbl): New macro, either produces L suffix or not.
943         (M_*): Use it for these constants.
945         * elf/dl-lookup.c (_dl_lookup_symbol): Arg NOSELF renamed to NOPLT.
946         Reject SHN_UNDEF defns iff NOPLT is nonzero.
947         * elf/link.h (_dl_lookup_symbol): Update prototype and comment.
948         * elf/dl-runtime.c (fixup): Pass 1 to _dl_lookup_symbol for NOPLT.
949         * elf/dlsym.c (dlsym): Pass 0.
950         * elf/rtld.c (dl_main): Likewise.
951         * elf/dl-reloc.c (_dl_relocate_object: resolve): Second arg R_OFFSET
952         replaced with NOPLT flag.  Pass it through to _dl_lookup_symbol.
953         * elf/do-rel.h (elf_dynamic_do_rel): Update prototype of RESOLVE arg.
954         Pass `elf_machine_pltrel_p (R->r_type)' result as NOPLT flag value.
955         * sysdeps/i386/dl-machine.h (elf_machine_pltrel_p): New macro.
956         * sysdeps/m68k/dl-machine.h (elf_machine_pltrel_p): Likewise.
957         * sysdeps/stub/dl-machine.h (elf_machine_pltrel_p): Likewise.
959         * login/pututline_r.c: Fix typo in sizeof for DATA_TMP alloca.
961         * sysdeps/generic/gnu/types.h (__clock_t): New type.
963 Wed May 29 00:57:37 1996  David Mosberger-Tang  <davidm@azstarnet.com>
965         * sysdeps/unix/sysv/linux/gnu/types.h (__clock_t, __fsid_t): Define
966         using kernel types.
967         * time/time.h (clock_t): Include <gnu/types.h> and define using
968         __clock_t.
970         * time/Makefile (tests): Add test-tz.
972         * time/test-tz.c: New test.
974         * time/clocktest.c: Rewrite to test more meaningfully.
976         * sysdeps/unix/sysv/linux/syscalls.list: Add bdflush,
977         create_module, delete_module, get_kernel_syms, init_module,
978         klogctl.
980         * sysdeps/unix/sysv/linux/sys/param.h (MAXSYMLINKS): Define as 5
981         instead of SYMLOOP_MAX, which is nowhere to be found.
983         * sysdeps/unix/sysv/linux/sys/msq_buf.h,
984         sysdeps/unix/sysv/linux/sys/sem_buf.h,
985         sysdeps/unix/sysv/linux/sys/shm_buf.h [__USE_MISC]: Add more
986         control ops and datastructures.
988         * sysdeps/unix/sysv/linux/sys/io.h: New file declaring low-level
989         I/O related functions.
991         * sysdeps/unix/sysv/linux/sys/kdaemon.h: New file declaring kernel
992         daemon related functions/operations.
994         * sysdeps/unix/sysv/linux/sys/klog.h: New file declaring kernel
995         logging related functions/operations.
997         * sysdeps/unix/sysv/linux/sys/module.h: New file declaring kernel
998         module related functions/operations.
1000         * sysdeps/unix/sysv/linux/speed.c: Only do "mention this twice" hack
1001         for non-Alpha based Linux systems.
1003         * sysdeps/unix/sysv/linux/alpha/speed.c: Remove.
1005         * sysdeps/unix/sysv/linux/Makefile (headers): Add sys/module.h,
1006         sys/io.h, sys/klog.h, and sys/kdaemon.h.
1008         * sysdeps/unix/sysdep.h (END): Define empty END macro for
1009         platforms that don't need some sort of end directive at the
1010         end of functions.
1012         * sysdeps/unix/make-syscalls.sh: Emit END($strong) at end of
1013         syscall wrapper to allow correct generation of debugging
1014         information.
1016         * sysdeps/unix/alpha/sysdep.h (END): Redefine to use .end
1017         directive for both ELF and ECOFF.
1018         (ret): Delete macro.  It was a dangerous macro and unnecessary
1019         since the Alpha assemblers recognizes "ret" as a macro themselves.
1021         * sysdeps/gnu/utmpbits.h (struct utmp): Move ut_tv behind
1022         ut_session to guarantee long alignment.  This is important for
1023         Linux/Alpha since ut_tv.tv_sec is 32 bits and time_t is 64 bits.
1024         This will all get cleaned up as programs start to use ut_tv
1025         instead ut_time.
1027         * sysdeps/alpha/divrem.h: Include <sysdep.h> instead of <*/regdef.h>.
1029         * sysdeps/alpha/bsd-_setjmp.S (setjmp): Renamed entry point to
1030         _setjmp.
1032         * sysdeps/alpha/_mcount.S, sysdeps/alpha/bb_init_func.S,
1033         sysdeps/alpha/bsd-_setjmp.S, sysdeps/alpha/bsd-setjmp.S,
1034         sysdeps/alpha/copysign.S, sysdeps/alpha/divrem.h,
1035         sysdeps/alpha/fabs.S, sysdeps/alpha/ffs.S, sysdeps/alpha/htonl.S,
1036         sysdeps/alpha/htons.S, sysdeps/alpha/memchr.S,
1037         sysdeps/alpha/setjmp.S, sysdeps/alpha/strlen.S,
1038         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
1039         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
1040         sysdeps/unix/sysv/linux/alpha/llseek.S,
1041         sysdeps/unix/sysv/linux/alpha/pipe.S,
1042         sysdeps/unix/sysv/linux/alpha/sigsuspend.S,
1043         sysdeps/unix/sysv/linux/alpha/sysdep.S: Use END macro instead of
1044         .end directive.
1046         * csu/initfini.c (_fini): Tell gcc that _fini is not a leaf
1047         function by having it contain a dummy function call.
1049         * configure.in (config_machine): Don't make ELF the default for
1050         Linux/Alpha just yet (use --with-elf instead).
1051         (.init/.fini check): Generate .text to ensure function start and
1052         end are in same section.
1054         * sysdeps/unix/bsd/osf/alpha/brk.S,
1055         sysdeps/unix/sysv/linux/alpha/brk.S (__curbrk): Store the entire
1056         break value, not just the low 32 bits to accomodate large
1057         memories.
1059 Tue May 28 10:46:04 1996  Richard Henderson  <rth@tamu.edu>
1061         * sysdeps/unix/sysv/linux/alpha/brk.S: Rather than attempt to
1062         dynamically resolve _end for initializing __curbrk, support the
1063         brk(0) query idiom.
1065         * sysdeps/alpha/bb_init_func.S: Don't make `init' an external symbol.
1067         * sysdeps/alpha/bsd-_setjmp.S: The function is _setjmp not setjmp.
1069 Sun May 26 22:17:38 1996  Richard Henderson  <rth@tamu.edu>
1071         * stdlib/lcong48_r.c, stdlib/seed48_r.c, stdlib/strtod.c,
1072         stdlib/strtol.c: Include <string.h> for mem* and str* fns used.
1074 Thu May 23 02:15:56 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1076         * sysdeps/unix/sysv/linux/Makefile (headers): Add sys/io.h,
1077         sys/klog.h, and sys/kdaemon.h.
1079         * sysdeps/unix/sysv/linux/sys/io.h: New file.
1080         * sysdeps/unix/sysv/linux/sys/klog.h: Ditto.
1081         * sysdeps/unix/sysv/linux/sys/kdaemon.h: Ditto.
1083         * sysdeps/unix/alpha/sysdep.h (ret): Remove macro.  It is
1084         dangerous and unnecessary since both OSF/1 as and gas define "ret"
1085         as a pseudo-instruction.
1087 Sat Jun  1 17:18:21 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1089         * time/tzset.c (__tzset): Clear tz_rules name pointers after freeing
1090         them.  Bug found by David Mosberger-Tang.
1092         * sysdeps/posix/tempname.c (__stdio_gen_tempname): Use __ptr_t instead
1093         of PTR.
1095         * extra-lib.mk (extra-objs): Use patsubst intead of $(A:=B) syntax
1096         to work around Make bug when A contains var ref.
1098 Fri May 31 18:27:52 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1100         * string/string.h [__USE_MISC]: Declare basename; OSF/1 puts it here.
1102         * sysdeps/unix/sysv/linux/syscalls.list (getpgid, setpgid): Define __
1103         strong names and [gs]etpgid as weak aliases.
1105 Thu May 30 11:24:05 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1107         * math/math_private.h (GET_LDOUBLE_EXP): Add missing backslash.
1109         * po/header.pot: Replace with exact boilerplate pinard dictates.
1111         * sysdeps/i386/strtok.S (Lillegal_argument): Remove this code to set
1112         errno and the check that jumped to it.
1114         * sysdeps/mach/hurd/Makefile (errnos.d): Use $(sed-remove-objpfx).
1116 Thu May 30 03:21:57 1996  Ulrich Drepper  <drepper@cygnus.com>
1118         * FAQ: Document need of gperf program for developers.
1120         * elf/elf.h: Fix typos in comments.
1122         * libio/stdio.h [!__STRICT_ANSI__ || _POSIX_SOURCE]: Add
1123         prototypes for `ctermid' and `cuserid'.
1125         * locale/programs/locale.c: Switch to user selected locale
1126         before printing variables.
1128         * math/Makefile [$(long-double-fcts)==yes]: Define long-m-routines
1129         and long-c-routines.  Only if the `long double' data type is
1130         available we need to compile the functions.
1131         (libm-routines): Add $(long-m-routines).
1132         (routines): Remove isinfl, isnanl.  Use new file s_isinfl and
1133         s_isnanl instead if `long double' is available.
1135         * math/math.h: Include <mathcalls.h> again to define `long double'
1136         functions.
1138         * math/math_private.h: Define data types, prototypes and access
1139         macros for `long double'.
1141         * stdlib/stdlib.h: Add prototypes for `strtoll' and `strtoull'.
1142         [GCC2 && OPTIMIZE]: Define strto{,u}ll as inline function which
1143         calls __strto{,u}q_internal.
1145         * stdlib/strfmon.c: Replace PTR by `void *'.
1147         * stdlib/strtoq.c: Define strtoll as weak alias.
1148         * stdlib/strtouq.c: Define strtoull as weak alias.
1150         * string/tester.c: Correct `strsep' test.
1152         * sysdeps/generic/strsep.c: Make compatible with BSD version.
1153         Trailing characters of skip set are not skipped.  In this case
1154         empty tokens are returned.
1156         * sysdeps/i386/isinfl.c, sysdeps/i386/isnanl.c,
1157         sysdeps/ieee754/isinf.c, sysdeps/ieee754/isinfl.c,
1158         sysdeps/ieee754/isnan.c, sysdeps/ieee754/isnanl.c: Removed.  We
1159         now use the versions part of libm.
1161         * sysdeps/i386/strsep.S: Removed.  Generic C version is of
1162         similar speed.
1163         * sysdeps/i386/strtok.S: Remove support for `strsep'.
1165         * sysdeps/libm-i387/e_acosl.S, sysdeps/libm-i387/s_ceill.S,
1166         sysdeps/libm-i387/s_copysignl.S, sysdeps/libm-i387/s_finitel.S,
1167         sysdeps/libm-i387/s_floorl.S, sysdeps/libm-i387/s_isinfl.c,
1168         sysdeps/libm-i387/s_isnanl.c, sysdeps/libm-i387/s_nextafterl.c,
1169         sysdeps/libm-i387/s_rintl.S, sysdeps/libm-i387/s_significandl.S:
1170         New i387 specific math functions implementing `long double'
1171         versions.
1173         * sysdeps/libm-ieee754/s_ceill.c,
1174         sysdeps/libm-ieee754/s_copysignl.c,
1175         sysdeps/libm-ieee754/s_fabsl.c, sysdeps/libm-ieee754/s_finitel.c,
1176         sysdeps/libm-ieee754/s_floorl.c, sysdeps/libm-ieee754/s_isinfl.c,
1177         sysdeps/libm-ieee754/s_isnanl.c,
1178         sysdeps/libm-ieee754/s_nextafterl.c,
1179         sysdeps/libm-ieee754/s_rintl.c, sysdeps/libm-ieee754/s_scalbnl.c,
1180         sysdeps/libm-ieee754/s_significandl.c: New generic `long double'
1181         versions of libm functions.
1183         * sysdeps/libm-i387/e_exp.S: Add a few comments to explain the
1184         Intel FPU nonsense.
1186         * sysdeps/libm-i387/s_ceil.S, sysdeps/libm-i387/s_ceilf.S,
1187         sysdeps/libm-i387/s_floor.S, sysdeps/libm-i387/s_floorf.S: Correct
1188         handling of local variables.  The old version created a stack
1189         frame but stored the values outside.
1191         * sysdeps/libm-ieee754/s_isinf.c, sysdeps/libm-ieee754/s_isnan.c
1192         [!NO_LONG_DOUBLE]: Define alias with `long double' versions name.
1194 Wed May 29 12:53:10 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1196         * login/pututline_r.c: Include sys/stat.h.  Fix typos.
1198         * version.h (VERSION): Set to 1.90.
1200         * Makerules (distinfo-vars): Write extra-libs and *-routines for each
1201         of its elts.
1202         * MakeTAGS (sources): Add those sources.
1204         * MakeTAGS (all-sources): Add $(others:=.c) and $(tests:=.c).
1206 Wed May 29 08:53:08 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1208         * hurd/report-wait.c (_S_msg_report_wait): Return `itimer' for the
1209         itimer thread.
1211         * hurd/hurdinit.c (_hurd_init): Set _HURDSIG_TRACED before calling
1212         _hurd_proc_init.
1214 Wed May 29 00:52:20 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1216         * string/tester.c (main): Fix strsep tests 6, 7, 20 to expect null
1217         token instead of it being implicitly skipped.
1219         * sysdeps/i386/fpu/__math.h (logb): Correct contraint from =u to =t.
1220         Must operate on top of fp reg stack, not second from top.
1222         * extra-lib.mk (alltypes-$(lib)): Don't append $(objpfx)$(lib).so.
1223         (others): Instead, make this depend on it.
1225 Tue May 28 04:38:10 1996  Ulrich Drepper  <drepper@cygnus.com>
1227         * limits.h: Change MB_LEN_MAX to 6.  A 31-bit ISO 10646
1228         character in UTF-8 encoding has that many bytes.
1230         * locale/langinfo.h: New element _NL_CTYPE_MB_CUR_MAX.
1231         * locale/categories.def: Add description of field _NL_CTYPE_MB_CUR_MAX.
1232         * locale/Makefile (routines): Add mb_cur_max.
1233         * locale/mb_cur_max.c: New file.  This function gets called
1234         when the macro MB_CUR_MAX is used.
1235         * locale/C-ctype.c: Initialize new mb_cur_max field.
1236         * locale/localeinfo.h: Change magic value because of incompatible
1237         change.
1238         * locale/programs/ld-ctype.c: Determine value of mb_cur_max
1239         according to current character set and write it out with the rest.
1240         * stdlib/stdlib.h (MB_CUR_MAX): Not constant anymore.  Get value
1241         according to currently used locale for category LC_CTYPE by
1242         calling the function __ctype_get_mb_cur_max.
1244 Tue May 28 03:27:46 1996  Ulrich Drepper  <drepper@cygnus.com>
1246         * FAQ:  Fix some typos.
1247         Tell that for Linux the kernel header files are necessary.
1249         * PROJECTS: New file.  List of open jobs for glibc.
1250         * Makefile (distribute): Add PROJECTS.
1252         * crypt/GNUmakefile (headers): New variable.  Mention crypt.h.
1253         * crypt/crypt.h: Header for crypt functions.
1255         * elf/elf.h: Add some new constants from recent Cygnus ELF
1256         header files.
1258         * login/getutid_r.c: Test for correct type.
1259         Don't depend on ut_type and ut_id unless _HAVE_UT_TYPE and
1260         _HAVE_UT_ID resp. are defined.
1261         Make really compliant with specification.
1263         * login/getutline_r.c, login/pututline_r.c: Don't depend on
1264         ut_type and ut_id unless _HAVE_UT_TYPE and _HAVE_UT_ID resp. are
1265         defined.
1266         Make really compliant with specification.
1268         * login/setutent_r.c: Don't depend on ut_type and ut_id unless
1269         _HAVE_UT_TYPE and _HAVE_UT_ID resp. are defined.
1271         * login/login.c, login/logout.c, login/logwtmp.c: Complete
1272         rewrite.  Now based on getut*/setut* functions.
1274         * stdlib/strtol.c: Undo changes of Wed May 22 01:48:54 1996.
1275         This prevented using this file in other GNU packages.
1277         * sysdeps/gnu/utmpbits.h: Define _HAVE_UT_TYPE, _HAVE_UT_ID,
1278         and _HAVE_UT_TV because struct utmp has these members.
1280         * sysdeps/libm-i387/e_exp.S: Correct exp(+-Inf) case.
1282         * utmp.h: New file.  Wrapper around login/utmp.h.
1284 Tue May 28 13:11:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1286         * elf/dl-error.c (struct catch): New type.
1287         (catch): New static variable, struct catch *.
1288         (catch_env, signalled_errstring, signalled_objname): Variables removed.
1289         (_dl_signal_error): If CATCH is non-null, set its errstring and
1290         objname members and jump to CATCH->env.  If it is null, call
1291         _dl_sysdep_fatal with a standard message.
1292         * elf/rtld.c (dl_main): Explode `doit' function into dl_main's body.
1293         No longer use _dl_catch_error.
1295         * Makerules (sed-remove-objpfx): Avoid extra space in regexp due to
1296         continuation line.
1298         * sysdeps/unix/sysv/linux/i386/socket.S: Fix off-by-one error in
1299         setting %ecx to 2nd syscall arg: we have pushed nothing, so function
1300         args are found at 4(%esp), not 8(%esp).
1302 Mon May 27 10:10:00 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1304         * Makefile ($(includedir)/stubs.h): Add missing backslash.
1306         * sysdeps/unix/sysv/linux/i386/brk.c (__curbrk): Initialize it so it
1307         can be aliased.
1309         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=termios] (headers):
1310         Append termio.h.
1312         * Makefile ($(includedir)/stubs.h): Print a msg if we do nothing.
1314         * misc/sgtty.h: Add forward decl of struct sgttyb in case it is never
1315         defined.
1317         * sysdeps/unix/sysv/linux/termio.h: New file.
1318         * sysdeps/unix/sysv/linux/Dist: Add it.
1320         * sysdeps/unix/sysv/linux/ioctl-types.h: New file, wrapper around
1321         kernel header <asm/termios.h>.
1323         * misc/Makefile (headers): Add ioctl-types.h.
1324         * sysdeps/generic/ioctl-types.h: New file.
1325         * misc/sys/ioctl.h: Include <ioctl-types.h>.
1326         (struct tchars, struct ltchars, struct sgttyb, struct winsize,
1327         struct ttysize): Types moved there.
1329         * Makefile ($(includedir)/stubs.h): Don't touch target if new one is
1330         identical.
1332         * time/Makefile (z.% rule): Generate generic zone%/ rule after
1333         zone%/right/ and zone%/posix/ rules so they match first.
1335 Sun May 26 15:15:08 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1337         * features.h [_GNU_SOURCE] (_BSD_SOURCE, _SVID_SOURCE,
1338         _POSIX_SOURCE, _POSIX_C_SOURCE): Define these.
1340         * time/Makefile (tzcompile): Add missing backslash.
1342         * stdlib/ldiv.c: Deansideclized.
1344         * wctype/wctype.h (__need_wint_t): Define this and include stddef.h.
1345         [! _WINT_T] (wint_t): Conditionalize typedef on this in case pre-2.7.3
1346         stddef.h doesn't define it.
1347         * wcsmbs/wchar.h: Likewise.
1348         * stdlib/strtod.c: Likewise.
1350         * wcsmbs/wcstok.c: Fix argument name typo.
1352 Sun May 26 19:39:53 1996  Ulrich Drepper  <drepper@cygnus.com>
1354         * intl/loadmsgcat.c (_nl_load_domain): Test correct variable
1355         after malloc.
1357         * string/Makefile (tester-ENV): New variable to suppress message
1358         translation in test.
1360         * string/tester.c: Add tests for strtok_r and strsep.
1362         * sysdeps/i386/i486/strcat.S: Correct some more 8bit operation
1363         <-> 32 bit operand conflicts.
1365         * sysdeps/i386/strsep.S: Wrapper around <sysdeps/i386/strtok.S>
1366         to produce strsep function.
1367         * sysdeps/i386/strtok.S: Optimized implementation of strtok
1368         function.
1369         * sysdeps/i386/strtok_r.S: Wrapper around <sysdeps/i386/strtok.S>
1370         to produce strtok_r function.
1372         * sysdeps/generic/strtok.c: Moved here from string/strtok.c.
1373         Corrected example in comment.
1375         * string/Makefile (routines): Add strtok_r.
1376         * sysdeps/generic/strtok_r.c: New file.  Implement reentrant version
1377         of strtok_r.
1378         * string/string.h: Add prototype for strtok_r.
1379         * wcsmbs/wcstok.c: Handle illegal SAVE_PTR argument the same
1380         as in strtok_r.
1382 Sun May 26 13:28:23 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1384         * time/tzset.c (__tzset): Ignore leading : in $TZ; always try tzfile
1385         first and fall back to 1003.1 syntax only if it fails.
1387         * time/Makefile (install-others): Also install posix/ZONE and
1388         right/ZONE for each ZONE in $(zonenames).
1389         (z.% rule): Generate rules for right/ZONE and posix/ZONE targets too,
1390         the difference begin leapseconds vs /dev/null as 3rd dep.  For
1391         original ZONE targets use $(leapseconds), to be set in Makeconfig.
1392         (target-zone-flavor): New variable.
1393         (tzcompile): Use it to get the right -d for posix/ and right/ flavors.
1394         * Makeconfig (leapseconds): New variable.
1396         * mach/Machrules (%.udeps rule): Depend on Machrules.
1397         Emit deps for .uh and .__h files.
1398         (%.uh, %.__h rules): Don't depend on %.defs; use #include <$*.defs>
1399         instead.
1401 Sun May 26 01:06:47 1996  Ulrich Drepper  <drepper@cygnus.com>
1403         * stdlib/Makefile (routines): Add llabs, lldiv.
1404         * stdlib/llabs.c: New file.  Implementation of return
1405         absolute value of long long argument.
1406         * stdlib/lldiv.c: New file.  Implementation of division with remainder
1407         of long long argument.
1408         * stdlib/stdlib.h [__USE_GNU] (lldiv_t): New type for lldiv
1409         function.
1410         Define prototypes for lldiv and llabs functions.
1412         * locale/C-collate.c: Initialize _NL_COLLATE_NRULES element.
1414         * stdlib/strtod.c: Replace wchar_t with wint_t.  The later is
1415         really the type for a single wide character.
1417         * string/strxfrm.c (print_val): Define separate version for
1418         use as wcsxfrm.  Here we don't need UTF8 encoding.
1420         * wcsmbs/wchar.h:  gcc-2.7.2-960517 finally introduces wint_t
1421         in <stddef.h>.  Use this value and only for older gcc version
1422         define in place.
1423         (uwchar_t): Remove definition.
1425         * wcsmbs/wcscmp.c, wcsmbs/wcscoll.c, wcsmbs/wcsncmp.c,
1426         wcsmbs/wcsxfrm.c, wcsmbs/wmemcmp.c: : Don't use uwchar_t as unsigned
1427         type.  wint_t is intended for this.
1429 Sat May 25 14:10:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1431         * sysdeps/unix/bsd/direntry.h: Use [1] instead of [0] for d_name to
1432         quiet -ansi -pedantic.
1433         * sysdeps/unix/common/direntry.h: Likewise.
1435         * login/Makefile (headers): Add lastlog.h.
1436         * login/lastlog.h: New file.
1438         * login/Makefile (CFLAGS): Don't append -D_THREAD_SAFE.
1439         * login/utmp.h [_REENTRANT || _THREAD_SAFE]: Replace this conditional
1440         with #ifdef __USE_REENTRANT.
1442         * features.h (__GNU_LIBRARY__): Set to 6.
1443         [_GNU_SOURCE] (_POSIX_SOURCE, _POSIX_C_SOURCE, _BSD_SOURCE,
1444         _SVID_SOURCE): Make sure they are all defined.
1446         * sysdeps/unix/sysv/linux/gnu/types.h: Instead of including
1447         <linux/posix_types.h>, define _LINUX_TYPES_DONT_EXPORT and then
1448         include <linux/types.h>.
1450         * resource/sys/resource.h: Remove trailing commas from enums.
1452 Fri May 24 17:30:50 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1454         * sysdeps/generic/netinet/in.h: Remove trailing commas from enums.
1455         * sysdeps/unix/sysv/linux/netinet/in.h: Likewise.
1457         * login/getutline_r.c: Include string.h.
1459         * Rules (static-only-routines): Restore the rule to make these .so's
1460         empty objects.
1462         * login/pututline_r.c: Use struct assignment instead of memcpy.
1464         * login/getutline_r.c: Use strncmp instead of comparing two pointers
1465         that will only be equal if you are overwriting the data and screwing
1466         yourself anyway.
1468 Fri May 24 02:31:36 1996  Ulrich Drepper  <drepper@cygnus.com>
1470         * sysdeps/unix/sysv/linux/speed.c: Add new speed value 460800.
1472 Thu May 23 23:09:33 1996  Ulrich Drepper  <drepper@cygnus.com>
1474         * FAQ: Add answer for 100% source code compatibility to Linux
1475         libc by David Mosberger-Tang.
1477         Update from bind-4.3.4-T3B.
1478         * inet/arpa/inet.h: Add prototypes for inet_pton, inet_ntop,
1479         inet_nsap_addr, and inet_nsap_ntoa.
1480         * resolv/gethnamaddr.c: Correct compatibility problems (sprintf),
1481         remove fourth argument to inet_pton and correct handling of
1482         host_addr passing.
1483         * resolv/inet_ntop.c: Correct compatibility problems (sprintf).
1484         * resolv/inet_pton.c: Remove fourth argument.
1485         * resolv/resolv.h: Remove prototypes for inet_nsap_addr and
1486         inet_nsap_ntoa.  Now in <arpa/inet.h>.
1488         * stdlib/gmp-impl.h: Add prototypes for internal functions.
1490 Thu May 23 22:49:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1492         * Rules (subdir_install): Remove dep on sor-$(subdir).
1493         (static-only-routines): Removed variable and associated rules.
1495 Wed May 22 00:40:50 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1497         * sysdeps/unix/sysv/linux/alpha/speed.c (speeds): Add entry for
1498         460800 baud.
1500         * sysdeps/unix/sysv/linux/alpha/statbuf.h: New file.
1502         * sysdeps/unix/sysv/linux/alpha/Makefile (headers): Add
1503         alpha/ptrace.h.
1504         * sysdeps/unix/sysv/linux/alpha/alpha/ptrace.h: New file.
1506         * sysdeps/libm-ieee754/s_scalbnf.c: Call __scalbnf instead of
1507         scalbnf.
1509         * sysdeps/generic/sigset.h (__sigismember, __sigaddset,
1510         __sigdelset): Add declaration to keep ANSI compilers quiet.
1512         * sysdeps/alpha/__math.h (cabs): Remove underscores from struct
1513         __cabs_complex member names in call to __hypot().
1515         * sysdeps/alpha/copysign.S, sysdeps/alpha/fabs.S: New files.
1517         * sysdeps/alpha/divrem.h: Renamed from sysdeps/alpha/divrem.S to avoid
1518         name collision with math library.
1520         * sysdeps/alpha/divl.S, sysdeps/alpha/divlu.S, sysdeps/alpha/divq.S,
1521         sysdeps/alpha/divqu.S, sysdeps/alpha/reml.S, sysdeps/alpha/remlu.S,
1522         sysdeps/alpha/remq.S, sysdeps/alpha/remqu.S: Include divrem.h instead
1523         of divrem.S.
1525         * sysdeps/unix/alpha/sysdep.h: Include regdef.h.  Define LEAF macro
1526         to simplify declaration of leaf functions.
1528         * sysdeps/alpha/_mcount.S, sysdeps/alpha/bb_init_func.S,
1529         sysdeps/alpha/bsd-_setjmp.S, sysdeps/alpha/ffs.S,
1530         sysdeps/alpha/htonl.S, sysdeps/alpha/htons.S, sysdeps/alpha/memchr.S,
1531         sysdeps/alpha/setjmp.S, sysdeps/alpha/strlen.S,
1532         sysdeps/alpha/udiv_qrnnd.S, sysdeps/unix/sysv/linux/alpha/brk.S,
1533         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
1534         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
1535         sysdeps/unix/sysv/linux/alpha/pipe.S,
1536         sysdeps/unix/sysv/linux/alpha/sigsuspend.S,
1537         sysdeps/unix/sysv/linux/alpha/syscall.S,
1538         sysdeps/unix/sysv/linux/alpha/start.S,
1539         sysdeps/unix/sysv/linux/alpha/sysdep.S: Remove include of regdef.h.
1540         sysdep.h includes it now. Replace ENTRY by LEAF with appropriate
1541         framesize declaration.  Replace "lda pv,sym/jsr pv" by "jsr sym".
1543         * sysdeps/unix/sysv/linux/alpha/sysdep.h (NO_UNDERSCORES): Don't
1544         define.
1546         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Added getsockopt,
1547         ptrace, and sysctl.
1549         * sysdeps/unix/sysv/linux/alpha/profil-counter.h: File removed.
1551         * sysdeps/unix/sysv/linux/alpha/ioperm.c: Modify to support
1552         dynamic recognition of platform type.
1553         (_bus_base): New function.
1555         * sysdeps/unix/sysv/linux/alpha/llseek.S: New file.
1557         * sunrpc/rpc/rpc.h, sunrpc/rpc/svc.h: Avoid nested comments since
1558         they produce ugly warnings by gcc.
1560         * posix/sys/types.h [__USE_MISC]: Add typedef for ulong.
1562 Wed Mar 27 10:26:21 1996  David Mosberger-Tang  <davidm@azstarnet.com>
1564         * sysdeps/alpha/setjmp.S: Must establish global pointer before
1565         address of __sigsetjmp_aux can be loaded.
1567 Wed May 22 22:10:01 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1569         * stdlib/canonicalize.c: New file.
1570         * stdlib/stdlib.h: Declare canonicalize_file_name, realpath.
1571         * stdlib/Makefile (routines): Add canonicalize.
1573         * posix/unistd.h: Declare __canonicalize_directory_name_internal.
1575 Thu May 23 00:01:10 1996  Ulrich Drepper  <drepper@cygnus.com>
1577         * db/recno/rec_seq.c: Prevent `sccsid' definition by using the
1578         same #if condition as in the other db files.
1580         * intl/Makefile: Add -Wno-unused CFLAGS for compilation of
1581         bindtextdom.c, finddomain.c, and localealias.c.
1583         * intl/dcgettext.c: Don't define prototype for getcwd() when
1584         compiling in glibc.
1586         * libio/cleanup.c: Add prototype for _IO_register_cleanup.
1588         * libio/filedoalloc.c, libio/fileops.c, libio/iopopen.c: Don't
1589         define _POSIX_SOURCE unconditionally.
1591         * libio/filedoalloc.c, libio/iopopen.c: Include <unistd.h> if
1592         compiling in glibc.
1594         * libio/fileops.c (_IO_file_close_it): Don't sync file, call
1595         flush instead.  This relaxes the rules from POSIX.1 about
1596         changing the active handle a bit.
1598         * libio/iofopncook.c (struct _IO_cookie_file): Move definition
1599         into <libio.h>.
1600         Add prototypes for local functions to prevent warnings.
1602         * libio/iopopen.c: Change prototypes for _IO_fork, _IO_pipe, and
1603         _IO_dup2 to contain complete parameter list.
1605         * libio/libio.h: Add definition of struct _IO_cookie_file.
1607         * libio/libioP.h: Add prototypes for _IO_vasprintf, _IO_vdprintf,
1608         and _IO_vsnprintf.
1610         * libio/memstream.c: Include <stdio.h>.
1612         * libio/stdio.h: Add prototypes for fopencookie,
1613         __stdio_gen_tempname, __vfscanf, __vsscanf, and __vsnprintf.
1615         * libio/strops.c: Avoid useless expression in `for' initializer.
1617         * locale/findlocale.c: Add some casts to prevent warnings.
1619         * locale/programs/locfile.c (write_locale_data): Don't use
1620         double `/' in locale binary file.
1622         * posix/unistd.h: Remove prototype for `reboot'.
1624         Update from bind-4.9.4-T1A.
1625         * resolv/Makefile (routines): Add inet_ntop and inet_pton.
1626         * resolv/arpa/nameser.h: Add definition of IN6ADDRSZ.
1627         * resolv/gethnamaddr.c, resolv/getnetnamadr.c, resolv/res_comp.c,
1628         resolv/res_debug.c, resolv/res_init.c
1630         * resolv/inet_ntop.c, resolv/inet_pton.c: New files.
1632         * resolv/resolv.h: Add RES_USE_INET6 flag.
1633         (__dn_isvalid): Renamed to __res_dnok.
1634         Add prototypes for __res_ownok and __res_mailok.
1636         * stdio-common/Makefile: Add -Wno-unused to CFLAGS for _itoa.c.
1638         * stdio-common/getline.c, stdio-common/vfscanf.c,
1639         sysdeps/posix/tempname.c: Don't use <ansidecl.h> anymore.
1641         * sysdeps/unix/sysv/linux/Makefile [$subdir == misc]
1642         (sysdep_routines): Add s_reboot.
1643         (install-others): Add $(includedir)/sys/syscall.h.
1644         New rule for $(includedir)/sys/syscall.h to produce from
1645         <asm/unistd.h>.
1647         * sysdeps/unix/sysv/linux/reboot.c: New file.  Make single
1648         argument function call 3 argument system call.
1650         * sysdeps/unix/sysv/linux/sys/reboot.h: New file.  Linux specific
1651         definition for reboot function.
1653         * sysdeps/unix/sysv/linux/syscall.h: Remove old and obsolete
1654         comment.
1656         * sysdeps/unix/sysv/linux/syscalls.list: Rename function for
1657         reboot syscall to __syscall_reboot.
1659         * wcsmbs/wchar.h: Protect prototypes for wcstof and wcstold by
1660         __USE_GNU, not USE_GNU.
1662 Tue May 21 21:55:49 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
1664         * locale/programs/charset.c, locale/programs/ld-collate.c:
1665         Add casts to prevent warnings on 64-bit machines.
1667         * locale/programs/ld-monetary.c: Don't do unnecessary tests for
1668         int_frac_digits and frac_digits which only produce warnings.
1670 Mon May 13 23:45:29 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
1672         * inet/arpa/inet.h: Backup return type of inet_addr to u_long.
1673         * resolv/inet_addr.c: Likewise.
1675         * resolv/Makefile (distribute): Add res_hconf.h
1676         (routines): Add res_hconf.
1678         * resolv/gethnamaddr.c: Add support for /etc/host.conf.
1680         * resolv/res_init.c: Initialize /etc/host.conf reader.
1682         * resolv/res_hconf.c, resolv/res_hconf.h: New files.
1683         Implementation of reading /etc/host.conf.
1685 Wed May 22 21:21:15 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1687         * Rules (%.out rules): Prepend $($*-ENV) to the command.
1689         * sysdeps/unix/sysv/linux/i386/brk.c (___brk_addr): Define as weak
1690         alias for __curbrk.
1692 Wed May 22 19:37:27 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1694         * hurd/hurdexec.c (_hurd_exec): Pass INIT_TRACEMASK.
1695         * hurd/hurdmsg.c (set_int): Support INIT_TRACEMASK.
1697 Wed May 22 18:47:31 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1699         * sysdeps/mach/hurd/getcwd.c
1700         (_hurd_canonicalize_directory_name_internal): New function, broken out
1701         of __getcwd.
1702         (__getcwd): Use it.
1703         (__canonicalize_directory_name_internal): New function using it.
1705         * sysdeps/posix/getcwd.c (__canonicalize_directory_name_internal): New
1706         function, broken out of __getcwd.
1707         (__getcwd): Use it.
1709 Wed May 22 18:14:05 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1711         * string/argz-create.c (__argz_create): Correctly calculate length.
1713         * string/argz-extract.c (__argz_extract): Add terminating 0 entry.
1714         * hurd/hurdstartup.c (_hurd_startup): ... and don't so here.
1716 Wed May 22 17:22:14 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1718         * posix/glob.c [VMS]: Don't include <pwd.h>.
1719         [HAVE_VMSDIR_H]: Include "vmsdir.h".
1720         (glob) [VMS]: Don't grok ~.
1722 Wed May 22 14:46:53 1996  Miles Bader  <miles@gnu.ai.mit.edu>
1724         * hurd/hurdstartup.c (_hurd_startup): Terminate the vectors we get
1725         back from argz_extract.
1727 Wed May 22 13:56:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1729         * configure.in: Remove checks for objdump, objcopy, and awk.
1730         * config.make.in (OBJDUMP, OBJCOPY, AWK): Variables removed.
1731         * Makefile (distribute): Remove extract-dynsym.
1732         * extract-dynsym: File removed.
1734 Tue May 21 22:17:45 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1736         * termios/cfmakeraw.c: Set MIN to 1 and TIME to 0.
1738 Wed May 22 01:48:54 1996  Ulrich Drepper  <drepper@cygnus.com>
1740         * stdlib/strtol.c [!QUAD] (ULONG_MAX, LONG_MAX): Define these
1741         macros if they are not available.
1742         (WEAKNAME): New macro to declare argument as weak.
1743         Define function with __ prefix and add normal name as weak alias.
1745         * sysdeps/posix/euidaccess.c (S_IROTH, S_IWOTH, S_IXOTH): Defines
1746         these macros if not already available based on R_OK, W_OK, and
1747         X_OK.
1749 Tue May 21 18:48:46 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1751         * misc/sys/syslog.h (__need___va_list): Define this instead of
1752         __need_va_list before including <stdarg.h>.
1754         * Makerules (o-iterator): Use $(object-suffixes-left) instead
1755         of $(object-suffixes) to produce repetitions; this is used for other
1756         lists than just that one.
1757         [versioned]: Use $(o-iterator) properly.
1759         * sysdeps/unix/sysv/linux/Implies: Include `gnu'.
1760         * sysdeps/mach/hurd/Implies: Likewise.
1762 Sat May 18 02:57:46 1996  Ulrich Drepper  <drepper@cygnus.com>
1764         * login/Makefile: New file.  This directory contains functions
1765         for user administration.
1766         * Makefile (subdirs): Add login.
1768         * misc/Makefile (headers): Remove utmp.h.  Now in login/utmp.h.
1769         (extra-libs, libutil-routines): Ditto.
1770         * misc/login.c, misc/login_tty.c, misc/logout.c, misc/logwtmp.c,
1771         misc/utmp.h: Moved to misc/.
1772         * login/login.c, login/login_tty.c, login/logout.c,
1773         login/logwtmp.c, login/utmp.h: Moved to here from misc/.
1775         * login/utmp.h: Split file.  Definitions of data structures
1776         and constants are now in the system dependent utmpbits.h file.
1778         * login/setutent_r.c, login/setutent.c, login/endutent_r.c,
1779         login/endutent.c, login/getutent_r.c, login/getutent.c,
1780         login/getutid_r.c, login/getutid.c, login/getutline_r.c,
1781         login/getutline.c, login/pututline_r.c, login/pututline.c:
1782         New files.  Routines to handle utmp-style files.
1784         * sysdeps/gnu/utmpbits.h: New file.  Contains GNU/Linux
1785         specific definitions of utmp data structures and constants.
1787         * sysdeps/unix/sysv/utmpbits.h: Renamed from sysdeps/unix/sysv/utmp.h.
1789         * sysdeps/generic/utmpbits.h: New file.  Generic (BSDish) version of
1790         definitions of utmp data structures and constants.
1792 Fri May 17 00:01:31 1996  Ulrich Drepper  <drepper@cygnus.com>
1794         * locale/C-monetary.c: Default value for mon_decimal_point should be
1795         '.'.
1797         * stdio-common/printf.h: Remove Linux libc compatibility stuff.
1798         Add `extra' flag.  Currently used in __printf_fp.
1800         * stdio-common/printf_fp.c (__guess_grouping): Renamed from
1801         `guess_grouping' and extend visibility to extern.  This function
1802         is now used in `strfmon'.
1803         (__printf_fp): Recognize new bit flag in info struct.  This
1804         triggers to use the grouping information and decimal point from
1805         the LC_MONETARY category instead of the LC_NUMERIC category.
1807         * stdio-common/vfprintf.c (process_arg): Correct major bug.  In
1808         `complicated' loop we must not use the varargs because the args
1809         are already available in the ARGS_VALUE array.
1811         * stdlib/Makefile (headers): Add monetary.h.
1812         (routines): Add strfmon.
1813         * stdlib/monetary.h: New file.  Header for strfmon function.
1814         * stdlib/strfmon.c: New file.  Implement strfmon function to print
1815         monetary amounts according to current locale's rules.
1817         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: The kernel header is
1818         now (>= Linux-1.3.100) called <asm/vm86.h>.
1820 Thu May 16 00:31:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1822         * Makerules [versioned]: Make symlinks in the build directory, because
1823         the versioned names might be referenced by a DT_NEEDED in another
1824         library.
1826 Wed May 15 18:59:38 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1828         * manual/examples/longopt.c: Include stdlib.h and getopt.h.
1830 Tue May 14 03:36:21 1996  Ulrich Drepper  <drepper@cygnus.com>
1832         * sysdeps/unix/sysv/linux/Makefile [$subdir == misc] (headers):
1833         Add sys/acct.h and sys/sysctl.h.
1835 Tue May 14 19:42:04 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1837         * sysdeps/generic/strrchr.c: Deansideclized.
1839         * elf/Makefile (ldd): Depend on Makefile.
1840         Find ld.so in $(slibdir) instead of $(libdir).
1842         * sysdeps/i386/strrchr.S: Use `testl $3, %esi' instead of `testb $3,
1843         %esi'; gas misassembles the latter into `testb $3, %dh'.
1845         * mach/Machrules (%.udeps rule): Do $(make-target-directory) first.
1847 Tue May 14 16:38:44 1996  David Mosberger-Tang <davidm@AZStarNet.com>
1849         * sunrpc/getrpcent.c (interpret): Declare args.  Rewrite parsing using
1850         strpbrk.
1852 Tue May 14 20:18:38 1996  Ulrich Drepper  <drepper@cygnus.com>
1854         * time/Makefile (routines): Add strptime.
1855         * time/time.h: Add prototype for strptime.
1856         * time/strptime.c: New file.  Implementation according to XPG4.
1858 Tue May 14 14:07:10 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1860         * libc-symbols.h (lint): Macro removed.  The sunrpc code does some
1861         really stupid things #ifdef lint.
1863         * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter): Fix
1864         struct member name: sc_eip -> eip.
1866 Mon May 13 19:52:33 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1868         * Makerules (stub-$(subdir)): Put cmds including cd inside (...) with
1869         output redirect outside it.
1871         * elf/Makefile (subdir_lib): Depend on ld.so.
1873 Sun May 12 22:52:22 1996  Bruce Elliott  <belliott@accessone.com>
1875         * stdio-common/vfprintf.c: Correct handling of unsigned short
1876         values.
1878 Mon May 13 12:03:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1880         * extra-lib.mk (alltype-$(lib)): Put libs in $(objpfx) instead of
1881         $(common-objpfx).
1882         * Makerules [install-lib.a]: Find them there.
1884         * sysdeps/unix/sysv/linux/i386/profil-counter.h: New file.
1886         * extra-lib.mk: Skip the hair if $(object-suffixes-$(lib)) is empty.
1888         * posix/glob.h [_AMIGA]: Remove `struct stat;' forward decl.
1890         * configure.in (--with-fp): Note in help string that it's the default.
1892         * locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t
1893         instead of unsigned int for map_collection_max and map_collection_act.
1895         * stdio-common/vfprintf.c [USE_IN_LIBIO] (flockfile, funlockfile):
1896         Macros removed; they are in <stdio.h>.
1897         * stdio-common/vfscanf.c: Likewise.
1899         * posix/glob.c [_AMIGA]: Don't include <pwd.h>.
1900         (glob): Remove bogus & in call to globfree.
1901         [_AMIGA]: Use AmigaDOS file name conventions.
1903         * time/Makefile (zonenames): Target removed.
1904         (extra-objs): Remove it from here.
1905         Include the z.* files directly instead of including zonenames; use
1906         `-include' to not complain before they exist.
1908         * sysdeps/unix/Makefile: Find sysd-syscalls and s-proto.d with
1909         $(common-objpfx) instead of $(objpfx).
1911         * sysdeps/unix/bsd/telldir.c (seekdir, telldir): Use new struct member
1912         names without __.
1914         * Makerules [install-lib-non.a]: Find these things with $(objpfx)
1915         instead of $(common-objpfx).
1917         * Makeconfig (sysdep-configures): New variable.
1918         (config.status): Depend on $(sysdep-configures).
1920 Fri May 10 20:07:52 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1922         * sysdeps/unix/sysv/linux/profil.c: New file.
1924 Fri May 10 19:59:50 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1926         * sysdeps/m68k/Makefile (CFLAGS-setjmp.c): New variable.
1928 Fri May 10 19:55:42 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1930         * shlib-versions: Use libm=6 and libc=6 for m68k-linux.
1932 Sun May 12 11:16:58 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1934         * string/envz.c: Fix uses of unsigned to size_t.
1936         * Makerules ($(libdir)/libc.so): Make the file an ld script.
1938         * sysdeps/mach/hurd/configure.in: Don't grok --with-hurd option.
1940         * sysdeps/mach/configure.in: File removed.
1941         * sysdeps/mach/configure: File removed.
1943         * mach/Machrules (%.udeps rule): Write deps for %_server.[ch] too.
1944         (%_server.[ch] rule): Don't depend on %.defs; use #include to get
1945         installed .defs file.
1947         * stdio-common/vfprintf.c (flockfile, funlockfile): Define to
1948         nothing for stdio.  Fix fUNlockfile -> funlockfile for libio.
1949         * stdio-common/vfscanf.c: Likewise.
1951 Sat May 11 13:43:41 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
1953         * hurd/hurdfault.c: Include faultexc_server.h instead of faultexc.h.
1955         * mach/Machrules (%.ir rule): Don't produce deps for imports.
1957         * elf/dl-fini.c (_dl_fini): Clear L->l_init_called after calling fn.
1959         * Makerules (install): Depend on $(slibdir)/libc.so$(libc.so-version).
1960         [!subdir] ($(libdir)/libc.so, $(common-objpfx)/libc-syms.so): Protect
1961         these targets and install dep on $(libdir)/libc.so with this.
1963         * hurd/Makefile: Removed all rules and defns for using code from Hurd
1964         sources and installing headers from there.
1966         * sysdeps/mach/hurd/errnos.awk: Set in_mach_errors to FILENAME when we
1967         set it.  In Mach error matching clause, only match if FILENAME is
1968         still the same value.
1970         * sysdeps/mach/hurd/Makefile: Don't include sysdeps/mach/Makefile;
1971         $(mach-srcdir) no longer exists.
1972         (hurd-srcdir): Variable removed.
1973         (includes): Don't append -I$(hurd-srcdir).
1974         (last-includes): Variable removed.
1975         Remove vpath specs using $(hurd-srcdir).
1976         (mach-errno-h): New canned sequence.
1977         ($(common-objpfx)errnos.d): New target, generated included makefile
1978         to determine absolute file names of Mach headers to search for error
1979         codes and set variable mach-errnos-deps.
1980         ($(common-objpfx)stamp-errnos): Depend on $(mach-errnos-deps) instead
1981         of prior explicit list.
1982         (generated): Add errnos.d, stamp-errnos.
1984         * mach/Machrules (some-if-rtn): New variable and target; compute deps
1985         of some if routine and make all if routines depend on that .d file
1986         instead of static list of .h files.
1988         * mach/Makefile (mach/mach_interface.defs,
1989         mach/memory_object_user.defs): Targets removed.
1990         ($(objpfx)mach-syscalls.mk): Tweak this kludge so it doesn't depend
1991         directly on Mach sources.
1993         * sysdeps/mach/Makefile (mach-srcdir): Variable removed.
1994         (includes): Don't append -I$(mach-srcdir).
1995         Remove vpath specs using $(mach-srcdir).
1997         * hurd/Makefile (server-interfaces): Add faultexc.
1998         (sig): Remove it from here.
1999         (fault%.[ch]): Rule removed.
2000         (MIGFLAGS-faultexc): New variable.
2002         * hurd/faultexc.defs: New file.
2004         * mach/Machrules (%.ustamp rule): Pass $(MIGFLAGS-$*) to mig.
2005         (%_server.[ch] rule): Likewise.
2007         * mach/Makefile: Removed all rules and defns for using code from Mach
2008         sources and installing headers from there.
2010         * Makeconfig [$(build-shared)=yes] (link-libc): Append
2011         $(libc.so-version) to libc.so.
2013 Fri May 10 18:36:14 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2015         * mach/Machrules (%.ustamp rule): Don't depend on %.defs.
2016         (%.udeps): New rule parallel to that one, generating included
2017         makefiles with -M output from `#include <%.defs>'.
2019         * Makerules (sed-remove-objpfx): Remove space before \ at eol.
2021         * Makefile (distribute): Add FAQ.
2022         * FAQ: New file contributed by drepper.
2024         * time/Makefile (headers): Add timebits.h.
2025         * sysdeps/unix/sysv/linux/timebits.h: New file.
2026         * sysdeps/stub/timebits.h: New file.
2027         * time/time.h (CLK_TCK): Define to CLOCKS_PER_SEC.
2028         (CLOCKS_PER_SEC): Remove this macro.  Instead #include <timebits.h>.
2030 Fri May 10 16:22:44 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
2032         * string/argz-create.c (__argz_create): Restore const keyword to
2033         ARGV parm.
2034         * string/argz.h (__argz_create, argz_create): Restore const
2035         keyword.
2036         * string/envz.c (envz_get): Don't declare ENTRY const.
2038 Fri May 10 11:48:03 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2040         * string/argz.h (argz_create): Fix param type.
2041         * string/argz-create.c (__argz_create): Remove const from param type.
2042         * string/envz.c (envz_get): Remove const from return type.
2044 Fri May 10 09:41:54 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
2046         * string/argz.h (__argz_create, argz_create): Omit const keyword
2047         from declaration of ARGV.
2048         * string/envz.h (envz_get): Omit const from declaration of return
2049         type.
2051 Thu May  9 09:17:46 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2053         * aclocal.m4 (AC_FD_MSG, AC_FD_CC): Fix these for autoconf weirdness.
2055         Cleanups in sunrpc code from NIIBE Yutaka <gniibe@mri.co.jp>.
2056         * sunrpc/clnt_tcp.c (clnttcp_create): Don't close *SOCKP if it's -1.
2057         * sunrpc/clnt_simp.c (callrpc): Don't close CRP->socket if it's
2058         RPC_ANYSOCK.
2059         * sunrpc/pmap_clnt.c (pmap_set): Don't close SOCKET, since
2060         CLNT_DESTROY already has.
2061         (pmap_unset): Likewise.
2062         * sunrpc/pm_getmaps.c (pmap_getmaps): Likewise.
2063         * sunrpc/pm_getport.c (pmap_getport): Likewise.
2064         * sunrpc/pmap_rmt.c (pmap_rmtcall): Likewise.
2065         * sunrpc/portmap.c (callit): Likewise.
2067         * Makerules (versioned): Strip whitespace.
2069         * Rules (static-only-routines rule): Remove spurious space in dep.
2071         * misc/getusershell.c: Undo changes of 7 May 96 (rev 1.6).
2072         Cast string constants to char *.
2074         * posix/glob/SMakefile, posix/glob/SCOPTIONS, posix/glob/Makefile.ami:
2075         New files, AmigaDOS support from Aaron Digulla.
2076         * posix/Makefile (glob.tar): Add AmigaDOS support files.
2078         * sysdeps/unix/sysv/linux/net/if.h: New file.
2079         * sysdeps/unix/sysv/linux/Dist: Add it.
2080         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=socket] (headers): Add
2081         net/if.h.
2083         * Makeconfig (link-libc): Add libc.a after libc.so in link.
2085         * Rules (static-only-routines rule): Use empty.o instead of dummy.o.
2086         (empty.o): New target.
2087         (generated): Add empty.c, empty.o.
2089         * resolv: Code updated from BIND-4.9.3P2C3.
2091         * Rules (static-only-routines rule): Use dummy.o, not dummy.so.
2093 Wed May  8 20:04:29 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2095         * extract-dynsym: New file.
2096         * Makefile (distribute): Add it.
2097         * Rules (subdir_install): Depend on $(common-objpfx)sor-$(subdir).
2098         [! libc.so-version]: Clear static-only-routines.
2099         ($(common-objpfx)sor-$(subdir)): New target.
2100         [static-only-routines]: New static pattern rule for these .so's.
2101         * Makerules [libc.so-version] ($(slibdir)/libc.so): Target removed.
2102         [libc.so-version] ($(libdir)/libc.so, $(common-objpfx)libc-syms.so):
2103         New targets replace it.
2104         (install) [libc.so-version]: Depend on $(libdir)/libc.so instead of
2105         $(slibdir)/libc.so.
2106         * io/Makefile (static-only-routines): New variable.
2107         * configure.in: Check for tools objdump and objcopy, and for awk.
2108         * config.make.in (OBJDUMP, OBJCOPY, AWK): New variables.
2110 Thu May  9 01:24:00 1996  Ulrich Drepper  <drepper@cygnus.com>
2112         * locale/programs/config.h: Remove definition of wint_t.
2114         * locale/programs/ld-collate.c: Include <wchar.h> instead of
2115         <wcstr.h>.
2117         * manual/time.texi: Add some more description for %U and %W
2118         format of strftime.  Describe new format %V of strftime.
2120         * resolv/gethnamaddr.c: Prevent warning by preventing variable
2121         definition.
2122         * stdio-common/_itoa.c: Ditto.
2124 Tue May  7 23:43:07 1996  Ulrich Drepper  <drepper@cygnus.com>
2126         * libio/clearerr.c, libio/feof.c, libio/ferror.c, libio/fgetc.c,
2127         libio/fileno.c, libio/fputc.c, libio/freopen.c, libio/fseek.c,
2128         libio/genops.c, libio/getc.c, libio/getchar.c, libio/iofclose.c,
2129         libio/iofflush.c, libio/iofgetpos.c, libio/iofgets.c,
2130         libio/iofputs.c, libio/iofread.c, libio/iofsetpos.c,
2131         libio/ioftell.c, libio/iofwrite.c, libio/iogetdelim.c,
2132         libio/iogets.c, libio/ioputs.c, libio/iosetbuffer.c,
2133         libio/iosetvbuf.c, libio/ioungetc.c, libio/iovsprintf.c,
2134         libio/libio.h, libio/putc.c, libio/putchar.c, libio/rewind.c,
2135         libio/stdio.h, stdio-common/printf_fp.c, stdio-common/vfprintf.c,
2136         stdio-common/vfscanf.c: Prepare for reentrant libio.
2138         * libio/clearerr_u.c, libio/feof_u.c, libio/ferror_u.c,
2139         libio/fputc_u.c, libio/getc_u.c, libio/getchar_u.c,
2140         libio/iofflush_u.c, libio/putc_u.c, libio/putchar_u.c: New files.
2141         Used in reentrant libio.
2143         * misc/getusershell.c: Prevent warnings.
2145 Wed May  8 12:08:35 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2147         * Makerules (install-lib.so rules): Undouble $s in target and dep
2148         parts of o-iterator-doit defns.
2149         (unversioned libraries install rule): Fix pattern.
2151         * mach/Makefile (mach-src-headers): Use $(base-machine) instead of
2152         $(config-machine).
2153         ($(includedir)/machine): Likewise.
2155         * config.make.in (base-machine): New variable.
2156         * configure.in (machine): Move case stmt to set $machine out of sysdep
2157         dirs AC_CACHE_CHECK.
2158         (base_machine): New variable, set in that switch and AC_SUBST'd.
2160         * Makerules (stub-$(subdir)): Use file name in directory as output,
2161         since cmd is cd'd.
2163         * configure.in (MSGFMT): Use : if none found.
2165         * po/Makefile: Include ../Rules instead of ../Makerules.
2167 Tue May  7 23:18:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2169         * po/Makefile: New file.
2170         * Makefile (subdirs): Add po.
2172         * configure.in: Check for msgfmt.
2173         * config.make.in (MSGFMT): New variable.
2175 Sun May  5 23:49:10 1996  Ulrich Drepper  <drepper@cygnus.com>
2177         * misc/Makefile (routines): Add swapoff.
2179         * sysdeps/unix/sysv/linux/Dist: Add sys/quota.h.
2181         * sysdeps/unix/sysv/linux/sys/quota.h: New file.  Wrapper around
2182         kernel header file.
2184 Tue May  7 19:00:01 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2186         * string/argz-extract.c: Remove const from decl.
2187         * string/argz.h: Here too.
2189         * Makeconfig (version.mk): Fix regexp in sed cmd.
2190         Depend on $(..)Makeconfig.
2192         * GMP code updated from gmp-2.0 release.
2193         * stdlib/Makefile (mpn-routines): Removed add_1, added inlines.
2194         * sysdeps/generic/add_1.c: File removed.
2195         * stdlib/strtod.c: mp_limb is now mp_limb_t.
2196         * stdlib/fpioconst.c, stdlib/fpioconst.h: Likewise.
2197         * stdio-common/_itoa.c: Likewise.
2198         * stdio-common/printf_fp.c: Likewise.
2199         Don't include ansidecl.h.
2201         * sysdeps/mach/hurd/getcwd.c: Use io_identity instead of io_stat.
2203         * shlib-versions: New file.
2204         * Makerules (soversions.mk): New target, include file generated from
2205         shlib-versions.  Moved shared library rules before installation rules.
2206         Rewrote shared library installation rules for versioned libraries.
2207         * math/Makefile (libm.so-version): Variable removed.
2209         * sysdeps/mach/hurd/i386/exc2signal.c: Use struct hurd_signal_detail.
2211         * hurd/report-wait.c (_S_msg_describe_ports): New function.
2213         * configure.in: Add AC_PROG_LN_S check.
2214         * config.make.in (LN_S): New variable.
2216 Sun May  5 03:10:44 1996  Ulrich Drepper  <drepper@cygnus.com>
2218         * misc/efgcvt_r.c (ecvt_r): Work aroung gcc bug.  gcc does
2219         not know about weak aliases now and optimizes necessary `if'
2220         statement away.
2222         * posix/unistd.h: Add swapoff prototype.
2224         * sysdeps/generic/confname.h: Add even more POSIX.4 symbols.
2226         * sysdeps/posix/fpathconf.c (__fpathconf): Get information
2227         for _PC_PATH_MAX from fstatfs function if available.
2229         * sysdeps/posix/sysconf.c: Add code to handle _SC_AIO_LISTIO_MAX,
2230         _SC_AIO_MAX, _SC_AIO_PRIO_DELTA_MAX, _SC_DELAYTIMER_MAX,
2231         _SC_MQ_OPEN_MAX, _SC_MQ_PRIO_MAX, _SC_RTSIG_MAX,
2232         _SC_SEM_NSEMS_MAX, _SC_SEM_VALUE_MAX, _SC_SIGQUEUE_MAX, and
2233         _SC_TIMER_MAX.
2234         * sysdeps/unix/sysv/sysv4/sysconf.c: Ditto.
2236         * sysdeps/stub/swapoff.c: New file.  Stub version for swapoff
2237         function.
2239         * sysdeps/unix/syscalls.list:  Add swapoff.
2241         * sysdeps/unix/sysv/linux/Dist: Add sys/acct.h.
2243         * sysdeps/unix/sysv/linux/Makefile [$(subdir) == misc]
2244         (sysdep_routines): Add mount, umount, llseek, setfsgid, setfsuid,
2245         sysinfo, and uselib.
2246         (headers): Add sys/sysinfo.h.
2248         * sysdeps/unix/sysv/linux/gethostid.c: Prevent warning.
2250         * sysdeps/unix/sysv/linux/i386/Makefile [$(subdir) == misc]
2251         (sysdep_routines): Add ioperm, iopl, and vm86.
2252         (headers): Add sys/perm.h and sys/vm86.h.
2254         * sysdeps/unix/sysv/linux/i386/sys/perm.h: New file.  Contains
2255         prototypes for iopl and ioperm.
2257         * sysdeps/unix/sysv/linux/i386/sys/vm86.h:  New file.  Contains
2258         prototype for vm86.
2260         * sysdeps/unix/sysv/linux/i386/syscalls.list: New file.  Add
2261         vm86 system call.
2263         * sysdeps/unix/sysv/linux/sys/acct.h: New file.  Contains
2264         prototypes for acct function.
2266         * sysdeps/unix/sysv/linux/sys/socket.h: Provide real header
2267         file with prototypes.
2269         * sysdeps/unix/sysv/linux/sys/sysinfo.h: New file.  Contains
2270         prototype for sysinfo function.
2272         * sysdeps/unix/sysv/linux/syscalls.list: Add flock, ioperm, iopl,
2273         llseek, setfsgid, setfsuid, sysinfo, and uselib.
2275         * sysdeps/unix/sysv/linux/sysconf.c: Instead of duplicating
2276         posix/sysconf.c now only handle cases different to that
2277         implementation.
2279 Tue May  7 15:08:19 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2281         * stdio/linewrap.c (__line_wrap_output): Renamed from lwoutput
2282         (all references changed).  Now exported.
2284         * stdio/linewrap.c (struct data): Type deleted (moved to linewrap.h).
2285         (wrap_stream, unwrap_stream, lwclose, lwfileno, lwoutput,
2286         line_wrap_stream, line_unwrap_stream): Use struct line_wrap_data
2287         instead of struct data.
2288         (lwoutput, line_wrap_stream, line_unwrap_stream): Rename various
2289         occurences of `wrap' and `wrapmargin' to `wmargin'.
2290         (line_wrapped, line_wrap_lmargin, line_wrap_set_lmargin,
2291         line_wrap_rmargin, line_wrap_set_rmargin, line_wrap_wmargin,
2292         line_wrap_set_wmargin, line_wrap_point): New functions.
2293         * stdio/linewrap.h: New file.
2294         * stdio/Makefile (headers): Add linewrap.h.
2296 Tue May  7 14:19:12 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2298         * sysdeps/unix/sysv/linux/i386/Makefile: File removed.
2300         * stdio/stdio.h: Remove line_wrap_stream, line_unwap_stream decls.
2302         * sysdeps/unix/sysv/linux/schedbits.h: New file.
2304 Tue May  7 13:47:02 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2306         * stdio/linewrap.c (struct data): Make margin fields not-pointers.
2307         (lwoutput): Adjust uses acordingly.
2309 Tue May  7 10:51:52 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2311         * sysdeps/mach/hurd/fdatasync.c: New file.
2312         * sysdeps/mach/hurd/fsync.c: Pass new flag to file_sync.
2314         * sysdeps/mach/hurd/xmknod.c: Pass new flag to dir_link.
2315         * sysdeps/mach/hurd/symlink.c: Likewise.
2316         * sysdeps/mach/hurd/link.c: Likewise.
2317         * sysdeps/mach/hurd/bind.c: Likewise.
2318         * hurd/hurdsig.c (write_corefile): Likewise.
2320         * hurd/hurdsig.c (write_corefile): Pass cttyid port to crash server.
2322         * sysdeps/mach/hurd/fpathconf.c: RPC takes int pointer, not long int.
2324         * sysdeps/mach/hurd/_exit.c (_hurd_exit): Pass sigcode arg to
2325         proc_mark_exit.
2326         * sysdeps/mach/hurd/dl-sysdep.c (_exit): Likewise.
2328         * sysdeps/mach/hurd/wait4.c: Pass sigcode arg to proc_wait.
2330         * sysdeps/mach/hurd/rename.c: Pass new flag to dir_rename.
2332         * hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise): Use struct
2333         hurd_signal_detail.
2334         * hurd/catch-exc.c (_S_catch_exception_raise): Likewise.
2335         * hurd/hurd-raise.c (_hurd_raise_signal): Likewise.
2336         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
2337         Likewise.
2338         * sysdeps/mach/hurd/setitimer.c (restart_itimer): Likewise.
2340         * hurd/hurd/signal.h: Fix _hurd_exception2signal prototype.
2342         * hurd/hurdsig.c (write_corefile): Take const struct
2343         hurd_signal_detail * arg.  Pass all details to crash_dump_task.
2344         (_hurd_internal_post_signal): Pass DETAIL to write_corefile.
2345         (_hurd_internal_post_signal: suspend): Pass code and error to
2346         proc_mark_stop.
2348         * hurd/hurdprio.c (_hurd_priority_which_map): Pass flags arg to
2349         proc_getprocinfo by reference.
2351         * wcsmbs/wcwidth.c, wcsmbs/wcswidth.c: Fixed typos.
2353         * sysdeps/unix/sysv/linux/sys/mman.h: Fixed typo.
2355         * sysdeps/stub/sched_getp.c: Add missing #include <sys/types.h>.
2356         * sysdeps/stub/sched_sets.c: Likewise.
2357         * sysdeps/stub/sched_setp.c: Likewise.
2358         * sysdeps/stub/sched_rr_gi.c: Likewise.
2359         * sysdeps/stub/sched_gets.c: Likewise.
2361         * hurd/hurdsig.c: Use struct hurd_signal_detail.
2362         * hurd/hurd/fd.h (_hurd_fd_error): Likewise.
2363         * sysdeps/mach/hurd/sysd-stdio.c (fd_fail): Likewise.
2365 Mon May  6 09:51:05 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2367         * stdio/linewrap.c: New file.
2368         * stdio/Makefile (routines): Add linewrap.
2369         * stdio/stdio.h [__USE_GNU]: Declare line_wrap_stream,
2370         line_unwrap_stream.
2372 Mon May  6 14:53:26 1996  Ulrich Drepper  <drepper@cygnus.com>
2374         * time/strftime.c (week): Add third parameter telling how
2375         many days must be in new year so that it is called week 1.
2376         (Following ISO 8601).
2377         Correct computation for %U and %V formats when day was first
2378         day of the week.
2379         (strftime): Implement %V format according to Spec1170.
2381 Mon May  6 17:01:09 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
2383         * hurd/hurd/signal.h (_hurd_intr_rpc_mach_msg): New declaration.
2385 Sat May  4 05:44:25 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2387         * hurd/hurd/sigpreempt.h (struct hurd_signal_preempter): Change
2388         prototype of `preempter' elt to use struct hurd_signal_detail.
2390         * hurd/hurd/signal.h (struct hurd_signal_detail): New type.
2391         (struct hurd_sigstate): Make `pending_data' member an array of that.
2392         Use the new type in several decls.
2394         * locale/setlocale.c (_nl_C_name): Variable removed.
2395         * locale/C_name.c: New file.
2396         (_nl_C_name): Put it here instead.
2397         * locale/Makefile (aux): Add C_name.
2399         * sysdeps/mach/hurd/dl-sysdep.c (open): Don't pass io port in
2400         auth_user_authenticate rpc.
2401         (open): Avoid using strtol in digit conversion for "fd/N" magic.
2402         (_dl_sysdep_start): Likewise for memobj name in magic switches.
2404         * elf/Makefile (reloc-link): New variable.
2405         (dl-allobjs.so): New target, link together $(rtld-routines).
2406         (librtld.so): Depend on that instead of the rtld components.
2407         (generated): Add dl-allobjs.so.
2409         * hurd/hurd-raise.c (_hurd_raise_signal): Pass sigcode in msg_sig_post
2410         rpc.
2412         * hurd/hurdmsg.c (_S_msg_set_environment): Use argz.h functions
2413         instead of _hurd_split_args.
2414         (_S_msg_*_exec_flags): Functions removed.
2415         (_S_msg_startup_dosync): Stub removed.
2417 Sat May  4 02:11:55 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2419         * sysdeps/mach/hurd/ptrace.c: Set _hurdsig_traced instead of
2420         EXEC_TRACED bit in _hurd_exec_flags.
2421         Pass sigcode arg in msg_sig_post_untraced rpc.
2423         * sysdeps/mach/hurd/access.c: Don't pass io port in
2424         auth_user_authenticate rpc.
2426         * posix/sched.h: Fix typos.
2428         * sysdeps/mach/hurd/fork.c: Use new critical section lock.
2429         Clear _hurdsig_traced instead of EXEC_TRACED.
2431         * sysdeps/stub/nanosleep.c (nanosleep): Fix typo.
2433         * wcsmbs/wcstol.c: Find strtol.c in ../stdlib.
2434         * wcsmbs/wcstof.c: Find strtod.c in ../stdlib.
2435         * wcsmbs/wcstod.c: Likewise.
2436         * wcsmbs/wcstold.c: Likewise.
2438         * wcsmbs/wcwidth.h: Find cname-lookup.h in ../wctype.
2440         * string/envz.c (envz_entry): Use const.
2441         (envz_get, envz_remove): Likewise.
2442         (envz_entry): Return char *, not const char *.
2444         * string/envz.h: Fix decl.
2446         * string/argz-create.c: Use const in prototype.
2447         * string/argz-next.c: Likewise.
2449 Fri May  3 13:32:08 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2451         * sysdeps/mach/hurd/sigprocmask.c: Pass sigcode arg to msg_sig_post.
2452         * sysdeps/mach/hurd/i386/sigreturn.c: Likewise.
2453         * sysdeps/mach/hurd/sigsuspend.c: Likewise.
2454         * sysdeps/mach/hurd/kill.c: Likewise.
2456         * hurd/hurdexec.c (_hurd_exec): Use new critical section lock.
2457         * hurd/catch-exc.c (_S_catch_exception_raise): Likewise.
2458         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Likewise.
2459         * hurd/thread-cancel.c (hurd_thread_cancel, hurd_check_cancel):
2460         Likewise.
2461         * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Likewise.
2462         * sysdeps/mach/hurd/sigaction.c: Likewise.
2464         * sysdeps/mach/hurd/errnos.awk: Don't use ARGV in comment; it can
2465         change meaninglessly.
2467         * hurd/hurd/signal.h (struct hurd_sigstate): Replace critical section
2468         flag with a spin lock.
2469         (_hurd_critical_section_lock): Use spin_try_lock on that to see if we
2470         get it.  No need to take SS->lock at all.
2471         (_hurd_critical_section_unlock): Unlock SS->critical_section_lock
2472         instead of clearing the old flag member.
2473         * hurd/hurdsig.c (_hurd_internal_post_signal): Use spin_lock_locked to
2474         test the critical section state.
2476         * hurd/hurdinit.c (_hurd_init): Set _hurdsig_traced from the intarray.
2478         * hurd/hurdkill.c (_hurd_sig_post): Pass 0 sigcode in msg_sig_post.
2480         * hurd/hurdsig.c (_hurd_internal_post_signal): Test _hurdsig_traced
2481         instead of testing (_hurd_exec_flags & EXEC_TRACED).
2482         (_S_msg_sig_post): Take sigcode arg and pass it through.
2483         (_S_msg_sig_post_untraced): Likewise.
2484         (reauth_proc): Don't pass proc port in auth_user_authenticate.
2486         * hurd/setauth.c (_hurd_setauth): Don't pass object ports in
2487         auth_user_authenticate RPCs, just the one-off rendezvous port.
2488         * hurd/dtable.c (reauth_dtable): Likewise.
2489         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Likewise.
2491         * hurd/hurdexec.c (_hurd_exec): Pass 0 flags to file_exec.
2492         Pass sigcode arg to msg_sig_post.
2494         * string/argz.h (argz_create): Use const in prototype.
2496         * hurd/hurdinit.c (_hurd_proc_init): Test _hurdsig_traced instead of
2497         testing (_hurd_exec_flags & EXEC_TRACED).
2498         Pass sigcode arg to msg_sig_post.
2500         * hurd/hurd.h: Declare _hurdsig_traced.
2502         * string/argz.h (__argz_next): Cast ENTRY before returning it.
2504         * hurd/hurd/signal.h (_hurd_critical_section_unlock): Pass sigcode arg
2505         to msg_sig_post.
2507         * hurd/path-lookup.c: New file.
2508         * hurd/Makefile (routines): Add path-lookup.
2509         * hurd/hurd/lookup.h: Declare file_name_path_scan,
2510         hurd_file_name_path_lookup.
2511         * hurd/hurd.h: Declare file_name_path_lookup.
2513         * sysdeps/mach/hurd/select.c: The io_select rpc no longer has a TAG_ID
2514         argument.  Instead, use a separate reply port for each RPC and put them
2515         all in a port set to wait for slow replies.
2517         * intl/Makefile (CPPFLAGS): Change $(nlsdir) to $(i18ndir) in
2518         LOCALE_ALIAS_PATH.
2520 Fri May  3 03:14:02 1996  Ulrich Drepper  <drepper@cygnus.com>
2522         * intl/Makefile (routines): Add l10nflist and explodename.
2523         (distribute): Add loadinfo.h and locale.alias.
2524         (install-others): New variable to install locale.alias.
2526         * intl/dcgettext.c, intl/finddomain.c, intl/gettextP.h,
2527         intl/loadmsgcat.c: Adapt for upcoming gettext-0.10.13.  Some code
2528         is now shared with the locale implementation.
2530         * intl/explodename.c, intl/l10nflist.c, intl/loadinfo.h: New file.
2531         Extracted from finddomain.c.  This is also used in the locale
2532         implementation.
2534         * intl/locale.alias: New file.  Locale alias database compatible
2535         with X Window System's locale alias file.  Can now be used in
2536         locale and gettext code.
2538         * libio/stdio.h: Add prototypes for asprint and vasprintf.
2540         * locale/C-collate.c, locale/C-ctype.c, locale/C-messages.c,
2541         locale/C-monetary.c, locale/C-numeric.c, locale/C-time.c: Add new
2542         field in structure with name of locale ("C" in this case).
2544         * locale/Makefile (routines): Add findlocale.
2546         * locale/findlocale.c: New file.  Instead of trying to load the
2547         directly described file we now try to be much smarter when this
2548         fails.  Use the same code as gettext does.
2550         * locale/loadlocale.c, locale/setlocale.c: Rewrite to know about
2551         new loading scheme.
2553         * locale/localeinfo.h: Adapt prototypes and declarations for new
2554         setlocale implementation.  Remove definition of u32_t type.  We
2555         now use u_int32_t from <sys/types.h>.
2557         * locale/programs/charset.h (ILLEGAL_CHAR_VALUE): Provide type
2558         with constant.
2560         * locale/programs/config.h, locale/lc-collate.c,
2561         locale/localeinfo.h, locale/programs/ld-collate.c,
2562         locale/programs/ld-ctype.c, locale/programs/ld-messages.c,
2563         locale/programs/ld-monetary.c, locale/programs/ld-numeric.c,
2564         locale/programs/ld-time.c, locale/weight.h, string/strcoll.c:
2565         Change to use u_int32_t and u_int16_t.
2567         * locale/programs/localedef.c (construct_output_path): Change name
2568         of output locale to contain normalized form of the character set
2569         portion.
2571         * string/Makefile (routines): Add agrz-ctsep and argz-next.
2572         (tests): Add tst-strlen.
2574         * string/argz-ctsep.c: New file.  Implement reverse operation
2575         from argz-stringify.
2577         * string/argz-next.c: Non-inline version of function from argz.h.
2579         * string/argz.h, string/envz.h: Make usable as global header file.
2581         * string/envz.c: Fix declarations to use size_t where prototypes
2582         say so.
2584         * string/tst-strlen.c: New file.  Another test for critical
2585         situation in strlen implementations.
2587         * sysdeps/i386/i586/strlen.S: Fix bug with highest byte in word
2588         being zero.
2590         * wctype/test_wctype.c: Fix controlling comparison after change to
2591         32 bit character class array.
2593 Fri May  3 12:53:12 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2595         * sysdeps/unix/sysv/linux/sys/socket.h: Remove spurious doubled line.
2597 Thu May  2 22:50:52 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2599         * sysdeps/unix/sysv/linux/getpriority.c: New file.
2600         * sysdeps/unix/sysv/linux/syscalls.list: Add s_getpriority.
2602 Thu May  2 22:41:31 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2604         * sysdeps/unix/sysv/linux/m68k/fpu_control.h (_FPU_DEFAULT):
2605         Disable all exceptions.
2607 Thu May  2 22:33:14 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2609         * sysdeps/m68k/fpu/e_acos.c, sysdeps/m68k/fpu/e_acosf.c,
2610         sysdeps/m68k/fpu/e_fmod.c, sysdeps/m68k/fpu/e_fmodf.c,
2611         sysdeps/m68k/fpu/isinfl.c, sysdeps/m68k/fpu/isnanl.c,
2612         sysdeps/m68k/fpu/s_atan.c, sysdeps/m68k/fpu/s_atanf.c,
2613         sysdeps/m68k/fpu/s_frexp.c, sysdeps/m68k/fpu/s_frexpf.c,
2614         sysdeps/m68k/fpu/s_ilogb.c, sysdeps/m68k/fpu/s_ilogbf.c,
2615         sysdeps/m68k/fpu/s_isinf.c, sysdeps/m68k/fpu/s_isinff.c,
2616         sysdeps/m68k/fpu/s_ldexp.c, sysdeps/m68k/fpu/s_ldexpf.c,
2617         sysdeps/m68k/fpu/s_modf.c, sysdeps/m68k/fpu/s_modff.c: Don't
2618         define __NO_MATH_INLINES, which is already defined on command
2619         line.
2621 Thu May  2 22:18:28 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2623         * sysdeps/libm-ieee754/e_j0f.c (__ieee754_j0f, __ieee754_y0f):
2624         Replace 0x80000000 by 0x48000000.
2625         * sysdeps/libm-ieee754/e_j1f.c (__ieee754_j1f): Likewise.
2627 Thu May  2 21:30:33 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2629         * sunrpc/svc_simple.c: Make global variable pl local to
2630         registerrpc.
2632 Thu May  2 00:24:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2634         * time/Makefile (tz-cflags): New variable.
2635         (CFLAGS-tzfile.c): New variable.
2636         (CFLAGS-zic.c): Add $(tz-cflags).
2637         (tz-cc): Remove variable.
2638         ($(objpfx)tzfile.o, $(objpfx)zic.o): Remove targets.
2640 Wed May  1 09:10:04 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2642         * sysdeps/mach/hurd/getcwd.c: Jump out of both loops when we find a
2643         name, instead of checking for reaching end of buffer, which happens
2644         when the match is the last entry in the buffer.
2646         * time/strftime.c: Use canonical autoconf nugget for time.h+sys/time.h
2647         include.
2649 Mon Apr 29 02:48:26 1996  Ulrich Drepper  <drepper@cygnus.com>
2651         * ctype/ctype-info.c: (__ctype_width): New variable.
2652         (__ctype_names): Initialize correctly without offset.
2654         * locale/C-collate.c, locale/C-ctype.c,
2655         locale/C-messages.c, locale/C-monetary.c,
2656         locale/C-numeric.c, locale/C-time.c: Change copyright.
2658         * locale/C-ctype.c (_nl_C_LC_CTYPE_class32): Correct
2659         endianess for initialization value.
2661         * locale/lc-ctype.c (current): Add parameter for offset.
2662         (__ctype32_b, __ctype_width): Add initialization for these
2663         variables.
2665         * locale/programs/charmap.c: Finish support for WIDTH information.
2666         (new_width): New function.
2668         * locale/programs/charset.h (width_rule): new data structure.
2669         (charset_t): Add elements for width information.
2671         * locale/programs/ld-ctype.c (locale_ctype_t): Add element
2672         for width information.
2673         (allocate_arrays): Add new argument for charset.
2674         (ctype_finish): Make sure all characters named in charset
2675         width table are known to name table.
2676         (ctype_output): Correct handling of class and map name
2677         information and write out width information.
2678         (find_idx): Prepare for being called with NULL pointer as
2679         TABLE argument.  This means only allocate name entry.
2680         (allocate_arrays): Correct handling of array element -1.
2681         Because EOF == -1 the value of element 127 must *not* be
2682         mirrored here.
2683         Fill width information from charset tables.
2685         * locale/programs/localedef.c (main): Correct loop over all
2686         categories after change of order from Thu Mar 28 14:22:51 1996.
2687         Add new charset argument to call of `write_all_categories'.
2689         * locale/programs/locales.h (ctype_finish, ctype_output): New
2690         charset argument.
2692         * locale/programs/locfile.c (write_all_categories): Call
2693         `ctype_output' with additional argument charset.
2695         * posix/getconf.c (vars): Add _POSIX_SYNC_IO, _POSIX_ASYNC_IO,
2696         and _POSIX_PRIO_IO definitions.
2698         * posix/posix2_lim.h: Add definition of _POSIX2_CHARCLASS_NAME_MAX
2699         and CHARCLASS_NAME_MAX.
2701         * posix/unistd.h: Document _POSIX_SYNC_IO, _POSIX_ASYNC_IO,
2702         and _POSIX_PRIO_IO.
2704         * stdlib/grouping.h: Prepare for use in wide string functions.
2706         * stdlib/stdlib.h: Correct prototypes for __strto*_internal
2707         functions.
2709         * stdlib/strtod.c: Extend for use as `wcsto{f,d,ld}'.
2711         * stdlib/strtol.c: Extend for use as `wcsto{l,ul,q,uq}'.
2713         * string/strcoll.c: Extend for use as `wcscoll'.
2715         * string/strxfrm.c: Extend for use as `wcsxfrm'.
2717         * sysdeps/generic/confname.h: Add definition of _PC_SYNC_IO,
2718         _PC_ASYNC_IO, _PC_PRIO_IO and _SC_CHARCLASS_NAME_MAX.
2720         * sysdeps/generic/stpncpy.c: Correct return value.
2722         * sysdeps/posix/fpathconf.c: Add handling of _PC_SYNC_IO,
2723         _PC_ASYNC_IO, and _PC_PRIO_IO.
2725         * sysdeps/posix/sysconf.c: Add handling of _SC_REALTIME_SIGNALS,
2726         _SC_PRIORITY_SCHEDULING, _SC_TIMERS, _SC_ASYNCHRONOUS_IO,
2727         _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO, _SC_FSYNC,
2728         _SC_MAPPED_FILES, _SC_MEMLOCK, _SC_MEMLOCK_RANGE,
2729         _SC_MEMORY_PROTECTION, _SC_MESSAGE_PASSING, _SC_SEMAPHORES,
2730         _SC_SHARED_MEMORY_OBJECTS, and _SC_CHARCLASS_NAME_MAX.
2731         * sysdeps/stub/sysconf.c: Ditto.
2732         * sysdeps/unix/sysv/sysv4/sysconf.c: Ditto.
2734         * sysdeps/unix/sysv/linux/Dist: Add sys/sysctl.h.
2736         * sysdeps/unix/sysv/linux/Makefile [subdir == misc]
2737         (sysdep_routines): Add s_sysctl and sysctl.
2739         * sysdeps/unix/sysv/linux/sys/mman.h: Add declaration of mremap.
2741         * sysdeps/unix/sysv/linux/sys/socket.h: New file.  Wrapper
2742         around kernel header.
2744         * sysdeps/unix/sysv/linux/sys/sysctl.h: New file.  Define
2745         interface to `sysctl' function.
2747         * sysdeps/unix/sysv/linux/syscalls.list: Add mremap and _sysctl.
2749         * sysdeps/unix/sysv/linux/sysconf.c: Add handling of
2750         _SC_CHARCLASS_NAME_MAX.
2752         * sysdeps/unix/sysv/linux/sysctl.c: new file.  Implement caller
2753         of _sysctl system call.
2755         * sysvipc/Makefile (routines): Add ftok.
2757         * sysvipc/ftok.c: use variable `proj_id' not `id'.  Patch by
2758         David Mosberger-Tang.
2760         * wcsmbs/Makefile (routines): Add wcpcpy, wcpncpy, wcstol,
2761         wcstoul, wcstoq, wcstouq, wcstod, wcstold, wcstof, wcscoll,
2762         wcsxfrm, wcwidth, and wcswidth.
2764         * wcsmbs/wchar.h: Add declarations for wcpcpy, wcpncpy, wcstol,
2765         wcstoul, wcstoq, wcstouq, wcstod, wcstold, wcstof, wcscoll,
2766         wcsxfrm, wcwidth, and wcswidth.
2767         Declare internal interfaces for wcsto* functions.
2768         [OPTIMIZE]: Define inline functions for wcsto* functions to
2769         call internal interface functions.
2771         * wcsmbs/wcpcpy.c, wcsmbs/wcpncpy.c: New files.  Implement non-
2772         standard function equivalent to stpcpy/stpncpy.
2774         * wcsmbs/wcscoll.c: Implement `wcscoll' function by using
2775         `strcoll' implementation.
2777         * wcsmbs/wcscpy.c, wcsmbs/wcsncpy.c: Use wint_t instead of
2778         wchar_t.
2780         * wcsmbs/wcstod.c: Implement `wcstod' function by using `strtod'
2781         implementation.
2782         * wcsmbs/wcstof.c: Same for `wcstof'.
2783         * wcsmbs/wcstold.c: Same for `strtold'.
2785         * wcsmbs/wcstol.c: Implement `wcstol' function by using `strtol'
2786         implementation.
2787         * wcsmbs/wcstoq.c: Same for `wcstoq'.
2788         * wcsmbs/wcstoul.c: Same for `wcstoul'.
2789         * wcsmbs/wcstouq.c: Same for `wcstouq'.
2791         * wcsmbs/wcswidth.c: Implement `wcswidth' function from X/Open
2792         CAE.
2793         * wcsmbs/wcwidth.c: Ditto for `wcwidth'.
2794         * wcsmbs/wcwidth.h: Common function for definitions of above two
2795         functions.
2797         * wcsmbs/wcsxfrm.c: Implement `wcsxfrm function by using
2798         `strxfrm implementation.
2800         * wctype/wctype.c: Remove case for `wctype_t' being 16 bit type.
2802         * wctype/wctype.h (wint_t): Protect against multiple definition.
2803         (wctype_t): Always define as `unsigned long int'.
2805         * wctype.h: New file.  Wrapper around wctype/wctype.h.
2807 Tue Apr 30 17:30:46 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2809         * hurd/hurdsig.c (_hurdsig_abort_rpcs): Add timeout argument to
2810         interrupt_operation call.
2811         (_hurdsig_interrupt_timeout): New variable.
2813         * hurd/report-wait.c (describe_number): Correctly allocate space
2814         in DESCRIPTION for the digits in I.
2816 Mon Apr 29 00:11:59 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2818         * hurd/hurdstartup.c (_hurd_split_args): Function removed.
2819         (_hurd_startup): Use argz functions.
2821         * hurd/hurdexec.c: Use argz functions.
2823         * errno.h [!__error_t_defined] (error_t): New type.
2824         * sysdeps/mach/hurd/errnos.awk: #define __error_t_defined after the
2825         typedef in errnos.h.
2827         * string/envz.c, string/envz.h: New files.
2828         * string/argz.h, string/argz-append.c, string/argz-count.c,
2829         string/argz-create.c, string/argz-delete.c, string/argz-extract.c,
2830         string/argz-insert.c, string/argz-stringify.c: New files.
2831         * string/Makefile (routines): Add envz, argz-*.
2832         (headers): Add argz.h, envz.h.
2834 Sun Apr 28 14:14:35 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2836         * sysdeps/unix/sysv/linux/i386/Makefile: New file.
2838 Wed Apr 24 17:35:30  Ulrich Drepper  <drepper@cygnus.com>
2840         * inet/netinet/in.h, socket/sys/socket.h: Move to
2841         sysdeps/generic/netinet/in.h, sysdeps/generic/sys/socket.h.
2842         * netinet/in.h, sys/socket.h: Remove file.
2844         * misc/Makefile (routines): Add fdatasync.
2846         * posix/Makefile (headers): Add sched.h.
2847         (routines): Add nanosleep, sched_setp, sched_getp, sched_sets,
2848         sched_gets, sched_yield, sched_primax, sched_primin, sched_rr_gi.
2850         * posix/getconf.c (vars): Add entries for _POSIX_REALTIME_SIGNALS,
2851         _POSIX_PRIORITY_SCHEDULING, _POSIX_TIMERS, _POSIX_ASYNCHRONOUS_IO,
2852         _POSIX_PRIORITIZED_IO, _POSIX_SYNCHRONIZED_IO, _POSIX_FSYNC,
2853         _POSIX_MAPPED_FILES, _POSIX_MEMLOCK, _POSIX_MEMLOCK_RANGE,
2854         _POSIX_MEMORY_PROTECTION, _POSIX_MESSAGE_PASSING,
2855         _POSIX_SEMAPHORES, _POSIX_SHARED_MEMORY_OBJECTS.
2857         * posix/sched.h: New file.  Header for POSIX scheduling interface.
2859         * posix/unistd.h: Describe options from POSIX.4.
2860         Add declaration of fdatasync.
2862         * sysdeps/generic/confname.h: Add definition for
2863          _SC_REALTIME_SIGNALS, _SC_PRIORITY_SCHEDULING, _SC_TIMERS,
2864         _SC_ASYNCHRONOUS_IO, _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO,
2865         _SC_FSYNC, _SC_MAPPED_FILES, _SC_MEMLOCK, _SC_MEMLOCK_RANGE,
2866         _SC_MEMORY_PROTECTION, _SC_MESSAGE_PASSING,
2867         _SC_SEMAPHORES, _SC_SHARED_MEMORY_OBJECTS.
2869         * sysdeps/generic/fdatasync.c: New file.  Default implementation
2870         simply uses fsync.
2872         * sysdeps/generic/netinit/in.h: Moved to here from inet/netinet/in.h.
2874         * sysdeps/generic/schedbits.h: New file.  System dependent
2875         defintion for POSIX.4 scheduling interface.
2877         * sysdeps/generic/sys/socket.h: Moved to here from socket/sys/socket.h.
2879         * sysdeps/stub/nanosleep.c, sysdeps/stub/sched_getp.c,
2880         sysdeps/stub/sched_gets.c, sysdeps/stub/sched_primax.c,
2881         sysdeps/stub/sched_primin.c, sysdeps/stub/sched_rr_gi.c,
2882         sysdeps/stub/sched_setp.c, sysdeps/stub/sched_sets.c,
2883         sysdeps/stub/sched_yield.c: New file:  Stub implementation
2884         for systems missing these POSIX.4 system calls.
2886         * sysdeps/unix/sysv/linux/gnu/types.h,
2887         sysdeps/unix/sysv/linux/ioctls.h: Use kernel header for
2888         data type definitions.
2890         * sysdeps/unix/sysv/linux/netinet/in.h: New file.  Linux
2891         specific version.
2893         * sysdeps/unix/sysv/linux/posix_opt.h: New file.  Define POSIX
2894         options applicable for Linux.
2896         * sysdeps/unix/sysv/linux/syscalls.list: Add definitions for
2897         fdatasync, nanosleep, sched_setparam, sched_getparam,
2898         sched_setscheduler, sched_getscheduler, sched_yield,
2899         sched_get_priority_max, sched_get_priority_min, and
2900         sched_rr_get_interval.
2902         * sysdeps/unix/sysv/linux/sysconf.c: Add handling of POSIX.4
2903         options.
2905         * sysdeps/unix/sysv/linux/termbits.h: Use kernel headers.
2907         * time/sys/time.h: Remove definition of `struct timespec'.
2909         * time/time.h (struct timespec): Move definition to here.
2911 Fri Apr 26 01:55:07 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2913         * malloc/mcheck.c (mabort): Use __libc_fatal only #ifdef _LIBC.
2915 Thu Apr 25 15:49:57 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2917         * sysdeps/mach/hurd/getcwd.c (__getcwd): When we find a match in
2918         the scan for a name, avoid doing another readdir (which overwrites
2919         NENTRIES, and was resulting in a bogus ENOENT).
2921         * sysdeps/mach/hurd/fcntl.c (__fcntl): Add missing break after F_SETFL.
2923 Wed Apr 24 00:22:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2925         * stdio/internals.c (seek_to_target): Set errno if seek function
2926         returns the wrong offset.
2928         * wcsmbs/wcsrtombs.c [! EILSEQ] (EILSEQ): Define to EINVAL.
2929         * wcsmbs/wcrtomb.c: Likewise.
2931         * stdio-common/vfprintf.c: Include errno.h.
2933 Tue Apr 23 21:09:14 1996  Miles Bader  <miles@gnu.ai.mit.edu>
2935         * hurd/hurdsig.c (signal_allowed): For SIGIO/SIGURG, add a new
2936         variable, LUCKY, to use instead of setting D to -1 (which fouls
2937         things up).
2939 Tue Apr 23 15:56:56 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2941         * config.h.in (HAVE_REGEX): New macro.
2943         * sysdeps/unix/syscalls.list: Add statfs, fstatfs.
2944         * io/Makefile (headers): Add sys/statfs.h, statfsbuf.h.
2945         (routines): Add statfs, fstatfs.
2946         * sysdeps/mach/hurd/statfs.c: New file.
2947         * sysdeps/mach/hurd/fstatfs.c: New file.
2948         * sysdeps/stub/fstatfs.c: New file.
2949         * sysdeps/stub/statfs.c: New file.
2950         * io/sys/statfs.h: New file.
2951         * sysdeps/generic/statfsbuf.h: New file.
2952         * sysdeps/unix/sysv/linux/statfsbuf.h: New file.
2954 Tue Apr 23 00:06:47 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2956         * malloc/Makefile (gmalloc-routines): Add valloc back here.
2957         (dist-routines): Remove it here.
2958         * malloc/valloc.c [_MALLOC_INTERNAL && GMALLOC_INHIBIT_VALLOC]
2959         (ELIDE_VALLOC): Define it.
2960         [! ELIDE_VALLOC]: Make whole file conditional on this.
2961         * malloc/malloc.h (valloc): Make decl conditional on
2962         [!GMALLOC_INHIBIT_VALLOC] instead of [!emacs].
2964 Mon Apr 22 00:02:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2966         * MakeTAGS: Include version.mk.
2967         (po/SYS_libc.pot): Add missing / in sed s cmd.
2969 Sat Apr 20 18:13:00 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2971         * Makerules (no-whole-archive): Test $(have-no-whole-archive), not
2972         $(libc_cv_ld_no_whole_archive).
2974 Sat Apr 20 17:07:17 1996  Ulrich Drepper  <drepper@cygnus.com>
2976         * assert/assert.h, ctype/ctype.h, dirent/dirent.h, errno.h,
2977         grp/grp.h, io/fcntl.h, io/sys/stat.h, io/utime.h, locale/locale.h,
2978         math/math.h, misc/nlist.h, misc/sgtty.h, misc/sys/file.h,
2979         misc/sys/ioctl.h, misc/sys/uio.h, posix/sys/times.h,
2980         posix/sys/types.h, posix/sys/utsname.h, posix/sys/wait.h,
2981         posix/tar.h, posix/wordexp.h, pwd/pwd.h, resource/sys/vlimit.h,
2982         resource/sys/vtimes.h, setjmp/setjmp.h, signal/signal.h,
2983         stdio-common/printf.h, stdlib/alloca.h, stdlib/stdlib.h,
2984         string/string.h, sysdeps/generic/sigaction.h,
2985         sysdeps/generic/sigset.h, sysdeps/generic/sys/ptrace.h,
2986         sysdeps/generic/sys/ptrace.h, sysdeps/unix/bsd/osf/sigaction.h,
2987         sysdeps/unix/sysv/linux/sys/ptrace.h,
2988         sysdeps/unix/sysv/minix/sigaction.h,
2989         sysdeps/unix/sysv/sco3.2.4/sigaction.h,
2990         sysdeps/unix/sysv/sysv4/sigaction.h,
2991         sysdeps/unix/sysv/sysv4/sigset.h, termios/termios.h,
2992         time/sys/time.h, time/time.h: Fix copyright comment.
2994 Fri Apr 19 00:49:44 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2996         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): If uids and gids are
2997         not given in stack aux vector, fetch them with syscalls.
2999         * stdlib/rpmatch.c (rpmatch: try): Take new arg NOMATCH, return value
3000         for nonmatching nonerror (instead of !MATCH).
3001         (rpmatch): Use it, so we return -1 when NOEXPR doesn't match either.
3003         * resolv/getnetnamadr.c (getnetbyaddr): Use u_int32_t instead of
3004         unsigned long for variable NET2.
3006         * time/etcetera, time/europe, time/solar89: Updated from ADO's 96e.
3008 Tue Apr  9 14:37:31 1996  Ulrich Drepper  <drepper@cygnus.com>
3010         * catgets/Makefile, catgets/catgets.c, catgets/catgetsinfo.h,
3011         catgets/config.h, catgets/gencat.c, catgets/nl_types.h,
3012         catgets/open_catalog.c: New files.  Implementation of XPG4
3013         compliant catgets() function and needed tools.
3014         * Makefile (subdirs): Add catgets.
3016 Thu Apr 18 23:36:11 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3018         * math/Makefile (CPPFLAGS): Append -D__NO_MATH_INLINES.
3020 Wed Apr 10 20:48:43 1996  Ulrich Drepper  <drepper@cygnus.com>
3022         * stdio-common/vfprintf.c: Correct some typos.
3024         * sysdeps/libm-ieee754/w_gammaf.c, sysdeps/libm-ieee754/w_lgamma.c,
3025         sysdeps/libm-ieee754/w_lgammaf.c: Reference signgam instead of
3026         __signgam.
3028 Thu Apr 18 21:07:27 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
3030         * Makerules (no-whole-archive): New variable.
3031         (build-shlib): Use it.
3032         * elf/Makefile (libdl.so): Use it.
3033         * configure.in (libc_cv_ld_no_whole_archive): New check for
3034         --no-whole-archive.
3035         * config.make.in (have-no-whole-archive): New variable.
3037         * stdio-common/printf_fp.c: Increase fudge factor for BIGNUM_SIZE calc
3038         from 3 to 4.
3040         * Make-dist: Include version.mk.
3041         (version, release): Variables removed.
3042         * Makeconfig (version.mk): New target.
3044 Fri Apr 19 01:42:18 1996  Ulrich Drepper  <drepper@cygnus.com>
3046         * locale/Makefile (headers): Add langinfo.h.
3047         (CPPFLAGS): Remove -Iliblib.
3049 Mon Apr 15 16:49:04 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3051         * malloc/memalign.c, malloc/malloc.h [__DJGPP__ == 1]: Elide memalign
3052         function and its declaration.
3054 Wed Apr 10 14:13:45 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3056         * hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Store
3057         MACH_PORT_DEAD in the thread reply-port variable before destroying
3058         the signal handler's reply port, to avoid infinite recursion.
3060 Mon Apr  8 18:27:17 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3062         * sysdeps/mach/gettimeofday.c (__gettimeofday): Don't fail if the
3063         user passes in TZ, just zero it (emacs passes in a dummy variable,
3064         and rms says the hurd should be the one to change).
3066 Sun Apr  7 10:37:30 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3068         * sysdeps/mach/hurd/fork.c: Don't leak send rights to the child's proc
3069         port in the parent.
3071 Fri Apr  5 17:43:41 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3073         * sysdeps/mach/hurd/i386/sigreturn.c (__sigreturn): Store
3074         MACH_PORT_DEAD in the thread reply-port variable before destroying
3075         the signal handler's reply port to avoid infinite recursion.
3076         * sysdeps/mach/hurd/mig-reply.c (__mig_dealloc_reply_port): Only
3077         attempt to destroy PORT if it's a valid port name.
3079 Wed Apr  3 17:10:44 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3081         * extra-lib.mk: Put libs in $(common-objpfx) instead of $(objpfx).
3082         * Makerules ($(install-lib) rules): Find libs with $(common-objpfx)
3083         instead of $(objpfx).
3085 Tue Apr  2 21:27:01 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3087         * posix/glob.c (glob_pattern_p): Avoid scanning past eos if
3088         the pattern ends with a backslash and quoting is enabled.
3089         * posix/fnmatch.c (fnmatch): Likewise; return FNM_NOMATCH for such
3090         patterns.
3092 Mon Apr  1 13:34:55 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3094         * stdio-common/tst-printf.c (main): Add new test case.
3096         * sysdeps/generic/setenv.c (unsetenv): Use old-style definition.
3098 Mon Apr  1 11:39:10  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
3100         * stdlib/strtod.c (STRTOD): Fix handling of American style FP
3101         numbers.
3103         * stdio-common/vfprintf.c (vfprintf): Don't increment format
3104         string pointer twice after seeing `*'.
3106 Sun Mar 31 17:31:54 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3108         * MakeTAGS (po/SYS_libc.pot): Prepend header processed from
3109         po/header.pot.
3111 Sun Mar 31 18:07:32 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
3113         * locale/Makefile (others, install-bin): Compiling locale works
3114         again.
3115         (locale-modules): locale has no --dump option anymore.  Remove
3116         ctypedump.
3118         * locale/programs/config.h: Don't declare euidaccess.
3119         Use #include_next to get libc's config.h.
3121         * locale/programs/ctypedump.c: Not needed anymore.  Dump option
3122         of locale is removed.
3124         * locale/programs/locale.c: Adapt for new locale implementation.
3126         * stdio-common/_itoa.h (_itoa_word): Define as inline function.
3127         * stdio-common/_itoa.c (_itoa_lower_digits, _itoa_upper_digits):
3128         Don't declare static because used in _itoa_word inline function.
3130         * stdio-common/printf-parse.h: Prepare for use in wide-char
3131         stdio implementation.
3132         (find_spec): Take additional argument to work with mbrlen instead
3133         of mblen.
3134         (parse_one_spec): Ditto.
3136         * stdio-common/printf-prs.c: Prepare for use in wide-char
3137         stdio implementation.
3139         * stdio-common/printf.h: Mark change for wide-char handling.
3140         Changing it now would result in incompatibilities.
3142         * stdio-common/vfprintf.c: New and fast implementation.
3144         * wcsmbs/Makefile (routines): Remove pre-ISO C multibyte functions
3145         mbsadvance, mbscat, mbschr, mbscmp, mbscpy, mbsdup, mbslen,
3146         mbsncat, mbsncmp, mbsncpy, mbsrchr, mbstomb.
3147         Change wcswcs to wcsstr.
3148         Add wmemchr, wmemcmp, wmemcpy, wmemmove, wmemset, btowc, wctob,
3149         mbsinit, mbrlen, mbrtowc, wcrtomb, mbsrtowcs, wcsrtombs.
3151         * wcsmbs/btowc.c, wcsmbs/mbrlen.c, wcsmbs/mbrtowc.c,
3152         wcsmbs/mbsinit.c, wcsmbs/mbsrtowcs.c, wcsmbs/wchar.h,
3153         wcsmbs/wcrtomb.c, wcsmbs/wcsrtombs.c, wcsmbs/wcsstr.c,
3154         wcsmbs/wctob.c, wcsmbs/wmemchr.c, wcsmbs/wmemcmp.c,
3155         wcsmbs/wmemcpy.c, wcsmbs/wmemmove.c, wcsmbs/wmemset.c: New
3156         function according to ISO C amendment 1.
3157         * wchar.h: Wrapper around "wcsmbs/wchar.h".
3159         * wcsmbs/wcscat.c, wcsmbs/wcschr.c, wcsmbs/wcscmp.c,
3160         wcsmbs/wcscpy.c, wcsmbs/wcscspn.c, wcsmbs/wcsdup.c,
3161         wcsmbs/wcslen.c, wcsmbs/wcsncat.c, wcsmbs/wcsncmp.c,
3162         wcsmbs/wcsncpy.c, wcsmbs/wcspbrk.c, wcsmbs/wcsrchr.c,
3163         wcsmbs/wcsspn.c, wcsmbs/wcstok.c: Changed to conform with ISO C
3164         amendment 1.
3166         * wcsmbs/mbsadvance.c, wcsmbs/mbscat.c, wcsmbs/mbschr.c,
3167         wcsmbs/mbscmp.c, wcsmbs/mbscpy.c, wcsmbs/mbsdup.c,
3168         wcsmbs/mbslen.c, wcsmbs/mbsncat.c, wcsmbs/mbsncmp.c,
3169         wcsmbs/mbsncpy.c, wcsmbs/mbsrchr.c, wcsmbs/mbstomb.c,
3170         wcsmbs/mbstr.h, wcsmbs/wcstr.h, wcsmbs/wcswcs.c: Removed.
3171         Implement functions from early drafts, not part of final standard.
3173 Sun Mar 31 16:50:41 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3175         * setjmp/setjmp.h (jmp_buf): Change gratuitous struct tag name to
3176         __jmp_bug_tag so its C++ implicit typedef does not conflict with the
3177         __jmp_buf typedef.
3179         * Makerules (BUILD_CFLAGS) [! objdir]: Use $(..)config.h when
3180         compiling in the source directories.
3182 Fri Mar 29 16:26:35 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3184         * sysdeps/libm-ieee754/w_gamma.c: Use signgam instead of __signgam.
3185         * sysdeps/libm-ieee754/s_signgam.c: Undo last change.
3187 Fri Mar 29 11:29:46 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3189         * sysdeps/libm-ieee754/s_signgam.c (signgam): Renamed to __signgam,
3190         with weak alias signgam.
3192 Thu Mar 28 18:32:34 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3194         * Makeconfig (+cflags, +gcc-nowarn): Use gcc flags unconditionally.
3196 Thu Mar 28 14:22:51 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3198         * sunrpc/rpc_main.c (main): Call textdomain.
3200         * MakeTAGS (XGETTEXTFLAGS-siglist.pot, XGETTEXTFLAGS-errlist.pot): Add
3201         --no-location.
3202         (all-pot): Replace $(subdirs) files with $P/subdirs.pot.
3203         ($P/subdirs.pot): New target.
3204         ($P/SYS_libc.pot): Add -n switch.
3206         * locale/locale.h (LC_*): Values reordered to match Linux libc.
3208         * sysdeps/mach/hurd/kill.c: If proc_pid2task gives us MACH_PORT_NULL
3209         the process is a zombie; send no messages and return success.
3211 Thu Mar 28 11:53:26 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3213         * wctype/cname-lookup.h: Find localeinfo.h in ../locale.
3214         * wctype/wctype.c: Likewise.
3215         * wctype/wctrans.c: Likewise.
3217 Thu Mar 28 03:00:43 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
3219         * locale/nl_langinfo.c (nl_langinfo): Use DATA->values instead of
3220         DATA->strings.
3222         * Makerules (BUILD_CFLAGS): Remove $(common-objpfx) from config.h.
3224         * configure.in (.weakext check): Fix asm code to use .weakext instead
3225         of .weak!  Fix bogus test calls.
3226         * configure: Regenerated.
3228 Thu Mar 28 03:25:10 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3230         * locale/programs/xmalloc.c: Test _LIBC as well as STDC_HEADERS.
3232         * locale/programs/ld-collate.c (collate_finish): Use error_at_line
3233         instead of error_with_loc.
3235         * locale/weight.h: Use u_int32_t instead of u32_t.
3236         * string/strxfrm.c: Likewise.
3238         * string/strxfrm.c: Find weight.h in ../locale; don't #include
3239         "localeinfo.h".
3240         * string/strcoll.c: Likewise.
3242         * intl/Makefile (copysrc): Add missing > in sed cmd.
3244 Sat Mar 23 17:52:49 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
3246         * Makeconfig: Rename Makefile variable nlsdir to i18ndir and
3247         change value to $(datadir)/i18n.  `nls' is not an appropriate
3248         name.
3250         * Makefile (subdirs): Add new subdir wctype.
3252         * ctype/ctype-info.c: Add new global variable __ctype_names
3253         and initialize from _nl_C_LC_CTYPE.
3255         * ctype/ctype.h: In P1003.3b/D11 `alnum' is a separate character
3256         class.  Use bit 11.
3257         [_ISbit]: Protect definition of bitmasks because they are also
3258         used in wctype.h.
3260         * libio/genops.c (_IO_sputbackc, _IO_sungetc): Clear EOF flag
3261         after successfully pushing back a character.
3263         Fundamental changes in locale implementation.  Almost nothing
3264         from the old code is used anymore.
3265         * locale/charmap.c, locale/collate.c, locale/config.h,
3266         locale/ctypedump.c, locale/hash.h, locale/keyword.gperf,
3267         locale/keyword.h, locale/loadlocale.c, locale/locale-ctype.c,
3268         locale/locale.c locale/localeconv.c, locale/localedef.c,
3269         locale/localedef.h, locale/locfile-hash.c, locale/locfile-lex.c,
3270         locale/locfile-parse.c, locale/messages.c, locale/monetary.c,
3271         locale/numeric.c, locale/setlocale.c, locale/token.h,
3272         locale/xmalloc.c: Removed.
3274         * locale/Makefile: Update for new locale implementation with
3275         program source code distributed in subdir.
3277         * locale/categories.def, locale/iso-4217.def: Updated file
3278         for new locale implementation.
3280         * locale/langinfo.h: Updated for new locale implementation.
3281         (ERA_D_T_FMT, ERA_T_FMT): New official values according to
3282         P1003.2b/D11.
3283         (_NL_COLLATE_NRULES, _NL_COLLATE_RULES, _NL_COLLATE_HASH_SIZE,
3284         _NL_COLLATE_HASH_LAYERS, _NL_COLLATE_TABLE_EB,
3285         _NL_COLLATE_TABLE_EL, _NL_COLLATE_UNDEFINED, _NL_COLLATE_EXTRA_EB,
3286         _NL_COLLATE_EXTRA_EL, _NL_CTYPE_NAMES_EB, _NL_CTYPE_NAMES_EL,
3287         _NL_CTYPE_HASH_SIZE, _NL_CTYPE_HASH_LAYERS, _NL_CTYPE_CLASS_NAMES,
3288         _NL_CTYPE_MAP_NAMES, _NL_CTYPE_WIDTH): New internal values for
3289         extended LC_CTYPE and LC_COLLATE implementation.
3291         * locale/programs/simple-hash.c, locale/programs/simple-hash.h,
3292         locale/programs/xmalloc.c, locale/programs/xstrdup.c: Helper functions
3293         for locale related programs.
3295         * locale/C-collate.c, locale/C-ctype.c,
3296         locale/C-messages.c, locale/C-monetary.c,
3297         locale/C-numeric.c, locale/C-time.c,
3298         locale/lc-collate.c, locale/lc-ctype.c,
3299         locale/lc-messages.c, locale/lc-monetary.c,
3300         locale/lc-numeric.c, locale/lc-time.c: New implementation of locale
3301         functions, and new generated "C" locale data.
3303         * locale/loadlocale.c: Now handles word fields in locale binary
3304         automatically by changing the endianess if necessary.
3306         * locale/localeinfo.h (LIMAGIC): Changed magic number because
3307         of incompatible changes.
3308         (locale_data): Changed definition to allow word as a value type.
3309         (coll_sort_rule): Values for collation sorting mode.
3310         (_NL_CURRENT_WORD): New macro to access word value of locale entry.
3311         (__collate_table, __collate_extra): Declare new global variables
3312         for collation tables.
3314         * locale/programs/charmap-kw.gperf, locale/programs/charmap-kw.h,
3315         locale/programs/charmap.c, locale/programs/charset.c,
3316         locale/programs/charset.h, locale/programs/config.h,
3317         locale/programs/ctypedump.c, locale/programs/ld-collate.c,
3318         locale/programs/ld-ctype.c, locale/programs/ld-messages.c,
3319         locale/programs/ld-monetary.c, locale/programs/ld-numeric.c,
3320         locale/programs/ld-time.c, locale/programs/linereader.c,
3321         locale/programs/linereader.h, locale/programs/locale.c,
3322         locale/programs/localedef.c, locale/programs/locales.h,
3323         locale/programs/locfile-kw.gperf, locale/programs/locfile-kw.h,
3324         locale/programs/locfile-token.h, locale/programs/locfile.c,
3325         locale/programs/locfile.h, locale/programs/stringtrans.c,
3326         locale/programs/stringtrans.h: Implementation of locale related
3327         programs.
3329         * locale/weight.h: Functions to access collation tables.
3331         * posix/unistd.h: Define _POSIX2_LOCALEDEF.
3333         * stdio-common/printf_fp.c: Fix bug with printing certain numbers
3334         < 10^-1.  Reported by Bill Metzenthen.
3336         * stdio-common/tfformat.c: Add new test for above bug.
3338         * string/strcoll.c, string/strxfrm.c: Real implementation of
3339         string collation according to ISO C.
3341         * wctype/Makefile, wctype/cname-lookup.h, wctype/iswctype.c,
3342         wctype/test_wctype.c, wctype/towctrans.c, wctype/wcfuncs.c,
3343         wctype/wctrans.c, wctype/wctype.c, wctype/wctype.h: New files.
3344         Implementation of wide character classes and mapping.
3346 Wed Mar 27 14:52:11 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3348         * elf/rtld.c (dl_main): Call _dl_sysdep_start_cleanup after
3349         _dl_relocate_object loop.  Avoid relocating RTLD_MAP in that loop, and
3350         do it individually if necessary after _dl_sysdep_start_cleanup call.
3352         * stdlib/Makefile (mpn-routines): Add divrem.
3354 Tue Mar 26 22:54:14  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
3356         * stdio-common/printf_fp.c (__printf_fp): Use mpn_divmod
3357         instead of __mpn_divmod.
3359 Wed Mar 27 10:26:21 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3361         * sysdeps/alpha/setjmp.S: Must establish global pointer before
3362         address of __sigsetjmp_aux can be loaded.
3364 Wed Mar 27 02:23:19 1996 Ulrich Drepper <drepper@gnu.ai.mit.edu>
3366         * sysdeps/i386/i586/memset.S: New file.  Highly optimized
3367         version for i586 contributed by Torbjorn Granlund.
3368         Adapted for use as bzero.
3369         * sysdeps/i386/i586/bzero.S: Use sysdeps/i386/i586/memset.S
3370         code to implement bzero().
3372 Tue Mar 26 20:01:17 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3374         * stdlib/Makefile (mpn-routines): Remove divmod.
3376 Tue Mar 26 15:40:14 1996  Brendan Kehoe  <brendan@zen.org>
3378         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sysdep.h (NO_UNDERSCORES): Use
3379         wrapped with #ifndef, to avoid config.h defining it.
3381 Mon Mar 25 13:10:04 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3383         * malloc/realloc.c (_realloc_internal): In case of growing large
3384         block, leave _heaplimit zero across _malloc_internal call.
3386         * intl/Makefile [gettext-srcdir]: Use gpl2lgpl.sed on copied sources.
3388 Mon Mar 25 03:35:16 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3390         * malloc/malloc.c (morecore): Don't attempt recursive realloc of info
3391         table when _heaplimit==0 during realloc growing large block.
3393         * MakeTAGS (extract): Remove /dev/null from xgettext command line.
3394         (text-srcs): New variable: extract only C sources from $(tags_sources).
3395         (po/$(domain).pot): Depend on that.
3396         If it's empty, cp /dev/null $@ instead of $(extract).
3398         * misc/Makefile (headers): Add iovec.h.
3399         * sysdeps/unix/sysv/linux/iovec.h: New file.
3400         * sysdeps/generic/iovec.h: New file.
3401         * misc/sys/uio.h (struct iovec): Type replaced with #include <iovec.h>.
3403         * configure.in (NO_UNDERSCORES check): Use AC_TRY_LINK instead of
3404         AC_TRY_COMPILE.
3406         * misc/sys/cdefs.h [__USE_BSD] (const, signed, volatile): Move these
3407         macros inside [! __STDC__].
3409         * stdlib/rpmatch.c: New file.
3410         * stdlib/Makefile (routines): Add rpmatch.
3411         * stdlib/stdlib.h [__USE_SVID]: Declare rpmatch.
3413         * MakeTAGS (MSGJOIN): Variable removed.
3414         (po/SYS_libc.pot): Use $(XGETTEXT) instead of $(MSGJOIN).
3416 Wed Mar 20 20:08:46 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3418         * sysdeps/unix/sysdep.h: Don't define C_SYMBOL_NAME.
3420         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Don't define
3421         NO_UNDERSCORES.
3423 Thu Mar 21 11:19:15 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3425         * mach/devstream.c (input): Translate \r to \n on input.
3427 Wed Mar 20 11:28:49 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3429         * stdio-common/printf.h, stdio-common/printf_fp.c,
3430         stdio-common/vfprintf.c: Place const in parameter list at
3431         correct place.
3433 Wed Mar 20 23:58.12 1996  Ulrich Drepper <drepper@gnu.ai.mit.edu>
3435         * sysdeps/i386/ldbl2mpn.c: Copy of former version of
3436         sysdeps/ieee754/ldbl2mpn.c.
3437         * sysdeps/ieee754/ldbl2mpn.c: Remove i386 specific unification.
3438         Reported by Andreas Schwab.
3440 Wed Mar 20 19:58:43 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3442         * version.c: Include version.h to define RELEASE and VERSION macros.
3443         (__libc_release, __libc_version): Use them.
3444         * locale/SYS_libc.c (_libc_intl_domainname): Include ../version.h and
3445         use VERSION to define domainname as `SYS_GNU_libc-VERSION'.
3446         * Make-dist (rel+vers): Snarf the macro values from version.h.
3448         * MakeTAGS (extract): Pass $(XGETTEXTFLAGS-$(@F)).
3449         (XGETTEXTFLAGS-siglist.pot, XGETTEXTFLAGS-errlist.pot): New variables;
3450         pass -a for these files.
3452         * Makerules (po/%.pot): Depend on FORCE target so recursive make is
3453         always run.
3455 Mon Mar 18 22:54:32 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3457         * sysdeps/unix/sysv/linux/wait3.c: New file.
3458         * sysdeps/unix/sysv/linux/wait.c: Use the bsd4.4 wait, not the
3459         one from sysdeps/posix.
3461 Wed Mar 20 09:42:11 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3463         * sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro.
3465         * elf/dl-load.c (_dl_map_object_from_fd): Always set L->l_type; if not
3466         lt_executable, then lt_library.
3467         * elf/rtld.c (dl_main): Don't set NEW->l_type after _dl_map_object.
3469 Wed Mar 20 00:08:23 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3471         * sysdeps/unix/sysv/linux/syscalls.list: Remove gtty and stty.
3473 Tue Mar 19 16:31:06 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3475         * sysdeps/unix/sysv/linux/termbits.h (CRTSCTS, CBAUDEX, VEOL,
3476         VEOL2, VMIN, VTIME): Corrected.
3477         (PAGEOUT, WRAP, VDSUSP): Deleted.
3479 Tue Mar 19 14:18:42 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3481         * sysdeps/unix/readdir.c: Test [! _DIRENT_HAVE_D_RECLEN] instead of
3482         (sizeof (DP->d_name) > 1) to detect fixed-size dir entries.
3484         * sysdeps/i386/fpu/__math.h (asinh): Call log1p instead of __log1p.
3486         * math/math.h: Move M_* constants before __math.h include.
3487         [__NO_MATH_INLINES || __OPTIMIZE__]: Include __math.h only #if this.
3489         * misc/efgcvt_r.c (ecvt_r): Declare floor, log10, fabs as weak extern.
3490         If log10 is not defined (i.e. no -lm), use stupid loop instead.
3492         * features.h (__FAVOR_BSD): Define only if _BSD_SOURCE is defined
3493         and no other _*_SOURCE macro is.
3494         (_GNU_SOURCE): Don't define by default.
3495         * libc-symbols.h (_GNU_SOURCE): Define it.
3497         * configure.in (alpha*-*-linux*): Unset $gnu_ld and $elf.
3499         * config.make.in (weak-symbols): Variable removed.
3500         * configure.in (--with-weak-symbols): Option removed.
3501         (NO_UNDERSCORES, HAVE_ASM_WEAK_DIRECTIVE, HAVE_ASM_WEAKEXT_DIRECTIVE):
3502         New tests.
3504         * config.h.in (HAVE_WEAK_SYMBOLS): #undef removed.
3505         (NO_UNDERSCORES, HAVE_ASM_WEAK_DIRECTIVE, HAVE_ASM_WEAKEXT_DIRECTIVE):
3506         New #undefs.
3507         * libc-symbols.h: Use them instead of HAVE_WEAK_SYMBOLS.
3509         * sysdeps/unix/bsd/pause.c: Moved to sysdeps/unix/common/pause.c.
3511 Mon Mar  4 20:17:28 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3513         * inet/inet_lnaof.c: Use u_int32_t instead of u_long.
3514         * inet/inet_mkadr.c: Likewise.
3515         * inet/inet_net.c: Likewise.
3516         * inet/inet_netof.c: Likewise.
3517         * inet/rcmd.c: Likewise.
3518         * inet/arpa/inet.h: Likewise.
3519         * inet/netinet/in.h: Likewise.
3520         * inet/netinet/tcp.h: Likewise.
3521         * inet/protocols/rwhod.h: Likewise.
3522         * inet/protocols/talkd.h: Likewise.
3523         * resolv/inet_addr.c: Likewise.
3525         * sysdeps/unix/sysv/linux/adjtime.c: Use INT_MAX instead of LONG_MAX.
3527         * sysdeps/unix/sysv/Makefile (sysdep_routines): Don't add s_getdents.
3529         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Don't add mount,
3530         umount.
3532         * sysdeps/alpha/__math.h (atan, cabs): New functions.
3534         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: new file (syscall
3535         expects set-value, not pointer to it).
3537 Sun Feb 25 22:36:10 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3539         * sysdeps/unix/sysv/linux/alpha/profil-counter.h: New file.
3541         * gmon/gmon.c (__bb_head): new variable.
3542         (write_hist, write_call_graph, write_bb_counts): new functions.
3543         (_mcleanup): modified to call above functions instead of directly
3544         writing out gmon.out.
3545         * gmon/sys/gmon.h (struct __bb): New type.
3546         (struct gmonhdr): Type removed.
3547         (struct gmonparam): New member `log_hashfraction'.
3548         (GMONVERSION): Macro removed.
3550         * gmon/sys/gmon_out.h, gmon/bb_exit_func.c,
3551         sysdeps/generic/bb_init_func.c, sysdeps/alpha/bb_init_func.S: new
3552         files.
3553         * gmon/Makefile (headers): Add sys/gmon_out.h.
3554         (routines): Add bb_init_func, bb_exit_func.
3556         * gmon/mcount.c: Avoid integer division.
3558 Wed Feb 21 23:56:41 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3560         * sysdeps/alpha/setjmp.S: switched order in which sp and fp are
3561         passed to match what __sigsetjmp_aux() expects.
3563 Tue Feb 20 11:33:46 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3565         * sysdeps/unix/sysv/linux/alpha/syscalls.list (select, bind,
3566         connect, getpeername, getsockname, listen, recv, recvfrom,
3567         recvmsg, send, sendmsg, sendto, setsockopt, shutdown, socketpair):
3568         added to override same-name assembly file in the parent directory.
3570         * stdlib/stdlib.h: add include of sys/types.h in front of random
3571         etc declarations to ensure int32_t is declared.
3573         * stdlib/random.c, stdlib/random_r.c: replaced "long int" by int32_t
3574         where 32 bit integers are required.  Also change LONG_MAX into
3575         0x7fffffff since the intent is to turn off the sign bit in a
3576         32 bit integer.
3578         * time/offtime.c (__offtime): Use Paul Eggert's code to deal
3579         with very large values for "days" (e.g., 64 bit values).
3581 Mon Feb 19 22:22:12 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3583         * stdlib/stdlib.h (__random, __random_r, random_r, struct
3584         random_data): use int32_t instead of `long int'.
3586 Sat Feb 17 11:29:29 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3588         * sysdeps/unix/sysv/linux/alpha/ioperm.c: new file.
3590         * sysdeps/alpha/ffs.S: new file.
3592         * sysdeps/alpha/fabs.c: File removed.
3594         * time/tzfile.c (__tzfile_read): counter variable is i, *not*
3595         num_transitions!
3597         * time/offtime.c: make capable of dealing with very large (64 bit)
3598         time_t values.  Use old algorithm until a year is reached that
3599         is an integer multiple of 400, then use DAYS_PER_400_YEARS to
3600         do the remainder in a single division.
3602         * sysdeps/generic/ffs.c (ffs): fix variable declarations to
3603         be unsigned int, not unsigned long.
3605         * string/test-ffs.c (main): add test case with all upper bits
3606         set.
3608         * stdlib/tst-strtol.c: add tests cases for machines where
3609         sizeof(long)==8.
3611         * stdlib/testrand.c (main): disallow rand() to return negative
3612         integers.
3614         * stdlib/testmb.c (main): fix format to use %lx instead of %x.
3616         * stdlib/stdlib.h: on 64 bit machines, declare
3617         struct random_data, __random(),  __random_r, and random_r to
3618         return "int" instead of "long int".
3620         * stdlib/random_r.c: 64 bit machines use "int" instead of "long
3621         int".  Similarly, use INT_MAX instead of LONG_MAX.
3623         * stdlib/random.c: on 64 bit machines, randtbl[] and __random[]
3624         need to operate on "int" instead of "long int".
3626         * locale/locfile-hash.c (compute_hashval): make shifted constant
3627         a long to avoid loosing bits on 64 bit machines.
3629         * dirent/tst-seekdir.c (main): fix confusing comment; print
3630         a line to mark point where directory is rewound.
3632 Fri Feb 16 15:01:49 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3634         * time/strftime.c (strftime): any hour > 11 is PM (not > 12!).
3636 Wed Feb 14 00:21:17 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3638         * sysdeps/unix/sysv/linux/alpha/Makefile,
3639         sysdeps/unix/sysv/linux/alpha/brk.S,
3640         sysdeps/unix/sysv/linux/alpha/fpu_control.c,
3641         sysdeps/unix/sysv/linux/alpha/fpu_control.h,
3642         sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
3643         sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
3644         sysdeps/unix/sysv/linux/alpha/pipe.S,
3645         sysdeps/unix/sysv/linux/alpha/setfpucw.c,
3646         sysdeps/unix/sysv/linux/alpha/sigprocmask.c,
3647         sysdeps/unix/sysv/linux/alpha/speed.c,
3648         sysdeps/unix/sysv/linux/alpha/start.S,
3649         sysdeps/unix/sysv/linux/alpha/syscall.S,
3650         sysdeps/unix/sysv/linux/alpha/syscalls.list,
3651         sysdeps/unix/sysv/linux/alpha/alpha/regdef.h,
3652         sysdeps/unix/sysv/linux/alpha/sysdep.S,
3653         sysdeps/unix/sysv/linux/alpha/sysdep.h: New files.
3655         * sysdeps/alpha/setjmp_aux.c (__sigsetjmp_aux): restore return
3656         address register before returning (gcc 2.7.1 doesn't do it,
3657         presumably because $26 is declared as a global variable).
3659         * sysdeps/unix/sysv/linux/sys/mman.h: msync was missing "flags"
3660         argument.
3662         * sysdeps/unix/alarm.c (alarm): do roundup using test & increment
3663         instead of multiplication.
3665         * sysdeps/posix/sleep.c (sleep): initialize sa_mask to mask of
3666         currently blocked signals instead of the empty mask to ensure
3667         that execution of alarm handler occurs with none of the currently
3668         blocked signals enabled.
3670         * sysdeps/unix/alpha/sysdep.h: new file (adapted from OSF/1 version).
3672         * sysdeps/unix/bsd/osf/alpha/sysdep.h: include
3673         sysdeps/unix/alpha/sysdep.h and removed definitions now in that file.
3675         * sysdeps/alpha/divrem.S, sysdeps/alpha/htonl.S,
3676         sysdeps/alpha/htons.S, sysdeps/alpha/machine-gmon.h,
3677         sysdeps/alpha/_mcount.S, sysdeps/alpha/ntohl.s, sysdeps/alpha/ntohs.s,
3678         sysdeps/alpha/strlen.S: New files.
3680         * sysdeps/alpha/divl.S, sysdeps/alpha/divlu.S, sysdeps/alpha/divq.S,
3681         sysdeps/alpha/divqu.S, sysdeps/alpha/divrem.m4,
3682         sysdeps/alpha/macros.m4, sysdeps/alpha/reml.S, sysdeps/alpha/remlu.S,
3683         sysdeps/alpha/remq.S, sysdeps/alpha/remqu.S, sysdeps/alpha/strlen.c:
3684         Removed.
3686         * sysdeps/generic/sbrk.c (__sbrk): argument is of type ptrdiff_t, not
3687         int.
3689         * sysdeps/alpha/__longjmp.c (__longjmp): moved dummy while loop
3690         to end of function to avoid a jump across NOPs.
3692         * sysdeps/alpha/Makefile (sysdep_routines): Removed all rules
3693         pertaining to integer division/remainder routines since new code
3694         doesn't require them.
3696         * sunrpc/xdr_mem.c, sunrpc/xdr_stdio.c: Use 4 instead of sizeof(long)
3697         where 32 bit quantities are consumed/stored.  Various other minor
3698         64-bit cleanups (casting).
3700         * sunrpc/xdr.c (xdr_int): test for sizeof(int)==4 to determine
3701         whether xdr_long or xdr_short should be used to encode an int.
3702         Notice that an xdr_long is 4 bytes independent of the architecture
3703         (otherwise no Alpha could interoperate with existing NFS servers,
3704         for example).  Ditto for enums.
3706         * sunrpc/svc_udp.c (svcudp_recv): changed test from 4*sizeof(u_long)
3707         to 16 since it really wants 16 bytes.
3709         * sunrpc/svc.c (maskp): changed from u_long* to u_int32*.
3711         * sunrpc/rpc/xdr.h (IXDR_GET_LONG, IXDR_PUT_LONG): change casts to
3712         u_int32_t (instead of u_long).
3714         * sunrpc/rpc_cmsg.c (xdr_callmsg), sunrpc/svc_authux.c: increment
3715         "buf" pointer by casting it to a char* first since a long* may be 8
3716         bytes or more and oa->oa_length may be any multiple of 4.
3718         * sunrpc/clnt_udp.c (clntudp_call): replaced sizeof(u_long) by 4
3719         since it really is testing for 32 bits.  Fixed casts to use
3720         u_int32 instead of u_long.
3721         * sunrpc/xdr_rec.c: Likewise.
3723         * sunrpc/clnt_tcp.c (clnttcp_call): replaced u_long by u_int32.
3724         * sunrpc/rpc/auth.h: Likewise.
3726         * limits.h (LONG_MAX, LONG_MIN, ULONG_MAX): use 64 bit values
3727         for Alpha.
3729 Tue Mar 19 13:27:49 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3731         * sysdeps/i386/fpu/__math.h: New file.
3732         Contributed by John C. Bowman <bowman@hagar.ph.utexas.edu>.
3734 Sun Mar 17 00:28:16 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3736         * sysdeps/posix/clock.c: Don't multiply the return value by
3737         CLOCKS_PER_SEC or CLK_TCK.
3739 Mon Mar 18 13:20:46 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3741         * sysdeps/mach/hurd/getcwd.c: Fail with ENOENT if a parent directory
3742         scan finds no match.
3744         * posix/unistd.h (setpgrp): Declare no-arg version unless __FAVOR_BSD.
3745         * misc/bsd-compat.c (setpgrp): New function, two arg version.
3746         * sysdeps/stub/setpgid.c: Remove setpgrp alias.
3747         * sysdeps/mach/hurd/setpgid.c: Likewise.
3748         * sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
3749         * sysdeps/unix/common/syscalls.list (setpgid): Remove setpgrp alias.
3750         * sysdeps/unix/sysv/irix4/syscalls.list: Likewise.
3751         * sysdeps/unix/sysv/linux/setpgrp.c: Obsolete file removed.
3752         * posix/setpgrp.c (setpgrp): New file.
3753         * posix/Makefile (routines): Add setpgrp.
3755         * elf/Makefile (rtld-link): New canned sequence.
3756         (ld.so, ld-linux.so.1): Use it.  Pass -soname option.
3758         * sysdeps/i386/setjmp.S (__setjmp): Define compatibility entry point.
3760 Sun Mar 17 23:15:32 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3762         * sysdeps/unix/sysv/linux/tcgetpgrp.c,
3763         sysdeps/unix/sysv/linux/tcsetpgrp.c: New files.
3765 Sun Mar 17 07:19:33 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3767         * db/Makefile (CFLAGS-hash_func.c): New variable; pass -Wno-unused.
3768         (CFLAGS): Append -Wno-unitialized.
3770 Sat Mar 16 20:58:43 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3772         * stdlib/erand48_r.c: Use FP division by powers of two to distribute
3773         short bits into double.
3775 Sat Mar 16 20:08:22 1996  David Mosberger-Tang  <davidm@azstarnet.com>
3777         * sysdeps/alpha/memchr.S: New file.
3778         * sysdeps/alpha/memchr.c: Obsolete file removed.
3779         * string/tester.c: Soup up memchr tests.
3781 Sat Mar 16 16:26:09 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3783         * misc/Makefile (headers): Add sysexits.h.
3784         * misc/sysexits.h: New file.
3786 Thu Mar 14 15:20:45 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3788         * sysdeps/libm-ieee754/e_atan2.c (__ieee754_atan2): Change atan
3789         call to __atan.
3790         * sysdeps/libm-ieee754/e_atan2f.c (__ieee754_atan2f): Change atanf
3791         call to __atanf.
3793         * sysdeps/m68k/fpu/e_acos.c, sysdeps/m68k/fpu/e_acosf.c,
3794         sysdeps/m68k/fpu/e_asin.c, sysdeps/m68k/fpu/e_asinf.c,
3795         sysdeps/m68k/fpu/e_atanh.c, sysdeps/m68k/fpu/e_atanhf.c,
3796         sysdeps/m68k/fpu/e_cosh.c, sysdeps/m68k/fpu/e_coshf.c,
3797         sysdeps/m68k/fpu/e_exp.c, sysdeps/m68k/fpu/e_expf.c,
3798         sysdeps/m68k/fpu/e_fmod.c, sysdeps/m68k/fpu/e_fmodf.c,
3799         sysdeps/m68k/fpu/e_log.c, sysdeps/m68k/fpu/e_log10.c,
3800         sysdeps/m68k/fpu/e_log10f.c, sysdeps/m68k/fpu/e_logf.c,
3801         sysdeps/m68k/fpu/e_pow.c, sysdeps/m68k/fpu/e_powf.c,
3802         sysdeps/m68k/fpu/e_remainder.c, sysdeps/m68k/fpu/e_remainderf.c,
3803         sysdeps/m68k/fpu/e_scalb.c, sysdeps/m68k/fpu/e_scalbf.c,
3804         sysdeps/m68k/fpu/e_sinh.c, sysdeps/m68k/fpu/e_sinhf.c,
3805         sysdeps/m68k/fpu/e_sqrt.c, sysdeps/m68k/fpu/e_sqrtf.c,
3806         sysdeps/m68k/fpu/k_cos.c, sysdeps/m68k/fpu/k_cosf.c,
3807         sysdeps/m68k/fpu/k_sin.c, sysdeps/m68k/fpu/k_sinf.c,
3808         sysdeps/m68k/fpu/k_tan.c, sysdeps/m68k/fpu/k_tanf.c,
3809         sysdeps/m68k/fpu/s_atan.c, sysdeps/m68k/fpu/s_atanf.c,
3810         sysdeps/m68k/fpu/s_ceil.c, sysdeps/m68k/fpu/s_ceilf.c,
3811         sysdeps/m68k/fpu/s_cos.c, sysdeps/m68k/fpu/s_cosf.c,
3812         sysdeps/m68k/fpu/s_expm1.c, sysdeps/m68k/fpu/s_expm1f.c,
3813         sysdeps/m68k/fpu/s_fabs.c, sysdeps/m68k/fpu/s_fabsf.c,
3814         sysdeps/m68k/fpu/s_finite.c, sysdeps/m68k/fpu/s_finitef.c,
3815         sysdeps/m68k/fpu/s_floor.c, sysdeps/m68k/fpu/s_floorf.c,
3816         sysdeps/m68k/fpu/s_frexp.c, sysdeps/m68k/fpu/s_frexpf.c,
3817         sysdeps/m68k/fpu/s_ilogb.c, sysdeps/m68k/fpu/s_ilogbf.c,
3818         sysdeps/m68k/fpu/s_isinf.c, sysdeps/m68k/fpu/s_isinff.c,
3819         sysdeps/m68k/fpu/s_isnan.c, sysdeps/m68k/fpu/s_isnanf.c,
3820         sysdeps/m68k/fpu/s_ldexp.c, sysdeps/m68k/fpu/s_ldexpf.c,
3821         sysdeps/m68k/fpu/s_log1p.c, sysdeps/m68k/fpu/s_log1pf.c,
3822         sysdeps/m68k/fpu/s_logb.c, sysdeps/m68k/fpu/s_logbf.c,
3823         sysdeps/m68k/fpu/s_modf.c, sysdeps/m68k/fpu/s_modff.c,
3824         sysdeps/m68k/fpu/s_rint.c, sysdeps/m68k/fpu/s_rintf.c,
3825         sysdeps/m68k/fpu/s_scalbn.c, sysdeps/m68k/fpu/s_scalbnf.c,
3826         sysdeps/m68k/fpu/s_significand.c,
3827         sysdeps/m68k/fpu/s_significandf.c, sysdeps/m68k/fpu/s_sin.c,
3828         sysdeps/m68k/fpu/s_sinf.c, sysdeps/m68k/fpu/s_tan.c,
3829         sysdeps/m68k/fpu/s_tanf.c, sysdeps/m68k/fpu/s_tanh.c,
3830         sysdeps/m68k/fpu/s_tanhf.c: New files, for m68881 port of fdlibm.
3832         * sysdeps/m68k/fpu/__math.h: Rewritten for fdlibm.
3834         * sysdeps/m68k/fpu/isinfl.c: Rewritten to get argument type right.
3835         * sysdeps/m68k/fpu/isnanl.c: Likewise.
3837 Thu Mar 14 06:01:07 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3839         * posix/glob.c (glob): In GLOB_BRACE brace expansion, fix buffer size
3840         calculation to include trailing invariant portion.  Don't use alloca;
3841         instead use a dynamic auto array for GCC, malloc for non-GCC.
3842         Handle nested braces properly.
3844         * elf/elf.h (Elf32_auxv_t): Specify prototype (void) for `a_un.a_fcn'.
3846         * libc-symbols.h (lint): New macro.
3848 Fri Mar 15 01:18:00 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3850         * libio/iosetvbuf.c: Add weak alias setvbuf.
3852 Thu Mar 14 06:01:07 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3854         * string/strnlen.c: New file.
3855         * string/Makefile (routines): Add strnlen.
3856         * string/string.h [__USE_GNU] (strnlen): Declare new function.
3857         [__OPTIMIZE__]: Define extern inline implementation of it.
3859         * stdlib/erand48_r.c: Use __mpn_construct_double instead of ldexp and
3860         addition, to avoid using anything from -lm.
3862 Mon Mar  4 21:57:14 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3864         * sysdeps/unix/sysv/linux/m68k/Makefile: New file.
3866         * sysdeps/unix/sysv/linux/m68k/sysdep.h (SYS_ify): Redefine.
3867         (CALL_MCOUNT): New macro, empty unless [PROF].
3868         (ENTRY): Do CALL_MCOUNT just after the label.
3869         (JUMPTARGET): New macro.
3870         (SYSCALL_ERROR_HANDLER): Fix syntax.
3872 Thu Mar 14 04:20:48 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3874         * sysdeps/unix/sysv/linux/init-first.c (init): Call `__personality'
3875         function instead of using inline asm i386 syscall.
3876         * sysdeps/unix/sysv/linux/syscalls.list: Add personality syscall.
3878         * posix/unistd.h [__USE_BSD]: Declare usleep.
3880 Tue Mar 12 04:57:57 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3882         * misc/efgcvt.c (MAXDIG): New macro computed from <floats.h> constants.
3883         (fcvt, ecvt): Use it for buffer size.
3885         * stdlib/drand48-iter.c (__drand48_iterate): Use u_int64_t instead of
3886         conditionalizing long vs long long.
3888         * stdlib/drand48-iter.c (__drand48_iterate): Don't check for null
3889         pointers; never return EFAULT.
3890         * stdlib/drand48_r.c (drand48_r): Likewise.
3891         * stdlib/erand48_r.c (erand48_r): Likewise.
3893         * setjmp/Makefile (tests): Add jmpbug.
3894         * setjmp/jmpbug.c: New file.
3896 Tue Mar 12 04:42:01 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3898         * sysdeps/sparc/jmp_buf.h: Rewritten; use array of ints, not struct.
3899         * sysdeps/sparc/setjmp.S: Rewritten; store %fp value as well.
3900         * sysdeps/sparc/__longjmp.S: Rewritten; unwind frames one by one with
3901         `restore' until the target frame is hit.
3903 Sun Mar 10 20:29:40 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3905         * sysdeps/unix/sysv/linux/sigsuspend.c: New file.
3906         * sysdeps/unix/sysv/linux/syscalls.list: Remove sigsuspend, add
3907         s_sigsuspend.
3909 Thu Mar  7 21:30:58 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3911         * Makerules (+make-deps, sed-remove-objpfx): Quote periods on the
3912         left side of sed substitutions.
3914 Sun Mar 10 16:58:10 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
3916         * stdio-common/printf_fp.c (hack_digit): __mpn_normal_size
3917         is not available anymore.  Do it ourselves.
3919         * sysdeps/unix/sysv/linux/i386/fpu_control.h (_FPU_SETCW):
3920         Correct GCC `asm' syntax.
3922 Tue Mar 12 03:15:02 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3924         * stdio-common/Makefile (tests): Add tst-ungetc.
3925         * stdio-common/tst-ungetc.c: New test from drepper.
3926         * stdio-common/tstscanf.c (main): New %[ test case from drepper.
3928         * sysdeps/libm-ieee754/s_scalbn.c (scalbn): Rename to __scalbn;
3929         somehow this was missed, though the weak alias is already there.
3931         * sysdeps/unix/sysv/linux/i386/fpu_control.h (_FPU_DEFAULT): Change
3932         default to double precision, all interrupts masked; fdlibm requires.
3934 Sat Mar  9 18:44:27 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3936         * sysdeps/unix/sysv/linux/i386/setfpucw.c: Obsolete file removed.
3938 Fri Mar  8 22:16:48 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3940         * stdio-common/printf_fp.c (HAVE_ALLOCA): New macro.
3942 Tue Mar  5 18:45:14 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3944         * sysdeps/mach/hurd/select.c (__select): Include LASTFD in the
3945         final loop.
3947 Mon Mar  4 20:54:40 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3949         * Makeconfig ($(common-objpfx)config.make): Depend on config.h.in.
3951 Tue Mar  5 12:14:57 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3953         * sysdeps/mach/hurd/select.c (__select): Also don't fault just
3954         because some fdmask is 0.
3956 Mon Mar  4 17:35:35 1996  Miles Bader  <miles@gnu.ai.mit.edu>
3958         * sysdeps/mach/hurd/select.c (__select):
3959         Don't increment GOT only because READ/WRITE/EXCEPTFDS is 0!
3960         Don't return without frobbing the bitmasks after a timeout.
3961         When clearing the bitmasks, only loop from FIRSTFD to LASTFD.
3963 Mon Mar  4 17:35:09 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3965         * hurd/catch-signal.c (hurd_safe_memmove): New function.
3966         (hurd_safe_copyin, hurd_safe_copyout): New functions.
3967         * hurd/hurd/sigpreempt.h: Declare them.
3969 Sun Mar  3 08:43:44 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3971         Replace math code with fdlibm from Sun as modified for netbsd by
3972         JT Conklin and Ian Taylor, including x86 FPU support.
3973         * sysdeps/libm-ieee754, sysdeps/libm-i387: New directories.
3974         * math/math_private.h: New file.
3975         * sysdeps/i386/fpu/Implies: New file.
3976         * sysdeps/ieee754/Implies: New file.
3977         * math/machine/asm.h, math/machine/endian.h: New files.
3978         * math/Makefile, math/math.h: Rewritten.
3979         * mathcalls.h, math/mathcalls.h: New file, broken out of math.h.
3980         * math/finite.c: File removed.
3981         * sysdeps/generic/Makefile [$(subdir)=math]: Frobnication removed.
3983         * math/test-math.c: Include errno.h and string.h.
3985         * sysdeps/unix/bsd/dirstream.h: File removed.
3986         * sysdeps/unix/bsd/readdir.c: File removed.
3988 Sat Mar  2 16:35:40 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
3990         * sysdeps/unix/sysv/linux/m68k/profil-counter.h: File removed.
3991         * sysdeps/unix/sysv/sysv4/solaris2/sparc/profil-counter.h: File
3992         removed.
3993         * sysdeps/generic/profil-counter.h: New file.
3995 Fri Mar  1 17:11:59 1996  Brendan Kehoe  <brendan@zen.org>
3997         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sigcontext.h: New file,
3998         including <sysdeps/unix/bsd/sun/sparc/sigcontext.h>.
3999         * sysdeps/unix/sysv/sysv4/solaris2/sparc/profil-counter.h: New file,
4000         same as linux/m68k/profil-counter.h except the comment.
4002 Fri Mar  1 10:09:46 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4004         * stdlib/Makefile (mpn-stuff): New target.
4005         (copy-mpn): Use it.
4007         * Code copied from GMP updated to 1.937 version.
4008         * stdlib/strtod.c (HAVE_ALLOCA): Define this for gmp headers.
4010         * posix/glob.c: Use canonical code from autoconf manual for dirent
4011         include.
4012         [_D_NAMLEN]: Redefine NAMLEN using this.
4013         (glob_in_dir): Use NAMLEN macro.
4015         * sysdeps/posix/profil.c: New file.
4017 Thu Feb 29 20:55:57 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4019         * sysdeps/unix/sysv/linux/m68k/profil-counter.h: New file.
4021 Tue Feb 27 12:14:59 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4023         * libc-symbols.h [GCC >= 2.8] (strong_alias, weak_alias): Remove
4024         `extern' keyword.
4026         * time/strftime.c: Support - and _ flags to affect number padding.
4028         * sysdeps/unix/common/tcsendbrk.c: New file.
4030 Mon Feb 26 10:22:30 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4032         * sysdeps/unix/dirstream.h: Rewritten.
4033         * sysdeps/unix/readdir.c: Rewritten.
4034         * sysdeps/unix/telldir.c: Rewritten.
4035         * sysdeps/unix/closedir.c: Use <...> instead of "..." for dirstream.h.
4036         Remove __ from DIR struct member names.
4037         * sysdeps/unix/dirfd.c: Likewise.
4038         * sysdeps/unix/seekdir.c: Likewise.
4039         * sysdeps/unix/rewinddir.c: Likewise.
4040         * sysdeps/unix/opendir.c: Likewise.  Don't allocate extra space after
4041         DIR structure.
4042         * sysdeps/stub/direct.h: File removed.
4043         * sysdeps/unix/bsd/bsd4.4/direct.h: File removed.
4044         * sysdeps/unix/bsd/direct.h: File removed.
4045         * sysdeps/unix/common/direct.h: File removed.
4046         * sysdeps/unix/sysv/irix4/direct.h: File removed.
4047         * sysdeps/unix/sysv/isc3/direct.h: File removed.
4048         * sysdeps/unix/sysv/sco3.2.4/direct.h: File removed.
4049         * sysdeps/unix/sysv/sysv4/solaris2/direct.h: File removed.
4050         * sysdeps/unix/common/direntry.h: New file.
4051         * sysdeps/unix/bsd/direntry.h: New file.
4052         * sysdeps/unix/bsd/bsd4.4/direntry.h: New file.
4053         * sysdeps/unix/sysv/direntry.h: New file.
4054         * sysdeps/stub/direntry.h: New file.
4055         * dirent/dirent.h (struct dirent): Type removed.  Include <direntry.h>
4056         to define it.
4057         (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New macros.
4058         * dirent/Makefile (headers): Add direntry.h.
4059         (distribute): Remove direct.h.
4060         * sysdeps/posix/getcwd.c: Use new macros instead of d_namlen.
4061         * dirent/scandir.c: Likewise.
4062         * io/fts.c (fts_build): Likewise.
4063         * io/ftw.c (ftw_dir): Likewise.
4064         * sysdeps/posix/ttyname.c: Likewise.
4066         * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list: New file.
4068         * sysdeps/mach/hurd/profil.c (MAX_PC_SAMPLES): New macro.
4069         (collector_timeout): New static variable.
4070         (update_waiter): Actually call __task_enable_pc_sampling.
4071         Set collector_timeout based on the `tick' count returned.
4072         (profile_waiter): Use MAX_PC_SAMPLES.  Set nsamples before RPC.
4073         Use collector_timeout in __mach_msg call.
4075         * gmon/Makefile (noprof): New variable containing mcount.
4076         Append profil unless it is in $(unix-syscalls).
4077         (mcount.po): Use $(noprof) for list of targets in this rule.
4079         * libc-symbols.h: Define _LIBC before #include <config.h>.
4081 Sun Feb 25 12:29:23 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4083         * config.h.in [_LIBC] (HAVE_STRERROR): Define it.
4084         Protect 2nd page of #undef's for generator programs with #ifndef _LIBC.
4086         * time/zic.c, time/zdump.c, time/private.h: Updated from ADO 96e.
4088 Fri Feb  9 12:40:19 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
4090         * libio/cleanup.c (_IO_cleanup_registration_needed)
4091         [!_G_HAVE_ATEXIT]: Init to NULL.
4092         * libio/filedoalloc.c (_IO_cleanup_registration_needed): Remove decl.
4094 Thu Feb  8 08:12:50 1996  Brendan Kehoe  <brendan@cygnus.com>
4096         * libio/filedoalloc.c (_IO_cleanup_registration_needed): Revert
4097         previous change, since cleanup.c only defines it if _G_HAVE_ATEXIT.
4099 Wed Feb  7 15:10:17 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
4101         * libio/filedoalloc.c (_IO_cleanup_registration_needed): Declare as
4102         extern.
4104 Sat Feb 24 11:34:13 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4106         * sysdeps/i386/memcmp.S: Fix argument %esp offsets.
4108         * time/sys/time.h (timeradd, timersub): New macros; BSD has these.
4110 Wed Feb 21 02:25:07 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4112         * Rules (others): Depend on $(extra-objs), $(install-lib),
4113         $(install-bin), $(install-sbin), in object directory.
4115         * Makeconfig (link-libc): Don't pass -rpath option with default
4116         path, since ld.so should use the same default.
4117         * Makerules (build-shlib): Likewise.
4119         * Makerules (make-target-directory): Use mkinstalldirs.
4121         * sysdeps/mach/i386/sysdep.h: Include unix/i386/sysdep.h to
4122         redefine ENTRY et al.
4124         * sysdeps/unix/sysv/linux/i386/sysdep.h (NO_UNDERSCORES, ENTRY):
4125         Macros removed.  The code in unix/i386/sysdep.h should now suffice.
4127         * sysdeps/unix/i386/sysdep.h (ALIGNARG): New macro, defns for
4128         [HAVE_ELF] and not.
4129         (ENTRY): Use it in .align directive.
4130         (CALL_MCOUNT): New macro, empty unless [PROF].
4131         (ENTRY): Do CALL_MCOUNT just after the label.
4133         * Makeconfig (CPPFLAGS-.po): New variable, use -DPROF so assembly
4134         code can call mcount.
4136 Tue Feb 20 23:05:16 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4138         * time/private.h, time/zdump.c, time/zic.c: Updated verbatim from ADO;
4139         translation markings are now integrated in his distribution.
4141         * stdlib/strtod.c (round_and_return): Add missing (mp_limb) 1 cast.
4143 Mon Feb 19 18:31:59 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4145         * po: New directory where `LANG.po' files for message translations
4146         will reside.
4147         * po/SYS_libc.pot: New file, template of message strings as in source.
4148         * MakeTAGS: New rules to build po/SYS_libc.pot automatically from
4149         the source using xgettext.
4150         * Makerules ($(..)po/%.pot): New rule.
4151         * manual/Makefile (../po/manual.pot): New target, make it empty.
4153         * sysdeps/unix/bsd/alarm.c: Moved to sysdeps/unix/alarm.c.
4154         * sysdeps/unix/bsd/nice.c: Moved to sysdeps/unix/nice.c.
4155         * sysdeps/unix/bsd/stime.c: Moved to sysdeps/unix/stime.c.
4156         * sysdeps/unix/bsd/time.c: Moved to sysdeps/unix/time.c.
4157         * sysdeps/unix/bsd/utime.c: Moved to sysdeps/unix/utime.c.
4159         * time/zic.c, time/scheck.c, time/private.h, time/tzfile.h:
4160         Updated from ADO 96d.
4162 Sun Feb 18 14:08:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4164         * csu/initfini.c (_init): Remove bogus volatile declarations and
4165         extra variable, take the address of __gmon_start__ only implicitly
4166         to avoid the test being optimized out.
4168 Sun Feb 18 15:08:10 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4170         * sysdeps/posix/utimes.c (__utimes): There are 1000000 usecs in a
4171         sec.
4173 Sun Feb 18 13:56:00 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4175         * elf/Makefile, time/Makefile: Make `all' the default target.
4177 Mon Feb 19 18:09:04 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4179         * misc/sys/ptrace.h: Moved to ...
4180         * sysdeps/generic/sys/ptrace.h: ... here.
4181         * sys/ptrace.h: File removed.
4183 Sun Feb 18 12:13:07 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4185         * sysdeps/unix/sysv/linux/Makefile (headers): Add fpu_control.h.
4187         * sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Put it into .bss
4188         so that the symbol alias works.
4190         * sysdeps/unix/sysv/linux/m68k/fpu_control.h (_FPU_SETCW): Corrected.
4192         * sysdeps/unix/sysv/linux/resourcebits.h: New file.
4194         * sysdeps/unix/sysv/linux/sys/ptrace.h: New file.
4196         * sysdeps/unix/sysv/linux/syscalls.list: Add getegid, geteuid,
4197         getppid and reboot.
4199         * sysdeps/unix/sysv/linux/sysconf.c: Special version that does not
4200         use getdtablesize.
4202 Sat Feb 17 10:30:21 1996  David Mosberger-Tang  <davidm@AZStarNet.com>
4204         * stdio-common/printf_fp.c, stdlib/strtod.c, sysdeps/ieee754/dbl2mpn.c,
4205         sysdeps/ieee754/ldbl2mpn.c, sysdeps/ieee754/mpn2dbl.c,
4206         sysdeps/ieee754/mpn2ldbl.c: Cast left operands of shift instructions
4207         to `long' where necessary.
4209 Thu Feb 15 20:04:50 1996  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
4211         * stdlib/fpioconst.h: Introduce new constant _FPIO_CONST_OFFSET.
4212         * stdio-common/printf_fp.c, stdlib/strtod.c: Use _FPIO_CONST_OFFSET
4213         to correctly access MPN array depending on architecture.
4215 Mon Feb 19 15:30:26 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4217         * stdio-common/tstscanf.c (main): Add check for "0" as %d.
4219         * sysdeps/stub/msync.c: Undo change of Jan 29; just two args.
4220         Only some systems have three args; let them define their own stub.
4222         * sysdeps/generic/dl-sysdep.c: Declare _dl_secure.
4224         * sysdeps/generic/machine-gmon.h: New file.
4225         * gmon/Makefile (distribute): Add machine-gmon.h.
4226         * gmon/mcount.c: Undo changes of Feb 13.
4227         Include "machine-gmon.h".
4229 Sun Feb 18 13:24:06 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4231         * sysdeps/unix/sysv/linux/direct.h: File removed, since it is
4232         identical to unix/common/direct.h.
4234         * sysdeps/unix/Makefile [no_deps]: Don't include s-proto.d.
4236         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Don't add ipc.
4238         * stdio-common/Makefile (tests): Remove scanf6.
4240         * sysdeps/unix/sysv/linux/Makefile (non-lib.a): Append libieee.a.
4242         * time/mktime.c (mktime): Move static variable localtime_offset to
4243         file scope.
4245         * stdio-common/vfscanf.c: Put '0' in buffer before scanning for %i
4246         base indicator.
4248 Thu Feb 15 16:56:17 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4250         * sysdeps/m68k/dl-machine.h (elf_machine_load_address): Corrected.
4251         (ELF_MACHINE_BEFORE_RTLD_RELOC): Define.
4252         (_dl_runtime_resolve): Save %a1 as well.
4253         (ELF_MACHINE_RUNTIME_FIXUP_ARGS): Add second dummy arg.
4254         (elf_machine_relplt): Define.
4256         * elf/dl-runtime.c: Include possible extra args in declaration of
4257         fixup.
4259 Fri Feb 16 11:01:59 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4261         * time/tzset.c: Limit hours to 23, not 12.  From jaffer.
4263 Fri Feb 16 10:14:05 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4265         * Makeconfig (CFLAGS-.po): Use -pg instead of -p.
4267 Thu Feb 15 13:57:08 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4269         * mach/Machrules: Use -include for $(*.ir).
4271         * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS): Mask off type bits in
4272         request values.
4273         * sysdeps/mach/hurd/ioctls.h (_IOC_NOTYPE): New macro.
4274         (_IOT_COUNT2): Field is 3 bits, not 2.
4275         * sysdeps/mach/hurd/ioctl.c: Ignore handler if it fails with ENOTTY.
4276         * hurd/hurdioctl.c (_hurd_lookup_ioctl_handler): Mask off type
4277         bits before looking up handler.
4278         (fioctl): Use __hurd_dfail.
4279         (fioctl, fioclex): Use ENOTTY for bogus request instead of EGRATUITOUS.
4281 Thu Feb 15 11:49:45 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4283         * sysdeps/unix/sysv/sysv4/Makefile [$(subdir)-signal]
4284         (sysdep_routines): Don't add sys-sig.
4286         * sysdeps/unix/sysv/sysv4/solaris2/syscalls.list: New file.
4288 Wed Feb 14 00:21:17 1996 David Mosberger-Tang  <davidm@azstarnet.com>
4290         * sysdeps/alpha/memchr.c (memchr): loop searching for matching
4291         character bailed out one too early; changed constant 6 to
4292         7 to fix this.
4294 Wed Feb 14 01:08:58 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4296         * posix/execvp.c: When executing shell on script, first arg is
4297         full file name, not argv[0].
4299         * mach/Makefile [no_deps]: Inhibit inclusion of mach-syscalls.mk.
4300         * mach/Machrules [no_deps]: Inhibit interface rules.
4302         * malloc/Makefile (distribute): Removed TODO.
4304 Tue Feb 13 05:12:02 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4306         * sysdeps/unix/sysv/linux/syscalls.list (ipc): Specify msgget in
4307         caller column.
4309         * sysdeps/unix/common/syscalls.list: Add sigaction syscall.
4311         * sysdeps/unix/sysv/linux/gnu/types.h: Moved from linux/i386.
4313         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=math]
4314         (sysdep_routines): Append setfpucw.
4315         (extra-objs): Append ieee-fpucw.o.
4316         (install-lib): Append libieee.a.
4317         (libieee.a): New target.
4318         * sysdeps/unix/sysv/linux/ieee-fpucw.c: New file.
4319         * sysdeps/unix/sysv/linux/i386/fpu_control.h
4320         (_FPU_GETCW, _FPU_SETCW): New macros.
4321         (fpu_control_t): New typedef.
4322         (__setfpucw): Use fpu_control_t for argument type.
4323         * sysdeps/unix/sysv/linux/fpu_control.c: Moved from linux/i386.
4325         * sysdeps/unix/sysv/linux/init-first.c: Moved from linux/i386.
4327         * sysdeps/unix/sysv/linux/syscalls.list: Add ipc syscall.
4328         * sysdeps/unix/sysv/linux/i386/syscalls.list: File removed.
4330 Sat Feb 10 13:09:03 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4332         * sysdeps/unix/sysv/linux/m68k/brk.c,
4333         sysdeps/unix/sysv/linux/m68k/mmap.S,
4334         sysdeps/unix/sysv/linux/m68k/select.S,
4335         sysdeps/unix/sysv/linux/m68k/sigcontext.h,
4336         sysdeps/unix/sysv/linux/m68k/sigreturn.S,
4337         sysdeps/unix/sysv/linux/m68k/socket.S,
4338         sysdeps/unix/sysv/linux/m68k/syscall.S,
4339         sysdeps/unix/sysv/linux/m68k/sysdep.S,
4340         sysdeps/unix/sysv/linux/m68k/sysdep.h: New files.
4342         * sysdeps/unix/sysv/linux/m68k/fpu_control.h: New file.
4344         * sysdeps/m68k/fpu/isinfl.c, sysdeps/m68k/fpu/isnanl.c,
4345         sysdeps/m68k/isinfl.c, sysdeps/m68k/isnanl.c: New files.
4347         * sysdeps/unix/sysv/linux/sys/mman.h: Define MAP_ANON and
4348         MAP_FILE if not already defined.
4350         * elf/elf.h: Add m68k reloc definitions.
4351         * sysdeps/m68k/dl-machine.h, sysdeps/m68k/elf/start.S: New files.
4353 Tue Feb 13 00:12:12 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4355         * elf/dl-runtime.c (fixup) [ELF_MACHINE_RUNTIME_FIXUP_ARGS]: Let
4356         this macro declare extra leading args.
4358         * Makerules [$(elf)=yes] (ar-symtab-name): Define to empty.
4360         * sysdeps/i386/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE,
4361         elf_machine_relplt): New macros.
4362         * elf/dl-runtime.c: New file.
4363         * sysdeps/i386/dl-runtime.c, sysdeps/stub/dl-runtime.c: Files removed.
4365         * gmon/Makefile (headers): Remove machine-gmon.h.
4366         * sysdeps/stub/machine-gmon.h, sysdeps/i386/machine-gmon.h: Removed.
4367         * gmon/mcount.c [! NO_UNDERSCORES] (_mcount): Specify "mcount" as
4368         the asm name.
4369         (_mcount): Define normally, taking no args.
4370         Use __builtin_return_address to fetch PC values of caller and caller's
4371         caller.
4373         * Makerules: Rewrote rules to update libc archives of all flavors.
4374         Define separate specific rules for each flavor using o-iterator.
4376         * sysdeps/unix/Makefile: Include s-proto.d only ifdef subdir.
4378 Sat Feb 10 11:35:16 1996 Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4380         * Makerules (ar-symtab-name): New macro.  Replace all occurences
4381         of __.SYMDEF by $(ar-symtab-name).
4382         * sysdeps/unix/sysv/Makefile (ar-symtab-name): Define as empty.
4384 Mon Feb 12 03:10:41 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4386         * Makefile (configure, %/configure): Depend on aclocal.m4.
4387         * Make-dist (configure, %/configure): Likewise.
4389         * sysdeps/unix/Makefile: Include s-proto.d for its deps.
4391         * gmon/sys/gmon.h: Don't include machine-gmon.h; those defns are
4392         only needed in the implementation, not for any users.
4394         * time/northamerica: Updated from ADO 96c, new rules for Mexico in
4395         1996.
4397         * sunrpc/pm_getport.c: #if 0 out gratuitous inclusion of <net/if.h>.
4398         * sunrpc/pm_getmaps.c: Likewise.
4400         * sysdeps/unix/sysv/syscalls.list: Add setrlimit and settimeofday,
4401         so real syscalls override unix/sysv/*.c on sysv-derived systems
4402         that have them.
4403         * sysdeps/unix/common/syscalls.list: Add settimeofday here, to
4404         override unix/sysv/settimeofday.c since that overrides
4405         unix/syscalls.list.
4407         * Makeconfig (+link): Put $(link-libc) after deps from $^,
4408         regardless of where libc.a appears in the deps.
4410         * sysdeps/unix/sysv/sysv4/syscalls.list: Remove redundancies.
4411         Add __waitid.
4412         * sysdeps/unix/sysv/linux/syscalls.list: Remove redundancies.
4413         Define __ name for sigprocmask.
4414         * sysdeps/unix/bsd/ultrix4/syscalls.list: Remove redundancies.
4415         Add getsysinfo.
4416         * sysdeps/unix/bsd/sun/sunos4/syscalls.list: Remove redundancies.
4417         * sysdeps/unix/bsd/sun/syscalls.list: Remove redundancies.
4418         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove redundancies.
4419         * sysdeps/unix/bsd/syscalls.list: Remove settimeofday, utimes.
4420         Add getdents, wait3, waitpid.
4421         * sysdeps/unix/syscalls.list: Add seteuid, setegid, setsid,
4422         settimeofday, sigsuspend, sstk, utimes.
4423         * sysdeps/unix/bsd/ultrix4/mips/sigvec.S: File removed.
4424         * sysdeps/unix/bsd/ultrix4/mips/syscalls.list: New file.
4425         * sysdeps/unix/bsd/ultrix4/mips/Makefile (sysdep_routines):
4426         Removed sigtramp.
4427         * sysdeps/unix/bsd/ultrix4/mips/sigvec.c: Renamed from sigtramp.c.
4428         * sysdeps/unix/bsd/bsd4.4/sstk.S: File removed.
4429         * sysdeps/unix/bsd/hp/m68k/syscalls.list: File removed.
4430         * sysdeps/unix/bsd/osf/alpha/getdents.S: File removed.
4431         * sysdeps/unix/bsd/ultrix4/getsysinfo.S: File removed.
4432         * sysdeps/unix/bsd/ultrix4/waitpid.S: File removed.
4433         * sysdeps/unix/bsd/ultrix4/mips/sigtramp.c: File removed.
4434         * sysdeps/unix/bsd/ultrix4/mips/sigvec.S: File removed.
4435         * sysdeps/unix/bsd/ultrix4/mips/sigvec.c: New file.
4436         * sysdeps/unix/bsd/ultrix4/mips/syscalls.list: New file.
4437         * sysdeps/unix/sysv/irix4/wait3.S: File removed.
4438         * sysdeps/unix/sysv/sysv4/__waitid.S: File removed.
4439         * sysdeps/unix/sysv/sysv4/fchdir.S: File removed.
4440         * sysdeps/unix/sysv/sysv4/setegid.S: File removed.
4441         * sysdeps/unix/sysv/sysv4/seteuid.S: File removed.
4442         * sysdeps/unix/sysv/sysv4/sigaltstack.S: File removed.
4443         * sysdeps/unix/sysv/sysv4/solaris2/utimes.S: File removed.
4445         * hurd/hurdfault.c (_hurdsig_fault_init): Set qlimit on
4446         FORWARD_SIGEXC to one.  Uncomment setting of thread exc port, and
4447         move it to last thing.
4449 Sat Feb 10 05:57:08 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
4451         * sysdeps/generic/make_siglist.c: #undef _SIGNAL_H before defining it.
4453         * sysdeps/unix/sysv/linux/syscalls.list: Add sigprocmask, sigsuspend.
4455 Sat Feb 10 04:18:48 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4457         * posix/execvp.c: If execv fails with ENOEXEC, run the shell on
4458         the file.
4460 Fri Feb  9 11:46:45 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4462         * time/Makefile (CFLAGS-zdump.c, CFLAGS-zic.c, CFLAGS-ialloc.c,
4463         CFLAGS-scheck.c): Use -DNOID instead of -Wno-unused.
4465         * hurd/Makefile (user-interfaces): Added hurd/tioctl.
4467 Thu Feb  8 18:55:27 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4469         * hurd/hurdioctl.c (tiocsctty): Set the terminal's pgrp to our own.
4471 Wed Feb  7 18:48:30 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4473         * Makefile (subdirs): Added wcsmbs.
4474         * wcsmbs: New directory of wide char/multibyte char functions from
4475         drepper.
4477         * hurd/hurdmsg.c (_S_msg_report_wait): Function removed.
4478         * hurd/report-wait.c: New file.
4479         * hurd/Makefile (routines): Added report-wait.
4481         * sysdeps/mach/hurd/Makefile (inhibit-unix-syscalls): New variable.
4483         * sysdeps/mach/hurd/i386/intr-msg.h (struct mach_msg_trap_args):
4484         New type.
4485         (SYSCALL_EXAMINE, MSG_EXAMINE): New inline functions.
4486         * sysdeps/mach/hurd/i386/trampoline.c (struct mach_msg_trap_args):
4487         Structure moved to intr-msg.h; include that.
4489         * time/Makefile (CFLAGS-ialloc.c): Add -Wno-unused.
4490         (CFLAGS-scheck.c): New variable.
4492         * sysdeps/mach/hurd/dl-sysdep.c (__hurd_sigthread_stack_base,
4493         __hurd_sigthread_stack_end, __hurd_sigthread_variables,
4494         __hurd_threadvar_stack_mask): New variables.
4496         * sysdeps/mach/hurd/fork.c: Set the new task's exception port to
4497         its new message port.
4499         * misc/init-misc.c: Put __init_misc in the __libc_subinit set.
4501         * configure.in (uname): Add quoting.
4503         * sysdeps/mach/hurd/fchdir.c: Don't consult errno unless lookup fails.
4504         * hurd/fchroot.c: Likewise.
4506         * posix/sys/types.h [GCC >= 2.7]: Define intN_t/u_intN_t using
4507         __attribute__ ((__mode__ (__XX__))).
4509 Wed Feb 7 03:24:05 1996 Torbjorn Granlund  <tege@tmg.se>
4511         * sysdeps/i386/i586/memcopy.h (WORD_COPY_FWD): Manually allocate
4512         destination cache lines.
4513         (WORD_COPY_BWD): Likewise.
4515 Wed Feb  7 14:16:36 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4517         * sysdeps/generic/Makefile (make_siglist): Get signum.h absolute
4518         file name first thing, before $(native-compile) changes directories.
4520         From Gord Matzigkeit <gord@enci.ucalgary.ca>:
4521         * sysdeps/unix/make_errlist.c: Use strerror if available.
4522         * sysdeps/unix/configure.in: New file
4524         * sysdeps/unix/bsd/sun/syscalls.list: Added sigvec.
4525         * sysdeps/unix/bsd/sun/sigvec.S: File removed.
4527         * sysdeps/stub/sendto.c: Make sockaddr arg pointer to const.
4528         * sysdeps/stub/connect.c: Likewise.
4529         * sysdeps/stub/bind.c: Likewise.
4531         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): RETRYNAME of
4532         "" is only special for FS_RETRY_NORMAL; for FS_RETRY_REAUTH, do
4533         another dir_lookup of "".
4535 Tue Feb  6 12:46:29 1996  David Mosberger-Tang  <davidm@azstarnet.com>
4537         * libc-symbols.h (weak_alias, weak_symbol): added definitions
4538         for ECOFF (HAVE_ECOFF).
4540 Fri Feb  2 13:09:18 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4542         * sysdeps/mach/hurd/fork.c: Clear trace flag in child.
4544 Wed Jan 31 20:08:26 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4546         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Clear SS->intr_port
4547         when cancelled before RPC.
4549 Tue Jan 30 13:32:05 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4551         * dirent/scandir.c: Allocate dirents with correct size for name, and
4552         copy with correct size.
4554         * hurd/hurdinit.c [! PIC] (map0): New function, on _hurd_preinit_hook.
4556         * stdio-common/vfscanf.c (TYPEMOD): New macro of all type modifier
4557         flag bits.
4558         (__vfscanf): Fix checking of extra type modifiers.
4560         * time/asia, time/australasia, time/backward: Updated from ADO 96b.
4562 Tue Jan 30 12:17:26 1996  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
4564         * stdlib/strtod.c: Only negate exponent when there really is one.
4566         * stdio-common/vfscanf.c: Accept type modifiers on %n.
4567         Fix FP number parsing.
4569 Mon Jan 29 21:53:40 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4571         * sysdeps/stub/msync.c (msync): Declare third arg FLAGS.
4573         * resolv/Makefile (+cflags): Append to this instead of CFLAGS.
4575 Mon Jan 29 16:29:16 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4577         * sysdeps/mach/hurd/select.c (__select): Recalculate GOT to
4578         include an increment for each operation allowed on each fd.
4580 Mon Jan 29 11:44:38 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4582         * sysdeps/unix/sysv/linux/configure: Set $inhibit_glue.
4584         * Makefile: Use -include for sysd-dirs.
4586         * configure.in (uname): Check for uname in syscalls.list files.
4587         * sysdeps/unix/sysv/syscalls.list: Remove uname.
4588         * sysdeps/unix/syscalls.list: Add uname.
4590         * stdlib/strtol.c (weak1): New macro, to get the right name declared
4591         weak.
4593         * sysdeps/posix/getcwd.c (size_t): Don't define #ifdef __GNU_LIBRARY__.
4595         * db/hash/ndbm.c: Change all uses of `errno' struct member to `errnum'.
4596         (dbm_open): Use dynamic allocation for file name buffer, instead of
4597         limitting its size to MAXPATHLEN.
4599         * db/btree/bt_open.c (tmp): Use dynamic allocation for file name
4600         buffer, instead of limitting its size to MAXPATHLEN.
4602         * db/hash/hash.h (HTAB): Rename member `errno' to `errnum'.
4603         * db/hash/hash.c: Change all uses of `errno' struct member to `errnum'.
4605 Sun Jan 28 19:42:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4607         * time/Makefile: Fix check for cross compiling.
4609 Thu Jan 25 21:10:39 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4611         * db/Makefile (subdir-dirs): Renamed from dbdirs.
4613         * Makerules (distinfo-vars): Add subdir-dirs.
4615         * MakeTAGS: Remove vpath directives.
4616         (all-dirs): Prepend $(subdir-dirs).
4617         (all-sources, all-headers): Use wildcard to find sources.
4619 Mon Jan 29 10:44:38 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4621         * malloc/Makefile (CFLAGS-vm-limit.c, CFLAGS-ralloc.c): New
4622         variables.
4624         * mach/msgserver.c: Declare DEMUX arg with prototype.
4626 Sun Jan 28 17:25:38 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4628         * setjmp/setjmp.h (jmp_buf): Give a tag in the struct defn, to
4629         make C++ happy.
4630         * alpha/jmp_buf.h: Likewise.
4631         * m68k/jmp_buf.h: Likewise.
4632         * mips/jmp_buf.h: Likewise.
4633         * sparc/jmp_buf.h: Likewise.
4634         * vax/jmp_buf.h: Likewise.
4636         * sysdeps/generic/memmem.c: Fix return value in case where
4637         NEEDLE_LEN==0.
4639         * hurd/hurdlookup.c (__file_name_lookup_under,
4640         __file_name_lookup): Restrict mode with umask.
4641         * sysdeps/mach/hurd/xmknod.c: Restrict mode with umask.
4642         * sysdeps/mach/hurd/mkdir.c: Restrict mode with umask.
4644 Fri Jan 26 12:20:45 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4646         * stdlib/strtol.c: Undo last change.  ANSI C changed since the
4647         draft I checked yesterday.  Sigh.
4649 Thu Jan 25 18:58:25 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4651         * stdlib/strtol.c [UNSIGNED]: Don't recognize + or - as sign.
4653 Wed Jan 24 03:22:07 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4655         * malloc/mcheck.c (mabort): Declare prototype.
4657         * sysdeps/unix/sysv/linux/fcntlbits.h: Moved from linux/i386.
4659         * Makerules: Use -include for generated makefiles.
4661         * errno.h: Don't declare errno if it's defined as a macro.
4663         * stdio-common/vfscanf.c: Disallow l flag after ll or L.
4665         * stdio-common/Makefile (tests): Add scanf[1-9].
4666         * stdio-common/scanf[1-9].c: New files.  Bug tests from hjl.
4668 Wed Jan 24 04:18:36 1996  Paul Eggert  <eggert@twinsun.com>
4670         * strftime.c (strftime):
4671         When invoking self, check whether the subsidiary invocation failed.
4672         Use "???" (not "") to denote unknown time zone information.
4674         Make this source file portable to standalone contexts (e.g. GNU Emacs).
4675         <config.h>: Include if HAVE_CONFIG_H is defined.
4676         (HAVE_LIMITS_H, HAVE_MBLEN, HAVE_TM_ZONE, STDC_HEADERS): New symbols,
4677         defined if _LIBC or if <config.h> defines them.
4678         <ansidecl.h>, "../locale/localeinfo.h": Include only if _LIBC.
4679         <sys/types.h>: New include; some hosts require it for `time_t'.
4680         <ctype.h>: Include only if HAVE_MBLEN (since it's only needed then).
4681         <limits.h>: Include only if HAVE_LIMITS_H.
4682         <stddef.h, stdlib.h, string.h>: Include only if STDC_HEADERS.
4683         (memcpy): Define in terms of bcopy if !STDC_HEADERS.
4684         (__P, PTR): Define if not already defined.
4685         (__tzname, __daylight, __timezone): Remove macros; no longer needed.
4686         (add, strftime): Don't use NULL, for portability to some weird hosts.
4687         (fmt): If !_LIBC, don't assume sprintf returns a count.
4688         (week, strftime): Use old-style function declarations.
4689         (weekday_name, month_name): New constants.
4690         (strftime): Use traditional C values if locale support isn't available.
4691         Use `const' instead of CONST.  For time zones, use tm_zone if
4692         possible, then fall back on tzname.  Don't check for multibyte
4693         characters unless mblen is supported.  Use formats like %02d instead
4694         of %.2d, for portability to older hosts.
4696 Wed Jan 24 00:07:52 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4698         * stdio-common/vfscanf.c (GROUP, MALLOC): New flag macros.
4699         (__vfscanf): Eliminate flag vars that were redundant with FLAGS bits.
4700         Fix bug in recognition of %ll flag for long long.
4701         Fix overeager checks for conflicting type modifiers.
4702         With ' flag, match thousands separators for decimal numbers.
4704 Tue Jan 23 22:02:40 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4706         * locale/Makefile (CFLAGS-locfile-lex.c): New variable.
4708         * resolv/Makefile (CFLAGS): Disable some warnings.
4710         * sysdeps/generic/Makefile (elided-routines): Removed hypot.
4711         (+gccwarn): Set with override.
4713         * stdio-common/Makefile (CFLAGS-tst-printf.c): New variable.
4715         * posix/Makefile (CFLAGS-regex.c): New variable.
4717         * malloc/Makefile (CFLAGS-obstack.c): New variable.
4719         * io/Makefile (CFLAGS-fts.c): New variable.
4720         * io/fts.c (fts_open): Use prototypes for COMPAR decl.
4722 Tue Jan 23 21:35:32 1996  Miles Bader  <miles@gnu.ai.mit.edu>
4724         * sysdeps/mach/hurd/bind.c (bind): Ensure NAME for the AF_LOCAL
4725         case is '\0'-terminated.
4727 Tue Jan 23 19:49:54 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4729         * elf/rtld.c (dl_main): Support additional args in --list mode for
4730         debugging: look them up as symbol names and print values.
4732         * misc/getttyent.c (skip, value): Declare with prototypes in file
4733         scope.
4735         * csu/initfini.c (_init): Explicitly set a variable that is
4736         pointer to volatile with the address of __gmon_start__, to avoid
4737         the test being optimized out.
4739 Mon Jan 22 10:40:40 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4741         * sysdeps/posix/getcwd.c [__GNU_LIBRARY__]: Include unistd.h.
4743         * io/fts.h (FTSENT): Define fts_compar member with prototype.
4745         * hurd/hurd.h: Use prototype in getcttyid decl.
4747         * stdlib/l64a.c: Fix typo in last change.
4749         * stdlib/drand48-iter.c: Test limits.h macros instead of sizeof
4750         for determining size of types.
4751         * stdlib/srand48_r.c: Likewise.
4753         * misc/utmp.h: Declare login, logout, logwtmp.
4754         * misc/logout.c: Declare argument as pointer to const.
4755         * misc/login.c: Likewise.
4756         * misc/logwtmp.c: Likewise.
4757         Include time.h, string.h.
4759         * misc/efgcvt_r.c: Include stdlib.h.
4761         * io/mknod.c: Include sys/types.h.
4763         * gmon/sys/gmon.h: Declare monstartup, _mcleanup.
4765         * csu/gmon-start.c (_start, etext): Declare with prototypes.
4767         * stdio-common/vfscanf.c (%[): Fix range handling.
4769 Sun Jan 21 00:55:25 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4771         * misc/Makefile (headers): Rename queue.h to sys/queue.h.
4772         * misc/queue.h: Moved to misc/sys/queue.h.
4774         * sysdeps/unix/sysv/linux/shmat.c: Include sys/shm.h instead of
4775         sys/sem.h.
4777         * stdlib/stdlib.h [__USE_SVID]: Declare a64l, l64a.
4779         * stdlib/l64a.c: Use 6-bit numbers as indices in CONV_TABLE, not
4780         literal byte values.
4782         * misc/bsd-compat.c (getpgrp): Define with prototype.
4784         * misc/init-misc.c (__progname_full): New variable.
4785         (program_invocation_name, program_invocation_short_name): New aliases.
4786         (__init_misc): Define with prototype.  Set __progname_full.
4787         * misc/progname.c: File removed.
4788         * misc/Makefile (aux): Remove progname.
4790         * misc/hsearch_r.c (isprime): Define with prototype.
4792         * sysdeps/unix/sysv/linux/seteuid.c: Just include unix/bsd version.
4793         * sysdeps/unix/bsd/seteuid.c: Disallow arg of -1.
4794         * sysdeps/unix/bsd/setegid.c: Likewise.
4796 Fri Jan 19 13:28:59 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4798         * sysdeps/unix/sysv/linux/tcdrain.c: Define tcdrain, not
4799         __tcdrain.
4801         * posix/glob.c (glob): Use prototype in getlogin decl.
4803         * db/ndbm.h: Declare dbm_error, dbm_clearerr.
4804         * db/db/db.c (__dberr): Define with prototype.
4805         (__dbpanic): Use prototypes in casts.
4806         * db/hash/hash_log2.c: Add prototype decl.
4808         * sysdeps/generic/_strerror.c (_strerror_internal): Define with
4809         prototype.
4811         * sysdeps/unix/mkdir.c, syspdep/unix/rmdir.c: Moved from unix/sysv.
4812         They will be overridden with syscalls if extant by unix/syscalls.list.
4814         * Makeconfig (+gccwarn): Add -Wstrict-prototypes.
4816         * stdio-common/printf_fp.c (__printf_fp): Define with prototype.
4817         * stdio-common/vfprintf.c (_IO_helper_overflow): Likewise.
4819 Thu Jan 18 00:32:43 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
4821         * io/Makefile (routines): Add mknod, xstat fxstat lxstat xmknod.
4823         * sysdeps/unix/sysv/linux/ptrace.c: Use ... decl, and stdarg.h to
4824         get args.
4826         * posix/glob.c (_GNU_SOURCE): Define if undefined, so glob.h
4827         defines GNU extensions.
4828         * posix/fnmatch.c: Likewise.
4830         Replaced all simple system call files *.S throughout sysdeps/unix
4831         with syscalls.list files to be processed by make-syscalls.sh.
4832         * sysdeps/unix/s-proto.S: New file.
4833         * sysdeps/unix/syscalls.list: New file.
4834         * sysdeps/unix/bsd/syscalls.list: New file.
4835         * sysdeps/unix/bsd/bsd4.4/syscalls.list: New file.
4836         * sysdeps/unix/bsd/hp/m68k/syscalls.list: New file.
4837         * sysdeps/unix/bsd/osf/syscalls.list: New file.
4838         * sysdeps/unix/bsd/osf/alpha/syscalls.list: New file.
4839         * sysdeps/unix/bsd/sony/newsos4/syscalls.list: New file.
4840         * sysdeps/unix/bsd/sun/syscalls.list: New file.
4841         * sysdeps/unix/bsd/sun/sunos4/syscalls.list: New file.
4842         * sysdeps/unix/bsd/ultrix4/syscalls.list: New file.
4843         * sysdeps/unix/common/syscalls.list: New file.
4844         * sysdeps/unix/inet/syscalls.list: New file.
4845         * sysdeps/unix/mman/syscalls.list: New file.
4846         * sysdeps/unix/sysv/syscalls.list: New file.
4847         * sysdeps/unix/sysv/irix4/syscalls.list: New file.
4848         * sysdeps/unix/sysv/isc2.2/syscalls.list: New file.
4849         * sysdeps/unix/sysv/linux/syscalls.list: New file.
4850         * sysdeps/unix/sysv/linux/i386/syscalls.list: New file.
4851         * sysdeps/unix/sysv/sco3.2.4/syscalls.list: New file.
4852         * sysdeps/unix/sysv/sysv4/syscalls.list: New file.
4853         * sysdeps/unix/sysv/sysv4/i386/syscalls.list: New file.
4854         * sysdeps/unix/sysv/sysv4/solaris2/sparc/syscalls.list: New file.
4855         * sysdeps/unix/acct.S: File removed.
4856         * sysdeps/unix/chdir.S: File removed.
4857         * sysdeps/unix/chmod.S: File removed.
4858         * sysdeps/unix/chown.S: File removed.
4859         * sysdeps/unix/chroot.S: File removed.
4860         * sysdeps/unix/close.S: File removed.
4861         * sysdeps/unix/configure: File removed.
4862         * sysdeps/unix/configure.in: File removed.
4863         * sysdeps/unix/dup.S: File removed.
4864         * sysdeps/unix/fcntl.S: File removed.
4865         * sysdeps/unix/fsync.S: File removed.
4866         * sysdeps/unix/getgid.S: File removed.
4867         * sysdeps/unix/getpid.S: File removed.
4868         * sysdeps/unix/getuid.S: File removed.
4869         * sysdeps/unix/ioctl.S: File removed.
4870         * sysdeps/unix/kill.S: File removed.
4871         * sysdeps/unix/link.S: File removed.
4872         * sysdeps/unix/lseek.S: File removed.
4873         * sysdeps/unix/open.S: File removed.
4874         * sysdeps/unix/ptrace.S: File removed.
4875         * sysdeps/unix/read.S: File removed.
4876         * sysdeps/unix/reboot.S: File removed.
4877         * sysdeps/unix/setgid.S: File removed.
4878         * sysdeps/unix/setuid.S: File removed.
4879         * sysdeps/unix/sync.S: File removed.
4880         * sysdeps/unix/umask.S: File removed.
4881         * sysdeps/unix/unlink.S: File removed.
4882         * sysdeps/unix/write.S: File removed.
4883         * sysdeps/unix/bsd/flock.S: File removed.
4884         * sysdeps/unix/bsd/getdtsz.S: File removed.
4885         * sysdeps/unix/bsd/getpagesize.S: File removed.
4886         * sysdeps/unix/bsd/killpg.S: File removed.
4887         * sysdeps/unix/bsd/profil.S: File removed.
4888         * sysdeps/unix/bsd/readv.S: File removed.
4889         * sysdeps/unix/bsd/settimeofday.S: File removed.
4890         * sysdeps/unix/bsd/sigblock.S: File removed.
4891         * sysdeps/unix/bsd/sigpause.S: File removed.
4892         * sysdeps/unix/bsd/sigsetmask.S: File removed.
4893         * sysdeps/unix/bsd/sigstack.S: File removed.
4894         * sysdeps/unix/bsd/sigvec.S: File removed.
4895         * sysdeps/unix/bsd/utimes.S: File removed.
4896         * sysdeps/unix/bsd/writev.S: File removed.
4897         * sysdeps/unix/bsd/bsd4.4/chflags.S: File removed.
4898         * sysdeps/unix/bsd/bsd4.4/fchdir.S: File removed.
4899         * sysdeps/unix/bsd/bsd4.4/fchflags.S: File removed.
4900         * sysdeps/unix/bsd/bsd4.4/getdents.S: File removed.
4901         * sysdeps/unix/bsd/bsd4.4/getdomain.S: File removed.
4902         * sysdeps/unix/bsd/bsd4.4/revoke.S: File removed.
4903         * sysdeps/unix/bsd/bsd4.4/setdomain.S: File removed.
4904         * sysdeps/unix/bsd/bsd4.4/setegid.S: File removed.
4905         * sysdeps/unix/bsd/bsd4.4/seteuid.S: File removed.
4906         * sysdeps/unix/bsd/bsd4.4/setlogin.S: File removed.
4907         * sysdeps/unix/bsd/bsd4.4/setsid.S: File removed.
4908         * sysdeps/unix/bsd/bsd4.4/sigaltstack.S: File removed.
4909         * sysdeps/unix/bsd/bsd4.4/wait4.S: File removed.
4910         * sysdeps/unix/bsd/hp/m68k/getdents.S: File removed.
4911         * sysdeps/unix/bsd/osf/msync.S: File removed.
4912         * sysdeps/unix/bsd/osf/alpha/wait4.S: File removed.
4913         * sysdeps/unix/bsd/sony/newsos4/fchdir.S: File removed.
4914         * sysdeps/unix/bsd/sony/newsos4/sys_wait4.S: File removed.
4915         * sysdeps/unix/bsd/sun/getdents.S: File removed.
4916         * sysdeps/unix/bsd/sun/sunos3/m68k/wait.S: File removed.
4917         * sysdeps/unix/bsd/sun/sunos4/msync.S: File removed.
4918         * sysdeps/unix/bsd/sun/sunos4/poll.S: File removed.
4919         * sysdeps/unix/bsd/sun/sunos4/setsid.S: File removed.
4920         * sysdeps/unix/bsd/sun/sunos4/sys_mmap.S: File removed.
4921         * sysdeps/unix/bsd/sun/sunos4/sys_wait4.S: File removed.
4922         * sysdeps/unix/bsd/sun/sunos4/uname.S: File removed.
4923         * sysdeps/unix/bsd/ultrix4/getdents.S: File removed.
4924         * sysdeps/unix/bsd/ultrix4/setsid.S: File removed.
4925         * sysdeps/unix/bsd/ultrix4/uname.S: File removed.
4926         * sysdeps/unix/common/access.S: File removed.
4927         * sysdeps/unix/common/adjtime.S: File removed.
4928         * sysdeps/unix/common/dup2.S: File removed.
4929         * sysdeps/unix/common/fchmod.S: File removed.
4930         * sysdeps/unix/common/fchown.S: File removed.
4931         * sysdeps/unix/common/ftruncate.S: File removed.
4932         * sysdeps/unix/common/getgroups.S: File removed.
4933         * sysdeps/unix/common/getitimer.S: File removed.
4934         * sysdeps/unix/common/getpgid.S: File removed.
4935         * sysdeps/unix/common/getpriority.S: File removed.
4936         * sysdeps/unix/common/getrlimit.S: File removed.
4937         * sysdeps/unix/common/getrusage.S: File removed.
4938         * sysdeps/unix/common/gettimeofday.S: File removed.
4939         * sysdeps/unix/common/mkdir.S: File removed.
4940         * sysdeps/unix/common/readlink.S: File removed.
4941         * sysdeps/unix/common/rename.S: File removed.
4942         * sysdeps/unix/common/rmdir.S: File removed.
4943         * sysdeps/unix/common/select.S: File removed.
4944         * sysdeps/unix/common/setgroups.S: File removed.
4945         * sysdeps/unix/common/setitimer.S: File removed.
4946         * sysdeps/unix/common/setpgid.S: File removed.
4947         * sysdeps/unix/common/setpriority.S: File removed.
4948         * sysdeps/unix/common/setregid.S: File removed.
4949         * sysdeps/unix/common/setreuid.S: File removed.
4950         * sysdeps/unix/common/setrlimit.S: File removed.
4951         * sysdeps/unix/common/swapon.S: File removed.
4952         * sysdeps/unix/common/symlink.S: File removed.
4953         * sysdeps/unix/common/truncate.S: File removed.
4954         * sysdeps/unix/common/vhangup.S: File removed.
4955         * sysdeps/unix/inet/accept.S: File removed.
4956         * sysdeps/unix/inet/bind.S: File removed.
4957         * sysdeps/unix/inet/connect.S: File removed.
4958         * sysdeps/unix/inet/gethostid.S: File removed.
4959         * sysdeps/unix/inet/gethostname.S: File removed.
4960         * sysdeps/unix/inet/getpeername.S: File removed.
4961         * sysdeps/unix/inet/getsockname.S: File removed.
4962         * sysdeps/unix/inet/getsockopt.S: File removed.
4963         * sysdeps/unix/inet/listen.S: File removed.
4964         * sysdeps/unix/inet/recv.S: File removed.
4965         * sysdeps/unix/inet/recvfrom.S: File removed.
4966         * sysdeps/unix/inet/recvmsg.S: File removed.
4967         * sysdeps/unix/inet/send.S: File removed.
4968         * sysdeps/unix/inet/sendmsg.S: File removed.
4969         * sysdeps/unix/inet/sendto.S: File removed.
4970         * sysdeps/unix/inet/sethostid.S: File removed.
4971         * sysdeps/unix/inet/sethostname.S: File removed.
4972         * sysdeps/unix/inet/setsockopt.S: File removed.
4973         * sysdeps/unix/inet/shutdown.S: File removed.
4974         * sysdeps/unix/inet/socket.S: File removed.
4975         * sysdeps/unix/inet/socketpair.S: File removed.
4976         * sysdeps/unix/mman/madvise.S: File removed.
4977         * sysdeps/unix/mman/mmap.S: File removed.
4978         * sysdeps/unix/mman/mprotect.S: File removed.
4979         * sysdeps/unix/mman/msync.S: File removed.
4980         * sysdeps/unix/mman/munmap.S: File removed.
4981         * sysdeps/unix/sysv/alarm.S: File removed.
4982         * sysdeps/unix/sysv/ftime.S: File removed.
4983         * sysdeps/unix/sysv/nice.S: File removed.
4984         * sysdeps/unix/sysv/pause.S: File removed.
4985         * sysdeps/unix/sysv/poll.S: File removed.
4986         * sysdeps/unix/sysv/s_getdents.S: File removed.
4987         * sysdeps/unix/sysv/signal.S: File removed.
4988         * sysdeps/unix/sysv/stime.S: File removed.
4989         * sysdeps/unix/sysv/time.S: File removed.
4990         * sysdeps/unix/sysv/times.S: File removed.
4991         * sysdeps/unix/sysv/ulimit.S: File removed.
4992         * sysdeps/unix/sysv/uname.S: File removed.
4993         * sysdeps/unix/sysv/utime.S: File removed.
4994         * sysdeps/unix/sysv/irix4/getpgid.S: File removed.
4995         * sysdeps/unix/sysv/irix4/msync.S: File removed.
4996         * sysdeps/unix/sysv/irix4/setpgid.S: File removed.
4997         * sysdeps/unix/sysv/irix4/signal.S: File removed.
4998         * sysdeps/unix/sysv/irix4/sysmp.S: File removed.
4999         * sysdeps/unix/sysv/irix4/syssgi.S: File removed.
5000         * sysdeps/unix/sysv/isc2.2/rename.S: File removed.
5001         * sysdeps/unix/sysv/linux/adjtimex.S: File removed.
5002         * sysdeps/unix/sysv/linux/fork.S: File removed.
5003         * sysdeps/unix/sysv/linux/getpgid.S: File removed.
5004         * sysdeps/unix/sysv/linux/getpgrp.S: File removed.
5005         * sysdeps/unix/sysv/linux/getsid.S: File removed.
5006         * sysdeps/unix/sysv/linux/gtty.S: File removed.
5007         * sysdeps/unix/sysv/linux/mlock.S: File removed.
5008         * sysdeps/unix/sysv/linux/mlockall.S: File removed.
5009         * sysdeps/unix/sysv/linux/mount.S: File removed.
5010         * sysdeps/unix/sysv/linux/munlock.S: File removed.
5011         * sysdeps/unix/sysv/linux/munlockall.S: File removed.
5012         * sysdeps/unix/sysv/linux/pipe.S: File removed.
5013         * sysdeps/unix/sysv/linux/s_ptrace.S: File removed.
5014         * sysdeps/unix/sysv/linux/setpgid.S: File removed.
5015         * sysdeps/unix/sysv/linux/setsid.S: File removed.
5016         * sysdeps/unix/sysv/linux/settimeofday.S: File removed.
5017         * sysdeps/unix/sysv/linux/sigpending.S: File removed.
5018         * sysdeps/unix/sysv/linux/stty.S: File removed.
5019         * sysdeps/unix/sysv/linux/umount.S: File removed.
5020         * sysdeps/unix/sysv/linux/wait4.S: File removed.
5021         * sysdeps/unix/sysv/linux/i386/ipc.S: File removed.
5022         * sysdeps/unix/sysv/sco3.2.4/pathconf.S: File removed.
5023         * sysdeps/unix/sysv/sco3.2.4/pgrpsys.S: File removed.
5024         * sysdeps/unix/sysv/sco3.2.4/sco_getgrp.S: File removed.
5025         * sysdeps/unix/sysv/sco3.2.4/sigpending.S: File removed.
5026         * sysdeps/unix/sysv/sco3.2.4/sigprocmask.S: File removed.
5027         * sysdeps/unix/sysv/sco3.2.4/sigsuspend.S: File removed.
5028         * sysdeps/unix/sysv/sysv4/pgrpsys.S: File removed.
5029         * sysdeps/unix/sysv/sysv4/sigprocmask.S: File removed.
5030         * sysdeps/unix/sysv/sysv4/sigsuspend.S: File removed.
5031         * sysdeps/unix/sysv/sysv4/sysconfig.S: File removed.
5032         * sysdeps/unix/sysv/sysv4/sysinfo.S: File removed.
5033         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sys-sig.S: File removed.
5035         * io/mknod.c: New file.
5037         * Makerules (COMPILE.s): New variable.
5039         * sysdeps/unix/Makefile (sysd-syscalls): New target; generate with
5040         make-syscalls.sh and include it.
5041         [$(subdir)=misc] (sysdep_routines): Append extra syscalls from
5042         sysd-syscalls.
5043         * sysdeps/unix/make-syscalls.sh: New file.
5045         * Makerules (COMPILE.S): New variable.
5047 Wed Jan 17 11:04:58 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5049         * sysdeps/unix/sysv/linux/statbuf.h (_STAT_VER_LINUX,
5050         _STAT_VER_SVR4, _STAT_VER): New macros.
5051         (_MKNOD_VER_LINUX, _MKNOD_VER_SVR4, _MKNOD_VER): New macros.
5053         * sysdeps/unix/sysv/sysv4/i386/statbuf.h (_STAT_VER, _MKNOD_VER):
5054         New macros.
5056         * io/sys/stat.h (_STAT_VER, _MKNOD_VER): New macros.
5057         (__xstat, __fxstat, __lxstat, __xmknod): Declare new functions.
5058         [__GNUC__] (stat, fstat, lstat, mknod): Define these (and __ names)
5059         as `extern inline's calling the `x' functions.
5060         * io/fstat.c: New file.
5061         * io/lstat.c: New file.
5062         * io/stat.c: New file.
5063         * sysdeps/generic/lstat.c: File removed.
5064         * sysdeps/generic/lxstat.c: New file.
5065         * sysdeps/mach/hurd/fstat.c: File removed.
5066         * sysdeps/mach/hurd/fxstat.c: New file.
5067         * sysdeps/mach/hurd/lstat.c: File removed.
5068         * sysdeps/mach/hurd/lxstat.c: New file.
5069         * sysdeps/mach/hurd/mknod.c: File removed.
5070         * sysdeps/mach/hurd/stat.c: File removed.
5071         * sysdeps/mach/hurd/xmknod.c: New file.
5072         * sysdeps/mach/hurd/xstat.c: New file.
5073         * sysdeps/stub/fstat.c: File removed.
5074         * sysdeps/stub/fxstat.c: New file.
5075         * sysdeps/stub/lstat.c: File removed.
5076         * sysdeps/stub/lxstat.c: New file.
5077         * sysdeps/stub/mknod.c: File removed.
5078         * sysdeps/stub/stat.c: File removed.
5079         * sysdeps/stub/xmknod.c: New file.
5080         * sysdeps/stub/xstat.c: New file.
5081         * sysdeps/unix/common/lstat.S: File removed.
5082         * sysdeps/unix/common/lxstat.c: New file.
5083         * sysdeps/unix/fstat.S: File removed.
5084         * sysdeps/unix/fxstat.c: New file.
5085         * sysdeps/unix/mknod.S: File removed.
5086         * sysdeps/unix/stat.S: File removed.
5087         * sysdeps/unix/sysv/linux/fstat.c: File removed.
5088         * sysdeps/unix/sysv/linux/i386/fxstat.S: File removed.
5089         * sysdeps/unix/sysv/linux/i386/lxstat.S: File removed.
5090         * sysdeps/unix/sysv/linux/i386/xmknod.S: File removed.
5091         * sysdeps/unix/sysv/linux/i386/xstat.S: File removed.
5092         * sysdeps/unix/sysv/linux/lstat.c: File removed.
5093         * sysdeps/unix/sysv/linux/mknod.c: File removed.
5094         * sysdeps/unix/sysv/linux/stat.c: File removed.
5095         * sysdeps/unix/sysv/sysv4/i386/fstat.S: File removed.
5096         * sysdeps/unix/sysv/sysv4/i386/lstat.S: File removed.
5097         * sysdeps/unix/sysv/sysv4/i386/mknod.S: File removed.
5098         * sysdeps/unix/sysv/sysv4/i386/stat.S: File removed.
5099         * sysdeps/unix/xmknod.c: New file.
5100         * sysdeps/unix/xstat.c: New file.
5101         * sysdeps/unix/mkfifo.c: Use __xmknod instead of __mknod.
5102         * misc/Makefile (routines): Remove mknod.
5104         * sysdeps/ieee754/ieee754.h (union ieee854_long_double.ieee_nan):
5105         Add missing ; in little-endian case.
5107         * elf/dynamic-link.h [ELF_MACHINE_NO_REL] (ELF_DYNAMIC_DO_REL):
5108         Define this instead of ELF_DYNAMIC_DO_RELA.
5110         * sysdeps/unix/sysv/time.S: Moved from sysv4.
5111         * sysdeps/unix/sysv/irix4/time.S: File removed.
5113         * sysdeps/unix/sysv/linux/signum.h: Moved from
5114         sysdeps/unix/sysv/linux/i386.
5115         (_NSIG): Move inside #ifdef _SIGNAL_H.
5117 Tue Jan 16 17:37:39 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5119         * sysdeps/unix/seekdir.c: Don't modify POS before seeking.
5120         * sysdeps/unix/telldir.c: Fix position calculation to account for
5121         buffered data properly.
5123         * sysdeps/m68k/Makefile (crypt): Don't define if building a shared
5124         library.
5126         * csu/initfini.c (_init): Call __gmon_start__ if defined (weak ref).
5127         * csu/gmon-start.c (__gmon_start__): Renamed from gmon_start, made
5128         global.
5129         [! HAVE_INITFINI]: Only make it a constructor in this case.
5131         * gmon/Makefile (CFLAGS-mcount.c): New variable.
5132         (mcount.po): New target.
5134         * Makeconfig (CFLAGS): Append $(CFLAGS-$(<F)).
5136         * csu/Makefile [have-initfini=yes] (CPPFLAGS): Append -DHAVE_INITFINI.
5137         (initfini): Compile initfini.c with -fPIC.
5139 Sun Jan 14 01:01:10 1996  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
5141         * sysdeps/mips/bytesex.h: Add default byte sex.  By Ralf Baechle.
5143         * sysdeps/unix/sysv/linux/adjtime.c [! MOD_OFFSET]: Use `mode'
5144         member of `struct timex' instead of `modes'.  From Andreas Schwab.
5146         * sysdeps/unix/sysv/linux/mknod.c: New file.  Generic C version.
5147         * sysdeps/unix/sysv/linux/i386/mknod.S: Remove assembler version.
5149         * sysdeps/unix/sysv/linux/Makefile (inhibit-glue): New variable.
5150         [$(subdir) = misc] (sysdep_routines): Add mount, umount, and s_ptrace.
5151         [$(subdir) = misc] (headers): Append sys/mount.h.
5153         * sysdeps/unix/sysv/linux/mount.S, sysdeps/unix/sysv/linux/umount.S:
5154         New files.  Implement system calls.
5155         * sysdeps/unix/sysv/linux/sys/mount.h: New header file.
5157         * sysdeps/unix/sysv/linux/ptrace.c: New file.  Wrapper around
5158         ptrace system call.
5159         * sysdeps/unix/sysv/linux/s_ptrace.S: New file: ptrace system call.
5161         * sysdeps/unix/sysv/linux/i386/gnu/types.h: New file with correct
5162         types for i386/Linux.
5164 Sun Jan 14 17:51:09 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5166         * MakeTAGS (all-sources, all-headers): Always search the
5167         current directory first.
5169         * db/btree/bt_seq.c (__bt_first): Return RET_SPECIAL when key not
5170         found.
5172         * stdio-common/vfscanf.c (inchar, conv_error, input_error,
5173         memory_error): Add cast to void to avoid gcc warning.
5174         (vfscanf): Rewrite character class parsing to make it more efficient.
5176         * misc/efgcvt_r.c (ecvt_r): Handle negative values.
5178         * stdlib/stdlib.h: Replace __CONSTVALUE by attribute.
5179         * stdlib/abs.c, stdlib/div.c, stdlib/labs.c, stdlib/ldiv.c,
5180         sysdeps/generic/hypot.c: Remove obsolete __CONSTVALUE.
5182         * stdio-common/printf_fp.c (__printf_fp): Fix parameter
5183         declaration.
5185         * sysdeps/generic/putenv.c (putenv): Fix second argument of
5186         setenv.
5188         * sysdeps/ieee754/hypot.c: New file, extracted out of cabs.c.
5189         * sysdeps/ieee754/cabs.c: Don't define hypot here.
5191         * sysdeps/ieee754/ieee754.h (union ieee854_long_double): Fix
5192         definition of ieee_nan alternative.
5194         * sysdeps/m68k/__longjmp.c, sysdeps/m68k/setjmp.c: Add register
5195         prefix spec.
5197         * sysdeps/m68k/ffs.c (ffs): Fix register constraint.
5199         * sysdeps/m68k/fpu/__math.h: Include <errno.h>.  Replace obsolete
5200         __CONSTVALUE by attribute.
5201         (floor): Round to negative infinity.
5202         (rint, expm1) [__NO_MATH_INLINES]: Don't define, to avoid type
5203         clash when compiling source.
5204         (pow): Handle x == 0 and x < 0.
5205         (ceil, __isinf, __isnan): Fix register constraints.
5206         (__isinfl, __isnanl): Added.
5207         * sysdeps/m68k/fpu/acos.c, sysdeps/m68k/fpu/atan2.c,
5208         sysdeps/m68k/fpu/fmod.c, sysdeps/m68k/fpu/ldexp.c,
5209         sysdeps/m68k/fpu/pow.c: Remove obsolete __CONSTVALUE.
5211         * sysdeps/m68k/bsd-_setjmp.S, sysdeps/m68k/bsd-setjmp.S: Fix
5212         assembler syntax.
5214         * sysdeps/unix/bsd/bsd4.4/fchdir.S (fchdir): Take only one
5215         argument.
5217         * sysdeps/unix/bsd/clock.c (timeval_to_clock_t): Fix timeval to
5218         clock_t conversion.
5219         (clock): Don't multiply by CLOCKS_PER_SEC.
5221         * sysdeps/unix/bsd/poll.c (poll): Fix msec to timeval conversion.
5223         * sysdeps/unix/bsd/sun/m68k/brk.S (brk): Compare with address of
5224         __end.
5226         * sysdeps/unix/bsd/sun/m68k/vfork.S: Fix assembler syntax.
5228         * sysdeps/unix/bsd/ualarm.c (ualarm): Fix timeval calculation.
5230         * sysdeps/unix/bsd/vax/vfork.S: Remove duplicate label.
5232 Sun Jan 14 01:01:10 1996  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
5234         * stdlib/strtol.c: Return correct pointer for strings
5235         like "0xyz" and base 0 or 16.
5237         * string/strxfrm.c: Handle case for LENGTH == 0 correct.
5239         * sunrpc/etc.rpc: Add some more known protocols.
5241 Fri Jan 12 13:40:01 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5243         * posix/gnu/types.h: Moved to sysdeps/generic/gnu/types.h.
5245         * posix/glob.c (glob): Add parens in glob call flags arg for
5246         GLOB_BRACE case.
5248         * string/string.h (strdupa): New macro.
5250         * stdio-common/vfscanf.c (%[): Grok ] as first char in set, not
5251         terminator on empty set.  From drepper.
5253 Thu Jan 11 13:09:20 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5255         * elf/do-rel.h (elf_dynamic_do_rel): Use referring symbol as
5256         referent for STB_LOCAL.
5258 Wed Jan 10 10:11:39 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5260         * time/africa, time/antarctica, time/asia, time/australasia,
5261         time/europe, time/northamerica, time/pacificnew, time/solar87,
5262         time/solar88, time/solar89, time/southamerica: Updated from ADO 96a.
5264 Tue Jan  9 16:10:26 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5266         * elf/dl-load.c (_dl_map_object_from_fd): After mapping first
5267         segment to find location, mprotect excess region to no access,
5268         don't munmap it.
5270         * sysdeps/mach/hurd/dl-sysdep.c (mmap): If vm_map returns
5271         KERN_NO_SPACE for fixed location, deallocate it and try again.
5273 Mon Jan  8 17:43:23 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5275         * locale/Makefile (lib-modules): Renamed hash to locfile-hash.
5276         * locale/hash.c: Renamed to locale/locfile-hash.c.
5278 Sat Jan  6 16:39:14 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5280         * Makefile (subdirs): Added db.
5282         * resolv/Makefile (routines): Add res_data.
5283         * resolv/res_data.c, resolv/res_debug.c, resolv/resolv.h:
5284         Updated from BIND 4.9.3 final release.
5286         * elf/dynamic-link.h (elf_get_dynamic_info): Handle
5287         processor-specific tags.
5288         (ELF_DYNAMIC_DO_REL, ELF_DYNAMIC_DO_RELA): Handle absent DT_PLTREL tag.
5290         * elf/elf.h (DT_MIPS_NUM, DT_PROCNUM): New macros.
5291         * elf/link.h (struct link_map): Extend `l_info' by DT_PROCNUM.
5293         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Take new
5294         arg LAZY.  Only do our work if LAZY and there is a DT_JMPREL record.
5295         * elf/dl-reloc.c (_dl_relocate_object): Call
5296         elf_machine_runtime_setup unconditionally, and pass it LAZY flag.
5298         * elf/dl-load.c: Fixed ELFMAG check to work for either byte order.
5299         Align end of load segment only to page size, not to segment alignment.
5301 Thu Jan  4 11:35:18 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5303         * sysdeps/mach/hurd/setitimer.c: Code rearranged a bit to use new
5304         preemption interface.
5306         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
5307         Use _hurdsig_catch_memory_fault.
5309         * hurd/Makefile (headers): Add hurd/sigpreempt.h.
5310         (sig): Add catch-signal.
5312         * hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise):
5313         Rewritten using a preempter in new interface.
5314         * hurd/hurdfault.h (_hurdsig_catch_fault): Likewise.
5315         (_hurdsig_catch_memory_fault): New macro.
5317 Wed Jan  3 20:23:42 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5319         * hurd/catch-signal.c: New file.
5321         * hurd/intr-msg.c: When restarting RPC, fetch a new reply port.
5323         * hurd/hurdsig.c: Use new hurdfault.h interface.
5324         (abort_all_rpcs): Mutate return value to EINTR in threads whose
5325         replies we will wait for.
5327         * hurd/hurdkill.c (_hurd_sig_post): When doing pgrp, make sure we
5328         do ourselves last.
5330 Wed Jan  3 19:17:10 1996  Miles Bader  <miles@gnu.ai.mit.edu>
5332         * sysdeps/mach/hurd/access.c (__access): Put the uid/gid arguments
5333         to auth_makeauth() in the right order.
5335 Wed Jan  3 17:19:04 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5337         * sysdeps/generic/strsep.c: Rewritten.
5339         * sysdeps/mach/hurd/fork.c: Use a different workaround for the
5340         suspended page fault deadlock kernel bug: thread_abort our signal
5341         thread first thing after proc_dostop.
5343         * sysdeps/mach/hurd/setgid.c: Rewrote gid frobnication to
5344         recognize rootness properly.
5346 Tue Jan  2 00:50:10 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5348         * hurd/hurd/signal.h (struct hurd_sigstate): New member `preempters'.
5349         (hurd_preempt_signals, hurd_unpreempt_signals): Decls removed.
5350         * hurd/hurd/sigpreempt.h: New file.
5351         * hurd/preempt-sig.c: Rewritten with new interface.
5352         * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Remove local signal
5353         preempters being unwound past.
5354         * hurd/hurdsig.c: Use new signal preemption interface.
5356         * db: New directory, 4.4 BSD db package incorporated from BSD db-1.85
5357         release.
5359         * sysdeps/unix/sysv/linux/sys/param.h: Several new macros for BSD
5360         compatibility.
5362         * misc/queue.h: New file, incorporated from 4.4BSD.
5363         * misc/Makefile (headers): Add queue.h.
5365         * posix/sys/types.h [__USE_BSD]: Include endian.h.
5367         * io/sys/stat.h (DEFFILEMODE, ALLPERMS, ACCESSPERMS, S_BLKSIZE):
5368         New macros.
5370 Thu Dec 28 10:21:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5372         * sysdeps/generic/confname.h: Define all names as self-referential
5373         macros so #ifdef works.
5375         * hurd/preempt-sig.c (hurd_unpreempt_signals): Remove bogus asgnmt
5376         of _hurd_signal_preempters[SIGNO].
5378 Mon Dec 25 20:56:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5380         * sysdeps/mach/hurd/bind.c: Translate EEXIST from dir_link into
5381         EADDRINUSE.  If translated node doesn't grok ifsock protocol,
5382         return EADDRINUSE.
5384         * sysdeps/mach/hurd/connect.c: Make address arg
5385         `const struct sockaddr_un *'.
5386         The redecl is kosher and avoids another variable for AF_LOCAL case.
5387         * sysdeps/mach/hurd/sendto.c: Likewise.
5388         * sysdeps/mach/hurd/bind.c: Likewise.
5390         * socket/sys/socket.h (__SOCKADDR_ARG): Enable transparent_union
5391         code for GCC >= 2.7; use __transparent_union__ for name safety;
5392         add several sockaddr flavors.
5393         (__SOCKADDR_ALLTYPES, __SOCKADDR_ONETYPE): New macros used in
5394         constructing the transparent union declarations.
5395         (__CONST_SOCKADDR_ARG): New type (or macro if not GCC 2.7).
5396         (bind, connect, sendto): Make the sockaddr argument use that.
5398 Fri Dec 22 00:57:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5400         * sysdeps/mach/hurd/setgid.c: In root case, store into NEWAUX, not
5401         old vector.
5402         * sysdeps/mach/hurd/setuid.c: Likewise.
5404         * sysdeps/mach/hurd/setuid.c: Rewrote ID frobnication to do the
5405         right thing.
5406         * sysdeps/mach/hurd/setgid.c: Likewise.
5407         * sysdeps/mach/hurd/setreuid.c: Likewise.
5408         * sysdeps/mach/hurd/setregid.c: Likewise.
5409         * sysdeps/mach/hurd/setegid.c: Likewise.
5410         * sysdeps/mach/hurd/seteuid.c: Likewise.
5412         * sysdeps/mach/hurd/fork.c: Peek __mach_task_self_ value before
5413         proc_dostop call to work around kernel paging bug.
5415 Fri Dec 22 00:38:00 1995  H.J. Lu  <hjl@nynexst.com>
5417         * stdio-common/vfscanf.c: Correctly handle white space skipping.
5418         * stdio-common/Makefile (tests): Add bug11.
5419         * stdio-common/bug11.c: New file.
5421 Thu Dec 21 12:19:32 1995  Miles Bader  <miles@gnu.ai.mit.edu>
5423         * sysdeps/mach/hurd/setuid.c (__setuid): Actually add the new uid
5424         instead of putting it (and other uids) in the gids and leaving the
5425         old uids as is.
5427 Wed Dec 20 18:23:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5429         * stdio/internals.c (flushbuf): If the target is -1, always
5430         discard the buffer of read data.
5431         Only set TWIDDLED flag in !ALIGNED case.
5432         Never increment target or offset when old value is -1.
5434 Tue Dec 19 17:00:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5436         * hurd/hurdpid.c (_S_msg_proc_newids): Only run the hook when the
5437         pgrp changes.
5439 Mon Dec 18 13:40:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5441         * stdio/fread.c: Don't increment __offset when it's -1.
5443         * elf/rtld.c (dl_main): Prepend tab to "statically linked".  Exit
5444         0 in that case.
5446         * misc/err.c (vwarnx, vwarn): Fix major brainos.
5448         * sysdeps/mach/hurd/dl-sysdep.c (mmap): Fix setting of
5449         inheritance.
5451 Sun Dec 17 15:56:35 1995  Miles Bader  <miles@gnu.ai.mit.edu>
5453         * misc/getpass.c (getpass): Don't barf if getline returns a null BUF.
5455 Sat Dec 16 10:33:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5457         * Makerules: Use $(do-install-so) for installing shared objects.
5458         (do-install-so): New canned sequence.  Make a symlink LIB.so after
5459         installing LIB.so.VERSION.
5461         * inet/netinet/in.h: Fixed typo in IPPORT_WHOIS.
5463 Fri Dec 15 04:41:22 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5465         * stdio-common/Makefile (tests): Add bug10.
5466         * stdio-common/bug10.c: New file.  From HJ Lu.
5468         * stdio-common/tstdiomisc.c: Make more test-suite like: exit
5469         status tells about successful run.
5471         * stdio-common/vfscanf.c [!USE_IN_LIBIO]: Use `flags' to check
5472         format correctness.
5473         Correct handling of trailing white spaces in format + EOF.
5475 Fri Dec 15 01:31:56 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5477         * stdio-common/Makefile (tests): Add bug8 and bug9.
5478         * stdio-common/bug8.c, stdio-common/bug9.c: New tests.
5480         * stdio-common/vfscanf.c: Fix bug in dynamic buffer handling.
5482         * stdlib/strtod.c: Correct spelling: nominator -> numerator.
5483         Thanks to Jim Meyering.
5485 Sat Nov 25 06:05:12 1995  H.J. Lu  <hjl@nynexst.com>
5487         * stdio-common/vfscanf.c: Always check width !=0.
5488         Correctly handle %%.
5490 Thu Dec 14 02:28:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5492         * posix/glob.c (glob_in_dir): Cast result of opendir to __ptr_t,
5493         and cast STREAM to DIR * before passing to readdir and closedir.
5495 Wed Dec 13 22:06:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5497         * hurd/hurdsig.c (_hurd_internal_post_signal: suspend): Reply
5498         after aborting RPCs but before calling proc_mark_stop.
5500 Mon Dec 11 20:07:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5502         * posix/glob.c [! STDC_HEADERS]: Declare getenv.
5503         (glob): Avoid using function as value.
5505         * elf/rtld.c (dl_main): When mapping argument executable, set
5506         l_name to "", not l_libname.
5507         After loading DT_NEEDED library, set its l_type to lt_library.
5509         * sysdeps/mach/hurd/mmap.c: Don't interpret MAP_INHERIT to mean
5510         VM_INHERIT.  We can't handle MAP_INHERIT easily.
5511         Handle non-page-aligned addresses if congruent to offset.
5513         * elf/dl-init.c: Skip the initializer for l_type lt_executable
5514         with l_name "". Start at _dl_loaded; don't skip the first element.
5516         * elf/dl-load.c (MAP_FILE): Define to zero if undefined.
5517         (MAP_COPY): Define to MAP_PRIVATE if undefined.
5518         (_dl_map_object_from_fd): Don't use MAP_INHERIT in mmap calls.
5519         If file it ET_EXEC, set its l_type to lt_executable.
5521 Sun Dec 10 09:56:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5523         * elf/dl-minimal.c (malloc): Use MAP_PRIVATE in mmap call.
5525 Fri Dec  8 13:04:51 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5527         * locale/error.c, locale/error.h: Files removed.
5528         * locale/Makefile (distribute): Remove error.h.
5529         (lib-modules): Remove error.
5531         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For "tty"
5532         magic, return ENXIO if no ctty.
5534         * sysdeps/mach/hurd/mmap.c: For MAP_FIXED, deallocate a previous
5535         mapping if vm_map fails for that reason.
5537         * posix/glob.c: Implement new options GLOB_ALTDIRFUNC, GLOB_BRACE,
5538         GLOB_TILDE, GLOB_NOMAGIC.
5539         (glob): Use stat instead of lstat to determine directoriness.
5540         * posix/glob.h (GLOB_ALTDIRFUNC, GLOB_BRACE, GLOB_NOMAGIC, GLOB_TILDE):
5541         New flag bits.
5542         (__GLOB_FLAGS): Include them.
5543         (glob_t): New members gl_closedir, gl_readdir, gl_opendir, gl_lstat,
5544         gl_stat.
5546         * elf/elf.h (ET_NUM, SHT_NUM, STB_NUM, STT_NUM, PT_NUM): New macros.
5548         * sysdeps/unix/sysv/linux/sys/mman.h: Include <linux/mman.h> to
5549         define all the bit values.
5550         (MAP_*, MCL_*): Macros removed.
5552 Thu Dec  7 02:27:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5554         * resolv/res_comp.c, resolv/res_debug.c, resolv/res_send.c:
5555         Updated from BIND 4.9.3-BETA27.
5557 Wed Dec  6 18:44:01 1995  Miles Bader  <miles@gnu.ai.mit.edu>
5559         * sysdeps/mach/hurd/select.c (__select): Swap size args to mach_msg.
5561         * sysdeps/mach/hurd/select.c (__select): Frob TYPES correctly when
5562         we get a delayed reply.
5563         Only grab values out of entries in TYPES that have SELECT_RETURNED
5564         turned on, and turn it on whenever an rpc returns.
5565         Only clear bits in the user's fdsets -- those needing to be set
5566         should be already.
5567         Use SELECT_ALL in appropiate places.
5568         (SELECT_RETURNED, SELECT_ALL): New macros.
5570 Wed Dec  6 09:10:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5572         * sysdeps/mach/hurd/sys/param.h (NBBY): New macro.
5574         * gnu-versions.h (_GNU_GLOB_INTERFACE_VERSION): New macro.
5576 Tue Dec  5 14:00:17 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5578         * misc/Makefile (headers): Add error.h, err.h.
5579         (routines): Add error, err.
5580         (gpl2lgpl): New variable.
5581         * misc/err.c: New file.
5582         * misc/err.h: New file.
5583         * misc/error.c, misc/error.h: New files.
5585         * sysdeps/mach/hurd/ioctl.c: Fix typo in last change.
5587         * Makeconfig (+link): Translate libc% from $^, not just libc.a.
5588         (link-libc): Append $(libc.so-version) to libc.so.
5589         (built-program-cmd): Fix comma usage.
5590         * Makerules [libc.so-version] (libc.so$(libc.so-version)): Make a
5591         symlink to libc.so in the build directory.
5592         * Rules ($(others) $(tests)): Depend on the library that appears
5593         in $(link-libc).
5594         (%.out): Use $(built-program-cmd) in commands.
5596         * posix/unistd.h [__USE_MISC]: Declare brk, sbrk.
5598         * sysdeps/generic/setenv.c: Added canonical portability cruft.
5599         (setenv): Use realloc on LAST_ENVIRON instead of always copying.
5600         (unsetenv): New function.
5601         * stdlib/stdlib.h [__USE_BSD]: Declare unsetenv.
5602         * sysdeps/generic/putenv.c: Rewritten using setenv and unsetenv.
5604 Tue Dec  5 02:27:32 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5606         * libio/Makefile (routines): Remove iofscanf, add iopopen, pclose.
5608         * libio/iofscanf.c: Remove file.
5610         * libio/iogetdelim.c (_IO_getdelim): Correct stupid bug at string
5611         termination.
5613         * libio/iopopen.c: New file from GNU libio.
5615         * libio/memstream.c: Fixed bug in fclose handling.  Instead of
5616         providing a close callback we need a finish callback.
5618         * libio/pclose.c: New file.  Derived from popen.c in GNU libio.
5620         * posix/gnu/types.h: Fixed typo.
5622         * stdio-common/errnobug.c: fputs returns EOF in error case.  Do
5623         not test for != 0.
5625         * stdio-common/printf-parse.h (parse_one_spec): Do not force
5626         padding with ' ' if precision is given.  Fix by HJ Lu.
5628         * stdio-common/printf_fp.c: Fix comment.
5630         * stdio-common/tfformat.c, stdio-common/tiformat.c,
5631         stdio-common/tstdiomisc.c: New files from GNU libio test suite.
5633         * stdio-common/tstgetln.c: Provide ssize_t type when testing
5634         libio.
5636         * stdio-common/vfprintf.c (outchar): Use PUTC instead of putc.
5637         (vfprintf): Cleasr args_type array before using it.
5638         When printing 0 as an integer with precision 0 nothing must be
5639         written for the number.
5640         Based on patch by HJ Lu.
5642         * stdio-common/vfscanf.c: Remove fixed input buffer.  Now we
5643         have a dynamically extended buffer.
5645         * stdlib/strtod.c: Merge with version in Linux libc.  This fixes
5646         some bugs with handling of very small numbers and has different
5647         solution for formaer patches.
5649         * sysdeps/i386/i586/add_n.S, sysdeps/i386/i586/sub_n.S: Rename
5650         macros r1 and r2 to t1, and t2 resp.  This is necessary because
5651         glibc headers also define r1.
5653 Mon Dec  4 12:10:28 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5655         * stdlib/gen-mpn-copy (translations): Updated for new layout in
5656         GMP 1.910.
5658         * malloc/malloc.c (__malloc_initialize): Renamed from initialize;
5659         made global.
5660         (malloc): Caller changed.
5661         * malloc/realloc.c (realloc): Call __malloc_initialize if
5662         necessary, before checking hook.
5663         * malloc/malloc.h: Declare __malloc_initialize.
5665         * sysdeps/mach/hurd/ioctl.c: For IOC_VOID request, send ARG itself
5666         as integer_t arg in RPC.
5668 Sat Dec  2 03:47:27 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5670         * sysdeps/mach/hurd/brk.c (DATA_SIZE): Bump to 128MB.
5671         (_hurd_set_brk): Try to allocate more space when we run out.
5673         * sysdeps/generic/sbrk.c: If __curbrk is zero, call __brk with
5674         zero and examine it again.
5675         * sysdeps/unix/sysv/linux/i386/brk.c: New file.
5676         * sysdeps/unix/sysv/linux/i386/brk.S: File removed.
5677         * sysdeps/unix/sysv/linux/i386/sbrk.S: File removed.
5678         * sysdeps/unix/sysv/linux/dl-sysdep.c: New file.
5679         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start) [DL_SYSDEP_INIT]:
5680         Invoke this macro before calling DL_MAIN.
5682         * malloc/malloc.c (malloc): Do initialization here, before
5683         checking the hook.
5684         (_malloc_internal): Don't do it here.
5686 Wed Nov 29 12:30:50 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5688         * libio/vsnprintf.c (__vsnprintf): Define as alias.
5689         * libio/iovsscanf.c (__vsscanf): Define as alias.
5690         * asprintf.c: Remove libio adaptation code added by drepper.
5691         * dprintf.c: Likewise.
5692         * printf.c: Likewise.
5693         * scanf.c: Likewise.
5694         * snprintf.c: Likewise.
5695         * sprintf.c: Likewise.
5696         * sscanf.c: Likewise.
5697         * vprintf.c: Likewise.
5698         * stdio-common/vfscanf.c [USE_IN_LIBIO] (__vfscanf): New wrapper
5699         function.
5700         (vfscanf): Define unconditionally.
5702         * sysdeps/i386/dl-machine.h (elf_machine_rel): If SYM is null, use
5703         zero for value.
5705         * misc/getpass.c: Write a newline after reading the unechoed
5706         password.
5708 Mon Nov 27 19:24:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5710         * posix/Makefile (routines): Add getsid.
5711         * sysdeps/unix/sysv/linux/getsid.S: New file.
5712         * sysdeps/mach/hurd/getsid.c: New file.
5713         * sysdeps/stub/getsid.c: New file.
5714         * posix/unistd.h [__USE_GNU]: Declare getsid.
5716 Sun Nov 26 12:44:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5718         * libc-symbols.h (N_): New macro.
5720 Sat Nov 25 02:48:47 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5722         * assert/assert-perr.c, assert/assert.c, inet/rcmd.c,
5723         malloc/mcheck.c, malloc/vm-limit.c, posix/getconf.c, posix/id.c,
5724         resolv/herror.c, sunrpc/auth_unix.c, sunrpc/clnt_perr.c,
5725         sunrpc/clnt_raw.c, sunrpc/get_myaddr.c, sunrpc/pmap_clnt.c,
5726         sunrpc/pmap_rmt.c, sunrpc/portmap.c, sunrpc/rpc_main.c,
5727         sunrpc/rpc_parse.c, sunrpc/rpc_scan.c, sunrpc/rpc_util.c,
5728         sunrpc/rpcinfo.c, sunrpc/svc_simple.c, sunrpc/svc_tcp.c,
5729         sunrpc/svc_udp.c, time/zdump.c, time/zic.c: Mark translatable
5730         strings.
5732 Sun Nov 26 02:00:02 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5734         * misc/syslog.c (vsyslog) [USE_IN_LIBIO]: Adapted for libio.
5736 Thu Nov 23 02:21:55 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5738         * sysdeps/unix/sysv/linux/{mlock,munlock,mlockall,munlockall}.S:
5739         New files.
5740         * sysdeps/unix/sysv/linux/sys/mman.h: Add prototypes for new functions
5741         mlock, munlock, mlockall, and munlockall.
5743 Thu Nov 23 18:26:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5745         * configure.in (--enable-libio): Set $stdio based on $enableval,
5746         not always to libio.
5748 Thu Nov 23 18:06:48 1995  Richard Stallman  <rms@gnu.ai.mit.edu>
5750         * malloc/malloc.c (_malloc_internal): Can't use
5751         get_contiguous_space when the heap info table
5752         will be growing.  Account for new contiguous space in _heaplimit.
5754 Wed Nov 22 12:37:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5756         * sysdeps/unix/sysv/linux/i386/sysdep.S (_errno): Define as alias
5757         for errno.
5759         * stdio-common/vfprintf.c [USE_IN_LIBIO] (vfprintf): Define as
5760         alias for _IO_vfprintf.
5762         * sysdeps/unix/sysv/linux/sockaddrcom.h: File removed.
5764         * sysdeps/unix/sysv/linux/i386/init-first.c (init): Use
5765         __fpu_control instead of ___fpu_control.
5766         * sysdeps/unix/sysv/linux/i386/ieee_fpu.c
5767         (___fpu_control): Renamed to __fpu_control.
5768         * sysdeps/unix/sysv/linux/i386/fpu_control.h: Likewise.
5769         * sysdeps/unix/sysv/linux/i386/fpu_control.c: Likewise.
5771         * elf/dl-minimal.c: New file.
5772         * elf/Makefile (rtld-routines): Add dl-minimal.
5773         * elf/rtld.c (__dgettext, __assert_fail, __assert_perror_fail):
5774         Functions moved to dl-minimal.c.
5775         * sysdeps/mach/hurd/dl-sysdep.c (malloc, free, realloc,
5776         sigjmp_save, longjmp): Likewise.
5778         * sysdeps/unix/sysv/linux/i386/brk.S (__curbrk): Always initialize
5779         to &_end, regardless of PIC.
5781         * stdio-common/vfscanf.c (__vfscanf): Fix arg name in defn.
5783 Tue Nov 21 14:12:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5785         * malloc/malloc.c (align): Don't check contiguity and call abort.
5787         * hurd/hurdsig.c (post_reply): Function removed.
5788         (abort_thread, abort_all_rpcs, _hurdsig_abort_rpcs): Don't call it.
5789         Take single callback fn arg instead of reply port and type.
5790         (_hurd_internal_post_signal): Callers changed.
5791         Cache reply stub fn ptr in local var before UNTRACED might be changed.
5793         * sysdeps/mach/hurd/mmap.c: Cope with a null write memobj for
5794         PROT_READ|PROT_WRITE copy mapping.  Pass a proper vm_inherit_t to
5795         vm_map.
5797         * elf/rtld.c (_dl_start): For --list, do output and exit before
5798         relocating.
5800 Mon Nov 20 16:19:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5802         * intl/Makefile [gettext-srcdir]: Rewrote copying rules to only
5803         get .c and .h files.
5805         * malloc/malloc.c (align): Use abort instead of assert.
5807 Sun Nov 19 18:23:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5809         * Makeconfig (+includes): Add $($(stdio)-include).
5810         (libio-include): New variable.
5812         * stdlib/strtod.c: Put weak_symbol after function defn.
5813         * stdlib/strtol.c: Likewise.
5815         * configure.in (--enable-libio): If not present, set $stdio to
5816         "default".  Move stdio/libio check to end, so sysdeps fragments
5817         can affect it.  Reset $stdio to "stdio" if it's "default".
5818         * sysdeps/unix/sysv/linux/configure: New file.
5820 Sat Nov 18 16:46:01 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
5822         * libio/Makefile, libio/cleanup.c, libio/clearerr.c, libio/feof.c,
5823         libio/ferror.c, libio/fgetc.c, libio/filedoalloc.c, libio/fileno.c,
5824         libio/fileops.c, libio/fputc.c, libio/freopen.c, libio/fseek.c,
5825         libio/genops.c, libio/getc.c, libio/getchar.c, libio/iofclose.c,
5826         libio/iofdopen.c, libio/iofflush.c, libio/iofgetpos.c, libio/iofgets.c,
5827         libio/iofopen.c, libio/iofprintf.c, libio/iofputs.c, libio/iofread.c,
5828         libio/iofscanf.c, libio/iofsetpos.c, libio/ioftell.c, libio/iofwrite.c,
5829         libio/iogetdelim.c, libio/iogetline.c, libio/iogets.c, libio/iolibio.h,
5830         libio/iopadn.c, libio/ioprims.c, libio/ioputs.c, libio/ioseekoff.c,
5831         libio/ioseekpos.c, libio/iosetbuffer.c, libio/iosetvbuf.c,
5832         libio/iosprintf.c, libio/ioungetc.c, libio/iovsprintf.c,
5833         libio/iovsscanf.c, libio/libio.h, libio/libioP.h, libio/putc.c,
5834         libio/putchar.c, libio/rewind.c, libio/setbuf.c, libio/setlinebuf.c,
5835         libio/stdfiles.c, libio/stdio.c, libio/stdio.h, libio/strfile.h,
5836         libio/strops.c, libio/vasprintf.c, libio/vscanf.c, libio/vsnprintf.c:
5837         New files.  Slightly modified version from Linux libc.
5839         * libio/memstream.c, libio/vdprintf.c: New files for functions not
5840         (yet) part of GNU libio.
5842         * libio/iofopncook.c: Implementation of `fopencookie', mainly written
5843         by Per Bothner.
5845         * stdio-common/getline.c: Adapted to libio.
5846         * stdio-common/snprintf.c: Adapted to libio.
5847         * stdio-common/vfprintf.c: Adapted to libio.
5848         * stdio-common/vfscanf.c: Adapted to libio.
5849         * sysdeps/posix/tempname.c: Adapted to libio.
5851 Fri Nov 17 17:57:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5853         * sysdeps/generic/Makefile (make_siglist): Add missing backslash.
5855         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start_cleanup): New
5856         function.
5858         * hurd/hurdfault.c: Replace __libc_fatal calls with assert_perror.
5859         (_hurdsig_fault_init): Remove #if 0 from setting exception port.
5860         Insert send right for SIGEXC before thread_set_special_port.
5861         * hurd/hurdsig.c: Replace __libc_fatal calls with assert_perror.
5862         (_hurdsig_init): Remove #if 0 from setting exception port.
5864         * sysdeps/mach/hurd/ptrace.c (ptrace: PTRACE_CONT): Use
5865         HURD_MSGPORT_RPC macro.
5867 Thu Nov 16 06:07:49 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5869         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start_cleanup): New
5870         function.
5871         (_dl_sysdep_start): Move cleanup code there.
5873         * Makeconfig (default-rpath): New variable.
5874         (link-libc): Use it.
5875         * elf/Makefile (ld.so): Pass -rpath=$(default-rpath).
5876         * elf/rtld.c (_dl_rpath): New variable.
5877         (_dl_start): Set it from rtld_map's DT_RPATH.
5878         Call _dl_setup_hash on rtld_map.
5879         (dl_main): Cache address of _exit in variable before relocating,
5880         and use that in later calls.  Call _dl_sysdep_start_cleanup before
5881         relocating.  Keep track of dependency order while loading; remove
5882         rtld_map from chain, and reinsert in proper order if there is a
5883         dependency on it.
5885         * sysdeps/generic/Makefile (make_siglist): Pass
5886         -DSIGNUM_H=... with config's signum.h location.
5887         * sysdeps/generic/make_siglist.c: Include SIGNUM_H to define
5888         signal numbers.
5889         (HAVE_STRSIGNAL, HAVE_PSIGNAL): Define these before including signame.c
5890         (main): Deansideclize output.
5892         * elf/dl-load.c (_dl_map_object): Use _dl_rpath variable in place
5893         of DEFAULT_RPATH macro.
5894         * elf/Makefile: Undo last change.
5896         * sysdeps/mach/hurd/dl-sysdep.c (free): Don't abort, just nop.
5898 Wed Nov 15 19:22:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5900         * elf/dl-lookup.c (_dl_lookup_symbol): Undefined symbol is no
5901         error if weak.
5903         * elf/Makefile (default-rpath): New variable.
5904         (CPPFLAGS): Append -DDEFAULT_RPATH=....
5905         * elf/dl-load.c (_dl_map_object): Use DEFAULT_RPATH instead of
5906         hard-coded "/lib:/usr/lib".
5908         * sysdeps/mach/hurd/dl-sysdep.c: Include _itoa.h from stdio-common
5909         instead of stdio.
5910         (_dl_sysdep_start): If passed user entry is zero and
5911         EXEC_STACK_ARGS flag set, reset user entry to &_start.
5913         * elf/rtld.c (dl_main): Only call _dl_setup_hash if there is a
5914         DT_HASH element.
5916         * libc-symbols.h [HAVE_ELF] (symbol_set_declare): Gratuitously
5917         repeat weak decl using weak_symbol macro, in case using broken GCC
5918         (<2.8).
5920 Wed Nov 15 18:49:55 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
5922         * sysdeps/i386/isnanl.c: New file.
5923         * sysdeps/i386/isinfl.c: New file.
5925 Tue Nov 14 18:44:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5927         * malloc/free.c (free): Moved null and aligned_blocks checks
5928         inside _free_internal.
5930 Mon Nov 13 15:23:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5932         * malloc/malloc.c (morecore): Fix inverted test in allocating new
5933         info table.
5935         * malloc/malloc.c (align): Fix assertion.
5937         * malloc/malloc.c: Include assert.h.
5939         * libc-symbols.h: Use __attribute__ for GCC 2.8, not 2.7.
5941         * malloc/malloc.h [emacs] (emacs_loser_valloc): Macro removed.
5942         (valloc): Protect decl with [! (_MALLOC_INTERNAL && emacs)].
5944 Fri Nov 10 14:15:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5946         * malloc/malloc.c (align): Assert that space for alignment
5947         adjustment is same original space.
5949         * hurd/hurdprio.c (_hurd_priority_which_map): Cast vm_deallocate
5950         arg to vm_address_t.
5952         * hurd/hurdsig.c (_hurd_internal_post_signal): For SIGNO == 0,
5953         skip straight to pending check.  When UNTRACED, resume process
5954         from suspension first.
5956         * intl/Makefile (headers): New variable, libintl.h.
5957         [gettext-srcdir]: New rules to copy source from $(gettext-srcdir)/intl.
5958         * configure.in: Check for --with-gettext arg.
5960 Fri Nov 10 13:51:30 1995  Richard Stallman  <rms@gnu.ai.mit.edu>
5962         * malloc/malloc.c (get_contiguous_space): New function.
5963         (morecore): Rewrite allocating new malloc info table.
5964         (_malloc_internal): Use get_contiguous_space.
5966 Fri Nov 10 13:03:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5968         * hurd/hurdexec.c (_hurd_exec): If exec'ing self, pass
5969         _hurd_msgport to be destroyed.
5971         * Makerules (installed-libcs): Filter out %_pic.a.
5973         * hurd/hurdinit.c (_hurd_proc_init): When traced, use msg_sig_post
5974         to our msgport to take SIGTRAP, instead of _hurd_raise_signal.
5976         * hurd/Makefile (user-interfaces): Add hurd/process_request.
5978 Wed Nov  8 16:31:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5980         * termios/Makefile (headers): Add sys/ttychars.h.
5981         * termios/sys/ttychars.h: New file, incorporated from 4.4BSD-Lite
5982         for compatibility.
5984         * signal/signal.h [__USE_BSD] (sig_t): New typedef.
5986 Wed Nov  8 15:12:47 1995  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>
5988         * sysdeps/mach/hurd/ptrace.c (ptrace) [PTRACE_TRACEME]: Notify the
5989         proc server that we are now traced.
5991 Tue Nov  7 12:29:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5993         * elf/Makefile (ldd): Make it executable.
5995         * Makeconfig (config-LDFLAGS): Find dynamic linker in $(slibdir).
5997         * Makeconfig (slibdir): New variable.
5998         * Makerules (install): Install libc.so in $(slibdir).
5999         * elf/Makefile (install-others): Install ld.so and ld-linux.so.1
6000         in $(slibdir).
6002         * elf/linux-compat.c: New file.
6003         * elf/Makefile (distribute): Add linux-compat.c.
6004         (generated): Add librtld.so.
6005         [$(config-os)=linux*] (extra-objs): Add linux-compat.so.
6006         [$(config-os)=linux*] (extra-objs): Add ld-linux.so.1.
6007         (librtld.so): New target.
6008         (ld.so, ld-linux.so.1): Make from librtld.so.
6010         * elf/rtld.c (dl_main): Instead of weak call to _dl_compat_init,
6011         call our own DT_INIT if we have one (and then clear it).
6012         (__dgettext): New weak function.
6014         * intl/localealias.c (read_alias_file): Avoid sprintf; use memcpy
6015         by hand instead.
6017         * sysdeps/generic/_strerror.c (_strerror_internal): Use _itoa
6018         instead of snprintf.
6020         * sysdeps/mach/_strerror.c (_strerror_internal): Don't write
6021         BUF[BUFLEN].
6023         * elf/rtld.c (rtld_map): New static variable.
6024         (_dl_start): Use a differently named local BOOTSTRAP_MAP for the
6025         bootstrapping.  Then copy data into `rtld_map'.
6026         (dl_main): Finish filling in rtld_map and link it into the chain,
6027         instead of allocating a new structure.
6028         (dl_main): Call _dl_compat_init if it is defined (use weak ref).
6030         * elf/dlsym.c: Fix last change: move REF out of `doit'.
6032 Mon Nov  6 16:20:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6034         * elf/dlsym.c: Return the proper value, not just the defining
6035         object's loadbase.
6037 Sun Nov  5 16:09:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6039         * stdio-common/vfprintf.c (%c): Count the character itself towards
6040         the field width in all cases.
6042         * sysdeps/mach/hurd/getpriority.c (getpriority): Cast
6043         __vm_deallocate arg to vm_address_t.
6045 Fri Nov  3 17:27:49 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6047         * sysdeps/mach/hurd/sendto.c: Don't pass BINDING arg to
6048         socket_create_address.
6049         * sysdeps/mach/hurd/connect.c: Likewise.
6050         * sysdeps/mach/hurd/bind.c: Likewise.
6052         * hurd/hurdprio.c (_hurd_priority_which_map): Pass threadwaits
6053         args to proc_getprocinfo.
6054         * sysdeps/mach/hurd/getpriority.c: Likewise.
6056         * hurd/hurdmsg.c (_S_msg_report_wait): New stub function.
6058 Thu Nov  2 19:24:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6060         * sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Define as common.
6062 Tue Oct 31 00:07:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6064         * sysdeps/mach/hurd/getpriority.c (getpriority): Pass
6065         PI_FETCH_TASKINFO to proc_getprocinfo and through
6066         _hurd_priority_which_map.
6068         * sysdeps/mach/hurd/setpriority.c (setpriority): Pass new arg to
6069         _hurd_priority_which_map.
6070         * hurd/hurdprio.c (_hurd_priority_which_map): New arg PI_FLAGS,
6071         passed through to proc_getprocinfo RPC.
6072         * hurd/hurd/resource.h: Add PI_FLAGS arg in decl.
6074         * sysdeps/mach/hurd/group_member.c: New file.
6075         * sysdeps/generic/group_member.c: New file.
6077         * Makerules (lib-noranlib): Don't depend on $(install-lib).
6078         (others): Do.
6079         * extra-lib.mk: Fix test of $(lib)-no-lib-dep.
6081 Mon Oct 30 12:33:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6083         * Rules (others): Depend on $(extra-objs).
6085         * posix/unistd.h [__USE_GNU]: Declare group_member, __group_member.
6086         * posix/Makefile (routines): Add group_member.
6088         * sysdeps/posix/euidaccess.c: New file, adapted from fileutils.
6090         * sysdeps/unix/sysv/linux/i386/sigaction.c: Tighten constraint for
6091         SIG operand in asm so it must be a register.
6092         Add dead return to quiet gcc warning.
6094         * Makerules (sysd-rules): Write a defn for sysd-rules-done.
6095         [! sysd-rules-done]: Inhibit deps.
6097 Thu Oct 26 23:11:11 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6099         * sysdeps/unix/sysv/linux/poll.c: Don't define as stub.  Use
6100         simulation of system call using select.
6102         * sysdeps/unix/sysv/linux/signal.c: Use POSIX implementation.
6104         * sysdeps/unix/sysv/linux/statbuf.h: Define _STAT_VER.
6106         * sysdeps/unix/sysv/linux/i386/sigaction.c: Correct parameter
6107         name usage (new->act, old->oact).
6108         Correct asm statement because of gcc strangeness.
6110         * sysdeps/i386/i586/strchr.S: Correct typos: cmp -> cmpb.
6112         * sunrpc/clnt_perr.c: Remove declaration of sys_errlist.  They
6113         conflict with the ones in stdio.h.
6115         * string/tester.c: %Z is no complete format.  Change to %Zd.
6117 Thu Oct 26 18:13:33 1995  Miles Bader  <miles@gnu.ai.mit.edu>
6119         * sysdeps/mach/hurd/bind.c (bind): Swap args to dir_link.
6120         * sysdeps/mach/hurd/link.c (__link): Ditto.
6121         * sysdeps/mach/hurd/symlink.c (__symlink): Ditto.
6122         * sysdeps/mach/hurd/mknod.c (__mknod): Ditto.
6123         Include "stdio-common/_itoa.h" instead of "stdio/_itoa.h".
6125 Thu Oct 26 00:11:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6127         * sysdeps/unix/sysv/linux/i386/sigaction.c: New file.
6129         * sysdeps/unix/sysv/linux/i386/xstat.S: Don't use JUMPTARGET macro
6130         on syscall_error.  For PIC, it is a local label;
6131         for non-PIC, JUMPTARGET expands to the unadorned name anyway.
6132         * sysdeps/unix/sysv/linux/i386/xmknod.S: Likewise.
6133         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
6134         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
6135         * sysdeps/unix/sysv/linux/i386/sbrk.S: Likewise.
6136         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
6137         * sysdeps/unix/sysv/linux/i386/brk.S: Likewise.
6139 Thu Oct 26 03:01:22 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6141         * sysdeps/unix/sysv/linux/syscall.h: Strip list of syscalls in
6142         comment to the necessary ones.  Add _readv and _writev.
6144         * sysdeps/unix/configure.in: Change syntax for system call test
6145         candidates and adapt sed script for this.  Now use : to separate
6146         syscall name and file name.
6148         * sysdeps/unix/sysv/linux/i386/sysdep.h (ENTRY): System call
6149         number is now set is DO_CALL.  So call with additional argument.
6150         (DO_CALL): Takes an additional argument.  Load system call
6151         number according to new argument.
6152         (SYSCALL_ERROR_HANDLER): Add ; after last ret statement.
6153         * sysdeps/unix/sysv/linux/i386/brk.S [PIC]: Define __syscall_error
6154         locally using SYSCALL_ERROR_HANDLER macro.
6155         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
6156         * sysdeps/unix/sysv/linux/i386/sbrk.S: Likewise.
6157         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
6158         * sysdeps/unix/sysv/linux/i386/xmknod.S: Likewise.
6159         * sysdeps/unix/sysv/linux/i386/xstat.S: Likewise.
6160         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
6161         Don't use DO_CALL macro; instead use lower level macros for better
6162         control.
6164         * sysdeps/unix/sysv/linux/sigaction.h: New file.
6165         * sysdeps/unix/sysv/linux/sigaction.S: File removed.
6166         * sysdeps/unix/sysv/linux/signal.S: File removed.
6168 Wed Oct 25 14:23:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6170         * hurd/hurdstartup.c (_hurd_startup): Use new
6171         exec_startup_get_info RPC from exec_startup.defs
6172         in place of old exec_startup from exec.defs.  Remove kludge to
6173         guess user entry and phdr locations, since the new RPC gives us
6174         that info.
6176         * stdio/stdio.h (sys_errlist, _sys_errlist): Declare const.
6177         * sysdeps/generic/_strerror.c: Undo last change.
6179         * sysdeps/unix/sysv/linux/stat.c: New file.
6180         * sysdeps/unix/sysv/linux/fstat.c: New file.
6181         * sysdeps/unix/sysv/linux/lstat.c: New file.
6182         * sysdeps/unix/sysv/linux/i386/stat.S: File removed.
6183         * sysdeps/unix/sysv/linux/i386/fstat.S: File removed.
6184         * sysdeps/unix/sysv/linux/i386/lstat.S: File removed.
6186 Tue Oct 24 15:22:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6188         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
6189         New macro.
6190         (PSEUDO): Use it instead of SYSCALL_PIC_SETUP and jmp syscall_error.
6192         * sysdeps/unix/sysv/linux/i386/sysdep.S (__syscall_error): Define
6193         only #ifndef PIC.
6195         * Makeconfig (built-program-cmd): New variable.
6196         * sunrpc/Makefile (rpcgen-cmd): Use $(built-program-cmd).
6197         * time/Makefile (zic-cmd): Likewise.
6199         * hurd/Makefile (user-interfaces): Add hurd/exec_startup.
6201         * sunrpc/Makefile (librpcsvc-no-lib-dep): New variable.
6202         * extra-lib.mk: If $(lib)-no-lib-dep is defined and MAKELEVEL>0,
6203         make `others' rather than `lib-noranlib' depend on the libraries.
6205         * sysdeps/unix/configure.in: Check for fchdir syscall.
6206         Improve sed script to allow / on rhs without / on lhs.
6208 Thu Oct 19 03:47:32 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6210         * sysdeps/unix/sysv/linux/termbits.h: Don't define speed constants.
6212         * elf/rtld.c: Include _itoa.h from stdio-common instead of stdio.
6214         * sysdeps/unix/sysv/linux/select.S: New file.
6216 Wed Oct 18 03:33:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6218         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Use
6219         SYSCALL_PIC_SETUP before jumping to syscall_error.
6220         * sysdeps/unix/i386/sysdep.h (SYSCALL_PIC_SETUP): New macro.
6221         (PSEUDO): Use it before jumping to syscall_error.
6222         * sysdeps/unix/i386/sysdep.S [! PIC]: Don't find GOT address;
6223         expect it in %ebx on entry.  Pop old %ebx value off stack after
6224         using it.
6226         * signal/signal.h [__USE_BSD] (_sys_siglist, sys_siglist): Declare
6227         them.
6229         * sysdeps/generic/_strerror.c: Declare _sys_errlist and _sys_nerr.
6231         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For magic
6232         `fd/', pass the right pointer to strtol to parse the number.
6234 Tue Oct 17 23:00:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6236         * sysdeps/mach/_strerror.c: Include stdio-common/_itoa.h instead
6237         of stdio/_itoa.h.
6239 Tue Oct 17 19:51:17 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6241         * sysdeps/unix/sysv/linux/i386/stat.S [PIC] (__stat): Set GOT
6242         register %ebx before calling __xstat through PLT.
6244         * sysdeps/unix/sysv/linux/i386/sysdep.S: Fix typo in comment.
6246         * sysdeps/unix/sysv/linux/sigset.h: Remove file.
6248 Tue Oct 17 01:21:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6250         * hurd/hurdsock.c: Include stdio-common/_itoa.h instead of
6251         stdio/_itoa.h.
6252         * hurd/hurdlookup.c: Likewise.
6254         * hurd/hurd/signal.h: Declare hurd_preempt_signals and
6255         hurd_unpreempt_signals.
6257         * stdio/stdio.h: Declare __snprintf and __vsnprintf.
6259         * stdio-common/psignal.c: Translate signal description strings.
6260         * string/strsignal.c: Likewise.
6261         * sysdeps/generic/_strerror.c (_strerror_internal): Translate
6262         error strings.
6263         * sysdeps/mach/_strerror.c: Likewise.
6265         * stdio-common/snprintf.c (__snprintf): Renamed from snprintf;
6266         call __vsnprintf.
6267         (snprintf): Define as weak alias.
6268         * stdio/vsnprintf.c (__vsnprintf): Renamed from vsnprintf.
6269         (vsnprintf): Define as weak alias.
6271 Mon Oct 16 03:22:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6273         * Makerules (install-lib): Filter out %_pic.a; install only the
6274         linked shared objects.
6276         * locale/Makefile (aux): Add SYS_libc.
6277         * locale/SYS_libc.c: New file.
6278         * libc-symbols.h [! ASSEMBLER] (_): New macro.
6280         * configure.in (libc_cv_asm_set_directive): Link program into
6281         conftest instead of letting it default to a.out.
6283         * elf/Makefile (install-others): Add missing slash.
6285         * elf/ldd.sh.in: Prepend `./' to relative file names so ld.so
6286         won't search LD_LIBRARY_PATH.
6288         * Makefile (subdirs): Replace stdio with stdio-common and $(stdio).
6289         * configure.in: Grok arg --enable-libio.
6290         ($stdio = libio): Define USE_IN_LIBIO.
6291         * config.h.in (USE_IN_LIBIO): Add #undef.
6292         * config.make.in (stdio): New variable, set by configure.
6293         * Makeconfig (stdio): New variable.
6294         * stdio.h [USE_IN_LIBIO]: Include libio/stdio.h instead of
6295         stdio/stdio.h.
6296         * stdio-common/Makefile: New file.
6297         * stdio/Makefile: Half the contents moved to stdio-common/Makefile.
6298         * stdio/_itoa.c: Moved to stdio-common.
6299         * stdio/_itoa.h: Moved to stdio-common.
6300         * stdio/asprintf.c: Moved to stdio-common.
6301         * stdio/bug1.c: Moved to stdio-common.
6302         * stdio/bug1.input: Moved to stdio-common.
6303         * stdio/bug2.c: Moved to stdio-common.
6304         * stdio/bug3.c: Moved to stdio-common.
6305         * stdio/bug4.c: Moved to stdio-common.
6306         * stdio/bug5.c: Moved to stdio-common.
6307         * stdio/bug6.c: Moved to stdio-common.
6308         * stdio/bug6.input: Moved to stdio-common.
6309         * stdio/bug7.c: Moved to stdio-common.
6310         * stdio/dprintf.c: Moved to stdio-common.
6311         * stdio/errnobug.c: Moved to stdio-common.
6312         * stdio/getline.c: Moved to stdio-common.
6313         * stdio/getw.c: Moved to stdio-common.
6314         * stdio/perror.c: Moved to stdio-common.
6315         * stdio/printf-parse.h: Moved to stdio-common.
6316         * stdio/printf-prs.c: Moved to stdio-common.
6317         * stdio/printf.c: Moved to stdio-common.
6318         * stdio/printf.h: Moved to stdio-common.
6319         * stdio/printf_fp.c: Moved to stdio-common.
6320         * stdio/psignal.c: Moved to stdio-common.
6321         * stdio/putw.c: Moved to stdio-common.
6322         * stdio/reg-printf.c: Moved to stdio-common.
6323         * stdio/scanf.c: Moved to stdio-common.
6324         * stdio/snprintf.c: Moved to stdio-common.
6325         * stdio/sprintf.c: Moved to stdio-common.
6326         * stdio/sscanf.c: Moved to stdio-common.
6327         * stdio/tempnam.c: Moved to stdio-common.
6328         * stdio/temptest.c: Moved to stdio-common.
6329         * stdio/test-fseek.c: Moved to stdio-common.
6330         * stdio/test-fwrite.c: Moved to stdio-common.
6331         * stdio/test-popen.c: Moved to stdio-common.
6332         * stdio/test_rdwr.c: Moved to stdio-common.
6333         * stdio/tmpfile.c: Moved to stdio-common.
6334         * stdio/tmpnam.c: Moved to stdio-common.
6335         * stdio/tst-fileno.c: Moved to stdio-common.
6336         * stdio/tst-printf.c: Moved to stdio-common.
6337         * stdio/tstgetln.c: Moved to stdio-common.
6338         * stdio/tstgetln.input: Moved to stdio-common.
6339         * stdio/tstscanf.c: Moved to stdio-common.
6340         * stdio/tstscanf.input: Moved to stdio-common.
6341         * stdio/vfprintf.c: Moved to stdio-common.
6342         * stdio/vfscanf.c: Moved to stdio-common.
6343         * stdio/vprintf.c: Moved to stdio-common.
6344         * stdio/xbug.c: Moved to stdio-common.
6345         * sysdeps/generic/Makefile (siglist.c rules): Do this in subdir
6346         stdio-common instead of stdio.
6347         * sysdeps/unix/Makefile (errlist.c rules): Likewise.
6348         * stdio-common/asprintf.c [USE_IN_LIBIO]: Call libio primitive
6349         function.
6350         * stdio-common/dprintf.c: Likewise.
6351         * stdio-common/printf.c: Likewise.
6352         * stdio-common/scanf.c: Likewise.
6353         * stdio-common/snprintf.c: Likewise.
6354         * stdio-common/sprintf.c: Likewise.
6355         * stdio-common/sscanf.c: Likewise.
6356         * stdio-common/vprintf.c: Likewise.
6358         * Makerules: Include $(+depfiles) directly instead of generating
6359         depend-$(subdir).
6360         (depend-$(subdir)): Target removed.
6361         (common-clean): Don't remove depend-$(subdir).
6363         * sysdeps/unix/sysv/linux/Makefile (rtld-installed-name): New variable.
6364         (config-LDFLAGS): Variable removed.
6366         * sysdeps/mach/hurd/getcwd.c: Use __file_name_lookup_under.
6367         * sysdeps/mach/hurd/bind.c: Likewise.
6368         * sysdeps/mach/hurd/access.c: Use new __hurd_file_name_lookup
6369         calling convention.
6371         * hurd/hurdexec.c: Undo last change (10 Oct 95).
6373 Sun Oct 15 21:04:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6375         * hurd/hurd/lookup.h: New file.
6376         * hurd/hurdlookup.c (__file_name_lookup_under): New function.
6377         (__hurd_file_name_lookup, __hurd_file_name_lookup_retry,
6378         __hurd_file_name_split): Rewritten to take callback functions for
6379         using any needed init or dtable port, instead of passing in crdir
6380         and cwdir ports.
6381         (__file_name_lookup, __file_name_split): Use new calling
6382         convention; pass _hurd_ports_use and __getdport as the callback
6383         functions.
6385         * sysdeps/mach/hurd/chroot.c: Use __file_name_lookup_under instead
6386         of __hurd_file_name_lookup.
6387         * sysdeps/mach/hurd/chdir.c: Likewise.
6388         * sysdeps/mach/hurd/fchdir.c: Likewise.
6389         * hurd/fchroot.c: Likewise.
6391         * stdlib/Makefile (mpn-found): Don't omit %.s.
6392         (mpn-copy-sysdep): Omit files in nonexistent directories.
6393         (copy-mpn): Commit files to CVS.
6394         * stdlib/gen-mpn-copy (translations): Update translations for GMP
6395         1.906.7.
6397         * configure.in (machine): Translate alpha* to alpha/&, hppa* to hppa/&.
6399 Sat Oct 14 02:52:36 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6401         * malloc/malloc.c (_malloc_internal): Performance fix.  Move
6402         if statement out of loop.
6404         * stdio/_itoa.c, stdio/_itoa.h: Complete rewrite.  Much faster
6405         implementation using GMP functions.  Contributed by
6406         Torbjorn Granlund and Ulrich Drepper.
6408         * stdio/test_rdwr.c: Include <errno.h>.
6410         * sysdeps/i386/i586/Implies: New file.
6412         New highly optimized string functions for i[345]86.
6413         * sysdeps/i386/memchr.S, sysdeps/i386/memcmp.S: New files.
6414         * sysdeps/i386/stpcpy.S, sysdeps/i386/stpncpy.S: New files.
6415         * sysdeps/i386/strchr.S, sysdeps/i386/strcspn.S: New files.
6416         * sysdeps/i386/strpbrk.S, sysdeps/i386/strrchr.S: New files.
6417         * sysdeps/i386/strspn.S, sysdeps/i386/i486/strcat.S: New files.
6418         * sysdeps/i386/i486/strlen.S, sysdeps/i386/i586/strchr.S: New files.
6419         * sysdeps/i386/i586/strlen.S: New file.
6420         * sysdeps/i386/memchr.c: Removed.  There is now an assembler version.
6422         * sysdeps/i386/i586/memcopy.h (WORD_COPY_BWD): Parameters did
6423         not correspond to used values.
6425         * sysdeps/unix/sysv/linux/nfs/nfs.h: New file.  Simply a wrapper
6426         around a kernel header file.
6427         * sysdeps/unix/sysv/linux/Dist: Add it.
6428         * sysdeps/unix/sysv/linux/Makefile [$(subdir)=sunrpc] (headers):
6429         Likewise.
6431         * sysdeps/unix/sysv/linux/local_lim.h: Rewrite.  Instead of
6432         defining ourself we use a kernel header file.
6434         * sysdeps/unix/sysv/linux/i386/sysdep.h (DO_CALL): Optimize system
6435         call handler for i586.
6437         * sysdeps/unix/sysv/linux/sys/param.h: Add copyright and clean up.
6439 Thu Oct 12 15:45:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6441         * hurd/hurd.h (file_name_lookup_under): Declare it.
6442         * hurd/Makefile (headers): Add hurd/lookup.h.
6444         * hurd/hurdinit.c (_hurd_ports_use): New function.
6445         * hurd/hurd.h (_hurd_ports_use): Declare it.
6446         (hurd_invoke_translator, hurd_file_name_lookup, hurd_file_name_split,
6447         hurd_file_name_lookup_retry): Remove these decls.
6448         * hurd/Makefile (routines): Remove invoke-trans.
6450 Wed Oct 11 00:00:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6452         * sysdeps/i386/dl-machine.h (elf_machine_rel): Use +=, not =, to
6453         apply R_386_PC32 reloc.
6455         * Makeconfig (config-LDFLAGS): Add missing slash.
6457         * sysdeps/mach/hurd/profil.c (fork_profil): Only call
6458         update_waiter if profiling was enabled in the parent.
6460         * csu/initfini.c: Don't pass -f flag to cp.
6462 Tue Oct 10 23:08:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6464         * Makerules (build-shlib): Pass -rpath and -rpath-link options.
6465         (LDFLAGS-c.so): Don't pass -dynamic-linker here.
6466         * Makeconfig (+link): Pass $(sysdep-LDFLAGS).
6467         (link-libc): Pass -rpath and -rpath-link options.
6469         * MakeTAGS (all-dirs): Omit CVS directories.
6470         Specify vpath directives to find source files in $(all-dirs).
6471         (sources, headers): Append sources and headers from $(all-dist) to
6472         these.
6473         (all-dist): Filter them out of this.
6474         (all-headers, all-sources): Use $(shell find ...) instead of
6475         $(wildcard ...).
6477         * sysdeps/mach/hurd/Makefile (sysdep-LDFLAGS): New variable; pass
6478         -rpath-link.
6480         * hurd/hurdexec.c: Pass poly and dealloc args to __file_exec.
6482         * elf/Makefile (install-others): Add missing $.
6484 Mon Oct  9 02:54:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6486         * mach/Makefile ($(objpfx)errsystems.c): Rule reenabled.
6488         * Makeconfig (config-LDFLAGS): Define to
6489         -Wl-dynamic-linker=$(libdir)$(rtld-installed-name).
6490         (rtld-installed-name): New variable.
6491         * elf/Makefile (install-lib): Variable removed.
6492         (install-others): Define this instead, to
6493         $(libdir)(rtld-installed-name).
6494         ($(libdir)(rtld-installed-name)): New target; install from ld.so.
6496         * elf/ldd.sh.in: New file.
6497         * elf/Makefile (distribute): Add ldd.sh.in.
6498         (install-bin): Add ldd.
6499         ($(objpfx)ldd: ldd.sh.in): New rule.
6501         * sysdeps/mach/hurd/dl-sysdep.c: Use __hurd_fail throughout.
6502         * hurd/hurd.h (__hurd_fail): Replace macro with inline function.
6503         Translate some Mach errors to Hurd errors.
6505         * elf/rtld.c (dl_main): Under --list, print msg if executable is
6506         statically linked.
6508         * elf/dl-load.c (_dl_map_object_from_fd): Rewrote program header
6509         table processing.
6511 Sat Oct  7 01:25:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6513         * sysdeps/stub/machine-gmon.h: Add #error.
6515 Fri Oct  6 01:49:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6517         * elf/dynamic-link.h (elf_get_dynamic_info): If DYN is null, don't
6518         examine it.
6520 Fri Sep 29 03:43:51 1995  Paul Eggert  <eggert@twinsun.com>
6522         Rewrite mktime from scratch for performance, and for correctness
6523         in the presence of leap seconds.
6525         * time/mktime.c (ydhms_tm_diff, not_equal_tm, print_tm, check_result):
6526         New functions.
6527         (LEAP_SECONDS_POSSIBLE, CHAR_BIT, INT_MIN, INT_MAX,
6528         TIME_T_MIN, TIME_T_MAX, TM_YEAR_BASE, EPOCH_YEAR): New macros.
6529         <limits.h>, <stdlib.h>: New #includes.
6530         (main): Support tests with given broken-down value; support benchmarks.
6531         (__mon_lengths, debugging_enabled, printtm, dist_tm, doit,
6532         do_normalization, normalize, BAD_STRUCT_TM, SKIP_VALUE,
6533         <ctype.h>): Remove.
6535         * time/time.h, time/mktime.c (__mktime_internal): New offset arg.
6536         * time/mktime.c (mktime), time/timegm.c (timegm): Use it.
6538         * time/mktime.c (__mon_yday): New variable; replaces `__mon_lengths'.
6539         time/offtime.c (__offtime), time/tzset.c (compute_change): Use it.
6541         * time/offtime.c (__offtime): Remove useless assignment
6542         `tp->tm_isdst = -1'.
6544         * manual/maint.texi: Update credits.
6546 Fri Oct  6 00:28:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6548         * sysdeps/unix/common/readv.S: Moved to sysdeps/unix/bsd.
6549         * sysdeps/unix/common/writev.S: Moved to sysdeps/unix/bsd.
6550         * sysdeps/unix/sysv/linux/readv.c: File removed.
6551         * sysdeps/unix/sysv/linux/writev.c: File removed.
6552         * sysdeps/unix/configure.in: Check for readv and writev syscalls.
6554         * sysdeps/unix/configure.in: If eval doesn't set $unix_srcname,
6555         set it to $unix_syscall instead of $unix_function.
6557 Thu Oct  5 00:59:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6559         * elf/rtld.c (dl_main): Grok --list flag.
6560         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Ignore -- args.
6562 Wed Oct  4 00:21:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6564         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_message): New function.
6565         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_message): New function.
6566         * elf/link.h (_dl_sysdep_message): Declare it.
6568         * sysdeps/unix/Makefile ($(common-objpfx)ioctls): Remove NULL from
6569         the list.
6571         * time/northamerica: Corrections to Canada data from ADO 95i.
6573         * sysdeps/unix/sysv/linux/Makefile (headers): Don't append to this
6574         unconditionally.  In socket subdir, append sys/socketcall.h; in
6575         time subdir, append sys/timex.h.
6576         (config-LDFLAGS): New variable.
6577         * sysdeps/unix/sysv/linux/Dist: New file.
6578         * Makeconfig (+link): Pass $(config-LDFLAGS) before $(LDFLAGS).
6580         * sysdeps/generic/stpncpy.c: Don't increment DEST when zero-filling.
6582         * elf/dlopen.c (dlopen): Don't pass USER_ENTRY arg to _dl_map_object.
6584 Sat Sep 30 11:47:05 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6586         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): If started by
6587         kernel with args on stack, point _dl_hurd_data at zero data
6588         instead of garbage.  When ld.so run as program, grok args
6589         -LIB=MEMOBJ and pre-load shared object files found in memory
6590         objects loaded by the boot loader.
6592         * elf/link.h (struct link_map): New member `l_entry'.
6593         (_dl_map_object, _dl_map_object_from_fd): Remove last arg ENTRY_POINT.
6594         * elf/dl-load.c (_dl_map_object, _dl_map_object_from_fd): Remove
6595         last arg ENTRY_POINT.  Store the entry point location in the
6596         `l_entry' member of the new map.
6597         * elf/rtld.c (dl_main): Don't pass USER_ENTRY arg to
6598         _dl_map_object.  When run as program, set *USER_ENTRY to L->l_entry.
6599         * elf/dl-init.c (_dl_init_next): Don't pass ENTRY_POINT arg to
6600         _dl_map_object.
6602         * posix/tstgetopt.c, posix/tstgetopt.args: Test long options too.
6604         * sysdeps/unix/sysv/linux/i386/init-first.c (init): Save, set, and
6605         restore %ebx by hand for personality syscall.
6606         GCC cannot deal with spilling the dedicated GOT register.
6608         * misc/Makefile (routines): Add mntent, which was somehow omitted.
6610 Fri Sep 29 15:07:10 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6612         * sysdeps/unix/sysv/linux/adjtime.c (__adjtime):
6613         Change name of field `mode' in `struct timex' to `modes'.
6614         Linux-1.3.28 updates this name according to RFC 1489.
6616 Thu Sep 28 13:05:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6618         Merge new message handling code from GNU gettext, by Drepper.
6619         * intl: New directory.
6620         * Makefile (subdirs): Add intl.
6622         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Return
6623         USER_ENTRY instead of storing it on our stack.
6625         * elf/rtld.c (rtld_command): Variable removed.
6626         (_dl_skip_args): New variable.
6627         (dl_main): Increment _dl_skip_args instead of setting rtld_command.
6628         If the link_map for the executable itself is not first in the chain,
6629         make it so.
6630         * sysdeps/i386/dl-machine.h (RTLD_START): Use _dl_skip_args as
6631         count of args to skip.
6633 Thu Sep 28 09:20:04 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
6635         * stdlib/strtod.c (STRTOF): Fix handling of numbers with lots of
6636         leading zeroes.
6638 Wed Sep 27 00:27:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6640         * sysdeps/mach/hurd/getcwd.c (__getcwd): Renamed from getcwd.
6641         (getcwd): Define as weak alias.
6642         * sysdeps/posix/getcwd.c: Likewise.
6643         * sysdeps/stub/getcwd.c: Likewise.
6644         * posix/unistd.h: Declare __getcwd.
6646         * string/string.h: Declare __strcasecmp.
6647         * sysdeps/generic/strcasecmp.c (__strcasecmp): Renamed from
6648         strcasecmp.
6649         (strcasecmp): Define as weak alias.
6651         * string/string.h: Declare __stpcpy.
6652         * sysdeps/generic/stpcpy.c (__stpcpy): Renamed from stpcpy.
6653         (stpcpy): Define as weak alias.
6655         * sysdeps/unix/sysv/linux/Implies: Add unix/common.
6657         * sysdeps/unix/i386/sysdep.h [HAVE_ELF] (ASM_TYPE_DIRECTIVE):
6658         Don't use `type' for arg name, since we are using it as a keyword
6659         in the rhs.
6661         * sysdeps/unix/configure.in: Check for syscalls getpriority,
6662         setpriority, getrlimit, setrlimit.
6664         * sysdeps/posix/truncate.c: Include fcntl.h.
6666         * sysdeps/generic/getdomain.c: Include string.h for strncpy decl.
6668         * sysdeps/stub/getpriority.c: Don't include obsolete gnu-stabs.h;
6669         use new stub_warning syntax.
6670         * sysdeps/stub/setpriority.c: Likewise.
6671         * sysdeps/stub/__longjmp.c: Likewise.
6672         * sysdeps/stub/_exit.c: Likewise.
6673         * sysdeps/stub/accept.c: Likewise.
6674         * sysdeps/stub/acos.c: Likewise.
6675         * sysdeps/stub/alarm.c: Likewise.
6676         * sysdeps/stub/asin.c: Likewise.
6677         * sysdeps/stub/atan2.c: Likewise.
6678         * sysdeps/stub/bind.c: Likewise.
6679         * sysdeps/stub/cbrt.c: Likewise.
6680         * sysdeps/stub/chroot.c: Likewise.
6681         * sysdeps/stub/closedir.c: Likewise.
6682         * sysdeps/stub/connect.c: Likewise.
6683         * sysdeps/stub/cos.c: Likewise.
6684         * sysdeps/stub/cosh.c: Likewise.
6685         * sysdeps/stub/ctermid.c: Likewise.
6686         * sysdeps/stub/cuserid.c: Likewise.
6687         * sysdeps/stub/defs.c: Likewise.
6688         * sysdeps/stub/exp.c: Likewise.
6689         * sysdeps/stub/fmod.c: Likewise.
6690         * sysdeps/stub/frexp.c: Likewise.
6691         * sysdeps/stub/fsync.c: Likewise.
6692         * sysdeps/stub/getcwd.c: Likewise.
6693         * sysdeps/stub/getenv.c: Likewise.
6694         * sysdeps/stub/gethostid.c: Likewise.
6695         * sysdeps/stub/getlogin.c: Likewise.
6696         * sysdeps/stub/getpeername.c: Likewise.
6697         * sysdeps/stub/getrlimit.c: Likewise.
6698         * sysdeps/stub/getsockname.c: Likewise.
6699         * sysdeps/stub/getsockopt.c: Likewise.
6700         * sysdeps/stub/listen.c: Likewise.
6701         * sysdeps/stub/log.c: Likewise.
6702         * sysdeps/stub/log10.c: Likewise.
6703         * sysdeps/stub/mkfifo.c: Likewise.
6704         * sysdeps/stub/morecore.c: Likewise.
6705         * sysdeps/stub/nice.c: Likewise.
6706         * sysdeps/stub/nlist.c: Likewise.
6707         * sysdeps/stub/opendir.c: Likewise.
6708         * sysdeps/stub/pipestream.c: Likewise.
6709         * sysdeps/stub/ptrace.c: Likewise.
6710         * sysdeps/stub/putenv.c: Likewise.
6711         * sysdeps/stub/readdir.c: Likewise.
6712         * sysdeps/stub/reboot.c: Likewise.
6713         * sysdeps/stub/recv.c: Likewise.
6714         * sysdeps/stub/recvfrom.c: Likewise.
6715         * sysdeps/stub/rename.c: Likewise.
6716         * sysdeps/stub/rewinddir.c: Likewise.
6717         * sysdeps/stub/seekdir.c: Likewise.
6718         * sysdeps/stub/send.c: Likewise.
6719         * sysdeps/stub/sendto.c: Likewise.
6720         * sysdeps/stub/setegid.c: Likewise.
6721         * sysdeps/stub/seteuid.c: Likewise.
6722         * sysdeps/stub/setgroups.c: Likewise.
6723         * sysdeps/stub/sethostid.c: Likewise.
6724         * sysdeps/stub/sethostname.c: Likewise.
6725         * sysdeps/stub/setjmp.c: Likewise.
6726         * sysdeps/stub/setrlimit.c: Likewise.
6727         * sysdeps/stub/setsockopt.c: Likewise.
6728         * sysdeps/stub/shutdown.c: Likewise.
6729         * sysdeps/stub/signal.c: Likewise.
6730         * sysdeps/stub/sigsuspend.c: Likewise.
6731         * sysdeps/stub/sin.c: Likewise.
6732         * sysdeps/stub/sinh.c: Likewise.
6733         * sysdeps/stub/socket.c: Likewise.
6734         * sysdeps/stub/socketpair.c: Likewise.
6735         * sysdeps/stub/sqrt.c: Likewise.
6736         * sysdeps/stub/sync.c: Likewise.
6737         * sysdeps/stub/system.c: Likewise.
6738         * sysdeps/stub/tan.c: Likewise.
6739         * sysdeps/stub/tanh.c: Likewise.
6740         * sysdeps/stub/tcdrain.c: Likewise.
6741         * sysdeps/stub/tcflow.c: Likewise.
6742         * sysdeps/stub/tcgetpgrp.c: Likewise.
6743         * sysdeps/stub/tcsendbrk.c: Likewise.
6744         * sysdeps/stub/tcsetattr.c: Likewise.
6745         * sysdeps/stub/tcsetpgrp.c: Likewise.
6746         * sysdeps/stub/telldir.c: Likewise.
6747         * sysdeps/stub/tempname.c: Likewise.
6748         * sysdeps/stub/ttyname.c: Likewise.
6749         * sysdeps/stub/ttyname_r.c: Likewise.
6750         * sysdeps/stub/utime.c: Likewise.
6752         * gmon/gmon.c (moncontrol): Don't cast buffer arg to profil.
6754         * time/mktime.c (localtime_r): Use 0 instead of NULL.
6756         * config.make.in (AS): New variable; set to `$(CC) -c'.
6758         * posix/unistd.h [__USE_BSD]: Declare profil.
6760         * elf/dl-load.c (_dl_map_object_from_fd): New function, broken out
6761         of _dl_map_object.
6762         (_dl_map_object): Call it.
6763         * elf/link.h (_dl_map_object_from_fd): Declare it.
6765 Tue Sep 26 16:50:17 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6767         * locale/libintl.h: Rewritten by Ulrich Drepper for use with GNU
6768         gettext code.
6770         * sysdeps/unix/sysv/linux/sys/param.h: New file.
6771         * sysdeps/unix/sysv/linux/Subdirs: File removed.
6773         * libc-symbols.h (_LIBC): Define to 1, not just empty.
6775         * gmon: New directory of profiling code, incorporated from
6776         4.4BSD-Lite and modified.
6777         * sysdeps/i386/machine-gmon.h: New file.
6778         * sysdeps/stub/machine-gmon.h: New file.
6779         * sysdeps/mach/hurd/profil.c: New file.
6780         * sysdeps/stub/profil.c: New file.
6781         * sysdeps/unix/bsd/profil.S: New file.
6782         * Makefile (subdirs): Add gmon.
6783         * csu/gmon-start.c: New file.
6784         * csu/Makefile (extra-objs): Add gmon-start.o,
6785         g$(start-installed-name).
6786         (install-lib, omit-deps): Add g$(start-installed-name).
6787         ($(objpfx)g$(start-installed-name)): New target.
6789 Fri Sep 22 14:24:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6791         * sysdeps/mach/hurd/Makefile: Elide sunrpc from $(subdirs) for the
6792         time being.
6794 Thu Sep 21 00:03:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6796         * sysdeps/unix/configure.in: Check for `profil' syscall.
6798         * manual/Makefile (infodir, prefix, INSTALL, INSTALL_DATA): Variables
6799         removed.
6801         * time/africa, time/asia, time/europe, time/northamerica,
6802         time/yearistype: New data from ADO 95h.
6804         * Makerules (build-shlib): Use $(@F:lib%.so=%) in place of
6805         $(notdir $*), so it wins for the explicit libc.so rule as well as the
6806         pattern rule.
6808         * sysdeps/stub/sys/sem_buf.h (union semun): New type.
6810         * sysdeps/mach/hurd/i386/init-first.c (init1) [PIC]: Call
6811         __libc_global_ctors.
6812         * sysdeps/i386/init-first.c: Rewritten.
6813         * sysdeps/unix/sysv/linux/i386/init-first.S: File removed.
6814         * sysdeps/unix/sysv/linux/i386/init-first.c: New file.
6816         * sysdeps/unix/sysv/linux/i386/fpu_control.h: Fix name in decl of
6817         ___fpu_control.
6819         * Makerules (build-shlib): New canned sequence, broken out of
6820         lib%.so rule.  Link in $^ instead of just $<.
6821         (lib%.so: lib%_pic.a): Use it.
6822         (libc.so): New target; use $(build-shlib) for cmds, but also depend
6823         on soinit.so first and sofini.so last.
6825         * elf/soinit.c: New file.
6826         * elf/sofini.c: New file.
6827         * elf/Makefile (distribute): Add soinit.c and sofini.c.
6828         (extra-objs): Add soinit.so and sofini.so.
6830         * sysvipc/sys/shm.h (shmat): Fix return type to char *.
6831         * sysdeps/stub/sys/ipc_buf.h (key_t): Type removed.
6833         * misc/syslog.c (vsyslog): Rewritten using open_memstream to
6834         dynamically allocate buffers.
6836         * Makerules (install-lib-nosubdir): Make this, rather than
6837         install-no-libc.a, depend on the installed shared libraries.
6839 Wed Sep 20 18:02:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6841         * locale/locale.c: Include errno.h.
6842         * locale/localedef.c: Likewise.
6844 Tue Sep 19 00:02:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6846         * Makefile (distclean-1): Remove config.cache, config.log, config.h.
6847         (parent-mostlyclean): Remove all flavors of the parent library.
6849         * misc/mntent.c (getmntent): Skip multiple whitespace chars
6850         between fields.
6852         * hurd/hurdstartup.c (_hurd_startup): If RPC returns
6853         EXEC_STACK_ARGS flag, get args from stack.
6854         If args on stack but have info from RPC, relocate args on stack to make
6855         space for struct hurd_startup_data.
6857 Mon Sep 18 15:06:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6859         * elf/dl-object.c: Include errno.h.
6860         * posix/execvp.c: Likewise.
6861         * dirent/scandir.c: Likewise.
6862         * sysdeps/posix/system.c: Likewise.
6863         * sysdeps/generic/setenv.c: Likewise.
6864         * stdlib/msort.c: Likewise.
6865         * stdio/memstream.c: Likewise.
6866         * stdio/fclose.c: Likewise.
6867         * stdio/getdelim.c: Likewise.
6868         * stdio/setvbuf.c: Likewise.
6869         * sysdeps/ieee754/ldexp.c: Likewise.
6870         * locale/locfile-parse.c: Likewise.
6872         * stdlib/lcong48_r.c: Don't check for null argument; let it fault.
6873         * stdlib/seed48_r.c: Likewise.
6874         * stdlib/srand48_r.c: Likewise.
6875         * stdlib/jrand48_r.c: Likewise.
6876         * stdlib/nrand48_r.c: Likewise.
6878         * Makeconfig (+gccwarn): Remove -Wbad-function-cast, which seems
6879         to be useless.
6881 Mon Sep 18 12:39:22 1995  Paul Eggert  <eggert@twinsun.com>
6883         * mktime.c (localtime_r): Add substitute if the system doesn't
6884         provide one.
6886 Mon Sep 18 14:39:20 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6888         * time/gmtime.c (gmtime_r): Define as weak alias.
6889         * time/localtime.c (localtime_r): Define as weak alias.
6890         * time/time.h [__USE_REENTRANT] (gmtime_r, localtime_r): Declare them.
6892         * errno.h: Only define _ERRNO_H #ifndef __need_Emath.
6893         #undef __need_Emath after including errnos.h.
6894         [_ERRNO_H]: Protect decls with this.
6896 Sun Sep 17 08:22:12 1995  Paul Eggert  <eggert@twinsun.com>
6898         Fix mktime so that it does not write over localtime's returned value.
6899         * localtime.c (__localtime_r): New function, with extra arg
6900         specifying where to store result.
6901         (localtime): Use it.
6902         (_tmbuf): New var.
6903         * gmtime.c (__gmtime_r, gmtime, _tmbuf): Likewise.
6904         * mktime.c (__mktime_internal): Conversion function is now
6905         __localtime_r style, not localtime style.
6906         (mktime): Pass __localtime_r, not localtime.
6907         * timegm.c (timegm): Pass __gmtime_r, not gmtime.
6908         * offtime.c (__offtime): New arg specifying where to store result.
6909         * time.h (__mktime_internal, __offtime): Adjust decls accordingly.
6910         (__gmtime_r, __localtime_r): New decls.
6912         * time/localtime.c: <stddef.h>, <ctype.h>, <stdio.h>,
6913         <stdlib.h>, <string.h>: Remove includes.
6914         <errno.h>: Add include.
6916         * time/mktime.c, time/time.h, time/timegm.c (__mktime_internal):
6917         Renamed from _mktime_internal to avoid namespace pollution.
6919         * time/gmtime.c: Clear tm_isdst.
6921 Mon Sep 18 01:58:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6923         * misc/efgcvt_r.c (ecvt_r, fcvt_r): Last arg is size_t, not int.
6924         * stdlib/stdlib.h (ecvt_r, fcvt_r): Fix type of last arg: make it
6925         size_t.
6927         * sysdeps/mach/hurd/fpathconf.c: Call __io_pathconf instead of
6928         __file_pathconf.
6929         * sysdeps/mach/hurd/pathconf.c: Likewise.
6931         * Makefile (subdirs): Add sysvipc.
6933         * stdlib/srand48_r.c (srand48_r): Use UL suffix for huge constant.
6934         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
6936 Sun Sep 17 18:29:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6938         * hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Call
6939          __file_set_size instead of __file_truncate.
6941         * features.h (__USE_REENTRANT): New macro.
6943         * sysdeps/mach/hurd/truncate.c: Call __file_set_size instead of
6944         __file_truncate.
6945         * sysdeps/mach/hurd/ftruncate.c: Likewise.
6947         * sysdeps/unix/sysv/linux/dl-machine.h: File removed.
6949 Sat Sep 16 17:47:19 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
6951         * elf/elf.h (AT_GID): Fix typo: Read -> Real.
6953         * misc/efgvt_r.c: New file.  Reentrant version of [efg]cvt functions.
6954         * misc/efgcvt.c: Rewrite to use reentrant functions.
6955         * misc/search.h: Many decls for hsearch functions.
6956         * misc/hsearch_r.c: New file.  Reentrant version of functions from
6957         hsearch family.
6958         * misc/hsearch.c, misc/tsearch.c: New files.
6959         * misc/Makefile (routines): Add efgcvt_r, hsearch_r, hsearch, tsearch.
6961         * posix/unistd.h (ttyname_r): Add prototype for new function.
6963         * stdlib/drand48_r.c, stdlib/erand48_r.c, stdlib/jrand48_r.c,
6964         stdlib/lrand48_r.c, stdlib/mrand48_r.c, stdlib/nrand48_r.c,
6965         stdlib/seed48_r.c, stdlib/srand48_r.c, stdlib/lcong48_r.c,
6966         stdlib/drand48-iter.c: New files implementing reentrant versions
6967         of functions from drand48 family.
6968         * stdlib/seed48.c, stdlib/drand48.c, stdlib/erand48.c,
6969         stdlib/jrand48.c, stdlib/lrand48.c, stdlib/mrand48.c,
6970         stdlib/nrand48.c, stdlib/srand48.c, stdlib/lcong48.c:
6971         Rewrite to use reentrant versions.
6972         * stdlib/a64l.c, stdlib/l64a.c: New files.  Implement a64l()
6973         and l64a() functions from SysV library.
6974         * stdlib/Makefile (routines): Add drand48_r, erand48_r, lrand48_r,
6975         nrand48_r, mrand48_r, jrand48_r, srand48_r, seed48_r, lcong48_r,
6976         drand48-iter, a64l, l64a.
6977         * stdlib/stdlib.h: Declare them.
6979         * stdlib/random_r.c: New file.  Reentrant version of functions
6980         from random family.
6981         * stdlib/stdlib.h: Declare them.
6982         * stdlib/random.c: Rewrite to use reentrant functions.
6984         * string/strerror_r.c: New file.  Reentrant version.
6985         * string/strerror.c: Change for new _strerror_internal form.
6986         * string/Makefile (routines): Add strerror_r.
6988         * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Set default
6989         value of user_entry to `_start'.
6990         Close AT_ENTRY case with `break'.
6992         * sysdeps/generic/strstr.c: New and much faster implementation
6993         by Stephen R. van den Berg.
6995         * sysdeps/generic/_strerror.c: _strerror_internal now takes
6996         three argument and has and explicit buffer length.
6997         * sysdeps/mach/_strerror.c: Change for new interface with three
6998         arguments.
6999         * stdio/perror.c, stdio/vfprintf.c: Callers changed.
7001         * sysdeps/mach/hurd/ttyname_r.c: New file.  Reentrant version.
7002         * sysdeps/posix/ttyname_r.c: New file.  Reentrant version.
7003         * sysdeps/stub/ttyname_r: New file.  Define as dummy function.
7005         * sysdeps/posix/utimes.c: Include <utime.h> for prototype.
7006         (utimes): First parameter to utime must be file, not path.
7008         * sysdeps/posix/sysconf.c (__sysconf): Test for CLK_TCK in case
7009         _SC_CLK_TCK and return it when available.
7010         Test for STREAM_MAX in case _SC_STREAM_MAX and return it when
7011         available.
7012         Add case for _SC_2_LOCALEDEF which is now available.
7014         * posix/sys/types.h [__USE_SVID] (key_t): New type.
7015         * sysvipc/Makefile, sysvipc/ftok.c, sysvipc/sys/ipc.h,
7016         sysvipc/sys/msg.h, sysvipc/sys/sem.h, sysvipc/sys/shm.h,
7017         sysdeps/stub/sys/msq_buf.h, sysdeps/stub/sys/sem_buf.h,
7018         sysdeps/stub/sys/shm_buf.h, sysdeps/stub/sys/ipc_buf.h,
7019         sysdeps/stub/semctl.c, sysdeps/stub/semget.c, sysdeps/stub/semop.c,
7020         sysdeps/stub/shmat.c, sysdeps/stub/shmctl.c, sysdeps/stub/shmdt.c,
7021         sysdeps/stub/shmget.c, sysdeps/stub/msgctl.c, sysdeps/stub/msgget.c,
7022         sysdeps/stub/msgrcv.c, sysdeps/stub/msgsnd.c: New files.
7023         Add implementation of System V IPC.
7025 Fri Sep 15 21:34:28 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7027         * hurd/hurdsig.c: Include <hurd/crash.h> in place of <hurd/core.h>.
7028         (write_corefile): Call __crash_dump_task instead of __core_dump_task.
7029         Use envariable CRASHSERVER instead of CORESERVER.
7030         * hurd/Makefile (user-interfaces): Replace hurd/core with hurd/crash.
7032 Tue Sep 12 14:30:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7034         * misc/mntent.c: New file.
7035         * misc/mntent.h: New file.
7036         * misc/Makefile (headers): Added mntent.h.
7037         (routines): Added mntent.
7038         * misc/fstab.c: Rewritten using mntent functions.
7040 Mon Sep 11 14:00:14 1995  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
7042         * posix/glob.c (glob): Comment fix.
7044 Fri Sep  8 16:25:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7046         * libc-symbols.h [HAVE_ELF] (symbol_set_declare): Declare the
7047         symbols weak.
7049         * conf/portability.h (NEED_INETADDR, NEED_INETATON): Define to 1,
7050         not empty.
7052 Fri Sep  8 16:32:12 1995  Ulrich Drepper  <drepper@gnu.ai.mit.edu>
7054         * sysdeps/unix/sysv/linux/Implies,
7055         sysdeps/unix/sysv/linux/Makefile, sysdeps/unix/sysv/linux/Subdirs,
7056         sysdeps/unix/sysv/linux/accept.S, sysdeps/unix/sysv/linux/adjtime.c,
7057         sysdeps/unix/sysv/linux/adjtimex.S, sysdeps/unix/sysv/linux/bind.S,
7058         sysdeps/unix/sysv/linux/connect.S, sysdeps/unix/sysv/linux/direct.h,
7059         sysdeps/unix/sysv/linux/dl-machine.h, sysdeps/unix/sysv/linux/errnos.h,
7060         sysdeps/unix/sysv/linux/fork.S, sysdeps/unix/sysv/linux/gethostid.c,
7061         sysdeps/unix/sysv/linux/gethostname.C,
7062         sysdeps/unix/sysv/linux/getpeername.S,
7063         sysdeps/unix/sysv/linux/getpgid.S, sysdeps/unix/sysv/linux/getpgrp.S,
7064         sysdeps/unix/sysv/linux/getsockname.S,
7065         sysdeps/unix/sysv/linux/getsockopt.S, sysdeps/unix/sysv/linux/gtty.S,
7066         sysdeps/unix/sysv/linux/listen.S, sysdeps/unix/sysv/linux/local_lim.h,
7067         sysdeps/unix/sysv/linux/madvise.c, sysdeps/unix/sysv/linux/msgctl.c,
7068         sysdeps/unix/sysv/linux/msgget.c, sysdeps/unix/sysv/linux/msgrcv.c,
7069         sysdeps/unix/sysv/linux/msgsnd.c, sysdeps/unix/sysv/linux/pipe.S,
7070         sysdeps/unix/sysv/linux/poll.c, sysdeps/unix/sysv/linux/readv.c,
7071         sysdeps/unix/sysv/linux/recv.S, sysdeps/unix/sysv/linux/recvfrom.S,
7072         sysdeps/unix/sysv/linux/recvmsg.S, sysdeps/unix/sysv/linux/semctl.c,
7073         sysdeps/unix/sysv/linux/semget.c, sysdeps/unix/sysv/linux/semop.c,
7074         sysdeps/unix/sysv/linux/send.S, sysdeps/unix/sysv/linux/sendmsg.S,
7075         sysdeps/unix/sysv/linux/sendto.S, sysdeps/unix/sysv/linux/setegid.c,
7076         sysdeps/unix/sysv/linux/seteuid.c, sysdeps/unix/sysv/linux/sethostid.c,
7077         sysdeps/unix/sysv/linux/setpgid.c, sysdeps/unix/sysv/linux/setpgrp.c,
7078         sysdeps/unix/sysv/linux/setsid.S, sysdeps/unix/sysv/linux/setsockopt.S,
7079         sysdeps/unix/sysv/linux/settimeofday.S,
7080         sysdeps/unix/sysv/linux/shmat.c, sysdeps/unix/sysv/linux/shmctl.c,
7081         sysdeps/unix/sysv/linux/shmdt.c, sysdeps/unix/sysv/linux/shmget.c,
7082         sysdeps/unix/sysv/linux/shutdown.S,
7083         sysdeps/unix/sysv/linux/sigaction.S, sysdeps/unix/sysv/linux/signal.S,
7084         sysdeps/unix/sysv/linux/sigpending.S, sysdeps/unix/sysv/linux/sigset.h,
7085         sysdeps/unix/sysv/linux/sockaddrcom.h,
7086         sysdeps/unix/sysv/linux/socketpair.S, sysdeps/unix/sysv/linux/speed.c,
7087         sysdeps/unix/sysv/linux/statbuf.h, sysdeps/unix/sysv/linux/stty.S,
7088         sysdeps/unix/sysv/linux/syscall.h, sysdeps/unix/sysv/linux/sysconf.c,
7089         sysdeps/unix/sysv/linux/tcdrain.c, sysdeps/unix/sysv/linux/tcflow.c,
7090         sysdeps/unix/sysv/linux/tcflush.c, sysdeps/unix/sysv/linux/tcgetattr.c,
7091         sysdeps/unix/sysv/linux/tcsetattr.c,
7092         sysdeps/unix/sysv/linux/termbits.h, sysdeps/unix/sysv/linux/ualarm.c,
7093         sysdeps/unix/sysv/linux/ulimit.c, sysdeps/unix/sysv/linux/usleep.c,
7094         sysdeps/unix/sysv/linux/utsnamelen.h, sysdeps/unix/sysv/linux/vfork.c,
7095         sysdeps/unix/sysv/linux/wait.c, sysdeps/unix/sysv/linux/wait4.S,
7096         sysdeps/unix/sysv/linux/waitpid.c, sysdeps/unix/sysv/linux/writev.c:
7097         New Linux/ELF specific, architecture independent files.
7098         * sysdeps/unix/sysv/linux/i386/Dist,
7099         sysdeps/unix/sysv/linux/i386/Makefile,
7100         sysdeps/unix/sysv/linux/i386/brk.S,
7101         sysdeps/unix/sysv/linux/i386/fcntlbits.h,
7102         sysdeps/unix/sysv/linux/i386/fpu_control.c,
7103         sysdeps/unix/sysv/linux/i386/fpu_control.h,
7104         sysdeps/unix/sysv/linux/i386/fstat.S,
7105         sysdeps/unix/sysv/linux/i386/fxstat.S,
7106         sysdeps/unix/sysv/linux/i386/ieee_fpu.c,
7107         sysdeps/unix/sysv/linux/i386/init-first.S,
7108         sysdeps/unix/sysv/linux/i386/ipc.S,
7109         sysdeps/unix/sysv/linux/i386/lstat.S,
7110         sysdeps/unix/sysv/linux/i386/lxstat.S,
7111         sysdeps/unix/sysv/linux/i386/mknod.S,
7112         sysdeps/unix/sysv/linux/i386/mmap.S,
7113         sysdeps/unix/sysv/linux/i386/sbrk.S,
7114         sysdeps/unix/sysv/linux/i386/setfpucw.c,
7115         sysdeps/unix/sysv/linux/i386/signum.h,
7116         sysdeps/unix/sysv/linux/i386/socket.S,
7117         sysdeps/unix/sysv/linux/i386/stat.S,
7118         sysdeps/unix/sysv/linux/i386/syscall.S,
7119         sysdeps/unix/sysv/linux/i386/sysdep.S,
7120         sysdeps/unix/sysv/linux/i386/sysdep.h,
7121         sysdeps/unix/sysv/linux/i386/xmknod.S,
7122         sysdeps/unix/sysv/linux/i386/xstat.S:
7123         New Linux i386/ELF specific files.
7124         * sysdeps/unix/sysv/linux/sys/ipc_buf.h,
7125         sysdeps/unix/sysv/linux/sys/mman.h,
7126         sysdeps/unix/sysv/linux/sys/msq_buf.h,
7127         sysdeps/unix/sysv/linux/sys/sem_buf.h,
7128         sysdeps/unix/sysv/linux/sys/shm_buf.h,
7129         sysdeps/unix/sysv/linux/sys/socketcall.h,
7130         sysdeps/unix/sysv/linux/sys/timex.h:
7131         New Linux/ELF specific, architecture independent header files.
7132         * sysdeps/unix/sysv/sysv4/linux: Tree removed.
7134 Thu Sep  7 17:05:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7136         * stdlib/msort.c (msort_with_tmp): Fixed alignment test.  B1 and
7137         B2 are always congruent; just test that B1 is aligned.
7139 Wed Sep  6 19:41:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7141         * elf/dl-lookup.c (_dl_lookup_symbol): Test WEAK_VALUE.s rather
7142         than WEAK_VALUE.a to see if a weak value has been set.  A valid
7143         weak value may set WEAK_VALUE.a to 0.
7145 Fri Sep  1 16:16:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7147         * sysdeps/mach/hurd/i386/longjmp-ts.c: Use new array format for
7148         jmp_buf.
7150         * libc-symbols.h (link_warning): Take new first arg SYMBOL; ask
7151         for a warning on references to that specific symbol, not the
7152         entire containing object file.
7153         (stub_warning): Pass symbol name to link_warning.
7154         * stdio/gets.c: Pass function name in link_warning invocation.
7156         * hurd/intr-msg.c: Treat apparent EINTR return from msg trap like
7157         MACH_SEND_INTERRUPTED.  That indicates interrupt_operation was
7158         sent, but failed.
7160         * stdlib/msort.c: Include memcopy.h.
7161         (msort_with_tmp): If operating on aligned op_t words, use direct word
7162         fetches and stores.
7164         * sysdeps/i386/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC): Add
7165         missing backslash.
7167 Thu Aug 31 13:23:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7169         * sysdeps/unix/i386/brk.S [PIC]: Set __curbrk through the GOT.
7171         Rewrote i386 setjmp code in assembly, so as to avoid fighting
7172         with the compiler for the register values.
7173         * sysdeps/i386/setjmp.S, sysdeps/i386/__longjmp.S: New files.
7174         * sysdeps/i386/setjmp.c, sysdeps/i386/__longjmp.c: Files removed.
7175         * sysdeps/i386/jmp_buf.h [! _ASM] (__jmp_buf): Define as array of ints.
7176         [__USE_MISC || _ASM] (JB_*): New macros, for indices therein.
7177         (_JMPBUF_UNWINDS): Use JB_SP.
7179 Wed Aug 30 16:44:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7181         * sysdeps/mach/hurd/select.c: Deal with out of order replies
7182         during io_select request loop.
7183         Handle MACH_RCV_TIMED_OUT error from requests.
7184         * hurd/intr-msg.c: If the user passed the MACH_RCV_TIMEOUT option,
7185         distinguish MACH_RCV_TIMED_OUT from EINTR.
7187         * posix/glob.c (glob): Use realloc to extend strings for GLOB_MARK
7188         slash.
7189         (glob_in_dir): Don't allocate extra byte here.
7191         * sysdeps/i386/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
7192         Decrement the DT_RELSZ value for the skipped reloc.
7194 Tue Aug 29 12:35:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7196         * time/australasia: Updated data from ADO.
7198 Mon Aug 28 17:47:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7200         * dirent/dirent.h: Don't include <dirstream.h>.
7201         Instead, define DIR as typedef for (undefined) `struct __dirstream'.
7203 Fri Aug 25 12:12:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7205         * sysdeps/mach/hurd/dirstream.h: Define `struct __dirstream'
7206         instead of `DIR'.
7207         * sysdeps/unix/bsd/dirstream.h: Likewise.
7208         * sysdeps/stub/dirstream.h: Likewise.
7209         * sysdeps/unix/dirstream.h: Likewise.
7210         * sysdeps/mach/hurd/telldir.c: Include "dirstream.h".
7211         * sysdeps/mach/hurd/seekdir.c: Likewise.
7212         * sysdeps/mach/hurd/opendir.c: Likewise.
7213         * sysdeps/mach/hurd/closedir.c: Likewise.
7214         * sysdeps/mach/hurd/readdir.c: Likewise.
7215         * sysdeps/unix/telldir.c: Likewise.
7216         * sysdeps/unix/seekdir.c: Likewise.
7217         * sysdeps/unix/rewinddir.c: Likewise.
7218         * sysdeps/unix/readdir.c: Likewise.
7219         * sysdeps/unix/opendir.c: Likewise.
7220         * sysdeps/unix/closedir.c: Likewise.
7221         * sysdeps/unix/bsd/telldir.c: Likewise.
7222         * sysdeps/unix/bsd/readdir.c: Likewise.
7223         * dirent/Makefile (headers): Remove dirstream.h.
7224         (distribute): Put it here instead.
7226         * sysdeps/mach/hurd/mmap.c: Fix inverted test of MAP_FIXED.
7228         * stdio/vfscanf.c (number): Allow field width to inhibit first
7229         digit after base detection.
7231         * stdio/vfprintf.c (vfprintf: %s): Never search past the limit
7232         specified by the precision.
7234         * grp/grpread.c (__grpscan): New function.
7235         * grp/grp.h (__grpscan): Declare it.
7236         * grp/getgrgid.c: Use __grpscan.
7237         * grp/getgrnam.c: Likewise.
7238         * pwd/pwdread.c (__pwdscan): New function.
7239         * pwd/pwd.h (__pwdscan): Declare it.
7240         * pwd/getpwnam.c: Use __pwdscan.
7241         * pwd/getpwuid.c: Likewise.
7243 Thu Aug 24 16:29:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7245         * sysdeps/mach/hurd/mmap.c: Treat (FLAGS & MAP_TYPE) == 0 like
7246         MAP_FILE.
7248         * hurd/thread-cancel.c: Return EINTR when called on self.
7249         * sysdeps/i386/elf/start.S (data_start): Define as weak alias for
7250         __data_start.
7252 Tue Aug 22 16:49:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7254         * inet/netdb.h: Moved to resolv.
7255         * inet/Makefile (headers): Remove netdb.h.
7256         * resolv/Makefile (headers): Add netdb.h.
7257         * resolv/gethnamaddr.c, resolv/inet_addr.c, resolv/netdb.h,
7258         resolv/res_send.c: Updated from BIND-4.9.3-BETA26.
7260         * hurd/thread-cancel.c: If SS->cancel_hook is not null, call it before
7261         resuming the thread.
7262         * hurd/hurd/signal.h (struct hurd_sigstate): New member `cancel_hook'.
7264         * hurd/Makefile: Removed dep on hurd/signal.h for RPC stub objects.
7266 Mon Aug 21 16:37:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7268         * sysdeps/i386/dl-machine.h (elf_machine_rel): Grok R_386_NONE
7269         relocs, and do nothing.  Why the linker generates them we may
7270         never know.
7272 Thu Aug 17 16:18:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7274         * sysdeps/mach/hurd/Makefile: Don't elide sunrpc and manual from
7275         `subdirs' variable.
7277         * sysdeps/mach/hurd/i386/intr-msg.h: New file.
7278         * hurd/intr-msg.c: Use INTR_MSG_TRAP macro from machine-dependent
7279         "intr-msg.h" for special syscall code, instead of i386-specific asm.
7280         * hurd/hurdsig.c: Use INTR_MSG_BACK_OUT macro from
7281         machine-dependent "intr-msg.h" before mutating thread state to
7282         skip RPC.
7284         * sysdeps/mach/hurd/i386/trampoline.c: If PC is inside
7285         _hurd_intr_rpc_mach_msg special syscall code, use real SP saved in
7286         %ecx.
7288         * Makeconfig (link-libc): New variable; use shared library if
7289         available.
7290         (+link): Use it.
7292         * sysdeps/mach/hurd/fork.c (_hurd_fork_locks): Variable removed.
7293         Instead, declare with `symbol_set_declare'.
7294         (fork): Use symbol_set_* macros for _hurd_fork_locks.
7295         Use SS->thread instead of __mach_thread_self ().  Suspend all
7296         other threads during task_create and port copying.
7298 Wed Aug 16 17:04:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7300         * hurd/intr-msg.c: Fixed calculation of syscall %esp.
7302 Tue Aug 15 12:26:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7304         * hurd/hurdsig.c (_hurdsig_abort_rpcs): Remove `static'.
7306         * hurd/Makefile (sig): Add intr-msg.
7308 Mon Aug 14 16:51:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7310         * hurd/thread-cancel.c: New file.
7311         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler): In
7312         rpc_wait case, frob mach_msg args to set timeout on receive.
7313         (_hurdsig_rcv_interrupted_p): Function removed.
7314         * sysdeps/mach/hurd/alpha/trampoline.c: Likewise.
7315         * sysdeps/mach/hurd/hppa/trampoline.c: Likewise.
7316         * sysdeps/mach/hurd/mips/trampoline.c: Likewise.
7317         * hurd/intr-msg.c: New file.
7318         * hurd/hurd/signal.h (struct hurd_sigstate): New member `cancel'.
7319         (_hurdsig_rcv_interrupted_p): Declaration removed.
7320         (HURD_EINTR_RPC): Macro removed.
7321         (_hurd_longjmp_thread_state, _hurd_interrupted_rpc_timeout): Declare
7322         these.
7323         * hurd/intr-rpc.h: New file.
7324         * hurd/intr-rpc.defs: Just import intr-rpc.h.
7325         * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): New variable.
7326         (interrupted_reply_port_location): Take new flag arg; only catch
7327         faults if it's set.
7328         (abort_rpcs): Rename to _hurdsig_abort_rpcs; take same new flag arg.
7329         No longer use _hurdsig_rcv_interrupted_p; instead compare PC to
7330         &_hurd_intr_rpc_msg_in_trap.  If before it, mutate state to simulate
7331         MACH_SEND_INTERRUPTED return; on it, interrupt the operation.  All
7332         callers changed.
7333         * hurd/hurd.h (hurd_thread_cancel, hurd_check_cancel): Declare these.
7334         * hurd/Makefile (distribute): Remove intr-rpc.awk.
7335         (sig): Add thread-cancel.
7336         (transform-user-stub, transform-user-stub-output): Variables removed.
7337         * sysdeps/mach/hurd/dl-sysdep.c: Change all RPCs from
7338         `__hurd_intr_rpc_*' to `__*'.
7339         (_hurd_intr_rpc_mach_msg): New function.
7340         (_hurd_thread_sigstate): Function removed.
7341         * sysdeps/mach/hurd/ioctl.c: Use _hurd_intr_rpc_mach_msg function,
7342         instead of __mach_msg inside HURD_EINTR_RPC macro.
7344         * sysdeps/generic/morecore.c [__GNU_LIBRARY__]: Declare `__sbrk'
7345         to take ptrdiff_t arg.
7347         * sysdeps/mach/hurd/fork.c: Remove _hurd_longjmp_thread_state decl.
7349         * sysdeps/mach/hurd/kill.c (kill_pid): Don't make `inline'.
7351         * libc-symbols.h [GCC >= 2.7] (strong_alias, weak_symbol,
7352         weak_alias): Use `extern' storage class.
7354 Wed Aug  9 14:25:35 1995  Miles Bader  <miles@geech.gnu.ai.mit.edu>
7356         * sysdeps/mach/hurd/setuid.c (__setuid): Switch the port-type and
7357         port-count parameters to __auth_makeauth.
7358         * sysdeps/mach/hurd/setgid.c (__setgid): Ditto.
7360 Tue Aug  8 12:22:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7362         * hurd/sigunwind.c: Remove _hurd_longjmp_thread_state decl.
7364         * inet/netinet/tcp.h: New file, incorporated from 4.4BSD-Lite.
7366 Tue Aug  8 12:06:04 1995  Michael I. Bushnell, p/BSG  <mib@duality.gnu.ai.mit.edu>
7368         * inet/netinet/in.h (IP_MULTICAST_TTL, IP_MULTICAST_LOOP,
7369         IP_MULTICAST_IP, IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP): New IP
7370         layer socket options.
7371         (IPPROTO_GGP): Delete obsolote protocol.
7372         (IPPROTO_IGMP): Add new protocol (with same value [2] as old GGP).
7373         (struct ip_mreq): New type.
7375 Mon Aug  7 14:04:36 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7377         * stdlib/strtol.c: Use #ifdef, not #if, for HAVE_LIMITS_H.
7379         * posix/glob.c (glob_in_dir): Allocate GLOB_MARK byte in case when
7380         (NFOUND == 0 && (FLAGS & GLOB_NOCHECK)).
7382         * sysdeps/generic/sysd-stdio.c (__stdio_reopen): Return failure
7383         when __stdio_open fails with a code other than ENFILE or EMFILE.
7385 Fri Aug  4 16:01:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7387         * Makefile (headers): Added gnu-versions.h.
7389 Thu Aug  3 14:41:11 1995  Michael I. Bushnell  <mib@duality.gnu.ai.mit.edu>
7391         * inet/netinet/in.h (IN_CLASSD, IN_EXPERIMENTAL, IN_BADCLASS): Use
7392         equality, not assignment, to test bitfields.
7394 Sat Jul 29 10:41:06 1995  Miles Bader  <miles@churchy.gnu.ai.mit.edu>
7396         * sysdeps/mach/hurd/sendto.c (sendto): Use the ifsock protocol to
7397         resolve AF_LOCAL addresses.
7399         * sysdeps/mach/hurd/accept.c (accept): If the protocol family
7400         can't tell us what an address means, just return a zero-length
7401         buffer instead.
7402         * sysdeps/mach/hurd/recvfrom.c (recvfrom): Ditto.
7404 Fri Jul 28 15:29:11 1995  Miles Bader  <miles@churchy.gnu.ai.mit.edu>
7406         * sysdeps/mach/hurd/bind.c (bind): Don't use
7407         file_invoke_translator, as it doesn't work.  Instead just lookup
7408         the translated node again, and hope we're not hit by any race
7409         conditions.
7411 Wed Jul 26 02:00:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7413         * csu/Makefile [$(elf)=yes] (have-initfini): Set to yes.
7414         [$(have-initfini)=yes]: Test this rather than $(elf) for crtstuff.
7415         [start-installed-name-rule]: If this is defined, elide rule for
7416         $(objpfx)$(start-installed-name).
7417         * csu/initfini.c (SECTION): New macro, different definitions for
7418         #ifdef HAVE_ELF and not.
7419         (_init, _fini): Use that macro.
7420         * sysdeps/unix/sysv/sco3.2.4/Makefile [$(subdir)=csu]
7421         (start-installed-rule, start-installed-name-rule): New variables;
7422         specify crt1.o, created by our own rule.
7423         ($(objpfx)crt1.o): New rule.
7424         * configure.in: Require autoconf 2.4.2 or later.  Change all
7425         AC_CACHE_VAL uses to use new AC_CACHE_CHECK macro instead;
7426         prettify some messages.
7427         [$elf!=yes] (libc_cv_have_initfini): New test for `.init' and `.fini'
7428         sections.
7429         * munch-tmpl.c [HAVE_INITFINI]: Call _init and atexit (_fini) in
7430         this case rather than #ifdef HAVE_ELF.
7431         * config.h.in (HAVE_INITFINI): New macro.
7432         * config.make.in (have-initfini): New variable, set by configure.
7434         * stdio/vfscanf.c (conv_error): Simplify expression to avoid
7435         "value computed is not used" warning.
7437         * Makeconfig (+gccwarn): Removed -Wconversion.
7439         * csu/initfini.c (GLOBAL): Macro removed.
7440         (_init, _fini): Always define globally.
7441         * csu/Makefile (crtstuff, initfini): Don't make crt[in]_s.o.
7443         * asia, backward, europe, leapseconds, southamerica: New data from
7444         ADO's 95e.
7446         * inet/Makefile (routines): Removed inet_addr.
7447         * inet/inet_addr.c: Moved to resolv/ subdirectory.
7448         * resolv/Makefile (routines): Added inet_addr.
7449         * resolv/inet_addr.c: Incorporated from BIND 4.9.3-BETA24 release.
7450         * resolv/gethnamaddr.c: Likewise.
7451         * resolv/getnetbyaddr.c: Likewise.
7452         * resolv/getnetbyname.c: Likewise.
7453         * resolv/getnetent.c: Likewise.
7454         * resolv/getnetnamadr.c: Likewise.
7455         * resolv/herror.c: Likewise.
7456         * resolv/nsap_addr.c: Likewise.
7457         * resolv/res_comp.c: Likewise.
7458         * resolv/res_debug.c: Likewise.
7459         * resolv/res_init.c: Likewise.
7460         * resolv/res_mkquery.c: Likewise.
7461         * resolv/res_query.c: Likewise.
7462         * resolv/res_send.c: Likewise.
7463         * resolv/resolv.h: Likewise.
7464         * resolv/sethostent.c: Likewise.
7465         * resolv/arpa/nameser.h: Likewise.
7466         * inet/netdb.h: Incorporated from BIND 4.9.3-BETA24 release.
7467         [__GNU_LIBRARY__]: Include <rpc/netdb.h> instead of repeating
7468         its declarations (and doing so only #ifdef sun!).
7469         * conf/portability.h (NEED_INETADDR, NEED_INETATON): New macros.
7471         * posix/sys/types.h [__USE_BSD] (__BIT_TYPES_DEFINED__): New macro.
7472         [__USE_BSD] [__GNUC__] (int64_t, u_int64_t, register_t): New typedefs.
7474         * malloc/memalign.c: Allocate (SIZE + ALIGNMENT - 1) and then trim
7475         if possible.
7477         * mach/shortcut.awk: Emit decls for RPC.
7479         * libc-symbols.h [GCC >= 2.7 && !ASSEMBLER] (weak_symbol,
7480         weak_alias, strong_alias): Define using GCC __attribute__ syntax.
7482         * Makerules ($(installed-libcs)): Depend on `lib' (only).
7484 Tue Jul 25 09:14:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7486         * sysdeps/mach/hurd/pathconf.c: Declare VALUE as int, not long int.
7488         * stdlib/strtol.c [_LIBC]: Define STDC_HEADERS.
7490         * sysdeps/unix/sysv/ftime.S: New file.
7492         * locale/locfile-parse.c (categories_write): Cast "" to char *.
7494         * io/fcntl.h [__OPTIMIZE__] (creat): Macro removed.
7496         * time/strftime.c: Use year modulo 100 for %y.
7498         * time/sys/timeb.h: Add __BEGIN_DECLS and __END_DECLS.
7500         * sysdeps/unix/snarf-ioctls (snarfexclude): Use two sed's instead
7501         of one, to work around bug in sunos4.1.2 sed.
7503         * stdio/vfprintf.c (vfprintf): For %s with precision spec, use
7504         memchr instead of strlen to limit search for NUL by precision.
7506 Mon Jul 24 03:13:16 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7508         * sysdeps/posix/pathconf.c: New file.
7510 Sat Jul 22 20:53:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7512         * sysdeps/unix/i386/sysdep.h (JUMPTARGET): Use ## to avoid space
7513         before @PLT.
7514         * sysdeps/mach/i386/sysdep.h (JUMPTARGET): New macro.
7515         * sysdeps/i386/bsd-_setjmp.S: Use JUMPTARGET macro in jmp insn.
7516         * sysdeps/i386/bsd-setjmp.S: Likewise.
7518 Sat Jul 22 19:58:54 1995  Michael I Bushnell  <mib@geech.gnu.ai.mit.edu>
7520         * inet/Makefile (routines): Added `ruserpass'.
7521         * inet/ruserpass.c: New file, from BSD Net-2 sources for the FTP
7522         client.  Modified to remove the fourth arg AACCT.  Do nothing for
7523         the `account' and `macdef' keywords.  Other incidental changes
7524         because we are not in the FTP source tree.
7526 Sat Jul 22 01:56:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7528         * sysdeps/stub/init-posix.c: Removed stub warning.
7530         * Makefile (autoconf-it): Make it executable and unwritable.
7532         * configure.in (sysnames): Under --enable-debug-configure, spew
7533         potential sysnames.
7535         * sysdeps/unix/i386/sysdep.h (JUMPTARGET): New macro; use name@PLT
7536         #ifdef PIC.
7537         (PSEUDO): Use JUMPTARGET(syscall_error) in jump insn.
7538         * sysdeps/unix/i386/syscall.S: Use JUMPTARGET(syscall_error) in
7539         jump insn.
7541         * sysdeps/unix/sysv/sysv4/linux/i386/sysdep.h: Rewritten.
7542         * sysdeps/unix/sysv/sysv4/linux/i386/syscall.S: New file.
7543         * sysdeps/unix/sysv/sysv4/linux/i386/socket.S: Include
7544         <sys/socketcall.h>.  Save %ebx in call-clobbered %edx instead of
7545         stack.  Use JUMPTARGET(syscall_error) in jump insn.
7547         * Makeconfig (+gccwarn): Add -Wbad-function-cast -Wconversion.
7549         * sysdeps/unix/i386/sysdep.h (ENTRY): Use ASM_GLOBAL_DIRECTIVE and
7550         ASM_TYPE_DIRECTIVE.
7551         (ASM_TYPE_DIRECTIVE): New macro; defined using `.type' #ifdef ELF.
7553         * sysdeps/unix/sysv/sysv4/linux/i386/sysdep.S (__syscall_error):
7554         Rewritten, #include'ing unix/i386/sysdep.S for most of the code.
7555         * sysdeps/unix/i386/sysdep.S [PIC]: Store into `errno' through the GOT.
7557         * configure.in (os=linux*): Use unix/sysv/sysv4 for $base_os,
7558         instead of unix/sysv.
7559         * sysdeps/unix/sysv/linux/{accept,connect,getsockname,rename,
7560         socketpair,waitpid,bind,getpeername,listen,setsid,wait4}.S: Moved
7561         to new directory sysdeps/unix/sysv/sysv4/linux.
7562         * sysdeps/unix/sysv/linux: Directory removed.
7563         * sysdeps/unix/sysv/i386/linux/{socket.S,sysdep.h,sysdep.S}: Moved
7564         to new directory sysdeps/unix/sysv/sysv4/linux/i386.
7565         * sysdeps/unix/sysv/linux/i386: Directory removed.
7567         Fixes to help Linux, inspired by drepper's work:
7568         * sysdeps/posix/utimes.c: New file.
7569         * sysdeps/generic/getdomain.c: New file.
7570         * sysdeps/i386/init-first.c: Removed gratuitous #include <hurd.h>.
7571         * sysdeps/generic/dl-sysdep.c: Include <unistd.h> and declare
7572         externals _dl_argc, _dl_argc, and _environ.
7574 Fri Jul 21 12:57:29 1995  Michael I Bushnell  <mib@geech.gnu.ai.mit.edu>
7576         * sysdeps/mach/hurd/socket.c (socket): Consider MIG_BAD_ID and
7577         EOPNOTSUPP as indications that the server has died.
7578         * sysdeps/mach/hurd/pipe.c (__pipe): Likewise.
7579         * sysdeps/mach/hurd/socketpair.c (socketpair): Likewise.
7581 Mon Jul 17 08:45:40 1995  Jim Meyering  (meyering@comco.com)
7583         * strtol.c: Portability changes from Uli Drepper.
7584         [!STDC_HEADERS && !defined(NULL)]: Define NULL.
7586 Mon Jul 10 05:39:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7588         * sysdeps/mach/hurd/i386/init-first.c (init): Take just one arg,
7589         DATA for the entry SP; DATA[-1] is always the return address
7590         location.  In both cthreads and non-cthreads cases, use asm to
7591         force parameters into %eax and %ecx before return, and mutate
7592         DATA[-1] to return to specific asm code to set up the user from
7593         %eax and %ecx.
7594         [PIC] (_init): Caller changed.
7595         (__libc_init_first) [! PIC] (doinit): Use asm to effect call to init
7596         with SP unwound to argument data ptr.
7598 Thu Jul  6 14:28:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7600         * sysdeps/mach/hurd/dl-sysdep.c (fmh): Fixed this kludge to work
7601         when 0x08000000 and up are not mapped.
7603         * Makerules (stamp$o-$(subdir) rule): Remove the timestamp file
7604         before touching it.
7605         (lib%.so): Use -Wl to get -soname to ld.
7607         * elf/dlsym.c: Pass final arg to _dl_lookup_symbol.
7609         * elf/Makefile (libdl.so): Pass $(LDFLAGS.so).
7611 Tue Jun 20 02:18:19 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7613         * Makerules (lib%.so: lib%_pic.a): Pass -soname switch giving the
7614         library's name including $(libprefix) and major version number.
7616         * locale/locale-ctype.c (allocate_arrays): Use xmalloc and bzero
7617         in place of xcalloc.
7619         * Makeconfig (prefix, exec_prefix, libprefix): Instead of
7620         `ifndef', use the $(origin) function to only set these if they are
7621         undefined, and not if they are defined to empty.
7623         * gnu-versions.h: New file.
7624         * features.h (__GNU_LIBRARY__): Increase value to 5.
7626 Wed Jun 14 03:45:24 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7628         * stdio/stdio.h (__validfp): Use ({...}) rather than a comma
7629         expression, to avoid gcc's "value computed is not used" warning.
7631         * libc-symbols.h (_elf_set_element): Give the set-element variable
7632         an `unused' attribute.
7634         * hurd/hurd/threadvar.h (__hurd_threadvar_location): Declare with
7635         __attribute__ ((__const__)).
7636         * hurd/hurd/signal.h (_hurd_self_sigstate): Likewise.
7638         * hurd/hurd/userlink.h (_hurd_userlink_link): Properly set
7639         LINK->resource.next->resource.prevp when appropriate, not
7640         LINK->resource.next->thread.prevp!!!
7642 Tue Jun 13 15:45:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7644         * configure.in (libc_cv_asm_set_directive): Make sure that the
7645         `.set' directive really worked by linking against a reference to
7646         the alias.
7648         * sysdeps/stub/init-first.c: Don't include <hurd.h>.
7649         [PIC] (soinit): Renamed to (global) _init.
7651 Mon Jun 12 13:15:45 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7653         * malloc/Makefile (gmalloc-routines): Remove valloc.
7654         (dist-routines): Add it here.
7656         * malloc/malloc.h [_MALLOC_INTERNAL] [emacs] (valloc): #define to
7657         emacs_loser_valloc to inhibit valloc declaration below.
7659         * Makerules (lib%.so: lib%_pic.a): Moved this rule to after
7660         installation rules.
7662         * sysdeps/mach/sysdep.h [HAVE_ELF] (ENTRY): Redefine this macro so
7663         it uses the `.type' directive, which is necessary for shared
7664         libraries to work properly.
7666 Thu Jun  8 02:50:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7668         * elf/dl-load.c (_dl_map_object): Add MAP_INHERIT flag in mmap
7669         from zero fill.
7671         * elf/dl-lookup.c (_dl_lookup_symbol): Take new flag arg NOSELF;
7672         if nonzero, don't let *REF satisfy the reference itself.
7673         * elf/link.h (_dl_lookup_symbol): Add new arg NOSELF in decl.
7674         * sysdeps/i386/dl-runtime.c (_dl_runtime_resolve): Pass new arg to
7675         _dl_lookup_symbol.
7676         * elf/do-rel.h (elf_dynamic_do_rel): Pass new second arg of
7677         R->r_offset to RESOLVE callback.
7678         * elf/dl-reloc.c (_dl_relocate_object: resolve): Don't let *REF
7679         satisfy the reference itself if its value equals the reloc's
7680         offset.
7682         * elf/rtld.c (dl_main): Write a newline in fatal msg.
7684         * Makerules (lib%.so: lib%_pic.a): Pass $(LDFLAGS.so).
7686         * elf/rtld.c [! NDEBUG] (__assert_perror_fail): New function.
7688         * hurd/hurdstartup.c (_hurd_startup): Fancier kludge to guess phdr
7689         and user entry point addresses.
7691         * elf/dl-load.c (open_path): Don't do strlen on DIRPATH if it's null.
7692         (_dl_map_object): DT_RPATH value is relative to DT_STRTAB value.
7694         * Makerules (install-lib.so): Don't include libc.so.
7695         [$(build-shared)=yes] (install): Depend on the installed libc.so file.
7696         [$(build-shared)=yes] (install-no-libc.a): Make this, rather than
7697         install, depend on the installed $(install-lib.so) files.
7698         [$(build-shared)=yes] (install-lib.so): Append libc.so after that rule.
7700         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Add kludge to
7701         allocate high addresses to avoid random mappings appearing there.
7702         (mmap): Comment out mask; always pass zero.
7704 Tue Jun  6 13:34:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7706         * sysdeps/i386/dl-machine.h (ELF_MACHINE_USER_ADDRESS_MASK): New macro.
7707         * sysdeps/mach/hurd/dl-sysdep.c (mmap): Use it as mask in vm_map call.
7709         * elf/dl-error.c (_dl_catch_error): Clear *ERRSTRING and *OBJNAME
7710         when successful.
7712         * sysdeps/mach/hurd/dl-sysdep.c (threadvars): New static variable.
7713         (__hurd_threadvar_max, __hurd_threadvar_stack_offset): Define these
7714         variables, using the `threadvars' buffer.
7716         * elf/dl-reloc.c: Don't dereference L->l_prev when it's null.
7717         * sysdeps/i386/dl-runtime.c: Likewise.
7719         * elf/rtld.c (dl_main): Add missing NULL terminating argument in
7720         _dl_sysdep_fatal call.
7721         (__assert_fail): Likewise.
7723         * locale/Makefile (localedef-modules): Renamed ctype to
7724         locale-ctype so as not to conflict with the object file for
7725         ctype/ctype.c in the build directory.
7727 Mon Jun  5 04:02:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7729         * elf/elf.h (ELFMAG): Use \177 instead of \x7f.  It seems GCC
7730         insists on seeing the following E as part of hex 7FE, and
7731         complaining that is wider than a byte.
7733 Sun Jun  4 22:14:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7735         * hurd/Makefile (sig): Added thread-self.
7736         * hurd/hurd.h: Declare hurd_thread_self.
7737         * hurd/thread-self.c: New file.
7739 Thu Jun  1 12:17:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7741         * elf/rtld.c: Initialize RTLD_MAP.l_type.
7742         * elf/dl-reloc.c (_dl_relocate_object): Clear LAZY if relocating
7743         the dynamic linker itself.
7744         * sysdeps/i386/dl-machine.h (elf_machine_rel): If MAP->l_type is
7745         lt_interpreter, first undo relocation done during bootstrapping.
7747 Tue May 30 15:52:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7749         * mach/Makefile (server-interfaces): Removed notify and
7750         device_reply.  For shlibs with eager binding, libmachuser.so must
7751         not refer to any functions not defined in libc.
7753 Sat May 27 16:23:22 1995  Jim Meyering  (meyering@comco.com)
7755         * sysdeps/generic/memchr.c: Cast RHS to const unsigned char *
7756         to avoid error from Irix-4.0.5's C compiler.  From Kaveh Ghazi.
7758 Fri May 26 13:00:08 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7760         * hurd/hurdsig.c (_hurd_internal_post_signal): Don't loop to check
7761         pending signals if the thread is in a critical section.  It will
7762         send us a msg when it finishes.
7764         * sysdeps/mach/hurd/pathconf.c: New file.
7765         * sysdeps/mach/hurd/fpathconf.c: New file.
7767         * sysdeps/mach/hurd/sigaction.c: Only notify the proc server for
7768         SIGCHLD when the SA_NOCLDSTOP bit actually changes.
7770 Sun May 21 05:05:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7772         * elf/Makefile (ld.so): Use -nostartfiles in addition to
7773         -nostdlib.
7775 Sun May 21 02:01:29 1995  Jim Meyering  (meyering@comco.com)
7777         * sysdeps/generic/memchr.c: Don't include <string.h> at all.
7778         HPUX-9.01 and IRIX-4.0.5 vendor C compilers get conflicting dcls for
7779         memchr unless one manually arranges for them to define __STDC__.
7781 Fri May 19 17:16:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7783         * sysdeps/mach/hurd/i386/init-first.c: In cthreads case, handle
7784         args on stack from kernel.
7786         * posix/Makefile, sysdeps/alpha/Makefile,
7787         * sysdeps/mach/hurd/Makefile, sysdeps/sparc/Makefile, Makefile,
7788         * Makerules, Make-dist: Fix "cvs commit" cmds in rules to not fail
7789         in the absence of CVS dirs.
7791         * hurd/hurdstartup.c: Don't call __mach_init.  Grok args from the
7792         kernel on the stack properly.
7794         * set-init.c: Never call _init/_fini; just run __libc_subinit.
7796         * Makerules (LDFLAGS-c.so): Add -nostartfiles.
7797         * mach/Machrules (LDFLAGS-$(interface.so)): Likewise.
7799         * configure.in: Move defaulting of --with-elf and --with-gnu-*
7800         based on host os outside the AC_CACHE_VAL for the sysdirs
7801         calculation.
7803         * Makeconfig (localedir, nlsdir): New variables.
7805         * values.h: New file.
7806         * Makefile (headers): Add values.h.
7808         * locale/Makefile (distribute): Add error.h.
7809         * locale/localedef.c: Include "error.h".
7810         (main): Use error_message_count instead of warning_cntr.
7812 Wed May 17 16:50:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7814         Merged 1003.2 locale and localedef programs by Ulrich Drepper.
7815         * locale/charmap.c: New file.
7816         * locale/collate.c: New file.
7817         * locale/config.h: New file.
7818         * locale/ctype.c: New file.
7819         * locale/ctypedump.c: New file.
7820         * locale/hash.c: New file.
7821         * locale/hash.h: New file.
7822         * locale/iso-4217.def: New file.
7823         * locale/keyword.gperf: New file.
7824         * locale/keyword.h: New file.
7825         * locale/libintl.h: New file.
7826         * locale/locale.c: New file.
7827         * locale/localedef.c: New file.
7828         * locale/localedef.h: New file.
7829         * locale/locfile-lex.c: New file.
7830         * locale/locfile-parse.c: New file.
7831         * locale/messages.c: New file.
7832         * locale/monetary.c: New file.
7833         * locale/numeric.c: New file.
7834         * locale/token.h: New file.
7836         * posix/regex.c, posix/regex.h: New files, incorporated from GNU regex.
7837         * posix/Makefile (headers): Add regex.h.
7838         (routines): Add regex.
7839         (gpl2lgpl): Add regex.c and regex.h.
7841 Tue May 16 17:35:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7843         * locale/loadlocale.c: Expect macro LOCALE_PATH to be defined,
7844         instead of hard-coding "/share/locale".
7846 Sat May 13 02:16:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7848         * configure.in (os=gnu*): Always set elf=yes, not just for os=gnu*elf*.
7850 Fri May 12 15:31:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7852         * elf/elf.h (ELFMAG, SELFMAG): New macros.
7854 Fri May 12 11:24:53 1995  Michael I Bushnell  <mib@duality.gnu.ai.mit.edu>
7856         * hurd/alloc-fd.c (_hurd_alloc_fd): Don't reduce FIRST_FD in
7857         the case where it starts out less than _hurd_dtablesize.
7859 Thu May 11 20:51:05 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7861         * hurd/alloc-fd.c (_hurd_alloc_fd): When expanding the dtable,
7862         make sure the new size exceeds FIRST_FD.
7864 Wed May 10 21:00:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7866         * sysdeps/mach/i386/sysdep.h (RETURN_TO): New macro.
7868 Tue May  9 01:26:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7870         * Makerules (install-lib.so): Add %.so for each %_pic.a.
7872         * sysdeps/i386/elf/start.S (__data_start): Define this symbol as
7873         the first thing in .data.
7875         * sysdeps/mach/_strerror.c (_strerror_internal): Eschew sprintf.
7877         * hurd/hurdstartup.h: New file.
7879         * sysdeps/i386/elf/start.S: Give two operands to `testl' when they
7880         are the same.  Use `jz' instead of `jeq'.
7882         * Makeconfig (config.make): Depend on config.status, and run it to
7883         update.
7884         (config.status): New target; depend on configure.
7885         If target (config.status) exists, run it with --recheck to update;
7886         if not, give error msg saying to run confiugre by hand.
7887         * Makerules [$(sysd-Makefile-sysdirs) != $(sysdirs)]
7888         (sysd-Makefile-force): Set this variable to FORCE in this case, to
7889         force a rebuild of sysd-Makefile.
7890         (sysd-Makefile): Depend on $(sysd-Makefile-force).
7891         Write into the file sysd-Makefile-sysdirs:=$(sysdirs).
7892         [$(sysd-rules-sysdirs) != $(sysdirs)] (sysd-rules-force): Set this
7893         variable to FORCE in this case, to force a rebuild of sysd-rules.
7894         (sysd-rules): Depend on $(sysd-rules-force).
7895         Write into the file sysd-rules-sysdirs:=$(sysdirs).
7897         * Makerules (LDFLAGS-c.so): Change ld option -interp to
7898         -dynamic-linker.
7900         * Makerules (do-install-program): New canned sequence.
7901         (install-bin, install-sbin): Use it.
7902         (install for lib*.so): Use it instead of $(do-install).
7903         Fix .so installation rules to handle lib*.so and *.so, deal with
7904         $(libprefix) right, and install *.so as *.so$($(*.so)-version);
7905         i.e. "libc.so-version = .1".
7907 Mon May  8 05:10:25 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7909         * elf/do-rel.h: New file, split out of dynamic-link.h.
7910         * elf/Makefile (distribute): Add do-rel.h.
7912 Sat May  6 11:06:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7914         * Makeconfig (+gccwarn): Add -Winline.
7916         * hurd/hurdsig.c (_hurd_internal_post_signal): If SS->context is
7917         set, avoid abort_rpcs, and use reply and intr ports saved in
7918         SS->context.
7919         * sysdeps/mach/hurd/i386/trampoline.c: Don't set SS->intr_port
7920         from SS->context.  Don't clear SS->context.
7921         * sysdeps/mach/hurd/i386/sigreturn.c: Don't set SS->intr_port when
7922         setting SS->context.  If msg_sig_post returns, re-lock and clear
7923         SS->context.
7925 Fri May  5 10:37:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7927         * mach/Makefile (errsystems.c): Comment out generation rule.
7929         * sysdeps/mach/_strerror.c: Consider a system unknown if its
7930         bad_sub member is null.
7932         * mach/mig-alloc.c: Add weak alias to non-__ name.
7934 Wed May  3 11:56:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7936         * sysdeps/mach/hurd/dup2.c: Fixed broken test in last change.
7938 Tue May  2 01:52:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7940         * elf/dl-error.c (_dl_catch_error): Actually call the OPERATE
7941         function.  Duh.
7943         * hurd/Makefile (distribute): Added hurdstartup.h.
7944         * hurd/hurd.h: Remove _hurd_startup decl.
7946         * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS): Use __attribute__
7947         ((__unused__)) instead of gratuitous self reference.
7949         * sysdeps/mach/hurd/dup2.c: Call _hurd_alloc_fd to expand the
7950         table if FD2 doesn't fit.
7952         * sysdeps/mach/hurd/getdtsz.c: Return the RLIM_NOFILE soft limit,
7953         not the current table size.
7955         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS, CALL_WITH_SP): Rewritten.
7957         Implemented runtime dynamic linker to support ELF shared libraries.
7958         * elf/Makefile: Added rules to make ld.so and libdl.
7959         * elf/dl-error.c: New file.
7960         * elf/dl-fini.c: New file.
7961         * elf/dl-init.c: New file.
7962         * elf/dl-load.c: New file.
7963         * elf/dl-lookup.c: New file.
7964         * elf/dl-object.c: New file.
7965         * elf/dl-reloc.c: New file.
7966         * elf/dlclose.c: New file.
7967         * elf/dlerror.c: New file.
7968         * elf/dlopen.c: New file.
7969         * elf/dlsym.c: New file.
7970         * elf/dynamic-link.h: New file.
7971         * elf/link.h: New file.
7972         * elf/rtld.c: New file.
7973         * sysdeps/i386/dl-machine.h: New file.
7974         * sysdeps/stub/dl-machine.h: New file.
7975         * sysdeps/i386/dl-runtime.c: New file.
7976         * sysdeps/stub/dl-runtime.c: New file.
7977         * sysdeps/i386/elf/start.S: New file.
7978         * sysdeps/generic/dl-sysdep.c: New file.
7979         * sysdeps/mach/hurd/dl-sysdep.c: New file.
7980         * sysdeps/mach/hurd/i386/init-first.c: New file.
7981         * sysdeps/i386/init-first.c: New file.
7982         * sysdeps/stub/init-first.c: New file.
7984 Mon May  1 18:48:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7986         * Makerules (LDFLAGS-c.so): Add -interp and -e switches to make
7987         libc.so runnable.
7988         * version.c (__libc_print_version): Add "et al" and missing NL to
7989         author credit.
7991 Sat Apr 29 15:46:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7993         * posix/glob.c (S_ISDIR): Define if undefined.
7995 Thu Apr 27 01:24:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
7997         * configure.in: Unless --without-fp, prepend */fpu before each
7998         machine dir in $mach; don't prepend FPU dirs at end.  If
7999         --with-elf, prepend MACHINE/elf directories at end; don't insert
8000         them into $mach.
8002         * Makerules (dist): Filter out *.[cSs] from $(distribute) in deps.
8004         * sysdeps/stub/clock.c: Added stub warning.
8005         * sysdeps/stub/dirfd.c: Likewise.
8006         * sysdeps/stub/exc2signal.c: Likewise.
8007         * sysdeps/stub/fdopen.c: Likewise.
8008         * sysdeps/stub/flock.c: Likewise.
8009         * sysdeps/stub/fpathconf.c: Likewise.
8010         * sysdeps/stub/ftruncate.c: Likewise.
8011         * sysdeps/stub/gtty.c: Likewise.
8012         * sysdeps/stub/isatty.c: Likewise.
8013         * sysdeps/stub/killpg.c: Likewise.
8014         * sysdeps/stub/madvise.c: Likewise.
8015         * sysdeps/stub/mkstemp.c: Likewise.
8016         * sysdeps/stub/mktemp.c: Likewise.
8017         * sysdeps/stub/mprotect.c: Likewise.
8018         * sysdeps/stub/msync.c: Likewise.
8019         * sysdeps/stub/pathconf.c: Likewise.
8020         * sysdeps/stub/poll.c: Likewise.
8021         * sysdeps/stub/raise.c: Likewise.
8022         * sysdeps/stub/readv.c: Likewise.
8023         * sysdeps/stub/setenv.c: Likewise.
8024         * sysdeps/stub/setlogin.c: Likewise.
8025         * sysdeps/stub/sigaltstack.c: Likewise.
8026         * sysdeps/stub/sigintr.c: Likewise.
8027         * sysdeps/stub/sigstack.c: Likewise.
8028         * sysdeps/stub/sleep.c: Likewise.
8029         * sysdeps/stub/sstk.c: Likewise.
8030         * sysdeps/stub/stime.c: Likewise.
8031         * sysdeps/stub/stty.c: Likewise.
8032         * sysdeps/stub/syscall.c: Likewise.
8033         * sysdeps/stub/sysconf.c: Likewise.
8034         * sysdeps/stub/truncate.c: Likewise.
8035         * sysdeps/stub/ualarm.c: Likewise.
8036         * sysdeps/stub/usleep.c: Likewise.
8037         * sysdeps/stub/utimes.c: Likewise.
8038         * sysdeps/stub/writev.c: Likewise.
8040         * sysdeps/stub/libc_fatal.c: Remove __NORETURN keyword.
8042 Wed Apr 26 16:06:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8044         * locale/loadlocale.c (_nl_free_locale): Do nothing if DATA is null.
8046 Tue Apr 25 17:17:19 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8048         * posix/glob.c (glob): If GLOB_MARK set, stat names to find
8049         directories and append slashes to them in final pass before
8050         sorting.
8051         (glob_in_dir): If GLOB_MARK set, just allocate the extra char for the
8052         slash; never append it here.
8054 Sat Apr 22 14:48:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8056         * mach/Machrules [interface-library]
8057         (LDFLAGS-$(interface-library:lib%=%.so)): New variable, set to
8058         -nostdlib.
8060         * sysdeps/mach/hurd/fork.c: Subfunction `unlockss' removed.  Lock
8061         _hurd_siglock only around initial task creation in parent.  Use
8062         _hurd_critical_section_unlock at end.  Handle dead name rights
8063         properly, and deal with a send right dying while we try to copy
8064         it.  For the time being, use assert_perror for kernel and proc RPC
8065         failures.
8067 Fri Apr 21 01:10:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8069         * extra-lib.mk: Don't include $(o-iterator); construct it by hand
8070         using $(object-suffixes-$(lib)) instead.
8072         * sysdeps/mach/hurd/Makefile (LDLIBS-c.so): New variable.
8074         * Makerules (lib%.so: lib%_pic.a): Pass $(LDFLAGS-$(notdir $*).so).
8075         (LDFLAGS-c.so): New variable.
8077         * resolv/res_init.c (res_init): Don't clobber _res.options with
8078         RES_DEFAULT.  If RES_INIT is clear, OR in RES_DEFAULT.
8080         * hurd/hurd.h: Declare _hurd_startup.
8081         * hurd/hurdstartup.c: New file.
8082         * hurd/Makefile (routines): Add hurdstartup.
8084 Thu Apr 20 22:23:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8086         * hurd/hurdsig.c: Use assert_perror for many calls which should
8087         never fail and previously were not checked.
8089         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
8090         Point the return address for sigreturn's frame at a "hlt" insn so
8091         it will definitely crash if sigreturn returns.
8093 Wed Apr 19 18:40:11 1995  Brendan Kehoe  (brendan@zen.org)
8095         * time/tzset.c (__tzname, __daylight, __timezone): Don't check
8096         HAVE_WEAK_SYMBOLS for doing weak_alias.
8098 Wed Apr 19 18:12:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8100         * configure.in: Move $os tests to set $elf et al earlier, before
8101         construction of $sysnames.  Instead of prepending MACHINE/elf to
8102         $sysnames, append &/elf after each elt appended to $mach.
8104 Tue Apr 18 14:00:19 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8106         * configure.in (libc_cv_asm_global_directive): New check to define
8107         ASM_GLOBAL_DIRECTIVE.
8108         * config.h.in: Add #undef ASM_GLOBAL_DIRECTIVE.
8109         * libc-symbols.h (strong_alias_asm, strong_alias): Use
8110         ASM_GLOBAL_DIRECTIVE on the alias.
8112         * sysdeps/unix/make_errlist.c (main): Don't generate "#ifdef
8113         HAVE_WEAK_SYMBOLS" #defns.
8115 Mon Apr 17 12:02:49 1995  Brendan Kehoe  (brendan@zen.org)
8117         * sysdeps/alpha/strlen.c (strlen): Fix cmpbge insn, and returning
8118         of the byte that was zero, so we return a valid number.
8120 Sun Apr 16 03:23:09 1995  Brendan Kehoe  (brendan@zen.org)
8122         * sysdeps/unix/bsd/ultrix4/mips/sysdep.h: New file defining
8123         NO_UNDERSCORES then using sysdeps/unix/mips/sysdep.h.
8125 Fri Apr 14 18:49:03 1995  Brendan Kehoe  (brendan@zen.org)
8127         * sysdeps/ieee754/mpn2dbl.c (__mpn_construct_double)
8128         [BITS_PER_MP_LIMB == 64]: Refer to `u', not to non-existent `i'.
8129         * sysdeps/ieee754/mpn2ldbl.c (__mpn_construct_long_double)
8130         [BITS_PER_MP_LIMB == 64]: Likewise.
8132         * sysdeps/unix/bsd/osf/alpha/killpg.S (killpg): Add .end directive.
8133         * sysdeps/unix/bsd/osf/alpha/sigblock.S (__sigblock): Likewise.
8134         * sysdeps/unix/bsd/osf/alpha/sigsetmask.S (__sigsetmask): Likewise.
8135         * sysdeps/unix/bsd/osf/alpha/sigpause.S (__sigpause): Likewise.
8136         * sysdeps/unix/bsd/osf/alpha/sigvec.S (__sigvec): Likewise.
8137         * sysdeps/unix/bsd/osf/alpha/getdents.S (__getdirentries): Likewise.
8138         * sysdeps/unix/bsd/osf/alpha/fork.S (__fork): Likewise.
8139         * sysdeps/unix/bsd/osf/alpha/pipe.S (__pipe): Likewise.
8140         * sysdeps/unix/bsd/osf/alpha/recv.S (recv): Likewise.
8141         * sysdeps/unix/bsd/osf/alpha/send.S (send): Likewise.
8142         * sysdeps/unix/bsd/osf/alpha/vhangup.S (vhangup): Likewise.
8144         * sysdeps/unix/mips/brk.S (__brk, __curbrk): Add .end directive.
8145         * sysdeps/unix/mips/fork.S (fork): Likewise.
8146         * sysdeps/unix/mips/pipe.S (fork): Likewise.
8147         * sysdeps/unix/mips/sigreturn.S (__sigreturn): Likewise.
8148         * sysdeps/unix/mips/sysdep.S (sysdep_error): Likewise.
8149         * sysdeps/unix/mips/wait.S (__handler): Likewise.
8150         * sysdeps/mips/setjmp.S (__sigsetjmp): Likewise.
8151         * sysdeps/mips/bsd-setjmp.S (setjmp): Likewise.
8152         * sysdeps/unix/bsd/ultrix4/getsysinfo.S (getsysinfo): Likewise.
8153         * sysdeps/unix/bsd/ultrix4/wait3.S (waitpid): Likewise.
8154         * sysdeps/unix/bsd/ultrix4/waitpid.S (waitpid): Likewise.
8155         * sysdeps/unix/bsd/ultrix4/mips/__handler.S (__handler): Likewise.
8156         * sysdeps/unix/bsd/ultrix4/mips/sigvec.S (__raw_sigvec): Likewise.
8157         * sysdeps/unix/bsd/ultrix4/mips/start.S (__start): Likewise.
8158         * sysdeps/unix/bsd/ultrix4/mips/vfork.S (vfork): Likewise.
8159         * sysdeps/mips/bsd-_setjmp.S (setjmp): Likewise.  Use `$0'
8160         instead of `zero' for the li instruction.
8162         * sysdeps/unix/bsd/osf/alpha/start.S: Change comments to be
8163         preprocessor comments, not assembler comments.
8164         * sysdeps/unix/bsd/osf/alpha/brk.S: Likewise.
8165         * sysdeps/unix/bsd/osf/alpha/sysdep.h (NO_UNDERSCORES): Define.
8167 Fri Apr 14 15:53:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8169         * malloc/malloc.c (register_heapinfo) [__GNUC__]: Use __inline__
8170         in place of inline.
8172 Thu Apr 13 09:45:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8174         * Makefile (distribute): Add ChangeLog.[0-9].
8176         * configure.in: Add check for .set directive.
8177         * config.h.in: Add #undef HAVE_ASM_SET_DIRECTIVE.
8178         * libc-symbols.h [! HAVE_ASM_SET_DIRECTIVE] (strong_alias,
8179         strong_alias_asm): Use `foo = bar' syntax instead.
8181         * Makerules [! subdir] (O%-lib): Don't prepend ../.
8183         * sysdeps/generic/expm1.c: #undef expm1 before weak_alias.
8185         * configure.in: Fix AC_ARG_WITH uses; check for --with-fp.  Move
8186         $host_os checks to set gnu_ld/as and elf before sysdirs
8187         generation.  Fix $with_fp test.
8188         [$elf=yes]: Prepend MACHINE/elf directory.
8190         * elf/libelf.h (elf_hash): Use XOR instead of ANDN when the bits
8191         being cleared are already known to be set.  Thanks Ulrich.
8193 Wed Apr 12 23:27:22 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8195         * posix/environ.c: Add weak alias `_environ'.
8197 Tue Apr 11 20:38:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8199         * sysdeps/i386/add_n.S [PIC]: Use self-call to avoid generating reloc.
8200         * sysdeps/i386/sub_n.S [PIC]: Likewise.
8202 Mon Apr 10 14:53:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8204         * libc-symbols.h (_elf_set_element) [PIC]: Don't make the element
8205         word `const'.
8207         * Makeconfig (CPPFLAGS, CFLAGS): Fix swapped references to
8208         $(foo-$(suffix $@)).
8210         * manual/Makefile (chapters-incl): Filter out summary.texi.
8212         * stdlib/strtod.c (STRTOF): Use extra macro to make STRTOF's #defn
8213         a weak symbol instead of literal "STRTOF".
8215         * locale/setlocale.c: Work around ld bug: don't weakify refs to
8216         _nl_{current,C}_*.
8218 Sun Apr  9 01:24:33 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8220         * Makerules (+depfiles): Translate %.so to %.o in $(extra-objs).
8222         * malloc/free.c [emacs] (__malloc_safe_bcopy): Define to safe_bcopy.
8223         * malloc/realloc.c (__malloc_safe_bcopy): Undefine before defining.
8225         * malloc/free.c (memmove, __malloc_safe_bcopy): Do include these
8226         #ifdef emacs, but only #ifndef memmove.
8227         * malloc/realloc.c [emacs] (__malloc_safe_bcopy): Just #define to
8228         safe_bcopy.
8229         (memmove): Define only if undefined.
8231 Sat Apr  8 00:40:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8233         * extra-lib.mk (install-lib, extra-objs, alltypes-$(lib)): Make
8234         sure these are simply-expanded variables.
8236         * locale/loadlocale.c (_nl_load_locale): Use MAP_INHERIT flag in
8237         mmap call.
8239         * configure.in (os=freebsd*|bsdi*): Set base_os=unix/bsd/bsd4.4
8240         for these too.
8242         * sysdeps/unix/sysv/tcsetattr.c: Use |= instead of = to properly
8243         set c_oflag value.
8245         * Makeconfig [! objpfx] (csu-objpfx): Add trailing slash.
8247         * locale/Makefile (categories): Uncomment collate.
8248         * locale/lc-collate.c: New file.
8250         * malloc/free.c (__malloc_safe_bcopy, memmove): Don't define
8251         #ifdef emacs.
8252         * malloc/realloc.c: Likewise.
8254         * stdio/_itoa.h (_EXTERN_INLINE): Define if undefined.
8255         (_itoa): Use it in defn.
8256         * stdio/_itoa.c (_EXTERN_INLINE): Define to empty before #include
8257         "_itoa.h".
8258         (_itoa): Function removed.
8260         * malloc/free.c: Remove use of `assert'.
8262         * malloc/realloc.c [! emacs] (safe_bcopy): Renamed to
8263         __malloc_safe_bcopy; #define safe_bcopy.
8264         * malloc/free.c: Cope with systems lacking `memmove'.
8265         (_free_internal): Cast result of _malloc_internal.
8267 Wed Apr  5 00:13:45 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8269         * hurd/hurdinline.c: Include signal.h first, so we don't define
8270         its inlines too.
8272         * sysdeps/unix/sysv/sysv4/sigset.h (__sigfillset): Use ~0L instead
8273         of -1 to avoid compiler warning.
8275         * configure.in (host_os=linux*): Set elf=yes for this, not just
8276         linux*elf*.
8278         * misc/login_tty.c [! TIOCSCTTY]: Try an emulation using ttyname
8279         and open.
8281         * sysdeps/i386/bsd-_setjmp.S: Fix typo in name: setjmp -> _setjmp.
8283 Tue Apr  4 00:48:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8285         * sysdeps/unix/start.c: Remove spurious decl and #endif.
8287         * misc/progname.c (program_invocation_name,
8288         program_invocation_short_name): Make these initialized data
8289         definitions.
8291         * sysdeps/mach/hurd/setitimer.c (fork_itimer): Add self reference
8292         so gcc doesn't optimize out the function entirely.
8294 Sun Apr  2 13:13:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8296         * posix/execvp.c: Don't use stat to search path; just try execv
8297         until it works.
8299         * sysdeps/mach/hurd/i386/trampoline.c: Add a link to
8300         SS->active_resources, so that _hurdsig_longjmp_from_handler will
8301         be called when a longjmp unwinds the signal frame.
8302         * sysdeps/mach/hurd/i386/sigreturn.c: Remove the link on the
8303         SS->active_resources chain added by _hurd_setup_sighandler.
8304         * hurd/sigunwind.c: New file.
8305         * hurd/Makefile (sig): Add sigunwind.
8307         * Makerules (lib%.so: lib%_pic.a): Remove dir name from $*.
8309         * MakeTAGS (tags-sources): Include $(all-dist).
8310         [subdir] (all-dist): Define to $(distribute).
8312 Sat Apr  1 00:08:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8314         * Makerules (lib%.so: lib%_pic.a): Pass -L options for subdir and
8315         parent objdirs.
8317         * extra-lib.mk (object-suffixes-$(lib)): New variable, produced by
8318         filtering out $($(lib)-inhibit-o); use that instead of
8319         $(object-suffixes) in all the other variables.
8321         * locale/loadlocale.c (_nl_load_locale) [MAP_FILE]: Define it zero
8322         if undefined.
8324         * string/strxfrm.c: Just copy the string (for now).
8325         * string/strcoll.c: Just call strcmp (for now).
8327         * mach/Makefile (lock): Add mutex-init.
8328         * mach/mutex-solid.c (_cthread_mutex_lock_routine,
8329         _cthread_mutex_unlock_routine): Variables removed.
8330         (__mutex_lock_solid, __mutex_unlock_solid): Don't use them; just stub.
8331         (__mutex_init): Function moved to new file mutex-init.c.
8332         * mach/mutex-init.c: New file, broken out of mutex-solid.c.
8334 Thu Mar 30 20:43:02 1995  Brendan Kehoe  <brendan@zen.org>
8336         * sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
8337         * sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
8339 Thu Mar 30 01:38:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8341         * elf/elf.h (STN_UNDEF): New macro (distinct from SHN_UNDEF, though
8342         both are zero).
8344 Wed Mar 29 11:26:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8346         * elf/dlfcn.h: New file.
8348         * Make-dist (README): Commit it to CVS if there is a CVS directory.
8350         More changes from Germano Caronni <caronni@tik.ethz.ch>:
8351         * malloc/free.c: Relocate _heapinfo when that allows us to return
8352         core to the system.
8354         * malloc/malloc.c: Move #include <errno.h> outside #ifndef
8355         _MALLOC_INTERNAL.
8357 Mon Mar 27 02:23:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8359         * mach/Makefile (headers): Add mach/mach_traps.h.
8361         * Makerules ($(installed-libcs) rule): Fix typos.
8363         * sysdeps/unix/bsd/bsd4.4/revoke.S: New file.
8364         * sysdeps/stub/revoke.c: New file.
8365         * misc/Makefile (routines): Add revoke.
8366         * posix/unistd.h [__USE_BSD] (revoke): Declare it.
8367         * sysdeps/generic/pty.c (openpty, forkpty): Declare return types.
8368         (forkpty): Declare login_tty.
8369         * misc/logwtmp.c (logwtmp): Declare to return void.
8370         * misc/login_tty.c (login_tty): Include unistd.h.  Declare return type.
8372         * posix/unistd.h [__USE_BSD] (ttyslot): Declare it.
8374         * posix/unistd.h [__USE_BSD] (L_SET, L_INCR, L_XTND): Define
8375         unless L_SET already defined.
8376         * misc/sys/file.h (L_SET, L_INCR, L_XTND): Don't define if L_SET
8377         already defined.
8379         Incorporated -lutil library from 4.4-Lite.
8380         * misc/Makefile (extra-libs, libutil-routines): New variables.
8381         * misc/login.c, misc/login_tty.c, misc/logout.c, misc/logwtmp.c,
8382         sysdeps/generic/pty.c: New files for -lutil incorporated from 4.4-Lite.
8384         Support simple, light-weight unwind-protect mechanism for longjmp.
8385         * setjmp/longjmp.c: Call _longjmp_unwind first thing.
8386         * sysdeps/mach/hurd/jmp-unwind.c: New file.
8387         * sysdeps/stub/jmp-unwind.c: New file.
8388         * sysdeps/i386/jmp_buf.h (_JMPBUF_UNWINDS): New macro.
8389         * sysdeps/mips/jmp_buf.h (_JMPBUF_UNWINDS): New macro.
8390         * setjmp/Makefile (routines): Add jmp-unwind.
8391         * hurd/hurd/userlink.h (struct hurd_userlink): Move `next' and
8392         `prevp' members into new substructure `resource'; add another such
8393         substructure `thread' and members `cleanup' (function ptr) and
8394         `cleanup_data' (generic ptr).
8395         (_hurd_userlink_link, _hurd_userlink_unlink): Insert/remove LINK
8396         into the `_hurd_self_sigstate ()->active_resources' list via the
8397         `thread' substructure.
8398         * hurd/hurd/port.h (_hurd_port_cleanup): Declare it.
8399         (_hurd_port_locked_get): Set LINK->cleanup to _hurd_port_cleanup and
8400         LINK->cleanup_data' to the port extracted.
8401         * hurd/hurd/signal.h (struct hurd_sigstate): New member
8402         `active_resources'.
8403         * hurd/port-cleanup.c: New file.
8404         * hurd/Makefile (routines): Add port-cleanup.
8406         * malloc/malloc.c: Include errno.h.
8408 Sat Mar 25 18:24:21 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8410         * locale/loadlocale.c (_nl_load_locale): Avoid */ inside comment.
8412 Fri Mar 24 02:35:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8414         * misc/Makefile (headers): Add utmp.h.
8415         * misc/utmp.h: New file, incorporated from 4.4-Lite.
8417         * stdio/printf-parse.h: New file, mostly written by drepper.
8418         * stdio/vfprintf.c: Rewritten, mostly by drepper.
8419         * stdio/printf-prs.c: Rewritten.
8420         * stdio/Makefile (distribute): Add printf-parse.h.
8422 Thu Mar 23 22:03:44 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8424         * sysdeps/unix/start.c [! NO_UNDERSCORES]: Don't declare _start
8425         with asm name.  Just do a ".set start, __start".
8427         * malloc/realloc.c: Call _free_internal instead of free.
8429 Tue Mar 21 00:14:27 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8431         * locale/loadlocale.c (_nl_load_locale): If LOCALE/LC_* is a
8432         directory, open LOCALE/LC_*/SYS_LC_* instead.
8434 Mon Mar 20 03:19:23 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8436         * stdio/fpioconst.c, stdio/fpioconst.h, stdio/gmp-impl.h,
8437         stdio/gmp.h, stdio/longlong.h, stdio/mp_clz_tab.c,
8438         stdio/gen-mpn-copy: Files moved to stdlib.
8439         * stdio/Makefile: All mpn stuff moved to stdlib/Makefile.
8440         * stdlib/Makefile: All the mpn stuff moved here from stdio/Makefile.
8441         * stdio/printf_fp.c: Use ../stdlib to find fpioconst.h and gmp
8442         headers.
8443         * stdlib/strtod.c: Don't use ../stdio to find fpioconst.h and gmp
8444         headers.
8446         * Makefile (parent-mostlyclean): Don't use $(libc.a).
8447         (parent-clean): Use $(objpfx) to find sysd-*.
8448         * Rules (generated): Append dummy.o dummy.c.
8449         * Makerules (lib): Depend on lib-noranlib.
8450         (lib-noranlib): Depend on $(install-lib) in objdir.
8451         (common-mostlyclean): Remove $(install-lib) and stub-$(subdir)
8452         from objdir.  Don't remove TAGS; it comes in the distribution.
8454         * malloc/malloc.c (morecore): Save errno around call to
8455         _realloc_internal.  Don't account for the additional new blocks of
8456         the info table itself when choosing the new table size for the
8457         first crack; if it succeeds, the new blocks will have been found
8458         in existing free space already described by the existing info
8459         table.
8461         * stdio/vfscanf.c (%n): Use READ_IN - 1, so as not to count the
8462         read-ahead character.
8464 Sat Mar 18 14:07:08 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8466         * hurd/dtable.c, hurd/getdport.c, hurd/hurd.h, hurd/hurdexec.c,
8467           hurd/hurdinit.c, hurd/hurdprio.c, hurd/hurdsock.c,
8468           hurd/ports-get.c, hurd/ports-set.c, hurd/setauth.c,
8469           hurd/setuids.c, sysdeps/mach/hurd/i386/trampoline.c:
8470         Get anal with unsigned to pacify compiler.
8472         * stdio/vfscanf.c: Grok positional parameter specs (i.e. %3$d
8473         means %d from 3rd arg).
8475         * sysdeps/mach/hurd/closedir.c: Include hurd/fd.h.
8477         * stdlib/strtol.c: If !GROUP, set END to null.  In loop, test only
8478         END, not GROUP.
8480 Fri Mar 17 12:58:37 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8482         * Makefile (subdirs): Put elf last.
8484         * sunrpc/Makefile (install-lib): Variable removed.
8485         (rpcsvc-objs): Variable removed.
8486         (extra-objs): Don't include $(rpcsvc-objs).
8487         (extra-libs): New variable, contains librpcsvc.
8488         (librpcsvc-routines): New variable.
8489         (librpcsvc-inhibit-o): New variable, contains .so.
8490         (omit-deps): Set this to $(librpcsvc-routines).
8491         ($(objpfx)rpcgen): Don't use $(libc.a).
8492         (lib, $(objpfx)librpcsvc.a): Targets removed.
8494         * o-iterator.mk, extra-lib.mk: New files.
8495         * Makerules (o-iterator): New variable.
8496         [extra-libs]: Include extra-lib.mk to generate rules for each word
8497         of $(extra-libs).
8498         * Makefile (distribute): Add extra-lib.mk, o-iterator.mk.
8500 Fri Mar 17 13:28:04 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
8502         * sysdeps/ieee754/ldbl2mpn.c (__mpn_extract_long_double):
8503         Handle 80-bit denormalized numbers correctly.
8505         * stdlib/strtod.c, stdlib/strtof.c, stdlib/strtold.c:
8506         (IMPLICIT_ONE, *_MAX_10_EXP_LOG): Macros removed; no longer needed.
8507         * stdlib/strtod.c (RETURN): Add parentheses around return value.
8508         (round_and_return): Correct handling of denormalized numbers.
8510         * stdio/fpioconst.c, stdio/fpioconst.h: Don't use
8511         LDBL_MAX_10_EXP_LOG; LAST_POW10 defines the maximal available
8512         exponent.
8514 Thu Mar 16 00:04:41 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8516         * locale/C-ctype.c: New correct data generated by drepper.
8518         * Rules: Don't use $(libc.a).
8520         Parsing of grouped numbers contributed by Ulrich Drepper.
8521         * stdlib/strtol.c (__strtol_internal): Renamed from strtol.  Take
8522         new flag arg; if nonzero, parse locale-dependent thousands
8523         grouping and interpret only the prefix that is correctly grouped.
8524         (strtol): Define this to call _strtol_internal with zero for the flag.
8525         Use a weak symbol for the definition.
8526         * stdlib/strtod.c (strtod, __strtod_internal): Likewise.
8527         Check for the exponent of the number overflowing the float format.
8528         * stdlib/stdlib.h (__strtof, __strtold): Declarations removed.
8529         (__strto{f,d,ld,l,ul,q,uq}_internal): Declare these functions.
8530         [__OPTIMIZE__]: Define inline functions calling those.
8531         * stdlib/strtold.c (STRTOF): Set to strtold, not __strtold.
8532         (strtold): Remove weak alias.
8533         * stdlib/strtof.c (STRTOF): Set to strtof, not __strtof.
8534         (strtof): Remove weak alias.
8535         * stdlib/grouping.h: New file, written by drepper.
8536         * stdlib/Makefile (distribute): Add grouping.h.
8537         * stdio/vfscanf.c: Grok %' modifier to numeric conversions.  Call
8538         __strtoX_internal with the grouping flag set iff the modifier is
8539         present.
8541 Wed Mar 15 00:40:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8543         * sysdeps/generic/memchr.c: Fix typos: limit.h -> limits.h.
8545         * mach/Machrules: Produce static deps for all object flavors.
8546         [interface-library]: Remove all these variables and rules.
8547         ($(interface-library)-routines): Define this variable.
8548         (extra-libs): Append $(interface-library) to this.
8549         * mach/Makefile (interface-library): Omit .a suffix.
8550         * hurd/Makefile: Likewise.
8552 Tue Mar 14 23:40:31 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8554         * stdio/internals.c (flushbuf): If !FLUSH_ONLY, don't skip out
8555         early if no new data in buffer after priming.
8557 Mon Mar 13 01:48:16 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8559         * Makerules (object-suffixes, libtypes): Move all these variables
8560         to Makeconfig.
8561         * Makeconfig (object-suffixes, libtypes): Moved here from Makerules.
8563         * Makerules (build-extra-lib): New canned sequence.
8565         * sysdeps/mach/hurd/euidaccess.c: Include fcntl.h.  Declare ERR;
8566         fix uses of FILE and PORT.  Remove bogus weak alias for `access'.
8568         * sysdeps/mach/hurd/dirfd.c: Include hurd/fd.h and errno.h.
8569         Add missing semicolon.
8570         * sysdeps/mach/hurd/opendir.c: Include hurd/fd.h.  Use a `struct
8571         hurd_fd *' temp var, since DIRP->__fd is a `void *'.
8572         * sysdeps/mach/hurd/readdir.c: Include hurd/fd.h.
8574         * stdlib/wcstombs.c: #if 0 out code for non-ASCII chars until the
8575         locale data format is implemented.
8577         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
8578         Pass &__sigreturn on the stack to the trampoline code, so it is
8579         not position-dependent.
8581         * stdio/printf_fp.c (NDEBUG): Define this to disable assert.
8582         Don't include <stdarg.h>.
8583         (__printf_fp): Last arg ARGS is now `const void **const';
8584         dereference ARGS[0] instead of using va_arg.
8586         * locale/setlocale.c: In LC_ALL case, initialize CATEGORY before
8587         loop to install data.
8589         * locale/loadlocale.c (_nl_category_num_items): Use _NL_ITEM_INDEX
8590         to extract number from item code.
8591         (_nl_load_locale): Close the descriptor when finished.
8593         * malloc/realloc.c (_realloc_internal): Call _malloc_internal in
8594         place of malloc.
8596         * time/tzfile.c (__tzfile_default): Initialize RULE_STDOFF to zero.
8598         * stdio/printf_fp.c (group_number): Cast *GROUPING to unsigned int
8599         to avoid warning.
8600         * sysdeps/generic/sigset.h (__SIGSETFN): Cast result of sizeof to
8601         int to avoid warning.
8603         Support building several flavors of objects and libraries.
8604         * Makerules (libtypes, object-suffixes): New variables.
8605         (libtype.*, CFLAGS-*, CPPFLAGS-*): New variables for each object
8606         suffix.
8607         (CFLAGS, CPPFLAGS): Append $(C{,CPP}FLAGS-$(suffix $@)).
8608         (%.so, %.po, %.go): New compilation rules for %.S, %.s, %.c.
8609         (close-check-inhibit-asm): Append a semicolon.
8610         (sysd-rules): Generate rules for each object suffix.
8611         (compile.S, compile.c): Always assume gcc.
8612         (OUTPUT_OPTION): Define unconditionally.
8613         (+make-deps): In generated rule, produce a dependent for each
8614         object suffix.
8615         (.SUFFIXES): Add $(object-suffixes) in place of .o.
8616         (.PRECIOUS): Make all suffix flavors precious.
8617         ($(libc.a)): Target removed.
8618         (lib): Depend on each enabled libtype.
8619         (libobjs, objects, objs): Depend on all the enabled object flavors.
8620         (lib%.a): New pattern rule.
8621         [$(build-shared)=yes] (lib%.so: lib%_pic.a): New pattern rule.
8622         (stamp-$(subdir)): Rewritten to a pattern rule for stamp.%-$(subdir)
8623         to make one for each flavor; library dep rule likewise rewritten.
8624         ($(libc.a)(__.SYMDEF)): Target replaced with one target for each
8625         flavor.
8626         (symdef.%): New pattern rule; helper for __.SYMDEF targets.
8627         (installed-libcs): New variable.
8628         (install): Depend on that instead of
8629         $(libdir)/lib$(libprefix)$(libc-name).a;
8630         that file's rule rewritten to make each enabled libtype.
8631         (install-lib.so): New variable, filters lib%.so from $(install-lib).
8632         (install-lib): Filter out lib%.so after setting install-lib.so.
8633         [$(build-shared)=yes] (install): Install $(install-lib.so).
8634         (common-mostlyclean): Remove all flavors of objects.
8635         * Makefile ($(libc.a)(__.SYMDEF)): Target removed.
8636         [$(build-shared)=yes] (lib): Depend on $(common-objpfx)libc.so.
8638 Sun Mar 12 18:21:10 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8640         * sysdeps/stub/ulimit.c: Don't include gnu-stabs.h.
8641         * sysdeps/stub/pause.c: Likewise.
8642         * sysdeps/stub/time.c: Likewise.
8644         * stdlib/mbtowc.c: #if 0 out code for non-ASCII chars until the
8645         locale data format is implemented.
8646         * stdlib/wctomb.c: Likewise.
8648         * mach/Makefile ($(objpfx)errsystems.c): Reenable this rule; the
8649         gcc bug is fixed.
8650         * mach/errsystems.c: File removed.
8652         * Makeconfig (libc.a): Variable removed.
8653         (+link): Don't use it.
8655         * configure.in (AC_ARG_ENABLE calls): Use $enableval instead of
8656         assuming `yes'.
8658         * malloc/malloc.h (_malloc_internal, _realloc_internal): Declare these.
8659         * malloc/realloc.c (_realloc_internal): Renamed from realloc;
8660         don't use __realloc_hook.
8661         (realloc): New function; call __realloc_hook ?: _realloc_internal.
8662         * malloc/malloc.c (_malloc_internal): Renamed from malloc;
8663         don't use __malloc_hook.
8664         (malloc): New function; call __malloc_hook ?: _malloc_internal.
8665         Changes from Germano Caronni <caronni@tik.ethz.ch>:
8666         (initialize): Set up _heaplimit to cover the _heapinfo table.
8667         (morecore_recursing): New static variable.
8668         (morecore): If that is set, return null immediately.
8669         When growing the info table, before getting new core from the
8670         system for it, set morecore_recursing and try moving _heapinfo
8671         with _realloc_internal.  When that fails and we get new core, set
8672         _heaplimit to cover the core for the new _heapinfo table.
8673         (register_heapinfo): New function.  Record the _heapinfo table's
8674         own blocks in that table and in the statistics variables.
8675         (initialize, _malloc_internal): Use it after allocating new table.
8677 Fri Mar 10 22:26:28 1995  Jim Meyering  (meyering@comco.com)
8679         * sysdeps/generic/memchr.c: Remove ansidecl.h and clean up for use
8680         by other packages.
8681         [LONG_MAX <= LONG_MAX_32_BITS]: Don't compile 64-bit code.
8683 Fri Mar 10 13:31:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8685         * mach/errorlib.h (errors): Use const for decl.
8687         * time/tzfile.c (uc2ul, _uc2ul): Macros removed.
8688         (decode): New inline function; decode signed 32-bit integers, and
8689         sign-extend properly when long is longer than 32 bits.
8690         (__tzfile_read): Changed all uses of uc2ul to decode.
8691         Decode the transition times properly when sizeof (time_t) > 4.
8693         * stdio/printf.h: Doc fixes.  Don't #include <stddef.h>.
8694         (printf_function): Make last arg ARGS a vector of pointers instead of a
8695         pointer to va_list.
8697 Fri Mar 10 13:46:25 1995  Ulrich Drepper  <drepper@ipd.info.uni-karlsruhe.de>
8699         * stdio/vfprintf.c [USE_IN_LIBIO] (PAD): Use return value of _IO_padn.
8700         (buffered_vfprintf): Remove line buffer when flush failed.
8702 Fri Mar 10 00:04:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8704         * time/tzfile.c (struct ttinfo): New member `isgmt'.
8705         (__tzfile_read): Read isgmt flags for each type.
8706         (__tzfile_default): When using TZDEFRULES DST rules, adjust
8707         transition times according to the isstd and isgmt flags for the
8708         types of each transition, and adjust each transition to point to
8709         type index either 0 or 1.  Reset type indices 0 and 1 to describe
8710         the user's settings.
8712 Thu Mar  9 22:29:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8714         * locale/categories.def (LC_CTYPE): Merge CLASS_EB and CLASS_EL
8715         into just CLASS.  Add standard/optional flag to all items.
8717         * locale/localeinfo.h (_NL_CURRENT_DEFINE): Fix typo.
8719         * ctype/ctype.h [__BYTE_ORDER == __LITTLE_ENDIAN] (_ISbit):
8720         Rearrange defn to satisfy compiler.
8722         * locale/localeinfo.h: Declare _nl_current.
8724         * configure.in: Use AC_CHECK_TOOL for CC, AR, RANLIB.  Accept args
8725         --enable-shared, --enable-profile, --enable-omitfp; pass settings
8726         through to config.make.
8727         * config.make.in (build-shared, build-profile, build-omitfp): New
8728         config vars.
8730         * elf/elf.h (STN_UNDEF): Renamed to SHN_UNDEF (typo).
8731         (DT_NUM): New macro.
8733         * locale/nl_langinfo.c: Include errno.h and stddef.h.  Fix typos.
8735         * locale/lc-ctype.c (_nl_postload_ctype): Fix macro insanity.
8737         * locale/loadlocale.c (_nl_load_locale) [! MAP_COPY]: Define
8738         MAP_COPY to MAP_PRIVATE.
8740 Thu Mar  9 17:16:53 1995  Brendan Kehoe  (brendan@zen.org)
8742         * sysdeps/alpha/divrem.m4: Undefine `ret' to avoid the definition
8743         that's used inside the alpha sysdep.h.
8745         * sysdeps/alpha/__longjmp.c (__longjmp): Remove obsolete __NORETURN
8746         keyword.
8747         * sysdeps/alpha/__math.h (__copysign): Remove obsolete __CONSTVALUE.
8749         * configure.in: Match `osf*', not `osf1*'.
8750         * configure: Likewise.
8751         * sysdeps/unix/bsd/osf: Renamed from `sysdeps/unix/bsd/osf1'.
8753 Wed Mar  8 13:38:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8755         * posix/glob/configure.bat: Fixes from DJ.
8757         * time/backward, time/europe, time/northamerica, time/pacificnew,
8758         time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
8759         time/ialloc.c: Code and data updated from ADO's 95b.
8760         * time/emkdir.c: File removed.
8761         * time/Makefile (distribute, extra-objs, zic): Omit it.
8763         * time/localtime.c: Deansideclized.  Never #define __tzname et al
8764         to non-__ names.
8766         * locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
8767         instead of short int *.
8768         * ctype/ctype-info.c: Likewise.
8769         * ctype/ctype.h: Likewise.
8771         * locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
8772         of EB and EL versions.
8774 Mon Mar  6 12:34:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8776         * ctype/ctype.h (_ISbit): New macro, defined dependent on byte order.
8777         (_IS* enum): Use _ISbit to produce values.
8779 Sun Mar  5 19:40:13 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8781         * locale/localeinfo.h: Rewritten for new locale system, using
8782         locale data files and with <langinfo.h> interface.
8783         * locale/setlocale.c: Rewritten to use locale data files.
8784         * langinfo.h: New file.
8785         * locale/langinfo.h: New file.
8786         * locale/nl_langinfo.c: New file.
8787         * locale/loadlocale.c: New file.
8788         * locale/lc-ctype.c: New file.
8789         * locale/lc-messages.c: New file.
8790         * locale/lc-monetary.c: New file.
8791         * locale/lc-numeric.c: New file.
8792         * locale/lc-time.c: New file.
8793         * locale/categories.def: New file.
8794         * locale/Makefile (headers): Remove localeinfo.h.
8795         (distribute): New variable; put localeinfo.h here, and categories.def.
8796         (routines): Add loadlocale.
8797         (categories): New variable.
8798         (aux): Use that to get C-category and lc-category.
8799         * ctype/ctype.h (_IS*): Use independent bits for all but _ISalnum.
8800         * ctype/ctype-info.c: For initial tables, use
8801         _nl_C_LC_CTYPE_{class,toupper,tolower} constant tables defined in
8802         locale/C-ctype.c.
8803         * locale/C-ctype.c, locale/C-messages.c: New files.
8804         * locale/C-monetary.c, locale/C-numeric.c, locale/C-time.c:
8805         Default "C" locale data updated for new locale system.
8806         * locale/C-collate.c: File removed.
8807         * locale/C-ctype_ct.c: File removed.
8808         * locale/C-ctype_mb.c: File removed.
8809         * locale/C-response.c: File removed.
8810         * locale/localeconv.c: Use _NL_CURRENT macro to access locale data.
8811         * stdio/printf_fp.c, stdio/vfprintf.c, stdio/vfscanf.c,
8812           stdlib/strtod.c, time/asctime.c, time/strftime.c:
8813         Include ../locale/localeinfo.h and use _NL_CURRENT macro to access
8814         locale data.
8815         * time/localtime.c: Don't include <localeinfo.h>.
8816         * time/tzset.c: Don't use locale items for default TZ value or
8817         "GMT" string (use "UTC").
8819         * stdio/vfprintf.c [USE_IN_LIBIO] (PAD): Only call the function if
8820         WIDTH>0; update DONE.
8822         * malloc/malloc.c (morecore): Fix last change to calculate by
8823         blocks instead of bytes.
8825 Fri Mar  3 12:24:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8827         * sysdeps/generic/sys/mman.h (__mmap, __munmap): Declare these.
8828         * sysdeps/unix/sysv/irix4/sys/mman.h: Likewise.
8829         * sysdeps/unix/bsd/ultrix4/sys/mman.h: Likewise.
8830         * sysdeps/unix/bsd/osf1/sys/mman.h: Likewise.
8831         * sysdeps/unix/bsd/sun/sunos4/sys/mman.h: Likewise.
8832         * sysdeps/stub/munmap.c (munmap): Rename to __munmap, add weak
8833         alias munmap.
8834         * sysdeps/unix/mman/munmap.S: Likewise.
8835         * sysdeps/mach/munmap.c: Likewise.
8836         * sysdeps/mach/hurd/mmap.c (mmap): Rename to __mmap, add weak
8837         alias mmap.
8838         * sysdeps/unix/mman/mmap.S: Likewise.
8839         * sysdeps/unix/bsd/sun/sunos4/mmap.c: Likewise.
8840         * sysdeps/stub/mmap.c: Likewise.
8842         * sysdeps/unix/bsd/setsid.c: Use __getpgid instead of __getpgrp.
8844         * sysdeps/unix/dirfd.c: #undef dirfd before function defn.
8846 Thu Mar  2 12:15:24 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8848         * misc/search.h: Add missing semicolon.
8850         * sysdeps/unix/dirfd.c: Fix typo.
8852         * sysdeps/generic/sys/mman.h (mmap): Use __off_t instead of off_t
8853         in decl.
8855         * stdio/vfscanf.c (%c): In no-assign case, fix loop to decrement
8856         WIDTH before test.
8858 Wed Mar  1 00:57:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8860         * stdlib/strtod.c: Fixes from drepper.
8861         [IMPLICIT_ONE]: New macro, one for IEEE754 formats.
8862         * stdlib/strtold.c [IMPLICIT_ONE]: New macro, 0.
8863         * stdlib/strtof.c [IMPLICIT_ONE]: New macro, 1.
8865         * stdio/vfprintf.c: Correctly notice Z modifier.
8867         * misc/search.h: New file.
8868         * misc/Makefile (headers): Add search.h.
8869         * misc/insremque.c: Include search.h.
8870         (struct qelem): Type removed.
8872 Mon Feb 27 07:00:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8874         * elf/libelf.h: New file.
8875         * elf/elf_hash.c: New file.
8877 Sun Feb 26 15:51:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8879         Changes from Germano Caronni <caronni@tik.ethz.ch>:
8880         * malloc/malloc.c (morecore): Account in NEWSIZE for the
8881         malloc_info structures for each new block.
8883 Sat Feb 25 02:17:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8885         * sysdeps/mach/hurd/kill.c: When the process has no message port
8886         registered and we have its task port, translate a few signals to
8887         task_suspend/task_resume/task_terminate.
8889 Fri Feb 24 14:40:48 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8891         * io/Makefile (routines): Add euidaccess.
8892         * sysdeps/mach/hurd/euidaccess.c: New file.
8893         * sysdeps/stub/euidaccess.c: New file.
8894         * posix/unistd.h [__USE_GNU] (euidaccess): Declare it.
8896         * dirent/Makefile (routines): Add dirfd.
8897         * sysdeps/stub/dirfd.c: New file.
8898         * sysdeps/unix/dirfd.c: New file.
8899         * sysdeps/unix/dirstream.h (_DIR_dirfd): New macro.
8900         * dirent/dirent.h (dirfd): Declare new function.  Define as macro
8901         _DIR_dirfd if that is defined.
8902         * sysdeps/mach/hurd/dirstream.h (DIR): Replace `__port' member
8903         with `void *__fd'.
8904         * sysdeps/mach/hurd/opendir.c: Use DIRP->__fd instead of DIRP->__port.
8905         Open the file with `open'; set FD_CLOEXEC on the fd.
8906         * sysdeps/mach/hurd/closedir.c: Likewise.
8907         * sysdeps/mach/hurd/readdir.c: Likewise.
8908         * sysdeps/mach/hurd/dirfd.c: New file.
8910         * posix/Makefile (glob/configure): Do cvs commit if there is a CVS
8911         directory.
8912         (glob/ChangeLog): Likewise.
8914         * locale/locale.h (LC_*): Use small integers instead of bit masks.
8916         * stdio/bug4.c: Put temporary files in /tmp.
8917         * stdio/bug3.c: Likewise.
8918         * stdio/bug5.c: Likewise.
8919         * stdio/test-fseek.c: Likewise.
8920         * stdio/test-popen.c: Likewise.
8922 Wed Feb 22 00:44:41 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8924         * posix/glob/configure.in: Put AC_ISC_POSIX before AC_CONST.
8926         * libc-symbols.h (weak_symbol): New macro.
8928         * hurd/hurdsig.c (_hurd_internal_post_signal): Ignore preempter
8929         elts with null handlers.
8931         * sysdeps/mach/hurd/i386/sigreturn.c: Restore the FPU state.
8933 Tue Feb 21 21:53:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8935         * stdlib/random.c (__srandom): Change algorithm used to populate
8936         the state array.
8937         (randtbl): Recomputed with new algorithm.
8939         * sysdeps/sparc/Makefile [subdir=crypt] (crypt): Reset only if set
8940         to original value of `crypt'.
8941         * sysdeps/unix/sysv/sysv4/solaris2/sparc/Makefile [subdir=crypt]
8942         (crypt): New variable, set to crypt.solar.
8944 Tue Feb 21 11:50:37 1995  Brendan Kehoe  (brendan@zen.org)
8946         * sysdeps/sparc/Makefile (routines): Reference `dotmul', not `mul'.
8948         * config.h.in: Put comment around ^L to pacify Solaris as here too.
8950 Tue Feb 21 00:10:50 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8952         * string/Makefile (distribute): Add pagecopy.h.
8953         * sysdeps/mach/pagecopy.h: New file.
8954         * sysdeps/generic/pagecopy.h: New file.
8955         * sysdeps/generic/memcpy.c: Include pagecopy.h; call
8956         PAGE_COPY_FWD_MAYBE first when word aligned.
8957         * sysdeps/generic/memmove.c: Likewise.
8959         * misc/bsd-compat.c (longjmp, setjmp): Functions removed.
8960         (getpgrp): Call __getpgid instead of __getpgrp.
8962         * Makefile (subdirs): Add elf first.
8963         * elf/Makefile: New file.
8964         * elf/elf.h: New file.
8966         * sysdeps/unix/start.c (errno): Only define if it's not #define'd
8967         as a macro.
8968         [! NO_UNDERSCORES]: Define `start' as a weak alias, not a symbol
8969         indirection.
8971         * csu/Makefile (crtstuff): New variable consolidates crti, crtn;
8972         add crti_s, crtn_s.
8973         (install-lib, extra-objs, generated-, omit-deps): Use that.
8974         (initfini): New canned sequence, broken out of crt[in].s rule.
8975         (crt[in].s rule): Use it.
8976         (crt[in]_s.s): New rule.
8977         * csu/initfini.c (GLOBAL): New macro; define it to empty if undefined.
8978         (_init, _fini): Use GLOBAL as storage class.
8979         Add self reference to avoid GCC optimizing out the functions.
8981         * Makefile (headers): Remove $(stddef.h).
8982         * Makeconfig (stddef.h): Variable removed; now require gcc version
8983         >= 2.2.
8984         * stddef.h: File removed.
8986 Mon Feb 20 19:42:31 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8988         * sysdeps/unix/bsd/ultrix4/mips/start.S: Remove `__environ'
8989         definition.
8990         * sysdeps/unix/bsd/osf1/alpha/start.S: Likewise.
8992         * stdlib/strtod.c: Allow the string to start with a decimal point
8993         without a leading zero.
8995 Mon Feb 20 04:04:57 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
8997         * Makefile (subdirs): Put csu first.
8999         * sysdeps/mach/hurd/start.c: Include unistd.h for __environ decl.
9001         * Makeconfig [elf=yes] (+preinit, +postinit): New variables, set
9002         to crt[in].o.
9003         (csu-objpfx): New variable.
9004         (+link): Use it to find start.o and $(+preinit), $(+postinit).
9006         * Rules (subdir_lib, all): Depend on objs.
9008         * config.h.in [HAVE_ELF || HAVE_GNU_LD]: Define HAVE_WEAK_SYMBOLS.
9010         * stdlib/strtod.c (PASTE, PASTE1): New helper macros; use these in
9011         access to float.h macros.
9013         * misc/efgcvt.c: New file.
9014         * misc/Makefile (routines): Add efgcvt.
9016 Sun Feb 19 20:10:43 1995  Brendan Kehoe  <brendan@zen.org>
9018         * sysdeps/sparc/mul.S: Renamed to `dotmul.S'.
9019         * sysdeps/sparc/Makefile (routines): Reference `dotmul.S', not `mul.S',
9020         to avoid a misreference that would override sysdeps/generic/mul.c.
9021         * sysdeps/sparc/Dist: Likewise.
9023 Sun Feb 19 17:46:13 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
9025         * posix/Makefile (aux): Add environ.
9026         * posix/environ.c: New file.
9027         * sysdeps/unix/sparc/start.c: Remove __environ definition.
9028         * sysdeps/unix/start.c: Likewise.
9029         * sysdeps/unix/sysv/irix4/start.c: Likewise.
9030         * sysdeps/mach/hurd/start.c: Likewise.
9031         * sysdeps/mach/start.c: Likewise.
9032         * sysdeps/stub/start.c: Likewise.
9034         * sysdeps/unix/make_errlist.c: In produced program, test
9035         HAVE_WEAK_SYMBOLS instead of HAVE_GNU_LD.
9036         * sysdeps/unix/sysv/sysv4/dup2.c: Fix #include of renamed file.
9037         Remove extra weak alias.
9039         * sysdeps/unix/sysv/sysv4/sigaltstack.S: Fix unsquashed file name
9040         in #include.
9042         * libc-symbols.h: Put comment around ^L to pacify Solaris as.
9044         * sysdeps/posix/Makefile (cded-objdir-includes): New variable
9045         replaced cded-objdir-CPPFLAGS; transform $(+includes) instead of
9046         $(CPPFLAGS).
9047         (mk-stdiolim): Use it instead.
9049 Fri Feb 17 12:16:27 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
9051         * mach/mach_init.c (__vm_page_size): Make it initialized.  It does
9052         not work to make a weak alias to a bss symbol.
9054         * stdio/Makefile (distribute): Remove mpn-copy.mk; add gen-mpn-copy.
9055         (tests): Add test-fwrite.
9056         * stdio/test-fwrite.c: New file.
9058         * stdlib/stdlib.h [__USE_GNU]: Declare strtof, strtold, __strtof,
9059         __strtold.
9061         * Makefile (autoconf-it): New canned sequence.  Do cvs commit if
9062         there is a CVS directory.
9063         (configure, %/configure): Use $(autoconf-it) for cmds.
9064         * Make-dist: Likewise.
9065         * sysdeps/mach/hurd/Makefile (errlist.c, errnos.h): Do cvs commit
9066         if there is a CVS directory.
9067         * sysdeps/sparc/Makefile (divrem output): Likewise.
9068         * sysdeps/alpha/Makefile (divrem output): Likewise.
9069         * Makerules ($(gpl2lgpl)): Likewise.
9071         * Makerules (rule to install lib%.a from $(install-lib)): Fix
9072         patsubst to elide ranlib for $(non-lib.a).
9074         * stdio/tst-printf.c: Enable FP tests.  Add some new tests from rfg.
9076 Thu Feb 16 04:06:06 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
9078         * sysdeps/mach/hurd/mig-reply.c: Add weak aliases to non-__ names.
9079         * mach/mig-dealloc.c: Add weak alias mig_deallocate.
9081 Wed Feb 15 13:34:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9083         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Take new arg
9084         DEALLOC_REFPORT; deallocate the refport after use only if it
9085         evaluates to nonzero.
9086         * sysdeps/mach/hurd/kill.c: Pass DEALLOC_REFPORT arg of one.
9087         * hurd/hurdkill.c: Pass DEALLOC_REFPORT arg of zero.
9089         * hurd/hurdsig.c (abort_rpcs): Take new arg int *STATE_CHANGE; set
9090         *STATE_CHANGE to indicate whether or not we changed *STATE and it
9091         should be committed to the thread.
9092         (abort_all_rpcs): Take new arg LIVE; if nonzero and abort_rpcs changes
9093         state for a thread, do thread_set_state on that thread.  Don't use
9094         SS->intr_port for collecting reply ports, it is not safe to
9095         clobber that when suspending; instead, alloca a temporary array.
9096         (_hurd_internal_post_signal): Pass LIVE flag to abort_all_rpcs:
9097         zero when dying, one when suspending.  Pass new arg to abort_rpcs.
9099         * sysdeps/mach/hurd/stdio_init.c: Don't lock the file descriptor;
9100         HURD_FD_PORT_USE will.  Don't use critical sections around
9101         HURD_FD_PORT_USE invocations.
9103         * sysdeps/mach/hurd/stdio_init.c: Don't make pipes/FIFOs unbuffered.
9104         * sysdeps/posix/stdio_init.c: Likewise.
9106 Tue Feb 14 03:01:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9108         * hurd/hurd/fd.h (_hurd_fd_get): Don't do critical section
9109         locking; don't leave the descriptor locked on return.
9110         (HURD_FD_PORT_USE): Don't expect _hurd_fd_get to return the fd locked.
9111         Use a critical section around locking the descriptor.
9112         Check for an empty descriptor and return EBADF.
9113         * sysdeps/mach/hurd/dup2.c: Likewise.
9114         * sysdeps/mach/hurd/fcntl.c: Likewise.
9115         Use HURD_FD_PORT_USE macro for RPCs.
9116         * sysdeps/mach/hurd/sysd-stdio.c: Don't lock the descriptor before
9117         using HURD_FD_PORT_USE.
9118         * sysdeps/mach/hurd/defs.c (init_stdio): Don't expect _hurd_fd_get
9119         to lock the descriptor.
9120         * sysdeps/mach/hurd/stdio_init.c: Use critical sections while
9121         locking the descriptor.
9122         * sysdeps/mach/hurd/fdopen.c: Likewise.
9123         * hurd/fd-close.c: Likewise.
9124         Don't expect the descriptor to be locked on entry.
9125         Check for empty descriptor and return EBADF.
9127         Factor ctty RPC code for SIGTTIN/SIGTTOU generation out into
9128         new functions _hurd_ctty_input and _hurd_ctty_output, each
9129         called with (io_t port, io_t ctty, error_t (*rpc) (io_t)).
9130         * hurd/ctty-input.c: New file.
9131         * hurd/ctty-output.c: New file.
9132         * hurd/Makefile (dtable): Add ctty-input and ctty-output.
9133         * hurd/fd-read.c: Use _hurd_ctty_input.
9134         * hurd/fd-write.c: Use _hurd_ctty_output.
9135         * sysdeps/mach/hurd/ioctl.c: Likewise.
9136         * hurd/hurd/fd.h (_hurd_ctty_input, _hurd_ctty_output): Declare them.
9138 Mon Feb 13 11:36:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9140         * stdio/vfscanf.c (%e, %f, %g): Use strtod, __strtold, or __strtof
9141         as appropriate to the type.
9143         * sysdeps/ieee754/huge_val.h (__huge_val_t): New macro to avoid
9144         repeating the union.
9145         (HUGE_VAL, __huge_val): Use it.
9146         [__USE_GNU] (HUGE_VALf, HUGE_VALl): New macros, along with
9147         analogous macros to HUGE_VAL's: __huge_val[fl]_t, __HUGE_VAL[fl]_bytes.
9148         * stdlib/strtold.c (FLOAT_HUGE_VAL): Define this to HUGE_VALl.
9149         (STRTOF): Set to __strtold; define strtold as weak alias.
9150         * stdlib/strtof.c (FLOAT_HUGE_VAL): Define this to HUGE_VALf.
9151         (STRTOF): Set to __strtof; define strtof as weak alias.
9153         * sysdeps/ieee754/ieee754.h (union ieee754_float): New type.
9154         (IEEE754_FLOAT_BIAS): New macro.
9156         * sysdeps/ieee754/mpn2ldbl.c: Fix typos.
9158         * stdlib/testmb.c: Add tests from rfg for using normal chars as
9159         multibyte chars.
9161         * hurd/hurdmalloc.c (malloc_init): Add self reference to avoid not
9162         only the `defined but not used' warning, but also to avoid GCC
9163         optimizing out the entire function (!).
9165         * stdlib/wctomb.c: Include ctype.h.
9167         * Makerules (install-lib-non.a): Don't include $(non-lib.a).
9169         * hurd/hurdmalloc.c: Include string.h; #define bcopy using memcpy.
9171 Sat Feb 11 04:05:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9173         * stdio/printf_fp.c: Include "fpioconst.h".
9174         (_tens_p): Table moved to fpioconst.c, renamed to _fpioconst_pow10.
9175         (__printf_fp): All references changed.
9176         Don't bother computing THOUSANDS_SEP if GROUPING is empty.
9177         (group_number): Use memmove instead of memcpy, since operands overlap.
9178         * stdio/fpioconst.c: New file, tables broken out of stdio/printf_fp.c.
9179         * stdio/fpioconst.h: New file, header declaring the table data.
9180         * stdio/Makefile (aux): Add fpioconst.
9181         (distribute): Add fpioconst.h.
9182         * stdlib/strtod.c: Complete rewrite from drepper.
9183         * stdlib/strtof.c: New file.
9184         * stdlib/strtold.c: New file.
9185         * stdlib/Makefile (routines): Add strtof, strtold.
9186         * stdio/Makefile (routines): Add mpn2flt, mpn2dbl, mpn2ldbl.
9187         * sysdeps/stub/mpn2flt.c: New file.
9188         * sysdeps/stub/mpn2dbl.c: New file.
9189         * sysdeps/stub/mpn2ldbl.c: New file.
9190         * sysdeps/ieee754/mpn2flt.c: New file.
9191         * sysdeps/ieee754/mpn2dbl.c: New file.
9192         * sysdeps/ieee754/mpn2ldbl.c: New file.
9194         * Makerules (install-lib.a): Don't filter out $(non-lib.a).
9195         ($(install-lib.a) in $(libdir) rule): Elide ranlib command when $@
9196         appears in $(non-lib.a).
9198 Fri Feb 10 17:20:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9200         * stdlib/wctomb.c: A normal ASCII character translates to itself.
9201         * stdlib/mbtowc.c: Likewise.
9203 Thu Feb  9 03:55:55 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9205         * setjmp/setjmp.h (longjmp, _longjmp, __longjmp, siglongjmp):
9206         Remove `const' from prototypes.
9207         * sysdeps/m68k/__longjmp.c: Likewise.
9208         * setjmp/longjmp.c: Likewise.
9209         * sysdeps/i386/__longjmp.c: Likewise.
9211         * sysdeps/posix/tempname.c: Increment *IDX at beginning of loop,
9212         so when we return a name, it is incremented past the value that
9213         produces that same name.
9215         * stdio/fgets.c (fgets): Change `size_t' to `int' in prototype.  Sigh.
9216         * stdio/stdio.h (fgets): Likewise.
9218         * stdio/vfprintf.c (printf_unknown): Print ' for INFO->group flag.
9220         * hurd/fd-write.c: Don't clobber ERR with the msg_sig_post call
9221         when it's EBACKGROUND; we need to notice that it is EBACKGROUND
9222         and retry the RPC.
9223         * hurd/fd-read.c: Likewise.
9225 Wed Feb  8 05:01:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9227         * sysdeps/mach/sysdep.h (FATAL_PREPARE_INCLUDE): New macro, set to
9228         <mach/mig_support.h>.
9229         * assert/assert-perr.c [FATAL_PREPARE_INCLUDE]: Include it.
9230         * assert/assert.c: Likewise.
9231         * sysdeps/posix/libc_fatal.c: Likewise.
9233 Tue Feb  7 12:17:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9235         * stdio/stdio.h [__STRICT_ANSI__] (stdin, stdout, stderr): Define
9236         as macros, to satisfy ANSI pedants.
9238         * stdio/internals.c (flushbuf): When there is no new data after
9239         priming the stream, return without writing out the buffer.
9240         * stdio/Makefile (tests): Add bug7.
9241         * stdio/bug7.c: New file.
9243         * io/sys/stat.h (S_IFIFO, S_IFLNK, S_IFSOCK, S_ISFIFO, S_ISLNK,
9244         S_ISSOCK): Define only if the corresponding underlying __S_IF* macro
9245         is defined.
9247         * stdio/getdelim.c: Decrement COPY after getting a char from __fillbf.
9249         * stdio/Makefile (tests): Add errnobug.
9250         * stdio/errnobug.c: New file.
9252         * mach/mig_strncpy.c: Include string.h.
9254         * sysdeps/mach/sysdep.h: Don't #include <mach/mig_support.h>.  Its
9255         inlines cause trouble for files defining global register variables.
9257         * stdio/vfprintf.c: Use _strerror_internal for %m.
9259         * sysdeps/ieee754/dbl2mpn.c: Fixes from drepper for 64-bit limbs.
9261         * stdio/printf.h (struct printf_info): New member `group', for %' flag.
9262         * stdio/printf-prs.c (parse_printf_format): Grok %' flag and set flag.
9263         * stdio/vfprintf.c (group_number): New function.
9264         (vfprintf): Support %' flag for integer formats, by calling
9265         group_number after formatting the number in WORK.
9266         * stdio/printf_fp.c (guess_grouping, group_number): New functions.
9267         (__printf_fp): Implement `group' flag using them.
9269         * Makefile (include sysd-dirs): Protect with ifndef avoid-generated.
9270         (parent-clean): Remove sysd-rules, not sysdirs.
9271         (distclean): Pass avoid-generated=yes to submake.
9272         (distclean-1): Remove $(sysdep-$(distclean-1)).
9274         * Makerules (objects, objs): Depend on $(extra-objs) too.
9275         (include sysd-Makefile): Protect with ifndef avoid-generated.
9277         * Makeconfig (+defines, +gnu-stabs, gnu-as): Variables removed.
9278         (CPPFLAGS): Use $(defines) in place of $(+defines).
9279         Replace -D_LIBC with -include $(..)libc-symbols.h.
9281         * stdio/freopen.c: Set seen bit before calling fclose.
9283 Mon Feb  6 18:34:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9285         * sysdeps/mach/hurd/setpriority.c: Keep track of numbers of
9286         successes and each kind of failure.  Return EPERM or EACCES only
9287         if every task failed that way.
9289         * sysdeps/mach/hurd/getpriority.c: Handle out of band buffers
9290         correctly.
9292         * sysdeps/mach/hurd/ptrace.c (PTRACE_ATTACH, PTRACE_DETACH): Stop
9293         or resume the process after frobbing.
9295         * hurd/hurdsig.c: Use spin lock operations on sigstate locks
9296         throughout.
9297         (_hurd_thread_sigstate): Don't lock the sigstate lock.
9298         (_hurd_internal_post_signal): New subfunction `mark_pending'; replace
9299         repeated sequences with calls to it.  Don't expect the sigstate
9300         lock to be held on entry; lock it just before examining sigaction.
9301         In handler case, check SS->critical_section after calling
9302         abort_rpcs; if set, mark the signal pending and resume the thread.
9303         * hurd/hurd/signal.h (_hurd_self_sigstate_unlocked): Function removed.
9304         (_hurd_self_sigstate): Don't lock the sigstate lock.
9305         (HURD_EINTR_RPC): Call _hurd_self_sigstate instead of
9306         _hurd_self_sigstate_unlocked.
9307         * hurd/msgportdemux.c: Don't expect _hurd_self_sigstate to lock
9308         the sigstate lock.
9309         * hurd/hurdexec.c: Use spin lock operations on sigstate lock.
9310         Don't expect _hurd_self_sigstate to lock it.  Fix critical section
9311         locking.
9312         * hurd/hurd-raise.c: Likewise.
9313         * sysdeps/mach/hurd/sigsuspend.c: Likewise.
9314         * sysdeps/mach/hurd/sigpending.c: Likewise.
9315         * sysdeps/mach/hurd/sigaltstack.c: Likewise.
9316         * sysdeps/mach/hurd/sigaction.c: Likewise.
9317         * sysdeps/mach/hurd/sigprocmask.c: Likewise.
9318         * hurd/fd-write.c: Likewise.
9319         * hurd/fd-read.c: Likewise.
9320         * sysdeps/mach/hurd/ioctl.c: Likewise.
9321         * sysdeps/mach/hurd/fork.c: Likewise.
9322         * sysdeps/mach/hurd/i386/sigreturn.c: Likewise.
9323         * sysdeps/mach/hurd/mips/sigreturn.c: Likewise.
9324         * sysdeps/mach/hurd/alpha/sigreturn.c: Likewise.
9325         * hurd/hurdmsg.c (get_int): Likewise.
9327         * stdio/vfprintf.c: Include stddef.h.  Fix typos in libio code.
9329         * stdio/vfprintf.c (__pad): Function renamed to __printf_pad, made
9330         global.
9331         (PAD): Caller changed.
9332         * stdio/printf_fp.c (__pad): Function removed.
9333         (PAD): Use __printf_pad instead.
9335 Sun Feb  5 17:59:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9337         Merged new FP printer by Ulrich Drepper.
9338         * stdio/printf_fp.c: Rewrite by drepper.
9339         * stdio/Makefile (routines): Add ldbl2mpn.
9340         * sysdeps/ieee754/ieee754.h (union ieee754_double): Add `ieee_nan'
9341         member.
9342         (union ieee854_long_double): New type, from drepper.
9343         (IEEE754_DOUBLE_BIAS, IEEE854_LONG_DOUBLE_BIAS): New macros.
9344         * sysdeps/ieee754/ldbl2mpn.c: New file, by drepper.
9345         * sysdeps/stub/ldbl2mpn.c: New file.
9346         * math/Makefile (routines): Add isinfl and isnanl.
9347         * sysdeps/ieee754/isinfl.c: New file.
9348         * sysdeps/stub/isinfl.c: New file.
9349         * sysdeps/ieee754/isnanl.c: New file.
9350         * sysdeps/stub/isnanl.c: New file.
9352         * malloc/malloc.c (__malloc_extra_blocks): New variable.
9353         (malloc): When getting more core, get __malloc_extra_blocks extra;
9354         put the new block at the end of the free list and let the next loop
9355         iteration use the initial portion of it.
9356         * malloc/free.c (_free_internal): Account for twice
9357         __malloc_extra_blocks in deciding if we have so much extra memory
9358         we should return it to the system.
9359         * malloc/malloc.h (__malloc_extra_blocks): Declare it.
9360         * posix/glob.c (prefix_array, glob_pattern_p): Remove gratuitous
9361         const in parameter decl.
9363         * sysdeps/unix/mips/sysdep.h (ENTRY): Add `.ent' directive.
9365 Fri Feb  3 18:15:52 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9367         * munch.awk (EXTERNS): Print decls using __P instead of EXFUN.
9369         * sysdeps/mips/setjmp_aux.c: Use ENV[0].__jmpbuf[0].
9370         * sysdeps/mips/bsd-_setjmp.S: Use `li' insn instead of `move'.
9371         * sysdeps/mips/bsd-setjmp.S: Likewise.
9372         * sysdeps/mips/__longjmp.c: Remove obsolete __NORETURN keyword.
9373         * sysdeps/mach/hurd/mips/trampoline.c (_hurd_setup_sighandler):
9374         Use `long int' for sigcode.  Use explicit register numbers instead
9375         of names.
9376         (_hurdsig_rcv_interrupted_p): Use _hurdsig_catch_fault.
9377         * sysdeps/mach/hurd/mips/exc2signal.c: Use `long int' for sigcode.
9379 Thu Feb  2 20:06:45 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9381         * hurd/hurdmalloc.c: Remove bogus bcopy decl.
9383         * mach/mig_strncpy.c: Add missing `const' in prototype.  Rewritten
9384         using __stpncpy.
9386         * io/ftw.c (ftw, ftw_dir): Treat ENOENT from stat like EACCES.
9388         * stdio/vfprintf.c: Set PREC to zero for %. without following digit.
9390 Tue Jan 31 13:49:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9392         * mach/mig_strncpy.c: Include mach.h instead of string.h.  Use
9393         vm_size_t instead of size_t for arg and return types.
9395         * mach/mach_init.c: Don't declare __mig_init; mach/mig_support.h
9396         already does.
9398 Mon Jan 30 00:33:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9400         * set-hooks.h (RUN_HOOK): Dereference PTR properly.
9402         * configure.in (friendly stddef.h check): Write override defn for
9403         `stddef.h' Make variable.
9404         (AC_LINK_FILES): Use `echo ...` to avoid " " appearing nonempty.
9406         * configure.in (host_os=sysv4*|solaris2*): Set elf=yes.
9408         * Rules ($(objpfx)dummy.o): Write an empty function, not just an
9409         empty file.
9411         * sysdeps/sparc/Makefile (sysdep-realclean): New variable.
9413 Sat Jan 28 03:38:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9415         * Makefile (distribute): Remove gnu-stabs.h; add libc-symbols.h.
9417         * sysdeps/mach/sysdep.h [ASSEMBLER]: Protect include of
9418         mach/machine/syscall_sw.h with this.
9420 Fri Jan 27 18:33:20 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9422         * hurd/hurd/signal.h: Include <hurd/msg.h>, and <spin-lock.h>
9423         instead of <lock-intern.h>.
9424         (struct hurd_sigstate): Member `lock' changed to a `spin_lock_t'.
9425         (_hurd_critical_section_lock): Use spin lock operators.
9426         Don't hold the sigstate lock, unlock it after setting the flag.
9427         (_hurd_critical_section_unlock): Take the sigstate lock
9428         to clear the flag; while holding it, check pending signals.  After
9429         unlocking, sig_post ourselves if there were pending signals.
9431         * hurd/catch-exc.c (_S_catch_exception_raise): Don't take the
9432         sigstate lock.  If it is locked, clear SS->critical_section and
9433         SS->context, and unlock it.
9435         * sysdeps/mach/sysdep.h (EXT, LEXT): New macros.
9437         * set-init.c (__libc_init) [HAVE_ELF]: Run _init and atexit (_fini).
9438         * munch-tmpl.c: Likewise.
9440         * mach/Makefile (routines): Don't filter out syscall_% from
9441         $(mach-syscalls).
9443 Fri Jan 27 17:53:49 1995  Jim Meyering  (meyering@comco.com)
9445         * posix/fnmatch.c: Declare errno if it's not defined.
9446         That's simpler than testing #if !defined(__GNU_LIBRARY__)
9447         && !defined(STDC_HEADERS).
9449 Fri Jan 27 15:40:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9451         * csu/Makefile: New file.
9452         * csu/initfini.c: New file.
9453         * Makefile (+other_dirs): Add csu.
9454         (+init): Variable renamed to libc-init.  All references changed.
9455         (aux): Remove start.
9456         (install-lib): Variable removed.
9457         (crt0.o, Mcrt1.o  crt1.o): Targets removed.
9459         * mach/Machrules (static deps of RPC_*.o): Add $(..)libc-symbols.h
9460         and $(objpfx)config.h.
9461         (static deps of RPC alias *.o): Removed.
9463         * sysdeps/unix/sysv/sysv4/solaris2/sparc/sysdep.h [ASSEMBLER]:
9464         Protect macros with this.
9465         * sysdeps/unix/bsd/osf1/alpha/sysdep.h: Likewise.
9466         * sysdeps/unix/bsd/sequent/i386/sysdep.h: Likewise.
9467         * sysdeps/unix/bsd/vax/sysdep.h: Likewise.
9468         * sysdeps/unix/bsd/sun/m68k/sysdep.h: Likewise.
9469         * sysdeps/unix/bsd/sony/newsos/m68k/sysdep.h: Likewise.
9470         * sysdeps/unix/mips/sysdep.h: Likewise.
9472 Thu Jan 26 00:02:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9474         * Makerules (compile.[Sc]): Match gcc in $(CC) better.
9475         (BUILD_CFLAGS): Instead of $(config-defines), use -include config.h.
9477         * hurd/intr-rpc.awk: Emit weak alias.
9479         * sysdeps/unix/bsd/sun/sunos4/wait4.c: Call getpgrp instead of
9480         __getpgrp.
9482         * sysdeps/unix/bsd/hp/m68k/sysdep.h [ASSEMBLER]: Protect macros with
9483         this.
9484         * sysdeps/unix/i386/sysdep.h: Likewise.
9485         * sysdeps/unix/sparc/sysdep.h: Likewise.
9487         * io/ftw.c: Avoid `ret' as variable name.
9488         * posix/glob.c: Likewise.
9490         * ctype/ctype.h (_ISalpha): Define as its own bit.
9491         * locale/C-ctype_ct.c (__ctype_b_C): Set _ISalpha bit in all letters.
9493         * stdlib/exit.c [HAVE_GNU_LD]: Protect #include "set-hooks.h" and
9494         DEFINE_HOOK with this.
9496 Wed Jan 25 00:45:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9498         * hurd/hurdinit.c: Use DECLARE_HOOK instead of `extern DEFINE_HOOK'.
9499         * mach/spin-solid.c (spin_lock_solid): Define as weak alias to __name.
9500         * mach/shortcut.awk: Emit weak alias.
9501         * mach/spin-lock.c: Add weak aliases for all spin-lock.h functions.
9502         * mach/mach_init.c (mach_init, vm_page_size): Defin weak aliases for
9503         __ names.
9504         * mach/Makefile (lock): Remove spin-syms.
9505         (routines): Remove __ names, vm_page_size, msgserver_t.
9506         ($(mach-syscalls) rule): Generate files without __, add weak alias.
9507         Remove symbol alias file rule.
9508         ($(mach-shortcuts) rule): Likewise.
9509         [!mach-shortcuts] (user-interfaces): Filter out mach/mach4 too.
9510         * mach/Machrules (if-calls.c): Variable and rule removed.
9511         (interface-headers): Don't add $($(if)-calls).
9512         (transform-user-stub): Define to add weak alias.
9513         * set-hooks.h: Use new libc-symbols.h set access macros.
9514         * time/Makefile (routines): Remove __ names.
9515         (aux): Variable removed.
9516         * hurd/Makefile: Likewise.
9517         * sysdeps/unix/start.c (environ): Define as weak alias for __environ.
9518         (data_start): Define as weak alias for __data_start.
9519         * sysdeps/mach/hurd/start.c: Likewise.
9520         * sysdeps/unix/sparc/start.c: Likewise.
9521         * sysdeps/unix/make_errlist.c: Emit weak aliases for sys_nerr and
9522         sys_errlist.
9523         * sysdeps/mach/hurd/errlist.awk: Likewise.
9524         * sysdeps/unix/bsd/osf1/alpha/start.S (environ): Define as weak
9525         alias for __environ.
9526         * sysdeps/unix/bsd/ultrix4/mips/start.S: Likewise.
9527         * sysdeps/stub/setdomain.c: Use new stub_warning macro.
9528         * sysdeps/stub/getdomain.c: Likewise.
9529         * sysdeps/stub/vhangup.c: Likewise.
9530         * sysdeps/stub/swapon.c: Likewise.
9531         * sysdeps/stub/sendmsg.c: Likewise.
9532         * sysdeps/stub/recvmsg.c: Likewise.
9533         * sysdeps/stub/acct.c: Likewise.
9534         * sysdeps/stub/isinf.c: Likewise.  Add weak alias isinf for __isinf.
9535         * sysdeps/mach/hurd/_exit.c: Remove obsolete __NORETURN keyword.
9536         * sysdeps/posix/libc_fatal.c: Likewise.
9537         * sysdeps/i386/abort.c: Likewise.
9538         * sysdeps/i386/__longjmp.c: Likewise.
9539         * sysdeps/generic/make_siglist.c: Emit defn always for
9540         _sys_siglist.  Emit weak alias to sys_siglist.
9541         * sysdeps/generic/atan.c: Remove obsolete __CONSTVALUE keyword.
9542         * sysdeps/ieee754/log10.c: Likewise.
9543         * time/difftime.c: Likewise.
9544         * stdlib/random.c (srand): Define as weak alias for __srandom.
9545         * stdlib/exit.c: Remove obsolete __NORETURN keyword.  Use set-hooks
9546         macros for __libc_atexit.
9547         * stdlib/Makefile (routines): Remove __random, srand.
9548         * stdio/gets.c: Use new link_warning macro instead of old
9549         warn_references.
9550         * stdio/Makefile (routines): Remove __ names.
9551         (aux): Remove syms-stdio.
9552         * socket/Makefile (routines): Added e on getpeernam and getsocknam.
9553         * setjmp/longjmp.c: Remove obsolete __NORETURN keyword.
9554         * setjmp/Makefile (routines): Remove _longjmp, siglongjmp.
9555         * setjmp/setjmp.h: Replace __NORETURN keyword with __attribute__ uses.
9556         * stdio/stdio.h: Likewise.
9557         * misc/Makefile (routines): Remove __ names.
9558         (aux): Remove data_start.
9559         * sysdeps/mach/hurd/defs.c: Don't include gnu-stabs.h.
9560         * sysdeps/mach/hurd/brk.c: Likewise.
9561         * hurd/hurdid.c: Likewise.
9562         * hurd/hurdpid.c: Likewise.
9563         * hurd/openport.c: Likewise.
9564         * hurd/hurdsock.c: Likewise.
9565         * hurd/hurdsig.c: Likewise.
9566         * hurd/hurdrlimit.c: Likewise.
9567         * hurd/hurdmalloc.c: Likewise.
9568         * hurd/dtable.c: Likewise.
9569         * hurd/setauth.c: Likewise.
9570         * misc/progname.c: Likewise.
9571         * misc/init-misc.c: Likewise.
9572         * sysdeps/generic/vfork.c: Likewise.
9573         * sysdeps/unix/bsd/init-posix.c: Likewise.
9574         * math/math.h: Replace __CONSTVALUE keyword with __attribute__ uses.
9575         * time/time.h: Likewise.
9576         * math/Makefile (routines): Remove __ names.
9577         * io/Makefile: Likewise.
9578         * termios/Makefile: Likewise.
9579         * resource/Makefile: Likewise.
9580         * signal/Makefile: Likewise.
9581         * dirent/Makefile: Likewise.
9582         * assert/assert.h: Replace __NORETURN keyword with __attribute__
9583         uses.  Functions return void and macros deal with this.
9584         * assert/assert-perr.c: Remove obsolete __NORETURN keyword.
9585         Return void.  Don't include gnu-stabs.h.
9586         * assert/assert.c: Likewise.
9587         * posix/Makefile (routines): Remove __ names, setpgrp.  Add
9588         getpgid.
9589         (aux): Remove environ.
9590         * stdlib/stdlib.h (abort, exit): Replace __NORETURN keyword with
9591         __attribute__ use.
9592         * posix/unistd.h (_exit): Likewise.
9593         (__getpgrp, __setpgrp): Declarations removed.
9594         (__getpgid, getpid): Declare these.
9596         * configure.in (host_os=gnuelf|linuxelf): Set elf=yes.  Do AC_SUBST
9597         for gnu_ld, gnu_as, elf, and weak.  Call AC_LINK_FILEES on
9598         $libc_link_{sources,dests}.
9599         * sysdeps/unix/configure.in: Remove __ from file names.  Don't
9600         create files, just add to libc_link_{dests,sources}.
9602         * config.make.in (gnu-as, gnu-ld, elf, weak-symbols): New variables.
9604         * config.h.in: Add #undefs used by sysdeps configures.
9606         * sysdeps/unix/sysv/sysv4/Makefile (sysdep_routines): Removed
9607         __setpgid, __getpgid.
9608         * sysdeps/unix/sysv/sco3.2.4/setpgid.c: Included file was renamed
9609         from setpgrp.c.
9610         * sysdeps/unix/sysv/sco3.2.4/getpgid.c: Included file was renamed
9611         from __getpgrp.c.
9612         * sysdeps/unix/bsd/getpgrp.c: File removed.
9613         * sysdeps/generic/getpgrp.c: Moved from sysdeps/stub/getpgrp.c.
9614         Call __getpgid with zero.
9615         * sysdeps/stub/setpgid.c: Renamed __setpgrp to __setpgid, added
9616         weak aliases setpgid and setpgrp.
9617         * sysdeps/unix/sysv/irix4/setpgid.S: Likewise.
9618         * sysdeps/unix/common/setpgid.S: Likewise.
9619         * sysdeps/mach/hurd/setpgid.c: Likewise.
9620         * sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
9621         Use subcall 5 to __pgrpsys.
9622         * sysdeps/stub/getpgid.c: Renamed __getpgrp to __getpgid, added
9623         weak alias getpgid.
9624         * sysdeps/mach/hurd/getpgid.c: Likewise.
9625         * sysdeps/unix/sysv/irix4/getpgid.S: Likewise.
9626         * sysdeps/unix/common/getpgid.S: Likewise.
9627         * sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
9628         Use subcall 4 to __pgrpsys.
9629         * sysdeps/stub/__getpgrp.c: Renamed to getpgid.c.
9630         * sysdeps/unix/sysv/sysv4/__getpgrp.c: Renamed to getpgid.c.
9631         * sysdeps/unix/sysv/sco3.2.4/__getpgrp.c: Renamed to getpgid.c.
9632         * sysdeps/unix/sysv/irix4/__getpgrp.S: Renamed to getpgid.S.
9633         * sysdeps/unix/common/__getpgrp.S: Renamed to getpgid.S.
9634         * sysdeps/mach/hurd/__getpgrp.c: Renamed to getpgid.c.
9635         * sysdeps/stub/setpgrp.c: Renamed to setpgid.c.
9636         * sysdeps/unix/sysv/sysv4/setpgrp.c: Renamed to setpgid.c.
9637         * sysdeps/unix/sysv/sco3.2.4/setpgrp.c: Renamed to setpgid.c.
9638         * sysdeps/unix/sysv/irix4/setpgrp.S: Renamed to setpgid.S.
9639         * sysdeps/unix/common/setpgrp.S: Renamed to setpgid.S.
9640         * sysdeps/mach/hurd/setpgrp.c: Renamed to setpgid.c.
9642         * sysdeps/unix/bsd/hp/m68k/getdents.S: Included file was renamed
9643         from __getdents.S.
9645         * sysdeps/posix/defs.c: Don't include gnu-stabs.h.
9646         * sysdeps/stub/sigpending.c: Use new libc-symbols.h macro for stub
9647         warning.
9648         * sysdeps/stub/fexecve.c: Likewise.
9649         * sysdeps/stub/fchdir.c: Likewise.
9650         * sysdeps/stub/fchflags.c: Likewise.
9651         * sysdeps/stub/chflags.c: Likewise.
9653         * sysdeps/m68k/__longjmp.c: Remove __NORETURN; it's obsolete.
9654         * sysdeps/generic/abort.c: Likewise.
9655         * sysdeps/ieee754/ldexp.c: Remove __CONSTVALUE; it's obsolete.
9657         * hurd/hurdioctl.c: Include hurd/ioctl.h.
9658         (_hurd_ioctl_handler_lists): Define this set.
9659         (_hurd_lookup_ioctl_handler): New function.
9660         * hurd/hurd/fd.h: ioctl handler stuff moved to hurd/ioctl.h.
9661         * hurd/hurd/ioctl.h: New file, broken out of hurd/fd.h.
9662         (_hurd_lookup_ioctl_handler): Declare it.
9663         (ioctl_handler_t): New typedef.  Use it throughout.
9664         * sysdeps/mach/hurd/ioctl.c: Include hurd/ioctl.h.
9665         (_hurd_ioctl_handler_lists): Don't define.
9666         (__ioctl): Call _hurd_lookup_ioctl_handler.
9668         * stdlib/strtol.c (maxquad): Make this const.
9669         [__GNUC__ == 2 && __GNUC_MINOR__ < 7]: Only use maxquad in this case.
9671         * posix/glob/configure.in: Put AC_AIX and AC_MINIX early, before
9672         any compile tests.
9674         * sysdeps/mach/hurd/setitimer.c (timer_thread): Call
9675         __msg_sig_post_request, not __sig_post_request.
9677         * misc/getusersh.c: Renamed to getusershell.c.
9678         * sysdeps/stub/sethostnam.c: Renamed to sethostname.c.
9679         * sysdeps/unix/inet/sethostnam.S: Renamed to sethostname.S.
9680         * sysdeps/unix/sysv/sysv4/sethostnam.c: Renamed to sethostname.c.
9681         * sysdeps/mach/hurd/sethostnam.c: Renamed to sethostname.c.
9683 Tue Jan 24 00:14:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9685         * sysdeps/stub/settod.c: Renamed to settimeofday.c.
9686         * sysdeps/unix/bsd/settod.S: Renamed to settimeofday.c.
9687         * sysdeps/unix/sysv/settod.c: Renamed to settimeofday.c.
9688         * sysdeps/mach/hurd/settod.c: Renamed to settimeofday.c.
9689         * sysdeps/stub/setitmr.c: Renamed to setitimer.c.
9690         * sysdeps/unix/common/setitmr.S: Renamed to setitimer.S.
9691         * sysdeps/mach/hurd/setitmr.c: Renamed to setitimer.c.
9692         * sysdeps/posix/fpathcon.c: Renamed to fpathconf.c.
9693         * sysdeps/stub/fpathcon.c: Renamed to fpathconf.c.
9694         * sysdeps/unix/sysv/irix4/fpathcon.c: Renamed to fpathconf.c.
9695         * sysdeps/stub/getprio.c: Renamed to getpriority.c.
9696         * sysdeps/unix/sysv/irix4/getprio.c: Renamed to getpriority.c.
9697         * sysdeps/unix/common/getprio.S: Renamed to getpriority.S.
9698         * sysdeps/mach/hurd/getprio.c: Renamed to getpriority.c.
9699         * sysdeps/stub/setprio.c: Renamed to setpriority.c.
9700         * sysdeps/unix/sysv/irix4/setprio.c: Renamed to setpriority.c.
9701         * sysdeps/unix/common/setprio.S: Renamed to setpriority.S.
9702         * sysdeps/mach/hurd/setprio.c: Renamed to setpriority.c.
9703         * sysdeps/stub/getpeernam.c: Renamed to getpeername.c.
9704         * sysdeps/unix/inet/getpeernam.S: Renamed to getpeername.S.
9705         * sysdeps/unix/sysv/linux/getpeernam.S: Renamed to getpeername.S.
9706         * sysdeps/mach/hurd/getpeernam.c: Renamed to getpeername.c.
9707         * sysdeps/stub/getsocknam.c: Renamed to getsockname.c.
9708         * sysdeps/unix/inet/getsocknam.S: Renamed to getsockname.S.
9709         * sysdeps/unix/sysv/linux/getsocknam.S: Renamed to getsockname.S.
9710         * sysdeps/mach/hurd/getsocknam.c: Renamed to getsockname.c.
9711         * sysdeps/stub/sigaltstk.c: Renamed to sigaltstack.c.
9712         * sysdeps/unix/bsd/bsd4.4/sigaltstk.S: Renamed to sigaltstack.S.
9713         * sysdeps/unix/sysv/sysv4/sigaltstk.S: Renamed to sigaltstack.S.
9714         * sysdeps/mach/hurd/sigaltstk.c: Renamed to sigaltstack.c.
9716         * sysdeps/mach/hurd/i386/sigreturn.c: Call __msg_sig_post instead
9717         of __sig_post.
9718         * sysdeps/mach/hurd/sigsuspend.c: Likewise.
9719         * sysdeps/mach/hurd/kill.c: Likewise.
9720         * sysdeps/mach/hurd/sigprocmask.c: Likewise.
9722         * misc/sys/cdefs.h (__NORETURN, __CONSTVALUE): Macros removed.
9723         [!__GNUC__ || __GNUC__<2] (__attribute__): Define to empty.
9725         * sysdeps/stub/remove.c: New file.
9726         * sysdeps/posix/remove.c: New file.
9728 Mon Jan 23 03:26:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9730         * time/mktime.c [weak_alias] (timelocal): Define as weak alias for
9731         mktime.
9732         * mach/mig_strncpy.c (mig_strncpy): Define as weak alias for
9733         __mig_strncpy.
9734         * mach/msg-destroy.c: Renamed from __msg_dest.c.
9735         (mach_msg_destroy): Define as weak alias for __mach_msg_destroy.
9736         * mach/setup-thread.c (mach_setup_thread): Define as weak alias.
9737         * time/tzset.c (tzname, daylight, timezone): Define as weak
9738         aliases for __ names.
9739         * hurd/hurdkill.c (hurd_sig_post): Define as weak alias.
9740         * hurd/hurdlookup.c: Add weak aliases for non-__ names.
9741         * Makefile (+init): Test $(gnu-ld)=yes, not for $(+gnu-stabs)
9742         being defined.
9744 Sun Jan 22 15:19:51 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9746         * string/Makefile (routines): Remove __ names, index, rindex, and
9747         bcmp.
9748         * sysdeps/alpha/strchr.c [weak_alias] (index): Define as weak
9749         alias for strchr.
9750         * sysdeps/generic/strchr.c: Likewise.
9751         * sysdeps/generic/strrchr.c [weak_alias] (rindex): Define as weak
9752         alias for strrchr.
9753         * sysdeps/generic/memcmp.c [weak_alias] (bcmp): Define as weak
9754         alias for memcmp.
9756         * malloc/free.c (cfree): Define this function, with weak_alias if
9757         available, otherwise a C function.
9758         * malloc/Makefile (gmalloc-routines): Remove cfree.
9760 Sat Jan 21 08:08:58 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
9762         * stdio/fseek.c: Do move bufp by O when that puts it exactly at
9763         get_limit.  This has the effect of no-op'ing properly for zero.
9765         * configure.in: Add AC_CONFIG_HEADER(config.h).
9766         (--with-elf, --with-weak-symbols): Grok these and define HAVE_*.
9767         * config.h.in: New file.
9769         * setjmp/longjmp.c: Add weak aliases _longjmp, siglongjmp.
9770         All code converted to use weak symbols, defined in the files which
9771         define the real code (with the __ names, the non-__ names are weak).
9772         All old symbol alias files removed.
9773         Many files renamed to remove __ prefix since there is now just
9774         the one file for both the __ and non-__ name for each function.
9775         * libc-symbols.h: New file.
9776         * set-hooks.h: Use libc-symbols.h macros for accessing symbol
9777         sets.
9778         * gnu-stabs.h: Prepend #error this file is obsolete.
9779         * sysdeps/ieee754/ldexp.c: Add weak aliases scalb and __scalb.
9780         * sysdeps/stub/__access.c: Renamed to access.c; added weak alias
9781         access.
9782         * sysdeps/unix/common/__access.S: Likewise.
9783         * sysdeps/mach/hurd/__access.c: Likewise.
9784         * sysdeps/stub/__adjtime.c: Renamed to adjtime.c; added weak alias
9785         adjtime.
9786         * sysdeps/unix/common/__adjtime.S: Likewise.
9787         * sysdeps/mach/__adjtime.c: Likewise.
9788         * sysdeps/mach/hurd/__adjtime.c: Likewise.
9789         * sysdeps/stub/__brk.c: Renamed to brk.c; added weak alias brk.
9790         * sysdeps/unix/bsd/sun/m68k/__brk.S: Likewise.
9791         * sysdeps/unix/bsd/vax/__brk.S: Likewise.
9792         * sysdeps/unix/bsd/hp/m68k/__brk.S: Likewise.
9793         * sysdeps/unix/bsd/osf1/alpha/__brk.S: Likewise.
9794         * sysdeps/unix/i386/__brk.S: Likewise.
9795         * sysdeps/unix/sparc/__brk.S: Likewise.
9796         * sysdeps/unix/mips/__brk.S: Likewise.
9797         * sysdeps/mach/hurd/__brk.c: Likewise.
9798         * sysdeps/standalone/__brk.c: Likewise.
9799         * sysdeps/stub/__chdir.c: Renamed to chdir.c; added weak alias chdir.
9800         * sysdeps/unix/__chdir.S: Likewise.
9801         * sysdeps/mach/hurd/__chdir.c: Likewise.
9802         * sysdeps/stub/__chmod.c: Renamed to chmod.c; added weak alias chmod.
9803         * sysdeps/unix/__chmod.S: Likewise.
9804         * sysdeps/mach/hurd/__chmod.c: Likewise.
9805         * sysdeps/stub/__chown.c: Renamed to chown.c; added weak alias chown.
9806         * sysdeps/unix/__chown.S: Likewise.
9807         * sysdeps/mach/hurd/__chown.c: Likewise.
9808         * sysdeps/stub/__close.c: Renamed to close.c; added weak alias close.
9809         * sysdeps/unix/__close.S: Likewise.
9810         * sysdeps/mach/hurd/__close.c: Likewise.
9811         * sysdeps/standalone/__close.c: Likewise.
9812         * sysdeps/generic/__copysign.c: Renamed to copysign.c; added weak
9813         alias copysign.
9814         * sysdeps/ieee754/__copysign.c: Likewise.
9815         * sysdeps/alpha/__copysign.c: Likewise.
9816         * sysdeps/ieee754/__drem.c: Renamed to drem.c; added weak alias drem.
9817         * sysdeps/m68k/fpu/__drem.c: Likewise.
9818         * sysdeps/stub/__drem.c: Likewise.
9819         * sysdeps/posix/__dup.c: Renamed to dup.c; added weak alias dup.
9820         * sysdeps/stub/__dup.c: Likewise.
9821         * sysdeps/unix/__dup.S: Likewise.
9822         * sysdeps/posix/__dup2.c: Renamed to dup2.c; added weak alias dup2.
9823         * sysdeps/stub/__dup2.c: Likewise.
9824         * sysdeps/unix/sysv/sysv4/__dup2.c: Likewise.
9825         * sysdeps/unix/sysv/irix4/__dup2.c: Likewise.
9826         * sysdeps/unix/common/__dup2.S: Likewise.
9827         * sysdeps/mach/hurd/__dup2.c: Likewise.
9828         * sysdeps/stub/__execve.c: Renamed to execve.c; added weak alias
9829         execve.
9830         * sysdeps/unix/__execve.S: Likewise.
9831         * sysdeps/mach/hurd/__execve.c: Likewise.
9832         * sysdeps/generic/__expm1.c: Renamed to expm1.c; added weak alias
9833         expm1.
9834         * sysdeps/m68k/fpu/__expm1.c: Likewise.
9835         * sysdeps/stub/__fchmod.c: Renamed to fchmod.c; added weak alias
9836         fchmod.
9837         * sysdeps/unix/common/__fchmod.S: Likewise.
9838         * sysdeps/mach/hurd/__fchmod.c: Likewise.
9839         * sysdeps/stub/__fchown.c: Renamed to fchown.c; added weak alias
9840         fchown.
9841         * sysdeps/unix/common/__fchown.S: Likewise.
9842         * sysdeps/mach/hurd/__fchown.c: Likewise.
9843         * sysdeps/stub/__fcntl.c: Renamed to fcntl.c; added weak alias fcntl.
9844         * sysdeps/unix/__fcntl.S: Likewise.
9845         * sysdeps/mach/hurd/__fcntl.c: Likewise.
9846         * math/__finite.c: Renamed to finite.c; added weak alias finite.
9847         * sysdeps/posix/__flock.c: Renamed to flock.c; added weak alias flock.
9848         * sysdeps/stub/__flock.c: Likewise.
9849         * sysdeps/unix/bsd/__flock.S: Likewise.
9850         * sysdeps/mach/hurd/__flock.c: Likewise.
9851         * hurd/__fopenport.c: Renamed to fopenport.c; added weak alias
9852         fopenport.
9853         * sysdeps/stub/__fork.c: Renamed to fork.c; added weak alias fork.
9854         * sysdeps/unix/__fork.S: Likewise.
9855         * sysdeps/unix/bsd/osf1/alpha/__fork.S: Likewise.
9856         * sysdeps/unix/i386/__fork.S: Likewise.
9857         * sysdeps/unix/sparc/__fork.S: Likewise.
9858         * sysdeps/unix/mips/__fork.S: Likewise.
9859         * sysdeps/mach/hurd/__fork.c: Likewise.
9860         * sysdeps/posix/__fpathcon.c: Renamed to fpathcon.c; added weak
9861         alias fpathconf.
9862         * sysdeps/stub/__fpathcon.c: Likewise.
9863         * sysdeps/unix/sysv/irix4/__fpathcon.c: Likewise.
9864         * sysdeps/stub/__fstat.c: Renamed to fstat.c; added weak alias fstat.
9865         * sysdeps/unix/__fstat.S: Likewise.
9866         * sysdeps/unix/sysv/sysv4/i386/__fstat.S: Likewise.
9867         * sysdeps/mach/hurd/__fstat.c: Likewise.
9868         * stdio/__getdelim.c: Renamed to getdelim.c; added weak alias
9869         getdelim.
9870         * sysdeps/stub/__getdents.c: Renamed to getdents.c; added weak
9871         alias getdents.
9872         * sysdeps/unix/__getdents.c: Likewise.
9873         * sysdeps/unix/bsd/sun/__getdents.S: Likewise.
9874         * sysdeps/unix/bsd/hp/m68k/__getdents.S: Likewise.
9875         * sysdeps/unix/bsd/ultrix4/__getdents.S: Likewise.
9876         * sysdeps/unix/bsd/bsd4.4/__getdents.S: Likewise.
9877         * sysdeps/unix/bsd/osf1/alpha/__getdents.S: Likewise.
9878         * sysdeps/unix/sysv/__getdents.c: Likewise.
9879         * sysdeps/mach/hurd/__getdents.c: Likewise.
9880         * hurd/__getdport.c: Renamed to getdport.c; added weak alias getdport.
9881         * sysdeps/posix/__getdtsz.c: Renamed to getdtsz.c; added weak
9882         alias getdtablesize.
9883         * sysdeps/stub/__getdtsz.c: Likewise.
9884         * sysdeps/unix/bsd/__getdtsz.S: Likewise.
9885         * sysdeps/unix/sysv/sysv4/__getdtsz.c: Likewise.
9886         * sysdeps/mach/hurd/__getdtsz.c: Likewise.
9887         * sysdeps/stub/__getegid.c: Renamed to getegid.c; added weak alias
9888         getegid.
9889         * sysdeps/unix/__getegid.S: Likewise.
9890         * sysdeps/mach/hurd/__getegid.c: Likewise.
9891         * sysdeps/stub/__geteuid.c: Renamed to geteuid.c; added weak alias
9892         geteuid.
9893         * sysdeps/unix/__geteuid.S: Likewise.
9894         * sysdeps/mach/hurd/__geteuid.c: Likewise.
9895         * sysdeps/stub/__getgid.c: Renamed to getgid.c; added weak alias
9896         getgid.
9897         * sysdeps/unix/__getgid.S: Likewise.
9898         * sysdeps/mach/hurd/__getgid.c: Likewise.
9899         * sysdeps/stub/__getgrps.c: Renamed to getgroups.c; added weak
9900         alias getgroups.
9901         * sysdeps/unix/bsd/sequent/i386/__getgrps.S: Likewise.
9902         * sysdeps/unix/sysv/sco3.2.4/__getgrps.c: Likewise.
9903         * sysdeps/unix/sysv/irix4/__getgrps.c: Likewise.
9904         * sysdeps/unix/common/__getgrps.S: Likewise.
9905         * sysdeps/mach/hurd/__getgrps.c: Likewise.
9906         * sysdeps/stub/__gethstnm.c: Renamed to gethostname.c; added weak
9907         alias gethostname.
9908         * sysdeps/unix/inet/__gethstnm.S: Likewise.
9909         * sysdeps/unix/sysv/__gethstnm.c: Likewise.
9910         * sysdeps/unix/sysv/sysv4/__gethstnm.c: Likewise.
9911         * sysdeps/mach/hurd/__gethstnm.c: Likewise.
9912         * sysdeps/stub/__getitmr.c: Renamed to getitimer.c; added weak
9913         alias getitimer.
9914         * sysdeps/unix/common/__getitmr.S: Likewise.
9915         * sysdeps/mach/hurd/__getitmr.c: Likewise.
9916         * stdio/__getline.c: Renamed to getline.c; added weak alias getline.
9917         * sysdeps/posix/__getpgsz.c: Renamed to getpagesize.c; added weak
9918         alias getpagesize.
9919         * sysdeps/stub/__getpgsz.c: Likewise.
9920         * sysdeps/unix/__getpgsz.c: Likewise.
9921         * sysdeps/unix/bsd/__getpgsz.S: Likewise.
9922         * sysdeps/unix/sysv/sysv4/__getpgsz.c: Likewise.
9923         * sysdeps/mach/__getpgsz.c: Likewise.
9924         * sysdeps/stub/__getpid.c: Renamed to getpid.c; added weak alias
9925         getpid.
9926         * sysdeps/unix/__getpid.S: Likewise.
9927         * sysdeps/mach/hurd/__getpid.c: Likewise.
9928         * sysdeps/stub/__getppid.c: Renamed to getppid.c; added weak alias
9929         getppid.
9930         * sysdeps/unix/__getppid.S: Likewise.
9931         * sysdeps/mach/hurd/__getppid.c: Likewise.
9932         * sysdeps/posix/__gettod.c: Renamed to gettimeofday.c; added weak
9933         alias gettimeofday.
9934         * sysdeps/stub/__gettod.c: Likewise.
9935         * sysdeps/unix/sysv/irix4/__gettod.c: Likewise.
9936         * sysdeps/unix/common/__gettod.S: Likewise.
9937         * sysdeps/mach/__gettod.c: Likewise.
9938         * sysdeps/stub/__getuid.c: Renamed to getuid.c; added weak alias
9939         getuid.
9940         * sysdeps/unix/__getuid.S: Likewise.
9941         * sysdeps/mach/hurd/__getuid.c: Likewise.
9942         * sysdeps/generic/__infnan.c: Renamed to infnan.c; added weak
9943         alias infnan.
9944         * sysdeps/ieee754/__infnan.c: Likewise.
9945         * sysdeps/vax/__infnan.c: Likewise.
9946         * sysdeps/stub/__ioctl.c: Renamed to ioctl.c; added weak alias ioctl.
9947         * sysdeps/unix/__ioctl.S: Likewise.
9948         * sysdeps/mach/hurd/__ioctl.c: Likewise.
9949         * sysdeps/posix/__isatty.c: Renamed to isatty.c; added weak alias
9950         isatty.
9951         * sysdeps/stub/__isatty.c: Likewise.
9952         * sysdeps/unix/bsd/__isatty.c: Likewise.
9953         * sysdeps/mach/hurd/__isatty.c: Likewise.
9954         * sysdeps/ieee754/__isinf.c: Renamed to isinf.c; added weak alias
9955         isinf.
9956         * sysdeps/m68k/fpu/__isinf.c: Likewise.
9957         * sysdeps/stub/__isinf.c: Likewise.
9958         * sysdeps/generic/__isnan.c: Renamed to isnan.c; added weak alias
9959         isnan.
9960         * sysdeps/ieee754/__isnan.c: Likewise.
9961         * sysdeps/m68k/fpu/__isnan.c: Likewise.
9962         * sysdeps/stub/__kill.c: Renamed to kill.c; added weak alias kill.
9963         * sysdeps/unix/__kill.S: Likewise.
9964         * sysdeps/mach/hurd/__kill.c: Likewise.
9965         * sysdeps/stub/__link.c: Renamed to link.c; added weak alias link.
9966         * sysdeps/unix/__link.S: Likewise.
9967         * sysdeps/mach/hurd/__link.c: Likewise.
9968         * sysdeps/ieee754/__logb.c: Renamed to logb.c; added weak alias logb.
9969         * sysdeps/m68k/fpu/__logb.c: Likewise.
9970         * sysdeps/stub/__logb.c: Likewise.
9971         * sysdeps/stub/__lseek.c: Renamed to lseek.c; added weak alias lseek.
9972         * sysdeps/unix/__lseek.S: Likewise.
9973         * sysdeps/mach/hurd/__lseek.c: Likewise.
9974         * sysdeps/generic/__lstat.c: Renamed to lstat.c; added weak alias
9975         lstat.
9976         * sysdeps/stub/__lstat.c: Likewise.
9977         * sysdeps/unix/sysv/sysv4/i386/__lstat.S: Likewise.
9978         * sysdeps/unix/common/__lstat.S: Likewise.
9979         * sysdeps/mach/hurd/__lstat.c: Likewise.
9980         * sysdeps/generic/__memccpy.c: Renamed to memccpy.c; added weak
9981         alias memccpy.
9982         * sysdeps/vax/__memccpy.c: Likewise.
9983         * sysdeps/stub/__mkdir.c: Renamed to mkdir.c; added weak alias mkdir.
9984         * sysdeps/unix/sysv/__mkdir.c: Likewise.
9985         * sysdeps/unix/common/__mkdir.S: Likewise.
9986         * sysdeps/mach/hurd/__mkdir.c: Likewise.
9987         * sysdeps/stub/__mknod.c: Renamed to mknod.c; added weak alias mknod.
9988         * sysdeps/unix/__mknod.S: Likewise.
9989         * sysdeps/unix/sysv/sysv4/i386/__mknod.S: Likewise.
9990         * sysdeps/mach/hurd/__mknod.c: Likewise.
9991         * mach/__msg.c: Renamed to msg.c; added weak alias mach_msg.
9992         * mach/__msgserver.c: Renamed to msgserver.c; added weak alias
9993         mach_msg_server.
9994         * sysdeps/stub/__open.c: Renamed to open.c; added weak alias open.
9995         * sysdeps/unix/__open.S: Likewise.
9996         * sysdeps/mach/hurd/__open.c: Likewise.
9997         * sysdeps/standalone/__open.c: Likewise.
9998         * sysdeps/stub/__pathconf.c: Renamed to pathconf.c; added weak
9999         alias pathconf.
10000         * sysdeps/unix/sysv/sco3.2.4/__pathconf.S: Likewise.
10001         * sysdeps/unix/sysv/irix4/__pathconf.c: Likewise.
10002         * hurd/__pid2task.c: Renamed to pid2task.c; added weak alias pid2task.
10003         * sysdeps/stub/__pipe.c: Renamed to pipe.c; added weak alias pipe.
10004         * sysdeps/unix/bsd/vax/__pipe.S: Likewise.
10005         * sysdeps/unix/bsd/m68k/__pipe.S: Likewise.
10006         * sysdeps/unix/bsd/osf1/alpha/__pipe.S: Likewise.
10007         * sysdeps/unix/i386/__pipe.S: Likewise.
10008         * sysdeps/unix/sparc/__pipe.S: Likewise.
10009         * sysdeps/unix/mips/__pipe.S: Likewise.
10010         * sysdeps/mach/hurd/__pipe.c: Likewise.
10011         * stdlib/__random.c: Renamed to random.c; added weak alias random.
10012         * sysdeps/stub/__read.c: Renamed to read.c; added weak alias read.
10013         * sysdeps/unix/__read.S: Likewise.
10014         * sysdeps/mach/hurd/__read.c: Likewise.
10015         * sysdeps/standalone/__read.c: Likewise.
10016         * sysdeps/stub/__readlink.c: Renamed to readlink.c; added weak
10017         alias readlink.
10018         * sysdeps/unix/common/__readlink.S: Likewise.
10019         * sysdeps/mach/hurd/__readlink.c: Likewise.
10020         * sysdeps/generic/__rint.c: Renamed to rint.c; added weak alias rint.
10021         * sysdeps/m68k/fpu/__rint.c: Likewise.
10022         * sysdeps/stub/__rmdir.c: Renamed to rmdir.c; added weak alias rmdir.
10023         * sysdeps/unix/sysv/__rmdir.c: Likewise.
10024         * sysdeps/unix/common/__rmdir.S: Likewise.
10025         * sysdeps/mach/hurd/__rmdir.c: Likewise.
10026         * sysdeps/generic/__sbrk.c: Renamed to sbrk.c; added weak alias sbrk.
10027         * sysdeps/stub/__sbrk.c: Likewise.
10028         * sysdeps/mach/hurd/__sbrk.c: Likewise.
10029         * math/__scalb.c: Renamed to scalb.c; added weak alias scalb.
10030         * sysdeps/stub/__select.c: Renamed to select.c; added weak alias
10031         select.
10032         * sysdeps/unix/common/__select.S: Likewise.
10033         * sysdeps/mach/hurd/__select.c: Likewise.
10034         * hurd/__setauth.c: Renamed to setauth.c; added weak alias setauth.
10035         * sysdeps/stub/__setgid.c: Renamed to setgid.c; added weak alias
10036         setgid.
10037         * sysdeps/unix/__setgid.S: Likewise.
10038         * sysdeps/unix/bsd/__setgid.c: Likewise.
10039         * sysdeps/mach/hurd/__setgid.c: Likewise.
10040         * sysdeps/stub/__setitmr.c: Renamed to setitmr.c; added weak alias
10041         setitmr
10042         * sysdeps/unix/common/__setitmr.S: Likewise.
10043         * sysdeps/mach/hurd/__setitmr.c: Likewise.
10044         * sysdeps/stub/__setpgrp.c: Renamed to setpgrp.c; added weak alias
10045         setpgrp
10046         * sysdeps/unix/sysv/sysv4/__setpgrp.c: Likewise.
10047         * sysdeps/unix/sysv/sco3.2.4/__setpgrp.c: Likewise.
10048         * sysdeps/unix/sysv/irix4/__setpgrp.S: Likewise.
10049         * sysdeps/unix/common/__setpgrp.S: Likewise.
10050         * sysdeps/mach/hurd/__setpgrp.c: Likewise.
10051         * sysdeps/stub/__setregid.c: Renamed to setregid.c; added weak
10052         alias setregid.
10053         * sysdeps/unix/common/__setregid.S: Likewise.
10054         * sysdeps/mach/hurd/__setregid.c: Likewise.
10055         * sysdeps/stub/__setreuid.c: Renamed to setreuid.c; added weak
10056         alias setreuid.
10057         * sysdeps/unix/common/__setreuid.S: Likewise.
10058         * sysdeps/mach/hurd/__setreuid.c: Likewise.
10059         * sysdeps/stub/__setsid.c: Renamed to setsid.c; added weak alias
10060         setsid.
10061         * sysdeps/unix/bsd/__setsid.c: Likewise.
10062         * sysdeps/unix/bsd/sun/sunos4/__setsid.S: Likewise.
10063         * sysdeps/unix/bsd/ultrix4/__setsid.S: Likewise.
10064         * sysdeps/unix/bsd/bsd4.4/__setsid.S: Likewise.
10065         * sysdeps/unix/sysv/linux/__setsid.S: Likewise.
10066         * sysdeps/unix/sysv/sysv4/__setsid.c: Likewise.
10067         * sysdeps/unix/sysv/sco3.2.4/__setsid.c: Likewise.
10068         * sysdeps/mach/hurd/__setsid.c: Likewise.
10069         * sysdeps/stub/__settod.c: Renamed to settod.c; added weak alias
10070         settimeofday.
10071         * sysdeps/unix/bsd/__settod.S: Likewise.
10072         * sysdeps/unix/sysv/__settod.c: Likewise.
10073         * sysdeps/mach/hurd/__settod.c: Likewise.
10074         * sysdeps/stub/__setuid.c: Renamed to setuid.c; added weak alias
10075         setuid.
10076         * sysdeps/unix/__setuid.S: Likewise.
10077         * sysdeps/unix/bsd/__setuid.c: Likewise.
10078         * sysdeps/mach/hurd/__setuid.c: Likewise.
10079         * sysdeps/posix/__sigblock.c: Renamed to sigblock.c; added weak
10080         alias sigblock.
10081         * sysdeps/stub/__sigblock.c: Likewise.
10082         * sysdeps/unix/bsd/__sigblock.S: Likewise.
10083         * sysdeps/unix/bsd/bsd4.4/__sigblock.c: Likewise.
10084         * sysdeps/unix/bsd/osf1/alpha/__sigblock.S: Likewise.
10085         * sysdeps/posix/__sigpause.c: Renamed to sigpause.c; added weak
10086         alias sigpause.
10087         * sysdeps/stub/__sigpause.c: Likewise.
10088         * sysdeps/unix/bsd/__sigpause.S: Likewise.
10089         * sysdeps/unix/bsd/osf1/alpha/__sigpause.S: Likewise.
10090         * sysdeps/stub/__sigproc.c: Renamed to sigprocmask.c; added weak
10091         alias sigprocmask.
10092         * sysdeps/unix/bsd/__sigproc.c: Likewise.
10093         * sysdeps/unix/sysv/sysv4/__sigproc.S: Likewise.
10094         * sysdeps/unix/sysv/sco3.2.4/__sigproc.S: Likewise.
10095         * sysdeps/mach/hurd/__sigproc.c: Likewise.
10096         * sysdeps/stub/__sigret.c: Renamed to sigreturn.c; added weak
10097         alias sigreturn.
10098         * sysdeps/unix/bsd/sun/__sigret.S: Likewise.
10099         * sysdeps/unix/sysv/i386/__sigret.S: Likewise.
10100         * sysdeps/unix/sysv/irix4/__sigret.S: Likewise.
10101         * sysdeps/unix/i386/__sigret.S: Likewise.
10102         * sysdeps/unix/mips/__sigret.S: Likewise.
10103         * sysdeps/mach/hurd/i386/__sigret.c: Likewise.
10104         * sysdeps/mach/hurd/alpha/__sigret.c: Likewise.
10105         * sysdeps/mach/hurd/mips/__sigret.c: Likewise.
10106         * sysdeps/posix/__sigvec.c: Renamed to sigvec.c; added weak alias
10107         sigvec.
10108         * sysdeps/stub/__sigvec.c: Likewise.
10109         * sysdeps/unix/bsd/__sigvec.S: Likewise.
10110         * sysdeps/unix/bsd/sun/__sigvec.S: Likewise.
10111         * sysdeps/unix/bsd/sequent/i386/__sigvec.S: Likewise.
10112         * sysdeps/unix/bsd/ultrix4/mips/__sigvec.S: Likewise.
10113         * sysdeps/unix/bsd/bsd4.4/__sigvec.c: Likewise.
10114         * sysdeps/unix/bsd/osf1/alpha/__sigvec.S: Likewise.
10115         * sysdeps/stub/__stat.c: Renamed to stat.c; added weak alias stat.
10116         * sysdeps/unix/__stat.S: Likewise.
10117         * sysdeps/unix/sysv/sysv4/i386/__stat.S: Likewise.
10118         * sysdeps/mach/hurd/__stat.c: Likewise.
10119         * sysdeps/generic/__stpncpy.c: Renamed to stpncpy.c; added weak
10120         alias stpncpy.
10121         * sysdeps/stub/__symlink.c: Renamed to symlink.c; added weak alias
10122         symlink.
10123         * sysdeps/unix/common/__symlink.S: Likewise.
10124         * sysdeps/mach/hurd/__symlink.c: Likewise.
10125         * sysdeps/posix/__sysconf.c: Renamed to sysconf.c; added weak
10126         alias sysconf.
10127         * sysdeps/stub/__sysconf.c: Likewise.
10128         * sysdeps/unix/bsd/ultrix4/__sysconf.c: Likewise.
10129         * sysdeps/unix/sysv/sysv4/__sysconf.c: Likewise.
10130         * sysdeps/unix/sysv/sco3.2.4/__sysconf.S: Likewise.
10131         * sysdeps/unix/sysv/irix4/__sysconf.c: Likewise.
10132         * hurd/__task2pid.c: Renamed to task2pid.c; added weak alias task2pid.
10133         * sysdeps/stub/__times.c: Renamed to times.c; added weak alias times.
10134         * sysdeps/unix/bsd/__times.c: Likewise.
10135         * sysdeps/unix/sysv/__times.S: Likewise.
10136         * time/__tzset.c: Renamed to tzset.c; added weak alias tzset.
10137         * sysdeps/stub/__umask.c: Renamed to umask.c; added weak alias umask.
10138         * sysdeps/unix/__umask.S: Likewise.
10139         * sysdeps/mach/hurd/__umask.c: Likewise.
10140         * sysdeps/stub/__unlink.c: Renamed to unlink.c; added weak alias
10141         unlink.
10142         * sysdeps/unix/__unlink.S: Likewise.
10143         * sysdeps/mach/hurd/__unlink.c: Likewise.
10144         * sysdeps/stub/__utimes.c: Renamed to utimes.c; added weak alias
10145         utimes.
10146         * sysdeps/unix/bsd/__utimes.S: Likewise.
10147         * sysdeps/unix/sysv/sysv4/solaris2/__utimes.S: Likewise.
10148         * sysdeps/mach/hurd/__utimes.c: Likewise.
10149         * sysdeps/generic/__vfork.c: Renamed to vfork.c; added weak alias
10150         vfork.
10151         * sysdeps/unix/bsd/sun/m68k/__vfork.S: Likewise.
10152         * sysdeps/unix/bsd/vax/__vfork.S: Likewise.
10153         * sysdeps/unix/bsd/i386/__vfork.S: Likewise.
10154         * sysdeps/unix/bsd/hp/m68k/__vfork.S: Likewise.
10155         * sysdeps/unix/bsd/ultrix4/mips/__vfork.S: Likewise.
10156         * sysdeps/unix/sysv/sysv4/i386/__vfork.S: Likewise.
10157         * sysdeps/unix/sparc/__vfork.S: Likewise.
10158         * stdio/__vfscanf.c: Renamed to vfscanf.c; added weak alias vfscanf.
10159         * stdio/__vsscanf.c: Renamed to vsscanf.c; added weak alias vsscanf.
10160         * sysdeps/posix/__wait.c: Renamed to wait.c; added weak alias wait.
10161         * sysdeps/stub/__wait.c: Likewise.
10162         * sysdeps/unix/bsd/sony/newsos4/__wait.c: Likewise.
10163         * sysdeps/unix/bsd/sun/sunos4/__wait.c: Likewise.
10164         * sysdeps/unix/bsd/sun/sunos3/m68k/__wait.S: Likewise.
10165         * sysdeps/unix/bsd/vax/__wait.S: Likewise.
10166         * sysdeps/unix/bsd/m68k/__wait.S: Likewise.
10167         * sysdeps/unix/bsd/bsd4.4/__wait.c: Likewise.
10168         * sysdeps/unix/sysv/i386/linux/__wait.S: Likewise.
10169         * sysdeps/unix/sysv/irix4/__wait.S: Likewise.
10170         * sysdeps/unix/i386/__wait.S: Likewise.
10171         * sysdeps/unix/mips/__wait.S: Likewise.
10172         * sysdeps/posix/__wait3.c: Renamed to wait3.c; added weak alias wait3.
10173         * sysdeps/stub/__wait3.c: Likewise.
10174         * sysdeps/unix/bsd/sony/newsos4/__wait3.c: Likewise.
10175         * sysdeps/unix/bsd/sun/sunos4/__wait3.c: Likewise.
10176         * sysdeps/unix/bsd/vax/__wait3.S: Likewise.
10177         * sysdeps/unix/bsd/i386/__wait3.S: Likewise.
10178         * sysdeps/unix/bsd/hp/m68k/__wait3.S: Likewise.
10179         * sysdeps/unix/bsd/ultrix4/__wait3.S: Likewise.
10180         * sysdeps/unix/bsd/bsd4.4/__wait3.c: Likewise.
10181         * sysdeps/unix/sysv/irix4/__wait3.S: Likewise.
10182         * sysdeps/stub/__wait4.c: Renamed to wait4.c; added weak alias wait4.
10183         * sysdeps/unix/bsd/sony/newsos4/__wait4.c: Likewise.
10184         * sysdeps/unix/bsd/sun/sunos4/__wait4.c: Likewise.
10185         * sysdeps/unix/bsd/bsd4.4/__wait4.S: Likewise.
10186         * sysdeps/unix/bsd/osf1/alpha/__wait4.S: Likewise.
10187         * sysdeps/unix/sysv/linux/__wait4.S: Likewise.
10188         * sysdeps/mach/hurd/__wait4.c: Likewise.
10189         * sysdeps/stub/__waitpid.c: Renamed to waitpid.c; added weak alias
10190         waitpid.
10191         * sysdeps/unix/bsd/sun/sunos4/__waitpid.c: Likewise.
10192         * sysdeps/unix/bsd/ultrix4/__waitpid.S: Likewise.
10193         * sysdeps/unix/bsd/bsd4.4/__waitpid.c: Likewise.
10194         * sysdeps/unix/bsd/osf1/alpha/__waitpid.c: Likewise.
10195         * sysdeps/unix/sysv/linux/__waitpid.S: Likewise.
10196         * sysdeps/unix/sysv/sysv4/__waitpid.c: Likewise.
10197         * sysdeps/unix/sysv/sco3.2.4/__waitpid.S: Likewise.
10198         * sysdeps/unix/sysv/irix4/__waitpid.c: Likewise.
10199         * sysdeps/stub/__write.c: Renamed to write.c; added weak alias write.
10200         * sysdeps/unix/__write.S: Likewise.
10201         * sysdeps/mach/hurd/__write.c: Likewise.
10202         * sysdeps/standalone/__write.c: Likewise.
10203         * sysdeps/stub/__tcgetatr.c: Renamed to tcgetattr.c; added weak
10204         alias tcgetattr.
10205         * sysdeps/unix/bsd/__tcgetatr.c: Likewise.
10206         * sysdeps/unix/bsd/sun/sunos4/__tcgetatr.c: Likewise.
10207         * sysdeps/unix/bsd/bsd4.4/__tcgetatr.c: Likewise.
10208         * sysdeps/unix/sysv/__tcgetatr.c: Likewise.
10209         * sysdeps/stub/__sigact.c: Renamed to sigaction.c; added weak
10210         alias sigaction.
10211         * sysdeps/unix/bsd/__sigact.c: Likewise.
10212         * sysdeps/unix/sysv/__sigact.c: Likewise.
10213         * sysdeps/unix/sysv/sysv4/__sigact.c: Likewise.
10214         * sysdeps/unix/sysv/sco3.2.4/__sigact.S: Likewise.
10215         * sysdeps/mach/hurd/__sigact.c: Likewise.
10216         * sysdeps/posix/__sigstmsk.c: Renamed to sigsetmask.c; added weak
10217         alias sigsetmask.
10218         * sysdeps/stub/__sigstmsk.c: Likewise.
10219         * sysdeps/unix/bsd/__sigstmsk.S: Likewise.
10220         * sysdeps/unix/bsd/bsd4.4/__sigstmsk.c: Likewise.
10221         * sysdeps/unix/bsd/osf1/alpha/__sigstmsk.S: Likewise.
10222         * sysdeps/stub/__getrusag.c: Renamed to getrusage.c; added weak
10223         alias getrusage.
10224         * sysdeps/unix/sysv/irix4/__getrusag.c: Likewise.
10225         * sysdeps/unix/common/__getrusag.S: Likewise.
10226         * hurd/task2pid.c: File removed.
10227         * hurd/setauth.c: File removed.
10228         * hurd/pid2task.c: File removed.
10229         * hurd/hurdsyms.c: File removed.
10230         * hurd/getdport.c: File removed.
10231         * hurd/fopenport.c: File removed.
10232         * mach/thread-sym.c: File removed.
10233         * mach/spin-syms.c: File removed.
10234         * mach/msgserver_t.c: File removed.
10235         * mach/msgserver.c: File removed.
10236         * mach/msg.c: File removed.
10237         * mach/mig_syms.c: File removed.
10238         * malloc/mcheck-init.c: File removed.
10239         * malloc/cfree.c: File removed.
10240         * io/flock.c: File removed.
10241         * io/write.c: File removed.
10242         * io/unlink.c: File removed.
10243         * io/umask.c: File removed.
10244         * io/symlink.c: File removed.
10245         * io/rmdir.c: File removed.
10246         * io/readlink.c: File removed.
10247         * io/read.c: File removed.
10248         * io/pipe.c: File removed.
10249         * io/open.c: File removed.
10250         * io/mkdir.c: File removed.
10251         * io/lstat.c: File removed.
10252         * io/lseek.c: File removed.
10253         * io/link.c: File removed.
10254         * io/isatty.c: File removed.
10255         * io/stat.c: File removed.
10256         * io/fstat.c: File removed.
10257         * io/fchown.c: File removed.
10258         * io/fchmod.c: File removed.
10259         * io/dup2.c: File removed.
10260         * io/dup.c: File removed.
10261         * io/close.c: File removed.
10262         * io/fcntl.c: File removed.
10263         * io/chmod.c: File removed.
10264         * io/chdir.c: File removed.
10265         * io/access.c: File removed.
10266         * io/chown.c: File removed.
10267         * time/tzset.c: File removed.
10268         * time/timelocal.c: File removed.
10269         * time/syms-time.c: File removed.
10270         * time/settod.c: File removed.
10271         * time/setitmr.c: File removed.
10272         * time/gettod.c: File removed.
10273         * time/getitmr.c: File removed.
10274         * time/adjtime.c: File removed.
10275         * termios/tcgetattr.c: File removed.
10276         * string/stpncpy.c: File removed.
10277         * string/rindex.c: File removed.
10278         * string/memccpy.c: File removed.
10279         * string/index.c: File removed.
10280         * string/bcmp.c: File removed.
10281         * stdlib/srand.c: File removed.
10282         * stdlib/random.c: File removed.
10283         * stdio/vsscanf.c: File removed.
10284         * stdio/vfscanf.c: File removed.
10285         * stdio/syms-stdio.c: File removed.
10286         * stdio/remove.c: File removed.
10287         * stdio/getline.c: File removed.
10288         * stdio/getdelim.c: File removed.
10289         * signal/ssignal.c: File removed.
10290         * signal/sigvec.c: File removed.
10291         * signal/sigsetmask.c: File removed.
10292         * signal/sigret.c: File removed.
10293         * signal/sigproc.c: File removed.
10294         * signal/sigpause.c: File removed.
10295         * signal/sigblock.c: File removed.
10296         * signal/sigaction.c: File removed.
10297         * signal/kill.c: File removed.
10298         * signal/gsignal.c: File removed.
10299         * setjmp/siglongjmp.c: File removed.
10300         * setjmp/_longjmp.c: File removed.
10301         * resource/getrusage.c: File removed.
10302         * posix/waitpid.c: File removed.
10303         * posix/wait4.c: File removed.
10304         * posix/wait3.c: File removed.
10305         * posix/wait.c: File removed.
10306         * posix/times.c: File removed.
10307         * posix/sysconf.c: File removed.
10308         * posix/setuid.c: File removed.
10309         * posix/setsid.c: File removed.
10310         * posix/setpgrp.c: File removed.
10311         * posix/setpgid.c: File removed.
10312         * posix/setgid.c: File removed.
10313         * posix/pathconf.c: File removed.
10314         * posix/getuid.c: File removed.
10315         * posix/getppid.c: File removed.
10316         * posix/getpid.c: File removed.
10317         * posix/getgrps.c: File removed.
10318         * posix/getgid.c: File removed.
10319         * posix/geteuid.c: File removed.
10320         * posix/getegid.c: File removed.
10321         * posix/fpathcon.c: File removed.
10322         * posix/fork.c: File removed.
10323         * posix/execve.c: File removed.
10324         * posix/environ.c: File removed.
10325         * misc/utimes.c: File removed.
10326         * misc/setreuid.c: File removed.
10327         * misc/setregid.c: File removed.
10328         * misc/select.c: File removed.
10329         * misc/sbrk.c: File removed.
10330         * misc/mknod.c: File removed.
10331         * misc/ioctl.c: File removed.
10332         * misc/getpgsz.c: File removed.
10333         * misc/gethstnm.c: File removed.
10334         * misc/getdtsz.c: File removed.
10335         * misc/data_start.c: File removed.
10336         * misc/brk.c: File removed.
10337         * math/scalb.c: File removed.
10338         * math/rint.c: File removed.
10339         * math/logb.c: File removed.
10340         * math/isnan.c: File removed.
10341         * math/isinf.c: File removed.
10342         * math/infnan.c: File removed.
10343         * math/finite.c: File removed.
10344         * math/expm1.c: File removed.
10345         * math/drem.c: File removed.
10346         * math/copysign.c: File removed.
10347         * math/__scalb.c: File removed.
10348         * dirent/getdents.c: File removed.
10350 Fri Jan 20 16:11:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10352         * sysdeps/generic/morecore.c (__default_morecore): Use
10353         __malloc_ptrdiff_t; don't cast arg to int.
10355         * resolv/getnetnamadr.c: Include "conf/portability.h".
10357 Thu Jan 19 02:20:04 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10359         * stdlib/strtol.c: Include errno.h.
10360         [QUAD] (ULONG_MAX): Define to a static variable initialized to
10361         ULONG_LONG_MAX. This is to work around a GCC bug in using the
10362         constant in arithmetic.
10364         * posix/unistd.h (daemon): Declare it.
10366         * malloc/mcheck-init.c: Remove GNU ld hacks.
10367         (__malloc_initialize_hook): Initialize this hook to turn_on_mcheck.
10368         * malloc/malloc.c (__malloc_initialize_hook): New hook variable.
10369         (initialize): Call the hook if set.
10370         * malloc/malloc.h: Use __malloc_{size,ptrdiff}_t in prototypes.
10371         (__malloc_initialize_hook): Declare new hook variable.
10373 Wed Jan 18 01:43:39 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10375         * hurd/hurdsig.c: Prepend `msg_' to server RPC names.
10376         * hurd/hurdpid.c: Likewise.
10377         * hurd/hurdauth.c: Likewise.
10379 Tue Jan 17 03:16:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10381         * sysdeps/mach/hurd/__select.c: If some replies are EINTR, succeed
10382         if any are successful.
10384         * hurd/hurdmsg.c: Prepend `msg_' to all RPC names.
10385         (_S_msg_get_exec_flags, _S_msg_set_exec_flags,
10386         _S_msg_set_some_exec_flags, _S_msg_clear_some_exec_flags): New
10387         functions.
10388         (_S_io_select_done, _S_dir_changed, _S_file_changed): Stubs removed.
10390         * hurd/hurdkill.c: __sig_post renamed to __msg_sig_post.
10391         * hurd/hurd-raise.c: Likewise.
10392         * hurd/hurdsig.c (post_reply): Prepend `msg_' to RPC names.
10394         * sysdeps/mach/hurd/ptrace.c: New file.
10396         * sysdeps/mach/hurd/__select.c: Revamped to use new io_select
10397         interface, which has normal EINTR semantics.  Instead of waiting
10398         for io_select_done notification messages, send io_select messages
10399         with short reply timeout and then wait for io_select_reply
10400         messages.
10402         * hurd/hurdexec.c (_hurd_exec): Pass (_hurd_exec_flags &
10403         EXEC_INHERITED) to file_exec.
10405         * hurd/hurdsig.c (post_reply): Take new arg UNTRACED; if nonzero,
10406         use sig_post_untraced_reply.  All callers changed.
10407         (abort_thread, abort_rpcs): Take same new arg and pass it through.
10408         All callers changed.
10409         (_hurd_internal_post_signal): Take new arg UNTRACED.
10410         If zero and process is traced, stop with SIGNO as stop signal.  If
10411         nonzero, resume process before delivering signal (unless
10412         ACT==stop).  Expand local fn sigwakeup into block at end taken iff
10413         SIGNO!=0.
10414         (signal_allowed): New function, broken out of _S_sig_post.
10415         (_S_sig_post): Call it.  Pass UNTRACED arg of false to
10416         _hurd_internal_post_signal.
10417         (_S_sig_post_untraced): New function.  Just like _S_sig_post, but
10418         pass true for UNTRACED.
10419         * hurd/hurd/signal.h (_hurd_internal_post_signal): Take new arg
10420         UNTRACED.
10421         * hurd/catch-exc.c (_S_catch_exception_raise): Pass UNTRACED arg
10422         to _hurd_internal_post_signal (value zero).
10424 Mon Jan 16 16:40:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10426         * hurd/hurdinit.c (_hurd_exec_flags): New variable.
10427         (_hurd_init): Initialize it from FLAGS arg.
10428         (_hurd_proc_init): If EXEC_TRACED is set in _hurd_exec_flags,
10429         raise a SIGTRAP signal (with a sigcode of zero).
10430         * hurd/hurd.h (_hurd_exec_flags): Declare it.
10432         * Version 1.09.5.
10434 Mon Jan 16 16:16:55 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
10436         * malloc/malloc.c (malloc): Fix 1-off in previous change.
10438 Mon Jan 16 15:49:07 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10440         * posix/glob/Makefile.in: Remove config.h and config.log.
10442 Sun Jan 15 06:56:47 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10444         * posix/glob/configure.in: Add AC_CONST check.
10446         * conf/portability.h: #undef sun.
10447         * resolv/res_query.c: Updated from BIND-4.9.3-BETA17.
10448         * resolv/getnetnamadr.c: Likewise.
10450         * socket/Makefile (headers): Add sockaddrcom.h.
10451         * inet/netinet/in.h: Include <sockaddrcom.h>.
10452         (struct sockaddr_in): Use the __SOCKADDR_COMMON macro.
10453         * socket/sys/un.h (struct sockaddr_in): Likewise.
10454         * socket/sys/socket.h (struct sockaddr): Likewise.
10455         * sysdeps/unix/bsd/bsd4.4/sockaddrcom.h: New file.
10456         * sysdeps/generic/sockaddrcom.h: New file.
10458         * sysdeps/unix/sysv/sysv4/ftruncate.c: New file.
10459         * sysdeps/unix/common/fcntlbits.h [__USE_SVID] (F_ALLOCSP,
10460         F_FREESP): New macros.
10461         * sysdeps/posix/truncate.c: New file.
10463         * malloc/malloc.c (malloc): Fix typos in RMS's change.
10465         * malloc/Makefile (dist-routines): Add malloc-find.
10466         * malloc/malloc.h (malloc_find_object_address): Declare it.
10467         * malloc/malloc-find.c: New file.
10469         * malloc/malloc.h (__malloc_ptrdiff_t): New macro, defined a la
10470         __malloc_size_t.
10471         (malloc_info): Use that type for member `busy.info.size'.
10473         * stdlib/strtol.c: Change uses of `long' keyword throughout to use
10474         `LONG' macro.
10475         [! QUAD] (LONG): Define as long.
10476         [QUAD] (LONG): Define as long long.
10477         [QUAD] (LONG_MIN, LONG_MAX, ULONG_MAX): Redefine to long long
10478         versions.
10479         [QUAD] (strtoul, strtol): Define to strtouq, strtoq.
10480         * stdlib/Makefile (routines): Add strtoq and strtouq.
10481         * stdlib/strtoq.c, stdlib/strtouq.c: New files.
10482         * stdlib/stdlib.h [__GNUC__ && __USE_BSD] (strtoq, strtouq):
10483         Declare them.
10485         * stdio/vfprintf.c: If there was a precision specified, ignore the
10486         0 flag and always pad with spaces.
10488         * stdio/vfprintf.c: Don't use strchr to skip text until next %.
10489         Use a loop and also stop on first !isascii char.
10491 Wed Jan 11 00:07:10 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
10493         * malloc/malloc.h (malloc_info): Change usage of .busy.info.size.
10495         * malloc/malloc.c (malloc): For a multi-block object, store a
10496         negative number into the busy.info.size of all but the first block.
10498 Tue Jan 10 13:45:20 1995  Brendan Kehoe  <brendan@zen.org>
10500         * sysdeps/unix/bsd/ultrix4/mips/start.S: Use s0, s1, and s2
10501         instead of t0, t1, and t2.
10503 Tue Jan 10 05:53:50 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10505         * malloc/memalign.c (__memalign_hook): New variable.
10506         (memalign): Call it if set.
10507         * malloc/malloc.h (__memalign_hook): Declare new variable.
10509 Wed Dec 28 03:27:21 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10511         * conf/portability.h: Include string.h and stdlib.h.
10512         * inet/netdb.h (NETDB_INTERNAL, NETDB_SUCCESS): New macros.
10513         * resolv/resolv.h, resolv/arpa/nameser.h, resolv/gethnamaddr.c,
10514         resolv/getnetbyname.c, resolv/getnetent.c, resolv/herror.c,
10515         resolv/res_mkquery.c, resolv/res_send.c, resolv/res_comp.c,
10516         resolv/res_debug.c, resolv/res_init.c: Updated from BIND 4.9.3-BETA14.
10518         * sysdeps/m68k/fpu/__math.h (__m81_inline): New macro.  Replace
10519         all uses of `extern __inline' with `__m81_inline'.
10521         * sysdeps/unix/bsd/hp/m68k/__vfork.S: Use subl, not decl.
10522         * sysdeps/unix/__fork.S: Swap args in subl.
10524         * posix/sys/types.h [__USE_MISC] (ushort, uint): New typedefs, for
10525         compatibility.
10527 Tue Dec 20 13:33:20 1994  Michael I Bushnell  <mib@geech.gnu.ai.mit.edu>
10529         * sysdeps/mach/hurd/__setpgrp.c (__setpgrp): Use __swtch_pri instead
10530         of swtch.
10531         * sysdeps/mach/hurd/__setsid.c (__setsid): Likewise.
10532         * mach/spin-solid.c (__spin_lock_solid): Likewise.
10534 Thu Dec 15 12:01:07 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10536         * inet/rcmd.c (iruserok): Use alloca instead of fixed-size buffer
10537         for PBUF.
10538         (__ivaliduser): Use getline instead of fgets with fixed-size buffer.
10540         * sysdeps/mach/hurd/Makefile (subdirs): Don't elide inet.
10542 Wed Dec 14 18:20:56 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10544         * sysdeps/alpha/bsd-setjmp.S: Reverse register and immediate args
10545         in `bis' insn; immediate must be second.
10547         * sysdeps/unix/__fork.S: Use subl instead of decl.
10548         * sysdeps/unix/i386/__fork.S: New file.
10550         * sysdeps/mach/hurd/alpha/trampoline.c (_hurd_setup_sighandler):
10551         Remove A macro; just use `asm volatile' with proper quotes in each
10552         line.
10553         * sysdeps/mach/alpha/sysdep.h (CALL_WITH_SP): Put parens around
10554         jmp target register.
10556         * time/africa, time/asia, time/australasia, time/emkdir.c,
10557         time/europe, time/ialloc.c, time/northamerica, time/private.h,
10558         time/scheck.c, time/yearistype, time/zdump.c, time/zic.c: New code
10559         and data from ADO 94h distribution.
10561         * sysdeps/sparc/setjmp.S: Use sethi and or to put address of
10562         __sigjmp_save in %g1 and jmp there.  jmp cannot contain a complete
10563         absolute pointer.  Put second store in jmp delay slot.
10565 Tue Dec 13 15:47:52 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
10567         * sysdeps/sparc/bsd-_setjmp.S: Use sethi and or to put address of
10568         __sigsetjmp in %g1 and jmp there.  jmp cannot contain a complete
10569         absolute pointer.
10570         * sysdeps/sparc/bsd-setjmp.S: Likewise.
10572         * configure.in: Use ; before } in { ... } exprs.
10576 See ChangeLog.4 for earlier changes.