创建这条线之后,我马上在这条线完成执行之前 把它杀死。
我猜你的意思是使用 TertyTread ()
的方式如下:
HANDLE thread = CreateThread(...);
// ...
// short pause or other action?
// ...
TerminateThread(thread, 0); // Dangerous source of errors!
CloseHandle(thread);
如果是这样的话, 那么就没有了, 将停止执行线条执行 RecordThread ()
() ) 的确切位置, 而其他线条调用 TrendThread ()
() < a href=" http://msdn. microsoft. com/ en- us/library/ windows/desktop/ ms686717 (v=s. 85). aspx" rel="noreferrer" < code> TerduleThread () < () 文件时, 这个精确点有点随机, 取决于您无法控制的复杂时间问题。 这意味着您可以在线索中处理适当的清理, 因此, < ahref="https://stackoverflow. com/ a/ 4149/210/313063" 。
请求完成线索的正确方式是使用 WaitForSingleObject ()
这样的 < code for SingleObject () 来完成线索 :
HANDLE thread = CreateThread(...);
// ...
// some other action?
// ...
// you can pass a short timeout instead and kill the thread if it hasn t
// completed when the timeout expires.
WaitForSingleObject(thread, INFINITE);
CloseHandle(thread);