aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-09-17 05:42:29 +0000
committerRoland McGrath <roland@gnu.org>2002-09-17 05:42:29 +0000
commit4874b009bd4c92e46bd9bd2be1d4c4e0a7c4516e (patch)
treec41c18ba90c295e0a7e6b5039744345a4db04bda /sysdeps
parent54c1e6ca5bf44fc2d7cfaa860708ca86706c3327 (diff)
downloadglibc-4874b009bd4c92e46bd9bd2be1d4c4e0a7c4516e.tar
glibc-4874b009bd4c92e46bd9bd2be1d4c4e0a7c4516e.tar.gz
glibc-4874b009bd4c92e46bd9bd2be1d4c4e0a7c4516e.tar.bz2
glibc-4874b009bd4c92e46bd9bd2be1d4c4e0a7c4516e.zip
* include/unistd.h: Uncomment libc_hidden_proto for _exit.
* sysdeps/mach/hurd/_exit.c: Add libc_hidden_def. * sysdeps/generic/_exit.c: Likewise. 2002-09-12 Jakub Jelinek <jakub@redhat.com> * elf/rtld.c (struct dl_start_final_info): New. (_dl_start_final): Change second argument to struct dl_start_final_info *. Set start_time from info. (_dl_start): Remove bootstrap_map variable, add info. Define bootstrap_map as macro. If not DONT_USE_BOOTSTRAP_MAP, store HP_TIMING_NOW result into info.start_time.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/_exit.c3
-rw-r--r--sysdeps/mach/hurd/_exit.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/generic/_exit.c b/sysdeps/generic/_exit.c
index 64e8b9969b..673667df30 100644
--- a/sysdeps/generic/_exit.c
+++ b/sysdeps/generic/_exit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 94, 95, 96, 97, 99 Free Software Foundation, Inc.
+/* Copyright (C) 1991,94,95,96,97,99,2002 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
@@ -29,6 +29,7 @@ _exit (status)
status &= 0xff;
abort ();
}
+libc_hidden_def (_exit)
weak_alias (_exit, _Exit)
stub_warning (_exit)
diff --git a/sysdeps/mach/hurd/_exit.c b/sysdeps/mach/hurd/_exit.c
index 5740c16d1b..af0337b30c 100644
--- a/sysdeps/mach/hurd/_exit.c
+++ b/sysdeps/mach/hurd/_exit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 94, 95, 96, 97, 99 Free Software Foundation, Inc.
+/* Copyright (C) 1993,94,95,96,97,99,2002 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
@@ -52,4 +52,5 @@ _exit (status)
{
_hurd_exit (W_EXITCODE (status, 0));
}
+libc_hidden_def (_exit)
weak_alias (_exit, _Exit)