一 线程操作函数
注意事项:int pthread_create(pthread_t *thread, const pthread_attr, void *(*start_routine)(void *0, void *arg))
void pthread_exit(void *retval)
void pthread_join(pthread_t thread, void **retval)
三 线程同步
3 条件变量
原文地址:http://blog.csdn.net/qq_22075977/article/details/45842733