简单的win32多线程---生产者、消费者模型

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

using namespace std;
#define BUFSIZE 5
static int SharedBuffer[BUFSIZE];
static int head = 0, tail = 0;
static int count = 0;
static HANDLE hMutex;
static HANDLE hNotFullEvent, hNotEmptyEvent;

static void BB_Producer()
{
	int i;
	for (i=20; i>=0; i--) 
	{
		Sleep(2000);

		while (true)
		{
			WaitForSingleObject(hMutex,INFINITE);
			if (count == BUFSIZE)	// 缓冲区满
			{
				ReleaseMutex(hMutex);	//释放锁
				WaitForSingleObject(hNotFullEvent,INFINITE);	//等待消费者取走
				continue;
			}
			// 得到互斥锁且缓冲区非满,跳出while循环
			break;
		}

		// 得到互斥锁且缓冲区非满,开始产生新数据
		cout << "Produce: " << i << endl;
		SharedBuffer[tail] = i;
		tail = (tail+1) % BUFSIZE;
		count++;
		ReleaseMutex(hMutex); // 结束临界区
		PulseEvent(hNotEmptyEvent); // 唤醒消费者线程
	}
}

static void BB_Consumer()
{
	int result;
	while (1) 
	{
		WaitForSingleObject(hMutex,INFINITE);
		if (count == 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;
			count--;
			ReleaseMutex(hMutex); // 结束临界区
			PulseEvent(hNotFullEvent); // 唤醒生产者线程

			Sleep(2000);
		}
	}
}

int main()
{
	HANDLE hThreadVector[2];
	DWORD ThreadID;

	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);
	cout<<"Producer thread ID: "<<ThreadID<<", "<<hThreadVector[0]<<endl;

	hThreadVector[1] = CreateThread (NULL, 0,
														   (LPTHREAD_START_ROUTINE) BB_Consumer,
															NULL, 0, (LPDWORD)&ThreadID);
	cout<<"Consumer thread ID: "<<ThreadID<<", "<<hThreadVector[1]<<endl;

	WaitForMultipleObjects(2,hThreadVector,TRUE,INFINITE);

	return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值