pthread多线程例子

#include <stdio.h>
#include <pthread.h>
void *mythread1(void)
{
int i;
for(i=0;i<1000;i++)
{
printf(“mythread1! \n”);
sleep(1);
}
}
void *mythread2(void)
{
int i;
for(i=0;i<1000;i++)
{
printf(“mythread2! \n”);
sleep(1);
}
}
void *mythread3(void)
{
int i;
for(i=0;i<1000;i++)
{
printf(“mythread3! \n”);
sleep(1);
}
}

void main()
{
pthread_t id1,id2,id3;
int ret = 0,i = 0;
//返回值 0表示创建成功,第一个为 线程id,第二个参数为线程属性,一般设置为NULL,第三个参数为线程执行的函数,
//第四个参数为线程执行函数中的参数。
/* 创建第一个线程 */
ret = pthread_create(&id1,NULL,(void )mythread1,NULL);
if(0 != ret)
{
printf(“create pthread1 error !\n”);
return 1;
}
/
创建第二个线程 */
ret = pthread_create(&id2,NULL,(void )mythread2,NULL);
if(0 != ret)
{
printf(“create pthread2 error !\n”);
return 1;
}
/
创建第三个线程 */
ret = pthread_create(&id3,NULL,(void *)mythread3,NULL);
if(0 != ret)
{
printf(“create pthread3 error !\n”);
return 1;
}
//pthread_join功能:线程等待,阻塞调用线程,直到指定的线程终止
//第一个参数:线程id,第二个指针:线程退出的返回值的指针
pthread_join(id1,NULL);
pthread_join(id2,NULL);
pthread_join(id3,NULL);

for(i=0;i<1000;i++)
{
	printf("ddadada! \n");
	sleep(1);	
}
return 0;

}
编译命令:
gcc thread_create.c -lpthread -o mythread
执行 ./mythread

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值