Basic Thread Management
strcpy(msg.in_msg, “hello”);
return_val = pthread_create(
&tid, NULL, thread1_func, &msg);
return_val = pthread_join(tid, &ptr);
ptr->out_msg == “hello” */
void thread1_func(struct thr_rtn * msg) { strcpy(msg->out_msg,
pthread_exit((void *) msg);
Author | Title | Tracks | Home