Windows API一日一练(50)SuspendThread和ResumeThread函数

<iframe align="center" marginwidth="0" marginheight="0" src="http://www.zealware.com/csdnblog336280.html" frameborder="0" width="336" scrolling="no" height="280"></iframe>
操作系统对线程有几种状态的变化:执行,挂起和恢复执行。
当线程做完任务或者现在想暂停线程运行,就需要使用 SuspendThread 来暂停线程的执行,当然恢复线程的执行就是使用 ResumeThread 函数了。这两个函数使用很简单的,下面就来看看例子是怎么样使用的。
函数 SuspendThread ResumeThread 声明如下:
WINBASEAPI
DWORD
WINAPI
SuspendThread(
__in HANDLE hThread
);
WINBASEAPI
DWORD
WINAPI
ResumeThread(
__in HANDLE hThread
);
hThread 是线程的句柄。
调用函数的例子如下:
#001// 线程的暂停和恢复。
#002// 蔡军生 2007/10/15 QQ:9073204 深圳
#003void ThreadSuspendResume(void)
#004{
#005 ::SuspendThread(m_hThread);
#006
#007 Sleep(10);
#008 ::ResumeThread(m_hThread);
#009}
#010
5 行是暂停线程执行。
8 行是继续线程执行



你可能感兴趣的:(html,windows,qq)