码迷,mamicode.com
首页 > 编程语言 > 详细

Linux下 多线程编程

时间:2017-09-08 22:48:16      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:clu   函数   print   地址   str   gcc   返回值   create   printf   

ret = pthread_create(&id,NULL,(void*)readThread,NULL);
if(ret!=0)
{
printf("creat pthread id1 error : %s(errno : %d)\n",strerror(errno),errno);
}

创建一个线程

头文件:

#include <pthread.h>

 

int pthread_create(pthread_t *thread, const pthread_attr_t *attr,void *(*start_routine) (void *), void *arg);

返回值 0表示成功,-1表示失败

第一个参数:指向线程标识符的指针

第二个参数:设置线程属性

第三个参数:线程运行函数的地址(函数名)

第四个参数:运行函数的参数

 

gcc 编译需要手动链接库  -lpthread   (如 gcc xxx.c xxx -lpthread)

原因见:linux网络编程2.2.9

 

线程终止

void pthread_exit(void* retval);

exit(0)

 

Linux下 多线程编程

标签:clu   函数   print   地址   str   gcc   返回值   create   printf   

原文地址:http://www.cnblogs.com/robin1994/p/7496444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!