std.os.linux: re-add missing timerfd_create() constants

This commit is contained in:
John Benediktsson 2025-02-02 10:16:47 -08:00 committed by Alex Rønne Petersen
parent 7ac110ac25
commit 6a1b76a02c

View File

@ -4722,6 +4722,9 @@ pub const TIMERFD_CLOCK = timerfd_clockid_t;
pub const timerfd_clockid_t = enum(u32) {
REALTIME = 0,
MONOTONIC = 1,
BOOTTIME = 7,
REALTIME_ALARM = 8,
BOOTTIME_ALARM = 9,
_,
};