The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
90 views

what's the proper way to tell a thread that is executing a loop to break out of the loop and do something else?

The following code has the disadvantage that the worker thread will neither terminate immediately nor perform a final action after the main thread resets the waithandle. Instead, it will continue ...
0
votes
1answer
69 views

PHP Thread script Aborted

I got a php script running every 1 hour on my server (a thread). What this thread is doing is, the user can upload excel files with data, the thread compares the data in the excel file with that in ...
0
votes
1answer
76 views

Is it ok to call thread.Abort() when the Form is closing? If not, then will the global flag be good enough?

First of all, Thread.Abort() is evil - got it! Now let me explain my situation... Situation: I have a dashboard that only displays current running status to the user. It executes various select ...
3
votes
4answers
149 views

Why my Thread does not stop?

I have the following code, where I start a Thread using a ParameterizedThreadStart object as constructor argument: static object obj = new object(); static void Main(string[] args) { ...
1
vote
2answers
73 views

Is it safe to abort this file-searching thread?

First, the code: lblFileNbr.Text = "?/?"; lblFileNbr.ToolTipText = "Searching for files..."; lock(_fileLock) { _dirFiles = new string[0]; _fileIndex = 0; } if(_fileThread != null && ...
1
vote
1answer
322 views

Preventing threads from processing further once call to stop is being made

I have a windows service which will start and stop the execution of some process that is being done with the held of Threads. I have two classes as follows: public class PerformTask { Thread ...
0
votes
2answers
124 views

Starting new theard from another thread and abort it C#

if i do somtheing like this: new Thread(DoWork).Start(); void DoWork(){new Thread(DoMoreWork).Start();} and i aborting the first thread that run DoWork is DoMoreWork also will aborted? if not how ...
0
votes
3answers
595 views

Thread.Abort() stucks at NetworkStream.Read?

I have a file transfer application (server-client) ... while sending a file, i want to enable cancellation. Client Cancel the SendFile method that it works by backgroundworker then it sends a command ...
-1
votes
3answers
831 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 ...
1
vote
1answer
226 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
249 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 ...
2
votes
0answers
239 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, ...
1
vote
1answer
494 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") ...
14
votes
2answers
2k 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 ...
0
votes
1answer
264 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
331 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(); ...
1
vote
1answer
184 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
2answers
1k 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 / ...
3
votes
2answers
2k 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 ...
5
votes
4answers
498 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, ...
2
votes
2answers
709 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 ...
2
votes
1answer
215 views

Handling unexpected end of requests in servlets

I am currently developing a REST web service with Jersey / Tomcat (but a generic Servlet/Container answer is welcome). If the client does some GET requests on services that return large amount of ...
0
votes
1answer
253 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
135 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 ...
4
votes
8answers
4k 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 ...
5
votes
1answer
9k views

SqlClient calls causing “Thread was being aborted at SNINativeMethodWrapper.SNIPacketGetConnection(IntPtr packet)”

I would really appreciate any suggestions, no matter how simple or complex, to help me get this issue isolated and resolved. I have a bit of code that generates small report files. For each file in ...
10
votes
5answers
11k views

When an ASP.NET System.Web.HttpResponse.End() is called, the current thread is aborted?

when a System.Web.HttpResponse.End() is called a System.Thread.Abort is being fired, which i'm guessing is (or fires) an exception? I've got some logging and this is being listed in the log file... A ...