1.在linux系统中新建一个C语言文件(将后缀名改为.c)
2.输入以下代码并保存
#include<stdio.h>
#include<unistd.h>
#include<pthread.h>
#include<semaphore.h>
#include<stdlib.h>
sem_t sem[3];//信号量
int count1=10,count2=10,count3=10;//控制输出次数,不设置可能无限输出
void* fun1(void* arg)
{
while(count1>0)//while(1)则无限输出
{
sem_wait(&sem[0]);
write(1,"1",1);
sem_post(&sem[1]);
count1--;
}
}
void* fun2(void* arg)
{
while(count2>0)
{
sem_wait(&sem[1]);
write(1,"2",1);
sem_post(&sem[2]);
count2--;
}
}
void* fun3(void* arg)
{
while(count3>0)
{
sem_wait(&sem[2]);
write(1,"3",1);
sem_post(&sem[0]);
count3--;
}
}
int main()
{
pthread_t id[3];
sem_init(&sem[0],0,1);
sem_init(&sem[1],0,0);
sem_init(&sem[2],0,0);
//创建三个线程
pthread_create(&id[0],NULL,fun1,NULL);
pthread_create(&id[1],NULL,fun2,NULL);
pthread_create(&id[2],NULL,fun3,NULL);
pthread_join(id[0],NULL);
pthread_join(id[1],NULL);
pthread_join(id[2],NULL);
sem_destroy(&sem[0]);
sem_destroy(&sem[1]);
sem_destroy(&sem[2]);
printf("\n");
exit(0);
}
3.在改文件所在文件夹下右键打开终端
4.输入gcc 123.c -o 123 -lpthread进行编译
5.输入./123运行
6.运行结果如下:
版权声明:本文为weixin_43996701原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。