From 15d5a9b98b974e1e2cac29662d67d885f00a7048 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 22 Sep 2002 20:55:21 +0000 Subject: [PATCH] * sysdeps/mach/hurd/dl-sysdep.c (_exit): Add alias __GI__exit. --- ChangeLog | 4 ++++ sysdeps/mach/hurd/dl-sysdep.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8e32138340..a25f1e9fa4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-09-22 Roland McGrath + + * sysdeps/mach/hurd/dl-sysdep.c (_exit): Add alias __GI__exit. + 2002-09-22 Andreas Schwab * cppflags-iterator.mk (CPPFLAGS-$(cpp-src)): Append, not overwrite. diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index e0e182c208..6d009401b9 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -579,6 +579,9 @@ _exit (int status) while (__task_terminate (__mach_task_self ())) __mach_task_self_ = (__mach_task_self) (); } +/* We need this alias to satisfy references from libc_pic.a objects + that were affected by the libc_hidden_proto declaration for _exit. */ +strong_alias (_exit, __GI__exit) /* Try to get a machine dependent instruction which will make the program crash. This is used in case everything else fails. */