1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/// @file WASM shim for kj/time.h
#pragma once
#include "common.h"
namespace kj {
// Duration and TimePoint are already declared in common.h.
// Add CLOCK_MONOTONIC-style constants.
constexpr Duration SECONDS = 1'000'000'000LL;
constexpr Duration MILLISECONDS = 1'000'000LL;
constexpr Duration MICROSECONDS = 1'000LL;
constexpr Duration NANOSECONDS = 1LL;
} // namespace kj
|