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

Unified Diff: vm/os.h

Issue 10446116: Add flow graph printing into a .cfg file with flag --print-flow-graph-file. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 7 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: vm/os.h
===================================================================
--- vm/os.h (revision 8145)
+++ vm/os.h (working copy)
@@ -84,6 +84,7 @@
// Print formatted output to stdout/stderr for debugging.
static void Print(const char* format, ...);
static void PrintErr(const char* format, ...);
+ static void FPrint(FILE* stream, const char* format, ...);
static void VFPrint(FILE* stream, const char* format, va_list args);
// Print formatted output info a buffer.
// Does not write more than size characters (including the trailing '\0').
@@ -101,6 +102,8 @@
const char* format,
va_list args);
+ static FILE* FOpen(const char* path, const char* mode);
+
// Initialize the OS class.
static void InitOnce();
« vm/intermediate_language.cc ('K') | « vm/isolate.cc ('k') | vm/os_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698