Name: kaC94536 Date: 12/03/99
The following test, being run on Linux with native threads, causes SIGSEGV
and passes well with green_threads.
------------------------------ test.java ------------------------------
public class test {
public static void a() {
try {
int i = 0;
i = 1 / i;
} catch (Exception e) {
System.out.println(e);
}
}
public static void main(String argv[]) {
test.a();
test.a();
}
}
-------------------------------- output -------------------------------
$ java -native -version
java version "1.2.2"
Classic VM (build 1.2.2-G, native threads, javacomp)
$ java -native test
java.lang.ArithmeticException: / by zero
method unknown
SIGSEGV 11* segmentation violation
$ java test
java.lang.ArithmeticException: / by zero
java.lang.ArithmeticException
-----------------------------------------------------------------------
This failure concerns JCK test
vm/instr/invokespecial/invokespecial021/invokespecial02102/invokespecial02102.html
=======================================================================
======================================================================
- duplicates
-
JDK-4302372 (linux) jdk1.2.2 for linux does not support native threads
-
- Closed
-