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