【Linux篇】线程创建

文章通过三个示例展示了C语言中使用pthread库进行多线程编程的方法,包括如何创建线程(pthread_create),线程退出(pthread_exit)以及如何回收子线程资源(pthread_join)。每个示例都包含一个父线程和一个子线程,子线程在特定条件下退出并传递信息给父线程。
摘要由CSDN通过智能技术生成

#include <stdio.h>
#include <pthread.h>

//pthread_create创建线程
void* myfunc(void *arg)
{
	printf("child pthread id:%ld\n",pthread_self());
	return 0;

}
int main()
{
	pthread_t pthid;

	pthread_create(&pthid,NULL,myfunc,NULL);
	printf("father pthread id:%ld\n",pthread_self());

	for(int i = 0;i < 5;i++)
	{
		printf("i = %d\n",i);
	
	}
	sleep(2);
	return 0;
}

 

#include <stdio.h>
#include <pthread.h>
#include <string.h>
#include <stdlib.h>
//pthread_exit线程退出
void* myfunc(void *arg)
{
	printf("child pthread id:%ld\n",pthread_self());
	for(int i=0;i<5;i++)
	{
		printf("child pthread %d\n",i);
		if(i == 2)
		{
			//exit child pthread
			//exit(0);
			//pthread_exit(NULL);
			Int num = 100;
			pthread_exit(&num);
		}
	}
	return 0;

}
int main()
{
	pthread_t pthid;
	int ret;
	ret = pthread_create(&pthid,NULL,myfunc,NULL);
	if(ret != 0)
	{
		printf("error number is %d\n",ret);
		printf("%s\n",strerror(ret));
	}
       	printf("father pthread id:%ld\n",pthread_self());

	int i = 0;
	while(1)
	{
		i++;
		printf("father pthread %d\n",i);
	
	}
	
	sleep(2);
	return 0;
}

 

#include <stdio.h>
#include <pthread.h>
#include <string.h>
#include <stdlib.h>
//pthread_join回收子线程资源
int num = 100;
void* myfunc(void *arg)
{
	printf("child pthread id:%ld\n",pthread_self());
	for(int i=0;i<5;i++)
	{
		printf("child pthread %d\n",i);
		if(i == 2)
		{
			//exit child pthread
			//exit(0);
			//pthread_exit(NULL);
			pthread_exit(&num);
		}
	}
	return 0;

}
int main()
{
	pthread_t pthid;
	int ret;
	ret = pthread_create(&pthid,NULL,myfunc,NULL);
	if(ret != 0)
	{
		printf("error number is %d\n",ret);
		printf("%s\n",strerror(ret));
	}
       	printf("father pthread id:%ld\n",pthread_self());
	
	void* ptr = NULL;
	pthread_join(pthid,&ptr);//先将子线程回收
	printf("num = %d\n",*(int *)ptr);

	int i = 0;
	while(i<10)
	{
		i++;
		printf("father pthread %d\n",i);
	
	}
	
	sleep(2);
	return 0;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序猿gao

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值