mirror of
https://github.com/ziglang/zig.git
synced 2026-01-04 12:33:19 +00:00
Rename time32 syscalls to match rest of stdlib
This commit is contained in:
parent
ae3a0ff2d1
commit
2e85eb2bf8
@ -93,8 +93,8 @@ pub const SYS = extern enum(usize) {
|
||||
setrlimit = 75,
|
||||
getrlimit = 76,
|
||||
getrusage = 77,
|
||||
gettimeofday_time32 = 78,
|
||||
settimeofday_time32 = 79,
|
||||
gettimeofday = 78,
|
||||
settimeofday = 79,
|
||||
getgroups = 80,
|
||||
setgroups = 81,
|
||||
select = 82,
|
||||
@ -255,14 +255,14 @@ pub const SYS = extern enum(usize) {
|
||||
epoll_wait = 238,
|
||||
remap_file_pages = 239,
|
||||
timer_create = 240,
|
||||
timer_settime32 = 241,
|
||||
timer_gettime32 = 242,
|
||||
timer_settime = 241,
|
||||
timer_gettime = 242,
|
||||
timer_getoverrun = 243,
|
||||
timer_delete = 244,
|
||||
clock_settime32 = 245,
|
||||
clock_gettime32 = 246,
|
||||
clock_getres_time32 = 247,
|
||||
clock_nanosleep_time32 = 248,
|
||||
clock_settime = 245,
|
||||
clock_gettime = 246,
|
||||
clock_getres = 247,
|
||||
clock_nanosleep = 248,
|
||||
swapcontext = 249,
|
||||
tgkill = 250,
|
||||
utimes = 251,
|
||||
@ -324,8 +324,8 @@ pub const SYS = extern enum(usize) {
|
||||
sync_file_range2 = 308,
|
||||
fallocate = 309,
|
||||
subpage_prot = 310,
|
||||
timerfd_settime32 = 311,
|
||||
timerfd_gettime32 = 312,
|
||||
timerfd_settime = 311,
|
||||
timerfd_gettime = 312,
|
||||
signalfd4 = 313,
|
||||
eventfd2 = 314,
|
||||
epoll_create1 = 315,
|
||||
@ -537,7 +537,7 @@ pub const msghdr_const = extern struct {
|
||||
|
||||
pub const blksize_t = i32;
|
||||
pub const nlink_t = u32;
|
||||
pub const time_t = i64;
|
||||
pub const time_t = isize;
|
||||
pub const mode_t = u32;
|
||||
pub const off_t = i64;
|
||||
pub const ino_t = u64;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user