Index: src/platform-posix.cc |
diff --git a/src/platform-posix.cc b/src/platform-posix.cc |
index dd6b77c265464f1c62c3e7c391db8bc5d8514737..58d0a2478dbf564effd2b81403fd5455ce262c52 100644 |
--- a/src/platform-posix.cc |
+++ b/src/platform-posix.cc |
@@ -313,7 +313,19 @@ int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { |
double OS::TimeCurrentMillis() { |
- return Time::Now().ToJsTime(); |
+ struct timeval tv; |
+ if (gettimeofday(&tv, NULL) < 0) return 0.0; |
+ return (static_cast<double>(tv.tv_sec) * 1000) + |
+ (static_cast<double>(tv.tv_usec) / 1000); |
+} |
+ |
+ |
+int64_t OS::Ticks() { |
+ // gettimeofday has microsecond resolution. |
+ struct timeval tv; |
+ if (gettimeofday(&tv, NULL) < 0) |
+ return 0; |
+ return (static_cast<int64_t>(tv.tv_sec) * 1000000) + tv.tv_usec; |
} |