about summary refs log tree commit diff
path: root/hurd/hurdinit.c
diff options
context:
space:
mode:
authorThomas Bushnell, BSG <thomas@gnu.org>1996-09-06 00:08:55 +0000
committerThomas Bushnell, BSG <thomas@gnu.org>1996-09-06 00:08:55 +0000
commitacf51e02617b9b8da57b0ee982f96080ee954a38 (patch)
treea656620596b189465593e06b89fb31478dbcf2f3 /hurd/hurdinit.c
parent57ba7bb47152ed3e50805db2bca137cb866a9a71 (diff)
downloadglibc-acf51e02617b9b8da57b0ee982f96080ee954a38.tar.gz
glibc-acf51e02617b9b8da57b0ee982f96080ee954a38.tar.xz
glibc-acf51e02617b9b8da57b0ee982f96080ee954a38.zip
*** empty log message *** cvs/libc-960906
Thu Sep  5 13:18:25 1996  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>

	* sysdeps/mach/hurd/i386/init-first.c (__libc_argc, __libc_argv):
	New variables.
	(init1): Initialize them.
	* hurd/hurdinit.c (_hurd_setproc): Now that happens to be
	available, pass __libc_argv in call to __proc_set_arg_locations.

	* gmon/gmon.c (write_hist): Call __profile_frequency instead of
	hertz. 
	(hertz): Delete function.
	* gmon/Makefile (routines): Add `prof-freq'.
	* sysdeps/generic/prof-freq.c: New file.
	* sysdeps/mach/hurd/prof-freq.c: New (stubby) file.
	* sysdeps/mach/hurd/profil.c (profile_tick): New variable.
	(update_waiter): Store frequency in profile_tick.
	(__profile_frequency): New function.

	* sysdeps/mach/hurd/sendto.c (sendto): Use prototype definition
	syntax.

	* Rules (generated): Restore reference to $(generated).

	* mach/Machrules (mig.uh, mig.__h): Don't include $(user-MIGFLAGS)
	here. 

 	* malloc/free.c (free): __lib_malloc_lock -> __libc_malloc_lock.
	
	* malloc/free.c: Provide extern decl of __libc_malloc_lock.
	* malloc/realloc.c: Likewise.
	* malloc/malloc-find.c: Likewise.
	* malloc/malloc-size.c: Likewise.
	* malloc/malloc-walk.c: Likewise.
	* malloc/memalign.c: Likewise.

  	* mach/Machrules (mig.uh, mig.__h): Include $(user-MIGFLAGS) and
Diffstat (limited to 'hurd/hurdinit.c')
-rw-r--r--hurd/hurdinit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hurd/hurdinit.c b/hurd/hurdinit.c
index 7d946b8bff..df10b5d955 100644
--- a/hurd/hurdinit.c
+++ b/hurd/hurdinit.c
@@ -165,6 +165,7 @@ _hurd_setproc (process_t procserver)
 {
   error_t err;
   mach_port_t oldmsg;
+  extern char **__libc_argv;
 
   /* Give the proc server our message port.  */
   if (err = __proc_setmsgport (procserver, _hurd_msgport, &oldmsg))
@@ -175,8 +176,8 @@ _hurd_setproc (process_t procserver)
 
   /* Tell the proc server where our args and environment are.  */
   if (err = __proc_set_arg_locations (procserver,
-				      /* We don't know the ARGV location.  */
-				      (vm_address_t) 0,
+				      _hide_arguments ? 0 :
+				      (vm_address_t) __libc_argv,
 				      _hide_environment ? 0 :
 				      (vm_address_t) __environ))
     return err;