OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Crashpad Authors. All rights reserved. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #include "util/win/time.h" |
| 16 |
| 17 #include <inttypes.h> |
| 18 #include <windows.h> |
| 19 |
| 20 #include "base/logging.h" |
| 21 |
| 22 namespace crashpad { |
| 23 |
| 24 void GetTimeOfDay(timeval* tv) { |
| 25 FILETIME filetime; |
| 26 GetSystemTimeAsFileTime(&filetime); |
| 27 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | |
| 28 filetime.dwLowDateTime; |
| 29 t /= 10; // 100 nanosecond intervals to microseconds. |
| 30 // Windows epoch is 1601-01-01, and FILETIME ticks are 100 nanoseconds. |
| 31 // 1601 to 1970 is 369 years + 89 leap days = 134774 days * 86400 seconds per |
| 32 // day. It's not entirely clear, but it appears that these are solar seconds, |
| 33 // not SI seconds, so there are no leap seconds to be considered. |
| 34 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL; |
| 35 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6); |
| 36 DCHECK_GE(t, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond); |
| 37 t -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond; |
| 38 tv->tv_sec = static_cast<long>(t / kMicrosecondsPerSecond); |
| 39 tv->tv_usec = static_cast<long>(t % kMicrosecondsPerSecond); |
| 40 } |
| 41 |
| 42 } // namespace crashpad |
OLD | NEW |