<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic JVM Error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577777#M924302</link>
    <description>Hi all,&lt;BR /&gt;I'm developing a Java application on my HP/UX 11, which uses some native libraries (via JNI). At a certain point I  experiencing a problem  in one of these native libraries. The JVM (version is "JavaVM-1.3.0.01") goes down writing a core, with this error message:&lt;BR /&gt;&lt;BR /&gt;#Java version:&lt;BR /&gt;# HotSpot VM (mixed mode)&lt;BR /&gt;# HotSpot Virtual Machine Error, Unexpected Signal 11&lt;BR /&gt;# occurred at pc=c1f2e648&lt;BR /&gt;# Error ID:  /CLO/Components/JAVA_HOTSPOT/Src/build/hp-ux/../../src/os/hp-ux/vm/os_hp-ux.cpp, 2998&lt;BR /&gt;&lt;BR /&gt;Any idea/help?&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;*piero</description>
    <pubDate>Tue, 11 Sep 2001 10:20:00 GMT</pubDate>
    <dc:creator>pietro marella</dc:creator>
    <dc:date>2001-09-11T10:20:00Z</dc:date>
    <item>
      <title>JVM Error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577777#M924302</link>
      <description>Hi all,&lt;BR /&gt;I'm developing a Java application on my HP/UX 11, which uses some native libraries (via JNI). At a certain point I  experiencing a problem  in one of these native libraries. The JVM (version is "JavaVM-1.3.0.01") goes down writing a core, with this error message:&lt;BR /&gt;&lt;BR /&gt;#Java version:&lt;BR /&gt;# HotSpot VM (mixed mode)&lt;BR /&gt;# HotSpot Virtual Machine Error, Unexpected Signal 11&lt;BR /&gt;# occurred at pc=c1f2e648&lt;BR /&gt;# Error ID:  /CLO/Components/JAVA_HOTSPOT/Src/build/hp-ux/../../src/os/hp-ux/vm/os_hp-ux.cpp, 2998&lt;BR /&gt;&lt;BR /&gt;Any idea/help?&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;*piero</description>
      <pubDate>Tue, 11 Sep 2001 10:20:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577777#M924302</guid>
      <dc:creator>pietro marella</dc:creator>
      <dc:date>2001-09-11T10:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: JVM Error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577778#M924303</link>
      <description>Hello Pietro,&lt;BR /&gt;&lt;BR /&gt;have you tried getting more information at&lt;BR /&gt;&lt;A href="http://www.hp.com/go/java" target="_blank"&gt;http://www.hp.com/go/java&lt;/A&gt; &lt;BR /&gt;and &lt;BR /&gt;&lt;A href="http://devresource.hp.com/devresource/Topics/Java/Java.html" target="_blank"&gt;http://devresource.hp.com/devresource/Topics/Java/Java.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Wodisch</description>
      <pubDate>Tue, 11 Sep 2001 16:24:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577778#M924303</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2001-09-11T16:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: JVM Error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577779#M924304</link>
      <description>I have seen similar problems on Solaris and Linux (Redhat 6.2) when using the 1.3.x JDK. &lt;BR /&gt;&lt;BR /&gt;There has been a change in the JVM which breaks support for C++ exception handling. If your external libraries, called through JNI, are written in C++, and use exceptions, RTTI, or other advanced languages features, all bets are off. &lt;BR /&gt;&lt;BR /&gt;Sun officially says that the Java Language has never been required to support such features in languages called through JNI interfaces, so they do not consider this a bug, and there is no hope of it being fixed. Unless and until the Java Language spec is changed to require support for advanced language features, Sun will not address this problem. &lt;BR /&gt;&lt;BR /&gt;If, however, you are calling libraries that were written in C, then this is not your problem. Java does not handle errors that occur ourside of the JVM, so all it can do is report the cause of the error, indicate that it happened in an external library, and core dump. That does seem to be what you are seeing. &lt;BR /&gt;&lt;BR /&gt;You must find the cause of the error in the external library, and fix it. It may be due to misuse of the library API, or an invalid pointer being passed to the external API. &lt;BR /&gt;&lt;BR /&gt;Normal debugging proceedures should be used to determine the cause of the error. &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;-Carl</description>
      <pubDate>Wed, 12 Sep 2001 18:02:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577779#M924304</guid>
      <dc:creator>Carl Erhorn</dc:creator>
      <dc:date>2001-09-12T18:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: JVM Error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577780#M924305</link>
      <description>pietro, have you solved this?&lt;BR /&gt;&lt;BR /&gt;i posted the exact same problem but have gotten no response&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x612e8ffa98a2d5118ff10090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x612e8ffa98a2d5118ff10090279cd0f9,00.html&lt;/A&gt;</description>
      <pubDate>Wed, 19 Sep 2001 16:11:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/jvm-error/m-p/2577780#M924305</guid>
      <dc:creator>Marc Ahrendt</dc:creator>
      <dc:date>2001-09-19T16:11:29Z</dc:date>
    </item>
  </channel>
</rss>

