-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
1.4.0
-
sparc
-
solaris_8
Name: kbR10066 Date: 10/11/2001
JVM crashes when executing a class which tries to load
two classes via Class.forName: sun.awt.motif.MPanelPeer and sun.awt.X11SurfaceData.
See below how to reproduce.
This occurs with JDK1.4.0beta-b80, 81, 82 (other builds not checked).
Machine (output of uname -a command):
SunOS novo86 5.8 Generic_108528-07 sun4u sparc SUNW,Ultra-2
To reproduce:
1. Compile the source file a.java:
<JDK1.4>/solsparc/bin/javac a.java
--- a.java ---
public class a {
public static void main(String[] args) {
Class c;
try {
c = Class.forName("sun.awt.motif.MPanelPeer");
c = Class.forName("sun.awt.X11SurfaceData");
} catch (Throwable e) {
}
}
}
--- end of a.java ---
2. Run class a:
<JDK1.4>/solsparc/bin/java -cp . a
JVM output:
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0xF19C0200
Function=XScreenCount+0x4
Library=/usr/openwin/lib/libX11.so.4
Current Java thread:
at sun.awt.X11SurfaceData.initIDs(Native Method)
at sun.awt.X11SurfaceData.<clinit>(X11SurfaceData.java:170)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:135)
at a.main(a.java:6)
Dynamic libraries:
0x10000 /export/ld25/java/dest/jdk1.4.0beta-b82/solsparc/bin/java
0xff360000 /usr/lib/libthread.so.1
0xff3a0000 /usr/lib/libdl.so.1
0xff280000 /usr/lib/libc.so.1
0xff270000 /usr/platform/SUNW,Ultra-2/lib/libc_psr.so.1
0xfe000000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/client/libjvm.so
0xff210000 /usr/lib/libCrun.so.1
0xff1f0000 /usr/lib/libsocket.so.1
0xff100000 /usr/lib/libnsl.so.1
0xff1c0000 /opt/SUNWspro/lib/libm.so.1
0xff240000 /usr/lib/libw.so.1
0xff0d0000 /usr/lib/libmp.so.2
0xff0a0000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/native_threads/libhpi.so
0xff070000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/libverify.so
0xff030000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/libjava.so
0xfe7e0000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/libzip.so
0xf1d00000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/libawt.so
0xfe460000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/libmlib_image.so
0xfdf90000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/motif21/libmawt.so
0xf1a80000 /usr/lib/libXm.so.4
0xfc490000 /usr/openwin/lib/libXt.so.4
0xfded0000 /usr/openwin/lib/libXext.so.0
0xfe440000 /usr/openwin/lib/libXtst.so.1
0xf1980000 /usr/openwin/lib/libX11.so.4
0xfc7a0000 /usr/openwin/lib/libdps.so.5
0xfdeb0000 /usr/openwin/lib/libSM.so.6
0xfc460000 /usr/openwin/lib/libICE.so.6
0xfddd0000 /usr/openwin/lib/libdga.so.1
0xfde90000 /export/ld54/java/dest/jdk1.4.0beta-b82/solsparc/jre/lib/sparc/libsunwjdga.so
Local Time = Thu Oct 11 17:45:11 2001
Elapsed Time = 1
#
# The exception above was detected in native code outside the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.4.0-beta3-b82 mixed mode)
#
# An error report file has been saved as hs_err_pid438.log.
# Please refer to the file for further information.
#
Abort (core dumped)
======================================================================