English 中文(简体)
杀死运行中的线索
原标题:Kill a running thread

万一我们用武力 杀死一条跑线怎么办?

我有一条线索,即 < code> RecordThread () ,它要求使用一些复杂和耗时的函数。在这些函数中,我使用 catchs 区块,分配和交易内存,以及使用关键节变量等。

类似

  void RecordThread()
  {
    AddRecord();
    FindRecord();
    DeleteRecord();
    // ...
    ExitThread(0);
   } 

创建此线索后, 我将立即在线索完成执行前杀死它 。 在此情况下, 如果线索被强行杀死, 会发生什么? 内部功能 ( < code> AddRecord , < code> DeleteRecord ) 在我们杀死线索后完成执行吗?

最佳回答

创建这条线之后,我马上在这条线完成执行之前 把它杀死。

我猜你的意思是使用 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);
问题回答

http://msdn.microsoft.com/en-us/library/windows/desktop/ms682659%28v=vs.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/windows/desktop/ms68262559%28v=vs.85%29.aspx

退出线索是退出 C 代码中线索的首选方法。 但是, 在 C++ 代码中, 线索被退出了 < 坚固 >, 任何破坏器可以被称为 < / 坚固 >, 或任何其他自动清理可以进行。 因此, 在 C++ 代码中, 您应该从线索函数返回 。

然而,功能呼叫当然会完成, 因为它们被重新呼叫到 ExutThread () 之前 。

杀死线是最后的手段 - 因为Andre指出它让数据处于未知状态, 如果线索在共享对象上起作用, 你永远不应该这样做。 更好的选择是通知线以完成工作 :

-using global volatile (important) variable which is changed only by main thread and tested by workers
-using signal type synchronization objects (mainly Events) also set by main thread and tested by workers

运行良好的线索示例 :

definition in *.h ------------------------------------

DWORD WINAPI Th_EspectroIF(LPVOID lpData);

CThread th_espectro(Th_EspectroIF);

use in *.cc -----------------------------------

DWORD WINAPI Th_EspectroIF(LPVOID lpData)
{

//Your code...

th_espectro.Stop(true);//stop this Thread 

}

调用线索 : < strength_espectro. start ();





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签