博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux 进程与线程五
阅读量:6241 次
发布时间:2019-06-22

本文共 650 字,大约阅读时间需要 2 分钟。

pthread_self函数pthread_t pthread_self(void);一般会成功,返回当前线程的ID
注意:在子线程中执行exit()函数会退出整个进程,一般使用pthread_exit函数
#include 
#include
#include
#include
#include
#include
void *thread_run(void *arg){ int i=0; for(i=0;i<10;i++) { if(i==5) { printf("线程1退出了!\n"); //注意:在子线程中执行exit()函数会退出整个进程,一般使用pthread_exit函数 exit(0); } printf("%d\n",i); sleep(1); } return NULL;}int main(int arg,char *args[]){ pthread_t thr1; if(pthread_create(&thr1,NULL,thread_run,NULL)!=0) { printf("pthread_create() failed !\n"); return -1; } //等待线程1 pthread_join(thr1,NULL); printf("主线程完结1!\n"); return 0;}

 

转载地址:http://qypia.baihongyu.com/

你可能感兴趣的文章
40个迹象表明你还是PHP菜鸟
查看>>
把程序员这条路走下去 .
查看>>
[Zephir官方文档翻译之四] 安装Zephir
查看>>
每天学一点Scala之内部类
查看>>
BWidget部件
查看>>
JavaScript强化教程 - 六步实现贪食蛇
查看>>
在oracle中恢复一个表的数据到某个时点
查看>>
我的友情链接
查看>>
maven环境快速搭建
查看>>
我的友情链接
查看>>
半导体产业的根基:晶圆是什么
查看>>
PHP页面刷新
查看>>
数据库之变迁
查看>>
DICOM协议中有关打印的内容
查看>>
lsmod
查看>>
server 2003 IIS无法访问asp页面,但是可以访问html静态页面
查看>>
totem成为万能播放器
查看>>
常用CSS记录
查看>>
我的友情链接
查看>>
DNS介绍和原理
查看>>