Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
11answers
3k views

Occasional InterruptedException when quitting a Swing application

I recently updated my computer to a more powerful one, with a quad-core hyperthreading processor (i7), thus plenty of real concurrency available. Now I'm occasionally getting the following error when ...
10
votes
3answers
360 views

Who interrupts my thread?

I understand what an InterruptedException does and why it is thrown. However in my application I get it when waiting for SwingUtilities.invokeAndWait() on a thread that is only known by my ...
9
votes
4answers
732 views

Handling InterruptedException in Java

What is the difference between the following ways of handling InterruptedException? What is the best way to do it. try{...} catch(InterruptedException e) { Thread.currentThread().interrupt(); } OR ...
9
votes
4answers
8k views

When does Java's Thread.sleep throw InterruptedException?

When does Java's Thread.sleep throw InterruptedException? Is it safe to ignore it? I am not doing any multithreading. I just want to wait for a few seconds before retrying some operation.
7
votes
5answers
448 views

InterruptedException after cancel file open dialog - 1.6.0_26

The output from the code that follows is: java.vendor Sun Microsystems Inc. java.version 1.6.0_26 java.runtime.version 1.6.0_26-b03 sun.arch.data.model 32 os.name Windows XP ...
6
votes
3answers
1k views

Why would you catch InterruptedException to call Thread.currentThread.interrupt()?

In Effective Java (page 275), there is this code segment: ... for (int i = 0; i < concurrency; i++) { executor.execute(new Runnable() { public void run() { ready.countDown(); try { ...
5
votes
2answers
192 views

Why is thread not interrupted when sleeping in finally block

I have been looking all over MSDN and can't find a reason why Thread can not be interrupted when sleeping within finally block. I have tried aborting with no success. Is there any way how to wake up ...
4
votes
4answers
109 views

Interrupting looped threads in Java

I'm trying to understand how threads work in Java and currently investigating how to implement looped threads that can be cancelled. Here's the code: public static void main(String[] args) throws ...
4
votes
2answers
2k views

Thread.isInterrupted doesn't work, Thread.interrupted does

The following program demonstrates the problem (latest JVM & whatnot): public static void main(String[] args) throws InterruptedException { // if this is true, both interrupted and ...
3
votes
4answers
75 views

What might be the purpose of sleeping for just to see if the thread gets interrupted?

I came across some Java code that has a method containing the following: static boolean waitForSeconds(long seconds) { try { Thread.sleep(seconds * 1000); } catch ...
3
votes
1answer
96 views

Java app throws ClosedByInterruptException immediately when opening a socket, cause?

I have a java app that holds open many connections to an address, probably in the ballpark of 2,000 at once, with hardly any activity, mostly open for monitoring purposes passing a few bytes every now ...
3
votes
1answer
181 views

What's a good sample program to demonstrate improper handling of InterruptedException thrown by Thread.sleep()?

I've been reading around about InterruptedException, and it's immediately apparent that there's no silver bullet solution to handle it properly in all cases. What I haven't seen yet, is some sample ...
3
votes
4answers
571 views

Future.get() gets interrupted always with an InterruptedException

I have a WEIRD problem with Future.get() in Java. It returns always with an InterruptedException, however the weird thing is that the cause of the Exception is null, so I cant tell who interrupted ...
3
votes
2answers
603 views

Need a Java based interruptible timer thread

I have a Main Program which is running a script on the target device(smart phone) and in a while loop waiting for stdout messages. However in this particular case, some of the heartbeat messages on ...
3
votes
3answers
1k views

ExecutionException and InterruptedException while using Future class's get() method

ExecutorService executor = Executors.newSingleThreadExecutor(); try { Task t = new Task(response,inputToPass,pTypes,unit.getInstance(),methodName,unit.getUnitKey()); ...
2
votes
4answers
869 views

Java interrupt thread when reading socket [closed]

Possible Duplicate: How to terminate a thread blocking on socket IO operation instantly? I have client run in thread want to read from socket in Java. But while reading, maybe I want to ...
2
votes
1answer
376 views

When to use Interrupt Gate or Trap Gate?

As the Intel Manual illustrated, both Interrupt Gate and Trap Gate can be used to access a handler routine. And some exceptions even share vector numbers with interrupts. I am wondering when such a ...
2
votes
3answers
284 views

Gracefully shutting down a Java OpenGL (JOGL) app

I have an application with a JOGL component. When it shuts down using System.exit(0), I frequently get the exception: java.lang.InterruptedException at java.lang.Object.wait(Native Method) at ...
1
vote
2answers
65 views

Interrupting Thread in Java for hanged process

If i have a thread something like this: Thread t = new Thread(myThread); t.start(); private static Runnable myThread = new Runnable() { public void run() { try{ String ...
1
vote
2answers
158 views

what happens when a thread is interrupted while blocking on a wait()?

Considering the fact that wait() can only be called in a synchronized context which subsequently release the monitor until a notify/nofityAll has been called on the same object by another thread, ...
1
vote
4answers
89 views

Java : Calling interruptible methods from the code

I am reading the 7th chapter of Java Concurrency in Practice. In a section which speaks about methods that do not have a cancellation policy of its own but calls methods that can be interruped, the ...
1
vote
1answer
159 views

Extracting a process's exit code in the case of ThreadInterrupted

I have just created a process through an exec() call and I am now using its .waitFor() method. I need to catch an InterruptedException but I am not sure what I should place in the catch code block. ...
1
vote
3answers
176 views

What is the proper way to interrupt a client thread while it's calling an EJB method?

I have a java client which is managing its server calls in new threads to prevent the GUI from freezing. Even if this is prevented in many places, it is possible that the method will be called again ...
1
vote
1answer
202 views

Interrupting a boost::thread while interruptions are disabled

While using boost::threads I have come across this interruption problem. When I do a boost::thread_interrupt from thread A on thread B, while B has interrupts disabled ...
1
vote
1answer
247 views

Any techniques to interrupt, kill, or otherwise unwind (releasing synchronization locks) a single deadlocked Java thread allowing other threads to continue?

I have a long-running process where, due to a bug, a trivial/expendable thread is deadlocked with a thread which I would like to continue, so that it can perform some final reporting that would be ...
0
votes
2answers
54 views

Why linux kernel use trap gate to handle divide_error exception?

In kernel 2.6.11.5, divide zero exception handler is set up as: set_trap_gate(0,&divide_error); According to , Intel trap gate cannot be accessed by a User Mode process. But it's quite ...
0
votes
1answer
44 views

await method of class Condition not throwing InterruptedException

I have strange issue with an await method of Condition class in Java SE 6. The problem is that await method NOT always throws an exception while interrupting by another thread. In documentation it ...
0
votes
2answers
72 views

Managing InterruptedException

I have read http://www.ibm.com/developerworks/java/library/j-jtp05236/index.html I decide to make my lock uncancelable task by try { lockedRecords.wait(); } catch (InterruptedException e) { ...
0
votes
0answers
263 views

java.lang.InterruptedException while running Ireport

I was running jasper reports in Java to generate report and I used virtualizer to handle huge data. However, after almost 3 hours of running suddenly java.lang.InterruptedException was thrown. It was ...
0
votes
1answer
248 views

epoll_wait fails due to EINTR , how to remedy this?

My epoll_wait fails due to EINTR. My gdb trace shows this: enter code here 221 in ../nptl/sysdeps/pthread/createthread.c (gdb) 224 in ../nptl/sysdeps/pthread/createthread.c (gdb) [New ...
0
votes
1answer
272 views

LinkedBlockingQueue thowing InterruptedException

I have this piece of code. A LinkedBlockingQueue should only throw an Exception if interrupted while waiting to add to the queue. But this queue is unbounded so it should add asap. Why does my ...
0
votes
2answers
130 views

Exceptions & Interrupts

When I was searching for a distinction between Exceptions and Interrupts, I found this question Interrupts and exceptions on SO... Some answers there were not suitable (at least for assembly ...
0
votes
4answers
847 views

Under what conditions will BlockingQueue.take throw interrupted exception?

Let us suppose that I have a thread that consumes items produced by another thread. Its run method is as follows, with inQueue being a BlockingQueue boolean shutdown = false; while (!shutdown) { ...