* dcrt0.cc (dll_crt0_1): Call cygwin_exit to ensure that destructors are

handled correctly.
This commit is contained in:
Christopher Faylor 2005-05-10 16:08:46 +00:00
parent d699bc988f
commit a586e5b6ae
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-05-10 Christopher Faylor <cgf@timesys.com>
* dcrt0.cc (dll_crt0_1): Call cygwin_exit to ensure that destructors
are handled correctly.
2005-05-10 Corinna Vinschen <corinna@vinschen.de>
* path.cc (path_conv::check): Set correct file attributes for socket

View File

@ -41,6 +41,8 @@ details. */
#define PREMAIN_LEN (sizeof (user_data->premain) / sizeof (user_data->premain[0]))
extern "C" void cygwin_exit (int);
void ld_preload ();
HANDLE NO_COPY hMainProc = (HANDLE) -1;
@ -885,7 +887,7 @@ dll_crt0_1 (char *)
wait_for_sigthread ();
ld_preload ();
if (user_data->main)
exit (user_data->main (__argc, __argv, *user_data->envptr));
cygwin_exit (user_data->main (__argc, __argv, *user_data->envptr));
}
struct _reent *