线程交换执行
如果对于信号量的函数不清楚的也可以看这里 : https://blog.csdn.net/function_dou/article/details/79888192
使用两个信号量对线程进行阻塞, 执行, 阻塞, 执行. 不断的重复. 从而实现线程的不断的交互
使用信号量控制进程的输出, 不断的交替输出.
/*************************************************************************
> File Name: sem_init_2_进程同步.cpp
> Author: Function_Dou
> Mail: NOT
> Created Time: 2018年03月23日 星期五 08时29分03秒
************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <semaphore.h>
#include <pthread.h>
// 设置两个信号量
sem_t sem_1, sem_2;
// 重新包装线程创建
void Pthread_create(pthread_t *id, void *(*fun)(void *), void *arg)
{
if((errno = pthread_create(id, NULL, fun,arg)) != 0)
{
fprintf(stderr, "pthread_create error : %s\n", strerror(errno));
exit(1);
}
}
// 线程 1
void *thread_1(void *)
{
// 对进程 1 先执行. 因为 sem_1 一开始就是空闲的.
sem_wait(&sem_1);
while(1)
{
printf("thread 1\n");
fflush(stdout);
// 将 sem_2 信号量的 sv++, 线程不再空闲
sem_post(&sem_2);
// 等待 线程2 执行完, 阻塞等待
sem_wait(&sem_1);
sleep(1);
}
pthread_exit((void *)0);
}
void *thread_2(void *)
{
// 一开始就阻塞, 直到线程1执行 sem_post 才开始执行
sem_wait(&sem_2);
while(1)
{
printf("2 pthread\n");
fflush(stdout);
// 将 sem_1 信号量 ++. 让线程1开始执行
sem_post(&sem_1);
// 等待线程1执行完
sem_wait(&sem_2);
sleep(1);
}
pthread_exit((void *)0);
}
int main()
{
pthread_t id_1, id_2;
// 将sem_1信号量初始化为 空闲. 很重要
// 将sem_2信号量初始化为 忙
// 这是最重要的
sem_init(&sem_1, 0, 1);
sem_init(&sem_2, 0, 0);
Pthread_create(&id_1, thread_1, NULL);
Pthread_create(&id_2, thread_2, NULL);
pthread_join(id_1, NULL);
pthread_join(id_2, NULL);
exit(0);
}