sched_setparam.c 194 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7 8
#include <sched.h>
#include "syscall.h"

int sched_setparam(pid_t pid, const struct sched_param *param)
{
	static const struct sched_param def;
	return syscall(SYS_sched_setparam, pid, &def);
}