Name: kaC94536 Date: 12/02/99
The following test hungs Linux JVM (JDK1.2.2-G). I think the value of
variable "size" can differ on various computers, but it should be quite
big.
------------------------------ test.java ------------------------------
public class test {
void runner(long i) {
long j = i;
if(i > 0) runner(j - 1);
return;
}
public static void main(String argv[]) {
long size = 100000;
try {
new test().runner(size);
} catch (Exception e) {
System.out.println(e);
}
}
}
-------------------------------- output -------------------------------
$ java -native -version
java version "1.2.2"
Classic VM (build 1.2.2-G, native threads, javacomp)
$ java -native test
Segmentation fault
$
======================================================================
======================================================================
- duplicates
-
JDK-4302372 (linux) jdk1.2.2 for linux does not support native threads
-
- Closed
-