/* hello-syscall-test.c */ /* I'm using the futux system call * */ #include #include int main(void) { printf("Hello, calling my-syscall-hello \n"); syscall(__NR_futex); printf("done. Go check /var/log/messages\n"); return 0; }