hi Dave, thx for your response!

i build again xalan-c and xerces-c from sources generating libxalanc.so and
libxercesc.so, copied into /usr/lib and linked in my c project, and it
worked! well, almost! ;)

this is implementation code:

JNIEXPORT void JNICALL
Java_es_yell_frontlite_mvc_View_RenderizarVistaXalanC_renderView
  (JNIEnv *env, jobject obj, jstring xml, jstring xsl) {

    XALAN_USING_STD(cout)
    XALAN_USING_STD(endl)
    cout<<"what the fuck!, joder, vamos avanzando!!!!!"<<endl;

    jboolean blnIsCopy;

    XALAN_USING_STD(cerr)
    //XALAN_USING_STD(cout)
    //XALAN_USING_STD(endl)
    XALAN_USING_STD(istrstream)
    XALAN_USING_STD(ofstream)
    XALAN_USING_STD(ostrstream)
    
    #if defined(XALAN_STRICT_ANSI_HEADERS)
        using std::strlen;
    #endif
    
    XALAN_USING_XERCES(XMLPlatformUtils)

    XALAN_USING_XALAN(XalanTransformer)

    // Call the static initializer for Xerces.

    XMLPlatformUtils::Initialize();

    // Initialize Xalan.
    XalanTransformer::initialize();

    // Create a XalanTransformer.
    XalanTransformer theXalanTransformer;
    
    const char* const  theInputXmlDocument
=env->GetStringUTFChars(xml,&blnIsCopy);
    
    //printf("datos en bruto\n: %s\n",theInputXmlDocument);

    const char* const theInputXslDocument =
env->GetStringUTFChars(xsl,&blnIsCopy);
    
    //printf("plantilla xsl\n: %s\n",theInputXslDocument);
    // Our input streams...
    istrstream  theXMLStream(theInputXmlDocument,
strlen(theInputXmlDocument));
    
    
    istrstream  theXSLStream(theInputXslDocument,
strlen(theInputXslDocument));
    
    
    
    XALAN_USING_XALAN(XalanDOMString)
    XALAN_USING_XALAN(XSLTInputSource)

    XSLTInputSource             inputSource(&theXSLStream);

    inputSource.setSystemId(XalanDOMString("foo").c_str());
    
    
     // Do the transform.
    int theResult = theXalanTransformer.transform(&theXMLStream,
inputSource, cout);
    
    
    if(theResult != 0)
    {
        cerr << "StreamTransform Error: \n" <<
theXalanTransformer.getLastError()
        << endl
        << endl;
    }
    
    
    // Terminate Xalan...
    XalanTransformer::terminate();
if i put this two terminate sentences together, it will crash with jvm
panic! 
if i put only one, everything ok! would you explain me whats happening?

// Terminate Xerces...
    XMLPlatformUtils::Terminate();
    

    // Clean up the ICU, if it's integrated...
    //XalanTransformer::ICUCleanUp();
    cout<<"hasta aqui bien, seguimos!!"<<endl;
}


#
# An unexpected error has been detected by Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0xb7f6c162, pid=8475, tid=3043253136
#
# Java VM: Java HotSpot(TM) Client VM (10.0-b19 mixed mode, sharing
linux-x86)
# Problematic frame:
# C  [libc.so.6+0x13e162]
#
# An error report file with more information is saved as:
# /usr/local/apache-tomcat-6.0.14/bin/hs_err_pid8475.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

this is log output 

#
# An unexpected error has been detected by Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0xb7f6c162, pid=8475, tid=3043253136
#
# Java VM: Java HotSpot(TM) Client VM (10.0-b19 mixed mode, sharing
linux-x86)
# Problematic frame:
# C  [libc.so.6+0x13e162]
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x08478800):  JavaThread "http-8084-1" daemon
[_thread_in_native, id=8493, stack(0xb55f5000,0xb5646000)]

siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR),
si_addr=0x00000000

Registers:
EAX=0x00000000, EBX=0xb4ec0b20, ECX=0x08362020, EDX=0x08140b60
ESP=0xb564464c, EBP=0xb5644668, ESI=0xb5644928, EDI=0x08232907
EIP=0xb7f6c162, CR2=0x00000000, EFLAGS=0x00210282

Top of Stack: (sp=0xb564464c)
0xb564464c:   b4cd3d83 08140b60 00000000 b5644678
0xb564465c:   b4cd3d5a b5318314 906c1834 b5644678
0xb564466c:   b5316825 b5644928 b5318314 b5644998
0xb564467c:   b53160a8 b5644928 b4a82790 b5644928
0xb564468c:   b56448f0 00000000 0844bd60 00000004
0xb564469c:   ffffffff 0822adc0 081372a8 0642c368
0xb56446ac:   00000000 b564478c 0620ba2f b5300e58
0xb56446bc:   08140b60 08140b60 00000000 00000000 

Instructions: (pc=0xb7f6c162)
0xb7f6c152:   49 08 98 39 27 08 08 aa 1e 08 b0 37 27 08 88 f7
0xb7f6c162:   13 08 78 bd 2a 08 c8 8e 27 08 48 bb 2a 08 a8 88 

Stack: [0xb55f5000,0xb5646000],  sp=0xb564464c,  free space=317k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native
code)
C  [libc.so.6+0x13e162]
C  [LibXalanC_Engine.so+0x2825]  _ZN11xalanc_1_1015XSLTInputSourceD1Ev+0x2b
C  [LibXalanC_Engine.so+0x20a8] 
Java_es_yell_frontlite_mvc_View_RenderizarVistaXalanC_renderView+0x342
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::StubRoutines (1)
V  [libjvm.so+0x21c40d]
V  [libjvm.so+0x310378]
V  [libjvm.so+0x21bd20]
V  [libjvm.so+0x21bdad]
V  [libjvm.so+0x28bfb5]
V  [libjvm.so+0x391bbd]
V  [libjvm.so+0x311029]
C  [libpthread.so.0+0x531b]

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::Interpreter
v  ~BufferBlob::StubRoutines (1)

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x0830dc00 JavaThread "http-8084-4" daemon [_thread_blocked, id=8501,
stack(0xb536d000,0xb53be000)]
  0x08066000 JavaThread "http-8084-3" daemon [_thread_blocked, id=8500,
stack(0xb53be000,0xb540f000)]
  0x08475400 JavaThread "TP-Monitor" daemon [_thread_blocked, id=8499,
stack(0xb540f000,0xb5460000)]
  0x08474000 JavaThread "TP-Processor4" daemon [_thread_in_native, id=8498,
stack(0xb5460000,0xb54b1000)]
  0x08472c00 JavaThread "TP-Processor3" daemon [_thread_blocked, id=8497,
stack(0xb54b1000,0xb5502000)]
  0x0845ec00 JavaThread "TP-Processor2" daemon [_thread_blocked, id=8496,
stack(0xb5502000,0xb5553000)]
  0x0846f000 JavaThread "TP-Processor1" daemon [_thread_blocked, id=8495,
stack(0xb5553000,0xb55a4000)]
  0x08479400 JavaThread "http-8084-2" daemon [_thread_in_native, id=8494,
stack(0xb55a4000,0xb55f5000)]
=>0x08478800 JavaThread "http-8084-1" daemon [_thread_in_native, id=8493,
stack(0xb55f5000,0xb5646000)]
  0x0844b400 JavaThread "http-8084-Acceptor-0" daemon [_thread_in_native,
id=8492, stack(0xb5646000,0xb5697000)]
  0x08455000 JavaThread
"ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon
[_thread_blocked, id=8491, stack(0xb5697000,0xb56e8000)]
  0x08097000 JavaThread "Low Memory Detector" daemon [_thread_blocked,
id=8489, stack(0xb598f000,0xb59e0000)]
  0x0808c400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8488,
stack(0xb59e0000,0xb5a61000)]
  0x0808b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked,
id=8487, stack(0xb5a61000,0xb5ab2000)]
  0x08082000 JavaThread "Finalizer" daemon [_thread_blocked, id=8486,
stack(0xb5af4000,0xb5b45000)]
  0x08081000 JavaThread "Reference Handler" daemon [_thread_blocked,
id=8485, stack(0xb5b45000,0xb5b96000)]
  0x08059000 JavaThread "main" [_thread_in_native, id=8483,
stack(0xb7db5000,0xb7e06000)]

Other Threads:
  0x0807f800 VMThread [stack: 0xb5b96000,0xb5c17000] [id=8484]
  0x08098800 WatcherThread [stack: 0xb590e000,0xb598f000] [id=8490]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 def new generation   total 960K, used 585K [0x8c0c0000, 0x8c1c0000,
0x8c5a0000)
  eden space 896K,  58% used [0x8c0c0000, 0x8c142738, 0x8c1a0000)
  from space 64K, 100% used [0x8c1b0000, 0x8c1c0000, 0x8c1c0000)
  to   space 64K,   0% used [0x8c1a0000, 0x8c1a0000, 0x8c1b0000)
 tenured generation   total 5448K, used 3609K [0x8c5a0000, 0x8caf2000,
0x900c0000)
   the space 5448K,  66% used [0x8c5a0000, 0x8c926668, 0x8c926800,
0x8caf2000)
 compacting perm gen  total 12288K, used 6271K [0x900c0000, 0x90cc0000,
0x940c0000)
   the space 12288K,  51% used [0x900c0000, 0x906dffd0, 0x906e0000,
0x90cc0000)
    ro space 8192K,  73% used [0x940c0000, 0x946a3310, 0x946a3400,
0x948c0000)
    rw space 12288K,  58% used [0x948c0000, 0x94fb8570, 0x94fb8600,
0x954c0000)

Dynamic libraries:
06000000-0641a000 r-xp 00000000 08:02 195698    
/usr/java/jdk1.6.0_04/jre/lib/i386/client/libjvm.so
0641a000-06434000 rwxp 0041a000 08:02 195698    
/usr/java/jdk1.6.0_04/jre/lib/i386/client/libjvm.so
06434000-06854000 rwxp 06434000 00:00 0 
08048000-08052000 r-xp 00000000 08:02 554814    
/usr/java/jdk1.6.0_04/bin/java
08052000-08053000 rwxp 00009000 08:02 554814    
/usr/java/jdk1.6.0_04/bin/java
08053000-084b8000 rwxp 08053000 00:00 0          [heap]
8c0c0000-8c1c0000 rwxp 8c0c0000 00:00 0 
8c1c0000-8c5a0000 rwxp 8c1c0000 00:00 0 
8c5a0000-8caf2000 rwxp 8c5a0000 00:00 0 
8caf2000-900c0000 rwxp 8caf2000 00:00 0 
900c0000-90cc0000 rwxp 900c0000 00:00 0 
90cc0000-940c0000 rwxp 90cc0000 00:00 0 
940c0000-946a4000 r-xs 00001000 08:02 198292    
/usr/java/jdk1.6.0_04/jre/lib/i386/client/classes.jsa
946a4000-948c0000 rwxp 946a4000 00:00 0 
948c0000-94fb9000 rwxp 005e5000 08:02 198292    
/usr/java/jdk1.6.0_04/jre/lib/i386/client/classes.jsa
94fb9000-954c0000 rwxp 94fb9000 00:00 0 
954c0000-95599000 rwxp 00cde000 08:02 198292    
/usr/java/jdk1.6.0_04/jre/lib/i386/client/classes.jsa
95599000-958c0000 rwxp 95599000 00:00 0 
958c0000-958c4000 r-xs 00db7000 08:02 198292    
/usr/java/jdk1.6.0_04/jre/lib/i386/client/classes.jsa
958c4000-95cc0000 rwxp 958c4000 00:00 0 
b49d0000-b49df000 r-xp 00000000 08:02 81658     
/lib/tls/i686/cmov/libresolv-2.5.so
b49df000-b49e1000 rwxp 0000f000 08:02 81658     
/lib/tls/i686/cmov/libresolv-2.5.so
b49e1000-b49e3000 rwxp b49e1000 00:00 0 
b49e3000-b49e7000 r-xp 00000000 08:02 81651     
/lib/tls/i686/cmov/libnss_dns-2.5.so
b49e7000-b49e9000 rwxp 00003000 08:02 81651     
/lib/tls/i686/cmov/libnss_dns-2.5.so
b49e9000-b49ef000 r-xp 00000000 08:02 217526     /usr/lib/libxalanMsg.so.110
b49ef000-b49f0000 rwxp 00006000 08:02 217526     /usr/lib/libxalanMsg.so.110
b49f0000-b49fb000 r-xp 00000000 08:02 65063      /lib/libgcc_s.so.1
b49fb000-b49fc000 rwxp 0000a000 08:02 65063      /lib/libgcc_s.so.1
b49fc000-b4adb000 r-xp 00000000 08:02 196211     /usr/lib/libstdc++.so.6.0.8
b4adb000-b4ade000 r-xp 000de000 08:02 196211     /usr/lib/libstdc++.so.6.0.8
b4ade000-b4ae0000 rwxp 000e1000 08:02 196211     /usr/lib/libstdc++.so.6.0.8
b4ae0000-b4ae6000 rwxp b4ae0000 00:00 0 
b4ae6000-b4ebf000 r-xp 00000000 08:02 217529     /usr/lib/libxerces-c.so.27
b4ebf000-b4ef1000 rwxp 003d9000 08:02 217529     /usr/lib/libxerces-c.so.27
b4ef1000-b4ef2000 rwxp b4ef1000 00:00 0 
b4ef2000-b52f7000 r-xp 00000000 08:02 217523     /usr/lib/libxalan-c.so.110
b52f7000-b5306000 rwxp 00404000 08:02 217523     /usr/lib/libxalan-c.so.110
b5306000-b5307000 rwxp b5306000 00:00 0 
b5314000-b5318000 r-xp 00000000 08:02 113912    
/home/alonso/curro/XalanC_Engine/dist/Debug/GNU-Linux-x86/LibXalanC_Engine.so
b5318000-b5319000 rwxp 00003000 08:02 113912    
/home/alonso/curro/XalanC_Engine/dist/Debug/GNU-Linux-x86/LibXalanC_Engine.so
b5319000-b5320000 r-xs 0010b000 08:02 197142    
/usr/java/jdk1.6.0_04/jre/lib/resources.jar
b5320000-b5339000 r-xs 001b0000 08:02 381963    
/home/alonso/curro/frontlite/build/web/WEB-INF/lib/xsltc.jar
b5339000-b5341000 r-xs 00028000 08:02 381962    
/home/alonso/curro/frontlite/build/web/WEB-INF/lib/xml-apis.jar
b5341000-b5358000 r-xs 00114000 08:02 381899    
/home/alonso/curro/frontlite/build/web/WEB-INF/lib/xercesImpl.jar
b5358000-b536a000 r-xs 0019c000 08:02 381893    
/home/alonso/curro/frontlite/build/web/WEB-INF/lib/xalan.jar
b536a000-b536d000 r-xs 00041000 08:02 381761    
/home/alonso/curro/frontlite/build/web/WEB-INF/lib/serializer.jar
b536d000-b5370000 ---p b536d000 00:00 0 
b5370000-b53be000 rwxp b5370000 00:00 0 
b53be000-b53c1000 ---p b53be000 00:00 0 
b53c1000-b540f000 rwxp b53c1000 00:00 0 
b540f000-b5412000 ---p b540f000 00:00 0 
b5412000-b5460000 rwxp b5412000 00:00 0 
b5460000-b5463000 ---p b5460000 00:00 0 
b5463000-b54b1000 rwxp b5463000 00:00 0 
b54b1000-b54b4000 ---p b54b1000 00:00 0 
b54b4000-b5502000 rwxp b54b4000 00:00 0 
b5502000-b5505000 ---p b5502000 00:00 0 
b5505000-b5553000 rwxp b5505000 00:00 0 
b5553000-b5556000 ---p b5553000 00:00 0 
b5556000-b55a4000 rwxp b5556000 00:00 0 
b55a4000-b55a7000 ---p b55a4000 00:00 0 
b55a7000-b55f5000 rwxp b55a7000 00:00 0 
b55f5000-b55f8000 ---p b55f5000 00:00 0 
b55f8000-b5646000 rwxp b55f8000 00:00 0 
b5646000-b5649000 ---p b5646000 00:00 0 
b5649000-b5697000 rwxp b5649000 00:00 0 
b5697000-b569a000 ---p b5697000 00:00 0 
b569a000-b56e8000 rwxp b569a000 00:00 0 
b56e8000-b56fb000 r-xp 00000000 08:02 196000    
/usr/java/jdk1.6.0_04/jre/lib/i386/libnet.so
b56fb000-b56fc000 rwxp 00013000 08:02 196000    
/usr/java/jdk1.6.0_04/jre/lib/i386/libnet.so
b56fc000-b5700000 r-xs 000ca000 08:02 228188    
/usr/java/jdk1.6.0_04/jre/lib/ext/localedata.jar
b5700000-b5703000 r-xs 00041000 08:02 365331    
/home/alonso/.netbeans/6.0/apache-tomcat-6.0.14_base/nblib/org-netbeans-modules-schema2beans.jar
b5703000-b5705000 r-xs 0002c000 08:02 365330    
/home/alonso/.netbeans/6.0/apache-tomcat-6.0.14_base/nblib/org-netbeans-modules-web-httpmonitor.jar
b5705000-b570c000 r-xs 00074000 08:02 539180    
/usr/local/apache-tomcat-6.0.14/lib/jasper.jar
b570c000-b570f000 r-xs 00011000 08:02 539179    
/usr/local/apache-tomcat-6.0.14/lib/jsp-api.jar
b570f000-b571d000 r-xs 000fc000 08:02 539178    
/usr/local/apache-tomcat-6.0.14/lib/catalina.jar
b571d000-b5720000 r-xs 00016000 08:02 539177    
/usr/local/apache-tomcat-6.0.14/lib/jasper-el.jar
b5720000-b572c000 r-xs 0013b000 08:02 539176    
/usr/local/apache-tomcat-6.0.14/lib/jasper-jdt.jar
b572c000-b572e000 r-xs 00014000 08:02 539175    
/usr/local/apache-tomcat-6.0.14/lib/servlet-api.jar
b572e000-b5731000 r-xs 00027000 08:02 539174    
/usr/local/apache-tomcat-6.0.14/lib/tomcat-dbcp.jar
b5731000-b5734000 r-xs 0001a000 08:02 539173    
/usr/local/apache-tomcat-6.0.14/lib/catalina-ha.jar
b5734000-b5736000 r-xs 0000a000 08:02 539170    
/usr/local/apache-tomcat-6.0.14/lib/catalina-ant.jar
b5736000-b5740000 r-xs 000a5000 08:02 539166    
/usr/local/apache-tomcat-6.0.14/lib/tomcat-coyote.jar
b5740000-b5743000 r-xs 00006000 08:02 539165    
/usr/local/apache-tomcat-6.0.14/lib/tomcat-i18n-fr.jar
b5743000-b5745000 r-xs 00008000 08:02 539164    
/usr/local/apache-tomcat-6.0.14/lib/tomcat-i18n-ja.jar
b5745000-b5747000 r-xs 00007000 08:02 539163    
/usr/local/apache-tomcat-6.0.14/lib/tomcat-i18n-es.jar
b5747000-b574c000 r-xs 00031000 08:02 539158    
/usr/local/apache-tomcat-6.0.14/lib/catalina-tribes.jar
b574c000-b574e000 r-xs 00001000 08:02 539157    
/usr/local/apache-tomcat-6.0.14/lib/annotations-api.jar
b574e000-b5750000 r-xs 00003000 08:02 555192    
/usr/local/apache-tomcat-6.0.14/bin/tomcat-juli.jar
b5750000-b5752000 r-xs 00001000 08:02 555191    
/usr/local/apache-tomcat-6.0.14/bin/commons-daemon.jar
b5752000-b5784000 rwxp b5752000 00:00 0 
b5784000-b590e000 r-xs 02de1000 08:02 538981    
/usr/java/jdk1.6.0_04/jre/lib/rt.jar
b590e000-b590f000 ---p b590e000 00:00 0 
b590f000-b598f000 rwxp b590f000 00:00 0 
b598f000-b5992000 ---p b598f000 00:00 0 
b5992000-b59e0000 rwxp b5992000 00:00 0 
b59e0000-b59e3000 ---p b59e0000 00:00 0 
b59e3000-b5a61000 rwxp b59e3000 00:00 0 
b5a61000-b5a64000 ---p b5a61000 00:00 0 
b5a64000-b5ab2000 rwxp b5a64000 00:00 0 
b5ab2000-b5ab9000 r-xs 00000000 08:02 214394    
/usr/lib/gconv/gconv-modules.cache
b5ab9000-b5af4000 r-xp 00000000 08:02 211708    
/usr/lib/locale/es_ES.utf8/LC_CTYPE
b5af4000-b5af7000 ---p b5af4000 00:00 0 
b5af7000-b5b45000 rwxp b5af7000 00:00 0 
b5b45000-b5b48000 ---p b5b45000 00:00 0 
b5b48000-b5b96000 rwxp b5b48000 00:00 0 
b5b96000-b5b97000 ---p b5b96000 00:00 0 
b5b97000-b5c25000 rwxp b5b97000 00:00 0 
b5c25000-b5c3f000 rwxp b5c25000 00:00 0 
b5c3f000-b5c42000 rwxp b5c3f000 00:00 0 
b5c42000-b5c5d000 rwxp b5c42000 00:00 0 
b5c5d000-b5c5e000 rwxp b5c5d000 00:00 0 
b5c5e000-b5c5f000 rwxp b5c5e000 00:00 0 
b5c5f000-b5c63000 rwxp b5c5f000 00:00 0 
b5c63000-b5c7d000 rwxp b5c63000 00:00 0 
b5c7d000-b5c83000 rwxp b5c7d000 00:00 0 
b5c83000-b5c9d000 rwxp b5c83000 00:00 0 
b5c9d000-b5cae000 rwxp b5c9d000 00:00 0 
b5cae000-b5d28000 rwxp b5cae000 00:00 0 
b5d28000-b5e98000 rwxp b5d28000 00:00 0 
b5e98000-b7d28000 rwxp b5e98000 00:00 0 
b7d28000-b7d37000 r-xp 00000000 08:02 195901    
/usr/java/jdk1.6.0_04/jre/lib/i386/libzip.so
b7d37000-b7d39000 rwxp 0000e000 08:02 195901    
/usr/java/jdk1.6.0_04/jre/lib/i386/libzip.so
b7d39000-b7d5c000 r-xp 00000000 08:02 195846    
/usr/java/jdk1.6.0_04/jre/lib/i386/libjava.so
b7d5c000-b7d5e000 rwxp 00023000 08:02 195846    
/usr/java/jdk1.6.0_04/jre/lib/i386/libjava.so
b7d5e000-b7d69000 r-xp 00000000 08:02 195799    
/usr/java/jdk1.6.0_04/jre/lib/i386/libverify.so
b7d69000-b7d6a000 rwxp 0000b000 08:02 195799    
/usr/java/jdk1.6.0_04/jre/lib/i386/libverify.so
b7d6a000-b7d73000 r-xp 00000000 08:02 81652     
/lib/tls/i686/cmov/libnss_files-2.5.so
b7d73000-b7d75000 rwxp 00008000 08:02 81652     
/lib/tls/i686/cmov/libnss_files-2.5.so
b7d75000-b7d7d000 r-xp 00000000 08:02 81654     
/lib/tls/i686/cmov/libnss_nis-2.5.so
b7d7d000-b7d7f000 rwxp 00007000 08:02 81654     
/lib/tls/i686/cmov/libnss_nis-2.5.so
b7d7f000-b7d86000 r-xp 00000000 08:02 81650     
/lib/tls/i686/cmov/libnss_compat-2.5.so
b7d86000-b7d88000 rwxp 00006000 08:02 81650     
/lib/tls/i686/cmov/libnss_compat-2.5.so
b7d88000-b7d9b000 r-xp 00000000 08:02 81649     
/lib/tls/i686/cmov/libnsl-2.5.so
b7d9b000-b7d9d000 rwxp 00012000 08:02 81649     
/lib/tls/i686/cmov/libnsl-2.5.so
b7d9d000-b7da4000 rwxp b7d9d000 00:00 0 
b7da4000-b7dac000 rwxs 00000000 08:02 179378     /tmp/hsperfdata_alonso/8475
b7dac000-b7db3000 r-xp 00000000 08:02 81659     
/lib/tls/i686/cmov/librt-2.5.so
b7db3000-b7db5000 rwxp 00006000 08:02 81659     
/lib/tls/i686/cmov/librt-2.5.so
b7db5000-b7db8000 ---p b7db5000 00:00 0 
b7db8000-b7e06000 rwxp b7db8000 00:00 0 
b7e06000-b7e2b000 r-xp 00000000 08:02 81394     
/lib/tls/i686/cmov/libm-2.5.so
b7e2b000-b7e2d000 rwxp 00024000 08:02 81394     
/lib/tls/i686/cmov/libm-2.5.so
b7e2d000-b7e2e000 rwxp b7e2d000 00:00 0 
b7e2e000-b7f69000 r-xp 00000000 08:02 81390     
/lib/tls/i686/cmov/libc-2.5.so
b7f69000-b7f6a000 r-xp 0013b000 08:02 81390     
/lib/tls/i686/cmov/libc-2.5.so
b7f6a000-b7f6c000 rwxp 0013c000 08:02 81390     
/lib/tls/i686/cmov/libc-2.5.so
b7f6c000-b7f6f000 rwxp b7f6c000 00:00 0 
b7f6f000-b7f71000 r-xp 00000000 08:02 81393     
/lib/tls/i686/cmov/libdl-2.5.so
b7f71000-b7f73000 rwxp 00001000 08:02 81393     
/lib/tls/i686/cmov/libdl-2.5.so
b7f73000-b7f7a000 r-xp 00000000 08:02 195894    
/usr/java/jdk1.6.0_04/jre/lib/i386/jli/libjli.so
b7f7a000-b7f7c000 rwxp 00006000 08:02 195894    
/usr/java/jdk1.6.0_04/jre/lib/i386/jli/libjli.so
b7f7c000-b7f7d000 rwxp b7f7c000 00:00 0 
b7f7d000-b7f90000 r-xp 00000000 08:02 81657     
/lib/tls/i686/cmov/libpthread-2.5.so
b7f90000-b7f92000 rwxp 00013000 08:02 81657     
/lib/tls/i686/cmov/libpthread-2.5.so
b7f92000-b7f95000 rwxp b7f92000 00:00 0 
b7f95000-b7f96000 r-xs 00006000 08:02 539181    
/usr/local/apache-tomcat-6.0.14/lib/el-api.jar
b7f96000-b7f98000 r-xs 00003000 08:02 555193    
/usr/local/apache-tomcat-6.0.14/bin/bootstrap.jar
b7f98000-b7f9e000 r-xp 00000000 08:02 195503    
/usr/java/jdk1.6.0_04/jre/lib/i386/native_threads/libhpi.so
b7f9e000-b7f9f000 rwxp 00006000 08:02 195503    
/usr/java/jdk1.6.0_04/jre/lib/i386/native_threads/libhpi.so
b7f9f000-b7fa0000 rwxp b7f9f000 00:00 0 
b7fa0000-b7fa1000 r-xp b7fa0000 00:00 0 
b7fa1000-b7fa3000 rwxp b7fa1000 00:00 0 
b7fa3000-b7fbc000 r-xp 00000000 08:02 66154      /lib/ld-2.5.so
b7fbc000-b7fbe000 rwxp 00019000 08:02 66154      /lib/ld-2.5.so
bfa93000-bfaa8000 rwxp bfa93000 00:00 0          [stack]
ffffe000-fffff000 r-xp 00000000 00:00 0          [vdso]

VM Arguments:
jvm_args: -Dhttp.nonProxyHosts=localhost|127.0.0.1|alonso-laptop
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
-Djava.util.logging.config.file=/home/alonso/.netbeans/6.0/apache-tomcat-6.0.14_base/conf/logging.properties
-Djava.endorsed.dirs=/usr/local/apache-tomcat-6.0.14/endorsed
-Dcatalina.base=/home/alonso/.netbeans/6.0/apache-tomcat-6.0.14_base
-Dcatalina.home=/usr/local/apache-tomcat-6.0.14
-Djava.io.tmpdir=/home/alonso/.netbeans/6.0/apache-tomcat-6.0.14_base/temp 
java_command: org.apache.catalina.startup.Bootstrap start
Launcher Type: SUN_STANDARD

Environment Variables:
JAVA_HOME=/usr/java/jdk1.6.0_04
JRE_HOME=/usr/java/jdk1.6.0_04
PATH=/usr/java/jdk1.6.0_04/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games
USERNAME=alonso
LD_LIBRARY_PATH=/usr/java/jdk1.6.0_04/jre/lib/i386/client:/usr/java/jdk1.6.0_04/jre/lib/i386:/usr/java/jdk1.6.0_04/jre/../lib/i386
SHELL=/bin/bash
DISPLAY=:0.0

Signal Handlers:
SIGSEGV: [libjvm.so+0x3be340], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGBUS: [libjvm.so+0x3be340], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGFPE: [libjvm.so+0x30f440], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGPIPE: [libjvm.so+0x30f440], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGXFSZ: [libjvm.so+0x30f440], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGILL: [libjvm.so+0x30f440], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGUSR2: [libjvm.so+0x311480], sa_mask[0]=0x00000004, sa_flags=0x10000004
SIGHUP: [libjvm.so+0x311220], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGTERM: [libjvm.so+0x311220], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGQUIT: [libjvm.so+0x311220], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004


---------------  S Y S T E M  ---------------

OS:4.0

uname:Linux 2.6.20-16-386 #2 Tue Dec 18 05:41:44 UTC 2007 i686
libc:glibc 2.5 NPTL 2.5 
rlimit: STACK 8192k, CORE 0k, NPROC infinity, NOFILE 1024, AS infinity
load average:2.46 2.53 2.15

CPU:total 1 (2 cores per cpu, 1 threads per core) family 6 model 15 stepping
2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3

Memory: 4k page, physical 2067096k(798640k free), swap 0k(0k free)

vm_info: Java HotSpot(TM) Client VM (10.0-b19) for linux-x86 JRE
(1.6.0_04-b12), built on Dec 14 2007 01:09:47 by "java_re" with gcc 3.2.1-7a
(J2SE release)

time: Fri Feb  1 12:07:38 2008
elapsed time: 10 seconds


-- 
View this message in context: 
http://www.nabble.com/problems-loading-library-tp15203564p15224706.html
Sent from the Xalan - C - Users mailing list archive at Nabble.com.

Reply via email to