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_getscheduler.c
blob
394e508b467cc5e71c2030b7b2c75b2d3070a4aa
1
#include <sched.h>
2
#include <errno.h>
3
#include
"syscall.h"
4
5
int
sched_getscheduler
(
pid_t pid
)
6
{
7
return
__syscall_ret
(-
ENOSYS
);
8
}