diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-09-02 22:42:05 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-09-02 22:42:05 +0000 |
commit | ed027a53553d4935d9a65c434de7cb6bd963419c (patch) | |
tree | ab40776fc21c9745e274dc329f77d613f00e5b31 /newlib/libc/stdlib/on_exit.c | |
parent | b960d7bf2d82595c68c8de5963487d35dc58d10c (diff) | |
download | cygnal-ed027a53553d4935d9a65c434de7cb6bd963419c.tar.gz cygnal-ed027a53553d4935d9a65c434de7cb6bd963419c.tar.bz2 cygnal-ed027a53553d4935d9a65c434de7cb6bd963419c.zip |
2003-09-02 Thomas Pfaff <tpfaff@gmx.net>
* libc/stdlib/atexit.c: Rename _REENT to _GLOBAL_REENT throughout.
* libc/stdlib/exit.c : Ditto.
* libc/stdlib/on_exit.c: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/on_exit.c')
-rw-r--r-- | newlib/libc/stdlib/on_exit.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/stdlib/on_exit.c b/newlib/libc/stdlib/on_exit.c index b7bf6f304..f3383501f 100644 --- a/newlib/libc/stdlib/on_exit.c +++ b/newlib/libc/stdlib/on_exit.c @@ -74,7 +74,7 @@ _DEFUN (on_exit, /* _REENT_SMALL on_exit() doesn't allow more than the required 32 entries. */ #ifdef _REENT_SMALL - p = &_REENT->_atexit; + p = &_GLOBAL_REENT->_atexit; if (p->_ind >= _ATEXIT_SIZE) return -1; args = p->_on_exit_args_ptr; @@ -87,16 +87,16 @@ _DEFUN (on_exit, p->_on_exit_args_ptr = args; } #else - if ((p = _REENT->_atexit) == NULL) - _REENT->_atexit = p = &_REENT->_atexit0; + if ((p = _GLOBAL_REENT->_atexit) == NULL) + _GLOBAL_REENT->_atexit = p = &_GLOBAL_REENT->_atexit0; if (p->_ind >= _ATEXIT_SIZE) { if ((p = (struct _atexit *) malloc (sizeof *p)) == NULL) return -1; p->_ind = 0; p->_on_exit_args._fntypes = 0; - p->_next = _REENT->_atexit; - _REENT->_atexit = p; + p->_next = _GLOBAL_REENT->_atexit; + _GLOBAL_REENT->_atexit = p; } args = & p->_on_exit_args; #endif |