mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 15:32:10 +08:00
337b4f7971
https://developer.apple.com/documentation/kernel/1462446-mach_absolute_time
> Prefer to use the equivalent clock_gettime_nsec_np(CLOCK_UPTIME_RAW) in nanoseconds.
The two are equivalent:
c5a3293354/gen/clock_gettime.c (L118)
Change-Id: I1c7a08d821d1840b74fc5eaa0e9ceca2ade5bbfc
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/5085307
Commit-Queue: Ben Hamilton <benhamilton@google.com>
Reviewed-by: Justin Cohen <justincohen@chromium.org>
Reviewed-by: Mark Mentovai <mark@chromium.org>
26 lines
786 B
C++
26 lines
786 B
C++
// Copyright 2014 The Crashpad Authors
|
|
//
|
|
// 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>
|
|
|
|
namespace crashpad {
|
|
|
|
uint64_t ClockMonotonicNanoseconds() {
|
|
return clock_gettime_nsec_np(CLOCK_UPTIME_RAW);
|
|
}
|
|
|
|
} // namespace crashpad
|