Windows API一日一練(50)SuspendThread和ResumeThread函數

來源:互聯網
上載者:User

作業系統對線程有幾種狀態的變化:執行,掛起和恢複執行。
當線程做完任務或者現在想暫停線程運行,就需要使用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 深圳
#003  void ThreadSuspendResume(void)
#004  {
#005         ::SuspendThread(m_hThread);
#006
#007         Sleep(10);
#008         ::ResumeThread(m_hThread);
#009  }
#010
 
第5行是暫停線程執行。
第8行是繼續線程執行

本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/caimouse/archive/2007/10/15/1826404.aspx

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.