URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gdb-7.1/] [sim/] [testsuite/] [sim/] [cris/] [c/] [sched7.c] - Rev 227
Compare with Previous | Blame | View Log
/* Check corner error case: specifying invalid PID. #notarget: cris*-*-elf */ #include <sched.h> #include <stdio.h> #include <errno.h> #include <stdlib.h> int main (void) { if (sched_getscheduler (99) != -1 || errno != ESRCH) abort (); printf ("pass\n"); exit (0); }