vote up 2 vote down star

Hello

I have created a thread that has a method that's running. But sometimes I will want to kill the thread even if the method is still working. How can I do this? I tried Thread.Abort() but it seems to show up a messagebox saying "Thread aborted". How should I go about this?

flag

0% accept rate
2  
Did you read the "remark" section on the MSDN? NEVER USE ABORT. IT IS INTENDED AS LAST RESORT. IF YOU USE THREAD.ABORT, SKY MAY FALL DOWN, AND KITTEN WILL BE KILLED. – J-16 SDiZ Jun 27 at 2:27
Kitten? I thought it was the chicken :) But your profile pic explains your comment! – Rashmi Pandit Jun 27 at 10:10
As others have said, do your best to never do this; you should try to never create a thread that does something that you cannot control. If you have to kill running code that you cannot control, the safest thing to do is to run the code in another PROCESS, not another THREAD. It is a lot safer to take down a process than a thread. – Eric Lippert Jun 27 at 16:34

4 Answers

vote up 2 vote down

The most correct and thread-safe way is to use a WaitHandle to signal to the thread when it's supposed to stop. I mostly use ManualResetEvent.

In your thread, you can have:

private void RunThread()
{
    while(!this.flag.WaitOne(TimeSpan.FromMilliseconds(100)))
    {
        // ...
    }
}

where this.flag is an instance of ManualResetEvent. This means that you can call this.flag.Set() from outside the thread to stop the loop.

The WaitOne method will only return true when the flag is set. Otherwise, it will time out after the specified timeout (100 ms in the example) and the thread will run through the loop once more.

link|flag
vote up 11 vote down

Do not call Thread.Abort()!

Thread.Abort is dangerous. Instead you should cooperate with the thread so that it can be peacefully shut down. The thread needs to be designed so that it can be told to kill itself, for instance by having a boolean keepGoing flag that you set to false when you want the thread to stop. The thread would then have something like

while (keepGoing)
{
    /* Do work. */
}

If the thread may block in a Sleep or Wait then you can break it out of those functions by calling Thread.Interrupt(). The thread should then be prepared to handle a ThreadInterruptedException:

try
{
    while (keepGoing)
    {
        /* Do work. */
    }
}
catch (ThreadInterruptedException exception)
{
    /* Clean up. */
}
link|flag
Using exception handling to control program flow is a horrible idea. Use a WaitHandle instead. – Mark Seemann Jun 27 at 6:11
vote up 0 vote down

Aborting a thread is a very bad idea, since you cannot determine what the thread was doing at the time of the abort.

Instead, have a property that the thread can check, and that your external code can set. Let the thread check this boolean property when it's at a safe place to exit.

link|flag
vote up 4 vote down

You should really only call Abort() as a last resort. You can use a variable to sync this thread instead:

volatile bool shutdown = false;

void RunThread()
{
   while (!shutdown)
   {
      ...
   }
}

void StopThread()
{
   shutdown = true;
}

This allows your thread to cleanly finish what it was doing, leaving your app in a known good state.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.