File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/unix/linux_like/linux/musl/b32/riscv32 Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -633,3 +633,23 @@ pub const SYS_faccessat2: c_long = 439;
633
633
pub const SYS_process_madvise : c_long = 440 ;
634
634
pub const SYS_epoll_pwait2 : c_long = 441 ;
635
635
pub const SYS_mount_setattr : c_long = 442 ;
636
+
637
+ // Plain syscalls aliased to their time64 variants
638
+ pub const SYS_clock_gettime : c_long = SYS_clock_gettime64 ;
639
+ pub const SYS_clock_settime : c_long = SYS_clock_settime64 ;
640
+ pub const SYS_clock_adjtime : c_long = SYS_clock_adjtime64 ;
641
+ pub const SYS_clock_getres : c_long = SYS_clock_getres_time64 ;
642
+ pub const SYS_clock_nanosleep : c_long = SYS_clock_nanosleep_time64 ;
643
+ pub const SYS_timer_gettime : c_long = SYS_timer_gettime64 ;
644
+ pub const SYS_timer_settime : c_long = SYS_timer_settime64 ;
645
+ pub const SYS_timerfd_gettime : c_long = SYS_timerfd_gettime64 ;
646
+ pub const SYS_timerfd_settime : c_long = SYS_timerfd_settime64 ;
647
+ pub const SYS_utimensat : c_long = SYS_utimensat_time64 ;
648
+ pub const SYS_pselect6 : c_long = SYS_pselect6_time64 ;
649
+ pub const SYS_ppoll : c_long = SYS_ppoll_time64 ;
650
+ pub const SYS_recvmmsg : c_long = SYS_recvmmsg_time64 ;
651
+ pub const SYS_mq_timedsend : c_long = SYS_mq_timedsend_time64 ;
652
+ pub const SYS_mq_timedreceive : c_long = SYS_mq_timedreceive_time64 ;
653
+ pub const SYS_rt_sigtimedwait : c_long = SYS_rt_sigtimedwait_time64 ;
654
+ pub const SYS_futex : c_long = SYS_futex_time64 ;
655
+ pub const SYS_sched_rr_get_interval : c_long = SYS_sched_rr_get_interval_time64 ;
You can’t perform that action at this time.
0 commit comments