Function nanoTimestamp [src]
Get a calendar timestamp, in nanoseconds, relative to UTC 1970-01-01.
Precision of timing depends on the hardware and operating system.
On Windows this has a maximum granularity of 100 nanoseconds.
The return value is signed because it is possible to have a date that is
before the epoch.
See posix.clock_gettime for a POSIX timestamp.
Prototype
pub fn nanoTimestamp() i128
Source
pub fn nanoTimestamp() i128 {
switch (builtin.os.tag) {
.windows => {
// RtlGetSystemTimePrecise() has a granularity of 100 nanoseconds and uses the NTFS/Windows epoch,
// which is 1601-01-01.
const epoch_adj = epoch.windows * (ns_per_s / 100);
return @as(i128, windows.ntdll.RtlGetSystemTimePrecise() + epoch_adj) * 100;
},
.wasi => {
var ns: std.os.wasi.timestamp_t = undefined;
const err = std.os.wasi.clock_time_get(.REALTIME, 1, &ns);
assert(err == .SUCCESS);
return ns;
},
.uefi => {
var value: std.os.uefi.Time = undefined;
const status = std.os.uefi.system_table.runtime_services.getTime(&value, null);
assert(status == .success);
return value.toEpoch();
},
else => {
const ts = posix.clock_gettime(.REALTIME) catch |err| switch (err) {
error.UnsupportedClock, error.Unexpected => return 0, // "Precision of timing depends on hardware and OS".
};
return (@as(i128, ts.sec) * ns_per_s) + ts.nsec;
},
}
}