| Other |
|---|
| 1.3.1_17 b01Fixed |
|
Relates :
|
|
|
Relates :
|
|
|
Relates :
|
|
|
Relates :
|
|
|
Relates :
|
|
|
Relates :
|
The following source code crashes at 1.3.1_13
public class NoneTest extends Thread {
void foo(String x) {
try {
x.toString();
} catch (Exception ee) { }
}
public void run() {
for (;;) {
for (int i = 1; i < 10000; i++) {
foo((i % 100 == 0)? "" : null);
}
}
}
public static void main(String[] args) throws InterruptedException {
Thread t = new NoneTest();
t.start();
Thread.sleep(20000); // 20 sec
System.out.println("bye");
// t.interrupt();
Thread.sleep(2000); // 2 sec
System.exit(0);
}
}
Another exception has been detected while we were handling last error.
Unexpected Signal : 11 occurred at PC=0xFED2C8CC
Function name=JVM_GetCPFieldSignatureUTF
Library=/net/nemo.singapore/export/home/fschoong/bin/j2sdk1_3_1_13/jre/lib/sparc/server/libjvm.so
Current Java thread:
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0xfed2c8cc
SIGNAL = 11
FUNCTION NAME = JVM_GetCPFieldSignatureUTF
LIBRARY NAME = /net/nemo.singapore/export/home/fschoong/bin/j2sdk1_3_1_13/jre/lib/sparc/server/libjvm.so
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
Abort (core dumped)
###@###.### 2004-11-16 06:22:53 GMT
|