#endif /* !_REENT_SMALL */
+#define _REENT_CLEANUP(_ptr) ((_ptr)->__cleanup)
#define _REENT_EMERGENCY(_ptr) ((_ptr)->_emergency)
#define _REENT_ERRNO(_ptr) ((_ptr)->_errno)
#define _REENT_INC(_ptr) ((_ptr)->_inc)
#define __sfp_free(fp) ( (fp)->_fp = 0 )
#define CHECK_INIT(ptr) \
- do { if ((ptr) && !(ptr)->__cleanup) __sinit (ptr); } while (0)
+ do { if ((ptr) && !_REENT_CLEANUP(ptr)) __sinit (ptr); } while (0)
#define CHECK_STR_INIT(ptr) /* currently, do nothing */
#endif /* __ASSEMBLER__ */
void
__sinit (struct _reent *s)
{
- s->__cleanup = __cleanup;
+ _REENT_CLEANUP(s) = __cleanup;
_REENT_STDIN(s) = &s->__sf[0];
_REENT_STDIN(s)->_fp = SPE_STDIN;
if (ptr->_sig_func)
_free_r (ptr, ptr->_sig_func);*/
- if (ptr->__cleanup)
+ if (_REENT_CLEANUP(ptr))
{
/* cleanup won't reclaim memory 'coz usually it's run
before the program exits, and who wants to wait for that? */
- ptr->__cleanup (ptr);
+ _REENT_CLEANUP(ptr) (ptr);
}
/* Malloc memory not reclaimed; no good way to return memory anyway. */
{
__sfp_lock_acquire ();
- if (s->__cleanup)
+ if (_REENT_CLEANUP(s))
{
__sfp_lock_release ();
return;
}
/* make sure we clean up on exit */
- s->__cleanup = cleanup_stdio; /* conservative */
+ _REENT_CLEANUP(s) = cleanup_stdio; /* conservative */
global_stdio_init ();
__sfp_lock_release ();
do \
{ \
struct _reent *_check_init_ptr = (ptr); \
- if ((_check_init_ptr) && !(_check_init_ptr)->__cleanup) \
+ if ((_check_init_ptr) && !_REENT_CLEANUP(_check_init_ptr))\
__sinit (_check_init_ptr); \
} \
while (0)
* We're committed to buffering from here, so make sure we've
* registered to flush buffers on exit.
*/
- if (!reent->__cleanup)
+ if (!_REENT_CLEANUP(reent))
__sinit(reent);
#ifdef _FSEEK_OPTIMIZATION
#define CHECK_INIT(ptr) \
do \
{ \
- if ((ptr) && !(ptr)->__cleanup) \
+ if ((ptr) && !_REENT_CLEANUP(ptr)) \
__sinit (ptr); \
} \
while (0)
_REENT_INIT_PTR (&local_clib);
stackptr = stack;
altstack.ss_flags = SS_DISABLE;
- if (_GLOBAL_REENT->__cleanup)
+ if (_REENT_CLEANUP(_GLOBAL_REENT))
local_clib.__cleanup = _cygtls::cleanup_early;
}
read or written in the first stdio function call in the main thread.
To fix this issue we set __cleanup to _cygtls::cleanup_early here. */
- _REENT->__cleanup = _cygtls::cleanup_early;
+ _REENT_CLEANUP(_REENT) = _cygtls::cleanup_early;
}
/* Take over from libc's crt0.o and start the application. Note the