diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-15 20:50:08 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-15 20:50:08 +0000 |
commit | 51d4a7eae1d1ad375146e43b74e0241ff774adea (patch) | |
tree | 7b86088578c5a698e2ce6a1dcf241c9ab5e33b0d /newlib/libc/stdlib/__atexit.c | |
parent | 1dcd520bb878cfd02e72f31b9e2d8ccdd3073a2c (diff) | |
download | cygnal-51d4a7eae1d1ad375146e43b74e0241ff774adea.tar.gz cygnal-51d4a7eae1d1ad375146e43b74e0241ff774adea.tar.bz2 cygnal-51d4a7eae1d1ad375146e43b74e0241ff774adea.zip |
2004-09-15 Jeff Johnston <jjohnstn@redhat.com>
* configure.host: Reverting 2004-09-14 change as fix has occurred on
Cygwin side.
* configure.in: Ditto.
* libc/configure.in: Ditto.
* libc/sys/configure.in: Ditto.
* configure: Ditto.
* libc/configure: Ditto.
* libc/sys/configure: Ditto.
* libc/include/sys/reent.h: Ditto.
* libc/stdlib/__atexit.c: Ditto.
* libc/stdlib/__call_atexit.c: Ditto.
* libc/stdlib/cxa_atexit.c: Ditto.
* libc/stdlib/cxa_finalize.c: Ditto.
* libc/sys/cygwin/Makefile.am: Removed again.
* libc/sys/cygwin/Makefile.in: Ditto.
* libc/sys/cygwin/aclocal.m4: Ditto.
* libc/sys/cygwin/configure: Ditto.
* libc/sys/cygwin/configure.in: Ditto.
* libc/sys/cygwin/dummy.c: Ditto.
* libc/sys/cygwin/sys/reent.h: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/__atexit.c')
-rw-r--r-- | newlib/libc/stdlib/__atexit.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/newlib/libc/stdlib/__atexit.c b/newlib/libc/stdlib/__atexit.c index 310b69174..04f494738 100644 --- a/newlib/libc/stdlib/__atexit.c +++ b/newlib/libc/stdlib/__atexit.c @@ -48,10 +48,8 @@ _DEFUN (__register_exitproc, _GLOBAL_REENT->_atexit = p; #ifndef _REENT_SMALL p->_on_exit_args._fntypes = 0; -#ifdef __REENT_HAS_CXA_SUPPORT p->_on_exit_args._is_cxa = 0; #endif -#endif } if (type != __et_atexit) @@ -70,20 +68,16 @@ _DEFUN (__register_exitproc, } args->_fntypes = 0; args->_is_cxa = 0; -#ifdef __REENT_HAS_CXA_SUPPORT p->_on_exit_args_ptr = args; -#endif } #else args = &p->_on_exit_args; #endif args->_fnargs[p->_ind] = arg; args->_fntypes |= (1 << p->_ind); -#ifdef __REENT_HAS_CXA_SUPPORT args->_dso_handle[p->_ind] = d; if (type == __et_cxa) args->_is_cxa |= (1 << p->_ind); -#endif } p->_fns[p->_ind++] = fn; #ifndef __SINGLE_THREAD__ |