From 8443afdc7ccfb5b56468e6beea99142ccdf8ebc4 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 24 Mar 2001 14:36:00 +0000 Subject: * sysdeps/mach/hurd/i386/init-first.c: Include . (_dl_argv): Declare. (init) [SHARED]: Readjust _dl_argv if we switched to a new stack. 2001-03-24 Mark Kettenis * sysdeps/mach/hurd/i386/init-first.c: Include . (_dl_argv): Declare. (init) [SHARED]: Readjust _dl_argv if we switched to a new stack. --- sysdeps/mach/hurd/i386/init-first.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/sysdeps/mach/hurd/i386/init-first.c b/sysdeps/mach/hurd/i386/init-first.c index b26a9da7dc..4e1b6bc835 100644 --- a/sysdeps/mach/hurd/i386/init-first.c +++ b/sysdeps/mach/hurd/i386/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. For i386/Hurd. - Copyright (C) 1995,96,97,98,99,2000 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,6 +17,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include #include #include #include @@ -42,6 +43,7 @@ int __libc_multiple_libcs = 1; extern int __libc_argc; extern char **__libc_argv; +extern char **_dl_argv; void *(*_cthread_init_routine) (void); /* Returns new SP to use. */ void (*_cthread_exit_routine) (int status) __attribute__ ((__noreturn__)); @@ -165,6 +167,13 @@ init (int *data) newsp = memcpy (newsp - ((char *) &d[1] - (char *) data), data, (char *) d - (char *) data); +#ifdef SHARED + /* And readjust the dynamic linker's idea of where the argument + vector lives. */ + assert (_dl_argv == argv); + _dl_argv = (void *) ((int *) newsp + 1); +#endif + /* Set up the Hurd startup data block immediately following the argument and environment pointers on the new stack. */ od = (newsp + ((char *) d - (char *) data)); -- cgit v1.2.3