std.os.linux: Add clock_nanosleep() syscall wrapper.

This commit is contained in:
Alex Rønne Petersen 2024-08-31 03:24:55 +02:00
parent 68bb788df5
commit 8043197995
No known key found for this signature in database

View File

@ -1456,6 +1456,16 @@ pub fn clock_settime(clk_id: i32, tp: *const timespec) usize {
return syscall2(.clock_settime, @as(usize, @bitCast(@as(isize, clk_id))), @intFromPtr(tp));
}
pub fn clock_nanosleep(clockid: clockid_t, flags: TIMER, request: *const timespec, remain: ?*timespec) usize {
return syscall4(
.clock_nanosleep,
@intFromEnum(clockid),
@as(u32, @bitCast(flags)),
@intFromPtr(request),
@intFromPtr(remain),
);
}
pub fn gettimeofday(tv: ?*timeval, tz: ?*timezone) usize {
return syscall2(.gettimeofday, @intFromPtr(tv), @intFromPtr(tz));
}
@ -4527,6 +4537,11 @@ pub const clockid_t = enum(u32) {
_,
};
pub const TIMER = packed struct(u32) {
ABSTIME: bool,
_: u31 = 0,
};
pub const CSIGNAL = 0x000000ff;
pub const CLONE = struct {