* globals.cc (__isthreaded): New global variable. Explain what it's

used for.
	* miscfuncs.cc (thread_wrapper): Set __isthreaded to 1 here.
This commit is contained in:
Corinna Vinschen
2013-05-21 18:53:23 +00:00
parent cc4a1b830d
commit 3e8d2576fd
3 changed files with 16 additions and 0 deletions

View File

@ -473,6 +473,9 @@ thread_wrapper (PVOID arg)
if (!arg)
return ERROR_INVALID_PARAMETER;
/* The process is now threaded. Note the fact for later usage. */
__isthreaded = 1;
/* Fetch thread wrapper info and free from cygheap. */
thread_wrapper_arg wrapper_arg = *(thread_wrapper_arg *) arg;
cfree (arg);