blob: d70554969f2b36ee23f48329adc8a0b4cc7786ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if 0
#include <sched.h>
int sched_setscheduler(pid_t pid, int policy, const struct sched_param * param)
{
return 0;
}
/*
POSIX(199309)
LINK(rt)
*/
#endif
|