URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [gdb-6.8/] [sim/] [testsuite/] [sim/] [cris/] [c/] [rtsigsuspend1.c] - Rev 26
Compare with Previous | Blame | View Log
/* Test that TRT happens for invalid rt_sigsuspend calls. Single-thread. #notarget: cris*-*-elf #xerror: #output: Unimplemented rt_sigsuspend syscall arguments (0x1, 0x2)\n #output: program stopped with signal 4.\n */ #include <unistd.h> #include <sys/syscall.h> #include <stdio.h> #include <stdlib.h> #include <errno.h> int main (void) { int err = syscall (SYS_rt_sigsuspend, 1, 2); if (err == -1 && errno == ENOSYS) printf ("ENOSYS\n"); printf ("xyzzy\n"); exit (0); }