diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2014-03-18 13:51:18 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2014-03-18 13:51:18 +0000 |
commit | 8c0389d33013d13b30bbcf5cbc274664127ff5c8 (patch) | |
tree | e9f39d6a0b242da0d962cf898ecc78d6ba0d687a /winsup/cygwin/exceptions.cc | |
parent | 4f0b5a097da2464a8d5120ccc64bf9cf24ddd890 (diff) | |
download | newlib-8c0389d33013d13b30bbcf5cbc274664127ff5c8.zip newlib-8c0389d33013d13b30bbcf5cbc274664127ff5c8.tar.gz newlib-8c0389d33013d13b30bbcf5cbc274664127ff5c8.tar.bz2 |
Partially revert patch from 2014-03-04.
* exception.h (exception::handler_installed): Declare.
(exception::exception): Install vectored exception handler on x86_64.
(exception::~exception): Remove for x86_64.
* exceptions.cc (exception::handler_installed): Define.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 4b1db9d..e9e8778 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -553,6 +553,8 @@ rtl_unwind (exception_list *frame, PEXCEPTION_RECORD e) #define CYG_EXC_CONTINUE_EXECUTION EXCEPTION_CONTINUE_EXECUTION #define CYG_EXC_CONTINUE_SEARCH EXCEPTION_CONTINUE_SEARCH +bool exception::handler_installed NO_COPY; + int exception::handle (LPEXCEPTION_POINTERS ep) #else |