 Chromium Code Reviews
 Chromium Code Reviews Issue 1504523002:
  Use a monotonic clock in the implementation of Stopwatch.  (Closed) 
  Base URL: git@github.com:dart-lang/sdk.git@master
    
  
    Issue 1504523002:
  Use a monotonic clock in the implementation of Stopwatch.  (Closed) 
  Base URL: git@github.com:dart-lang/sdk.git@master| Index: runtime/vm/os_linux.cc | 
| diff --git a/runtime/vm/os_linux.cc b/runtime/vm/os_linux.cc | 
| index 25c64b7e9a542955613d3fbe74136ac8e826af6c..7924be1cfcd7460c55309f25096ddd8021c0ecc7 100644 | 
| --- a/runtime/vm/os_linux.cc | 
| +++ b/runtime/vm/os_linux.cc | 
| @@ -396,7 +396,7 @@ int64_t OS::GetCurrentTimeMicros() { | 
| } | 
| -int64_t OS::GetCurrentTraceMicros() { | 
| +int64_t OS::GetCurrentMonotonicMicros() { | 
| struct timespec ts; | 
| if (clock_gettime(CLOCK_MONOTONIC, &ts) != 0) { | 
| UNREACHABLE(); |