data/method/gdb/gdb-13.2/sim/testsuite/cris/c/sched2.c

21 lines
320 B
C
Raw Normal View History

2024-01-29 10:44:43 +08:00
/*
#progos: linux
*/
#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);
}