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

Unified Diff: runtime/bin/process.cc

Issue 109803002: Profiler Take 2 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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/bin/file_macos.cc ('k') | runtime/bin/signal_blocker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process.cc
diff --git a/runtime/bin/process.cc b/runtime/bin/process.cc
index d7dd894636294bb87338b7590a32a6e67e2b623c..3c34a47517510aab6b9af38b3b15ede33c8fb3fe 100644
--- a/runtime/bin/process.cc
+++ b/runtime/bin/process.cc
@@ -10,7 +10,6 @@
#include "include/dart_api.h"
-
namespace dart {
namespace bin {
@@ -208,7 +207,8 @@ void FUNCTION_NAME(Process_Exit)(Dart_NativeArguments args) {
int64_t status = 0;
// Ignore result if passing invalid argument and just exit 0.
DartUtils::GetInt64Value(Dart_GetNativeArgument(args, 0), &status);
- // Be sure to do platform-specific cleanups.
+ Dart_ExitIsolate();
+ Dart_Cleanup();
Platform::Cleanup();
exit(static_cast<int>(status));
}
« no previous file with comments | « runtime/bin/file_macos.cc ('k') | runtime/bin/signal_blocker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698