From f1b1505827a0cb3ec1512e309d43bffc85680418 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 5 Sep 2003 18:22:00 +0000 Subject: 2003-09-05 Jeff Johnston * libc/stdlib/exit.c (exit): Setting of struct _atexit ptr p is different for _REENT_SMALL than when using regular reent struct. --- newlib/ChangeLog | 6 ++++++ newlib/libc/stdlib/exit.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'newlib') diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 513c34d..14369fa 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,9 @@ +2003-09-05 Jeff Johnston + + * libc/stdlib/exit.c (exit): Setting of struct _atexit ptr p + is different for _REENT_SMALL than when using regular reent + struct. + 2003-09-05 Ben Elliston * libc/ctype/wctype.c (_DEFUN): Remove empty default case, as diff --git a/newlib/libc/stdlib/exit.c b/newlib/libc/stdlib/exit.c index 286c20d..dad2861 100644 --- a/newlib/libc/stdlib/exit.c +++ b/newlib/libc/stdlib/exit.c @@ -64,9 +64,8 @@ _DEFUN (exit, (code), register int n; int i; - p = &_GLOBAL_REENT->_atexit; - #ifdef _REENT_SMALL + p = &_GLOBAL_REENT->_atexit; args = p->_on_exit_args_ptr; if (args == NULL) @@ -83,6 +82,7 @@ _DEFUN (exit, (code), p->_fns[n] (); } #else + p = _GLOBAL_REENT->_atexit; do { args = & p->_on_exit_args; -- cgit v1.1