Chromium Code Reviews

Unified Diff: runtime/bin/process_unsupported.cc

Issue 2463923002: Don't use IsolateData for the exit hook as multiple embedders share the dart/bin while using differ… (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: runtime/bin/process_unsupported.cc
diff --git a/runtime/bin/process_unsupported.cc b/runtime/bin/process_unsupported.cc
index 64bed269e109ccda1bc9e70cca4b080982b82f73..d91b83c153254ee4ef0816cb04f01a93b35acab9 100644
--- a/runtime/bin/process_unsupported.cc
+++ b/runtime/bin/process_unsupported.cc
@@ -15,6 +15,7 @@ namespace bin {
int Process::global_exit_code_ = 0;
Mutex* Process::global_exit_code_mutex_ = new Mutex();
+Process::ExitHook Process::exit_hook_ = NULL;
void Process::TerminateExitCodeHandler() {
}

Powered by Google App Engine