File tree Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1423,6 +1423,7 @@ sched_getscheduler
1423
1423
sched_get_priority_max
1424
1424
sched_get_priority_min
1425
1425
sched_param
1426
+ sched_rr_get_interval
1426
1427
sched_setparam
1427
1428
sched_setscheduler
1428
1429
seekdir
Original file line number Diff line number Diff line change @@ -1740,6 +1740,7 @@ sched_getscheduler
1740
1740
sched_get_priority_max
1741
1741
sched_get_priority_min
1742
1742
sched_param
1743
+ sched_rr_get_interval
1743
1744
sched_setparam
1744
1745
sched_setscheduler
1745
1746
sdallocx
Original file line number Diff line number Diff line change @@ -1389,6 +1389,7 @@ sched_getscheduler
1389
1389
sched_get_priority_max
1390
1390
sched_get_priority_min
1391
1391
sched_param
1392
+ sched_rr_get_interval
1392
1393
sched_setparam
1393
1394
sched_setscheduler
1394
1395
secure_path
Original file line number Diff line number Diff line change @@ -1601,6 +1601,7 @@ extern "C" {
1601
1601
-> :: ssize_t ;
1602
1602
pub fn querylocale ( mask : :: c_int , loc : :: locale_t ) -> * const :: c_char ;
1603
1603
pub fn rtprio ( function : :: c_int , pid : :: pid_t , rtp : * mut rtprio ) -> :: c_int ;
1604
+ pub fn sched_rr_get_interval ( pid : :: pid_t , t : * mut :: timespec ) -> :: c_int ;
1604
1605
pub fn sched_getparam ( pid : :: pid_t , param : * mut sched_param ) -> :: c_int ;
1605
1606
pub fn sched_setparam ( pid : :: pid_t , param : * const sched_param ) -> :: c_int ;
1606
1607
pub fn sched_getscheduler ( pid : :: pid_t ) -> :: c_int ;
Original file line number Diff line number Diff line change @@ -2515,6 +2515,7 @@ extern "C" {
2515
2515
flags : :: c_int ,
2516
2516
) -> * mut :: c_void ;
2517
2517
2518
+ pub fn sched_rr_get_interval ( pid : :: pid_t , t : * mut :: timespec ) -> :: c_int ;
2518
2519
pub fn sched_setparam ( pid : :: pid_t , param : * const sched_param ) -> :: c_int ;
2519
2520
pub fn sched_getparam ( pid : :: pid_t , param : * mut sched_param ) -> :: c_int ;
2520
2521
pub fn sched_getscheduler ( pid : :: pid_t ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments