diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-03-10 13:40:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-03-10 13:40:37 +0000 |
commit | eec4b45482cb8a39d6028257d6667febd9f28af0 (patch) | |
tree | 1d44a7bd745e3e9c5b6b154d0d2d480d0acdebd5 /stdlib/exit.c | |
parent | d7276cee74626d11aaed30b9f1928c44a79f186d (diff) | |
download | glibc-eec4b45482cb8a39d6028257d6667febd9f28af0.tar.gz glibc-eec4b45482cb8a39d6028257d6667febd9f28af0.tar.xz glibc-eec4b45482cb8a39d6028257d6667febd9f28af0.zip |
* stdlib/quick_exit.c (quick_exit): Pass &__quick_exit_funcs
instead of __quick_exit_funcs to __run_exit_handlers. * stdlib/at_quick_exit.c (at_quick_exit): Add attribute_hidden. * stdlib/exit.h (__run_exit_handlers): Add noreturn attribute. (__cxa_at_quick_exit): Remove attribute_hidden. * stdlib/exit.c (exit): Pass &__exit_funcs instead of __exit_funcs to __run_exit_handlers. * stdlib/cxa_at_quick_exit.c (__cxa_at_quick_exit): Remove attribute_hidden.
Diffstat (limited to 'stdlib/exit.c')
-rw-r--r-- | stdlib/exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/exit.c b/stdlib/exit.c index 539ae4bd7e..2235990285 100644 --- a/stdlib/exit.c +++ b/stdlib/exit.c @@ -97,6 +97,6 @@ __run_exit_handlers (int status, struct exit_function_list **listp, void exit (int status) { - __run_exit_handlers (status, __exit_funcs, true); + __run_exit_handlers (status, &__exit_funcs, true); } libc_hidden_def (exit) |