Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-11-20 19:23:14 +0300
committerCorinna Vinschen <corinna@vinschen.de>2014-11-20 19:23:14 +0300
commitf2a0724fca10e91e2d5f3120c7c6db6d9462a905 (patch)
tree2a817b6d97a4a70fe3e9ad7a0a6937bcb9893317 /winsup/cygwin/miscfuncs.cc
parent556b13a0c2a94c35ddcb373232d31d99e9a661d7 (diff)
* init.cc (dll_entry): Call _my_tls.remove with INFINITE wait period
to avoid SEGVs and subsequent hangs in _cygtls::find_tls. * miscfuncs.cc (thread_wrapper): Ditto.
Diffstat (limited to 'winsup/cygwin/miscfuncs.cc')
-rw-r--r--winsup/cygwin/miscfuncs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc
index eee47a53a..14ead9152 100644
--- a/winsup/cygwin/miscfuncs.cc
+++ b/winsup/cygwin/miscfuncs.cc
@@ -564,7 +564,7 @@ thread_wrapper (PVOID arg)
cfree (arg);
/* Remove _cygtls from this stack since it won't be used anymore. */
- _my_tls.remove (0);
+ _my_tls.remove (INFINITE);
/* Set stack values in TEB */
PTEB teb = NtCurrentTeb ();