Signal 11 is a segmentation error (I think), which would be caused by
attempting to access an invalid memory address.  This in turn might be
caused by attempting (in native code) to construct an instance of a Java
class that the class loader can't find, something like:

jclass clz = env->FindClass("example/somewhere/something/ClassIWant");
jmethodID mid = env->GetMethodID(clz, "<init>", "()V");

If the FindClass call hasn't been successful, the second line will crash the
JVM.  If your project uses native code, make sure that Tomcat's class loader
can find any Java classes that you want to use.  If it doesn't, does the JVM
error trace point a finger at any native library?

Chris Williams.

P.S. You might want to try upgrading Red Hat 7.3.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to