blob: 66ca7954503ef68e161e35d6c71aa272248311a7 [file] [log] [blame]
/* 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);
}