mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-29 10:30:50 +08:00
98650d2fa2
* configure.host: Add Cygwin sys directory. * configure.in: Do not set CRT0 for cygwin. * libc/configure.in: Ditto. * libc/sys/configure.in: Ditto. * configure: Regenerated. * libc/configure: Ditto. * libc/sys/configure: Ditto. * libc/include/sys/reent.h: Add __REENT_HAS_CXA_SUPPORT flag. * libc/stdlib/__atexit.c: Keep cxa support protected by new __REENT_HAS_CXA_SUPPORT flag. * libc/stdlib/__call_atexit.c: Ditto. * libc/stdlib/cxa_atexit.c: Ditto. * libc/stdlib/cxa_finalize.c: Ditto. * libc/sys/cygwin/Makefile.am: New file. * 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. This file is stabilized version of reent.h.
27 lines
451 B
C
27 lines
451 B
C
/*
|
|
* Implementation of __cxa_atexit.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <reent.h>
|
|
#include <sys/lock.h>
|
|
#include "atexit.h"
|
|
|
|
#ifdef __REENT_HAS_CXA_SUPPORT
|
|
/*
|
|
* Register a function to be performed at exit or DSO unload.
|
|
*/
|
|
|
|
int
|
|
_DEFUN (__cxa_atexit,
|
|
(fn, arg, d),
|
|
void (*fn) (void *) _AND
|
|
void *arg _AND
|
|
void *d)
|
|
{
|
|
return __register_exitproc (__et_cxa, (void (*)(void)) fn, arg, d);
|
|
}
|
|
|
|
#endif /* __REENT_HAS_CXA_SUPPORT */
|