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

Unified Diff: runtime/vm/dart_api_impl.cc

Issue 2720723005: VM: Fix an app-jit related shutdown race. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl.cc
diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
index be6c3f31eeaa3179cbf7befce65fe9c2395d35f8..f8db6b46f4e2130457dfdde4edb24ce1dcbc7451 100644
--- a/runtime/vm/dart_api_impl.cc
+++ b/runtime/vm/dart_api_impl.cc
@@ -1192,9 +1192,9 @@ DART_EXPORT char* Dart_Initialize(Dart_InitializeParams* params) {
return Dart::InitOnce(
params->vm_snapshot_data, params->vm_snapshot_instructions,
- params->create, params->shutdown, params->thread_exit, params->file_open,
- params->file_read, params->file_write, params->file_close,
- params->entropy_source, params->get_service_assets);
+ params->create, params->shutdown, params->cleanup, params->thread_exit,
+ params->file_open, params->file_read, params->file_write,
+ params->file_close, params->entropy_source, params->get_service_assets);
}
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698