blob: 7b4ece68fbb78a4c1f8f1ab48789f68415288289 [file] [log] [blame]
/* Copyright 2016 The Roughtime 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. */
#if defined(__linux) || defined (__Fuchsia__)
#include <stdint.h>
#include <stdlib.h>
#include <time.h>
namespace roughtime {
// TimeUs returns the current value of the specified clock in microseconds.
static uint64_t TimeUs(clockid_t clock) {
struct timespec tv;
if (clock_gettime(clock, &tv)) {
abort();
}
uint64_t ret = tv.tv_sec;
ret *= 1000000;
ret += tv.tv_nsec / 1000;
return ret;
}
// MonotonicUs returns the value of the monotonic clock in microseconds.
uint64_t MonotonicUs() { return TimeUs(CLOCK_MONOTONIC); }
// MonotonicUs returns the value of the realtime clock in microseconds.
uint64_t RealtimeUs() { return TimeUs(CLOCK_REALTIME); }
} // namespace roughtime
#endif // __linux