1
vote
1answer
25 views

Suspending Threads in applet

I need to write a JApplet stop method that suspends the second thread by sending a suspend() message to the 2nd thread when the applet is minimized. I then have to resume the thread when the applet is ...
1
vote
3answers
166 views

Suspend main thread in qt

I want to make a function that stops the main thread and restarts restarts it after a couple of seconds. I tried the following: void Mainwindow::timeout() { QTimer timer; ...
0
votes
3answers
184 views

Pausing/resuming multiple threads in java

Trying to write a program that will run, suspend, and resume 3 threads. here's the coding: class Connectthread implements Runnable { public void run() { for(int j=0;j<90;j+=10) ...
2
votes
1answer
541 views

How to use waitHandle in vb.net

I have VS2010 and I'm working on a windows form application. So, I have threads created dynamically (depending on user input), the processing for these threads can take quiet a while (days in extreme ...
2
votes
2answers
883 views

Alternative to Thread.Suspend() method

Thread.Suspend() method is obsolete as you know. I want to suspend thread immidiately when button click event comes. I used Thread.Suspend() and it works perfect but everyone suggest that using ...
5
votes
1answer
1k views

How to Suspend and Resume Threads in android?

I just noticed that suspend and resume in android thraeding has been deprecated. what is the work around for this or how can I suspend and resume a thread in android? any help would be much ...
1
vote
4answers
885 views

Terminate loopless thread instantly without Abort or Suspend

I am implementing a protocol library. Here a simplified description. The main thread within the main function will always check, whether some data is available on the the networkstream (within a ...
1
vote
3answers
138 views

How to immediately pause another Thread

I've looked at a number of threads but I haven't found what I wanted so here goes: I'm writing a game in which a thread - GameThread - loops continuously, updating all my sprites, rendering them, and ...
0
votes
3answers
585 views

suspend pthread?

I want to implement a mutex lock. From my understanding, mutex.lock() should work like 1) check lock owner 2) if lock is owned, put thread in waiting queue 3) suspend this thread until another thread ...
1
vote
1answer
830 views

Pausing a download thread

I'm writing a very simple bulk download program in c# that reads a .txt file of URLs to download. I've set it up with a global Thread and delegate for updating the GUI, and the pressing of the ...
0
votes
2answers
726 views

Does a Python threading.Condition.wait() suspend execution immediately?

If I call wait() on a python condition variable, does the calling thread suspend execution and yield or does it keep blocking until the next context switch?
0
votes
1answer
243 views

Suspending Web Request (Thread)

I want to suspend the web request handler thread and Another thread pool will handle the request concurrently and send response to client. Or thread pool send notification to the web request handler ...
3
votes
3answers
2k views

Self Suspending a thread in Delphi when it's not needed and safely resuming

This question involves Delphi and XE specifically deprecating Suspend and Resume. I have read other posts and I have not found a similar usage so far, so I’m going to go ahead and ask for a ...
5
votes
1answer
371 views

How to suspend a blocking thread without obsolete Thread.Suspend?

I have a thread that waits on TcpListener.AcceptTcpClient(), which blocks, which I want to suspend at times. I've read about Monitor.Wait(...), but I only have experience working with mutexes and if ...
4
votes
4answers
3k views

Windows SuspendThread doesn't? (GetThreadContext fails)

We have an Windows32 application in which one thread can stop another to inspect its state [PC, etc.], by doing SuspendThread/GetThreadContext/ResumeThread. if ...
4
votes
3answers
266 views

Java threading problem

I'm using multiple threads in my application. Basically I have a combo box and upon selecting Inbox, p1 resumes and p2 is suspended and upon selecting Send, p2 starts and p1 stops. Below is the code ...
3
votes
2answers
2k views

C# How to pause/suspend a thread then continue it?

I am making an application in C# which uses a winform as the GUI and a separate thread which is running in the background automatically changing things. Ex: public void run() { while(true) ...
7
votes
4answers
5k views

Delphi thread that waits for data, processes it, then resumes waiting

I need to create a thread in Delphi with the following characteristics: Waits until the main thread adds data to a shared queue. Processes all the data in the queue, returning the results to main ...
2
votes
4answers
952 views

Resuming C# threads

Possible duplicate question: http://stackoverflow.com/questions/142826/is-there-a-way-to-indefinitely-pause-a-thread In my code i do the below Thread mainThread //... mainThread.Resume(); void ...
0
votes
3answers
913 views

How to Suspend a button event in C#?

In my application I want to suspend a button event for some time so that I can fire another event after which the first button event will resume. In c# I am not getting how do I perform it using ...