linux线程随笔-pthread_create函数

2019-07-12 18:48发布

函数简介   pthread_create是UNIX环境创建线程函数 头文件   #include 函数声明   int pthread_create(pthread_t  *restrict tidp, const  pthread_attr_t  *restrict_attr,   void*(*start_rtn)(void*),   void   *restrict   arg); 返回值   若成功则返回0,否则返回出错编号 参数   第一个参数为指向线程标识符的指针。   第二个参数用来设置线程属性。   第三个参数是线程运行函数的地址。   最后一个参数是运行函数的参数。 注意   在编译时注意加上-lpthread参数,以调用静态链接库。因为pthread并非Linux系统的默认库。