I am calling ChannelServer.ListeningThread.Abort on the following thread, however nothing seems to happen. I would like to be more specific, but I can't think of anything more. There seems to be no ThreadAbortException that is thrown, and this exception should be thrown regardless of the blocking listener (it works perfectly on threads that are blockingly-receiving).

Important EDIT: With a ManualResetEvent.WaitOne instead of AcceptSocket, as Lyrik has suggested for testing, it works perfectly. How come AcceptSocket blocks the ThreadAbortException?

LINK: This forum thread seems to discuss the same issue, although I cannot figure anything out of it: http://www.tek-tips.com/viewthread.cfm?qid=319436&page=413

ChannelServer.ListeningThread = new Thread(new ThreadStart(delegate()
{
    Log.Inform("Waiting for clients on thread {0}.", Thread.CurrentThread.ManagedThreadId);

    while (true)
    {
        try
        {
            new Thread(new ParameterizedThreadStart(ChannelClientHandler.Initialize)).Start(ChannelServer.Listener.AcceptSocket());
        }
        catch (ThreadAbortException)
        {
            Log.Inform("Aborted client listening thread {0}.", Thread.CurrentThread.ManagedThreadId);
            break;
        }
    }
}));
ChannelServer.ListeningThread.Start();
link|improve this question

1  
I can't imagine that this is the right way to go about whatever it is you're trying to do. You really shouldn't be spawning this many threads. – Adam Robinson Jun 29 '10 at 1:40
2  
@Adam, that's a normal piece of code on a server... starts a new thread for each accepted connection. – Lirik Jun 29 '10 at 2:14
Ouch, that's not normal on anything but a trivial server. Thread per connection will generally cause problems when scaling up. – spender Jun 29 '10 at 2:26
1  
It is a trivial server, and it is not the point of the question. :) – Lazlo Bonin Jun 29 '10 at 2:39
1  
BTW, since the behavior here seems to be that the call is blocking the kernel (and the Abort on the managed thread isn't enough to get it to unblock), as per the MSDN page you may want to loop on Pending instead: "If you want to avoid blocking, use the Pending method to determine if connection requests are available in the incoming connection queue." – James Manning Jun 30 '10 at 1:51
show 3 more comments
feedback

2 Answers

I'm not sure why you're getting that error, but here is a simple example that works:

ManualResetEvent mrse = new ManualResetEvent(false);
Thread test = new Thread(() =>
    {
        while (true)
        {
            try
            {
                mrse.WaitOne();
            }
            catch (ThreadAbortException)
            {
                Console.WriteLine("No problem here...");
            }
        }
    });

test.IsBackground = true;
test.Start();

Thread.Sleep(1000);
test.Abort();
Console.ReadKey();

So it works for me... I assumed you've stepped through the debugger and your break point inside the catch statement wasn't hit, is that correct?

Note: it's bad practice to call Abort, instead you should call Interrupt and handle the ThreadInterruptedException... it's much safer.

link|improve this answer
"So it works for me... I assumed you've stepped through the debugger and your break point inside the catch statement wasn't hit, is that correct?" Correct. – Lazlo Bonin Jun 29 '10 at 2:42
@Lazo, where do you make the abort call? – Lirik Jun 29 '10 at 2:48
@Lirik: From another thread, which uses this method: ''ChannelServer.ListeningThread.Abort();'' Does the fact that it comes from another thread hinder the process? If so, I guess I'll use delegates. – Lazlo Bonin Jun 29 '10 at 2:53
1  
I suspect Accept is catching thread-related exceptions and performing its own bookkeeping. – Yuliy Jun 29 '10 at 5:18
1  
as per the MSDN page, it seems simpler to just change your while loop to put the existing body inside a if (Pending) (potentially with an else that does a sleep(0) or sleep(1) or sleep(500) or something). Then you can change the 'true' to 'canceled == false' (canceled being some instance or static bool you add) then the other thread can just canceled = true instead of having to Abort() :) – James Manning Jun 30 '10 at 2:13
show 4 more comments
feedback
up vote 0 down vote accepted

This works, but it's incredibly sloppy and thread-wasting. Could anyone just point me to a way to throw an exception that "AcceptSocket" won't automatically catch?

ChannelServer.ListeningThread = new Thread(new ThreadStart(delegate()
{
    Log.Inform("Waiting for clients on thread {0}.", Thread.CurrentThread.ManagedThreadId);

    while (true)
    {
        try
        {
            ChannelServer.ClientConnected.Reset();
            ChannelServer.Listener.BeginAcceptSocket(new AsyncCallback(ChannelClientHandler.EndAcceptSocket), ChannelServer.Listener);
            ChannelServer.ClientConnected.WaitOne();
        }
        catch (ThreadInterruptedException)
        {
            Log.Inform("Interrupted client listening thread {0}.", Thread.CurrentThread.ManagedThreadId);
            break;
        }
    }
}));
ChannelServer.ListeningThread.Start();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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