Java Solaris Communities Sun Store Join SDN My Profile Why Join?
 
Bug Database
Bug Detail
Quick Lists
Top 25 Bugs
Top 25 RFE's
Recently Closed Bugs
Printable Page Printable Page


Bug Database
Bug ID: 4724356
Votes 387
Synopsis JVM crashes with Hotspot Error 53484152454432554E54494D450E43505000EA
Category hotspot:compiler2
Reported Against 1.3 , 1.4 , 1.3.1 , 1.4.1 , 1.3fcs , 1.3.1_04 , 1.3.1_05
Release Fixed
State 11-Closed, Not Reproducible, bug
Priority: 2-High
Related Bugs 4725213 , 4725267 , 4938804
Submit Date 01-AUG-2002
Description
Customer is using Java 1.3.1_04 (furthermore JBoss and Tomcat) 

% java -server -version
java version "1.3.1_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
Java HotSpot(TM) Server VM (build 1.3.1_04-b02, mixed mode)

% /usr/ucb/ps -axwww |grep java
 25167 ?        R 40:40
/b2c/libexec/jdk-sun/bin/../bin/sparc/native_threads/java -server -Djavax.xml.parsers.DocumentBuilderFactory=org. customer .crimson.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org. customer .crimson.jaxp.SAXParserFactoryImpl -XX:+UseLWPSynchronization -verbose:gc -Xms512m -Xmx512m -XX:NewSize=128m -XX:MaxNewSize=128m -XX:SurvivorRatio=10 -XX:MaxPermSize=128m -XX:+DisableExplicitGC -Xnoclassgc -Dfile.encoding=UTF-8 -classpath /b2c/local/PKG/jboss/bin/run.jar:/b2c/libexec/jdk-sun/lib/tools.jar:../lib/crimson.jar org.jboss.Main tomcat

JVM crashes under load with
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x6091c0 nid=0x8f runnable
#

A core was written:
-rw------- 10007/10007 588271688 Jul 31 11:08 2002 core_pid24097_36635739
% file core
core_pid24097_36635739: ELF 32-bit MSB core file SPARC Version 1, from 'java'





FULL PRODUCT VERSION :
java version "1.3.1_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
Java HotSpot(TM) Client VM (build 1.3.1_04-b02, mixed mode)

FULL OPERATING SYSTEM VERSION :
SunOS 5.7 Generic_106541-06 sun4u sparc SUNW,Ultra-4


EXTRA RELEVANT SYSTEM CONFIGURATION :
  Tomcat 4.01-rc1
Java Web Start 1.0.1

A DESCRIPTION OF THE PROBLEM :
the error occured twice:
- starting keystore, keystore was aborted
- I'm not sure if it causes this exception:
got within my application IOException "Broken pipe", cannot
send the response with a BufferedOutputStream.
(response.setContentLength is set)

ERROR MESSAGES/STACK TRACES THAT OCCUR :
All I get is:
# HotSpot Virtual Machine Error, Internal Error
# Error ID: 53484152454432554E54494D450E43505000EA 01
# Problematic Thread: prio=5 tid=0x193300 nid=0x1a runnable


REPRODUCIBILITY :
This bug can be reproduced rarely.

---------- BEGIN SOURCE ----------
this is the code where "broken pipe" appeares, but I'm not sure it has to do
with this bug because it's not reproduceable.

    public void getJpg (HttpServletResponse res, String imgpath) {
 
            res.setContentType("application/octet-stream");
            res.setHeader("Cache-Control", "no-cache");
 
            File sf = new File(imgpath);
            res.setContentLength((int)sf.length());
 
            FileInputStream fis ;
            try {
                fis = new FileInputStream(imgpath) ;
                BufferedOutputStream out = new BufferedOutputStream
(res.getOutputStream ());
                byte buff[] = new byte[80] ;
                int len ;
                while( (len = fis.read(buff,0,80)) != -1 ){
                    out.write(buff,0,len);
                }
                out.flush();
                fis.close();
                out.close();
            }
            catch (Exception e ){Log.println (Log.DIAG_ERROR, "EN: 0207 --
GetImagesServlet.getJpg(): " + e);}
        }
---------- END SOURCE ----------
(Review ID: 160184)
======================================================================




FULL PRODUCT VERSION :
I used JDK and JRE Versions 1.2.2_07, 1.3.1_06 JDK 1.1.7 etc...

FULL OS VERSION :
SunOS parvath 5.7 Generic_106541-12 sun4u sparc SUNW,Ultra-250

A DESCRIPTION OF THE PROBLEM :
While installing Weblogic Server 7 in solaris 7 box it is terminating with the above-mentioned error ID some times the same terminationg with sigmentation error. But in another Solaris 7 machine it is working with out any additional effort.

Note: I tried increasing Swap space also



REPRODUCIBILITY :
This bug can be reproduced always.
(Review ID: 184122)
======================================================================




FULL PRODUCT VERSION :
apuawhsl# java -version
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)


FULL OS VERSION :
SunOS apuawhsl 5.6 Generic_105181-23 sun4u sparc SUNW,Ultra-5_10


A DESCRIPTION OF THE PROBLEM :
<------------- WebLogic Platform Installer - WebLogic Platform 7.0.2.0 ------------->

Copying files..

0%          25%          50%          75%          100%
[------------|------------|------------|------------]
[***************************************************]
Copying JDK....
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x323a78 nid=0x81 runnable
#
Abort
** Error during execution, error code = 34304.



REPRODUCIBILITY :
This bug can be reproduced always.
(Review ID: 186122)
======================================================================
Work Around
N/A
Evaluation
It appears they are seeing issue with hopper beta 1.4.1_b14..  We may want to get them a distribution of latest hotspot to see if there problem goes away.

  xxxxx@xxxxx   2002-08-06

Customer is not willing to test further at the moment as they are seeing less crashes with 1.4.1. The escalation has been closed but in the event of the frequency of crashes increasing they are going to complete the current test plan (i.e. runs with -Xcomp, -Xint etc...) before re-escalating against this bug.
  xxxxx@xxxxx   2002-08-19

Re-assigning to JPSE team to track since this bug has had an escalation.

  xxxxx@xxxxx   2003-01-14

The customer who filed this bug saw problems running on the Client VM, the Server VM and also in interpreter-only mode.  Some of their failures occurred in non-VM native code.  Thus the problem they experienced could not have been caused by Compiler2.

Unfortunately, the customer did not help us to identify the problem and worked around it by upgrading their software components.  Since they are no longer concerned with the original bug and we have no hope of diagnosing it without their input, this bug will be closed.
  xxxxx@xxxxx   2005-03-03 21:28:44 GMT
Comments
  
  Include a link with my name & email   

Submitted On 06-AUG-2002
Bskaggs
I also get this error.  My tool also runs on Solaris
environment and uses JDBC to communicate with Sybase.  I
have had users run several times with increasing level of
debug diagnostics in place.  The error is not repeatable and
when it does take place, it does so in different locations.


Submitted On 08-AUG-2002
scdrye
I'm getting this on Windows2000 during a JSP pagecompile
with JDK 1.3.1_04-b02.  It's fully repeatable, but a simple
testcase cannot be created.


Submitted On 13-AUG-2002
lichyc
It exists also with WebSphere 4.0.3 on Solaris.
It's fully repeatable, but a simple testcase can also not be 
created. The bug comes up about every 10 min.


Submitted On 27-AUG-2002
nholbroo
Getting this error on Mandrake Linux kernel 2.4.18 running
Weblogic 6.1.  The error only seems to happen if I kill the
process.. Ctrl-C the weblogic process or I try and use nohup
to start it.


Submitted On 28-AUG-2002
oskorobo
We had the same problem on Solaris, but then we used -
server option and we saw a StackOverflowException that was 
caused by infinite loop in code, so we fixed it.


Submitted On 28-AUG-2002
oskorobo
We had the same problem on Solaris, but then we used -
server option and we saw a StackOverflowException that was 
caused by infinite loop in code, so we fixed it.


Submitted On 03-SEP-2002
paulo_delgado
We got this same error today with BEA WebLogic 6.1 (SP3), 
on Solaris 8.


Submitted On 04-SEP-2002
capmember1
Same here on jdk1.3.1_03 on RHL Linux 2.4.18 at 
weblogic.servlet.internal.ServletStubImpl.checkReloadTimeout
(ServletStubImpl.java:548)


Submitted On 05-SEP-2002
stevendodd
We are also seeing this error (several times) Solaris 8, fully 
patched for Java 1.3.1 with JDK 1.3.1_03-b03


Submitted On 06-SEP-2002
reevesg
I think we are seeing this bug too. I have submitted a report twice but they have been closed because it was not easily repeatable. The problem seems to get worse on 1.4 at which point the vm crashes every couple of minutes in a unpredictable way. 

We can almost always make it crash under 1.3.1 when communicating with a SOAP service in same VM under heavy load. When we move the service onto a different machine it no longer crashes.

I have core's and pstack's etc and are willing to test any suggestions anyone has.
 


Submitted On 07-SEP-2002
husgaard
Forgot to note that the error ID we see is not
the same as in this bug report.
Instead we see "Error ID : 4F530E43505002BD" when these
crashes occur.


Submitted On 07-SEP-2002
husgaard
We see this on a regular basis with Linux kernel 2.4.18
(glibc 2.2.2) and Java HotSpot(TM) Server VM
(1.3.1_04-b02 mixed mode).

This bug is not easily reproducible: The VM may crash,
and when we restart it and run the exact same program,
it may run fine next time.

Running the VM with -Xcomp, -Xint or -Xnoclassgc does
not seem to make any difference.
Running the VM without -server also makes no difference.

All VM crashes seem to be due to SIGSEGV, but the exact
function varies. Most crashes happen in function
copy_to_survivor_space, but we have also seen crashes in
other functions, mostly function scavenge_static_fields.


Submitted On 19-SEP-2002
dr4lewis
We to see this, the variation showing hotspot error id
4F530E43505002BD.  We're on Solaris 8, have reproduced
both on 1.3.1_03 and 1.3.1_04.  It isn't easily reproduced but
shows frequently.  We're running w/wl 5.1sp9.


Submitted On 24-SEP-2002
suresh_kumar_b
We observed the  Error, ID : 4F530E43505002BD 01, on 
WebSphere 4.03 on Solaris with oracle backend. The server 
goes down every five minutes. The error is not repeatable and
when it does take place, it does so in different locations. We 
observed with single and multiple users.

java version "JPSE_1.3.1_20020313"
Java(TM) 2 Runtime Environment, Standard Edition (build 
JPSE_1.3.1_20020313)
Java HotSpot(TM) Client VM (build JPSE_1.3.1_20020313, 
mixed mode)


Submitted On 08-OCT-2002
jma7889
d


Submitted On 08-OCT-2002
jma7889
We see this problem mostly when compiling jsp. It happens 
a lot using jdk 1.3.1_03 under windows 2000 and solaris 8, 
using WebLogic 7.0.1. Now we are using JDK 1.4.1 JVM, it 
happens less.


Submitted On 10-OCT-2002
[city]
We get this error with WebLogic 7.0.1 and HotSpot
1.3.1_03-b03 under Solaris 2.7.  It seems to happen at
unpredicatable times, sometimes giving ErrorID: 
4F530E43505002BD 01 and sometimes
53484152454432554E54494D450E43505000EA 01


Submitted On 11-OCT-2002
davidkane
Folks,

We found this error with the following configuration.  j2se 
1.3.1_05 and tomcat 3.2.3, Solaris 2.6.  We have not distilled the 
error to a minimal set of code, but we do have a user query that 
will consistently generate the error.

Dave


Submitted On 15-OCT-2002
rubenator
We have the same error with Ariba Buyer 7 and Solaris 7.
If we use JVMArgument -Xint the JVM is created successfully


Submitted On 15-OCT-2002
tmolteno
Also get this error when search indexing a large Sybase
database using jConnect. Seems to occur randomly with a mean
time between failure of about 1 hour when under heavy load. 

Unexpected Signal : 11 occurred at PC=0xeb41caf4
Function name=compareTo (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000        
/usr/bin/../java/bin/../bin/sparc/native_threads/java
0xef770000      /usr/lib/libthread.so.1
0xef7b0000      /usr/lib/libdl.so.1
0xef680000      /usr/lib/libc.so.1
0xef740000      /usr/platform/SUNW,Ultra-250/lib/libc_psr.so.1
0xee800000     
/opt/j2sdk1_3_1_05/jre/lib/sparc/client/libjvm.so
0xef630000      /usr/lib/libCrun.so.1
0xef610000      /usr/lib/libsocket.so.1
0xef500000      /usr/lib/libnsl.so.1
0xef5e0000      /usr/lib/libm.so.1
0xef660000      /usr/lib/libw.so.1
0xef5b0000      /usr/lib/libmp.so.2
0xef4d0000     
/opt/j2sdk1_3_1_05/jre/lib/sparc/native_threads/libhpi.so
0xef4a0000      /opt/j2sdk1_3_1_05/jre/lib/sparc/libverify.so
0xef460000      /opt/j2sdk1_3_1_05/jre/lib/sparc/libjava.so
0xef430000      /opt/j2sdk1_3_1_05/jre/lib/sparc/libzip.so
0xee690000      /opt/j2sdk1_3_1_05/jre/lib/sparc/libnet.so
0xee590000      /usr/lib/nss_files.so.1

Local Time = Tue Oct 15 02:33:37 2002
Elapsed Time = 5681
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_05-b02 mixed mode)
#


Submitted On 17-OCT-2002
chadm
We are seeing the error in WebLogic:
---
Unexpected Signal : 11 occurred at PC=0xfe5a99b4
Function name=JVM_NewInstanceFromConstructor
Library=/export/home/mas/JDK1_3_1/jre/lib/sparc/hotspot/libjv
m.so


Dynamic libraries:
0x10000         /export/home/mas/JDK1_3_1/bin/../bin/sparc/na
tive_threads/java
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff330000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
0xfe400000      /export/home/mas/JDK1_3_1/jre/lib/sparc/hots
pot/libjvm.so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000      /export/home/mas/JDK1_3_1/jre/lib/sparc/nativ
e_threads/libhpi.so
0xff050000      /export/home/mas/JDK1_3_1/jre/lib/sparc/libver
ify.so
0xfe7c0000      /export/home/mas/JDK1_3_1/jre/lib/sparc/libja
va.so
0xff020000      /export/home/mas/JDK1_3_1/jre/lib/sparc/libzip
.so
0xfe390000      /usr/lib/locale/en_US.ISO8859-
1/en_US.ISO8859-1.so.2
0xfd020000      /export/home/mas/JDK1_3_1/jre/lib/sparc/libne
t.so
0xfafd0000      /usr/lib/nss_files.so.1
0xfae40000      /export/home/mas/bea/wlserver6.1/lib/solaris/li
bmuxer.so
0xfae20000      /usr/ucblib/libucb.so.1
0xfad60000      /usr/lib/libresolv.so.1
0xfad20000      /usr/lib/libelf.so.1
0xd0740000      /export/home/mas/JDK1_3_1/jre/lib/sparc/libio
ser12.so
0xd0710000      /export/home/mas/bea/wlserver6.1/lib/solaris/l
ibweblogicunix1.so

Local Time = Wed Oct 16 20:54:42 2002
Elapsed Time = 384584
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_04-b02 mixed 
mode)
#
# An error report file has been saved as hs_err_pid934.log.
---


Submitted On 18-OCT-2002
ahalikia
We are seeing this too on Solaris environment with
1.3.1_03-b03 JVM.

Can be reproduced prety easy: generate load on our
application and give it about 60-75 minutes and voila! I
have tried all the options mentioned here but nothing works!
Had to go back to Java 1.2 to avoid this issue! Ridiculous....
******************
Unexpected Signal : 11 occurred at PC=0xfe224a7c
Function name=JVM_GetClassName
Library=/usr/j2se/jre/lib/sparc/server/libjvm.so


Dynamic libraries:
0x10000         /usr/java/bin/../bin/sparc/native_threads/java
0xff350000      /lib/libthread.so.1
0xff390000      /lib/libdl.so.1
0xff200000      /lib/libc.so.1
0xff330000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
0xfe000000      /usr/j2se/jre/lib/sparc/server/libjvm.so
0xff2e0000      /lib/libCrun.so.1
0xff1e0000      /lib/libsocket.so.1
0xff100000      /lib/libnsl.so.1
0xff0d0000      /lib/libm.so.1
0xff310000      /lib/libw.so.1
0xff0b0000      /lib/libmp.so.2
0xff080000      /usr/j2se/jre/lib/sparc/native_threads/libhpi.so
0xff050000      /usr/j2se/jre/lib/sparc/libverify.so
0xfe7c0000      /usr/j2se/jre/lib/sparc/libjava.so
0xff020000      /usr/j2se/jre/lib/sparc/libzip.so
0xfdfa0000      /opt/sn/lib/libNRaspinld.so0xfdd90000     
/lib/libC.so.5
0xe5e00000      /sn/lib/libNR++.so
0xe5d00000      /sn/lib/libNRplat.so
0xfdea0000      /lib/libposix4.so
0xfdd70000      /lib/libaio.so.1
0xfccc0000      /sn/lib/libNRaspinplat.so
0xfcc80000      /sn/lib/libNRspm2.so
0xfcc20000      /sn/lib/libNRaspin.so
0xfab90000      /opt/sn/lib/libNRaspinj.so
0xe63e0000      /usr/j2se/jre/lib/sparc/libnet.so
0xe61e0000      /lib/nss_files.so.1

Local Time = Tue Sep 24 02:46:47 2002
Elapsed Time = 22627
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_03-b03 mixed mode)
#


Submitted On 21-OCT-2002
sowmie
I am also facing the same problem.I am running Weblogic 7 to 
connect to Oracle database.The error is not reproducable but 
occurs often.


Submitted On 21-OCT-2002
rubenator
I downloaded JRE 1.3.1_06 and still getting the following error:


Unexpected Signal : 11 occurred at PC=0x7ed12558
Function name=JVM_MonitorWait
Library=/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/s
parc/client/libjvm.so

Current Java thread:
	at sun.security.provider.SeedGenerator.run
(SeedGenerator.java:127)
	at sun.security.provider.SeedGenerator.run
(SeedGenerator.java:126)
	at java.lang.Thread.run(Thread.java:479)

Dynamic libraries:
0x10000 
	/opt/AribaBuyer7/CoreServer/./jre/Solaris/1.3.1_06/bi
n/../bin/sparc/native_threads/java
0x7fb50000 	/usr/lib/libthread.so.1
0x7fb90000 	/usr/lib/libdl.so.1
0x7fa80000 	/usr/lib/libc.so.1
0x7fa70000 	/usr/platform/SUNW,Ultra-
250/lib/libc_psr.so.1
0x7ec00000 
	/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/
sparc/client/libjvm.so
0x7fa10000 	/usr/lib/libCrun.so.1
0x7f9e0000 	/usr/lib/libsocket.so.1
0x7f900000 	/usr/lib/libnsl.so.1
0x7f9b0000 	/usr/lib/libm.so.1
0x7fa40000 	/usr/lib/libw.so.1
0x7f8d0000 	/usr/lib/libmp.so.2
0x7f8a0000 
	/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/
sparc/native_threads/libhpi.so
0x7f860000 
	/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/
sparc/libverify.so
0x7f820000 
	/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/
sparc/libjava.so
0x7efd0000 
	/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/
sparc/libzip.so
0x7d6e0000 
	/opt/AribaBuyer7/CoreServer/jre/Solaris/1.3.1_06/lib/
sparc/libnet.so

Local Time = Mon Oct 21 13:48:05 2002
Elapsed Time = 5
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed 
mode)
#


Submitted On 22-OCT-2002
wridenour
Getting this also...consistently but intermittently...it's quite 
ridiculous, as it makes the entire version worthless...and 1.4 
proved to be no better...

whats the point of building this stuff if you can't serve more 
than 10 concurrent users?


Submitted On 28-OCT-2002
paulli
Same here.  had a whole cluster collapse like a pile of 
dominoes.  Java sucks...

SunOS xxxxxxx 5.8 Generic_108528-12 sun4u sparc 
SUNW,Ultra-80

java version "1.3.1_03"
Java(TM) 2 Runtime Environment, Standard Edition (build 
1.3.1_03-b03)
Java HotSpot(TM) Client VM (build 1.3.1_03-b03, mixed mode)

Unexpected Signal : 11 occurred at PC=0xfb034bbc
Function name=append (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000         /usr/java/bin/../bin/sparc/native_threads/java
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff330000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
0xfe480000      /usr/j2se/jre/lib/sparc/client/libjvm.so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000      /usr/j2se/jre/lib/sparc/native_threads/libhpi.so
0xff050000      /usr/j2se/jre/lib/sparc/libverify.so
0xfe440000      /usr/j2se/jre/lib/sparc/libjava.so
0xff020000      /usr/j2se/jre/lib/sparc/libzip.so
0xfe1d0000      /usr/j2se/jre/lib/sparc/libnet.so
0xfe190000      /usr/lib/nss_files.so.1
0xfe330000      /data/BEA/wlserver6.1/lib/solaris/libmuxer.so
0xfe310000      /usr/ucblib/libucb.so.1
0xfd0b0000      /usr/lib/libresolv.so.2
0xfd070000      /usr/lib/libelf.so.1
0xbabe0000      /data/BEA/wlserver6.1/lib/solaris/libweblogicun
ix1.so

Local Time = Mon Oct 21 15:00:53 2002
Elapsed Time = 3104
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_03-b03 mixed 
mode)
#


Submitted On 08-NOV-2002
perkinsa
We have the same problem on jdk 1.4.0 & 1.4.1 on win2000,
solaris 2.6, and solaris 8. 


Submitted On 14-NOV-2002
reenenk
Happening on Dynamo 5.6.1 and jdk 1.3.1_06-b01 on
Solaris 8

Not reproducable at will.

An irrecoverable stack overflow has occurred.

Unexpected Signal : 11 occurred at PC=0xfb29a41c
Function name=getValue (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000         /usr/local/j2sdk1.3.1/bin/../bin/sparc/native_thr
eads/java
0xff340000      /usr/lib/libthread.so.1
0xff380000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff330000      /usr/platform/SUNW,Sun-Fire-
280R/lib/libc_psr.so.1
0xfe400000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/client/lib
jvm.so
0xff2d0000      /usr/lib/libCrun.so.1
0xff1d0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff300000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff070000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/native_t
hreads/libhpi.so
0xff040000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libverify.
so
0xfe7c0000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libjava.s
o
0xfe790000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libzip.so
0xc29e0000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libnet.s
o
0xc20e0000      /usr/lib/nss_files.so.1
0xc1ee0000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libioser1
2.so
0xbeda0000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libjpeg.s
o
0xbece0000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/libawt.s
o
0xb0780000      /usr/local/j2sdk1_3_1_06/jre/lib/sparc/motif21
/libmawt.so
0xbec90000      /usr/local/j2sdk1.3.1/bin/../jre/lib/sparc/libmlib
_image.so
0xb0500000      /usr/dt/lib/libXm.so.4
0xbeb90000      /usr/openwin/lib/libXt.so.4
0xbead0000      /usr/openwin/lib/libXext.so.0
0xbeaa0000      /usr/openwin/lib/libXtst.so.1
0xb0400000      /usr/openwin/lib/libX11.so.4
0xbe9e0000      /usr/openwin/lib/libSM.so.6
0xbe9b0000      /usr/openwin/lib/libICE.so.6
0xbe8d0000      /usr/openwin/lib/libdga.so.1

Local Time = Thu Nov 14 10:51:30 2002
Elapsed Time = 60128
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed 
mode)
#
# An error report file has been saved as hs_err_pid22620.log.
# Please refer to the file for further information.
#


Submitted On 15-NOV-2002
fperaza
I'm seeing on startup of Lotus Sametime Connect on Solaris
2.6. It happens about every other time I startup the
application. This makes turn to my Windows notebook ;-(


Submitted On 19-NOV-2002
anmahesh_alse
I am having the same prob with jdk 1.3.1_06. Previously it 
was working fine with jdk 1.2.2. Any Idea when a fix can be 
expected from SUN. 
This bug has been since a long time and still nothing much 
has been done. 

Unexpected Signal : 11 occurred at PC=0xfe59bd5c
Function name=JVM_EnableCompiler
Library=/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/client
/libjvm.so

Current Java thread:
	at sun.awt.motif.X11Graphics.pSetForeground
(Native Method)
	at sun.awt.motif.X11Graphics.setPaint
(X11Graphics.java:295)
	at sun.java2d.SunGraphics2D.setColor
(SunGraphics2D.java:1260)
	at sun.awt.motif.X11Graphics.setColor
(X11Graphics.java:284)
	at sun.awt.motif.MComponentPeer.getGraphics
(MComponentPeer.java:376)
	at java.awt.Component.getGraphics
(Component.java:1846)
	at com.quest.sptool.StaticLabel.setText
(StaticLabel.java:114)
	at com.quest.sptool.FunctionPanel.setMessage
(FunctionPanel.java:201)
	at com.quest.sptool.SurfaceFrame.setMessage
(SurfaceFrame.java:499)
	at com.quest.sptool.SurfaceCanvas.plotSurface
(SurfaceCanvas.java:1611)
	at com.quest.sptool.SurfaceCanvas.run
(SurfaceCanvas.java:564)
	at java.lang.Thread.run(Thread.java:479)

Dynamic libraries:
0x10000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06//jre/bin/../bin/spa
rc/native_threads/java
0xff350000 	/usr/lib/libthread.so.1
0xff390000 	/usr/lib/libdl.so.1
0xff200000 	/usr/lib/libc.so.1
0xff330000 	/usr/platform/SUNW,Ultra-
5_10/lib/libc_psr.so.1
0xfe400000 
	/u/autodoe/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sp
arc/client/libjvm.so
0xff2e0000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff0d0000 	/usr/lib/libm.so.1
0xff310000 	/usr/lib/libw.so.1
0xff0b0000 	/usr/lib/libmp.so.2
0xff080000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/nativ
e_threads/libhpi.so
0xff050000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/libve
rify.so
0xfe7c0000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/libja
va.so
0xff020000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/libzip
.so
0xfd030000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/libaw
t.so
0xd8480000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/motif
21/libmawt.so
0xfae30000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06//jre/bin/../lib/spar
c/libmlib_image.so
0xd8200000 	/usr/dt/lib/libXm.so.4
0xfad10000 	/usr/openwin/lib/libXt.so.4
0xd8bd0000 	/usr/openwin/lib/libXext.so.0
0xfae10000 	/usr/openwin/lib/libXtst.so.1
0xd8100000 	/usr/openwin/lib/libX11.so.4
0xd8bb0000 	/usr/openwin/lib/libSM.so.6
0xd8ad0000 	/usr/openwin/lib/libICE.so.6
0xd8aa0000 	/usr/openwin/lib/libdga.so.1
0xd8000000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/libfo
ntmanager.so
0xd8420000 	/usr/openwin/lib/libdps.so.5
0xd85c0000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06/jre/lib/sparc/libjp
eg.so
0xd87d0000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06//jre/bin/../lib/spar
c/libsunwjdga.so
0xd85a0000 
	/u/JDK_1.3.1_06/j2sdk1_3_1_06//jre/bin/../lib/spar
c/libxinerama.so

Local Time = Wed Nov 20 10:25:09 2002
Elapsed Time = 207
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 
mixed mode)
#


Submitted On 19-NOV-2002
MrNape
Add on!

Unexpected Signal : 11 occurred at PC=0xfe10cedc
Function name=JVM_GetCPMethodClassNameUTF
Library=/usr/j2se/jre/lib/sparc/server/libjvm.so

Current Java thread:

Dynamic libraries:
0x10000         /usr/j2se/jre/bin/../bin/sparc/native_threads/ja
va
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff330000      /usr/platform/SUNW,UltraAX-i2/lib/libc_psr.so.1
0xfe000000      /usr/j2se/jre/lib/sparc/server/libjvm.so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000      /usr/j2se/jre/lib/sparc/native_threads/libhpi.so
0xff050000      /usr/j2se/jre/lib/sparc/libverify.so
0xfe7c0000      /usr/j2se/jre/lib/sparc/libjava.so
0xff020000      /usr/j2se/jre/lib/sparc/libzip.so
0xfe690000      /usr/j2se/jre/lib/sparc/libnet.so
0xfe560000      /usr/lib/nss_files.so.1
0xfdfe0000      /usr/local/cms/bea/wlserver6.1/lib/solaris/libmu
xer.so
0xfdfc0000      /usr/ucblib/libucb.so.1
0xfde60000      /usr/lib/libresolv.so.1
0xfde20000      /usr/lib/libelf.so.1
0xd28c0000      /usr/j2se/jre/lib/sparc/libioser12.so

Local Time = Mon Nov 18 09:49:14 2002
Elapsed Time = 19218
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_05-b02 
mixed mode)
#
# An error report file has been saved as hs_err_pid23340.log.
# Please refer to the file for further information.
#


Submitted On 19-NOV-2002
MrNape
Hi we are runnning a production server and get the same 
problem under high load on different servers, the point where, 
or wy it happens is not reproduceable , please help me, send 
me follow up's or bugfixes, because like i told you itīs a 
production server.
java 1.3.1_05 on solaris with weblogic 6 sp3


Submitted On 20-NOV-2002
hscanlon
Same issue.  We are not in production yet, but this occurs 
periodically while running our testsuite, which generates a 
load on the system.


Submitted On 21-NOV-2002
pokrzywap
We have the same problem with JVM 1.3.1_04-b02 on Solaris 
2.8 with Weblogic 5.1. It often appears with two kinds of 
exception : StackOverFlow and Broken Pipe.

Unexpected Signal : 11 occurred at PC=0xfac91f44
Function name=getOutputStream (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000         /opt/local/java/bin/../bin/sparc/native_threads/
java
0xff350000      /lib/libthread.so.1
0xff390000      /lib/libdl.so.1
0xff200000      /lib/libc.so.1
0xff330000      /usr/platform/SUNW,UltraAX-i2/lib/libc_psr.so.1
0xfe000000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/serve
r/libjvm.so
0xff2d0000      /lib/libCrun.so.1
0xff1d0000      /lib/libsocket.so.1
0xff100000      /lib/libnsl.so.1 
0xff0d0000      /lib/libm.so.1
0xff300000      /lib/libw.so.1
0xff0b0000      /lib/libmp.so.2
0xff080000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/nativ
e_threads/libhpi.so
0xff040000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/libveri
fy.so
0xfe7c0000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/libjav
a.so
0xfe790000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/libzip.
so
0xfe640000      /lib/nss_files.so.1
0xe9ce0000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/libne
t.so
0xe9b60000      /lib/nss_dns.so.1
0xe92c0000      /lib/libresolv.so.2
0xe8690000      /LOCAL/java/j2sdk1_3_1_04/jre/lib/sparc/libios
er12.so
0xe85e0000      /opt/local/bea/weblogic/wls510_sp8/lib/solaris
/libmuxer.so

Local Time = Wed Nov 20 17:43:48 2002
Elapsed Time = 34628
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_04-b02 
mixed mode)
#


Submitted On 22-NOV-2002
miudinho
I'm geting this error when i try to run JBuilder Enterprise
7 using Solaris 8 and Jdk 1.3.1_06. 

#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x918e8 nid=0xc runnable 
#

Leandro, Patrick  BR 


Submitted On 27-NOV-2002
JaakkoL
Getting the same with RedHat 7.3 + JBoss 3.0.4 + JDK
1.3.1_06.

Unexpected Signal : 11 occurred at PC=0x40361470
Function name=(N/A)
Library=/usr/java/jdk1.3.1_06/jre/lib/i386/server/libjvm.so

NOTE: We are unable to locate the function name symbol for
the error
      just occurred. Please refer to release documentation
for possible
      reason and solutions.


Submitted On 30-NOV-2002
standardgenericuser
 The following code caused a JVM Hotspot crash of similar
nature:

      labels = new JLabel[10];
      for(int i=0; i<10; i++) {
         labels[i] = new JLabel(labelNames[i]);
         textFields[i] = new JTextField();
      }

when the line:

      textFields = new JTextField[10];

was inserted to initialise the array, there was no crash.

I have noticed this in other places to but this time I was
lucky as I found a specific example. I have not tested
to see if this bug occurs if the code above is used out
of context of the program I was making.

This was on FreeBSD 4.6 with

Java Java(TM) 2 Runtime Environment, Standard Edition (build
1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

Here is the error that was produced:

Function=[Unknown.]
Library=(N/A)

NOTE: We are unable to locate the function name symbol for
the error
      just occurred. Please refer to release documentation
for possible
      reason and solutions.


Current Java thread:

Dynamic libraries:
Can not get information for pid = 771

Local Time = Sat Nov 30 21:14:16 2002
Elapsed Time = 1
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002E6
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode)
#

Hope this helps.

xce


Submitted On 03-DEC-2002
ANobody
(reposted to fix formatting)
If anyone would like to post links to SOLARIS core files for
THIS bug, I can try to take a look at them.  If it's similar to
the one I'm looking at, I may be able to post some more
detailed info about the problem.  I won't likely be able to
provide a workaround or fix, but I may be able to provide
enough info to Sun so that they can fix the problem.


Submitted On 03-DEC-2002
ANobody
If anyone would like to post links to SOLARIS core files for THIS bug, I can try to take a look at them.  If it's similar to the one I'm looking at, I may be able to post some more detailed info about the problem.  I won't likely be able to provide a workaround or fix, but I may be able to provide enough info to Sun so they can fix this bug.


Submitted On 30-DEC-2002
brenda_balog
We also get this error on Solaris 8, running JVM 1.3.1_04 and 
WebLogic Server 6.1 SP3. 


Submitted On 30-DEC-2002
hg0
I'm seeing this totally repeatably with SDK 1.3.1_06 on Solaris
7.  It happens when using ant to compile a lot of files.  All the
versions:

java version "1.3.1_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_06-b01)
Java HotSpot(TM) Client VM (build 1.3.1_06-b01, mixed mode)

SunOS midway 5.7 Generic_106541-12 sun4u sparc SUNW,Ultra-250

Apache Ant version 1.5 compiled on July 9 2002

As a workaround, I can set JAVA_COMPILER=NONE, but this
increases the compile time from about 4 minutes to about 10 minutes.

Once, non-repeatably, I got the following additional output.
Some of the stack trace is elided to fit the 4000 character
limit for comments.

Unexpected Signal : 11 occurred at PC=0xfe5ba7dc
Function name=JVM_NewArray
Library=/eng/tilde/hgayle/JDK/1_3_1_06/jre/lib/sparc/client/libjvm.so

Current Java thread:
	at com.sun.tools.javac.v8.code.ClassReader.list(ClassReader.java:1103)
	at com.sun.tools.javac.v8.code.ClassReader.list(ClassReader.java:1102)
...
	at com.sun.tools.javac.v8.Main.compile(Main.java:247)
	at com.sun.tools.javac.Main.compile(Main.java:26)
	at java.lang.reflect.Method.invoke(Native Method)
	at org.apache.tools.ant.taskdefs.compilers.Javac13.execute(Javac13.java:100)
	at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:840)
...
	at org.apache.tools.ant.Main.start(Main.java:196)
	at org.apache.tools.ant.Main.main(Main.java:235)

Dynamic libraries:
0x10000 	/tilde/hgayle/JDK/1_3_1_06/bin/../bin/sparc/native_threads/java
0xff350000 	/usr/lib/libthread.so.1
0xff390000 	/usr/lib/libdl.so.1
0xff280000 	/usr/lib/libc.so.1
0xff270000 	/usr/platform/SUNW,Ultra-250/lib/libc_psr.so.1
0xfe400000 	/eng/tilde/hgayle/JDK/1_3_1_06/jre/lib/sparc/client/libjvm.so
0xff200000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff0d0000 	/usr/lib/libm.so.1
0xff230000 	/usr/lib/libw.so.1
0xff0b0000 	/usr/lib/libmp.so.2
0xff080000 	/eng/tilde/hgayle/JDK/1_3_1_06/jre/lib/sparc/native_threads/libhpi.so
0xff050000 	/eng/tilde/hgayle/JDK/1_3_1_06/jre/lib/sparc/libverify.so
0xfe7c0000 	/eng/tilde/hgayle/JDK/1_3_1_06/jre/lib/sparc/libjava.so
0xff020000 	/eng/tilde/hgayle/JDK/1_3_1_06/jre/lib/sparc/libzip.so

Local Time = Mon Dec 30 08:55:57 2002
Elapsed Time = 22
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed mode)
#
# An error report file has been saved as hs_err_pid19563.log.


Submitted On 08-JAN-2003
R12345678A
We also get an error with the same error id and
HotSpot Virtual Machine Error : 10 with no function 
identification.
It might be interesting for you to get the core stack 
that shows the part responsible for the error.
Our VM run on a Solaris 8 OS (SunOS FFZJ0YEK 5.8 
Generic_108528-01 sun4u sparc SUNW,Ultra-Enterprise)

# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_06-b01 
mixed mode)
#
Core stack:

detected a multithreaded program
t@38652 (l@51) terminated by signal ABRT (Abort)
0xff369bf0: __sigprocmask+0x0008:       jmp     %o7 + 0x8
(dbx) where
current thread: t@38652
=>[1] __sigprocmask(0x0, 0xed3810e8, 0x0, 0x0, 0x0, 0x0), 
at 0xff369bf0
  [2] _resetsig(0xff36c510, 0x0, 0x0, 0xed381d78, 
0xff37e000, 0x0), at 0xff35e620
  [3] _sigon(0xed381d78, 0xff385990, 0x6, 0xed3811bc, 
0xed381d78, 0xed381200), at 0xff35dd10
  [4] _thrp_kill(0x0, 0x1dd, 0x6, 0xff37e000, 0x1dd, 
0xff2ba428), at 0xff360e84
  [5] raise(0x6, 0x0, 0x0, 0xffffffff, 0xff2ba394, 0xed381310), 
at 0xff249db0
  [6] abort(0xff2b6000, 0xed381310, 0x0, 0xfffffff8, 0x4, 
0xed381331), at 0xff23531c
  [7] os::abort(0x1, 0xfe4c8000, 0x1, 0x0, 0x0, 0x0), at 
0xfe3c68fc
  [8] exception_handler_during_fatal_error(0xa, 0xfe4c8000, 
0xed381548, 0x0, 0x0, 0x0), at 0xfe3c7d04
  [9] __sighndlr(0xa, 0xed381800, 0xed381548, 0xfe3c7cf0, 
0xed381e10, 0xed381e00), at 0xff36bd04
  [10] sigacthandler(0xa, 0xed381d78, 0xed381548, 
0xff37e000, 0xed381d78, 0xed381800), at 0xff368508
  ---- called from signal handler with signal 10 (SIGBUS) ------
  [11] 0x872e8(0x1d51, 0xed381950, 0xed381954, 0xed381, 
0xfe4c8000, 0x0), at 0x872e7
  [12] JNIHandleBlock::allocate_block(0xed381954, 0x1, 
0xfe4d6a80, 0xed381d18, 0x0, 0xe), at 0xfe0cb9f8
  [13] 0xfe5324e8(0xed3819e0, 0xed381c18, 0xa, 
0xf68171a0, 0x4, 0xed3818f8), at 0xfe5324e7
  [14] JavaCalls::call_helper(0xed381c10, 0xfe4c8000, 
0xed381b5c, 0x287ce8, 0x8721c, 0xed381c18), at 0xfe0cbe94
  [15] JavaCalls::call_virtual(0xf6817ff8, 0xed381b48, 
0xed381b4c, 0xfe4c8000, 0xed381c10, 0xed381b5c), at 
0xfe1f6dbc
  [16] JavaCalls::call_virtual(0xed381c10, 0xed381c0c, 
0xed381c08, 0xed381bfc, 0xed381bf4, 0x287ce8), at 
0xfe1fcd8c
  [17] thread_entry(0xf6817ff8, 0x287ce8, 0xfe4c8000, 
0xed381d18, 0x1e, 0xe), at 0xfe21b700
  [18] JavaThread::run(0xed302000, 0xfe4d3e34, 0xfe4c8000, 
0x80000, 0x287ce8, 0x80000), at 0xfe216200
  [19] _start(0xfe4c8000, 0xfdda5d18, 0x0, 0x5, 0x1, 
0xfe400000), at 0xfe213ec8



Submitted On 13-JAN-2003
amaximov
experiencing the same on

5.8 Generic_108528-16 sun4u sparc
java full version "1.3.1_06-b01"

happens every few hours under heavy load.

#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x8f4fc8 nid=0x1e runnable 
#

we will be applying the latest j2se recommended patch
cluster from sun for solaris platform to see if it fixes the
problem (the one we have is from late october 2002).


Submitted On 17-JAN-2003
araybould
Seeing error 4F530E43505002BD. Very reproducible with 
1.3.1_06. DOWNGRADED to plain old 1.3.1 things appear to be
running much better. What did you break between 1.3.1 & 
1.3.1_04 ??


Submitted On 20-JAN-2003
araybould
Ran loads of tests over the weekend against plain old 1.3.1,
everything worked fine. Whatever bug this is it was 
introduced probably by 1.3.1_04 judging by the comments 
chain.


Submitted On 22-JAN-2003
sunofra
We are having the same errors using the latest JDK 1.3.1_06
like other who have posted here. The app wont run for longer
than 5 minutes on a dual processor Xeon system running
Mandrake Linux 8.2 smp kernel (2.4.18). The only workaround
we have at the moment is to switch to a non smp kernel.
Using the Mandrake secure kernel (also 2.4.18) the system
runs perfectly. Wasting a whole processor is not a viable
option in the long term so we are hoping there will be a fix
for this soon.


Submitted On 29-JAN-2003
amaximov
after applying the latest j2se cluster pacth from sun
(Jan/17/03) we are still experiencing the problem:

#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x9d7b68 nid=0x1b runnable 
#

java full version "1.3.1_06-b01"
SunOS 5.8 Generic_108528-18 sun4u sparc SUNW,Ultra-4

java -server -verbosegc -ms1024m -mx1024m -XX:NewSize=128m
-XX:MaxNewSize=128m

we use alt libthread library (/usr/lib/lwp/libthread.so.1) 


Submitted On 31-JAN-2003
shaneroy
I get this error when I run "java.exe -version". This happens 
on Win2k SP 3. I don't know what is special about this PC, 
but with every release of 1.3.1 (I have tried 1.3.1_01, 
1.3.1_02, 1.3.1_04, 1.3.1_06, 1.3.1_07) I can duplicate this 
error with just the java -version command. Meanwhile I have 
other PCs that run happily using various 1.3.1 releases.


Submitted On 27-FEB-2003
rajesh_bala
We are also experiencing the same problem. We are using 
Solaris 2.8 with JDK 1.3.1_05 version. 

We get both the errors (4F530E43505002BD and 
53484152454432554E54494D450E43505000EA) and we are 
not able to figure out the root cause of the problem. 

Can we rectify this problem by applying the latest Solaris 
patchset for JDK 1.3.1 http://sunsolve.sun.com/pub-
cgi/retrieve.pl?
doctype=patch&doc=J2SE_Solaris_8_Recommended.README . 
Its released on Feb/26/03. 


Submitted On 28-FEB-2003
luciag
Similar error, Solaris 2.6, occurs often but not reproducible, 
using Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 
mixed mode), patches are up to date with documentation.
Seems to appear under load conditions. 

# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01

Unexpected Signal : 11 occurred at PC=0xee9a771c
Function name=JVM_NewInstanceFromConstructor
Library=/datamind/j2re1_3_1_06/lib/sparc/client/libjvm.so

Will try to work around rolling back to earlier JDK.

Stack trace: 
t@4 (l@6) terminated by signal ABRT (Abort)
(/opt/SUNWspro/bin/dbx) where
current thread: t@4
=>[1] __sigprocmask(0x0, 0x67e8fb68, 0x0, 0xffffffff, 
0xffffffff, 0x0), at 0xef784c38
  [2] _resetsig(0xef79776c, 0xef20bdd8, 0xef796ad0, 0x0, 
0x0, 0xef20be44), at 0xef77b9a4
  [3] _sigon(0xef79b5b0, 0xef79b530, 0xef20be3c, 
0xef20a6e4, 0x6, 0x4), at 0xef77b0ec
  [4] _thrp_kill(0x0, 0x4, 0x6, 0xef796ad0, 0xef20bdd8, 
0xef79aecc), at 0xef77df40
  [5] abort(0xef7258b0, 0xef20a7d8, 0x0, 0xfffffff8, 0x0, 
0xef20a7f9), at 0xef6bb310
  [6] os::abort(0x1, 0xeeb3c000, 0x1, 0xef20a858, 0x0, 
0xee9a771c), at 0xeea85894
  [7] os::handle_unexpected_exception(0xef7295d0, 
0xeeb78fec, 0xeeb4ed58, 0xeeb02574, 0xeeb3c000, 
0xef20a878), at 0xeea84aa8
  [8] JVM_handle_solaris_signal(0x0, 0x0, 0xef20b388, 
0xeeb3c000, 0xb, 0xef20b640), at 0xeea87f98
  [9] __libthread_segvhdlr(0xb, 0xef20b640, 0xef20b388, 
0xef796ad0, 0x0, 0x0), at 0xef78465c
  [10] __sighndlr(0xb, 0xef20b640, 0xef20b388, 0xef78457c, 
0xef20be4c, 0xef20be2c), at 0xef786518
  [11] sigacthandler(0xb, 0xef20b640, 0xef20b388, 
0xef796ad0, 0x2c, 0xef20be5c), at 0xef783a40
  ---- called from signal handler with signal 11 (SIGSEGV) ----
--
  [12] oopDesc::copy_to_survivor_space(0xe4101dd8, 0x0, 
0xe4101dd8, 0x8, 0xeeb3c000, 0xef20b71c), at 0xee9a771c
  [13] Scavenge::scavenge_oop_with_check(0xe41001a4, 
0xe41001a4, 0xef20b968, 0x45a7e8, 0x0, 0x19), at 
0xee9a9278
  [14] OopMapSet::all_do(0xef20b958, 0xeeac2668, 
0xef20b968, 0xee9a91f8, 0xffe0, 0x1), at 0xee9abd10
  [15] OopMapSet::oops_do(0xef20b958, 0xeb469fd0, 
0xef20b968, 0xee9a91f8, 0x0, 0x190984), at 0xee9ab700
  [16] frame::oops_do(0xeb469fd0, 0xee9a91f8, 0xef20b968, 
0xeeb3c000, 0xef20b958, 0xee9a91f8), at 0xee9a9bb4
  [17] JavaThread::oops_do(0x0, 0xee9a91f8, 0xe5abaea8, 
0x717e8, 0xe9006da4, 0xee9a91f8), at 0xee9a9720
  [18] Threads::oops_do(0xeeb3c000, 0x482220, 0xee9a91f8, 
0x20, 0x33c2d8, 0xee9a91f8), at 0xee9a95b0
  [19] Scavenge::invoke_at_safepoint(0xeeb7b2e8, 
0xeeb51aec, 0xeeb51ae0, 0x0, 0xeeb819ac, 0xeeb7b2e4), at 
0xee9a608c
  [20] VM_Operation::evaluate(0xe2d7ff10, 0xeeb54128, 
0x184, 0xef20b, 0xeeb3c000, 0xef20bb9c), at 0xee96f464
  [21] VMThread::evaluate_operation(0x9fe08, 0xe2d7ff10, 
0xeeb3c000, 0xeeb51578, 0xeeb4d580, 0xeeb3c000), at 
0xee96f338
  [22] VMThread::loop(0x9fe08, 0xe2d7ff10, 0x8, 0xeeb58df4, 
0xeeb58de8, 0xeeb58df8), at 0xee901f1c
  [23] VMThread::run(0xeeb3c000, 0x9fe08, 0x0, 0x0, 0x0, 
0x0), at 0xee901a0c
  [24] _start(0xeeb3c000, 0xef79a440, 0x0, 0xef7a0a04, 0x1, 
0xfe401000), at 0xee901948


Submitted On 28-FEB-2003
lalithakalimuthu
Same bug here. Not very reproducable. But very dangerous 
as it crashed for us in the middle of a transaction.


Unexpected Signal : 11 occurred at PC=0xfb00e1bc
Function name=append (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000 	/usr/bin/../java/bin/../bin/sparc/native_threads/java
0xff350000 	/usr/lib/libthread.so.1
0xff390000 	/usr/lib/libdl.so.1
0xff200000 	/usr/lib/libc.so.1
0xff330000 	/usr/platform/SUNW,UltraAX-
i2/lib/libc_psr.so.1
0xfe400000 
	/usr/java1.3.1_06/jre/lib/sparc/client/libjvm.so
0xff2e0000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff0d0000 	/usr/lib/libm.so.1
0xff310000 	/usr/lib/libw.so.1
0xff0b0000 	/usr/lib/libmp.so.2
0xff080000 
	/usr/java1.3.1_06/jre/lib/sparc/native_threads/libhpi.
so
0xff050000 	/usr/java1.3.1_06/jre/lib/sparc/libverify.so
0xfe7c0000 	/usr/java1.3.1_06/jre/lib/sparc/libjava.so
0xff020000 	/usr/java1.3.1_06/jre/lib/sparc/libzip.so
0xfe3c0000 	/usr/lib/locale/en_US.ISO8859-
1/en_US.ISO8859-1.so.2
0xfe390000 	/usr/lib/nss_files.so.1
0xc6be0000 	/usr/java1.3.1_06/jre/lib/sparc/libnet.so
0xc5ae0000 	/usr/java1.3.1_06/jre/lib/sparc/libawt.so
0xc4080000 
	/usr/java1.3.1_06/jre/lib/sparc/motif21/libmawt.so
0xc57b0000 
	/usr/bin/../java/bin/../jre/lib/sparc/libmlib_image.so
0xc3e00000 	/usr/dt/lib/libXm.so.4
0xc5690000 	/usr/openwin/lib/libXt.so.4
0xc55d0000 	/usr/openwin/lib/libXext.so.0
0xc5ac0000 	/usr/openwin/lib/libXtst.so.1
0xc3d00000 	/usr/openwin/lib/libX11.so.4
0xc55b0000 	/usr/openwin/lib/libSM.so.6
0xc54d0000 	/usr/openwin/lib/libICE.so.6
0xc54a0000 	/usr/openwin/lib/libdga.so.1
0xc4200000 
	/usr/java1.3.1_06/jre/lib/sparc/libfontmanager.so
0xc53a0000 	/usr/openwin/lib/libdps.so.5
0xc52c0000 	/usr/java1.3.1_06/jre/lib/sparc/libdcpr.so
0xc5590000 
	/usr/openwin/lib/locale/common/xlibi18n.so.2

Local Time = Fri Feb 28 01:27:18 2003
Elapsed Time = 47732
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed 
mode)
#


Submitted On 03-MAR-2003
Bru
Similar error runing WLS 6.1 SP4 on Solaris 8

Unexpected Signal : 11 occurred at PC=0xfb04e8bc
Function name=lookupInternal (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000
/export/hestia/weblogic6.1/bea/jdk131/jre/bin/../bin/sparc/native_threads/java
0xff350000 	/usr/lib/libthread.so.1
0xff390000 	/usr/lib/libdl.so.1
0xff200000 	/usr/lib/libc.so.1
0xff340000 	/usr/platform/SUNW,Sun-Fire-280R/lib/libc_psr.so.1
0xfe400000
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/hotspot/libjvm.so
0xff2e0000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff0d0000 	/usr/lib/libm.so.1
0xff310000 	/usr/lib/libw.so.1
0xff0b0000 	/usr/lib/libmp.so.2
0xff080000
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/native_threads/libhpi.so
0xff050000 
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libverify.so
0xfe7c0000 
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libjava.so
0xff020000 
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libzip.so
0xfe3a0000 
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libnet.so
0xfaed0000 	/usr/lib/nss_files.so.1
0xe6120000 
/export/hestia/weblogic6.1/bea/wlserver6.1/lib/solaris/libmuxer.so
0xe6100000 	/usr/ucblib/libucb.so.1
0xe60b0000 	/usr/lib/libresolv.so.2
0xe6070000 	/usr/lib/libelf.so.1
0xe57a0000 
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libioser12.so
0xe5770000 
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libawt.so
0xe5600000
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/motif21/libmawt.so
0xe55b0000
/export/hestia/weblogic6.1/bea/jdk131/jre/bin/../lib/sparc/libmlib_image.so
0xe4980000 	/usr/dt/lib/libXm.so.4
0xe5540000 	/usr/openwin/lib/libXt.so.4
0xe5730000 	/usr/openwin/lib/libXext.so.0
0xe5520000 	/usr/openwin/lib/libXtst.so.1
0xe4880000 	/usr/openwin/lib/libX11.so.4
0xe5500000 	/usr/openwin/lib/libSM.so.6
0xe54d0000 	/usr/openwin/lib/libICE.so.6
0xe54a0000 	/usr/openwin/lib/libdga.so.1
0xe3f00000
/export/hestia/weblogic6.1/bea/jdk131/jre/lib/sparc/libfontmanager.so
0xe5440000 	/usr/openwin/lib/libdps.so.5

Local Time = Mon Mar  3 17:25:22 2003
Elapsed Time = 258091
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed mode)
#


Submitted On 03-MAR-2003
maessen
Edwin

* Same error
* We use Solaris 7 with all the latest patches from SUN
* We have Weblogic 6.1 SP4 and JDK 1.3.1_07
----------------

Unexpected Signal : 11 occurred at PC=0xac4a0
Function name=(N/A)
Library=(N/A)

NOTE: We are unable to locate the function name symbol for the error
      just occurred. Please refer to release documentation for possible
      reason and solutions.



Current Java thread:

Dynamic libraries:
0x10000         /usr/j2sdk1_3_1_07/jre/bin/../bin/sparc/native_threads/java
0xff360000      /usr/lib/libthread.so.1
0xff3a0000      /etc/lib/libdl.so.1
0xff280000      /usr/lib/libc.so.1
0xff260000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
0xfe000000      /usr/j2sdk1_3_1_07/jre/lib/sparc/server/libjvm.so
0xff210000      /usr/lib/libCrun.so.1
0xff1f0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff1c0000      /usr/lib/libm.so.1
0xff240000      /usr/lib/libw.so.1
0xff0e0000      /usr/lib/libmp.so.2
0xff0a0000      /usr/j2sdk1_3_1_07/jre/lib/sparc/native_threads/libhpi.so
0xff070000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libverify.so
0xff030000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libjava.so
0xfe7d0000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libzip.so
0xfe6b0000      /usr/lib/locale/fi/fi.so.2
0xfe680000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libnet.so
0xd6480000      /u01/app/lrtool/wlserver6.1/lib/solaris/oci920_8/libweblogicoci3
7.so
0xb8800000      /u01/app/oracle/product/9.2.0/lib32/libclntsh.so.9.0
0xfcc10000      /usr/lib/libC.so.5
0xfcfe0000      /u01/app/oracle/product/9.2.0/lib32/libwtc9.so
0xfcfc0000      /usr/lib/libgen.so.1
0xfcfa0000      /usr/lib/libsched.so.1
0xfabe0000      /usr/lib/libaio.so.1
0xfabc0000      /usr/lib/librt.so.1
0xd67e0000      /etc/lib/nss_files.so.1
0xd67c0000      /u01/app/lrtool/wlserver6.1/lib/solaris/libmuxer.so
0xd67a0000      /usr/ucblib/libucb.so.1
0xd6540000      /usr/lib/libresolv.so.2
0xd6440000      /usr/lib/libelf.so.1
0xd6510000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libioser12.so

Local Time = Mon Mar  3 11:26:48 2003
Elapsed Time = 3940
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_07-b02 mixed mode)
 

Weblogic crashes while users are just doing normal routines


Submitted On 07-MAR-2003
stefan.kuehnel
The following servlet run with the J2EE RI1.3.1 or JBoss
3.0.x  and J2SE 1.4.0_3, 1.4.1_01 and 1.4.1_02 reliably
crashes the JVM with Error ID 4F530E43505002E6 when the
server JVM is used.  It is a stripped down version of the
struts <logic:present role=""> tag.  The bug initially
appeared as random crashes in a larger app but with a higher
number of iterations for the loop it manifests itself even
in this simplified form.

======================

package jvmcrash;

import java.io.IOException;
import java.util.StringTokenizer;
import javax.servlet.*;
import javax.servlet.http.*;

public class JvmCrash extends HttpServlet
{
    protected String cookie = null;
    protected String role = "role";
        
    protected boolean condition(HttpServletRequest request)
    {
	boolean present = false;
	if (cookie != null) {
	    Cookie cookies[] =
		request.getCookies();
	    if (cookies == null)
		cookies = new Cookie[0];
	    for (int i = 0; i < cookies.length; i++) {
		if (cookie.equals(cookies[i].getName())) {
		    present = true;
		    break;
		}
	    }
	} else if (role != null) {
	    StringTokenizer st = new StringTokenizer(role, ",", false);
	    while (!present && st.hasMoreTokens()) {
		present = request.isUserInRole(st.nextToken());
	    }
	}
        
	return present;
    }

    protected void doGet(HttpServletRequest request,
HttpServletResponse response)
        throws IOException, ServletException
    {
	int nIterations = 50000;
	for (int i=0; i<nIterations; i++) {
	    boolean result = condition(request);
	}
    }
}

========


Submitted On 10-MAR-2003
ronakshah2000
Easily reproducible error with WLS 7.02 on Windows 2000 
Advanced Server.  It happens every time I try to compile a 
particular webpage.

# HotSpot Virtual Machine Error : 
EXCEPTION_ACCESS_VIOLATION
# Error ID : 4F530E43505002BD
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed 
mode)


Submitted On 13-MAR-2003
robert42
I get the error exactly as described by jvmcrash message
above. My app is linux 2.4, jboss3.04, j2sdk1.4.1-02. The
app is std 1.8 dist from liferay.com (go see). It uses
struts etc too.
Oddly the error is not reproducible on a 1Ghz testsystem, 
but occurs constantly on a 500MHz test system. Neither are
RAM bound. Both are he same OS/jdk etc. Could this indicste
a stress load problem, only apparent at high CPU loads?


Submitted On 16-MAR-2003
robert42
SOLVED!!  
I removed package compat-glibc-6.2-2.1.3.2 (linux kernel 2.2
libc compatibility package), and the JDK now runs reliably
(so far!). 
This is a marked contrast to earlier where it would not run
at all.
I beleive the problem must be a conflict or path resolution
problem when both libraries are present.
Ticker tape parades gratefully accepted :-)


Submitted On 24-MAR-2003
muddymuddyman
You solved it for linux but how do you solve it for solaris ?


Submitted On 27-MAR-2003
knitterb
At the fear of saying "me too", me too.

I've seen this on WL 5.1 sp11, and WL 6.1 sp 4 with jdk's
1.3.1 through 1.3.1_07.  I've changed my java options to:

env
LD_LIBRARY_PATH=/opt/weblogic/lib/solaris::/lib:/opt/TiVoJava/lib
/solaris /export/home/weblogic/progs/j2sdk1_3_1_07/bin/java
-server -Xms512m -Xm
x512m -verbose:gc -XX:NewSize=128m -XX:MaxNewSize=128m
-XX:SurvivorRatio=10 -XX:
MaxPermSize=128m -XX:+DisableExplicitGC -classpath
/opt/weblogic/lib/weblogic510
sp11boot.jar:/opt/weblogic/classes/boot:
-Dweblogic.class.path=/opt/weblogic/lib
/weblogic510sp11.jar:/opt/weblogic/license:/opt/weblogic/classes:/opt/weblogic/l
ib/weblogicaux.jar:/opt/weblogic/lib/persistence/WebLogic_RDBMS.jar:/opt/weblogi
c/myserver/serverclasses:/opt/weblogic/mssqlserver4v70/classes:/opt/TiVoJava/ora
cle_type4.jar:/opt/TiVoJava/ivjsap35.jar::/opt/TiVoJava/cdkjava3500.jar:/opt/TiV
oJava/TiVo_framework.jar:/opt/TiVoJava/TiVo_authen.jar:/opt/TiVoJava/TiVo_bsm.ja
r:/opt/TiVoJava/TiVo_dw.jar:/opt/TiVoJava/TiVo_mfg.jar:/opt/TiVoJava/TiVo_credit
check.jar:/opt/TiVoJava/TiVo_sapinterface.jar:/opt/TiVoJava/TiVo_webcc.jar:/opt/
TiVoJava/TiVo_activation.jar:/opt/TiVoJava/TiVo_types.jar:/opt/TiVoJava/TiVo_com
mon.jar:/opt/TiVoJava/TiVo_programguide.jar:/opt/TiVoJava/TiVo_mma.jar:/opt/TiVo
Java/TiVo_arm.jar:/opt/TiVoJava
-Dweblogic.home=/opt/weblogic -Djava.security.ma
nager -Djava.security.policy=/opt/weblogic/weblogic.policy
-Dconfig=/opt/TiVoJav
a/etc/prd/tivo.properties weblogic.Server

And I have a .hotspot_compiler directive of:
    
    exclude java/lang/String compareTo

Which I see being taken as:

    CompilerOracle: exclude java/lang/String compareTo

My stacks look like:

Unexpected Signal : 11 occurred at PC=0xfac4ce04
Function name=getOutputStream (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000        
/export/home/weblogic/progs/j2sdk1_3_1_07/bin/../bin/sparc/nativ
e_threads/java
0xff350000      /lib/libthread.so.1
0xff390000      /lib/libdl.so.1
0xff200000      /lib/libc.so.1
0xff330000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
0xfe000000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/server/l
ibjvm.so
0xff2e0000      /lib/libCrun.so.1
0xff1e0000      /lib/libsocket.so.1
0xff100000      /lib/libnsl.so.1
0xff0d0000      /lib/libm.so.1
0xff310000      /lib/libw.so.1
0xff0b0000      /lib/libmp.so.2
0xff080000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/native_t
hreads/libhpi.so
0xff050000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/libverif
y.so
0xfe7c0000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/libjava.
so
0xff020000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/libzip.s
o
0xfcfb0000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/libnet.s
o
0xfabe0000      /opt/weblogic/lib/solaris/libweblogicunix1.so
0xfabc0000      /lib/nss_files.so.1
0xfa8c0000      /opt/weblogic/lib/solaris/libmuxer.so
0xfa870000     
/export/home/weblogic/progs/j2sdk1_3_1_07/jre/lib/sparc/libioser
12.so
0xfa840000      /opt/TiVoJava/lib/solaris/libivjsij35.so
0xcd180000      /opt/TiVoJava/lib/solaris/librfccm.so

Local Time = Thu Mar 27 11:59:58 2003
Elapsed Time = 122
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_07-b02 mixed mode)
#
# An error report file has been saved as hs_err_pid22529.log.
# Please refer to the file for further information.
#

I have a 500M core if anyone wants it.


Submitted On 27-MAR-2003
arnljot
We have the same problem in our production environment on 
this os:
SunOS urd 5.8 Generic_108528-12 sun4u sparc SUNW,UltraAX-
i2

And we've migrated from JDK1.2.2 to 1.3.1 build 7.

We use the weblogic 5.1sp6 j2ee server.

The 4F530E43505002BD happens about every 48 hours in our 
environment.


Submitted On 27-MAR-2003
knitterb
Oh, FWIW, the problems seem to have subsided on WL 6.1 with
the same .hotspot_compiler entry, and the following switches:

-server -ms512m -mx512m \
-XX:MaxPermSize=128m -XX:+DisableExplicitGC \
-verbose:gc -XX:NewSize=128m -XX:MaxNewSize=128m
-XX:SurvivorRatio=10

5.1 insists in crashing


Submitted On 31-MAR-2003
yaron-r
We get it too, Weblogic 7 SP1 JVM 1.3.1_07_b02 client.


Submitted On 02-APR-2003
Gnarly717
Me too.  

1.3.1_03-b3

Can't reproduce it, but have had it happen twice in a week so 
far.  Any ideas what could cause it?


Submitted On 03-APR-2003
anniehuang98
We are having the same problem with hotspot!
 
We are using windows 2000 advance server SP3, WLS 6.0 SP2
(Rolling Pack 3), error shown as following
 
#
# The exception above was detected in native code outside 
the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1-b24 mixed 
mode)
 
An unexpected exception has been detected in native code 
outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION 
occurred at PC=0x77f8765f
Function name=RtlDosSearchPath_U
Library=C:\WINNT\System32\ntdll.dll
 
Current Java thread:
 at java.lang.Class.forName0(Native Method)
 at java.lang.Class.forName(Class.java:120)
 

 


Submitted On 03-APR-2003
msullivan2
We are also seeing this on Solaris 8 with JDK 1.3.1_03

pstack:

 --- called from signal handler with signal 11 (SIGSEGV) ---
 fe0decbc
__1cIScavengeXscavenge_oop_with_check6FppnHoopDesc__v_
(a6880a7c, a6880a7c, fee0b7e0, 113490, 0, 19) + 4c
 fe167f80
__1cJOopMapSetGall_do6FpknFframe_pnICodeBlob_pknLRegisterMap_pFppnHoopDesc__vpF9C9C_vpF9C_vp9H_v_
(fee0b7d0, fe422a04, fee0b7e0, fe0dec70, ffe0, 1) + 5cc
 fe168124
__1cJOopMapSetHoops_do6FpknFframe_pnICodeBlob_pknLRegisterMap_pFppnHoopDesc__v_v_
(fee0b7d0, faf89c50, fee0b7e0, fe0dec70, 0, 339eb4) + 2c
 fe137cc0
__1cFframeHoops_do6MpFppnHoopDesc__vpnLRegisterMap__v_
(faf89c50, fe0dec70, fee0b7e0, fe4a2000, fee0b7d0, fe0dec70)
+ d8
 fe17c178 __1cKJavaThreadHoops_do6MpFppnHoopDesc__v_v_ (0,
fe0dec70, fe4acfc4, fe4a2000, ac737830, fe0dec70) + 13c
 fe1f9858 __1cHThreadsHoops_do6FpFppnHoopDesc__v_v_
(fe4a2000, 25fd08, fe0dec70, 20, 5856e8, fe0dec70) + 34
 fe20f22c __1cIScavengeTinvoke_at_safepoint6Filrl_v_
(fe513218, fe4b7c24, fe4b7c18, 0, fe519934, fe513210) + 70c
 fe19441c __1cMVM_OperationIevaluate6M_v_ (a68801f0, 164,
fee0b, fe4a2000, 148a90, fee0bb34) + 34
 fe1944c0
__1cIVMThreadSevaluate_operation6MpnMVM_Operation__v_
(148a90, a68801f0, fe4a2000, fe4b76b4, fe4b36c4, fe4a2000) + 3c
 fe2d0fe4 __1cIVMThreadEloop6M_v_ (148a90, a68801f0, 8,
fe4bebd4, fe4bebc8, fe4bebd8) + 2e8
 fe2d0970 __1cIVMThreadDrun6M_v_ (fe4a2000, 148a90, 0, 0, 0,
0) + 7c
 fe2123d8 _start   (fe4a2000, ff37f690, 1, 1, ff37e000, 0) + 20
 ff36b734 _thread_start (148a90, 0, 0, 0, 0, 0) + 40

pmap:

FE000000   4680K read/exec        
/usr/local/bea7.0/jdk131_03/jre/lib/sparc/server/libjvm.so


Submitted On 10-APR-2003
knitterb
It would appear that many are having the issue but there is 
no internal update from Sun on it.

Time to move to RedHat Linux and check out IBM's JVM I 
guess... :(



Submitted On 18-APR-2003
msullivan2
Also on Solaris 8 with JDK 1.3.1_07

Local Time = Fri Apr 18 01:47:41 2003
Elapsed Time = 485887
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_07-b02 mixed mode)
#


Submitted On 23-APR-2003
rsavino
We got this crashing symptom one time in production today. 
Java HotSpot(TM) Client VM (build 1.3.1_06-b01, mixed mode)
Weblogic 6.1 SP4. The application server didn't seem to be 
doing anything (except a http get on a servlet for a health 
check) for 8 minutes when the core dump occurred. What is 
the status of this fix? Is there any known workarounds should 
this occur again? Should we gontact Sun with the core dump?

Here is our output:

Unexpected Signal : 10 occurred at PC=0xfb0b776c
Function name=getMBean (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000 
	/usr/jdk/jdk131_06/bin/../bin/sparc/native_threads/ja
va
0xff360000 	/usr/lib/libthread.so.1
0xff3a0000 	/usr/lib/libdl.so.1
0xff200000 	/usr/lib/libc.so.1
0xff330000 	/usr/platform/SUNW,Ultra-
Enterprise/lib/libc_psr.so.1
0xfe400000 
	/usr/jdk/jdk131_06/jre/lib/sparc/hotspot/libjvm.so
0xff2e0000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff1b0000 	/usr/lib/libm.so.1
0xff310000 	/usr/lib/libw.so.1
0xff0d0000 	/usr/lib/libmp.so.2
0xff0a0000 
	/usr/jdk/jdk131_06/jre/lib/sparc/native_threads/libhpi
.so
0xff070000 	/usr/jdk/jdk131_06/jre/lib/sparc/libverify.so
0xff030000 	/usr/jdk/jdk131_06/jre/lib/sparc/libjava.so
0xfe7d0000 	/usr/jdk/jdk131_06/jre/lib/sparc/libzip.so
0xe88e0000 	/usr/jdk/jdk131_06/jre/lib/sparc/libnet.so
0xe6ac0000 	/usr/lib/nss_files.so.1
0xe6150000 
	/prod/app/weblogic610/weblogic/lib/solaris/libmuxer.s
o
0xe6130000 	/usr/ucblib/libucb.so.1
0xe6040000 	/usr/lib/libresolv.so.2
0xe5f50000 	/usr/lib/libelf.so.1
0xe5d20000 
	/prod/app/weblogic610/weblogic/config/vccs/vbis/lib/
libprtjt42.so
0xe5c10000 	/usr/lib/libC.so.5
0xe5e30000 
	/prod/app/weblogic610/weblogic/config/vccs/vbis/lib/
libfilesbb.so
0xe5b60000 
	/prod/app/weblogic610/weblogic/config/vccs/CAS/lib
/libcsasjdbc45.so
0xdaa80000 	/opt/vignette/CAS/lib/libcsasodbc45.so
0xe5e10000 	/usr/lib/libintl.so.1
0xe5b30000 	/usr/lib/libpthread.so.1
0xe5b10000 	/usr/lib/libposix4.so.1
0xe5a60000 	/opt/vignette/CAS/lib/libodcommon45.so
0xe5a20000 	/opt/vignette/Common/lib/libmny12dV41.so
0xda200000 	/opt/vignette/Common/lib/libint12dV41.so
0xda100000 	/opt/vignette/Common/lib/libnet12dV41.so
0xda000000 	/opt/vignette/Common/lib/libthr12dV41.so
0xd9f00000 	/opt/vignette/Common/lib/libtls12dV41.so
0xe5960000 	/usr/lib/libaio.so.1
0xd9e00000 	/opt/vignette/Common/lib/libtls12dV41us.so
0xd9d00000 
	/opt/vignette/Common/lib/libthr12dV41us.so
0xd9c00000 
	/opt/vignette/Common/lib/libnet12dV41us.so

Local Time = Wed Apr 23 09:28:04 2003
Elapsed Time = 16030
#
# HotSpot Virtual Machine Error : 10
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 mixed 
mode)
#
# An error report file has been saved as hs_err_pid29698.log.
# Please refer to the file for further information.
#
Abort - core dumped



Submitted On 29-APR-2003
jtr
FWIW: I had this problem w/ 1.3.1 on Solaris and it 
turned out to be an endlessly recursive call, which was 
overflowing the stack.  It shouldn't have crashed the VM, 
but if you're having  trouble, you might try sending a 
few SIGQUITs to dump the stack trace.



Submitted On 13-MAY-2003
sureway99
We found this error with the following configuration:
Java HotSpot(TM) Client VM (1.3.1_07-b02 mixed mode)
on SunOS 5.6

So far, we have only got this twice.
Is there any fix for this?


Submitted On 15-MAY-2003
imortimer
All-

We had this issue with a web-based application on Solaris 
5.8, running webLogic 7.0. But none of that info matters. 
Here's why: in our particular app, we found that the problem 
happened during a use case when an error gets thrown in the 
JSP layer. What spawned a recursive call was the fact that 
we had an errorPage directive in an include, which was 
included on the error page itself. We found that when we 
removed the errorPage directive from the include, and we ran 
through the same use case again, the problem went away. 
So, if anyone is seeing this try checking your JSP directives. 
Reproducing this bug is next to impossible. You have to get 
lucky and smart all at once. Here's a list of what we tried 
that made NO difference:
1. Upgrading to jdk 1.3.1_08 from 1.3.1_06. Nada.
2. Adjusting the java arguments. Negative.
3. Memory configurations. So not the issue.
4. Application configurations. 
5. Increasing the DB connection pool. 
6. Implemented GC services in the app to run GC regularly. 
Way off.

I think you get the picture. Best of luck, this is a tough one. 

-Imorti


Submitted On 19-MAY-2003
smsis
I have had the exact same error upon migrating from Solaris 
2.6 to Solaris 2.8 and from JVM 1.2 to JVM 1.3 or 1.4.  Doing 
the following two things solved the problem:

1. Using the Alternate Libthread library.  You do that by adding
   /usr/lib/lwp at the beginning of your LD_LIBRARY_PATH
   (i.e. LD_LIBRARY_PATH=/usr/lib/lwp:$LD_LIBRARY_PATH);

2. Starting all JVMs in Server mode.  You do that by adding
   -server to your JVM options (i.e. java -server -
classpath ...).

This went to Production on an E10000 in December 2002 and 
we have not seen the problem since then.

Incidentally, these two changes have improved the average 
throughput of a particular component in the application by 
+26 %!


Submitted On 19-MAY-2003
pornostern
I have had this error with WebSphere 4.04 With java version 
1.3.1_04-b02.
It happens on an external program that handles users that is 
logged in. It has "only" occoured twice but it was when alot 
of users where logged in. Will try the Xinit option for this 
program.


Submitted On 21-MAY-2003
pornostern
It just happend again yesterday....... 


Submitted On 29-MAY-2003
rajesh_bala
invalid distance code
invalid literal/length code
META-INF/
Allocating ZIP comments array
Added ZIP comment "%s"
invalid END header (bad central directory size)
invalid END header (bad central directory offset)
invalid END header (bad entry count)
too many entries in ZIP file
invalid CEN header (bad header size)
invalid CEN header (bad signature)
invalid CEN header (encrypted entry)
invalid CEN header (bad compression method)
count 
 %ld, total 
 %ld
zip file name too long
zip file too large
invalid LOC header (bad signature)
ZIP_Read: specified offset out of range
ZIP_Read: memcpy: start or end out of range
inflateFully: entry not compressed
1.1.3
inflateFully: Unexpected end of file
inflateFully: Unexpected end of stream
%s: %s
Expecting to find double on stack
Expecting to find long on stack
Expecting to find array of ints on stack
Expecting to find array of longs on stack
Expecting to find array of floats on stack
Expecting to find array of doubles on stack
Expecting to find array of objects or arrays on stack
Expecting to find array of bytes on stack
Expecting to find array of chars on stack
Expecting to find array of shorts on stack
Expecting to find array on stack
Internal error #1
Attempt to split long or double on the stack
Internal error #2
Incompatible types for storing into array of arrays or objects
Incompatible type for getting or setting field
Bad access to protected data
Bad type in putfield/putstatic
Can only throw Throwable objects
Call to wrong initialization method
Incompatible object argument for function call
Incompatible object argument for invokespecial
clone
Incompatible argument to function
Wrong return type in function
Uninitialized object on stack at creating point
Recursive call to jsr entry
Internal error #3
full_info !
../../../src/share/native/common/check_code.c
Internal error #4
Falling off the end of the code
Multiple returns to single jsr
Illegal return from subroutine
Inconsistent stack height %d !
Mismatched stack types
Internal error #5
(class: %s, method: %s signature: %s) 
(class: %s, field: %s) 
(class: %s) 
Out Of Memory
Cannot find class %s
Bad magic number
Bad name
Superclass name
Bad superclass name
java/lang/Object
Bad superclass index
Interface name
Bad interface name
Repeative interface name
ConstantValue
Wrong size for VALUE attribute
Multiple ConstantValue attributes
Repeative field name/signature
clinit
Too many arguments in signature
Code
Code attribute in native or abstract methods
Multiple Code attributes
Exceptions
Multiple Exceptions attributes
Repeative method name/signature
SourceFile
Multiple SourceFile attributes
InnerClasses
Multiple InnerClasses attributes
Extra bytes at the end of the class file
inner_class_info_index
outer_class_info_index
inner_name_index
Class is both outer and inner class
Bad initial value
Bad index into constant pool
Ljava/lang/String;
Bad string initial value
Unable to set initial value
Illegal constant pool size
Invalid constant pool entry
Illegal constant pool type
Code of a method longer than 65535 bytes
Arguments can't fit into locals
LineNumberTable
LocalVariableTable
Code segment has wrong length
Invalid pc in line number table
Line number table has wrong length
Invalid start_pc/length in local var table


Submitted On 29-MAY-2003
rajesh_bala
Got the following from the core dump using "Strings core". Will 
it help in diagnosing the problem?

libjava.so
x/usr/lib/nss_files.so.1
@nss_files.so.1
/opt/customer/ACadmin/j2sdk1_3_1_05/jre/lib/sparc/libzip.so
lib/sparc/libnet.so
T/opt/customer/ACadmin/j2sdk1_3_1_05/jre/lib/sparc/libnet.so
is NULL
%s: %s
%s: object is NULL
NULL
toString
()Ljava/lang/String;
JNU_GetFieldByName: illegal signature
JNU_SetFieldByName: illegal signature
JNU_GetStaticFieldByName: illegal signature
JNU_SetStaticFieldByName: illegal signature
JVM interface version mismatch: expecting %d, got %d.
ar_EG
be_BY
bg_BG
br_FR
ca_ES
cs_CZ
da_DK
de_DE
el_GR
en_US
es_ES
et_EE
eu_ES
fi_FI
fr_FR
ga_IE
gl_ES
iw_IL
hr_HR
hu_HU
in_ID
is_IS
it_IT
ja_JP
kl_GL
ko_KR
lt_LT
lv_LV
mk_MK
nl_NL
no_NO
pl_PL
pt_PT
ro_RO
ru_RU
sh_YU
sk_SK
sl_SI
sq_AL
sr_YU
sv_SE
th_TH
tr_TR
uk_UA
zh_CN
big5
zh_TW.Big5
japanese
tchinese
zh_TW
POSIX
chinese
korean
euro
EURO
/var/tmp/
sun.awt.motif.PSPrinterJob
sun.awt.X11GraphicsEnvironment
JAVA_FONTS
little
sparc
i386
Unknown
ISO8859-1
@euro
ISO8859-15
UnicodeBig
NLSPATH
/usr/dt/lib/nls/msg/%L/%N.cat
XFILESEARCHPATH
/usr/dt/app-defaults/%L/Dt
PATH
%s: cannot execute
%s: not found
exitcode
Can't find field UNIXProcess.exitcode
Can't find field FileDescriptor.fd
java/io/IOException
java/io/File
path
Ljava/lang/String;
_stat64
Bad pathname
/etc/default/init
/lib/tzmappings
can't open %s
tzmappings: Illegal format at near line %d.
tzmappings: Illegal format at line %d.
GMT%c%02d:%02d
p8GH
Äķ]p
Ðh6
Ðx5
Ðx5
Ð5
000500


Submitted On 29-MAY-2003
rajesh_bala
585540251
hJ}Ac
ubAc
19328496
00350038
āΰ('
8496
0350038
19328496
0350038
L0.0350038
/257344
, 0.0350038 secs]
 205257K-
82921K(257344K)
S05(
88GH
6 hÄ
0Lt_
,Ä@
§g&a
IiGM
 deflate 1.1.3 Copyright 1995-1998 Jean-loup Gailly 
 inflate 1.1.3 Copyright 1995-1998 Mark Adler 
strm
level
strategy
setParams
finish
finished
1.1.3
strm
needDict
finished
1.1.3
java/util/zip/DataFormatException
jzfile
jzfileID !
../../../src/share/native/java/util/zip/ZipFile.c
java/util/zip/ZipException
(Ljava/lang/String;)V
null filename
error in opening zip file
zfile !
java/lang/String
name
Ljava/lang/String;
time
size
csize
method
extra
comment
1.1.3
need dictionary
stream end
file error
stream error
data error
insufficient memory
buffer error
incompatible version
1.1.3
1.1.3
unknown compression method
invalid window size
incorrect header check
need dictionary
incorrect data check
invalid block type
invalid stored block lengths
too many length or distance symbols
invalid bit length repeat
oversubscribed dynamic bit lengths tree
incomplete dynamic bit lengths tree
oversubscribed literal/length tree
incomplete literal/length tree
oversubscribed distance tree
incomplete distance tree
empty distance tree with lengths
invalid literal/length code
invalid distance code


Submitted On 29-MAY-2003
rajesh_bala
Local variable name
Local variable signature
Local variables table has wrong length
Exception name
Exceptions attribute has wrong length
Truncated class file
Illegal constant pool index
Bad index in constant pool #%d
Bad index in constant pool.
Improper constant pool long/double #%d
Illegal constant pool type at #%d
Illegal class modifiers: 0x%X
Illegal field modifiers: 0x%X
init
Illegal method modifiers: 0x%X
Illegal UTF8 string in constant pool
Field
Method
Variable
Class
Illegal %s name "%s"
Field "%s" has illegal signature "%s"
Method "%s" has illegal signature "%s"
%s has bad constant pool index
%s has bad constant type
%s (
%s (wrong name: %s)
Unsupported major.minor version %d.%d
 !"#
,-./
012345/
612789:;
012@ABC
DEFGHIJ
2LMNC
2LMPC
2QRIC
UVWXYZ
jklmk
rstu
UUUU
UUUTUUUEEEUU
TUUP_
EEUUUP
UQUUTEU
ãŋ @
ãŋ@
ãŋ @
ãū@
ãū@
ãŋ @
ãŋ @
ãŋ@
ãŋ @
ãŋ @
ãŋ @
ãŋ @
ãŋ @
ãŋ @
ãŋ @
ãŋ @
err 
../../../../src/solaris/hpi/native_threads/src/threads_md.c
Thread queue lock
native threads
You must install a Solaris patch to run the native threads 
version of the
Java runtime.  The green threads version will work without 
this patch.
Please check the native threads release notes for more 
information.
If you are embedding the VM in a native application, please 
make sure that
the native application is linked with libthread.so (-lthread).
Exiting.
Cannot open %s for GC
/proc/00000
lib%s%s.so
%s/lib%s%s.so
/dev/zero
devzero
_fstat64
_lseek64
_ftruncate64
_open64
Memory
Library
System
Thread
File
Socket


Submitted On 10-JUN-2003
sbmgic
We're also seeing the same issue under load, and require a 
fix.  I'm filing separate bug reports to go with.

Unexpected Signal : 10 occurred at PC=0xfe5a1668
Function name=JVM_FindLoadedClass
Library=/usr/local/bea/jdk131/jre/lib/sparc/hotspot/libjvm.so

Current Java thread:

Dynamic libraries:
0x10000         /usr/local/bea/jdk131/jre/bin/../bin/sparc/native
_threads/java
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff340000      /usr/platform/SUNW,Sun-Fire-
280R/lib/libc_psr.so.1
0xfe480000      /usr/local/bea/jdk131/jre/lib/sparc/hotspot/libj
vm.so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000      /usr/local/bea/jdk131/jre/lib/sparc/native_threa
ds/libhpi.so
0xff050000      /usr/local/bea/jdk131/jre/lib/sparc/libverify.so
0xfe440000      /usr/local/bea/jdk131/jre/lib/sparc/libjava.so
0xff020000      /usr/local/bea/jdk131/jre/lib/sparc/libzip.so
0xfe360000      /usr/lib/locale/en_US/en_US.so.2
0xfe210000      /usr/local/bea/jdk131/jre/lib/sparc/libnet.so
0xfe160000      /usr/lib/nss_files.so.1
0xfe140000      /usr/local/bea/wlserver6.1/lib/solaris/libmuxer.s
o
0xfd0e0000      /usr/ucblib/libucb.so.1
0xfd0c0000      /usr/lib/libresolv.so.1
0xfd080000      /usr/lib/libelf.so.1
0x98610000      /usr/local/bea/wlserver6.1/lib/solaris/libweblogi
cunix1.so
0x968c0000      /opt/mqm/java/lib/libmqjbnd04.so
0x93780000      /opt/mqm/lib/libmqm.so
0x93680000      /opt/mqm/lib/libmqmcs.so
0x968a0000      /opt/mqm/lib/libmqmzse.so
0x967e0000      /usr/lib/libposix4.so.1
0x967c0000      /usr/lib/libaio.so.1

Local Time = Thu Feb 27 16:07:54 2003
Elapsed Time = 3190
#
# HotSpot Virtual Machine Error : 10
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_03-b03 mixed 
mode)
#


Submitted On 11-JUN-2003
danshelton
Hello All,

I run on RedHat 7.3 (kernel 2.4.18, glibc 2.2.5) with JDK
1.3.1_08 and WebLogic Server 6.1SP5. I can reproduce the
crash by opening the WebLogic Server Console and doing a
bunch of reloads of the front page. Hope this helps the bug
chasers.

Have a good one,

Dan


Submitted On 11-JUN-2003
Stevie8
We also encountered a similar error today. Hotspot trace is 
below. We will test it with JDK 1.3.1_07.

Unexpected Signal : 11 occurred at PC=0xfb8332f4
Function name=compareTo (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000 	/usr/java/bin/../bin/sparc/native_threads/java
0xff370000 	/usr/lib/libthread.so.1
0xff3a0000 	/usr/lib/libdl.so.1
0xff280000 	/usr/lib/libc.so.1
0xff350000 	/usr/platform/SUNW,Ultra-
60/lib/libc_psr.so.1
0xfee80000 
	/usr/j2sdk1_3_1_04/jre/lib/sparc/client/libjvm.so
0xff230000 	/usr/lib/libCrun.so.1
0xfee60000 	/usr/lib/libsocket.so.1
0xfed80000 	/usr/lib/libnsl.so.1
0xfed50000 	/usr/lib/libm.so.1
0xff260000 	/usr/lib/libw.so.1
0xfee40000 	/usr/lib/libmp.so.2
0xfed30000 	/usr/lib/librt.so.1
0xfed10000 	/usr/lib/libaio.so.1
0xfecf0000 	/usr/lib/libmd5.so.1
0xfecc0000 	/usr/platform/SUNW,Ultra-
60/lib/libmd5_psr.so.1
0xfec90000 
	/usr/j2sdk1_3_1_04/jre/lib/sparc/native_threads/libhp
i.so
0xfec50000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libverify.so
0xfec00000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libjava.so
0xfebd0000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libzip.so
0xfea10000 	/usr/lib/locale/en_US.ISO8859-
1/en_US.ISO8859-1.so.2
0xfe9d0000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libnet.so
0xfe9b0000 	/usr/lib/nss_files.so.1

Local Time = Wed Jun 11 08:40:02 2003
Elapsed Time = 33179
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_04-b02 mixed 
mode)
#
# An error report file has been saved as hs_err_pid14241.log.
# Please refer to the file for further information.
#

hs_err_pid1175.log
-------------------

Unexpected Signal : 11 occurred at PC=0xfb8332f4
Function name=compareTo (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000 	/usr/java/bin/../bin/sparc/native_threads/java
0xff370000 	/usr/lib/libthread.so.1
0xff3a0000 	/usr/lib/libdl.so.1
0xff280000 	/usr/lib/libc.so.1
0xff350000 	/usr/platform/SUNW,Ultra-
60/lib/libc_psr.so.1
0xfee80000 
	/usr/j2sdk1_3_1_04/jre/lib/sparc/client/libjvm.so
0xff230000 	/usr/lib/libCrun.so.1
0xfee60000 	/usr/lib/libsocket.so.1
0xfed80000 	/usr/lib/libnsl.so.1
0xfed50000 	/usr/lib/libm.so.1
0xff260000 	/usr/lib/libw.so.1
0xfee40000 	/usr/lib/libmp.so.2
0xfed30000 	/usr/lib/librt.so.1
0xfed10000 	/usr/lib/libaio.so.1
0xfecf0000 	/usr/lib/libmd5.so.1
0xfecc0000 	/usr/platform/SUNW,Ultra-
60/lib/libmd5_psr.so.1
0xfec90000 
	/usr/j2sdk1_3_1_04/jre/lib/sparc/native_threads/libhp
i.so
0xfec50000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libverify.so
0xfec00000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libjava.so
0xfebd0000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libzip.so
0xfea10000 	/usr/lib/locale/en_US.ISO8859-
1/en_US.ISO8859-1.so.2
0xfe9d0000 	/usr/j2sdk1_3_1_04/jre/lib/sparc/libnet.so
0xfe9b0000 	/usr/lib/nss_files.so.1

Local Time = Sat May 24 11:32:01 2003
Elapsed Time = 43757
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_04-b02 mixed 
mode)
#


Submitted On 16-JUN-2003
rajesh_bala
We found a portion of the code which creates 100Mb of char
[] array in every invocation of a method. We fixed this and its 
now creating only 2Mb now. We are fixing this in production 
system this week (Assuming that this fix will have less load on 
GC and fix JVM crash).


Submitted On 16-JUN-2003
roylec
From August 2002 to June 2003 and no answer.

Can we have a suggested workaround or resolution 
referenced here please.


Submitted On 27-JUN-2003
pkankipati
We are getting the same problem in production with jdk 
1.3.1 weblogic 6.1 SP4. We need a solution to this problem, I 
hope sun would provide a solution very soon (This is the 3rd 
time we are getting this).

Unexpected Signal : EXCEPTION_PRIV_INSTRUCTION 
occurred at PC=0x8b0613
Function name=(N/A)
Library=(N/A)

NOTE: We are unable to locate the function name symbol for 
the error
      just occurred. Please refer to release documentation for 
possible
      reason and solutions.



Current Java thread:

Dynamic libraries:
0x00400000 - 0x00405000 	h:\jdk131\bin\java.exe
0x77F80000 - 0x77FFB000 	C:\WINNT\System32
\ntdll.dll
0x77DB0000 - 0x77E0D000 	C:\WINNT\system32
\ADVAPI32.dll
0x77E80000 - 0x77F36000 	C:\WINNT\system32
\KERNEL32.DLL
0x77D30000 - 0x77DA1000 	C:\WINNT\system32
\RPCRT4.DLL
0x78000000 - 0x78046000 	C:\WINNT\system32
\MSVCRT.dll
0x6D420000 - 0x6D4F9000 	h:\jdk131
\jre\bin\hotspot\jvm.dll
0x77E10000 - 0x77E75000 	C:\WINNT\system32
\USER32.dll
0x77F40000 - 0x77F7C000 	C:\WINNT\system32
\GDI32.DLL
0x77570000 - 0x775A0000 	C:\WINNT\System32
\WINMM.dll
0x6D220000 - 0x6D227000 	h:\jdk131\jre\bin\hpi.dll
0x6D3B0000 - 0x6D3BD000 	h:\jdk131
\jre\bin\verify.dll
0x6D250000 - 0x6D266000 	h:\jdk131
\jre\bin\java.dll
0x6D3C0000 - 0x6D3CD000 	h:\jdk131\jre\bin\zip.dll
0x6D340000 - 0x6D348000 	H:\jdk131\jre\bin\net.dll
0x75050000 - 0x75058000 	C:\WINNT\System32
\WSOCK32.dll
0x75030000 - 0x75043000 	C:\WINNT\System32
\WS2_32.DLL
0x75020000 - 0x75028000 	C:\WINNT\System32
\WS2HELP.DLL
0x782C0000 - 0x782CC000 	C:\WINNT\System32
\rnr20.dll
0x77980000 - 0x779A4000 	C:\WINNT\System32
\DNSAPI.DLL
0x77340000 - 0x77353000 	C:\WINNT\System32
\iphlpapi.dll
0x77520000 - 0x77525000 	C:\WINNT\System32
\ICMP.DLL
0x77320000 - 0x77337000 	C:\WINNT\System32
\MPRAPI.DLL
0x75150000 - 0x75160000 	C:\WINNT\System32
\SAMLIB.DLL
0x75170000 - 0x751BF000 	C:\WINNT\System32
\NETAPI32.DLL
0x77BE0000 - 0x77BEF000 	C:\WINNT\System32
\SECUR32.DLL
0x751C0000 - 0x751C6000 	C:\WINNT\System32
\NETRAP.DLL
0x77950000 - 0x7797A000 	C:\WINNT\system32
\WLDAP32.DLL
0x77A50000 - 0x77B45000 	C:\WINNT\system32
\OLE32.DLL
0x779B0000 - 0x77A4B000 	C:\WINNT\system32
\OLEAUT32.DLL
0x773B0000 - 0x773DE000 	C:\WINNT\System32
\ACTIVEDS.DLL
0x77380000 - 0x773A2000 	C:\WINNT\System32
\ADSLDPC.DLL
0x77830000 - 0x7783E000 	C:\WINNT\System32
\RTUTILS.DLL
0x77880000 - 0x7790D000 	C:\WINNT\System32
\SETUPAPI.DLL
0x77C10000 - 0x77C6E000 	C:\WINNT\System32
\USERENV.DLL
0x774E0000 - 0x77512000 	C:\WINNT\System32
\RASAPI32.DLL
0x774C0000 - 0x774D1000 	C:\WINNT\System32
\RASMAN.DLL
0x77530000 - 0x77552000 	C:\WINNT\System32
\TAPI32.DLL
0x77B50000 - 0x77BD9000 	C:\WINNT\system32
\COMCTL32.DLL
0x77C70000 - 0x77CBA000 	C:\WINNT\system32
\SHLWAPI.DLL
0x77360000 - 0x77379000 	C:\WINNT\System32
\DHCPCSVC.DLL
0x777E0000 - 0x777E8000 	C:\WINNT\System32
\winrnr.dll
0x777F0000 - 0x777F5000 	C:\WINNT\System32
\rasadhlp.dll
0x74FD0000 - 0x74FED000 	C:\WINNT\system32
\msafd.dll
0x75010000 - 0x75017000 	C:\WINNT\System32
\wshtcpip.dll
0x27FE0000 - 0x27FE5000 	H:\wlserver6.1sp4
\bin\wlntio.dll
0x77920000 - 0x77943000 	C:\WINNT\system32
\imagehlp.dll
0x72A00000 - 0x72A2D000 	C:\WINNT\system32
\DBGHELP.dll
0x690A0000 - 0x690AB000 	C:\WINNT\System32
\PSAPI.DLL

Local Time = Fri Jun 27 03:32:06 2003
Elapsed Time = 30982
#
# HotSpot Virtual Machine Error : 
EXCEPTION_PRIV_INSTRUCTION
# Error ID : 4F530E43505002BD
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_06-b01 
mixed mode)
#



Submitted On 27-JUN-2003
rajesh_bala
The fix we applied on Production did not help. It happened 
again today. Is sun even looking at this problem? We are 
planning to apply the latest solaris patches this weekend. I 
am not sure whether it will solve the problem or not.

Sad thing is even after posting the core dump, I dont think 
sun is even concentrating on this bug...:(


Submitted On 01-JUL-2003
mwudali
We are currently experiencing this error running jdk 1.3.1_04 on Sun E6500 machines running Solaris 8 in our 
production environment causing many problems.  A solution needs to be found by Sun as this apparently is 
affecting many java users.

Unexpected Signal : 11 occurred at PC=0xfedc3338
Function name=JVM_IHashCode
Library=/opt/usr/j2se_1.3.1_04/jre/lib/sparc/server/libjvm.so

Current Java thread:

Dynamic libraries:
0x10000         /opt/usr/j2se_1.3.1_04/bin/../bin/sparc/native_threads/java
0xff360000      /usr/lib/lwp/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff280000      /usr/lib/libc.so.1
0xff270000      /usr/platform/SUNW,Ultra-Enterprise/lib/libc_psr.so.1
0xfec00000      /opt/usr/j2se_1.3.1_04/jre/lib/sparc/server/libjvm.so
0xff220000      /usr/lib/libCrun.so.1
0xff200000      /usr/lib/libsocket.so.1
0xfeb00000      /usr/lib/libnsl.so.1
0xff1d0000      /usr/lib/libm.so.1
0xff250000      /usr/lib/libw.so.1
0xff1a0000      /usr/lib/libmp.so.2
0xff170000      /usr/lib/librt.so.1
0xfebe0000      /usr/lib/libaio.so.1
0xfebb0000      /opt/usr/j2se_1.3.1_04/jre/lib/sparc/native_threads/libhpi.so
Elapsed Time = 107506
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Java VM: Java HotSpot(TM) Server VM (1.3.1_04-b02 mixed mode)
#


dbx> threads     t@9 
t@9 (l@9) stopped in _lwp_kill at 0xff31ee6c
0xff31ee6c: _lwp_kill+0x0008:	bgeu,a  _lwp_kill+0x1c
dbx> where
current thread: t@9
=>[1] _lwp_kill(0x0, 0x9, 0x0, 0xff33c000, 0xff386000, 0xff340420), at 0xff31ee6c
  [2] raise(0x6, 0x0, 0x0, 0xffffffff, 0xff3403ac, 0x0), at 0xff2cb94c
  [3] abort(0xff33c000, 0x3a77dfd8, 0x0, 0x4, 0x0, 0x3a77dff9), at 0xff2b58ec
  [4] os::abort(0x1, 0xff0ce000, 0x1, 0x3a77e058, 0x0, 0xfedc3338), at 0xfefc7da4
  [5] os::handle_unexpected_exception(0xff34029c, 0xff13e4b0, 0xff0e214c, 0xff074a38, 0xff0ce000, 
0x3a77e078), at 0xfefc6ec8
  [6] JVM_handle_solaris_signal(0x0, 0x1f45f8, 0x3a77ecc8, 0xff0ce000, 0xb, 0x3a77ef80), at 0xfee0bd0c
  [7] xehInterpretSavedSigaction(0x361fa900, 0x361e4b1c, 0x361fad5c, 0x361fae0c, 0x361db91c, 
0x3a77ecc8), at 0x3611d474
  [8] xehExceptionHandler(0xb, 0x1, 0xb, 0x361db91c, 0x3a77ecc8, 0x3a77ef80), at 0x3611d680
  [9] __sighndlr(0xb, 0x3a77ef80, 0x3a77ecc8, 0x3611d5a8, 0x0, 0x0), at 0xff374cc8
  [10] call_user_handler(0xff160e00, 0x9, 0xff3878e0, 0x3a77ecc8, 0x3a77ef80, 0xb), at 0xff36fb00
  [11] sigacthandler(0xff160e00, 0x3a77ef80, 0x3a77ecc8, 0xff386000, 0x3a77ef80, 0xb), at 0xff36fccc
  ---- called from signal handler with signal 11 (SIGSEGV) ------
  [12] adjust_check(0x27b303c, 0xff0ce000, 0x278ab50, 0x278ab48, 0x2809e14, 0x3a77f3d4), at 
0xfedc3338
  [13] IfNode::Ideal(0xff0ce000, 0x3a77f3dc, 0x3a77f3d4, 0x1, 0x1, 0x1), at 0xfecfe7c0
  [14] PhaseIterGVN::transform_old(0x3a77f3d4, 0x3a77f3d4, 0x1e41b0, 0x3a77f4f4, 0x1e41b0, 
0x3a77f3fc), at 0xfecc2080
  [15] PhaseIterGVN::optimize(0x2ac, 0xc2a, 0xc2a, 0x2b20738, 0x2000, 0x2809df0), at 0xfed74b48
  [16] Compile::Optimize(0x3a77fa10, 0x3a77f848, 0x3a77fa10, 0x3a77f86c, 0x0, 0x3a77f66c), at 
0xfedcdd9c
  [17] Compile::Compile(0x9967f4, 0x3a77fa90, 0x27b3784, 0xff12f21c, 0x3a77fb30, 0x3a77fb40), at 
0xfedccbcc
  [18] C2Compiler::compile_method(0x1f2730, 0x3a77fd88, 0x27b3784, 0x27b3698, 0xffffffff, 0x1), at 
0xfedc8928
  [19] CompileBroker::invoke_compiler_on_method(0x27b3698, 0x27b3784, 0xff0f0854, 0x0, 0x0, 0x157), at 
0xfedc8f2c
  [20] CompileBroker::compiler_thread_loop(0x27a28, 0x1f45f8, 0xff0ce000, 0x3a77ffa0, 0xff0ce000, 
0xffffffff), at 0xfee81d50
  [21] JavaThread::run(0x3a580000, 0xff0d9e1c, 0xff0ce000, 0x200000, 0x1f45f8, 0x200000), at 
0xfee175ec
  [22] _start(0xff0ce000, 0xff160e00, 0x0, 0x0, 0x0, 0x0), at 0xfee15320



Submitted On 02-JUL-2003
danshelton
Hello All,

I - just for a test - replaced the Sun 1.3.1 JVM on a test
box with the IBM 1.3.1 JVM. WebLogic does not certify the
IBM JVM for use with WebLogic Server but I figured I would
give it a try. The test box came up and I was not able to
crash it via the WebLogic Admin Console as I was with the
Sun JVM.

Later,

Dan


Submitted On 08-JUL-2003
bkostner
I am running JDK 1.4.0_03 under Linux (Kernel 2.4.18) with the 
Caucho Resin Webserver. The whole system keeps stable and 
does not crash.

As soon as I tried to upgrade to version 1.4.1 and 1.4.2, I 
experienced regular virtual machine crashes. Thus, I reverted 
back to version 1.4.0_03.

Java Command Line:
 /usr/java/j2sdk1.4.0_03//bin/java  -Xnoincgc -Xms150m 
-Xmx220m -server -Xdebug -Xnoagent -Xrunjd
wp:transport=dt_socket,server=y,address=15350,suspend=n 
-XX:MaxNewSize=100M -XX:NewRatio=3  -Dresin.home=/opt/
icoserve/third_party/resin com.caucho.server.http.HttpServer

Crash information:
Unexpected Signal : 11 occurred at PC=0x4285B6FC
Function=[Unknown.]
Library=(N/A)

Heap at VM Abort:
Heap
 def new generation   total 34560K, used 29170K [0x44900000, 
0x46e80000, 0x48000000)
  eden space 30720K,  94% used [0x44900000, 0x4657c8e0, 
0x46700000)
  from space 3840K,   0% used [0x46700000, 0x46700000, 
0x46ac0000)
  to   space 3840K,   0% used [0x46ac0000, 0x46ac0000, 
0x46e80000)
 tenured generation   total 115200K, used 0K [0x48000000, 
0x4f080000, 0x52500000)
   the space 115200K,   0% used [0x48000000, 0x48000000, 
0x48000200, 0x4f080000)
 compacting perm gen  total 16384K, used 10122K 
[0x52500000, 0x53500000, 0x56500000)
   the space 16384K,  61% used [0x52500000, 0x52ee2890, 
0x52ee2a00, 0x53500000)

Local Time = Mon Jul  7 16:59:54 2003
Elapsed Time = 15
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002EF
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.4.2-b28 mixed 
mode)
#

A was not yet able to find a workaround for JDK 1.4.1 and 1.4.
2 to work. Could there be a problem with the Linux Kernel?


Submitted On 09-JUL-2003
mmaciag1
We've are running into this error more than once a week:
  Solaris 8 7/01 s28s_u5wos_08 SPARC 
  Java VM: Java HotSpot(TM) Server VM (1.3.1_06-b01 mixed 
mode)
  Tomcat 4.0.6


Submitted On 10-JUL-2003
jbrosenberg
Just had a similar failure, although it has happened so far just 
this once.....

Running Weblogic 5.1 sp12
SunOS webl2 5.7 Generic_106541-17 sun4u sparc SUNW,Ultra-
60

java version "1.3.1_07"
Java(TM) 2 Runtime Environment, Standard Edition (build 
1.3.1_07-b02)
Java HotSpot(TM) Client VM (build 1.3.1_07-b02, mixed mode)

Here's the dump:

Unexpected Signal : 11 occurred at PC=0xfe43a6c8
Function name=sysThreadAvailableStackWithSlack
Library=/usr/j2sdk1_3_1_07/jre/lib/sparc/server/libjvm.so
 
Current Java thread:
 
Dynamic libraries:
0x10000         /usr/bin/../java/bin/../bin/sparc/native_threads/
java
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff330000      /usr/platform/SUNW,Ultra-60/lib/libc_psr.so.1
0xfe000000      /usr/j2sdk1_3_1_07/jre/lib/sparc/server/libjvm.
so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff1b0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0d0000      /usr/lib/libmp.so.2
0xff0a0000      /usr/j2sdk1_3_1_07/jre/lib/sparc/native_thread
s/libhpi.so
0xff060000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libverify.so
0xff020000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libjava.so
0xfe7d0000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libzip.so
0xfdde0000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libnet.so
0xfddb0000      /weblogic/lib/solaris/libweblogicunix1.so
0xfdd50000      /usr/lib/nss_files.so.1
0x930e0000      /usr/j2sdk1_3_1_07/jre/lib/sparc/libioser12.so
0x930c0000      /weblogic/lib/solaris/libmuxer.so
 
Local Time = Thu Jul 10 19:46:59 2003
Elapsed Time = 7412
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_07-b02 
mixed mode)
#
# An error report file has been saved as hs_err_pid9311.log.
# Please refer to the file for further information.
#
/weblogic/startMain: line 36:  9311 Abort                   (core 
dumped) java -server -ms512m -mx1536m -classpath 
$CLASSPATH -Djava.protocol.handler.pkgs=HTTPCli
ent -Dweblogic.cluster.enable=true -
Dweblogic.cluster.name=$CLUSTERNAME -
Dweblogic.class.path=$WEBLOGICCLASSPATH -
Djava.security.manager -Djava.security.policy==$
WL/weblogic.policy -
Dsquaretrade.run.environment=production -
Dsquaretrade.distributeroot.path=/mounts/DistributeRoot -
Dweblogic.system.name=main$HOSTNAME -Dweblog
ic.system.home=/weblogic weblogic.Server


Submitted On 10-JUL-2003
rajesh_bala
Even applying latest solaris patchset did not help. It crashes 
at the same rate (2 crashes per week). We can't even switch 
over to 1.4 since it is reported against 1.4 also. 


Submitted On 23-JUL-2003
shakerlxxv
We're running ATG 6.0.0 and SDK 1.3.1_07 and see the problem, 
as mentioned by others during a comples JSP compilation.

In our case the problem is 100% repeatable. Every time that JSP
compilation occurred the server would crash.

The cause of the error is now known as well as a rather
unsatisfying
workaround.

Java limits the size of a method to 64K. When JSP are
translated into
Servlet source code ( at least on ATG ) the overwhelming
majority of
code ends up in a single service method.

While it is difficult to directly correlate the size of the
translated servlet
code with the 64K limit,  the page compilation succeeds
after reducing
the size of the translated servelt code by restructuring the
JSP source.

Hope this helps some of instances of this problem.

It would be nice if the javac compiler or runtime
environment recognized
the limitations which will cause the VM to crash and
reported them 
in a coherent manner ( like is done with OutOfMemory
exceptions ).



Submitted On 28-AUG-2003
claudionieder
Same problem on Windows XP with XMLSpy. 

Unexpected Signal : EXCEPTION_ACCESS_VIOLATION 
occurred at PC=0x6d44842b
Function name=(N/A)
Library=C:\Program Files\JavaSoft\JRE\1.3.1_08
\bin\hotspot\jvm.dll
[...]
Current Java thread:
	at XMLSpyInterface.SpyXMLData.ISetTextValue
(Native Method)
	at XMLSpyInterface.SpyXMLData.SetTextValue
(SpyXMLData.java:94)
	at 
com.alcatel.uc.nora.osSimulator.MediationObjectRequest.setEl
ementId(MediationObjectRequest.java:349)
	at 
com.alcatel.uc.nora.osSimulator.MediationObjectRequest.setO
bjectInstance(MediationObjectRequest.java:258)
	at 
com.alcatel.uc.nora.osSimulator.CreateMediationObjectReques
t.createRequest(CreateMediationObjectRequest.java:18)
	at 
com.alcatel.uc.nora.osSimulator.ManagedObjectDialog.nextAct
ion(ManagedObjectDialog.java:162)
	at 
com.alcatel.uc.nora.osSimulator.ManagedObjectDialog$1.actio
nPerformed(ManagedObjectDialog.java:92)
	at javax.swing.AbstractButton.fireActionPerformed
(Unknown Source)
	at 
javax.swing.AbstractButton$ForwardActionEvents.actionPerfor
med(Unknown Source)
	at 
javax.swing.DefaultButtonModel.fireActionPerformed(Unknown 
Source)
	at javax.swing.DefaultButtonModel.setPressed
(Unknown Source)
	at 
javax.swing.plaf.basic.BasicButtonListener.mouseReleased
(Unknown Source)
	at java.awt.Component.processMouseEvent
(Unknown Source)
	at java.awt.Component.processEvent(Unknown 
Source)
	at java.awt.Container.processEvent(Unknown 
Source)
	at java.awt.Component.dispatchEventImpl(Unknown 
Source)
	at java.awt.Container.dispatchEventImpl(Unknown 
Source)
	at java.awt.Component.dispatchEvent(Unknown 
Source)
	at 
java.awt.LightweightDispatcher.retargetMouseEvent(Unknown 
Source)
	at 
java.awt.LightweightDispatcher.processMouseEvent(Unknown 
Source)
	at java.awt.LightweightDispatcher.dispatchEvent
(Unknown Source)
	at java.awt.Container.dispatchEventImpl(Unknown 
Source)
	at java.awt.Window.dispatchEventImpl(Unknown 
Source)
	at java.awt.Component.dispatchEvent(Unknown 
Source)
	at java.awt.EventQueue.dispatchEvent(Unknown 
Source)
	at 
java.awt.EventDispatchThread.pumpOneEventForHierarchy
(Unknown Source)
	at 
java.awt.EventDispatchThread.pumpEventsForHierarchy
(Unknown Source)
	at java.awt.Dialog.show(Unknown Source)

[...]
# Java VM: Java HotSpot(TM) Client VM (1.3.1_08-b03 
interpreted mode)


Submitted On 16-SEP-2003
The-Brus
Unexpected Signal : 11 occurred at PC=0x8069145
Function name=(N/A)
Library=(N/A)

[...]

Local Time = Mon Sep 15 19:33:02 2003
Elapsed Time = 3
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_09-b03 
mixed mode)


Submitted On 24-SEP-2003
jliptak
Unexpected Signal : 11 occurred at PC=0xfe167414
Function name=JVM_GetCPClassNameUTF
Library=/opt/bea/home703/jdk131_08/jre/lib/sparc/server/libjv
m.so

Current Java thread:
        at java.net.PlainDatagramSocketImpl.receive(Native 
Method)
        at java.net.DatagramSocket.receive
(DatagramSocket.java:387)
        at weblogic.cluster.FragmentSocket.receive
(FragmentSocket.java:158)
        at weblogic.cluster.MulticastManager.execute
(MulticastManager.java:336)
        at weblogic.kernel.ExecuteThread.execute
(ExecuteThread.java:234)
        at weblogic.kernel.ExecuteThread.run
(ExecuteThread.java:210)

Dynamic libraries:
0x10000         /opt/bea/home703/jdk131_08/bin/../bin/sparc/n
ative_threads/java
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff340000      /usr/platform/SUNW,Sun-Fire-
480R/lib/libc_psr.so.1
0xfe000000      /opt/bea/home703/jdk131_08/jre/lib/sparc/ser
ver/libjvm.so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000      /opt/bea/home703/jdk131_08/jre/lib/sparc/nati
ve_threads/libhpi.s
o
0xff050000      /opt/bea/home703/jdk131_08/jre/lib/sparc/libve
rify.so
0xfe7c0000      /opt/bea/home703/jdk131_08/jre/lib/sparc/libja
va.so
0xff020000      /opt/bea/home703/jdk131_08/jre/lib/sparc/libzi
p.so
0xfdfd0000      /opt/bea/home703/jdk131_08/jre/lib/sparc/libne
t.so
0xfdfb0000      /usr/lib/nss_files.so.1
0xfde40000      /opt/bea/wls70sp3/server/lib/solaris/libstackdu
mp.so
0xfde20000      /usr/lib/libmd5.so.1
0xfdd60000      /opt/bea/wls70sp3/server/lib/solaris/libmuxer.s
o
0xfcfe0000      /usr/ucblib/libucb.so.1
0xfcc30000      /usr/lib/libresolv.so.2
0xfcfa0000      /usr/lib/libelf.so.1
0xfcc10000      /opt/bea/wls70sp3/server/lib/solaris/libfilelock.
so
0xfaba0000      /opt/bea/home703/jdk131_08/jre/lib/sparc/libio
ser12.so

Local Time = Mon Sep 22 16:09:48 2003
Elapsed Time = 322432
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi


Submitted On 30-SEP-2003
webdevmanish
I was able to consistently reproduce this error.  Amazingly, 
we realized by removing some our custom tag that checks for 
an authenticated user, we got rid of the problem.  Like some 
of the other comments I've read, I think the error is JSP 
related.  Probably due to compilation.  As a rule, we 
precompile all our JSPs into the war file.  Following this 
practice may reduce your problems.



Submitted On 22-OCT-2003
dbavedb
Our Windows InstallAnywhere installation (5.0.5 Enterprise 
Build 1626) uses this VM:

    java.vm.version               == 1.3.1_04-b02
    
and it reproduced 'Bug Id  4725213' which was closed as a 
duplicate of this 'Bug Id'.


Submitted On 30-OCT-2003
kylevb
We repeatedly had this on a RedHat 8.0 machine (2.4.18
kernel).  Tomcat would not start, the JVM catching signal 11
every time and throwing error 4F530E43505002E6.  I noticed
in dmesg that the kernel had said:

Uhhuh. NMI received. Dazed and confused, but trying to continue
You probably have a hardware problem with your RAM chips

This was accurate.  A process of elimination found which of
the 4 memory sticks had gone sour.  1 caused this message to
be shown immediately after boot.

Consider hardware failure as a possible cause for this sort
of intermittent problem and run diagnostics.


Submitted On 17-DEC-2003
thirumala
Happened on Oct 13 & Dec 15th.  Occassionally... 
Makes it hard to reproduce / find the root cause.
Unexpected Signal : 11 occurred at PC=0x8dfb0
Function name=(N/A)
Library=(N/A)

NOTE: We are unable to locate the function name 
symbol for the error
      just occurred. Please refer to release 
documentation for possible
      reason and solutions.



Current Java thread:

Dynamic libraries:
0x10000 
	/opt/beasys/jdk131_06/bin/../bin/sparc/nativ
e_threads/java
0xff350000 	/usr/lib/libthread.so.1
0xff390000 	/usr/lib/libdl.so.1
0xff200000 	/usr/lib/libc.so.1
0xff330000 	/usr/platform/SUNW,Ultra-
4/lib/libc_psr.so.1
0xfe000000 
	/opt/beasys/jdk131_06/jre/lib/sparc/server/li
bjvm.so
0xff2e0000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff0d0000 	/usr/lib/libm.so.1
0xff310000 	/usr/lib/libw.so.1
0xff0b0000 	/usr/lib/libmp.so.2
0xff080000 
	/opt/beasys/jdk131_06/jre/lib/sparc/native_t
hreads/libhpi.so
0xff050000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libverify.
so
0xfe7c0000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libjava.
so
0xff020000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libzip.s
o
0xfe550000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libnet.s
o
0xfde90000 	/usr/lib/nss_files.so.1
0xfdd50000 
	/opt/beasys/weblogic700/server/lib/solaris/l
ibstackdump.so
0xfcce0000 	/usr/lib/libmd5.so.1
0xfccc0000 
	/opt/beasys/weblogic700/server/lib/solaris/l
ibmuxer.so
0xfcca0000 	/usr/ucblib/libucb.so.1
0xfcc50000 	/usr/lib/libresolv.so.2
0xfcc10000 	/usr/lib/libelf.so.1
0xfabc0000 
	/opt/beasys/weblogic700/server/lib/solaris/l
ibfilelock.so
0xfaaa0000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libioser
12.so

Local Time = Mon Dec 15 14:07:52 2003
Elapsed Time = 121206
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_06-b01 
mixed mode)
#


Submitted On 17-DEC-2003
jessejane
i have see similar error:
Unexpected Signal : 11 occurred at PC=0x402FBFD1 
during VM shutdown
Function=print_cr__12outputStreamPCce+0x4D
Library=/usr/java/j2sdk1.4.1_02/jre/lib/i386/client/libjvm.
so

#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002E6
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 
mixed mode)
#
# An error report file has been saved as 
hs_err_pid17664.log.
# Please refer to the file for further information.


Submitted On 17-DEC-2003
thirumala
I am also receiving the same error on Solaris 
2.8/Weblogic 7/0 SP2 environment.  

Unexpected Signal : 11 occurred at PC=0x8dfb0
Function name=(N/A)
Library=(N/A)

NOTE: We are unable to locate the function name 
symbol for the error
      just occurred. Please refer to release 
documentation for possible
      reason and solutions.



Current Java thread:

Dynamic libraries:
0x10000 
	/opt/beasys/jdk131_06/bin/../bin/sparc/nativ
e_threads/java
0xff350000 	/usr/lib/libthread.so.1
0xff390000 	/usr/lib/libdl.so.1
0xff200000 	/usr/lib/libc.so.1
0xff330000 	/usr/platform/SUNW,Ultra-
4/lib/libc_psr.so.1
0xfe000000 
	/opt/beasys/jdk131_06/jre/lib/sparc/server/li
bjvm.so
0xff2e0000 	/usr/lib/libCrun.so.1
0xff1e0000 	/usr/lib/libsocket.so.1
0xff100000 	/usr/lib/libnsl.so.1
0xff0d0000 	/usr/lib/libm.so.1
0xff310000 	/usr/lib/libw.so.1
0xff0b0000 	/usr/lib/libmp.so.2
0xff080000 
	/opt/beasys/jdk131_06/jre/lib/sparc/native_t
hreads/libhpi.so
0xff050000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libverify.
so
0xfe7c0000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libjava.
so
0xff020000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libzip.s
o
0xfe650000 	/usr/lib/locale/en_US.ISO8859-
1/en_US.ISO8859-1.so.2
0xfdd60000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libnet.s
o
0xfcce0000 	/usr/lib/nss_files.so.1
0xfdd40000 
	/opt/beasys/weblogic700/server/lib/solaris/l
ibstackdump.so
0xfccc0000 	/usr/lib/libmd5.so.1
0xfcca0000 
	/opt/beasys/weblogic700/server/lib/solaris/l
ibmuxer.so
0xfcc80000 	/usr/ucblib/libucb.so.1
0xfcc30000 	/usr/lib/libresolv.so.2
0xfabc0000 	/usr/lib/libelf.so.1
0xfab90000 
	/opt/beasys/weblogic700/server/lib/solaris/l
ibfilelock.so
0xfaa90000 
	/opt/beasys/jdk131_06/jre/lib/sparc/libioser
12.so

Local Time = Mon Oct 13 09:15:19 2003
Elapsed Time = 40346
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_06-b01 
mixed mode)
#


Submitted On 18-DEC-2003
yoodass
We have had this problem for 3 months on our 
production system. Solaris 9 running Coldfusion MX 
6.1 on JRun. JVM 1.4.2_03-b02. It crashes about 5 
times a day.  I see that this bug has been reported for 
more than a year. It is time for Sun to come up with a 
fix!!!


Submitted On 07-JAN-2004
mike_dewitte
I also get the error, on Solaris 8, jdk 1.3.1_03 under 
weblogic 7.0.1.

It seems to happen always during jsp compilation, 1 
time on 3.

We will soon upgrade to jdk 1.4, with weblogic 8, but I 
read here that the bug happens with jdk 1.4 too...

Is there any fix or any workaround ?


Submitted On 13-JAN-2004
schnaggy
We also get this on Solaris 8 with JDK 1.3.1_08_b03 using
tomcat:

Unexpected Signal : 11 occurred at PC=0xfb1904bc
Function name=append (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000        
/usr/java1.3/bin/../bin/sparc/native_threads/java
0xff340000      /usr/lib/libthread.so.1
0xff380000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff320000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
0xfe400000     
/usr/j2sdk1_3_1_08/jre/lib/sparc/client/libjvm.so
0xff2d0000      /usr/lib/libCrun.so.1
0xff1d0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff300000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000     
/usr/j2sdk1_3_1_08/jre/lib/sparc/native_threads/libhpi.so
0xff040000      /usr/j2sdk1_3_1_08/jre/lib/sparc/libverify.so
0xfe7c0000      /usr/j2sdk1_3_1_08/jre/lib/sparc/libjava.so
0xfe790000      /usr/j2sdk1_3_1_08/jre/lib/sparc/libzip.so
0xfe3a0000      /usr/lib/locale/en_US/en_US.so.2
0xfac20000      /opt/Postbank/brokeragecc/lib/liblogging.so
0xe8890000      /usr/lib/libC.so.5
0xe8be0000      /usr/j2sdk1_3_1_08/jre/lib/sparc/libnet.so
0xe83e0000      /usr/lib/nss_files.so.1

Local Time = Mon Jan 12 09:52:08 2004
Elapsed Time = 608726
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_08-b03 mixed mode)
#


Submitted On 26-JAN-2004
maddipati
We are getting the same too on Solaris WebLogic6.1.

HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi

Why is this still not fixed since  Aug2002. This is bad.


Submitted On 29-JAN-2004
donjess
Local Time = Thu Jan 29 09:50:16 2004
Elapsed Time = 369106
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_07-b02 
mixed mode)
#

This bug caused an outage of a large enterprise portal.


Submitted On 04-FEB-2004
amorrow5
Note:

4F530E43505002BD  is just a hex encoding for ASCII 
characters. It means OS<0E>CPP<02BD> .
Could 02BD be a Windows DLL ordinal?  Could this 
be referring to MSVCRT.DLL ?

Likewise, for UNIX
53484152454432554E54494D450E43505000EA 01
is
SHARED2UNTIME<0E>CPP<00EA><01>

It is not clear to me if this means libC.sl or what.


Submitted On 04-FEB-2004
amorrow5
I will copy the evaluation from 
http://developer.java.sun.com/developer/bugParade/bu
gs/4885936.html
because I think it helps to explain why this bug has so 
many votes (which, it seems, is not helpful).


Note that 4F530E43505002E6 is a generic error.

ANY crash with 1.4.2 JDK will generate this error ID. 
Having the
same error ID doesn't mean anything if it is 
4F530E43505002E6.

If you've seen a crash with the same error id, but the 
stack trace (if any)
doesn't look exactly the same as the one logged in the 
Descrption section,
please, do NOT just duplicate the bug or add 
comments on JDC. It is likely
a different issue. Please file a new bug with detailed 
information and a
testcase if possible. That way the bug can be fixed 
more quickly.

xxxxx@xxxxx 2003-12-09


Submitted On 04-FEB-2004
amorrow5
4F530E43505002E6, for those with the source, 
corresponds to Suns C++ files, specifically
hotspot\share\vm\runtime\os.cpp, line 742
which is just 

os::exception_handler_during_fatal_error()'s call to 
abort().

(as R12345678A reported)

This, of course, is not enough detail.  You have to run a 
debugger, set a break on abort() and reproduce the 
problem.

53484152454432554E54494D450E43505000EA 01

is hotspot\src\share\vm\runtime\sharedRuntime.cpp, 
line 234

I do not have exact source on this, but it might be
SharedRuntime::raw_exception_handler_for_return_ad
dress()

Again, one needs to use a tool like dbx to give enough 
detail.  This bug as over 300 votes, but I suspect that 
Sun's Engineering department can only interpret it to 
mean "fix everything".


Submitted On 20-FEB-2004
gsingal
I am having a similar issue here. We call a few jni 
routines from our java program and the process 
suddenly dies with the following error

An unexpected exception has been detected in native 
code outside the VM.
Unexpected Signal : 11 occurred at PC=0xEF774C9C
Function=_sleep+0x1D4
Library=/usr/lib/libthread.so.1

The error doesnt occur if the application is run at 
windows. Can you please let us know the workaround 
for this?


Submitted On 10-MAR-2004
Sheepy
Thanks amorrow5.  But there's actually more then 580 votes
since bug 4885936 is the same.  If what you say is the case,
perhaps Sun should close the bugs?


Submitted On 18-MAR-2004
aleoncini
I also get same error while using BEA Weblogic 6.1 sp5 and
running on solaris 8.
Following is the report from logs:

An irrecoverable stack overflow has occurred.

Unexpected Signal : 11 occurred at PC=0xdc6b0
Function name=(N/A)
Library=(N/A)

NOTE: We are unable to locate the function name symbol for
the error
	just occurred. Please refer to release documentation for
possible
	reason and solutions.



Current Java thread:

Dynamic libraries:

...

Local Time = Thu Mar 18 14:07:52 2004
Elapsed Time = 7468
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_07-b02 mixed mode)
#


Submitted On 22-MAR-2004
tilothiele
I'm getting the same error (4F530E43505002BD)  
on any JDK 1.3.1 on Win2k and on Linux.  
The crash happens during JBoss is deploying my ear. 
Using the -Xint option seems to avoid this crash 
but the performance is not acceptable then. 


Submitted On 30-MAR-2004
tilothiele
Nope. We are back at the same crash rate with the -Xint option. 


Submitted On 12-APR-2004
archer001
Encountering this bug for the first time on:

Solaris 8, JDK 1.3.1_07-b02, WebLogic 6.1 sp4

An irrecoverable stack overflow has occurred.

Unexpected Signal : 11 occurred at PC=0xfb1234dc
Function name=acquireFD (compiled Java code)
Library=(N/A)

Current Java thread:

Dynamic libraries:
0x10000         /devapps/j2sdk1_3_1_07/bin/../bin/sparc/
native_threads/java
0xff350000      /usr/lib/libthread.so.1
0xff390000      /usr/lib/libdl.so.1
0xff200000      /usr/lib/libc.so.1
0xff340000      /usr/platform/SUNW,Sun-
Fire/lib/libc_psr.so.1
0xfe400000      /devapps/j2sdk1_3_1_07/jre/lib/sparc/h
otspot/libjvm.so
0xff2e0000      /usr/lib/libCrun.so.1
0xff1e0000      /usr/lib/libsocket.so.1
0xff100000      /usr/lib/libnsl.so.1
0xff0d0000      /usr/lib/libm.so.1
0xff310000      /usr/lib/libw.so.1
0xff0b0000      /usr/lib/libmp.so.2
0xff080000      /devapps/j2sdk1_3_1_07/jre/lib/sparc/na
tive_threads/libhpi.so
0xff050000      /devapps/j2sdk1_3_1_07/jre/lib/sparc/lib
verify.so
0xfe7c0000      /devapps/j2sdk1_3_1_07/jre/lib/sparc/li
bjava.so
0xff020000      /devapps/j2sdk1_3_1_07/jre/lib/sparc/lib
zip.so
0xfe3c0000      /usr/lib/locale/en_US.ISO8859-
15/en_US.ISO8859-15.so.2
0xfe250000      /devapps/j2sdk1_3_1_07/jre/lib/sparc/li
bnet.so
0xfe160000      /usr/lib/nss_files.so.1
0xfd3e0000      /devapps/wldecouple610/lib/solaris/libw
eblogicunix1.so
0xfd3c0000      /devapps/wldecouple610/lib/solaris/libm
uxer.so
0xfd3a0000      /usr/ucblib/libucb.so.1
0xfd030000      /usr/lib/libresolv.so.2
0xfafc0000      /usr/lib/libelf.so.1
0xfaeb0000      /devapps/usr/local/wl610-local/ieee/lib-
decouple/cybercash/libpaymentmgr.so

Local Time = Mon Apr 12 13:21:43 2004
Elapsed Time = 2592
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_07-b02 
mixed mode)
#
# An error report file has been saved as 
hs_err_pid27967.log.
# Please refer to the file for further information.
Will be reading through the comments for any clues.


Submitted On 14-APR-2004
dtran78613
I had similiar problem when using Oracle client 9i.  It 
seems like the bug is in Oracle shared library.  

Workaround:  If you're using Oracle client 9i, try this:

set 
LD_LIBRARY_PATH=${JAVA_HOME}/jre/lib/i386:${ORA
CLE_HOME}/lib


Submitted On 03-MAY-2004
RAlemi
Well, a simple way to reproduce this error is to 
download ImageJ from NIC, load an image (any image 
will do), and select image-->showinfo. the Hotspot 
crash happens if java 1.4.2 is running. it doesn't 
happen with 1.3 or 1.4.1


Submitted On 28-MAY-2004
mipito
We're seeing this error on solaris 2.8:

Unexpected Signal : 11 occurred at PC=0xfe1fb4b8
Function name=JVM_GetClassCPTypes
Library=/home/local/jdk1.3.1_06/jre/lib/sparc/server/libjvm.so

#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_06-b01 mixed mode)
#
This happens in a proprietary java server; it happens rarely, but it does happen.


Submitted On 31-MAY-2004
jared.mcneill
I've seen this error before -- an explicit flush from the servlet seems to have been what was triggering this bug in my case. After removing the flush, I was able to soak-test the servlet for hours without problems.


Submitted On 07-JUN-2004
Claus.Ringborg
We get the error on win2000 with weblogic 7.0 sp2
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6d447527
Function name=(N/A)
Library=d:\bea\jdk131_06\jre\bin\hotspot\jvm.dll


Current Java thread:
	at java.net.PlainDatagramSocketImpl.receive(Native Method)
	at java.net.DatagramSocket.receive(DatagramSocket.java:387)
	at weblogic.cluster.FragmentSocket.receive(FragmentSocket.java:158)
	at weblogic.cluster.MulticastManager.execute(MulticastManager.java:336)
	at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)


Submitted On 15-JUN-2004
kiss.my.a.s.s.
for what it is worth to anyone here, i am not getting the same problem with jrockit 1.4.2_04.  we're switching, at least until this gets fixed...and the lack of any comment by sun on this or any of the related (read: identical) bugs in the past year does not bode well for the future of the sun jvm....


Submitted On 25-AUG-2004
musicrob
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002EF

- Linux RedHat 7.2 OR Linux RedHat 9
- Tomcat 4 servlet framework

I can confirm that this bug does not appear to affect me when running 
1.4.2_04-b05 mixed mode
but  appears quite regularly when running
1.4.2_05-b04 mixed mode


Submitted On 29-AUG-2004
armanjison
Hi there!
I'm also experiencing the same problem. The effect of the error is my Tomcat service unexpectedly terminated. Here is the rundown of the error received from the log file:

===========================================
Unexpected Signal : EXCEPTION_PRIV_INSTRUCTION occurred at PC=0x9BEF5E
Function=subAppend (compiled Java code)
Library=(N/A)

Current Java thread:
Dynamic libraries:
0x00400000 - 0x00406000 ...

Elapsed Time = 3754
#
# HotSpot Virtual Machine Error : EXCEPTION_PRIV_INSTRUCTION
# Error ID : 4F530E43505002D5
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.4.0_01-b03 mixed mode)
#
# An error report file has been saved as hs_err_pid3864.log.
# Please refer to the file for further information.
===========================================

Hopefully, someone from Sunmicrosystem might figure out and explain the reason of this error. Thank you!


Submitted On 09-NOV-2004
ramizrachi
We also encounter this bug in JDK 1.3.1_09 on Solaris 8. It happens during massive file read with inputstream object. 

* Core File Info: 
(gdb) where
#0  0xff31f288 in _lwp_kill () from /usr/lib/libc.so.1
#1  0xff2cbce8 in raise () from /usr/lib/libc.so.1
#2  0xff2b598c in abort () from /usr/lib/libc.so.1
#3  0xfefc98ec in __1cCosFabort6Fl_v_ () from /opt/bea/jdk131_09/jre/lib/sparc/server/libjvm.so
#4  0xfefcaf0c in exception_handler_during_fatal_error () from /opt/bea/jdk131_09/jre/lib/sparc/server/libjvm.so
#5  0xff375c20 in __sighndlr () from /usr/lib/lwp/libthread.so.1
#6  0xff36f8b8 in call_user_handler () from /usr/lib/lwp/libthread.so.1
#7  <signal handler called>
==========================================


Submitted On 03-MAR-2005
dave.cox
As manager of the HotSpot compiler group at Sun, I'd like to add some comments to this thread.

The HotSpot error message that was originally reported in this bug is generic for any out-of-bounds memory access violation.  I see comments here that also indicate address alignment errors, problems with various versions of the Client VM and Server VM, errors occurring in native code outside of the VM, and even hardware errors.  They cannot all be the same problem and will not be addressed under a single bug ID.

The customer who filed this bug saw problems running on the Client VM, the Server VM and also in interpreter-only mode.  Some of their failures occurred in non-VM native code.  Thus the problem they experienced could not have been caused by HotSpot's server compiler (a.k.a. "compiler2"), the subcategory for this bug report.

Unfortunately, the customer did not help us to identify the problem and worked around it by upgrading their software components.  Since they are no longer concerned with the original bug and we have no hope of diagnosing it without their input, this bug will be closed.

This action should not be interpreted as cavalier on Sun's part.  We are  very committed to quality and have fixed hundreds of bugs in our JVM and JDK libraries since we shipped version 1.3.1 almost four years ago.  If you are experiencing a problem, I strongly recommend that you upgrade your JRE to our latest version.  If that does not help or for some reason you are unable to upgrade, you should file a new bug and be willing to work with us to get it fixed or, better yet, supply us with a failing test case.  Please understand, though, that our development team is focused on our newer release trains - 1.4.2, 5.0 and 6.0.  JRE 1.3.1 is nearing its end of life. 


Submitted On 20-JUN-2005
shuntsbe
4F530E43505002BD 01


Submitted On 20-JUN-2005
shuntsbe
4F530E43505002BD 01


Submitted On 20-JUN-2005
shuntsbe
4F530E43505002BD 01


Submitted On 05-SEP-2005
I am also facing a problem on server VM. The error log that I got is  as below. 
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0xfac42068
Function name=Java_com_ibm_ws_io_ExtFile_unixGetFileOwner
Current Java thread:
        at com.ibm.ws.io.ExtFile.unixGetFileOwner(Native Method)
        at com.ibm.ws.io.ExtFile.getOwner(ExtFile.java:604)
        at com.ibm.websphere.update.delta.UnixFile.getOwner(UnixFile.java:295)
        at com.ibm.websphere.update.delta.Extractor.binaryTransfer(Extractor.java:8362)
        at com.ibm.websphere.update.delta.Extractor.basicApplyJarEntryJar(Extractor.java:7104)
        at com.ibm.websphere.update.delta.Extractor.applyJarEntryJar(Extractor.java:6518)
        at com.ibm.websphere.update.delta.Extractor.handleFileEntry(Extractor.java:6139)
        at com.ibm.websphere.update.delta.Extractor.handleEntry(Extractor.java:6067)
        at com.ibm.websphere.update.delta.Extractor.basicProcessJarFile(Extractor.java:5082)
        at com.ibm.websphere.update.delta.Extractor.processJarFile(Extractor.java:5034)
        at com.ibm.websphere.update.delta.Extractor.basicProcess(Extractor.java:1358)
        at com.ibm.websphere.update.delta.Extractor.process(Extractor.java:200)
        at com.ibm.websphere.update.ptf.EFixInstaller.runComponentInstall(EFixInstaller.java:756)
        at com.ibm.websphere.update.ptf.EFixInstaller.installComponent(EFixInstaller.java:529)
        at com.ibm.websphere.update.ptf.EFixInstaller.installComponents(EFixInstaller.java:490)
        at com.ibm.websphere.update.ptf.EFixInstaller.baseInstall(EFixInstaller.java:418)
        at com.ibm.websphere.update.ptf.EFixInstaller.install(EFixInstaller.java:390)
        at com.ibm.websphere.update.ptf.EFixInstaller.install(EFixInstaller.java:371)
        at com.ibm.websphere.update.ptf.EFixBatchUpdater.install(EFixBatchUpdater.java:179)
        at com.ibm.websphere.update.silent.EFixInstaller.runInstall(EFixInstaller.java:402)
        at com.ibm.websphere.update.silent.EFixInstaller.doInstall(EFixInstaller.java:320)
        at com.ibm.websphere.update.silent.UpdateInstallerSilent.process(UpdateInstallerSilent.java:150)
        at com.ibm.websphere.update.silent.UpdateInstallerSilent.installSilent(UpdateInstallerSilent.java:81)
        at com.ibm.websphere.update.ismp.ptf.actions.PTFSilentInstall.execute(PTFSilentInstall.java:65)
        at com.installshield.wizard.RunnableWizardBeanContext.run(RunnableWizardBeanContext.java:21)
Local Time = Mon Sep  5 02:16:12 2005
Elapsed Time = 6
#
# The exception above was detected in native code outside the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.3.1_08-b03 mixed mode)
#


Submitted On 01-FEB-2006
Also received this crash using 1.3.1_09-b03 on the following environment:
System = SunOS
Node = x
Release = 5.8
KernelID = Generic_117350-25
Machine = sun4us
BusType = <unknown>
Serial = <unknown>
Users = <unknown>
OEM# = 0
Origin# = 1
NumCPU = 4


Submitted On 06-MAR-2006
stevendodd
Seen it again and again and again:

./java -version
java version "1.3.1_03"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_03-b03)
Java HotSpot(TM) Client VM (build 1.3.1_03-b03, mixed mode)

SunOS xxx 5.8 Generic_108528-29 sun4u sparc SUNW,Sun-Fire-280R


Submitted On 06-MAR-2006
stevendodd
^^

#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E43505000EA 01
#
# Problematic Thread: prio=5 tid=0x2c5228 nid=0xd2 runnable 
#


Submitted On 04-MAY-2006
dctm_java
The WebLogic 7.0 SP1 running on Solaris 8 with J2RE1_3_1_04 is crashing in production environment.

************************************************************
Unexpected Signal : 10 occurred at PC=0xfe0d72f0
Function name=JVM_ArrayCopy
Library=/production/bea/j2re1_3_1_04/lib/sparc/server/libjvm.so
*****************
Local Time = Thu May  4 17:16:42 2006
Elapsed Time = 4577
#
# HotSpot Virtual Machine Error : 10
# Error ID : 4F530E43505002BD 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.3.1_04-b02 mixed mode)
#


Submitted On 04-APR-2008
vivek.mahajan
i m also facing such kind of  error showing me error message as
# HotSpot Virtual Machine Error : EXCEPTION_ACESS_VIOLATION
# Error ID : 4F530E43505002D5
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.4.0_01-b03 mixed mode)



PLEASE NOTE: JDK6 is formerly known as Project Mustang