-
Bug
-
Resolution: Fixed
-
P4
-
1.2.0, 5.0
-
b55
-
generic, sparc
-
generic, solaris_2.4
Name: akC45999 Date: 09/30/97
Sun's jdk implementations from 1.1 to 1.2M ignore interrupt signal
(made by interrupt() call) if it was made before thread's start.
The specifications of java.lang.Thread does not specify such behaviour,
so we may expect that other implementors (and jdk1.0.2 did so)
will preserve the interrupt signal, which will lead to
incompatibility between the Sun and other JVM vendors.
Strictly speaking, the spec does not state that interrupt() called before start has
effect, so some common sence is applied: if a thread can be stopped before start,
why it can not be interrupted.
What would the spec people say?
// simplified version of the test
// javasoft.sqe.tests.api.java.lang.Thread.isInterrupted0103;
import java.io.PrintStream;
public class isInterrupted0103 {
public static void main(String args[]) {
Thread thrd=new Thread();
thrd.interrupt();//
if (!thrd.isInterrupted()) {
System.out.println("first interrupt signal lost");
}
}
}
Running the test:
novo37% javac isInterrupted0103.java
novo37% setenv CLASSPATH .
novo37% java isInterrupted0103
first interrupt signal lost
======================================================================
Sun's jdk implementations from 1.1 to 1.2M ignore interrupt signal
(made by interrupt() call) if it was made before thread's start.
The specifications of java.lang.Thread does not specify such behaviour,
so we may expect that other implementors (and jdk1.0.2 did so)
will preserve the interrupt signal, which will lead to
incompatibility between the Sun and other JVM vendors.
Strictly speaking, the spec does not state that interrupt() called before start has
effect, so some common sence is applied: if a thread can be stopped before start,
why it can not be interrupted.
What would the spec people say?
// simplified version of the test
// javasoft.sqe.tests.api.java.lang.Thread.isInterrupted0103;
import java.io.PrintStream;
public class isInterrupted0103 {
public static void main(String args[]) {
Thread thrd=new Thread();
thrd.interrupt();//
if (!thrd.isInterrupted()) {
System.out.println("first interrupt signal lost");
}
}
}
Running the test:
novo37% javac isInterrupted0103.java
novo37% setenv CLASSPATH .
novo37% java isInterrupted0103
first interrupt signal lost
======================================================================
- relates to
-
JDK-6575877 (thread) Interrupt signal issued when thread is alive is lost
-
- Open
-
-
JDK-4254486 interrupting dead applet thread throws security exception
-
- Resolved
-