22 lines
482 B
C
22 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);
|
|
}
|