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

Unified Diff: runtime/vm/os_linux.cc

Issue 14927003: Revert 22380 to investigate windows build break. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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/os_android.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/os_linux.cc
===================================================================
--- runtime/vm/os_linux.cc (revision 22381)
+++ runtime/vm/os_linux.cc (working copy)
@@ -46,7 +46,7 @@
return;
}
const char* filename = "v8.log.ll";
- log_file_ = (*file_open)(filename, true);
+ log_file_ = (*file_open)(filename);
#if defined(TARGET_ARCH_IA32)
const char arch[] = "ia32";
#elif defined(TARGET_ARCH_X64)
@@ -134,7 +134,7 @@
intptr_t len = OS::SNPrint(NULL, 0, format, pid);
char* filename = new char[len + 1];
OS::SNPrint(filename, len + 1, format, pid);
- out_file_ = (*file_open)(filename, true);
+ out_file_ = (*file_open)(filename);
}
~PerfCodeObserver() {
@@ -195,7 +195,7 @@
return;
}
const char* filename = FLAG_generate_pprof_symbols;
- void* out_file = (*file_open)(filename, true);
+ void* out_file = (*file_open)(filename);
ASSERT(out_file != NULL);
DebugInfo::ByteBuffer* debug_region = new DebugInfo::ByteBuffer();
ASSERT(debug_region != NULL);
« no previous file with comments | « runtime/vm/os_android.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698