summaryrefslogtreecommitdiff
path: root/src/sched/sched_getparam.c
blob: 65be10750fdd6484dfd8b58a40b51add9d35b37a (plain) (blame)
1
2
3
4
5
6
7
#include <sched.h>
#include "syscall.h"

int sched_getparam(pid_t pid, struct sched_param *param)
{
	return syscall(SYS_sched_getparam, pid, param);
}