vidhyasagar wrote:
> hi, When I Restart TOMCAT ..I get a JIT error (not very often..).. Apache
> Tomcat/4.0-dev
> A nonfatal internal JIT (3.00.078(x)) error 'Relocation error: NULL relocation
> t
> arget' has occurred in :
> 'org/apache/crimson/parser/Parser2.maybeComment (Z)Z': Interpreting method.
> what May be the possible reason, Kris.VidhyaSagar
This is an issue for the JDK you are running under when using the JAXP parser in
"crimson.jar". It is not Tomcat specific -- as the error message tells you, it
is a problem in the just-in-time compiler (JIT) of the JVM.
The other reality is that this message is a warning only -- it only means that
this particular method will not benefit from the compilation to native code that
a JIT might do.
Craig McClanahan