Age | Commit message (Collapse) | Author |
|
|
|
* term.h (clear_queue): Change return type to void.
|
|
* users.c: Include <hurd/fshelp.h> for fshelp_isowner decl.
|
|
* i386/csw.S (cproc_prepare): Take address of cthread_body as third
arg, so we don't have to deal with PIC magic to find its address
without producing a text reloc.
* cprocs.c (cproc_create): Pass &cthread_body to cproc_prepare.
|
|
* ps.c (main): Fix return type to int, and use return.
* ids.c (main): Likewise.
* w.c (main): Likewise.
* login.c (main): Likewise.
* settrans.c (main): Likewise.
* showtrans.c (main): Likewise.
* fsysopts.c (main): Likewise.
* storeinfo.c (main): Likewise.
* w.c (main): Avoid warning from `while (a = b)'.
|
|
* ps.c (main): Fix return type to int, and use return.
* ids.c (main): Likewise.
* w.c (main): Likewise.
* login.c (main): Likewise.
* settrans.c (main): Likewise.
* showtrans.c (main): Likewise.
* fsysopts.c (main): Likewise.
* storeinfo.c (main): Likewise.
|
|
* mount.c (mount_root): Make perror explanation strings consistent.
* mount.c (pmap_initialize_rpc): Make static.
(mount_initialize_rpc): Likewise.
|
|
* firmlink.c (main): Fix return type to int, and use return.
* fwd.c (main): Likewise.
* new-fifo.c (main): Likewise.
* magic.c (main): Likewise.
* fifo.c (main): Likewise.
* null.c (main): Likewise.
|
|
* swapon.c (main): Fix return type to int, and use return.
|
|
* storeio.c (main): Fix return type to int, and use return.
|
|
* pflocal.c (main): Fix return type to int, and use return.
|
|
|
|
* getty.c: Include <string.h> for basename decl.
|
|
|
|
* configure.in: Grok --{en,dis}able-profile, default enable.
* config.make.in (build-profiled): New variable, from @enable_profile@.
* Makeconf (no_prof): Set to t if $(build-profiled) is not no.
|
|
|
|
* config.make.in (build-profiled): New variable, subst @profile@.
* Makeconf (no_prof): Set to t if $(build-profiled) is not no.
|
|
* config.make.in (build-profiled): New variable, subst @profile@.
* Makeconf (no_prof): Set to t if $(build-profiled) is not no.
* Makeconf: Inhibit $(target).prof_d include if no_prof=t.
|
|
|
|
* dir-lookup.c (diskfs_S_dir_lookup: short_circuited_callback1): Fix
type of arg `argz_len' to use size_t *.
|
|
|
|
|
|
* exec.c (do_exec): Set boot->phdr_addr and boot->user_entry after
loading, to addresses adjusted for actual run-time load address.
|
|
* fs.defs (dir_lookup): Update interface specification in the
comment to reflect current reality.
|
|
|
|
|
|
* dir-lookup.c (trivfs_S_dir_lookup): In null-pathname case, this
should work even for non-directories, so actually do it, making
this a simpler case of trivfs_S_fsys_getroot.
|
|
* dir-lookup.c (netfs_S_dir_lookup): Don't require the node to be
a directory in the null pathname case.
|
|
* dir-lookup.c (diskfs_S_dir_lookup): Don't require the node to be
a directory in the null pathname case. (Thus reverting one of the
changes of June 15, 1994.)
|
|
Tue Jul 7 11:39:08 1998 Thomas Bushnell, n/BSG <tb@mit.edu>
* Makeconf (CPPFLAGS): Include $($*-CPPFLAGS). Reported by Gordon
Matzigkeit (gord@gnu.org).
|
|
* bugaddr.c: Update to bug-hurd@gnu.org. Reported by Joel
N. Weber II (devnull@gnu.org).
|
|
* Makeconf (%.o): New rules (from %.c and %.S) so that we can
specify file-specific CPPFLAGS (already in use by utils/Makefile
for utils/ping.c).
(%_pic.o, $_p.o, make-deps): Also grok file-specific CPPFLAGS.
Reported by Gordon Matzigkeit (gord@gnu.org).
* INSTALL-cross: Updated by Gordon Matzigkeit (gord@gnu.org).
|
|
|
|
* lookup.c (diskfs_lookup): If NAME is empty, return an error.
|
|
|
|
|
|
|
|
* cthreads.c (cthread_fork_prepare): Don't call
malloc_fork_prepare since we are no longer providing our own
malloc in this library.
(cthread_fork_parent): Likewise, for malloc_fork_parent.
(cthread_fork_child): Likewize, for malloc_fork_child.
|
|
* bootstrap.c (parse_script): Free BUF before returning. Reported
by Katusya Tanaka (wyvern@pb3.so-net.ne.jp).
|
|
* file-get-trans.c (diskfs_S_file_get_translator) [S_ISCHR ||
S_ISBLK]: Free BUF after using it. Reported by Katusya Tanaka
(wyvern@pb3.so-net.ne.jp).
|
|
* init.c (setup_terminal): Free LINE after done using it.
(process_rc_script): Likewise free RCARGS.
Both reported by Katusya Tanaka (wyvern@pb3.so-net.ne.jp).
|
|
* io-ops.c (S_io_select): When returning EINTR after cancellation,
deallocate REPLY because the stub won't do it for us. Reported by
UCHIYAMA Yasushi (uch@nop.or.jp).
|
|
|
|
* hurd.texi: Various doc fixes submitted by Gordon Matzigkeit
(gord@m-tech.ab.ca).
|
|
* Makefile (srcdir): Don't set srcdir, since this is either done
in the generated Makefile or in Makeconf. Just include ./Makeconf
directly.
* configure.in (makefiles): Check for $ac_unique_file, rather than
doing string comparisons to determine if we are configured in the
source directory. This works for silly things like `srcdir=./.'.
|
|
* ping.c (MAXHOSTNAMELEN): Don't define.
(main): Delete variable `hnamebuf'. Store directly into properly
malloced `hostname' variable.
|
|
* ping.c: New file. Originally P.D. from US Army; then modified
by BSD, then added to Linux. Taken from Linux ping and adapted
for Hurd and submitted for inclusion by Kunihiro Ishiguro
(kunihiro@zebra.org).
* Makefile (targets): Add `ping'.
(SRCS): Add `ping.c'.
(ping-CPPFLAGS): New variable, to find <linux/icmp.h> in the
pfinet sources.
(INSTALL-ping-ops): Install ping suid root.
(ping): Depend on `../libthreads/libthreads.a'.
|
|
|
|
|
|
|