线程创建 #include <pthread.h> int pthread_create((pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void*), void *arg); /******************************** 参数: thread线程线程标识符 attr表示线程属性 start_routine线程函数的起始地址 arg传递给start_routine的参数 返回值: 成功返回0,否则返回-1 *******************************...