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
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
68 views

WaitDialog when GUI is taking a while

I have an application that can take a long time to perform some GUI updates. I can't run this in a background thread because the long processing is associated with updating GUI components which can ...
0
votes
3answers
72 views

Thread.Abort causing deadlock in catch{} statement

I have a set of threaded classes that print different types of documents. The classes use inheritance to share common code. The class constructor requires file name and printer name arguments. A ...
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
3answers
120 views

What does resetAbort do?

Hi I have following test code: class Program { static void Main(string[] args) { Thread t = new Thread(Work); t.Start(); Thread.Sleep(1000); t.Abort(); ...
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
101 views

Problem with the nonresponding threads

I have a web application which runs multiple threads on button click each thread making IO call on different ipAddresses ie(login windows account and then making file operations). There is a treshold ...