
多线程
文章平均质量分 91
iteye_19371
这个作者很懒,什么都没留下…
展开
-
使用 C 和 Win32 进行多线程编程
本文转自http://msdn.microsoft.com/zh-cn/library/y6h8hye8(VS.80).aspx MicrosoftVisual C++ 支持在 MicrosoftWindows(Windows XP、Windows 2000、Windows NT、Windows Me 和Windows&...原创 2009-04-10 15:00:00 · 429 阅读 · 0 评论 -
C创建新线程的源码
#include <windows.h> #include <stdio.h> //线程函数 DWORD WINAPI ThreadProc(LPVOID lpParam) { int i = 0; while(i < 20) { printf("I am from a thread,count = %d\n",i ); } ...原创 2009-04-10 15:47:13 · 143 阅读 · 0 评论