summaryrefslogtreecommitdiff
path: root/sim/testsuite/cris/c/sched2.c
blob: f40a19a8085c1f5cd005dcb35cbb25a914bda14f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
#notarget: cris*-*-elf
*/

#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

int main (void)
{
  struct sched_param sb;
  memset (&sb, -1, sizeof sb);
  if (sched_getparam (getpid (), &sb) != 0
      || sb.sched_priority != 0)
    abort ();
  printf ("pass\n");
  exit (0);
}