- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Linux 多线程
线程概述
线程是一个进程内的基本调度单位,也可以称为轻量级进程。线程是在共享内存空间中并发的多道执行路径,它们共享一个进程的资源,如文件描述和信号处理。因此,大大减少了上下文切换的开销。一个进程可以有多个线程,也就是有多个线程控制表及堆栈寄存器,但却 共享一个用户地址空间。
线程实现
线程创建pthread_create()
所需头文件#include pthread.h
函数原型int pthread_create ((pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *arg))
thread: 线 程 标 识 符 attr: 线 程 属 性 设 置 start_routine:线程函数的起始地址arg:传递给start_routine 的参数函数返回值 成功:0 出错:-1
线程退出pthread_exit();
所需头文件#include pthread.h
函数原型void pthread_exit(void *retval)
函数传入值 retval:pthread_exit()调用者线程的返回值,可由其他函数如 pthread_join
来检索获取
等待线程退出并释放资源pthread_join()
所需头文件#include pthread.h
函数原型int pthread_join ((pthread_t th, void **thread_return))
函数传入值
th: 等 待 线 程 的 标 识 符 thread_return:用户定义的指针,用来存储被等待线程的返回值(不为NULL 时) 函数返回值 成功:0 出错:-1
- 1 -
代码举例#includepthread.h #includestdio.h #includeerrno.h
/* 线 程 1*/ void thread1()
{
int i=0;
while(1)
{
printf(thread1:%d\n,i); if(i3)
pthread_exit(0); i++;
sleep(1);
}
}
/* 线 程 2*/ void thread2()
{
int i=0; while(1)
{
printf(thread2:%d\n,i); if(i5)
pthread_exit(0); i++;
sleep(1);
}
}
int main()
{
pthread_t t1,t2;
/*创建线程*/
pthread_create(t1,NULL,(void *)thread1,NULL); pthread_create(t2,NULL,(void *)thread2,NULL);
/*等待线程退出*/ pthread_join(t1,NULL); pthread_join(t2,NULL); return 0;
}
同步与互斥
- 2 -
1互斥锁
互斥锁的操作主要包括以下几个步骤。
互斥锁初始化:pthread_mutex_init
互斥锁上锁:pthread_mutex_lock
互斥锁判断上锁:pthread_mutex_trylock
互斥锁接锁:pthread_mutex_unlock
消除互斥锁:pthread_mutex_destroy #includepthread.h #includestdio.h #includeerrno.h
int i=0;/*共享变量*/
pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;/*互斥锁*/ void thread1()
{
int ret; while(1)
{
ret=pthread_mutex_trylock(mutex);/*判断上锁*/ if(ret!=EBUSY)
{
pthread_mutex_lock(mutex);/*上锁*/ printf(This is thread1:%d\n,i); i++;
pthread_mutex_unlock(mutex);/*解锁*/
}
sleep(1);
}
}
void thread2()
{
int ret; while(1)
{
ret=pthread_mutex_trylock(mutex); If(ret!=EBUSY)
{
pthread_mutex_lock(mutex); printf(This is thread2:%d\n,i); i++;
pthread_mutex_unlock(mutex);
}
sleep(1);
- 3 -
}
}
int main()
文档评论(0)