Add support for landlock_create_ruleset (444), landlock_add_rule (445) and landlock_r...
[valgrind.git] / drd / tests / thrd_create.c
blob8553fca96bea3530371aa53678ce9c15d5bd6ff4
1 #include <stdio.h>
2 #include <threads.h>
4 int thread_entry(void *arg)
6 fprintf(stderr, "Hello, world!\n");
7 return 0;
10 int main()
12 thrd_t thr;
13 thrd_create(&thr, thread_entry, NULL);
14 thrd_join(thr, NULL);
15 return 0;