The timespec struct used by the kernel.
pub const kernel_timespec = extern struct
pub const kernel_timespec = extern struct {
sec: i64,
nsec: i64,
/// For use with `utimensat` and `futimens`.
pub const NOW: timespec = .{
.sec = 0,
.nsec = 0x3fffffff,
};
/// For use with `utimensat` and `futimens`.
pub const OMIT: timespec = .{
.sec = 0,
.nsec = 0x3ffffffe,
};
}