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
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") ...
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
21 views

Thread abort and ThreadExit not working visualstudio2008 c++

I'm using threads in c++ visualstudio2008, when my form closes the thread still stays active so I tried thread::abort when form is closing, but after calling about the thread is still alive. so I put ...
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 ...
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 ...