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

Unified Diff: runtime/vm/unit_test.h

Issue 9242035: Give isolates names to be used during debugging. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 11 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: runtime/vm/unit_test.h
===================================================================
--- runtime/vm/unit_test.h (revision 3366)
+++ runtime/vm/unit_test.h (working copy)
@@ -177,7 +177,7 @@
private:
static Dart_Isolate CreateIsolate(uint8_t* buffer) {
char* err;
- Dart_Isolate isolate = Dart_CreateIsolate(buffer, NULL, &err);
+ Dart_Isolate isolate = Dart_CreateIsolate(NULL, buffer, NULL, &err);
if (isolate == NULL) {
OS::Print("Creation of isolate failed '%s'\n", err);
free(err);

Powered by Google App Engine
This is Rietveld 408576698