diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-12-22 20:10:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-12-22 20:10:10 +0000 |
commit | a334319f6530564d22e775935d9c91663623a1b4 (patch) | |
tree | b5877475619e4c938e98757d518bb1e9cbead751 /stdlib/exit.c | |
parent | 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff) | |
download | glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.gz glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.xz glibc-a334319f6530564d22e775935d9c91663623a1b4.zip |
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'stdlib/exit.c')
-rw-r--r-- | stdlib/exit.c | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/stdlib/exit.c b/stdlib/exit.c index bc4cb0fd08..ac247a1233 100644 --- a/stdlib/exit.c +++ b/stdlib/exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,95,96,97,99,2001,2002,2005 Free Software Foundation, Inc. +/* Copyright (C) 1991,95,96,97,99,2001,02 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 @@ -19,11 +19,12 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> -#include <sysdep.h> #include "exit.h" +#ifdef HAVE_GNU_LD #include "set-hooks.h" DEFINE_HOOK (__libc_atexit, (void)) +#endif /* Call all functions registered with `atexit' and `on_exit', @@ -46,33 +47,17 @@ exit (int status) &__exit_funcs->fns[--__exit_funcs->idx]; switch (f->flavor) { - void (*atfct) (void); - void (*onfct) (int status, void *arg); - void (*cxafct) (void *arg, int status); - case ef_free: case ef_us: break; case ef_on: - onfct = f->func.on.fn; -#ifdef PTR_DEMANGLE - PTR_DEMANGLE (onfct); -#endif - onfct (status, f->func.on.arg); + (*f->func.on.fn) (status, f->func.on.arg); break; case ef_at: - atfct = f->func.at; -#ifdef PTR_DEMANGLE - PTR_DEMANGLE (atfct); -#endif - atfct (); + (*f->func.at) (); break; case ef_cxa: - cxafct = f->func.cxa.fn; -#ifdef PTR_DEMANGLE - PTR_DEMANGLE (cxafct); -#endif - cxafct (f->func.cxa.arg, status); + (*f->func.cxa.fn) (f->func.cxa.arg, status); break; } } @@ -85,7 +70,14 @@ exit (int status) free (old); } +#ifdef HAVE_GNU_LD RUN_HOOK (__libc_atexit, ()); +#else + { + extern void _cleanup (void); + _cleanup (); + } +#endif _exit (status); } |