Linux多线程实例练习 - pthread_exit() 与 pthread_join()

简介:

Linux多线程实例练习 - pthread_exit 与 pthread_join

pthread_exit():终止当前线程

void pthread_exit(void* retval);

pthread_join():阻塞当前的线程,直到另外一个线程运行结束

int pthread_join(pthread_t thread, void **retval);

 

1、代码  xx_pthread_exit.c

复制代码
 1 #include <pthread.h>
 2 #include <stdio.h>
 3 #include <unistd.h>
 4 
 5 #define debug_Msg(fmt, arg...)\
 6     do{\
 7         printf("%s %d : ", __FILE__, __LINE__);\                                                     
 8         printf(fmt, ##arg);\
 9     }while(0)
10 
11 void * doPrint(void *arg)
12 {
13     debug_Msg("%s\n", (char*)arg);
14     char * p = "thread is over";
15     pthread_exit(p);
16 }
17 int main()
18 {
19     pthread_t pid;
20     char * pt = "hello pthread";
21     pthread_create(&pid, NULL, doPrint, pt);
22     void * p = NULL;
23     pthread_join(pid, &p);
24     debug_Msg("return of thread : [%s]\n", (char*)p);
25     
26     return 0;
27 }
复制代码

2、CentOS 下编译通过

g++ -g -c -o xx_pthread_exit.o xx_pthread_exit.c 
g++ -g -o xx_pthread_exit xx_pthread_exit.o -lpthread

3、运行结果

$ ./xx_pthread_exit 
xx_pthread_exit.c 13 : hello pthread
xx_pthread_exit.c 24 : return of thread : [thread is over]

 


本文转自郝峰波博客园博客,原文链接:http://www.cnblogs.com/fengbohello/p/4258917.html,如需转载请自行联系原作者

相关文章
|
5月前
|
算法 Unix Linux
linux线程调度策略
linux线程调度策略
110 0
|
3月前
|
资源调度 Linux 调度
Linux C/C++之线程基础
这篇文章详细介绍了Linux下C/C++线程的基本概念、创建和管理线程的方法,以及线程同步的各种机制,并通过实例代码展示了线程同步技术的应用。
48 0
Linux C/C++之线程基础
|
3月前
|
安全 Linux
Linux线程(十一)线程互斥锁-条件变量详解
Linux线程(十一)线程互斥锁-条件变量详解
|
5月前
|
存储 设计模式 NoSQL
Linux线程详解
Linux线程详解
|
5月前
|
缓存 Linux C语言
Linux线程是如何创建的
【8月更文挑战第5天】线程不是一个完全由内核实现的机制,它是由内核态和用户态合作完成的。
|
5月前
|
存储 Linux 网络安全
【Azure 应用服务】App Service For Linux 如何在 Web 应用实例上住抓取网络日志
【Azure 应用服务】App Service For Linux 如何在 Web 应用实例上住抓取网络日志
|
5月前
|
负载均衡 Linux 调度
在Linux中,进程和线程有何作用?
在Linux中,进程和线程有何作用?
|
5月前
|
缓存 Linux C语言
Linux中线程是如何创建的
【8月更文挑战第15天】线程并非纯内核机制,由内核态与用户态共同实现。
|
6月前
|
安全 算法 Linux
【Linux】线程安全——补充|互斥、锁|同步、条件变量(下)
【Linux】线程安全——补充|互斥、锁|同步、条件变量(下)
60 0
|
6月前
|
存储 安全 Linux
【Linux】线程安全——补充|互斥、锁|同步、条件变量(上)
【Linux】线程安全——补充|互斥、锁|同步、条件变量(上)
65 0