diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-08-20 22:36:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-08-20 22:36:43 +0000 |
commit | fb84593c439da7998f29777525b4ad49d379b2a1 (patch) | |
tree | 3423afc26d2462efec045b0397c94a2cc181aa9d /sysdeps/unix/sysv/linux/init-first.c | |
parent | b83fb35cd1eb2f8d2178f943f94039771cb18820 (diff) | |
download | glibc-fb84593c439da7998f29777525b4ad49d379b2a1.tar.gz glibc-fb84593c439da7998f29777525b4ad49d379b2a1.tar.xz glibc-fb84593c439da7998f29777525b4ad49d379b2a1.zip |
* csu/libc-start.c: Don't handle VDSO_SETUP here.
* sysdeps/unix/sysv/linux/init-first.c: Handle it here instead. * sysdeps/unix/sysv/linux/x86_64/libc-start.c: Renamed to... * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...this. New file. * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Move VDSO_SETUP code to... * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...here. New file.
Diffstat (limited to 'sysdeps/unix/sysv/linux/init-first.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/init-first.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/init-first.c b/sysdeps/unix/sysv/linux/init-first.c index b061a848c6..7b2333d4bf 100644 --- a/sysdeps/unix/sysv/linux/init-first.c +++ b/sysdeps/unix/sysv/linux/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Linux version. - Copyright (C) 1995-2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1995-2004, 2005, 2007 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 @@ -82,6 +82,10 @@ _init (int argc, char **argv, char **envp) _dl_non_dynamic_init (); #endif +#ifdef VDSO_SETUP + VDSO_SETUP (); +#endif + __init_misc (argc, argv, envp); #ifdef USE_NONOPTION_FLAGS |