5 int threads_up_and_running
= 0;
8 second_thread (void *in
)
10 pthread_setname_np ("second thread");
17 third_thread (void *in
)
19 pthread_setname_np ("third thread");
27 pthread_setname_np ("main thread");
28 pthread_t other_thread
;
29 pthread_create (&other_thread
, NULL
, second_thread
, NULL
);
30 pthread_create (&other_thread
, NULL
, third_thread
, NULL
);
32 threads_up_and_running
= 1;