* init.cc (dll_entry): Call prime_threads after dll_crt0_0 to avoid conflicts

between heap allocation and thread stack allocation.
This commit is contained in:
Christopher Faylor 2005-12-16 20:40:03 +00:00
parent a4cd7f20f7
commit 6ba157bb2e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-16 Christopher Faylor <cgf@timesys.com>
* init.cc (dll_entry): Call prime_threads after dll_crt0_0 to avoid
conflicts between heap allocation and thread stack allocation.
2005-12-16 Christopher Faylor <cgf@timesys.com>
* hookapi.cc (putmem): Remove query of previous memory protection since

View File

@ -160,8 +160,8 @@ dll_entry (HANDLE h, DWORD reason, void *static_load)
&& is_wow64_proc)
respawn_wow64_process ();
prime_threads ();
dll_crt0_0 ();
prime_threads (); // this should be the last thing to happen
break;
case DLL_PROCESS_DETACH:
break;