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>2008-02-13 12:42:22 +0300
committerCorinna Vinschen <corinna@vinschen.de>2008-02-13 12:42:22 +0300
commit5cb998e66c8a342dad9ea03fcb5126f12ec50156 (patch)
treea5ae719b8e10a5ac8cb4537b0a20dc28d557ed7b /winsup/cygwin/wincap.h
parent9cb5dea0e22c3fdde4f0c638b052a0186587cf8f (diff)
* cygtls.cc (_cygtls::init_exception_handler): Revert patch
from 2005-12-02. * exceptions.cc (stack_info::walk): Add workaround for NT 5.2 64 bit OSes. * wincap.h (wincaps::has_restricted_stack_args): New element. * wincap.cc: Implement above element throughout. (wincapc::init): Reset has_restricted_stack_args if not running under WOW64.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r--winsup/cygwin/wincap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index 55dc19cdb..167ea5e19 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -39,6 +39,7 @@ struct wincaps
unsigned has_gaa_prefixes : 1;
unsigned has_gaa_on_link_prefix : 1;
unsigned supports_all_posix_ai_flags : 1;
+ unsigned has_restricted_stack_args : 1;
};
class wincapc
@@ -84,6 +85,7 @@ public:
bool IMPLEMENT (has_gaa_prefixes)
bool IMPLEMENT (has_gaa_on_link_prefix)
bool IMPLEMENT (supports_all_posix_ai_flags)
+ bool IMPLEMENT (has_restricted_stack_args)
#undef IMPLEMENT
};