티스토리 뷰
쓰레드 - 이벤트2 문제점
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 |
#include "stdafx.h"
#include <Windows.h>
#include <process.h>
#include <tchar.h>
#include <locale.h>
TCHAR string[100];
HANDLE hEvent;
unsigned int WINAPI ThreadProc2(LPVOID lParam)
{
WaitForSingleObject(hEvent, INFINITE); // hEvent 가 대기상태가 된다.
_tprintf(_T("Output string length : %d\n"), _tcslen(string) - 1);
return 0;
}
unsigned int WINAPI ThreadProc(LPVOID lParam)
{
WaitForSingleObject(hEvent, INFINITE); // hEvent 가 대기상태가 된다.
_fputts(_T("Output string : "), stdout);
_fputts(string, stdout);
return 0;
}
int main()
{
_wsetlocale(LC_ALL, L"korean"); // #include <locale.h>필요, 유니코드에서 한글출력, wprintf(), fputws() 호출 전에 먼저 호출되야한다.
DWORD dwThreadID[2];
HANDLE hThread[2];
hEvent = CreateEvent(
NULL, // 상속불가
TRUE, // 수동모드, 자동모드로 하면 대기상태에서 해제 안되네...
FALSE, // non-signal 상태로 생성
NULL);
if (hEvent == NULL)
_fputts(_T("이벤트생성실패 %d"), stdout);
hThread[0] = (HANDLE)_beginthreadex(NULL, 0, ThreadProc, NULL, 0, (unsigned*)&dwThreadID);
hThread[1] = (HANDLE)_beginthreadex(NULL, 0, ThreadProc2, NULL, 0, (unsigned*)&dwThreadID);
if (hThread[0] == NULL && hThread[1] == NULL)
{
_fputts(_T("쓰레드 생성 실패\n"), stdout);
return -1;
}
_fputts(_T("insert string : "), stdout);
_fgetts(string, 30, stdin);
SetEvent(hEvent); // 위에서 키 입력이 되면 대기중인 hEvent를 Singnal 상태로 바꾼다.
WaitForMultipleObjects(2, hThread, TRUE, INFINITE); // hThread 가 끝날때까지 대기한다.
CloseHandle(hThread[0]);
CloseHandle(hThread[1]);
CloseHandle(hEvent);
_tprintf(_T("키 입력 후 엔터키를 치세요....\n"));
getchar();
return 0;
}
|
cs |
위 결과는 정상저긍로 출력이 되었으나 간혹 Output String 과 Output string length 가 같은 줄에 나오는 경우가 발생한다. 이것은 2개의 쓰레드가 동시에 실행되어 생기는 문제로 이를 해결하기 위해 이벤트와 뮤텍스 혼합형을 사용하게된다. http://petra.tistory.com/1050