binutils/
[external/binutils.git] / sim / testsuite / sim / cris / c / sched2.c
1 /*
2 #notarget: cris*-*-elf
3 */
4
5 #include <sched.h>
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9
10 int main (void)
11 {
12   struct sched_param sb;
13   memset (&sb, -1, sizeof sb);
14   if (sched_getparam (getpid (), &sb) != 0
15       || sb.sched_priority != 0)
16     abort ();
17   printf ("pass\n");
18   exit (0);
19 }