티스토리 뷰
앞서(http://petra.tistory.com/1044) 임계영역 동기화는 특정 변수의 값을 증가시켰다.
이처럼 변수의 증감이 필요한 경우 해당 변수만 InterlockedIncrement(LONG volatile* 변수) 또는 InterlockedDecrement(LONG volatile* 변수) 로 만들어주면 된다.
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 |
#include "stdafx.h"
#include <Windows.h>
#include <process.h>
#include <tchar.h>
#include <locale.h>
#define NUM_OF_GATE 6
LONG gTotalCount = 0;
void IncreaseCount()
{
InterlockedIncrement(&gTotalCount); // 자동 증가
}
unsigned int WINAPI ThreadProc(LPVOID lParam)
{
for (int i = 0; i < 1000; i++)
IncreaseCount();
_tprintf(_T("현재 카운터 : %d\n"), gTotalCount);
return 0;
}
int main()
{
_wsetlocale(LC_ALL, L"korean"); // #include <locale.h>필요, 유니코드에서 한글출력, wprintf(), fputws() 호출 전에 먼저 호출되야한다.
DWORD dwThreadId[NUM_OF_GATE];
HANDLE hThread[NUM_OF_GATE];
for (int i = 0; i < NUM_OF_GATE; i++)
{
hThread[i] = (HANDLE)_beginthreadex(NULL, 0, ThreadProc, NULL, CREATE_SUSPENDED, (unsigned*)&dwThreadId[i]);
if (hThread[i] == NULL)
{
_tprintf(_T("쓰레드 생성 실패!\n"));
return -1;
}
}
for (int i = 0; i < NUM_OF_GATE; i++)
ResumeThread(hThread[i]);
WaitForMultipleObjects(NUM_OF_GATE, hThread, TRUE, INFINITE);
_tprintf(_T("\nTotal Count : %d\n"), gTotalCount);
for (int i = 0; i < NUM_OF_GATE; i++)
CloseHandle(hThread[i]);
_tprintf(_T("키 입력 후 엔터키를 치세요....\n"));
getchar();
return 0;
}
|
cs |