1、创建线程
#include<pthread.h>
int pthread_create(pthread_t* tidp,const pthread_attr_t *attr,void*(*start_rtn)(void),void*arg)
tidp:线程id
attr:线程属性(通常为空)
start_rtn:线程要执行的函数
arg:start_rtn的参数
Linux多线程程序设计------创建线程,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/liutianyi10/p/3848382.html