diff options
Diffstat (limited to 'winsup/cygwin/lib/atexit.c')
-rw-r--r-- | winsup/cygwin/lib/atexit.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/winsup/cygwin/lib/atexit.c b/winsup/cygwin/lib/atexit.c index 0b724771a..af82d1de7 100644 --- a/winsup/cygwin/lib/atexit.c +++ b/winsup/cygwin/lib/atexit.c @@ -9,6 +9,7 @@ Cygwin license. Please consult the file "CYGWIN_LICENSE" for details. */ #include <stddef.h> +#include <windows.h> /* Statically linked replacement for the former cygwin_atexit. We need the function here to be able to access the correct __dso_handle of the @@ -18,6 +19,16 @@ atexit (void (*fn) (void)) { extern int __cxa_atexit(void (*)(void*), void*, void*); extern void *__dso_handle; + extern void *__ImageBase; - return __cxa_atexit ((void (*)(void*))fn, NULL, &__dso_handle); + /* Check for being called from inside the executable. If so, use NULL + as __dso_handle. This allows to link executables with GCC versions + not providing __dso_handle in crtbegin{S}.o. In this case our own + __dso_handle defined in lib/dso_handle.c is used. However, our + __dso_handle always points to &__ImageBase, while the __dso_handle + for executables provided by crtbegin.o usually points to NULL. + That's what we remodel here. */ + return __cxa_atexit ((void (*)(void*))fn, NULL, + &__ImageBase == (void **) GetModuleHandleW (NULL) + ? NULL : &__dso_handle); } |