X-Git-Url: https://rtime.felk.cvut.cz/gitweb/l4.git/blobdiff_plain/9347d109a9b928929fdc0cedcc1d867bd7e2a918..c02bb3e0b72cd17aaa3cdfb9587d934f1097cc1f:/l4/pkg/plr/ex/pthread_hello/main.c diff --git a/l4/pkg/plr/ex/pthread_hello/main.c b/l4/pkg/plr/ex/pthread_hello/main.c index 5ffcb89c4..32bf58983 100644 --- a/l4/pkg/plr/ex/pthread_hello/main.c +++ b/l4/pkg/plr/ex/pthread_hello/main.c @@ -24,6 +24,7 @@ int main(int argc, char **argv) (void)argc; (void)argv; pthread_t pt; + printf("\033[32mhello from main thread\033[0m\n"); int res = pthread_create(&pt, NULL, thread, NULL); assert(res == 0);