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-03-03 19:38:59 +0400
committerCorinna Vinschen <corinna@vinschen.de>2014-03-03 19:38:59 +0400
commit6dde3146fbd6f9296a8b9608d14d5591175b6cef (patch)
tree24184facfe926a07adf59a62969b1039c73c0216 /winsup/cygwin/exception.h
parentc7b9a091a5037a884948329b264f9b44102d28ce (diff)
* exception.h (exception::exception): Install vectored exception
handler rather than vectored continue handler.
Diffstat (limited to 'winsup/cygwin/exception.h')
-rw-r--r--winsup/cygwin/exception.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exception.h b/winsup/cygwin/exception.h
index 80569e8d5..95d8311fc 100644
--- a/winsup/cygwin/exception.h
+++ b/winsup/cygwin/exception.h
@@ -128,7 +128,7 @@ public:
kicks in. For some reason the vectored continue handler doesn't
get called if no unhandled exception filter is installed. */
SetUnhandledExceptionFilter (handle);
- AddVectoredContinueHandler (1, handle);
+ AddVectoredExceptionHandler (1, handle);
}
#else
save = _except_list;