Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Unified Diff: util/misc/clock.cc

Issue 597533002: Add, test, and use clock utilities (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: (no change) Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « util/misc/clock.h ('k') | util/misc/clock_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/misc/clock.cc
diff --git a/util/misc/clock.cc b/util/misc/clock.cc
new file mode 100644
index 0000000000000000000000000000000000000000..24171091db1d41db1c34b420eb197b8291220214
--- /dev/null
+++ b/util/misc/clock.cc
@@ -0,0 +1,51 @@
+// Copyright 2014 The Crashpad Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#include "util/misc/clock.h"
+
+#include <time.h>
+
+#include "base/logging.h"
+#include "base/posix/eintr_wrapper.h"
+#include "build/build_config.h"
+
+namespace {
+
+const uint64_t kNanosecondsPerSecond = 1E9;
+
+} // namespace
+
+namespace crashpad {
+
+#if !defined(OS_MACOSX)
+
+uint64_t ClockMonotonicNanoseconds() {
+ timespec now;
+ int rv = clock_gettime(CLOCK_MONOTONIC, &now);
+ DPCHECK(rv == 0) << "clock_gettime";
+
+ return now.tv_sec * kNanosecondsPerSecond + now.tv_nsec;
+}
+
+#endif
+
+void SleepNanoseconds(uint64_t nanoseconds) {
+ timespec sleep_time;
+ sleep_time.tv_sec = nanoseconds / kNanosecondsPerSecond;
+ sleep_time.tv_nsec = nanoseconds % kNanosecondsPerSecond;
+ int rv = HANDLE_EINTR(nanosleep(&sleep_time, &sleep_time));
+ DPCHECK(rv == 0) << "nanosleep";
+}
+
+} // namespace crashpad
« no previous file with comments | « util/misc/clock.h ('k') | util/misc/clock_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698