Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(702)

Unified Diff: src/isolate.h

Issue 606013002: Install function tables for the code range on Win64 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@bleeding_edge
Patch Set: updates Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index a92554ebe3d19135e3671e29669fd83005e4170b..a501259cc00464d2e3597c27daedd4e521526282 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1005,6 +1005,13 @@ class Isolate {
bool serializer_enabled() const { return serializer_enabled_; }
+#ifdef _WIN64
+ void set_exception_filter(WinExceptionFilter exception_filter) {
+ DCHECK(state_ != INITIALIZED);
+ exception_filter_ = exception_filter;
+ }
+#endif
+
bool IsDead() { return has_fatal_error_; }
void SignalFatalError() { has_fatal_error_ = true; }
@@ -1272,6 +1279,10 @@ class Isolate {
// Whether the isolate has been created for snapshotting.
bool serializer_enabled_;
+#ifdef _WIN64
+ WinExceptionFilter exception_filter_;
+#endif
+
// True if fatal error has been signaled for this isolate.
bool has_fatal_error_;

Powered by Google App Engine
This is Rietveld 408576698