diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-10-08 15:20:32 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-10-08 15:20:32 +0000 |
commit | b853ee82a2701bc91a8e5215191901ea37227647 (patch) | |
tree | d1862cb072299040dc19d6479a6c45860dcebb00 | |
parent | 88c24ea1c6226314b8b61f5e6b2dc0290e8d3713 (diff) | |
download | glibc-b853ee82a2701bc91a8e5215191901ea37227647.tar.gz glibc-b853ee82a2701bc91a8e5215191901ea37227647.tar.xz glibc-b853ee82a2701bc91a8e5215191901ea37227647.zip |
*** empty log message ***
Mon Oct 7 14:51:52 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * sysdeps/mach/hurd/pipestream.c: New file to avoid use of sysdeps/unix/pipestream.c. * sysdeps/mach/hurd/readdir_r.c: New file, guts copied entirely from sysdeps/mach/hurd/readdir.c. * stdio/freopen.c: Complete de-ansideclification. * stdio/fgets.c (fgets): Likewise. * stdio/getdelim.c (__getdelim): Likewise. * sysdeps/posix/pipestream.c (readdecl, writedecl, seekdecl, popen): Likewise. * sysdeps/unix/bsd/tcflow.c (tcflow): Likewise. * sysdeps/unix/bsd/tcflush.c (tcflush): Likewise. * sysdeps/mach/hurd/wait4.c (__wait4): Allow a null value for STAT_LOC without error. Fri Oct 4 17:30:22 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * hurd/hurdsig.c (signal_allowed): Add SIGWINCH to the list that controlling terminals are allowed to send. * hurd/alloc-fd.c (_hurd_alloc_fd): If SIZE is so big that the table is larger than the allowable address size, then return failure. Thu Oct 3 13:33:31 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * sysdeps/generic/gnu/types.h: Added __loff_t. Don't declare key_t here. * hurd/alloc-fd.c (_hurd_alloc_fd): If realloc fails, bother to set errno (to ENOMEM).
-rw-r--r-- | ChangeLog | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index c076757269..7ea8840bf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +Mon Oct 7 14:51:52 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * sysdeps/mach/hurd/pipestream.c: New file to avoid use of + sysdeps/unix/pipestream.c. + + * sysdeps/mach/hurd/readdir_r.c: New file, guts copied entirely + from sysdeps/mach/hurd/readdir.c. + + * stdio/freopen.c: Complete de-ansideclification. + * stdio/fgets.c (fgets): Likewise. + * stdio/getdelim.c (__getdelim): Likewise. + * sysdeps/posix/pipestream.c (readdecl, writedecl, seekdecl, + popen): + Likewise. + * sysdeps/unix/bsd/tcflow.c (tcflow): Likewise. + * sysdeps/unix/bsd/tcflush.c (tcflush): Likewise. + + * sysdeps/mach/hurd/wait4.c (__wait4): Allow a null value for + STAT_LOC without error. + Sun Oct 6 02:05:52 1996 Ulrich Drepper <drepper@cygnus.com> * posix/getopt.c: Add casts to prevent warnings. @@ -192,6 +212,15 @@ Thu Oct 3 21:07:58 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund. whether this is a statically linked program. The latter is now always defined. +Fri Oct 4 17:30:22 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * hurd/hurdsig.c (signal_allowed): Add SIGWINCH to the list that + controlling terminals are allowed to send. + + * hurd/alloc-fd.c (_hurd_alloc_fd): If SIZE is so big that the + table is larger than the allowable address size, then return + failure. + Fri Oct 4 02:08:10 1996 Bang Jun-Young <bangjy@nownuri.nowcom.co.kr> * po/ko.po: Update. @@ -242,6 +271,14 @@ Wed Oct 2 13:33:48 1996 Richard Henderson <rth@tamu.edu> stxncpy to sysdep_routines. Minor correction. +Thu Oct 3 13:33:31 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * sysdeps/generic/gnu/types.h: Added __loff_t. + Don't declare key_t here. + + * hurd/alloc-fd.c (_hurd_alloc_fd): If realloc fails, bother to + set errno (to ENOMEM). + Wed Oct 2 13:41:48 1996 Ulrich Drepper <drepper@cygnus.com> * sysdeps/generic/strtok.c: Don't set stored pointer to NULL when |