摘要: pthread_t pthr;pthread_create(&pthr, NULL, thread_handler, NULL);...void* thread_handler(void* arg){ /* do something */ pthread_join(pthr, NULL);}上面的代... 阅读全文