]> granicus.if.org Git - strace/blob - tests/getppid.c
strace: terminate itself if interrupted by a signal
[strace] / tests / getppid.c
1 #include "tests.h"
2 #include <asm/unistd.h>
3
4 #ifdef __NR_getppid
5
6 # include <stdio.h>
7 # include <unistd.h>
8
9 int
10 main(void)
11 {
12         printf("getppid() = %ld\n", syscall(__NR_getppid));
13         puts("+++ exited with 0 +++");
14         return 0;
15 }
16
17 #else
18
19 SKIP_MAIN_UNDEFINED("__NR_getppid")
20
21 #endif