Index: runtime/vm/os_linux.cc |
=================================================================== |
--- runtime/vm/os_linux.cc (revision 22412) |
+++ runtime/vm/os_linux.cc (working copy) |
@@ -268,6 +268,11 @@ |
}; |
+const char* OS::Name() { |
+ return "linux"; |
+} |
+ |
+ |
static bool LocalTime(int64_t seconds_since_epoch, tm* tm_result) { |
time_t seconds = static_cast<time_t>(seconds_since_epoch); |
if (seconds != seconds_since_epoch) return false; |