Tagged Questions
1
vote
1answer
21 views
How to Interrupt/Stop/End a hanging multi-threaded python program
I have a python program that implements threads like this:
class Mythread(threading.Thread):
def __init__(self, name, q):
threading.Thread.__init__(self)
self.name ...
0
votes
2answers
36 views
In MQ v6 api - how to stop MQQueue get() method?
I'm writing a simple Java application using MQ v6 API classes
Right now I'm able to browse a remote queue in while cycle. This program runs as windows service, and must be interrupted then the ...
1
vote
3answers
58 views
Threads in Java getting NullPointerException
I'm just trying to call a thread in java. I want to check if the thread is interrupted or not. The thread is defined in class "Scheduler". Here's the code:
if (flag == true)
{
...
0
votes
3answers
45 views
Calling and using the .interrupt() method?
How exactly do i call the .interrupt() method? When I have Thread.sleep(1000), when and where do I call the .interrupt() method? is it after? What I want to do is stop Thread.sleep(1000) midway.
...
1
vote
2answers
51 views
Stop Thread right after one Minute
I have a JButton to invoke my thread. But what I actually want to do is to stop the thread just after the one minute!
My actionListener Method is:
private void ...
0
votes
1answer
32 views
timer interrupt thread python
I've been trying to make a precise timer in python, or as precise a OS allows it to be. But It seams to be more complicated than I initially thought.
This is how I would like it to work:
from time ...
0
votes
3answers
56 views
Check if a thread is interrupted?
I just want to get know about if this thread is interrupting or not if I'm doing it right?
please give me hint if I'm wrong
public void run(){
int i;
...
0
votes
2answers
64 views
Stopping a Java Thread with heavy DB operations
I'm using a third party library in my thread which involves some heavy DB operations .
Sometimes due to the lock on the DB or any other reasons execution of thread gets stuck . I want to kill the ...
0
votes
5answers
62 views
HowTo- thread stop
just a little question, i want to stiop the following thread, but i have no idea how i should do. Please help me. Googles help wasnt useful this time.
new Thread(){
public void run() {
...
0
votes
3answers
83 views
How to synchronize Thread.sleep and Thread.interrupt in Java?
I would like to write a test to interrupt a thread when it is executing an interruptible call, e.g. Thread.sleep.
I would like to synchronize two threads: one thread calls Thread.sleep and another ...
8
votes
3answers
111 views
How does wait know about interrupt in Java?
Thread.interrupt interrupts such calls as sleep, join and wait. I wonder how it is exactly implemented.
I know Thread.interrupt sets a flag isInterrupted. Does wait just polls this flag ? I hope it ...
3
votes
3answers
73 views
“Clean” way to interrupt a thread which could be doing something
Ok, let's say I have a Thread which executes a while() loop. During the loop, could do something and then go back to sleep:
public void run() {
while (some_condition) {
doSomeLongJob(); ...
2
votes
1answer
76 views
c - interrupt a function call which is executing in a thread
I have a DLL which contains a thread function whose pseudocode looks like:
volatile BOOL stopped = FALSE;
void StopEverything()
{
/* Enter critical section */
stopped = TRUE;
/* Leave ...
2
votes
1answer
89 views
Can't stop producer/consumer threads with Poison Pill
I have very simple code which simulates Producer/Consumer stop technique using "Poison Pill".
I have Producer class:
public class Producer extends Thread {
private final ...
-2
votes
1answer
38 views
How should be InterruptedException handled for CountDownLatch.wait [closed]
How should be InterruptedException be handled during waiting of CountDownLatch.wait?
I need to be sure that CountDownLatch.wait will wait all other thread to be finished, but if during waiting ...
2
votes
2answers
83 views
Interrupt running thread
I'm just improvising with Thread cancellation using thread interruption. Although in my code both threads are stopped, It looks like I'm not catching InterruptedException I' just wonder why?
...
0
votes
1answer
63 views
How to interrupt threads with inline class in Java
I am implementing a program which rtp audio to a peer computer and in the same time running a threads to get ping data. Once I click the start button, two method start almost in the same time. The ...
2
votes
3answers
119 views
Interrupting a thread prior to calling Future.get()
I'm trying to write an integration test that causes an InterruptedException to be raised from the production code:
@Test
public void test() {
productionObject = new ProductionObject(
...
0
votes
4answers
216 views
Does the finally block execute if the thread running the function is interrupted?
If I have a function with a try/finally section, and the thread running it is interrupted while in the try block, will the finally block execute before the interruption actually occurs?
7
votes
3answers
251 views
Thread interrupt status getting cleared - possible Java bug
This is with reference to Path#register method. If a thread is running a block containing the method and another thread interrupts it beforehand. Then it is found that the method clears the interrupt ...
0
votes
5answers
140 views
infinite loop in a function called within a thread causes the thread to stay alive
public class Ex4 extends Thread {
boolean ans;
boolean change=false;
public boolean isPrime(long n, double maxTime) throws RuntimeException {
final Thread a;
Thread b;
final ...
0
votes
3answers
138 views
Java multithreading using sleep and interrupt
class Useless {
public static boolean b = true;
public synchronized void u1() {
try {
while (b == true)
wait();
} catch (InterruptedException i) {
...
2
votes
2answers
117 views
Interrupt a thread in java
I found this solution to know if a thread has been interrupted.
public class OurThread extends Thread(){
private volatile boolean stop = false;
public void run(){
while (!stop) {
...
3
votes
1answer
109 views
shutdown TCP thread server
I coded a little TCP thread Server, which creates a new thread for every server.accept(). Nearly everything works great, but I have problems to kill all threads per interrupt. (I use a ServiceExecutor ...
1
vote
1answer
177 views
How can I pause/interrupt boost::thread within another thread?
void workerFunc() //first thread
{
for (int x=0;x<30;x++) //count up to 29
{
cout << x << endl;
Sleep(1000); //one sec delay
}
}
void test() ...
2
votes
4answers
191 views
What's the race condition in these two interrupt service routines?
I'm using an ARM microcontroller for a real-time systems course in my university. In the project I'm working on at the moment, I'm implementing the vector field histogram (VFH) algorithm.
The problem ...
3
votes
1answer
148 views
Interrupting a timer
I'm creating part of a program right now for a personal project and I need some help on one aspect of it.
Here is how the program works:
User enters the amount of time to run
User enters the text - ...
1
vote
2answers
151 views
Can I use executorservice to kill a specific thread if it's been running for too long?
So far in my experiments with the executorservice I've had a lot of advice that involves using future.get, and then future.cancel in order to throw a thread interrupt which then needs to be caught in ...
0
votes
2answers
109 views
How exactly does Thread.interrupt() and Thread.interrupted() work? [duplicate]
I am not clear regarding these two methods from the perspective of setting the status of the thread.
Java Docs say that Thread.interrupt() sets the threads interrupt status flag and calling the ...
0
votes
2answers
44 views
Efficient threading scheme
I'm writing a java GUI that performs certain operations through the serial port. Since I don't want it to block while waiting for a response I figured having a thread do it was a better way, but now ...
0
votes
1answer
334 views
Thread interrupt does not work
This is my first attempt at creating my own thread pool. The program works except when I try stopping all the threads.
I'm trying to interrupt all the threads but for some reason it nevers reaches ...
9
votes
3answers
571 views
What are the differences between calling System.exit(0) and Thread.currentThread().interrupt() in the main thread of a Java program?
Both cause a program to stop executing. It's clear that there must be some differences in how this happens, though. What are they?
2
votes
3answers
131 views
Interrupting another thread that is reading from stream
I have one thread (thread a) in the server that is executing object = ois.readObject();. When I pull out the LAN wire from the client, this thread does not get an exception and is continuing reading ...
3
votes
4answers
220 views
Kill an uncooperative thread in Java
Following piece is from a JUnit testcase that tests 4 different implementations of Sorter. It invokes the only method Sorter has viz sort().
I want to kill the sorting process if it takes longer than ...
-1
votes
4answers
142 views
Java: Two threads, interrupting eachother
I want to write a code with two different threads. The first one does somethin, the second one waits a specific time. The thread that ends first should interrupt the other one.
My problem is now, that ...
0
votes
1answer
98 views
Unable to catch interrupt in java command line program [duplicate]
Possible Duplicate:
Java: How could I “intercept” Ctrl+C in a CLI application?
On Windows I start a java non gui application doing a task
Then press CNTL-C and the program just ...
0
votes
3answers
377 views
Thread not throwing an InterruptedException when interrupt() is called
I am working on an application that reads and processes data over a network. While testing the connecting/disconnecting logic of the program I noticed that my consumer thread was not closing when it ...
2
votes
3answers
398 views
Creating a Self-Interrupting ExecutorService
I've got a task working over a directory of files which needs to throw an IOException if anything goes wrong. I also need it to go faster, so I'm splitting the work done into multiple threads and ...
0
votes
2answers
75 views
Commit clear interrupted state
In the application I'm developing, I have a thread that is running in a loop. Inside the loop, several conditions are evaluated, and depends on these conditions, a value or another is stored in the ...
2
votes
1answer
366 views
How to interrupt a thread performing a blocking socket connect?
I have some code that spawns a pthread that attempts to maintain a socket connection to a remote host. If the connection is ever lost, it attempts to reconnect using a blocking connect() call on its ...
0
votes
1answer
78 views
Listening to the incomming stream in Thread using Java
So at this stage I have a server and a client where each of them has both input and output stream.
I am implementing a video streamer using VLC wrapper. Basically, when I choose a video on the ...
1
vote
2answers
683 views
Does calling Thread.interrupt() before a Thread.join() cause the join() to throw an InterruptedException immediately?
Basically, what the question title says.
Thread t = new Thread(someRunnable);
t.start();
t.interrupt();
t.join(); //does an InterruptedException get thrown immediately here?
From my own tests, it ...
1
vote
1answer
140 views
Is a boost thread interruptible after termination?
As per How can I tell reliably if a boost thread has exited its run method?, thankfully you can join a finished thread and avoid the race condition that arises if you had to conditionally join a ...
6
votes
2answers
152 views
java: is interrupting thread absolutely necessary
I am new to Java and using a code given by someone. There, at the end of the code, they interrupt a thread if it has not finished. I am measuring the timing of the code.
The problem is that the Java ...
0
votes
1answer
134 views
Counter application doesn't stop
I have made a counter application where it uses threads to interrupt the count when the user enters "stop" into the console. I have double checked my code and I can't see the problem. I am new to ...
0
votes
1answer
336 views
interrupting thread by id
i got a small problem with interrupts. in my android login activity, i start a thread (which defines the duration of my session). what i want is that when im in a different activity/class and i press ...
1
vote
5answers
172 views
Stop thread anytime i want
I have a method, wich supposed to interrupt a thread, but it's not. Do I need to always check the thread interrupted in the while method to stop the thread? How can I just terminate the thread at ...
2
votes
1answer
504 views
after catching “InterruptedException”, why “Thread.currentThread().isInterrupted()”'s value is false?
as the title.
public static void main(String[] args) throws InterruptedException {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
...
2
votes
3answers
403 views
How to interrupt a thread if it is to open socket?
I have tried to close the current thread that is a part of multi-threading server.
The thread is ready to open the socket that may be accessed by clients.
Everything works fine except when the code ...
2
votes
4answers
173 views
How do interruption technique help to implement multithreading?
How do interruption technique help to implement multithreading?
Or what's the relationship between multithreading and interruption?
Thank you very much!




