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
move msghdr and cmsghdr out of bits/socket.h
[musl.git]
/
src
/
sched
/
sched_setparam.c
blob
18623ee49b15ae91e30fe271466532f45d1b75c8
1
#include <sched.h>
2
#include <errno.h>
3
#include
"syscall.h"
4
5
int
sched_setparam
(
pid_t pid
,
const struct
sched_param
*
param
)
6
{
7
return
__syscall_ret
(-
ENOSYS
);
8
}