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.
This commit is contained in:
Jeff Johnston 2003-09-02 22:42:05 +00:00
parent b960d7bf2d
commit ed027a5355
4 changed files with 19 additions and 13 deletions

View File

@ -1,3 +1,9 @@
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.
2003-08-27 Corinna Vinschen <corinna@vinschen.de> 2003-08-27 Corinna Vinschen <corinna@vinschen.de>
* libc/include/reent.h: Define stat64 as __stat64 when * libc/include/reent.h: Define stat64 as __stat64 when

View File

@ -67,19 +67,19 @@ _DEFUN (atexit,
/* _REENT_SMALL atexit() doesn't allow more than the required 32 entries. */ /* _REENT_SMALL atexit() doesn't allow more than the required 32 entries. */
#ifndef _REENT_SMALL #ifndef _REENT_SMALL
if ((p = _REENT->_atexit) == NULL) if ((p = _GLOBAL_REENT->_atexit) == NULL)
_REENT->_atexit = p = &_REENT->_atexit0; _GLOBAL_REENT->_atexit = p = &_GLOBAL_REENT->_atexit0;
if (p->_ind >= _ATEXIT_SIZE) if (p->_ind >= _ATEXIT_SIZE)
{ {
if ((p = (struct _atexit *) malloc (sizeof *p)) == NULL) if ((p = (struct _atexit *) malloc (sizeof *p)) == NULL)
return -1; return -1;
p->_ind = 0; p->_ind = 0;
p->_on_exit_args._fntypes = 0; p->_on_exit_args._fntypes = 0;
p->_next = _REENT->_atexit; p->_next = _GLOBAL_REENT->_atexit;
_REENT->_atexit = p; _GLOBAL_REENT->_atexit = p;
} }
#else #else
p = &_REENT->_atexit; p = &_GLOBAL_REENT->_atexit;
if (p->_ind >= _ATEXIT_SIZE) if (p->_ind >= _ATEXIT_SIZE)
return -1; return -1;
#endif #endif

View File

@ -64,7 +64,7 @@ _DEFUN (exit, (code),
register int n; register int n;
int i; int i;
p = &_REENT->_atexit; p = &_GLOBAL_REENT->_atexit;
#ifdef _REENT_SMALL #ifdef _REENT_SMALL
args = p->_on_exit_args_ptr; args = p->_on_exit_args_ptr;
@ -98,8 +98,8 @@ _DEFUN (exit, (code),
while (p); while (p);
#endif #endif
if (_REENT->__cleanup) if (_GLOBAL_REENT->__cleanup)
(*_REENT->__cleanup) (_REENT); (*_GLOBAL_REENT->__cleanup) (_GLOBAL_REENT);
_exit (code); _exit (code);
} }

View File

@ -74,7 +74,7 @@ _DEFUN (on_exit,
/* _REENT_SMALL on_exit() doesn't allow more than the required 32 entries. */ /* _REENT_SMALL on_exit() doesn't allow more than the required 32 entries. */
#ifdef _REENT_SMALL #ifdef _REENT_SMALL
p = &_REENT->_atexit; p = &_GLOBAL_REENT->_atexit;
if (p->_ind >= _ATEXIT_SIZE) if (p->_ind >= _ATEXIT_SIZE)
return -1; return -1;
args = p->_on_exit_args_ptr; args = p->_on_exit_args_ptr;
@ -87,16 +87,16 @@ _DEFUN (on_exit,
p->_on_exit_args_ptr = args; p->_on_exit_args_ptr = args;
} }
#else #else
if ((p = _REENT->_atexit) == NULL) if ((p = _GLOBAL_REENT->_atexit) == NULL)
_REENT->_atexit = p = &_REENT->_atexit0; _GLOBAL_REENT->_atexit = p = &_GLOBAL_REENT->_atexit0;
if (p->_ind >= _ATEXIT_SIZE) if (p->_ind >= _ATEXIT_SIZE)
{ {
if ((p = (struct _atexit *) malloc (sizeof *p)) == NULL) if ((p = (struct _atexit *) malloc (sizeof *p)) == NULL)
return -1; return -1;
p->_ind = 0; p->_ind = 0;
p->_on_exit_args._fntypes = 0; p->_on_exit_args._fntypes = 0;
p->_next = _REENT->_atexit; p->_next = _GLOBAL_REENT->_atexit;
_REENT->_atexit = p; _GLOBAL_REENT->_atexit = p;
} }
args = & p->_on_exit_args; args = & p->_on_exit_args;
#endif #endif