| Index: runtime/vm/os_win.cc
|
| diff --git a/runtime/vm/os_win.cc b/runtime/vm/os_win.cc
|
| index 2548a4c53d925f7ef3689447084711b5b5b3bc69..bb2d6349de6739e139830c0b41470531b22d74a0 100644
|
| --- a/runtime/vm/os_win.cc
|
| +++ b/runtime/vm/os_win.cc
|
| @@ -160,6 +160,12 @@ int64_t OS::GetCurrentMonotonicMicros() {
|
| }
|
|
|
|
|
| +int64_t OS::GetCurrentThreadCPUMicros() {
|
| + // TODO(johnmccutchan): Implement. See base/time_win.cc for details.
|
| + return -1;
|
| +}
|
| +
|
| +
|
| void* OS::AlignedAllocate(intptr_t size, intptr_t alignment) {
|
| const int kMinimumAlignment = 16;
|
| ASSERT(Utils::IsPowerOfTwo(alignment));
|
|
|