blob: 04dae4bd5dbe92dd54d08cc0c5c20bb6e7d84026 [file] [log] [blame]
/*
#notarget: cris*-*-elf
*/
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
if (sched_getscheduler (getpid ()) != SCHED_OTHER)
abort ();
printf ("pass\n");
exit (0);
}