.Net 기반에서는 using System.Threading; 하고 스레드를 쓰면 된다... 하지만 C/C++ 만 가지고 Win32에서 쓰레드 쓰려다 참 고생 많이 했다.. POSIX 표준 Thread, 줄여서 보통 pthreads라고 불리는 것을 Win32에서 쓰는 법. 1. 일단 http://sourceware.org/pthreads-win32/ 로 가서 DLL, LIB, header 파일을 받는다. Just the DLLs, LIBs, header files, and admin documentation is available at: ftp://sourceware.org/pub/pthreads-win32/dll-latest include 폴더와 lib 폴더를 받으면 된다. 2. 그리고 다운받은 파일 ..