答案 0 :(得分:36)
MSDN提到“当线程终止时,线程对象获得信号状态,满足在对象上等待的任何线程”。
因此,您可以通过检查线程句柄的状态来检查线程是否已终止 - 是否已发出信号:
DWORD result = WaitForSingleObject( hThread, 0);
if (result == WAIT_OBJECT_0) {
// the thread handle is signaled - the thread has terminated
}
else {
// the thread handle is not signaled - the thread is still alive
}
答案 1 :(得分:6)
您链接的文档警告不要使用STILL_ACTIVE
作为返回码,因为它无法与用于指示活动线程的返回值区分开来。 所以不要将它用作返回值,你就不会遇到这个问题。