lamothe6.txt

来自「国外游戏开发者杂志1997年第七期配套代码」· 文本 代码 · 共 13 行

TXT
13
字号
LISTING 6. Testing the status test of a thread.
//...code

DWORD state = WaitForSingleObject(thread_handle, 0);  // get the status

// test the status

if (state==WAIT_OBJECT_0) { // thread is signaled, i.e. terminated }
else
if (state==WAIT_TIMEOUT) { // thread is still running }

//...code

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?