Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/sim/testsuite/cris/c/rtsigsuspend1.c
2023-03-06 14:48:14 +01:00

21 lines
482 B
C

/* Test that TRT happens for invalid rt_sigsuspend calls. Single-thread.
#progos: linux
#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);
}