-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
2.0, 1.3.0
-
x86
-
linux, windows_98
Name: tb29552 Date: 09/28/2000
/*
java version "1.3.0beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta_refresh-b09)
Java HotSpot(TM) Client VM (build 1.3.0beta-b07, mixed mode)
This is from Linux, but the same bug is
present in JRE 1.3.0 final for Windows.
The following error message appears under Linux:
14052# HotSpot Virtual Machine Error, Unexpected Signal 11
# Please report this error at
14053# http://java.sun.com/cgi-bin/bugreport.cgi
#
14054# Error ID: 4F533F4C494E55580E4350500595
#
14055# Problematic Thread:
prio=1 tid=0x804e790 14056nid=0x2166
runnable
#
14057
14058
An irrecoverable stack overflow has occurred.
Aborted
(The numbers in between are from System.out.println in the code.)
A similar message is printed under Windows (same error code) when
it crashes. Alternatively, if you are running javaw.exe, you get
a pop-up error dialog saying something about Microsoft Visual C++
library and abnormal program termination (where the above error
code does not appear).
This sample code crashes the Client HotSpot virtual machine
(every time, after a varying number of iterations):
*/
public class A {
public A (long l, String c1, String c2) {
}
public static void main(String[] args)
{
long l = 5L;
int i = 0;
while (true)
{
System.out.println(i++);
A a = new A (l, new String(), l > 0L ? new String() : null);
}
}
}
(Review ID: 110091)
======================================================================