1752866 Members
3625 Online
108791 Solutions
New Discussion юеВ

Java HotSpot

 
Marc Ahrendt
Super Advisor

Java HotSpot

has anyone ever seen an error similar to what we are getting in our stdout for java (1.3.0.01) on an L2000 (HP-UX 11.00)

# Java version:
# HotSpot VM (mixed mode)
#
# HotSpot Virtual Machine Error, Unexpected Signal 11
#
# occurred at pc=c58c39b4
# Error ID: /CLO/Components/JAVA_HOTSPOT/Src/build/hp-ux/../../src/os/hp-ux/vm/os_hpux.cpp, 2998
#

there was a similar question in the forums
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xa2238ffa98a2d5118ff10090279cd0f9,00.html

...but our java guy did not find it helpful
(also is signal 11 the same signal that "kill" would/could use)
hola
3 REPLIES 3
Tim Jones_3
New Member

Re: Java HotSpot

I recieved the exact same error using jvm 1.2.2.05. Did you ever get any resolution on this issue? I know that these older JVMs had stability issues, but 1.3.1.01?
A. Clay Stephenson
Acclaimed Contributor

Re: Java HotSpot

Hi:

Signal 11 is SIGSEGV (Segmentation Violation) and could certainly be used by kill. I assume that the process detected and EFAULT errno and threw this signal.

kill -11 is actually the better way to do what most people do with kill -9. The difference is that kill -11 does cleanup while kill -9 does not and is almost as sure a kill.

Clay
If it ain't broke, I can fix that.
Marc Ahrendt
Super Advisor

Re: Java HotSpot

tim: i think when i am allowed, i will upgrade to 1.3.1

clay: thx on the signal 11 info
hola