]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/perf_index/stress_syscall.c
c53b8afe7b3adaadbdc499fa65aecba2c8cedb66
[apple/xnu.git] / tools / tests / perf_index / stress_syscall.c
1 #include "perf_index.h"
2
3 const stress_test_t syscall_test = {"syscall", &stress_syscall_init, &stress_syscall, &stress_general_cleanup, &no_validate};
4
5 DECL_INIT(stress_syscall_init) {
6 }
7
8 DECL_TEST(stress_syscall) {
9 long long i;
10 for(i=0; i<length; i++) {
11 getppid();
12 }
13 }