Tagged Questions

12
votes
2answers
640 views

Thread abort leaves zombie transactions and broken SqlConnection

I feel like this behavior should not be happening. Here's the scenario: Start a long-running sql transaction. The thread that ran the sql command gets aborted (not by our code!) When the thread ...
5
votes
4answers
234 views

How do I abort multiple threads?

In this code, when button1 is clicked twice, it creates 2 separate threads. On one click, it creates a new thread on the heap and field t1 points to the new thread on the heap. When I click button2, ...
4
votes
8answers
3k views

How do I suppress a thread.abort() error C#?

I am showing a splash screen on a background thread while my program loads. Once it loads I am aborting the Thread as it's only purpose was to show a Now Loading splash form. My problem is that ...
2
votes
0answers
85 views

Aborting a thread-pool thread

The answer to the question - Implement C# Generic Timeout provides a solution which involves aborting a thread-pool thread. I know the consequences of aborting an explicitly created thread. I guess, ...
2
votes
2answers
384 views

How can I wake a sleeping thread in C#?

Before people suggest it: I am not using Thread.sleep for anything except trying to find a way to work around it. I am trying to handle other people's future code which may not be .Sleep() free. I ...
2
votes
2answers
449 views

Thread.Abort doesn't seem to throw a ThreadAbortException because of AcceptSocket

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 ...
1
vote
1answer
109 views

Thread.abort hangs forever

Code to launch a wmi query on remote computers. This code runs in several threads at the same time. oquery = New ManagementObjectSearcher("select * from Win32_Computersystem") ...
0
votes
1answer
17 views

Abort WCF server task if client is disconnected

We have a WCF service hosted under Windows service. The client of this service has set up closeTimeout, receiveTimeout, openTimeout, sentTimeout set to 5 minutes. Service also has the same. In certain ...
0
votes
1answer
109 views

C# Thread method reset problem

I have a thread array in which each thread gets a search task from a thread search manager - using a producer/consumer module - and when it finishes it, it waits until the next signal from the search ...
0
votes
2answers
487 views

.NET threading: how can I capture an abort on an unstarted thread?

edit: this seems to be a sticking point, so I'll just get it out of the way: I'm not using this for synchronization. Simply to kill long-running tasks when they no longer become necessary / ...
0
votes
1answer
210 views

In .NET when Aborting Thread, can this piece of code get corrupted?

Little intro: In complex multithreaded aplication (enterprise service bus ESB), I need to use Thread.Abort, because this ESB accepts user written modules which communicates with hardware security ...