| Author |
JVM Problem
|
kaushik Raman
Greenhorn
Joined: Jun 25, 2004
Posts: 3
|
|
Hi, I am getting the following problem at runtime,i am using solaris 5.8 ,weblogic 6 and jdk 1.3.1 version for running the J2EE application. unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0xff2422b0 Function name=realloc Library=/usr/lib/libc.so.1 Current Java thread: at com.edocs.core.Formatter.composeHtmlDocument2(Native Method) at com.edocs.services.merger.HtmlMerger$1.run(HtmlMerger.java:325) at java.lang.Thread.run(Thread.java:484) 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-60/lib/libc_psr.so.1 0xfe000000 /usr/j2sdk1_3_1_01/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/j2sdk1_3_1_01/jre/lib/sparc/native_threads/libhpi.so 0xff050000 /usr/j2sdk1_3_1_01/jre/lib/sparc/libverify.so 0xfe7c0000 /usr/j2sdk1_3_1_01/jre/lib/sparc/libjava.so 0xff020000 /usr/j2sdk1_3_1_01/jre/lib/sparc/libzip.so 0xfe560000 /usr/lib/locale/en_US/en_US.so.2 0xfdf90000 /usr/j2sdk1_3_1_01/jre/lib/sparc/libnet.so 0xfdee0000 /usr/lib/nss_files.so.1 0xfdeb0000 /apps/weblogic/lib/solaris/libmuxer.so 0xfa840000 /usr/j2sdk1_3_1_01/jre/lib/sparc/libioser12.so 0xeab80000 /usr/local/EDCSbd/lib/SunOS_5.8/libFormatter.so 0xeaa80000 /usr/local/EDCSbd/lib/SunOS_5.8/libxerces-c1_2.so 0xfa810000 /usr/lib/libpthread.so.1 0xee7e0000 /usr/lib/libgen.so.1
|
 |
Ilja Preuss
author
Sheriff
Joined: Jul 11, 2001
Posts: 14112
|
|
|
Doesn't look like a performance problem - moving to Java in General (intermediate)...
|
The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become. Your integrity is your destiny - it is the light that guides your way. - Heraclitus
|
 |
Michael Tiffany
Greenhorn
Joined: Jun 24, 2004
Posts: 3
|
|
Hi the realloc funtion changes the size of an allocated memory block: so it may be that your thread/application is bumping its head against the ceiling of heap memory allocated to the JVM by the OS. You could always try specifying the maximum JVM heap size with the -Xmx flag and see what happens. Hope that helps
|
 |
 |
|
|
subject: JVM Problem
|
|
|