【发布时间】:2015-12-31 18:39:57
【问题描述】:
我试图强调我在多线程部分的知识,但我在让事件正常运行方面遇到了一些问题。
所以基本上我使用两个线程一个线程只是将某个变量 yy1 设置为一个,第二个线程应该有一个等待函数来获取 yy1 的值并添加一个额外的值并将结果放入变量 y2 。
我可以用 Mutex 或 semaphore 做到这一点,但很难用它来使用事件。
#include <process.h>
#include <windows.h>
#include <iostream>
#include <math.h>
using namespace std;
void ThreadFunction1(void *pParam);
void ThreadFunction2(void *pParam);
HANDLE h_Event1;
int yy1= 0;
int y2 = 0;
void main(void) // Primary Thread
{
h_Event1 = CreateEvent(NULL, // Security Attributes
FALSE, // Manual Reset: no/auto , Auto Reset when the event released
FALSE, // Initial Statse: not set , not occupied
NULL); // Name: no
_beginthread(ThreadFunction1, // Pointer to Thread Function
0, // Stack Size set automatically
(void*)&yy1); // Frequency
_beginthread(ThreadFunction2, // Pointer to Thread Function
0, // Stack Size set automatically
(void*)&y2); // Frequency
SetEvent(h_Event1);
CloseHandle(h_Event1);
cout << yy1<<endl;
cout << y2 << endl;
}
void ThreadFunction1(void *pParam) // Secundary Thread
{
int xx1;
xx1 = (int)*(int*)pParam;
WaitForSingleObject(h_Event1, INFINITE);
xx1 = 1;
*(int*)pParam = xx1;
Sleep(100);
_endthread();
}
void ThreadFunction2(void *pParam) // Secundary Thread
{
int xx1;
xx1 = (int)*(int*)pParam;
WaitForSingleObject(h_Event1, INFINITE);
xx1 = 1+ (yy1);
*(int*)pParam = xx1;
Sleep(10);
_endthread();
}
输出是:
0
2
注意: 我知道在这种情况下使用多线程可能没有意义,但我只是想习惯使用事件。
【问题讨论】:
-
看起来像
C++。用适当的语言特定标签标记您的问题。
标签: c++ multithreading event-handling