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:
authorChristopher Faylor <me@cgf.cx>2007-07-14 19:58:32 +0400
committerChristopher Faylor <me@cgf.cx>2007-07-14 19:58:32 +0400
commit6f76c68713a2bc3945cc4c3d27a5c266ed8284ca (patch)
tree2093104f1d417ceb910f067c8259cba1e22a9b79 /winsup/cygwin/exceptions.cc
parentd409af3661a5c0d654a8b5760b3034db9f4c6191 (diff)
* init.cc (in_dllentry): Delete.
(dll_entry): Remove assignment to deleted variable. * winsup.h (in_dllentry): Delete declaration. * exceptions.cc (inside_kernel): Use another method to see if we are in dll_entry phase.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r--winsup/cygwin/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 512e1bef5..efb7a5448 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -288,7 +288,7 @@ inside_kernel (CONTEXT *cx)
int res;
MEMORY_BASIC_INFORMATION m;
- if (in_dllentry)
+ if (!_my_tls.isinitialized ())
return true;
memset (&m, 0, sizeof m);