C++进阶—>互斥量:Event控制:多线程实现生产者-消费者例子

     一个典型的生产者-消费者问题,它们公用的资源是SharedBuffer,当Buffer中有数据且未满时,两个线程都可以运行,当Buffer为 空时,Consumer就要等待,直到Buffer不为空,这里就是用event来实现的;同样,当Buffer为满时,Producer就要等待。

     开发环境:VS2012,win32控制台程序

#include "stdafx.h"
#include <iostream>
#include <windows.h>

using namespace std;

#define BUFSIZE 5
int SharedBuffer[BUFSIZE];
int head,tail;
int cont;

HANDLE hMutex;
HANDLE hNotFullEvent, hNotEmptyEvent;

void BB_Producer()
{
	int i;
	for (i=20; i>=0; i--) {
		while(1) {
			WaitForSingleObject(hMutex,INFINITE);
			if (cont == BUFSIZE) { // 缓冲区满
				ReleaseMutex(hMutex);
				// 等待直到缓冲区非满
				WaitForSingleObject(hNotFullEvent,INFINITE);
				continue;
			}
			// 得到互斥锁且缓冲区非满,跳出while循环
			break;
		}
		// 得到互斥锁且缓冲区非满,开始产生新数据
		cout << "Produce: " << i << endl;
		SharedBuffer[tail] = i;
		tail = (tail+1) % BUFSIZE;
		cont++;
		ReleaseMutex(hMutex); // 结束临界区
		PulseEvent(hNotEmptyEvent); // 唤醒消费者线程
	}
}
void BB_Consumer()
{
	int result;
	while (1) {
		WaitForSingleObject(hMutex,INFINITE);
		if (cont == 0) { // 没有可以处理的数据
			ReleaseMutex(hMutex); // 释放互斥锁且等待
			// 等待直到缓冲区非空
			WaitForSingleObject(hNotEmptyEvent,INFINITE);
		}
		else if (SharedBuffer[head] == 0) {
			cout << "Consumed 0: end of data" << endl;
			ReleaseMutex(hMutex); // 结束临界区
			ExitThread(0);
		}
		else { // 获得互斥锁且缓冲区有数据,开始处理
			result = SharedBuffer[head];
			cout << "Consumed: " << result << endl;
			head = (head+1) % BUFSIZE;
			cont--;
			ReleaseMutex(hMutex); // 结束临界区
			PulseEvent(hNotFullEvent); // 唤醒生产者线程
		}
	}
}
int main()
{
	HANDLE hThreadVector[2];
	DWORD ThreadID;
	cont = 0;
	head = 0;
	tail = 0;
	hMutex = CreateMutex(NULL,FALSE,NULL);
	hNotFullEvent = CreateEvent(NULL,TRUE,FALSE,NULL);
	hNotEmptyEvent = CreateEvent(NULL,TRUE,FALSE,NULL);
	hThreadVector[0] = CreateThread (NULL, 0,
		(LPTHREAD_START_ROUTINE) BB_Producer,
		NULL, 0, (LPDWORD)&ThreadID);
	hThreadVector[1] = CreateThread (NULL, 0,
		(LPTHREAD_START_ROUTINE) BB_Consumer,
		NULL, 0, (LPDWORD)&ThreadID);
	WaitForMultipleObjects(2,hThreadVector,TRUE,INFINITE);

	system("pause");
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值