linux下pthread_cancel无法取消线程的原因【转】

简介: 转自:http://blog.csdn.net/huangshanchun/article/details/47420961 版权声明:欢迎转载,如有不足之处,恳请斧正。 一个线程可以调用pthread_cancel终止同一进程中的另一个线程,但是值得强调的是:同一进程的线程间,pthread_cancel向另一线程发终止信号。

转自:http://blog.csdn.net/huangshanchun/article/details/47420961

一个线程可以调用pthread_cancel终止同一进程中的另一个线程,但是值得强调的是:同一进程的线程间,pthread_cancel向另一线程发终止信号。系统并不会马上关闭被取消线程,只有在被取消线程下次系统调用时,才会真正结束线程。或调用pthread_testcancel,让内核去检测是否需要取消当前线程。被取消的线程,退出值,定义在Linux的pthread库中常数PTHREAD_CANCELED的值是-1。

  1. #include <pthread.h>  
  2.   
  3. int pthread_cancel(pthread_t thread);  


看下面程序:

  1. #include<stdio.h>  
  2. #include<stdlib.h>  
  3. #include <pthread.h>  
  4. void *thread_fun(void *arg)  
  5. {  
  6.     int i=1;  
  7.     printf("thread start \n");  
  8.     while(1)  
  9.     {  
  10.         i++;  
  11.     }  
  12.     return (void *)0;  
  13. }  
  14. int main()  
  15. {  
  16.     void *ret=NULL;  
  17.     int iret=0;  
  18.     pthread_t tid;  
  19.     pthread_create(&tid,NULL,thread_fun,NULL);  
  20.     sleep(1);  
  21.       
  22.     pthread_cancel(tid);//取消线程  
  23.     pthread_join(tid, &ret);  
  24.     printf("thread 3 exit code %d\n", (int)ret);  
  25.       
  26.     return 0;  
  27.       
  28. }  


会发现程序再一直运行,线程无法被取消,究其原因pthread_cancel向另一线程发终止信号。系统并不会马上关闭被取消线程,只有在被取消线程下次系统调用时,才会真正结束线程。如果线程里面没有执行系统调用,可以使用pthread_testcancel解决。

  1. #include<stdio.h>  
  2. #include<stdlib.h>  
  3. #include <pthread.h>  
  4. void *thread_fun(void *arg)  
  5. {  
  6.     int i=1;  
  7.     printf("thread start \n");  
  8.     while(1)  
  9.     {  
  10.         i++;  
  11.         pthread_testcancel();  
  12.     }  
  13.     return (void *)0;  
  14. }  
  15. int main()  
  16. {  
  17.     void *ret=NULL;  
  18.     int iret=0;  
  19.     pthread_t tid;  
  20.     pthread_create(&tid,NULL,thread_fun,NULL);  
  21.     sleep(1);  
  22.       
  23.     pthread_cancel(tid);//取消线程  
  24.     pthread_join(tid, &ret);  
  25.     printf("thread 3 exit code %d\n", (int)ret);  
  26.       
  27.     return 0;  
  28.       
  29. }  


【作者】 张昺华
【新浪微博】 张昺华--sky
【twitter】 @sky2030_
【facebook】 张昺华 zhangbinghua
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
目录
相关文章
|
10天前
|
缓存 监控 Linux
|
13天前
|
Linux Shell 数据安全/隐私保护
|
14天前
|
域名解析 网络协议 安全
|
20天前
|
运维 监控 网络协议
|
21天前
|
监控 Linux Shell
|
2天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
13 3
|
2天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
14 3
|
6天前
|
监控 Linux 开发者
如何在 Linux 中优雅的使用 head 命令,用来看日志简直溜的不行
`head` 命令是 Linux 系统中一个非常实用的工具,用于快速查看文件的开头部分内容。本文介绍了 `head` 命令的基本用法、高级用法、实际应用案例及注意事项,帮助用户高效处理文件和日志,提升工作效率。
20 7
|
2天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
14 2
|
5天前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
25 5