mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
8 lines
125 B
C
8 lines
125 B
C
|
#include <sched.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int sched_getscheduler(pid_t pid)
|
||
|
{
|
||
|
return syscall(SYS_sched_getscheduler, pid);
|
||
|
}
|