일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Kafka
- WebProgramming
- Call-by-reference
- CLASS
- HTML
- System
- 투자
- 자료구조
- UTF-8
- Sort
- request
- JavaScript
- algorithm
- CSS
- beans
- jsp
- API
- array
- 노드
- windows
- OOP
- C
- meta
- java
- 포인터
- c++
- 윈도우즈
- 악성코드
- function
- query
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