repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make configure attempt to catch broken floating point CFLAGS/defaults
[musl.git]
/
src
/
sched
/
sched_setscheduler.c
blob
4435f2164671fd5bfc5bb0fc135ddbd4aeb157ea
1
#include <sched.h>
2
#include <errno.h>
3
#include
"syscall.h"
4
5
int
sched_setscheduler
(
pid_t pid
,
int
sched
,
const struct
sched_param
*
param
)
6
{
7
return
__syscall_ret
(-
ENOSYS
);
8
}