일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CLASS
- query
- beans
- OOP
- System
- java
- request
- function
- c++
- array
- WebProgramming
- windows
- 악성코드
- algorithm
- Kafka
- 윈도우즈
- 노드
- JavaScript
- Call-by-reference
- Sort
- 포인터
- CSS
- 자료구조
- meta
- API
- HTML
- C
- 투자
- UTF-8
- jsp
Archives
- Today
- Total
hahahia
간단한 쓰레드(thread) 생성 소스 본문
/* thread.c
made by hahahia
*/
#include <stdio.h>
#include <conio.h>
#include <Windows.h>
DWORD WINAPI print2(LPVOID lpParams){
while(1)
{
printf("Thread2");
Sleep(800);
}
}
DWORD WINAPI print1(LPVOID lpParam)
{
while(1)
{
printf("Thread1");
Sleep(500);
}
}
int main()
{
int a;
CreateThread(NULL, 0, print1, NULL, 0 , NULL);
CreateThread(NULL, 0, print2, NULL, 0, NULL);
while(1)
{
scanf("%d", &a);
printf("%d\n", a);
}
}
'Windows Programming > Windows::System' 카테고리의 다른 글
커널 오브젝트와 오브젝트 핸들 02 (0) | 2012.03.14 |
---|---|
커널 오브젝트와 오브젝트 핸들 01 (0) | 2012.03.14 |
프로세스 생성 소스코드 (0) | 2012.03.06 |
시스템 디렉터리와 Windows 디렉터리 예제 소스 (0) | 2012.03.06 |
프로세스의 생성(CreateProcess 함수 및 STARTUPINFO 구조체) (0) | 2012.03.06 |
Comments