• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

JVM Problem

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Doesn't look like a performance problem - moving to Java in General (intermediate)...
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Doe, a deer, a female deer. Ray, a pockeful of sun. Me, a name, I call my tiny ad ...
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic