Sign in
gnu
/
binutils-gdb
/
refs/heads/users/palves/value_string
/
.
/
sim
/
testsuite
/
cris
/
c
/
sched1.c
blob: 1b778f4a40152927fb308ddbbc324bcf873189d1 [
file
] [
log
] [
blame
]
/*
#notarget: cris*-*-elf
*/
#include
<sched.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<unistd.h>
int
main
(
void
)
{
if
(
sched_getscheduler
(
getpid
())
!=
SCHED_OTHER
)
abort
();
printf
(
"pass\n"
);
exit
(
0
);
}