diff options
author | Christopher Faylor <me@cgf.cx> | 2002-10-07 04:12:54 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-10-07 04:12:54 +0000 |
commit | bc63ea872c24c2e362dc64b7063cc90c9b49935d (patch) | |
tree | 814f77c4b4a05f9d8a4773f790c0d791a440ca9a /winsup/cygwin/init.cc | |
parent | 66451d9590a72c3a6157d5c4378c781955c37386 (diff) | |
download | cygnal-bc63ea872c24c2e362dc64b7063cc90c9b49935d.tar.gz cygnal-bc63ea872c24c2e362dc64b7063cc90c9b49935d.tar.bz2 cygnal-bc63ea872c24c2e362dc64b7063cc90c9b49935d.zip |
* dcrt0.cc (do_exit): Call DisableThreadLibraryCalls since we don't need to
track thread detaches.
* init.cc (dll_entry): Reorganize slightly. Fix api_fatal message.
Diffstat (limited to 'winsup/cygwin/init.cc')
-rw-r--r-- | winsup/cygwin/init.cc | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/winsup/cygwin/init.cc b/winsup/cygwin/init.cc index 9c942f270..311429351 100644 --- a/winsup/cygwin/init.cc +++ b/winsup/cygwin/init.cc @@ -24,26 +24,18 @@ WINAPI dll_entry (HANDLE h, DWORD reason, void *static_load) cygwin_hmodule = (HMODULE) h; dynamically_loaded = (static_load == NULL); break; + case DLL_PROCESS_DETACH: + break; case DLL_THREAD_ATTACH: if (user_data->threadinterface) { if (!TlsSetValue (user_data->threadinterface->reent_index, &user_data->threadinterface->reents)) - api_fatal ("Sig proc MT init failed\n"); + api_fatal ("thread initialization failed"); } break; - case DLL_PROCESS_DETACH: - break; case DLL_THREAD_DETACH: -#if 0 - pthread *thisthread = (pthread *) - TlsGetValue (user_data->threadinterface->thread_self_dwTlsIndex); - if (thisthread) { - /* Some non-pthread call created this thread, - * but we need to clean it up */ - thisthread->exit (0); - } -#endif + /* not invoked */; break; } return 1; |