Add sched_attr system call series

This commit is contained in:
js2xxx
2025-02-11 13:35:24 +00:00
committed by Tate, Hongliang Tian
parent 9e1c939a3f
commit c1dde01fc3
24 changed files with 588 additions and 42 deletions

View File

@ -37,6 +37,7 @@ mod flock;
mod fork;
mod fsync;
mod futex;
mod get_priority;
mod getcpu;
mod getcwd;
mod getdents64;
@ -96,6 +97,14 @@ mod rt_sigprocmask;
mod rt_sigreturn;
mod rt_sigsuspend;
mod sched_affinity;
mod sched_get_priority_max;
mod sched_get_priority_min;
mod sched_getattr;
mod sched_getparam;
mod sched_getscheduler;
mod sched_setattr;
mod sched_setparam;
mod sched_setscheduler;
mod sched_yield;
mod select;
mod semctl;
@ -104,7 +113,7 @@ mod semop;
mod sendfile;
mod sendmsg;
mod sendto;
mod set_get_priority;
mod set_priority;
mod set_robust_list;
mod set_tid_address;
mod setfsgid;