Random JVM crashes during serialization

After implementing Java serialization (JDK1.4.0-b92/Win2KPro/SP4) on fairly complex objects, I am getting frequent JVM crashes. These occur randomly (when serializing, when deserializing, during unrelated GUI operations after deserializing, etc.) and are not reproducible. Entries in the DrWatson error log (see below) appear to tag the function JVM_FindSignal as the culprit, but this doesn't get me any closer to a solution.
Any help is greatly appreciated!
State Dump for Thread Id 0x524
eax=02dcbfc8 ebx=6d42b0e0 ecx=00000008 edx=6d3f99e8 esi=06a101c0 edi=008da2d0
eip=6d386d0c esp=0acefccc ebp=0acefd04 iopl=0 nv up ei pl nz na pe nc
cs=001b ss=0023 ds=0023 es=0023 fs=0038 gs=0000 efl=00000202
function: <nosymbols>
6d386cf1 a100b1426d ds:6d42b100=00909178
mov eax,[gHotSpotVMLongConstantEntryValueOffset+0x10f68 (6d42b100)]
6d386cf6 833800 cmp dword ptr [eax],0x0 ds:02dcbfc8=00000003
6d386cf9 7418 jz JVM_FindSignal+0x21309 (6d396c13)
6d386cfb ff08 dec dword ptr [eax] ds:02dcbfc8=00000003
6d386cfd 8b08 mov ecx,[eax] ds:02dcbfc8=00000003
6d386cff 8b4008 mov eax,[eax+0x8] ds:03855eae=00000000
6d386d02 8b0488 mov eax,[eax+ecx*4] ds:00000008=????????
6d386d05 50 push eax
6d386d06 8b4804 mov ecx,[eax+0x4] ds:03855eae=00000000
6d386d09 83c108 add ecx,0x8
FAULT ->6d386d0c 8b11 mov edx,[ecx] ds:00000008=????????
6d386d0e ff5248 call dword ptr [edx+0x48] ds:6de838ce=????????
6d386d11 ebde jmp JVM_FindSignal+0x1d7e7 (6d3930f1)
6d386d13 c3 ret
6d386d14 e900000000 jmp JVM_FindSignal+0x1140f (6d386d19)
6d386d19 c705d8b0426d4ca83f6d ds:6d42b0d8=6d3fa84c
mov dword ptr [gHotSpotVMLongConstantEntryValueOffset+0x10f40 (6d42b0d8)],0x6d3fa84c
6d386d23 c3 ret
6d386d24 a110b1426d ds:6d42b110=00001061
mov eax,[gHotSpotVMLongConstantEntryValueOffset+0x10f78 (6d42b110)]
6d386d29 3b0514b1426d ds:6d42b114=0000e000
cmp eax,[gHotSpotVMLongConstantEntryValueOffset+0x10f7c (6d42b114)]
6d386d2f 731d jnb JVM_FindSignal+0x19f44 (6d38f84e)
6d386d31 8b0d18b1426d ds:6d42b118=02e80000
mov ecx,[gHotSpotVMLongConstantEntryValueOffset+0x10f80 (6d42b118)]
6d386d37 8d0cc1 lea ecx,[ecx+eax*8] ds:02dcbfc8=00000003
----> Stack Back Trace <----
FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name
0ACEFD04 6D386F8B 00000001 00000000 00000001 00000002 !JVM_FindSignal
0ACEFD58 6D3869E9 00000001 0ACEFDAC 00000000 008DA2D0 !JVM_FindSignal
0ACEFDB0 6D34DF0D 00000001 00000000 6D349257 00000000 !JVM_FindSignal
0ACEFE70 6D340A9E 00000000 00000000 009774E0 00000000 !JVM_CompilerCommand
0ACEFEA8 6D349369 0000223C 00000000 00000000 17F1A534 !<nosymbols>
0ACEFEF0 6D3BAE55 00000000 00735630 00909158 00909170 !<nosymbols>
0ACEFF10 6D3BAFBA 17F1A510 00735728 009774E0 00909A48 !JVM_RegisterUnsafeMethods
0ACEFF64 6D3BAD86 6D33DDB9 009774E0 6D38FECB 00909A48 !JVM_RegisterUnsafeMethods
0ACEFF7C 780085BC 009774E0 6D33DDB9 00735A68 00909A48 !JVM_RegisterUnsafeMethods
0ACEFFB4 7C4E987C 00909A48 6D33DDB9 00735A68 00909A48 !endthreadex
0ACEFFEC 00000000 00000000 00000000 00000000 00000000 kernel32!SetThreadExecutionState

I appear to have the exact same problem with the same JDK, however it only occurs at a customer site. I haven't been able to reproduce the problem on a machine I can fool around with yet.
The call stack I get is identical to the one you posted. My application is also using serialization so that could indeed be a factor. My application is a batch process without any user interface.
If you find a solution please let me know. At the moment my problem has only occurred on multi-processor machines (one had 2, the other 4 processors), so this may also be a factor.
Can you tell me how many processors you are using and if your application uses threading? This may help me narrow things down a bit.

Similar Messages

  • JVM crash during frequent reading

    In my DB XML application I have the following method:
    public List<String> getDocumentNamesList() throws XmlException {
    List<String> names = new ArrayList<String>();
    String query = "collection('" + CONTAINER_NAME + "')";
    log.debug("XQuery: " + query);
    XmlQueryContext localContext = null;
    XmlQueryExpression qe = null;
    XmlResults results = null;
    XmlTransaction txn = null;
    try {
    localContext = xmlManager.createQueryContext();
    txn = xmlManager.createTransaction();
    qe = xmlManager.prepare(txn, query, localContext);
    results = qe.execute(txn, localContext, documentConfig);
    while(results.hasNext()) {
    names.add(results.next().asDocument().getName());
    txn.commit();
    return names;
    } catch (XmlException e) {
    //exception handling goes here
    } finally {
    if(results != null) results.delete();
    My environment conf is:
    EnvironmentConfig envConf = new EnvironmentConfig();
    envConf.setAllowCreate(true); // If the environment does not
    // exits, create it.
    envConf.setInitializeCache(true); // Turn on the shared memory
    // region.
    envConf.setInitializeLocking(true); // Turn on the locking subsystem.
    envConf.setInitializeLogging(true); // Turn on the logging subsystem.
    envConf.setTransactional(true);
    envConf.setErrorStream(System.out);
    envConf.setRegister(true);
    envConf.setRunRecovery(true);
    log.debug("Opening DB environment at " + envHome.getAbsolutePath());
    env = new Environment(envHome, envConf);
    I'm trying to use Apache Jmeter to simulate a heavy load on my application. My testplan just simulating 5 threads at the same time, each of them executes the above method. When a thread finishes its job, a new thread is launched. After 2-4 minutes of work, the JVM crashes. It crashes on invoking internal XmlResults.hasNext() method.
    I tried DB XML 2.4.13 and 2.4.16 under Windows XP SP3. Also I tried to make the method and container without txn support. Still the same.
    Are there any common pitfalls that I might encounter? Did I provide enough information?
    Am I right that ideally native libraries shouldn't crash in any case, but rather throw appropriate exceptions?
    UPD: there is more specific error which was printed to the console:
    assert failure: ..\..\db-4.6.21\env\env_method.c/607: "f == 0"
    Any pointers are highly appreciated!
    Vyacheslav
    Edited by: detonator413 on Dec 17, 2008 7:11 AM
    Edited by: detonator413 on Dec 17, 2008 8:49 AM

    George,
    actually I delete results objects in the finally clause. But I found one thing which is left from the working project when I process possible deadlocks. It's an infinite while loop. However I rewrote getDocumentNamesList method, but unfortunately the problem persists. Note that the main thread waits until all other threads finish their work, thus the environment is closed when all processing is done.
    Here is a slightly modified method:
        public  List<String> getDocumentNamesList() throws XmlException {
            List<String> returnList = new ArrayList<String>();
            StringBuilder queryBuilder = new StringBuilder("collection('xml_content.dbxml')");
            String metaKey = "prx:revnum";
            String queryPart = "[dbxml:metadata('" + metaKey + "')='-1']";
            queryBuilder.append(queryPart);
            XmlQueryContext localContext = null;
            XmlQueryExpression qe = null;
            XmlResults results;
            XmlTransaction txn;
            try {
                localContext = manager.createQueryContext();
                localContext.setNamespace("prx", "http://tntbase.mathweb.org/ns");
                txn = manager.createTransaction();
                qe = manager.prepare(txn, queryBuilder.toString(), localContext);
                results = qe.execute(txn, localContext, documentConfig);
                while(results.hasNext()) {
                    XmlDocument doc = results.next().asDocument();
                    returnList.add(getWholePathFromDoc(doc));
                results.delete();
                txn.commit();
            } catch (XmlException e) {
                e.printStackTrace();
            } finally {
                if(qe !=null ) {
                    qe.delete();
                if(localContext != null) {
                    localContext.delete();
            return returnList;
    [\code]
    btw, why is code formatting not working?
    Thanks for your help,
    Vyacheslav
    Edited by: detonator413 on Jan 28, 2009 8:19 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • JVM Crash When Using JNI and COM

    I'm trying to call a DLL compiled from VB6 source code that I do not have access to. The VB6 code simply retrieves data from a DB2 database using ADO and my client code grabs that data and marshals it to my Java code. I'm attempting to achieve this using JNI and COM (without a third-party bridge). It works 75% of the time, but the other 25% of the time, the JVM crashes with the usual Hotspot crash log containing an access violation exception. However, I don't know what in my C++ code (VC++ 8) could be causing this except for passing a "wild" pointer to the code lying underneath the COM object interface. If that is the case, I don't know how I am doing that.
    The Java code that is calling my native method is running on Tomcat 5.5.25 and just to be safe, I am not allowing multiple threads to concurrently call the method in my JNI DLL (though I realize that this will kill performance). Once I can get past this problem, I'll do the COM interfacing on a worker thread in my native code so I don't screw up CoInitialize and CoUninitialize calls in the case the same thread is concurrently executing multiple calls to my native code.
    I've noticed that in most cases, the JVM crashes during my call to the pClsAccount->OpenConnection method. However, my DLL isn't what is listed on the top of the call stack, which is why I suspect the passing of a wild pointer, though I'm just taking a guess at that. Does anyone have an idea as to what's going on ?
    JNIEXPORT jobject JNICALL Java_CustomerInfo_nGetCustomerAccountInfo(JNIEnv *env, jobject customerInfo, jstring accountNumber, jstring iniFileName)
    jboolean isCopy;
    // Account info class and instance to be instantiated
    jclass accountInfoCls = NULL;
    jobject accountInfoObj = NULL;
    // The constructor ID of the accountInfoCls
    jmethodID ctorID = NULL;
    // Pointer to the interface for the ClsAccount COM object
    _clsAccount *pClsAccount = NULL;
    HRESULT hr;
    BSTR bstrIniFileName(L"");
    try
    const char *nativeAccountNumber = NULL;
    if (accountNumber != NULL)
    nativeAccountNumber = env->GetStringUTFChars(accountNumber, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "accountNumber passed in was null !");
    return NULL;
    // Initialization
    variantt varConnectionSucceeded = variantt(false);
    variantt varGetAccountInfoSucceeded = variantt(false);
    variantt varAccountNumber = variantt(nativeAccountNumber);
    bstrt bstrLastPaymentDate = bstrt();
    bstrt bstrLastErrorMessage = bstrt();
    bstrt bstrLastErrorNumber = bstrt();
    jlong jTotalDue = NULL;
    jlong jEstablishedDueDay = NULL;
    jlong jLastPaymentAmount = NULL;
    jstring jLastPaymentDate = NULL;
    jstring jLastErrorMessage = NULL;
    jstring jLastErrorNumber = NULL;
    jthrowable jException = NULL;
    const char *chLastPaymentDate = NULL;
    const char *chLastErrorMessage = NULL;
    const char *chLastErrorNumber = NULL;
    long long totalDue;
    long long lastPaymentAmount;
    long establishedDueDateDay;
    //Convert string from Java string to C string to VB string
    const char *nativeIniFileName = NULL;
    if (iniFileName != NULL)
    nativeIniFileName = env->GetStringUTFChars(iniFileName, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "iniFileName passed in was null");
    return NULL;
    bstrIniFileName = comutil::ConvertStringToBSTR(nativeIniFileName);
    CoInitialize(NULL);
    // Create an instance of the COClass with the interface over it
    hr = CoCreateInstance(__uuidof(clsAccount), NULL, CLSCTX_INPROC_SERVER, __uuidof(_clsAccount), (void **)&pClsAccount);
    if (hr == S_OK)
    varConnectionSucceeded.boolVal = pClsAccount->OpenConnection(&bstrIniFileName);
    &#12288;
    if (varConnectionSucceeded.boolVal == -1)
    varGetAccountInfoSucceeded.boolVal = pClsAccount->GetAccountPaymentInformation(&(varAccountNumber.GetVARIANT()));
    env->ReleaseStringUTFChars(accountNumber, nativeAccountNumber);
    // Extract all available account information from the ClsAccount object
    if (varGetAccountInfoSucceeded.boolVal == -1)
    totalDue = pClsAccount->TotalDue.int64;
    establishedDueDateDay = pClsAccount->EstablishedDueDateDay;
    lastPaymentAmount = pClsAccount->LastPaymentAmount.int64;
    bstrLastPaymentDate = pClsAccount->LastPaymentDate;
    chLastPaymentDate = comutil::ConvertBSTRToString(bstrLastPaymentDate.GetBSTR());
    jTotalDue = (jlong)totalDue;
    jEstablishedDueDay = (jlong)establishedDueDateDay;
    jLastPaymentAmount = (jlong)lastPaymentAmount;
    jLastPaymentDate = env->NewStringUTF(chLastPaymentDate);
    delete[] chLastPaymentDate;
    pClsAccount->CloseConnection();
    // Populate error fields if any errors occur
    bstrLastErrorMessage = pClsAccount->LastErrMessage;
    chLastErrorMessage = comutil::ConvertBSTRToString(bstrLastErrorMessage.GetBSTR());
    bstrLastErrorNumber = pClsAccount->LastErrNumber;
    chLastErrorNumber = comutil::ConvertBSTRToString(bstrLastErrorNumber.GetBSTR());
    jLastErrorMessage = env->NewStringUTF(chLastErrorMessage);
    jLastErrorNumber = env->NewStringUTF(chLastErrorNumber);
    delete[] chLastErrorMessage;
    delete[] chLastErrorNumber;
    const char* clsName = "com/nuance/merchantsmutual/businessentities/CustomerAccountInfo";
    // Find the Java class and the ID of its constructor
    accountInfoCls = env->FindClass(clsName);
    ctorID = env->GetMethodID(accountInfoCls, "<init>", "(JJJLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    //Release all resources associated with the ClsAccount instance
    pClsAccount->Release();
    //Instantiate the class with the given parameters
    accountInfoObj = env->NewObject(accountInfoCls, ctorID, jTotalDue, jEstablishedDueDay, jLastPaymentAmount, jLastPaymentDate, jLastErrorMessage, jLastErrorNumber);
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    else if (hr == REGDB_E_CLASSNOTREG)
    cout << "COM class not registered" << endl;
    else if ( hr == CLASS_E_NOAGGREGATION)
    cout << "COM class can't be aggregated" << endl;
    else if (hr == E_NOINTERFACE)
    cout << "No interface for COM class clsAccount" << endl;
    else if (hr == E_POINTER)
    cout << "*ppv pointer was NULL !" << endl;
    else
    cout << "Error occurred while creating COM object. HR is [" << hr << "]" << endl;
    // Free the BSTR because a new one was returned with a call to comutil::ConvertStringToBSTR
    SysFreeString(bstrIniFileName);
    // Release the string when it's no longer needed. MUST call if string won't be used
    // anymore or else a memory leak will occur
    env->ReleaseStringUTFChars(iniFileName, nativeIniFileName);
    CoUninitialize();
    &#12288;
    catch (_com_error &e)
    cout << "Encountered an exception in GetCustomerAccountInfo: Error was " << e.ErrorMessage();
    pClsAccount->Release();
    catch (...)
    pClsAccount->Release();
    return accountInfoObj;
    Edited by: Cthulhu76 on Jan 5, 2010 9:18 AM

    0x49202400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=5340, stack(0x49bf0000,0x49c40000)]
    0x48a7e800 JavaThread "Thread-1" [_thread_in_native, id=5976, stack(0x48f00000,0x48f50000)]
    0x48a0dc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3072, stack(0x48c60000,0x48cb0000)]
    0x48a09000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4988, stack(0x48c10000,0x48c60000)]
    0x48a07c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=3124, stack(0x48bc0000,0x48c10000)]
    0x48a07000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2572, stack(0x48b70000,0x48bc0000)]
    0x489f5c00 JavaThread "Finalizer" daemon [_thread_blocked, id=5752, stack(0x48b20000,0x48b70000)]
    0x489f4c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2596, stack(0x48ad0000,0x48b20000)]
    0x003c6000 JavaThread "main" [_thread_in_native, id=4252, stack(0x00820000,0x00870000)]
    Other Threads:
    0x489f0400 VMThread [stack: 0x48a80000,0x48ad0000] [id=5624]
    0x48a18800 WatcherThread [stack: 0x48cb0000,0x48d00000] [id=1192]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 36288K, used 12762K [0x02940000, 0x050a0000, 0x07800000)
    eden space 32256K, 34% used [0x02940000, 0x0343af58, 0x048c0000)
    from space 4032K, 37% used [0x04cb0000, 0x04e2ba28, 0x050a0000)
    to space 4032K, 0% used [0x048c0000, 0x048c0000, 0x04cb0000)
    tenured generation total 483968K, used 7518K [0x07800000, 0x250a0000, 0x42940000)
    the space 483968K, 1% used [0x07800000, 0x07f57958, 0x07f57a00, 0x250a0000)
    compacting perm gen total 14080K, used 14016K [0x42940000, 0x43700000, 0x46940000)
    the space 14080K, 99% used [0x42940000, 0x436f0320, 0x436f0400, 0x43700000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040f000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\bin\tomcat5.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x76290000 - 0x762ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d7c0000 - 0x6da10000      C:\Program Files\Java\jre1.6.0_07\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x6d270000 - 0x6d278000      C:\Program Files\Java\jre1.6.0_07\bin\hpi.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_07\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\Program Files\Java\jre1.6.0_07\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_07\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\Program Files\Java\jre1.6.0_07\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\system32\mswsock.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x4a6a0000 - 0x4a6ac000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\CustomerInfoProxy.dll
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCP80.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCR80.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\system32\VERSION.dll
    0x75da0000 - 0x75e5d000      C:\WINDOWS\system32\SXS.DLL
    0x75e60000 - 0x75e87000      C:\WINDOWS\system32\apphelp.dll
    0x4dc30000 - 0x4dc5e000      C:\WINDOWS\system32\msctfime.ime
    0x4b0d0000 - 0x4b395000      C:\WINDOWS\system32\xpsp2res.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\WSOCK32.dll
    0x4bbe0000 - 0x4bbea000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\ClearTranProxy.dll
    0x745e0000 - 0x7489e000      C:\WINDOWS\system32\msi.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x4bc50000 - 0x4bc6c000      C:\WINDOWS\system32\DBNETLIB.DLL
    0x71f60000 - 0x71f64000      C:\WINDOWS\system32\security.dll
    0x76c90000 - 0x76cb7000      C:\WINDOWS\system32\msv1_0.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\crypt32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x4bcf0000 - 0x4bcff000      C:\Program Files\Common Files\System\Ole DB\SQLOLEDB.RLL
    0x4a8a0000 - 0x4a8aa000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MIGI.DLL
    0x73570000 - 0x736c2000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MSVBVM60.DLL
    0x4a950000 - 0x4a9e2000      C:\Program Files\Common Files\System\ado\msado15.dll
    0x74a50000 - 0x74a6a000      C:\WINDOWS\system32\MSDART.DLL
    0x4c850000 - 0x4c8c9000      C:\Program Files\Common Files\System\Ole DB\oledb32.dll
    0x4dbb0000 - 0x4dbc1000      C:\Program Files\Common Files\System\Ole DB\OLEDB32R.DLL
    VM Arguments:
    jvm_args: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Dcatalina.base=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\endorsed -Djava.io.tmpdir=C:\Program Files\Apache Software Foundation\Tomcat 5.5\temp -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\logging.properties -Djava.library.path=C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib vfprintf -Xms512m -Xmx1024m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_07
    [error occurred during error reporting (printing environment variables), id 0xc0000005]
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 7 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b23) for windows-x86 JRE (1.6.0_07-b06), built on Jun 10 2008 01:14:11 by "java_re" with MS VC++ 7.1
    time: Mon Dec 28 15:24:00 2009
    elapsed time: 600 seconds

  • JVM crashes with illegal Memory Access ..

    [JRockit] ERROR: The JVM has crashed. Writing crash information to C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.dump.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:13:27 on Mon Dec 07 20:06:05 2009
    * If you see this dump, please go to *
    * http://edocs.bea.com/jrockit/go2troubleshooting.html *
    * for troubleshooting information. *
    Additional information is available in:
    C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.dump
    C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.mdmp
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (c0000005) at 0x00466F21 - memory at 0x00000000 could not be read.
    Minidump : Wrote mdmp. Size is 472MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#2.
    : YC is not running. Last finished YC was YC#24.
    OC History : Strategy genparpar was used for OC#1 to OC#2.
    YC History : Ran 3 YCs before OC#1.
    : Ran 3 YCs before OC#2.
    : Ran 18 YCs since last OC.
    YC Promotion : Last YC successfully promoted all objects
    Heap : 0x00C00000 - 0x10C00000 (Size: 256 MB)
    Compaction : 0x00C00000 - 0x01C00000 (Current compaction type: internal)
    NurseryList : 0x00E57CF0 - 0x08132978
    KeepArea : 0x04693C88 - 0x06320918
    NurseryMarker: [ 0x04693C88,  0x06320918 ]
    CompRefs : References are 32-bit.
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 SSE4.1 EM64T
    Number CPUs : 2
    Tot Phys Mem : 2096984064 (1999 MB)
    OS version : Microsoft Windows XP version 5.1 Service Pack 3 (Build 2600) (32-bit)
    Thread System: Windows Threads
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State : JVM is running
    Command Line : -Xverify:all -Xms256m -Xmx512m -Xverify:none -da -Dplatform.home=C:\bea10.3\WLSERV~1.3 -Dwls.home=C:\bea10.3\WLSERV~1.3\server -Dweblogic.home=C:\bea10.3\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\bea10.3\patch_wlw1030\profiles\default\sysext_manifest_classpath;C:\bea10.3\patch_wls1030\profiles\default\sysext_manifest_classpath;C:\bea10.3\patch_cie660\profiles\default\sysext_manifest_classpath -Dweblogic.Name=examplesServer -Djava.security.policy=C:\bea10.3\WLSERV~1.3\server\lib\weblogic.policy -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    java.home : C:\bea10.3\JROCKI~1\jre
    j.class.path : C:\bea10.3\wlserver_10.3\samples\server\examples\build\serverclasses;C:\bea10.3\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\JROCKI~1\lib\tools.jar;C:\bea10.3\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea10.3\WLSERV~1.3\server\lib\weblogic.jar;C:\bea10.3\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea10.3\WLSERV~1.3\server\lib\webservices.jar;C:\bea10.3\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea10.3\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea10.3\WLSERV~1.3\common\eval\pointbase\lib\pbembedded57.jar;C:\bea10.3\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\bea10.3\WLSERV~1.3\server\lib\xqrl.jar;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;;
    j.lib.path : C:\bea10.3\JROCKI~1\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea10.3\patch_wlw1030\profiles\default\native;C:\bea10.3\patch_wls1030\profiles\default\native;C:\bea10.3\patch_cie660\profiles\default\native;C:\bea10.3\WLSERV~1.3\server\native\win\32;C:\bea10.3\WLSERV~1.3\server\bin;C:\bea10.3\modules\ORGAPA~1.5\bin;C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\JROCKI~1\bin;C:/Program Files/Java/jre1.6.0_02/bin/client;C:/Program Files/Java/jre1.6.0_02/bin;C:\Program Files\IBM\WebSphere MQ\Java\lib;C:\oracle\product\10.2.0\bin;C:\Program Files\Documentum\Shared;c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\ntru cryptosystems\ntru tcg software stack\bin\;c:\program files\wave systems corp\gemalto\access client\v5\;c:\program files\intel\dmix;c:\program files\intel\wifi\bin\;c:\program files\common files\roxio shared\dllshared\;c:\program files\common files\roxio shared\9.0\dllshared\;c:\program files\utimaco\safeguard easy\;C:\Program Files\Windows Imaging\;c:\program files\java\jdk1.6.0_05\bin;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;C:\Program Files\IBM\WebSphere MQ\bin;C:\Program Files\IBM\WebSphere MQ\tools\c\samples\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Subversion\bin;C:\bea10.3\WLSERV~1.3\server\native\win\32\oci920_8
    JAVA_HOME : C:\bea10.3\JROCKI~1
    JAVAOPTIONS: <not set>
    PATH : C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\patch_wlw1030\profiles\default\native;C:\bea10.3\patch_wls1030\profiles\default\native;C:\bea10.3\patch_cie660\profiles\default\native;C:\bea10.3\WLSERV~1.3\server\native\win\32;C:\bea10.3\WLSERV~1.3\server\bin;C:\bea10.3\modules\ORGAPA~1.5\bin;C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\JROCKI~1\bin;C:/Program Files/Java/jre1.6.0_02/bin/client;C:/Program Files/Java/jre1.6.0_02/bin;C:\Program Files\IBM\WebSphere MQ\Java\lib;C:\oracle\product\10.2.0\bin;C:\Program Files\Documentum\Shared;c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\ntru cryptosystems\ntru tcg software stack\bin\;c:\program files\wave systems corp\gemalto\access client\v5\;c:\program files\intel\dmix;c:\program files\intel\wifi\bin\;c:\program files\common files\roxio shared\dllshared\;c:\program files\common files\roxio shared\9.0\dllshared\;c:\program files\utimaco\safeguard easy\;C:\Program Files\Windows Imaging\;c:\program files\java\jdk1.6.0_05\bin;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;C:\Program Files\IBM\WebSphere MQ\bin;C:\Program Files\IBM\WebSphere MQ\tools\c\samples\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Subversion\bin;C:\bea10.3\WLSERV~1.3\server\native\win\32\oci920_8
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0x319BD1FC / OS context: 0x319BD5F8):
    eax = 2b1cdf58 ecx = 31b647a8 edx = 00000000 ebx = 0000002d
    esp = 319bd8c4 ebp = 31b66400 esi = 00000000 edi = 00000001
    es = 00000023 cs = 0000001b ss = 00000023 ds = 00000023
    fs = 0000003b gs = 00000000
    eip = 00466f21 eflags = 00010202
    Stack:
    (* marks the word pointed to by the stack pointer)
    319bd8c4: 319bda40* 28ac5bdc 2d61e1c4 31b636f8 0000002c 31b66590
    319bd8dc: 00000000 00000001 00000001 00000001 31b66588 00000000
    319bd8f4: 0000002c 00000000 00000005 31b647a8 2d61e1c4 2d630700
    319bd90c: 00001df5 00462f77 28ac5bdc 31b636f8 319bdec8 319bdf04
    Code:
    (* marks the word pointed to by the instruction pointer)
    00466ef0: 08c8448d 28244489 89f8048d 8b142444 431c2444 c085f633
    00466f08: 00f9860f ff8b0000 54244c8b 8b34518b 4c8bb204 518b3c24
    00466f20: f20c8b2c* 1824548b 8bca0c8d 89142454 8b38244c 8928244c
    00466f38: 5489f11c b70f04f1 00014e88 b8b70f00 0000014a 44c7f92b
    Loaded modules:
    (* denotes the module causing the exception)
    00400000-00410fff C:\bea10.3\JROCKI~1\bin\java.exe
    7c900000-7c9b1fff C:\WINDOWS\system32\ntdll.dll
    7c800000-7c8f5fff C:\WINDOWS\system32\kernel32.dll
    77dd0000-77e6afff C:\WINDOWS\system32\ADVAPI32.dll
    77e70000-77f01fff C:\WINDOWS\system32\RPCRT4.dll
    77fe0000-77ff0fff C:\WINDOWS\system32\Secur32.dll
    77c10000-77c67fff C:\WINDOWS\system32\MSVCRT.dll
    7c340000-7c395fff C:\bea10.3\JROCKI~1\jre\bin\msvcr71.dll
    00420000-006c3fff *C:\bea10.3\JROCKI~1\jre\bin\jrockit\jvm.dll
    76b40000-76b6cfff C:\WINDOWS\system32\WINMM.dll
    77f10000-77f58fff C:\WINDOWS\system32\GDI32.dll
    7e410000-7e4a0fff C:\WINDOWS\system32\USER32.dll
    71ab0000-71ac6fff C:\WINDOWS\system32\WS2_32.dll
    71aa0000-71aa7fff C:\WINDOWS\system32\WS2HELP.dll
    76390000-763acfff C:\WINDOWS\system32\IMM32.DLL
    6d820000-6d82bfff C:\bea10.3\JROCKI~1\jre\bin\verify.dll
    6d3c0000-6d3defff C:\bea10.3\JROCKI~1\jre\bin\java.dll
    6d320000-6d327fff C:\bea10.3\JROCKI~1\jre\bin\hpi.dll
    6d860000-6d86efff C:\bea10.3\jrockit_160_05\jre\bin\zip.dll
    6d570000-6d578fff C:\bea10.3\jrockit_160_05\jre\bin\management.dll
    6d620000-6d632fff C:\bea10.3\jrockit_160_05\jre\bin\net.dll
    237a0000-237cffff C:\Program Files\F-Secure\FSPS\program\FSLSP.DLL
    237d0000-237e6fff c:\program files\f-secure\scanner-interface\fsgkiapi.dll
    71a50000-71a8efff C:\WINDOWS\system32\mswsock.dll
    662b0000-66307fff C:\WINDOWS\system32\hnetcfg.dll
    71a90000-71a97fff C:\WINDOWS\System32\wshtcpip.dll
    23ca0000-23cc6fff C:\WINDOWS\system32\DNSAPI.dll
    23cd0000-23cd7fff C:\WINDOWS\System32\winrnr.dll
    23ce0000-23d0bfff C:\WINDOWS\system32\WLDAP32.dll
    23d60000-23d65fff C:\WINDOWS\system32\rasadhlp.dll
    6d640000-6d648fff C:\bea10.3\jrockit_160_05\jre\bin\nio.dll
    68000000-68035fff C:\WINDOWS\system32\rsaenh.dll
    769c0000-76a73fff C:\WINDOWS\system32\USERENV.dll
    5b860000-5b8b4fff C:\WINDOWS\system32\netapi32.dll
    25c20000-25c2afff C:\bea10.3\jrockit_160_05\jre\bin\jmapi.dll
    25e30000-25e3dfff C:\bea10.3\wlserver_10.3\server\native\win\32\wlfileio2.dll
    26120000-26138fff C:\WINDOWS\system32\iphlpapi.dll
    26150000-26167fff C:\WINDOWS\system32\MPRAPI.dll
    77cc0000-77cf1fff C:\WINDOWS\system32\ACTIVEDS.dll
    26170000-26194fff C:\WINDOWS\system32\adsldpc.dll
    76b20000-76b30fff C:\WINDOWS\system32\ATL.DLL
    774e0000-7761cfff C:\WINDOWS\system32\ole32.dll
    261a0000-2622afff C:\WINDOWS\system32\OLEAUT32.dll
    26230000-2623dfff C:\WINDOWS\system32\rtutils.dll
    71bf0000-71c02fff C:\WINDOWS\system32\SAMLIB.dll
    77920000-77a12fff C:\WINDOWS\system32\SETUPAPI.dll
    26280000-26284fff C:\bea10.3\wlserver_10.3\server\native\win\32\wlntio.dll
    6d800000-6d807fff C:\bea10.3\jrockit_160_05\jre\bin\sunmscapi.dll
    77a80000-77b14fff C:\WINDOWS\system32\CRYPT32.dll
    77b20000-77b31fff C:\WINDOWS\system32\MSASN1.dll
    76bf0000-76bfafff C:\WINDOWS\system32\psapi.dll
    6d7c0000-6d7c5fff C:\bea10.3\jrockit_160_05\jre\bin\rmi.dll
    31c20000-31d32fff C:\bea10.3\JROCKI~1\jre\bin\dbghelp.dll
    "[ACTIVE] ExecuteThread: '18' fo" id=54 idx=0xc8 tid=5456 lastJavaFrame=0x319BDEF4
    Stack 0: start=0x31980000, end=0x319C0000, guards=0x31983000 (ok), forbidden=0x31981000
    Thread Stack Trace:
    at dtCreateDTable+1025(dispatchtables.c:298+7)@0x00466F21
    at defineClass+167(defineclass.c:110+7)@0x00462F77
    at lib_define_class+34(library.c:516+16)@0x005164C2
    at libDefineClass+39(library.c:576+38)@0x00516707
    at libDefineClass2+58(library.c:597+34)@0x0051685A
    at JVM_DefineClassWithSource+43(jvmclass.c:59+43)@0x004E609B
    at Javajava_lang_ClassLoader_defineClass1@32+235()@0x6D3C15DA
    -- Java stack --
    at java/lang/ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;(Native Method)
        at java/lang/ClassLoader.defineClass(ClassLoader.java:620)
        at java/security/SecureClassLoader.defineClass(SecureClassLoader.java:124)
        at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:335)
        at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
        ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at java/lang/ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;(Native Method)
        at java/lang/ClassLoader.defineClass(ClassLoader.java:620)
        at java/security/SecureClassLoader.defineClass(SecureClassLoader.java:124)
        at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:335)
        at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
        ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[biased lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Classes.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName(Class.java:247)
    at sun/reflect/generics/factory/CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:107)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/annotation/AnnotationParser.parseSig(AnnotationParser.java:370)
    at sun/reflect/annotation/AnnotationParser.parseClassValue(AnnotationParser.java:351)
    at sun/reflect/annotation/AnnotationParser.parseMemberValue(AnnotationParser.java:280)
    at sun/reflect/annotation/AnnotationParser.parseAnnotation(AnnotationParser.java:222)
    at sun/reflect/annotation/AnnotationParser.parseAnnotations2(AnnotationParser.java:69)
    at sun/reflect/annotation/AnnotationParser.parseAnnotations(AnnotationParser.java:52)
    at java/lang/reflect/Field.declaredAnnotations(Field.java:1016)
    ^-- Holding lock: java/lang/reflect/Field@0x032BFE90[biased lock]
    at java/lang/reflect/Field.getDeclaredAnnotations(Field.java:1009)
    at java/lang/reflect/AccessibleObject.getAnnotations(AccessibleObject.java:175)
    at org/apache/openjpa/lib/util/J2DoPriv5Helper$1.run(J2DoPriv5Helper.java:51)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:233)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:241)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.annotated(PersistenceMetaDataDefaults.java:293)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:262)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:269)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:250)
    at org/apache/openjpa/meta/AbstractMetaDataDefaults.populate(AbstractMetaDataDefaults.java:155)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.populate(PersistenceMetaDataDefaults.java:227)
    at org/apache/openjpa/meta/MetaDataRepository.addMetaData(MetaDataRepository.java:794)
    at org/apache/openjpa/meta/MetaDataRepository.addMetaData(MetaDataRepository.java:780)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.getMetaData(AnnotationPersistenceMetaDataParser.java:657)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.parseClassAnnotations(AnnotationPersistenceMetaDataParser.java:480)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.parse(AnnotationPersistenceMetaDataParser.java:352)
    at org/apache/openjpa/persistence/PersistenceMetaDataFactory.load(PersistenceMetaDataFactory.java:229)
    at org/apache/openjpa/meta/MetaDataRepository.getMetaDataInternal(MetaDataRepository.java:474)
    at org/apache/openjpa/meta/MetaDataRepository.getMetaData(MetaDataRepository.java:294)
    ^-- Holding lock: org/apache/openjpa/meta/MetaDataRepository@0x0E7FCDF0[biased lock]
    at org/apache/openjpa/enhance/PCEnhancer.<init>(PCEnhancer.java:248)
    at org/apache/openjpa/enhance/PCEnhancer.<init>(PCEnhancer.java:219)
    at org/apache/openjpa/enhance/PCClassFileTransformer.transform0(PCClassFileTransformer.java:139)
    at org/apache/openjpa/enhance/PCClassFileTransformer.transform(PCClassFileTransformer.java:120)
    at org/apache/openjpa/persistence/PersistenceProviderImpl$ClassTransformerImpl.transform(PersistenceProviderImpl.java:210)
    at weblogic/deployment/PersistenceUnitInfoImpl$ClassPreProcessorImpl.preProcess(PersistenceUnitInfoImpl.java:497)
    at weblogic/utils/classloaders/ClassPreProcessor$ClassPreProcessorSupport.preProcess(ClassPreProcessor.java:95)
    at weblogic/utils/classloaders/GenericClassLoader.doPreProcess(GenericClassLoader.java:348)
    at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:329)
    at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[biased lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Classes.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName(Class.java:247)
    at sun/reflect/generics/factory/CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:107)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/generics/visitor/Reifier.reifyTypeArguments(Reifier.java:50)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:120)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/generics/repository/MethodRepository.getReturnType(MethodRepository.java:50)
    at java/lang/reflect/Method.getGenericReturnType(Method.java:236)
    at java/lang/reflect/Method.toGenericString(Method.java:482)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.setMethod(EjbCodeGenerator.java:3511)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.remote_interface_methods(EjbCodeGenerator.java:2698)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.remote_business_interface_methods(EjbCodeGenerator.java:2685)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at weblogic/utils/compiler/CodeGenerator.processAt(CodeGenerator.java:688)
        at weblogic/utils/compiler/CodeGenerator.parse(CodeGenerator.java:582)
        at weblogic/utils/compiler/CodeGenerator.parse(CodeGenerator.java:539)
        at weblogic/utils/compiler/CodeGenerator.generateCode(CodeGenerator.java:341)
        at weblogic/utils/compiler/CodeGenerator.generate(CodeGenerator.java:242)
        at weblogic/utils/compiler/CodeGenerator.generate(CodeGenerator.java:197)
        at weblogic/ejb/container/ejbc/EJBCompiler.generateSourcesFromBeanInfo(EJBCompiler.java:1019)
        at weblogic/ejb/container/ejbc/EJBCompiler.doCompile(EJBCompiler.java:299)
        at weblogic/ejb/container/ejbc/EJBCompiler.compileEJB(EJBCompiler.java:552)
        at weblogic/ejb/container/ejbc/EJBCompiler.compileEJB(EJBCompiler.java:519)
        at weblogic/ejb/container/deployer/EJBDeployer.runEJBC(EJBDeployer.java:393)
        at weblogic/ejb/container/deployer/EJBDeployer.compileJar(EJBDeployer.java:715)
        at weblogic/ejb/container/deployer/EJBDeployer.compileIfNecessary(EJBDeployer.java:618)
        at weblogic/ejb/container/deployer/EJBDeployer.prepare(EJBDeployer.java:1154)
        at weblogic/ejb/container/deployer/EJBModule.prepare(EJBModule.java:425)
    Stopping PointBase server...
    PointBase server stopped.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                &n

    Looks like a JVM crash during classloading. Have no idea what might cause it. I suggest you try upgrading to a more recent JRockit version (google for "download jrockit" and get the latest JRMC version you can find, it includes JRockit R27.6.5). If that doesn't help, open a ticket with Oracle Support and provide the text dump and the minidump for analysis.
    Henrik

  • Having random crashes during audio playback.

    Greetings,
    I seem to be having some issues with crashing during audio playback.  Here are my specs:
    MSI K8N Neo2 Plat  (1.B BIOS)
    AMD Athlon 64 3500+ (Winchester)
    4x512 Corsair TWINX 1024 3200C2PT (Bought at seperate times, but revisions are almost exact and they run stable)
    NVIDIA GeForce 6800
    Creative Audigy 2 ZS
    Forton Source FSP 400W
    It seems to do the same thing every time.  The audio will start skipping (in more than 1 media player) and after no BSOD, the computer will reboot itself.  I have it set to show a BSOD as well.  It has even started to ask to check my D: drive for errors after this.
    The problem first started to occur after a couple of things.  I recently updated my bios to the 1.B version as stated.  And a week or so ago I did a fresh install of Windows.  The sound was working fine with the new BIOS, but now with the new Windows install it has had issues.  Are there any known issues with the Audigy2 ZS and the new 1.B BIOS that I just didn't experience before?  Granted, I did not have my old install of Windows long under the new 1.B BIOS.
    At this moment I am using the AC97 onboard audio to see if that crashes as well, and just to hopefully have the random crashes stop happening.  I know there are quite a few avenues to take, I am just looking for opinions on which would be the best one.  Reflash the bios to an older version?  Try the Audigy2 in a different PCI slot? (I had it in the 2nd to bottom as the NIC is plugged into the orange PCI)  Contact Creative for an RMA or repair of the card?  I only bought it on December 16th, so it's fairly new.  Something else I am maybe missing?  A BIOS or Windows setting?
    Any help on this would be greatly appreciated.  If I need to provide any more info, please say so and I will promptly.
    Thanks.

    I have the same MB and CPU but I am using the onboard sound and have not had any problems with that.
    I can recommand that you bump up your memory voltage to 2.6~2.7 and loosen up your memory timings to something like 2.5-5-5-8-2T.
    Then remove all drivers from your Audigy, disable your onboard sound and remove those drivers, shut down and install your Audigy and boot up allowing Windows to find your new hardware and then install the drivers.

  • Help! Logic X 10.0.7 crashing during bounces and randomly!

    I have just bought Logic X Pro (Version 10.0.7) with NI Komplete 9.
    It worked fine for a day until it started to crash during bounces and occasionally when i'm working.
    I have downloaded all the recent updates for Komplete but can't seem to find out why it's crashing!
    It's a new Macbook Pro 13" so shouldn't be the computer!
    Would appreciate any advice on this matter...

    Here's the crash report:
    Process:         Logic Pro X [390]
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Identifier:      com.apple.logic10
    Version:         10.0.7 (3166.30)
    Build Info:      MALogic-3166030000000000~1
    App Item ID:     634148309
    App External ID: 337342644
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [153]
    Responsible:     Logic Pro X [390]
    User ID:         501
    Date/Time:       2014-07-22 22:35:13.329 +0100
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  D7FA7552-3D66-5761-127E-3B01FBED0103
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    *** error for object 0x7ff07a4c7408: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff90c57866 __pthread_kill + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6b35c pthread_kill + 92
    2   libsystem_c.dylib             0x00007fff88dc2b1a abort + 125
    3   libsystem_malloc.dylib         0x00007fff8f6db690 szone_error + 587
    4   libsystem_malloc.dylib         0x00007fff8f6e16f4 small_malloc_from_free_list + 1162
    5   libsystem_malloc.dylib         0x00007fff8f6e07b2 szone_malloc_should_clear + 1327
    6   libsystem_malloc.dylib         0x00007fff8f6e2868 malloc_zone_malloc + 71
    7   libsystem_malloc.dylib         0x00007fff8f6e327c malloc + 42
    8   libc++abi.dylib               0x00007fff8b61b36e operator new(unsigned long) + 30
    9   com.apple.logic10             0x0000000107caf292 std::vector<MAMem2, std::allocator<MAMem2> >::reserve(unsigned long) + 82
    10  com.apple.logic10             0x0000000107ca8de0 0x107c9d000 + 48608
    11  com.apple.logic10             0x0000000107ca8b0d 0x107c9d000 + 47885
    12  com.apple.logic10             0x0000000107ca8660 0x107c9d000 + 46688
    13  com.apple.logic10             0x000000010846591d 0x107c9d000 + 8161565
    14  com.apple.logic10             0x00000001080c08f0 0x107c9d000 + 4339952
    15  com.apple.logic10             0x00000001080b3c00 0x107c9d000 + 4287488
    16  com.apple.logic10             0x0000000108467cab 0x107c9d000 + 8170667
    17  com.apple.logic10             0x00000001084659aa 0x107c9d000 + 8161706
    18  com.apple.logic10             0x0000000108465f90 0x107c9d000 + 8163216
    19  com.apple.logic10             0x00000001084657a1 0x107c9d000 + 8161185
    20  com.apple.logic10             0x0000000107e9ec8f 0x107c9d000 + 2104463
    21  com.apple.logic10             0x0000000107f037e8 0x107c9d000 + 2516968
    22  com.apple.logic10             0x0000000107f11f5f 0x107c9d000 + 2576223
    23  com.apple.logic10             0x0000000107f106e9 0x107c9d000 + 2569961
    24  com.apple.logic10             0x0000000108112e51 0x107c9d000 + 4677201
    25  com.apple.logic10             0x000000010810619d 0x107c9d000 + 4624797
    26  com.apple.logic10             0x00000001081101f1 0x107c9d000 + 4665841
    27  com.apple.logic10             0x00000001085cb48c 0x107c9d000 + 9626764
    28  com.apple.AppKit               0x00007fff8ff83a58 -[NSWindow sendEvent:] + 11296
    29  com.apple.logic10             0x0000000107e21f3d 0x107c9d000 + 1593149
    30  com.apple.AppKit               0x00007fff8ff225d4 -[NSApplication sendEvent:] + 2021
    31  com.apple.logic10             0x000000010819a9ab 0x107c9d000 + 5233067
    32  com.apple.logic10             0x000000010819a90d 0x107c9d000 + 5232909
    33  com.apple.logic10             0x00000001081962f1 0x107c9d000 + 5214961
    34  com.apple.logic10             0x000000010819a98a 0x107c9d000 + 5233034
    35  com.apple.logic10             0x000000010819a90d 0x107c9d000 + 5232909
    36  com.apple.AppKit               0x00007fff8fd729f9 -[NSApplication run] + 646
    37  com.apple.AppKit               0x00007fff8fd5d783 NSApplicationMain + 940
    38  com.apple.logic10             0x00000001081677d5 0x107c9d000 + 5023701
    39  libdyld.dylib                 0x00007fff9116a5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib         0x00007fff90c57e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8fb6efb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff90c58662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8d90a421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8d90a136 _dispatch_mgr_thread + 52
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff90c53a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff90c52d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87265f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87265539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87264e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff854e0967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff854e076b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff90c579aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff872b1a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 5:: MIDIClientNotificationThread
    0   libsystem_kernel.dylib         0x00007fff90c53a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff90c52d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87265f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87265539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87264e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff854e2adc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation           0x00007fff8552b10b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.logic10             0x0000000107e9c5a9 0x107c9d000 + 2094505
    8   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 6:: SeqTimer
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore 0x00007fff8a9319e7 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore 0x00007fff8a931609 TSWaitOnSemaphoreCommon + 424
    4   com.apple.CoreServices.CarbonCore 0x00007fff8a913bc1 TimerThread + 87
    5   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff90c53a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff90c52d18 mach_msg + 64
    2   com.apple.audio.midi.CoreMIDI 0x0000000109a315a7 XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI 0x0000000109a4c1c1 MIDIProcess::RunMIDIInThread() + 121
    4   com.apple.audio.midi.CoreMIDI 0x0000000109a3263c XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI 0x0000000109a322a1 CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 8:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles   0x000000010b729f6b ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles   0x000000010b729c09 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 9:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles   0x000000010b729f6b ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles   0x000000010b729c09 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 10:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib         0x00007fff90c53a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff90c52d18 mach_msg + 64
    2   com.apple.audio.CoreAudio     0x00007fff8df4e828 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio     0x00007fff8df4e7b6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio     0x00007fff8df4cf3e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio     0x00007fff8df4cadd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio     0x00007fff8df4c99d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 11:: ProcessThread1/1024
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine 0x000000010b81e1e1 MD::CallProcessThread1(void*) + 449
    2   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 12:: ProcessThread2/1024
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine 0x000000010b81e417 MD::CallProcessThread2(void*) + 455
    2   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 13:: ProcessThread23/1024
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine 0x000000010b820f67 MD::CallProcessThread23(void*) + 455
    2   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 14:: FileIOThread
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine 0x000000010b83c1ec 0x10b80c000 + 197100
    2   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff90c579aa __select + 10
    1   com.apple.logic10             0x000000010854828e 0x107c9d000 + 9089678
    2   com.apple.logic10             0x00000001081480cd 0x107c9d000 + 4894925
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff90c53a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff90c52d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87265f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87265539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87264e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff8ff1f05e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 17:: SC3 Thread
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   Massive.MusicDevice.component 0x00000001206e2da5 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 901
    3   Massive.MusicDevice.component 0x00000001206e2759 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 297
    4   Massive.MusicDevice.component 0x0000000120768e6f NI::SC3::Network::workerThread() + 47
    5   Massive.MusicDevice.component 0x00000001206df495 NI::PA::ThreadImpl::run() + 69
    6   Massive.MusicDevice.component 0x000000012055c2f0 NI::GP::Thread::implExecute() + 16
    7   Massive.MusicDevice.component 0x000000012055bfdd NI::GP::Thread::execute(void*) + 45
    8   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 18:: SC3 Thread
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   Massive.MusicDevice.component 0x00000001206e2da5 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 901
    3   Massive.MusicDevice.component 0x00000001206e2759 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 297
    4   Massive.MusicDevice.component 0x000000012078effc NI::SC3::TaskScheduler::workerThread() + 60
    5   Massive.MusicDevice.component 0x00000001206df495 NI::PA::ThreadImpl::run() + 69
    6   Massive.MusicDevice.component 0x000000012055c2f0 NI::GP::Thread::implExecute() + 16
    7   Massive.MusicDevice.component 0x000000012055bfdd NI::GP::Thread::execute(void*) + 45
    8   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 19:: SC3 Thread
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   Massive.MusicDevice.component 0x00000001206e2da5 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 901
    3   Massive.MusicDevice.component 0x00000001206e2759 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 297
    4   Massive.MusicDevice.component 0x000000012078effc NI::SC3::TaskScheduler::workerThread() + 60
    5   Massive.MusicDevice.component 0x00000001206df495 NI::PA::ThreadImpl::run() + 69
    6   Massive.MusicDevice.component 0x000000012055c2f0 NI::GP::Thread::implExecute() + 16
    7   Massive.MusicDevice.component 0x000000012055bfdd NI::GP::Thread::execute(void*) + 45
    8   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 20:: SC3 Thread
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   Kontakt 5.MusicDevice.component 0x000000012638977b boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 299
    3   Kontakt 5.MusicDevice.component 0x0000000126389468 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 552
    4   Kontakt 5.MusicDevice.component 0x000000012641339f NI::SC3::Network::workerThread() + 47
    5   Kontakt 5.MusicDevice.component 0x0000000126385a9d NI::PA::ThreadImpl::run() + 29
    6   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    7   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 21:: SC3 Thread
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   Kontakt 5.MusicDevice.component 0x000000012638977b boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 299
    3   Kontakt 5.MusicDevice.component 0x0000000126389468 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 552
    4   Kontakt 5.MusicDevice.component 0x0000000126439486 NI::SC3::TaskScheduler::workerThread() + 70
    5   Kontakt 5.MusicDevice.component 0x0000000126385a9d NI::PA::ThreadImpl::run() + 29
    6   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    7   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 22:: SC3 Thread
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc3b _pthread_cond_wait + 727
    2   Kontakt 5.MusicDevice.component 0x000000012638977b boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 299
    3   Kontakt 5.MusicDevice.component 0x0000000126389468 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 552
    4   Kontakt 5.MusicDevice.component 0x0000000126439486 NI::SC3::TaskScheduler::workerThread() + 70
    5   Kontakt 5.MusicDevice.component 0x0000000126385a9d NI::PA::ThreadImpl::run() + 29
    6   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    7   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 23:: bg jobs
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125f58607 SerialJobBGThread::run() + 87
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 24:: AuxProcess #1
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 25:: AuxProcess #2
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 26:: AuxProcess #3
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 27:: Script
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d153ce BEngine::SetEngineParThreadProc() + 46
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 28:: Disk
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d72458 BStreamingEngine::run() + 104
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 29:: BGLoading
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125f6b50c BBackgroundLoader::run() + 940
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 30:: AuxProcess #1
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 31:: AuxProcess #2
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 32:: AuxProcess #3
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 33:: AuxProcess #1
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 34:: AuxProcess #2
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 35:: AuxProcess #3
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 36:: AuxProcess #1
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 37:: AuxProcess #2
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 38:: AuxProcess #3
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 39:: AuxProcess #1
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 40:: AuxProcess #2
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 41:: AuxProcess #3
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 42:: AuxProcess #1
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 43:: AuxProcess #2
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 44:: AuxProcess #3
    0   libsystem_kernel.dylib         0x00007fff90c53a56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component 0x0000000125d6c851 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component 0x0000000125873957 NI::GP::Thread::execute(void*) + 55
    3   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 45:
    0   libsystem_kernel.dylib         0x00007fff90c53a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff90c52d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87265f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87265539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87264e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff8731a811 CFRunLoopRun + 97
    6   com.apple.DiscRecording       0x00007fff84ed415e DRWorkLoop::WorkLoop() + 228
    7   com.apple.DiscRecording       0x00007fff84ed4067 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording       0x00007fff84ed3d77 DRThreadObject::StartRoutine(DRThreadObject*) + 125
    9   com.apple.DiscRecording       0x00007fff84ed3c11 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    11  libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    12  libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 46:: CVDisplayLink
    0   libsystem_kernel.dylib         0x00007fff90c57716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6cc77 _pthread_cond_wait + 787
    2   com.apple.CoreVideo           0x00007fff90acc464 CVDisplayLink::waitUntil(unsigned long long) + 244
    3   com.apple.CoreVideo           0x00007fff90acb998 CVDisplayLink::runIOThread() + 496
    4   com.apple.CoreVideo           0x00007fff90acb78f startIOThread(void*) + 147
    5   libsystem_pthread.dylib       0x00007fff8fb6a899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8fb6a72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8fb6efc9 thread_start + 13
    Thread 47:
    0   libsystem_kernel.dylib         0x00007fff90c57e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8fb6efb9 start_wqthread + 13
    Thread 48:
    0   libsystem_kernel.dylib         0x00007fff90c57e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8fb6bf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8fb6efb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff760c8310  rcx: 0x00007fff57f601b8  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff57f601e0  rsp: 0x00007fff57f601b8
       r8: 0x0000000000000010   r9: 0x00000000fffffff0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x000000010930c000  r13: 0x000000010ca05000  r14: 0x0000000000000006  r15: 0x0000000000000000
      rip: 0x00007fff90c57866  rfl: 0x0000000000000206  cr2: 0x000000010ca31000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x107c9d000 -        0x108d5ffff  com.apple.logic10 (10.0.7 - 3166.30) <EACB25FC-F304-3406-B183-8EDBC1058414> /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
           0x109305000 -        0x109307fff  com.apple.music.apps.MAResourcesPlugInsShared (10.0.7 - 3166.30) <292AFF2D-D411-3D83-8BD7-CBD53B706801> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResou rcesPlugInsShared
           0x109310000 -        0x1096fafff  com.apple.music.apps.MALogicLegacySong (10.0.7 - 3166.30) <B0DC78BA-CDC6-3234-8F7E-C78D6B991793> /Applications/Logic Pro X.app/Contents/Frameworks/MALogicLegacySong.framework/Versions/A/MALogicLegacyS ong
           0x1097fe000 -        0x109835ff7  com.apple.music.apps.MAAudioUnitSupport (10.0.7 - 3166.30) <C58A1EDC-3127-3B6C-8EE6-3DF45FDDBF91> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnitSu pport
           0x10985d000 -        0x109881ff7  com.apple.music.apps.MALoopManagement (10.0.7 - 3166.30) <D0C9E524-DD88-3EA4-A468-A30AC1414597> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagemen t
           0x109898000 -        0x1099b5ff7  com.apple.music.apps.MACore (10.0.7 - 3166.30) <D324E87E-7306-3788-913D-9FF09148645B> /Applications/Logic Pro X.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x109a24000 -        0x109a5fff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <D9D7F8A1-B30F-324D-AAFD-5DB9EECDAA48> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x109a8d000 -        0x109b12fff  com.apple.music.apps.MAHarmony (10.0.7 - 3166.30) <193CD540-FD12-31FD-910F-63F397C4824E> /Applications/Logic Pro X.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x109b39000 -        0x10a146ff7  com.apple.music.apps.MAPlugInGUI (10.0.7 - 3166.30) <F07802EB-5450-3A7E-90E0-85EB03A56BF0> /Applications/Logic Pro X.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x10a466000 -        0x10a531ff7  com.apple.music.apps.OMF (10.0.7 - 3166.5) <F7905833-9AE6-3B94-93D5-6A8D25288E13> /Applications/Logic Pro X.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x10a55a000 -        0x10ad1efff  com.apple.music.apps.MADSP (10.0.7 - 3166.30) <CF3E0F08-2B0C-3D24-8447-2B3B2D8D1E93> /Applications/Logic Pro X.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x10b5f8000 -        0x10b61dfff  com.apple.music.apps.LogicFileBrowser (10.0.7 - 3166.5) <1B3CCA4B-4123-391B-8BD4-150B304A5995> /Applications/Logic Pro X.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrowse r
           0x10b637000 -        0x10b685ff7  com.apple.music.apps.LogicLoopBrowser (10.0.7 - 3166.5) <D071B01A-9A93-37A3-83FB-D08260F6B07A> /Applications/Logic Pro X.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrowse r
           0x10b6a1000 -        0x10b6a5fff  com.apple.music.apps.MAResources (10.0.7 - 3166.30) <A01F10FF-202E-3027-A8CC-75F87DDB3B7E> /Applications/Logic Pro X.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x10b6aa000 -        0x10b6d1ff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <72C03A08-5C3C-3D7F-87CD-797B661F99CF> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x10b6ef000 -        0x10b6fafff  com.apple.music.apps.MAUnitTest (10.0.7 - 3166.30) <3A9C39F6-051C-388C-834D-D5ADE9B77422> /Applications/Logic Pro X.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x10b704000 -        0x10b7c5fff  com.apple.music.apps.MAFiles (10.0.7 - 3166.30) <9D27B251-D63B-38E8-92E1-EBE8F28A00FA> /Applications/Logic Pro X.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x10b80c000 -        0x10b8f4fff  com.apple.music.apps.MAAudioEngine (10.0.7 - 3166.30) <C45C071D-0972-346A-A39D-718E5590A747> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x10ba84000 -        0x10ba94fff  com.apple.StoreKit (1.0 - 232.11) <DEE3FE6A-5498-3E20-8FF4-F41496C8260D> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
           0x10baa9000 -        0x10bad2ff7  com.apple.music.apps.MAVideo (10.0.7 - 3166.30) <5D2815DB-75A9-3DE9-B078-FB58E73F7B5F> /Applications/Logic Pro X.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x10baef000 -        0x10be34fff  com.apple.LogicUIKit (10.0.7 - 3166.30) <DB9D7538-48B2-394D-8D64-26972C6CC9CC> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitLg.framework/Versions/A/MAToolKitLg
           0x10bf7b000 -        0x10c30aff7  com.apple.music.apps.Animal (10.0.7 - 3166.30) <793432C7-A124-3E28-836D-2EF090F49860> /Applications/Logic Pro X.app/Contents/Frameworks/Animal.framework/Versions/A/Animal
           0x10c5f9000 -        0x10c614fff  com.apple.music.apps.MALoopBrowser (10.0.7 - 3166.5) <22265585-072A-36BB-8853-C99AB8C16134> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopBrowser.framework/Versions/A/MALoopBrowser
           0x10c626000 -        0x10c6d3ff7  com.apple.music.apps.MAWorkspace (10.0.7 - 3166.30) <B1FDFBCA-2908-3D0D-B86F-0D50FFC21C0E> /Applications/Logic Pro X.app/Contents/Frameworks/MAWorkspace.framework/Versions/A/MAWorkspace
           0x10c72e000 -        0x10c767ff7  com.apple.LogicUIKitHighLevel (10.0.7 - 3166.30) <0278CFB2-62D6-3DDC-AB3E-F5073F06BA8A> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHigh Level
           0x10c78c000 -        0x10c78efff  com.apple.music.apps.MAResourcesLg (10.0.7 - 3166.30) <B558FA1B-83AD-3804-B6F1-F15F2B0AB48B> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesLg.framework/Versions/A/MAResourcesLg
           0x10c79a000 -        0x10c79efff  com.apple.music.apps.MAContentDownloading (10.0.7 - 3166.5) <DB5FE492-886E-3BF9-8CBB-23F0F7EF2DEE> /Applications/Logic Pro X.app/Contents/Frameworks/MAContentDownloading.framework/Versions/A/MAContentDo wnloading
           0x10c7a5000 -        0x10c7b6fff +com.nxtbgthng.OAuth2Client (1.1.0 - 3166.5) <D359634B-1343-31AC-8AB1-FC0DC1895598> /Applications/Logic Pro X.app/Contents/Frameworks/OAuth2Client.framework/Versions/A/OAuth2Client
           0x10c7c8000 -        0x10c7cdfff +com.yourcompany.SoundCloudAPI (2.0b6 - 3166.5) <3A2C9DD7-D5A4-3BCC-A468-0E243DD8600C> /Applications/Logic Pro X.app/Contents/Frameworks/SoundCloudAPI.framework/Versions/A/SoundCloudAPI
           0x10c7d5000 -        0x10c7d7ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10c7dc000 -        0x10c7defff  com.apple.music.apps.MAResourcesGB (10.0.7 - 3166.30) <42536C9B-06EC-3986-BB65-84C271571D94> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesGB.framework/Versions/A/MAResourcesGB
           0x10c7e9000 -        0x10c827fff  com.apple.MAGFFoundation (1.0 - 3166.5) <238F33F8-0C1B-31DA-88DC-2A0E0E1AD662> /Applications/Logic Pro X.app/Contents/Frameworks/MAGFFoundation.framework/Versions/A/MAGFFoundation
           0x10e21c000 -        0x10e226fff  com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <8D8BA85A-B6AA-370E-8DF7-85275D47C964> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
           0x1105da000 -        0x1105deffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1110f9000 -        0x1110fbfff  com.apple.music.apps.anvil.resources (10.0.7 - 3166.30) <A5745AD8-6B47-3C17-814D-CDE2ECAD43A1> /Applications/Logic Pro X.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
           0x111101000 -        0x111103fff  com.apple.music.apps.common.resources (10.0.7 - 3166.30) <57C265E4-1EC7-36E3-B292-6DAF93024F2E> /Applications/Logic Pro X.app/Contents/PlugIns/common.res/Contents/MacOS/common
           0x111109000 -        0x11110bff7  com.apple.music.apps.ebp.resources (10.0.7 - 3166.30) <29424CC6-9455-30DB-A6AF-2F96BBE3D402> /Applications/Logic Pro X.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
           0x111c24000 -        0x111c26ff7  com.apple.music.apps.efx.resources (10.0.7 - 3166.30) <75102E7C-8698-31D0-8361-B70C6792AFD6> /Applications/Logic Pro X.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
           0x111c2c000 -        0x111c2eff7  com.apple.music.apps.egt.resources (10.0.7 - 3166.30) <89E448CE-E2BA-32DC-80E5-AF4B7350A7E8> /Applications/Logic Pro X.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
           0x111c34000 -        0x111c36ff7  com.apple.music.apps.emx.resources (10.0.7 - 3166.30) <3B715B7D-E9AD-334F-8EC7-91A41FC8F4C8> /Applications/Logic Pro X.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
           0x111c3c000 -        0x111c3eff7  com.apple.music.apps.es1.resources (10.0.7 - 3166.30) <D7460C43-0E7E-3939-B8E4-97D0DC6684C5> /Applications/Logic Pro X.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
           0x111c44000 -        0x111c46ff7  com.apple.music.apps.es2.resources (10.0.7 - 3166.30) <ABEBD272-F759-3B17-9909-DC9EFCBBA1F9> /Applications/Logic Pro X.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
           0x111c4c000 -        0x111c4eff7  com.apple.music.apps.esp.resources (10.0.7 - 3166.30) <FEDEAECC-5AC6-3C13-9DEA-9517EECC8AD5> /Applications/Logic Pro X.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
           0x111c54000 -        0x111c56ff7  com.apple.music.apps.evb3.resources (10.0.7 - 3166.30) <9CC46B3F-FBB9-3CFF-AB52-5E5F1BC1B4A5> /Applications/Logic Pro X.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
           0x111c5c000 -        0x111c5eff7  com.apple.music.apps.evd6.resources (10.0.7 - 3166.30) <700C31B6-5901-3E21-A597-AFD38EFE7DA0> /Applications/Logic Pro X.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
           0x111c64000 -        0x111c66ff7  com.apple.music.apps.evoc.resources (10.0.7 - 3166.30) <7ECD5526-DD3E-3027-934C-9FC0FDEFD459> /Applications/Logic Pro X.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
           0x111c6c000 -        0x111c6efff  com.apple.music.apps.evp88.resources (10.0.7 - 3166.30) <7602C2D1-0B7A-360B-9DB4-EEB4281D174B> /Applications/Logic Pro X.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
           0x111c74000 -        0x111c76fff  com.apple.music.apps.exs24.resources (10.0.7 - 3166.30) <0106417C-4433-3093-B3BB-4FA20D2E63FD> /Applications/Logic Pro X.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
           0x111c7c000 -        0x111c7efff  com.apple.music.apps.guitarcontrols.resources (10.0.7 - 3166.30) <D5F63782-1A3D-326A-B51B-6828D83D5EC0> /Applications/Logic Pro X.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
           0x111c84000 -        0x111c86fff  com.apple.music.apps.mutapdel.resources (10.0.7 - 3166.30) <B2D78441-C848-3902-A82C-9CE75D38A140> /Applications/Logic Pro X.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
           0x111c8c000 -        0x111c8eff7  com.apple.music.apps.pedalboard.resources (10.0.7 - 3166.30) <EAAA7DD0-7E7C-3F3F-BA27-187F65144ACD> /Applications/Logic Pro X.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
           0x111c94000 -        0x111c96fff  com.apple.music.apps.revolver.resources (10.0.7 - 3166.30) <F5FE9C23-7684-3550-8BB0-6C99EEDAC867> /Applications/Logic Pro X.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
           0x111c9c000 -        0x111c9efff  com.apple.music.apps.sphere.resources (10.0.7 - 3166.30) <DACDFEF5-E6B9-39B1-8D52-A053B66ECE03> /Applications/Logic Pro X.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
           0x1167f2000 -        0x1167f5fff  libspindump.dylib (161.2) <E16E9BFB-8F34-366F-BE10-48993F5843BC> /usr/lib/libspindump.dylib
           0x1196a5000 -        0x1196a7fff  com.apple.music.apps.midi.device.plugin.FaderMaster-4-100 (10.0.7 - 3166.30) <37A226BE-9BDC-388E-9302-CCD7974986CC> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/FaderMaster 4-100.bundle/Contents/MacOS/FaderMaster 4-100
           0x11cf5c000 -        0x11cf5fff7  com.apple.iokit.SCSITaskLib (3.6.6 - 3.6.6) <8A04C3BA-F5AE-319B-812F-4B5D2EA62B9A> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
           0x11cf70000 -        0x11cf71ff7  com.apple.music.apps.midi.device.plugin.MCS3 (10.0.7 - 3166.30) <A0F5F009-0367-398C-A772-DAA64B9BAA52> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
           0x11d442000 -        0x11d444fff  com.apple.music.apps.midi.device.plugin.GiO (10.0.7 - 3166.30) <EC76C591-26BB-3E45-B954-711A706EE6A4> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
           0x11d605000 -        0x11d60dfff  com.apple.music.apps.midi.device.plugin.CS-32 (10.0.7 - 3166.30) <6834796F-C5C4-3821-980E-4CB0FCBF532C> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
           0x11d616000 -        0x11d629fff  com.apple.music.apps.midi.device.plugin.HUI (10.0.7 - 3166.30) <52F532D5-BEF8-33C3-B977-39483801AF2A> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
           0x11d638000 -        0x11d63bff7  com.apple.music.apps.midi.device.plugin.iControl (10.0.7 - 3166.30) <2F38CF2F-130C-3DFD-926E-F067879F2E76> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
           0x11d641000 -        0x11d648fff  com.apple.music.apps.midi.device.plugin.Logic-Remote (10.0.7 - 3166.30) <8CB1CFE2-A1E0-3B69-B450-4345CF0AAAFD> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Remote.bundle/Contents/MacOS/Logic Remote
           0x11d650000 -        0x11d657fff  com.apple.music.apps.midi.device.plugin.microKONTROL (10.0.7 - 3166.30) <A00399E7-88D6-35D3-9C27-1F497447EE08> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
           0x11d65f000 -        0x11d66bff7  com.apple.music.apps.midi.device.plugin.Motormix (10.0.7 - 3166.30) <8D42F45A-162D-3958-828B-66CDA664E516> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Motormix.bundle/Contents/MacOS/Motormix
           0x11d674000 -        0x11d675ff7  com.apple.music.apps.midi.device.plugin.Recording-Light (10.0.7 - 3166.30) <035A1C1D-370F-3200-9FCE-FACE5DC2DD44> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
           0x11d67a000 -        0x11d687fff  com.apple.music.apps.midi.device.plugin.SAC-2K (10.0.7 - 3166.30) <CB86CF41-44AD-3175-96E0-2EAECD548945> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/SAC-2K.bundle/Contents/MacOS/SAC-2K
           0x11d690000 -        0x11d694ff7  com.apple.music.apps.midi.device.plugin.TranzPort (10.0.7 - 3166.30) <555E2583-AB9B-3FF1-9DD0-FF63894D724D> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
           0x11d6b2000 -        0x11d6f1fff  com.apple.music.apps.midi.device.plugin.Logic-Control (10.0.7 - 3166.30) <4CBCC457-24D9-3705-A6EF-22D02548FE83> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
           0x11d714000 -        0x11d719fff  com.apple.music.apps.midi.device.plugin.SI-24 (10.0.7 - 3166.30) <873FD090-F3E1-3A4D-A5ED-E7C92B2AFB8A> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/SI-24.bundle/Contents/MacOS/SI-24
           0x11d720000 -        0x11d72dff7  com.apple.music.apps.midi.device.plugin.TouchOSC (10.0.7 - 3166.30) <4CE952BE-FE6E-35B2-B040-7871B72B8244> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
           0x11d73a000 -        0x11d744ff7  com.apple.music.apps.midi.device.plugin.US-2400 (10.0.7 - 3166.30) <69ADE17A-A42A-3E96-B84A-03DEBF81564F> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
           0x11e301000 -        0x11e4d2fff  com.apple.audio.units.Components (1.10 - 1.10) <FF94282C-BC8B-32FD-9761-AAF1A9F76761> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
        

  • Investigation on JVM crash without core dump (by JIT compiler)

    Hi, All
    I posted "JVM crash without core dump due to CompilerThread1" couple months ago.
    http://forum.java.sun.com/thread.jspa?threadID=5253434
    I would like show what we found, and ask couple questions
    1) The reason of JVM crash is "CompilerThread0/1 wanted to allocate more native memory and eventually exceeded the limit of 32-bit Linux (on Redhat, the limit of VIRT is 3G)
    2) After we lower the heap size (to reduce process size) and added process size monitor (track process size every minute) and JIT compilation log (-XX:+PrintCompilation),
    We found sometimes JVM process jumped more than 800M when compiling one method. with the following log
    Total time for which application threads were stopped: 0.1997400 seconds
    5828 xxx.xxx.SomeClass::someMethod (1507 bytes)
    5828 COMPILE SKIPPED: out of nodes during split (not retryable)
    549002.449: [GC [PSYoungGen: 517897K->28390K(551296K)] 942855K->453348K(1229952K), 0.0726350 secs]
    if we saw "COMPILE SKIPPED: out of nodes during split (not retryable)", the process size of JVM (VIRT/RES) always jumped 800M~1000M, and sometimes the memory get reverted in 30mins to couple hours, and sometimes it lasted forever. (so before we have larger footprint, this jump will kill JVM, right now, if the jump lasts forever, any more allocation on top of it also can kill jvm (much rare))
    3) This is definitely a bug of JVM, because
    it only happened on server mode, not client mode
    it is random, that method can be compiled success on other JVM or next restart (we have 20 JVMs)
    the method is not that complicate, like 100 lines, (bigger method gets compiled success)
    this only happen on PROD environment, we can't reproduce it locally or QA (the method is always compiled success)
    It mostly like under some condition (maybe node space is not enough), to compile that method will trigger JVM trying to allocate much more native memory.
    4) We are going to disable this method by ".hotspot_compiler" to fix it, right now we are using lower footprint, JVM dies rarely.
    +To understand more about this, I have some questions about JIT compiling+
    I saw same method are compiled more than once from JIT log, like the method caused our problem, it only happens on 2nd time compilation.
    Is it that JIT compiler will recompile the method with deeper optimization level some time, and more optimization it uses, the more memory it requires?
    (like gcc has -O2 -O3)
    Thanks!
    Neo

    Today, one JVM crashed again, with
    {Heap before gc invocations=4188:
    PSYoungGen      total 540864K, used 487958K [0x8ba50000, 0xb1250000, 0xb1250000)
      eden space 467328K, 100% used [0x8ba50000,0xa82b0000,0xa82b0000)
      from space 73536K, 28% used [0xa82b0000,0xa96d5850,0xaca80000)
      to   space 71680K, 0% used [0xacc50000,0xacc50000,0xb1250000)
    ParOldGen       total 1024000K, used 493477K [0x4d250000, 0x8ba50000, 0x8ba50000)
      object space 1024000K, 48% used [0x4d250000,0x6b439610,0x8ba50000)
    PSPermGen       total 101760K, used 101240K [0x2d250000, 0x335b0000, 0x4d250000)
      object space 101760K, 99% used [0x2d250000,0x3352e1f8,0x335b0000)
    405290.711: [GC [PSYoungGen: 487958K->17397K(544192K)] 981435K->518248K(1568192K), 0.0769350 secs]
    Heap after gc invocations=4188:
    PSYoungGen total 544192K, used 17397K [0x8ba50000, 0xb1250000, 0xb1250000)
    eden space 472512K, 0% used [0x8ba50000,0x8ba50000,0xa87c0000)
    from space 71680K, 24% used [0xacc50000,0xadd4d480,0xb1250000)
    to space 70208K, 0% used [0xa87c0000,0xa87c0000,0xacc50000)
    ParOldGen total 1024000K, used 500851K [0x4d250000, 0x8ba50000, 0x8ba50000)
    object space 1024000K, 48% used [0x4d250000,0x6bb6cf70,0x8ba50000)
    PSPermGen total 101760K, used 101240K [0x2d250000, 0x335b0000, 0x4d250000)
    object space 101760K, 99% used [0x2d250000,0x3352e1f8,0x335b0000)
    Total time for which application threads were stopped: 0.0779620 seconds
    Exception in thread "CompilerThread1" java.lang.OutOfMemoryError: requested 4522768 bytes for Chunk::new. Out of swap space?

  • Help: Why JVM Crashes?

    I run a complex server app on JDK1.3.0 IBM AIX4.3.3. JVM crashes (process terminates) occasionally after a random period of time e.g. several days. Native code caused SIGILL (illegal instruction) and process was terminated by OS as shown in nuhop.out. (I run it with nohup.)
    BTW, JVM has enough free memory during its running.
    Would anyone tell me possible reasons for JVM crash? Can I say that if JVM crashes, no matter what app it runs, it is a bug of JVM? Need help on locating problem.
    Thanks.

    Can I say that if JVM crashes, no matter what app it
    runs, it is a bug of JVM?No, you cannot. I have seen numerous instances where a JVM brought down the whole process because it caught a signal in some native code outside of the JVM - either in the OS libraries themselves or somewhere else in the programmer's code. In this case since you are getting a SIGILL, the probability of a bug in the OS or the JVM itself seems a bit higher to me than if you just saw, say, SIGSEGV.
    Would anyone tell me possible reasons for JVM crash?Well you probably want to make sure that it is not due to any native code of yours first (or from a 3rd party, like a JDBC driver vendor, for example), if you have any... I find myself answering these kinds of posts often, partially because I have seen this kind of thing numerous times and think that I might be able to help, though it seems some of these questions are asked a little too often...
    Anyway, see this:
    http://forum.java.sun.com/thread.jsp?forum=37&thread=235942
    Good luck.

  • JVM Crash: ConcMarkSweepGC related?

    We're experiencing the following JVM crash approximately 2-5 times per day on a well traffic application server running Tomcat 5.5 under Java 1.5 (05) on Linux with a 2.4.21-37 kernel. I'm posting here because we kind of have no route to take: I can't seem to work around the crash in any way. There's a potential that UseParallelGC might fix this, but I'm unable to run the app reliably with a ParallelGC, as we have a very large cache and the Full GC's get unbelievably long (2GB heap).
    How can we find out what's going on? Is there a way to obtain a debug build so that:
    V [libjvm.so+0x4c2c53]
    V [libjvm.so+0x1bea7c]
    We're also seeing this in the standard output:
    An exception occurred on the SessionReaperDaemon[null, 2005-11-01 20:02:14.81] thread while processing (task="com.tangosol.coherence.servlet.SessionHelper$SessionReaperDaemon$IncrementalReapTask@1ba4ac8"):
    java.lang.NullPointerException
         at com.tangosol.coherence.servlet.SessionHelper$SessionReaperDaemon$IncrementalReapTask.run(SessionHelper.java:3072)
         at com.tangosol.util.TaskDaemon.run(TaskDaemon.java:69)
         at com.tangosol.coherence.servlet.SessionHelper$SessionReaperDaemon.run(SessionHelper.java:2709)
         at com.tangosol.util.Daemon$1.run(Daemon.java:63)
    Prior to the crash, but this is an impossible place for an exception:
    3070: if (iter.hasNext())
    3071: {
    3072: String sId = (String) iter.next();3073: ...
    Any help or next steps would be greatly appreciated.
    An attached dump:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (4E4D4554484F440E4350500521), pid=1705, tid=907377584
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_05-b05 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x36bc7068): JavaThread "SessionReaperDaemon[null, 2005-11-01 22:38:23.388]" daemon [_thread_in_Java, id=1739]
    Stack: [0x360d7000,0x36158000), sp=0x36156eec, free space=511k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x4c2c53]
    V [libjvm.so+0x1bea7c]
    V [libjvm.so+0x3e2bee]
    V [libjvm.so+0x4564cb]
    V [libjvm.so+0x3f8956]
    V [libjvm.so+0x3f5c64]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0894eba0 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=4871]
    0x0864ea88 JavaThread "RMI TCP Connection(341)-192.168.100.62" daemon [_thread_in_native, id=4802]
    0x083e6568 JavaThread "http-80-Processor300" daemon [_thread_in_native, id=4708]
    0x08d4e058 JavaThread "http-80-Processor299" daemon [_thread_in_native, id=4707]
    0x08bc7c20 JavaThread "http-80-Processor298" daemon [_thread_blocked, id=4706]
    0x0845fd78 JavaThread "http-80-Processor297" daemon [_thread_in_native, id=4705]
    0x08e39330 JavaThread "http-80-Processor296" daemon [_thread_in_native, id=4704]
    0x08bceb30 JavaThread "http-80-Processor295" daemon [_thread_blocked, id=4703]
    0x08bb9de8 JavaThread "http-80-Processor294" daemon [_thread_in_native, id=4702]
    0x08b692d0 JavaThread "http-80-Processor293" daemon [_thread_in_native, id=4701]
    0x084fa8e0 JavaThread "http-80-Processor292" daemon [_thread_in_native, id=4700]
    0x08446908 JavaThread "http-80-Processor291" daemon [_thread_blocked, id=4699]
    0x08e4c4c0 JavaThread "http-80-Processor290" daemon [_thread_in_native, id=4698]
    0x08625e60 JavaThread "http-80-Processor289" daemon [_thread_blocked, id=4697]
    0x0843d5b8 JavaThread "http-80-Processor288" daemon [_thread_in_native, id=4696]
    0x08ca13b8 JavaThread "http-80-Processor287" daemon [_thread_in_native, id=4695]
    0x08395e00 JavaThread "http-80-Processor286" daemon [_thread_in_native, id=4694]
    0x084c8f28 JavaThread "http-80-Processor285" daemon [_thread_in_native, id=4693]
    0x083f6490 JavaThread "http-80-Processor284" daemon [_thread_in_native, id=4692]
    0x08e69368 JavaThread "http-80-Processor281" daemon [_thread_blocked, id=4689]
    0x08df8218 JavaThread "http-80-Processor280" daemon [_thread_blocked, id=4688]
    0x0861ba28 JavaThread "http-80-Processor279" daemon [_thread_blocked, id=4687]
    0x083e22d0 JavaThread "http-80-Processor278" daemon [_thread_blocked, id=4686]
    0x08e44e80 JavaThread "http-80-Processor277" daemon [_thread_blocked, id=4685]
    0x08625478 JavaThread "http-80-Processor276" daemon [_thread_blocked, id=4684]
    0x08547890 JavaThread "http-80-Processor275" daemon [_thread_in_native, id=4632]
    0x0846c598 JavaThread "http-80-Processor274" daemon [_thread_in_native, id=4631]
    0x08beadb8 JavaThread "http-80-Processor270" daemon [_thread_in_native, id=4627]
    0x0865b3a0 JavaThread "http-80-Processor269" daemon [_thread_in_native, id=4626]
    0x092899e0 JavaThread "http-80-Processor268" daemon [_thread_in_native, id=4625]
    0x09277f58 JavaThread "http-80-Processor267" daemon [_thread_blocked, id=4624]
    0x086790b0 JavaThread "http-80-Processor265" daemon [_thread_in_native, id=4622]
    0x0844d920 JavaThread "http-80-Processor263" daemon [_thread_blocked, id=4620]
    0x0846f478 JavaThread "http-80-Processor262" daemon [_thread_in_native, id=4619]
    0x08c5f470 JavaThread "http-80-Processor261" daemon [_thread_in_native, id=4618]
    0x088cd8d0 JavaThread "http-80-Processor260" daemon [_thread_in_native, id=4617]
    0x08d5af30 JavaThread "http-80-Processor259" daemon [_thread_blocked, id=4616]
    0x0884bc18 JavaThread "http-80-Processor258" daemon [_thread_blocked, id=4615]
    0x08e618a0 JavaThread "http-80-Processor257" daemon [_thread_in_native, id=4614]
    0x08be3de0 JavaThread "http-80-Processor256" daemon [_thread_in_native, id=4613]
    0x085de680 JavaThread "http-80-Processor255" daemon [_thread_blocked, id=4612]
    0x083b8420 JavaThread "http-80-Processor254" daemon [_thread_blocked, id=4611]
    0x08e533e0 JavaThread "http-80-Processor253" daemon [_thread_in_native, id=4610]
    0x083c5af8 JavaThread "http-80-Processor252" daemon [_thread_in_native, id=4609]
    0x084701c0 JavaThread "http-80-Processor251" daemon [_thread_blocked, id=4608]
    0x3639cff0 JavaThread "http-80-Processor250" daemon [_thread_in_native, id=4402]
    0x2f41cd88 JavaThread "http-80-Processor249" daemon [_thread_in_native, id=4401]
    0x36bf7a48 JavaThread "http-80-Processor247" daemon [_thread_blocked, id=4399]
    0x35160748 JavaThread "http-80-Processor246" daemon [_thread_in_native, id=4398]
    0x36b42ed0 JavaThread "http-80-Processor245" daemon [_thread_blocked, id=4397]
    0x359b3ec0 JavaThread "http-80-Processor244" daemon [_thread_in_native, id=4396]
    0x3633a1f8 JavaThread "http-80-Processor240" daemon [_thread_blocked, id=4392]
    0x35a9ef28 JavaThread "http-80-Processor239" daemon [_thread_in_native, id=4391]
    0x35a52840 JavaThread "http-80-Processor238" daemon [_thread_blocked, id=4390]
    0x35a8e9e8 JavaThread "http-80-Processor236" daemon [_thread_blocked, id=4388]
    0x35a8de38 JavaThread "http-80-Processor235" daemon [_thread_in_native, id=4387]
    0x304703b8 JavaThread "http-80-Processor232" daemon [_thread_in_native, id=4384]
    0x36b32498 JavaThread "http-80-Processor231" daemon [_thread_blocked, id=4383]
    0x2e149a40 JavaThread "http-80-Processor230" daemon [_thread_blocked, id=4382]
    0x304731f8 JavaThread "http-80-Processor229" daemon [_thread_blocked, id=4381]
    0x2e186cd0 JavaThread "http-80-Processor228" daemon [_thread_in_native, id=4380]
    0x35a53c68 JavaThread "http-80-Processor227" daemon [_thread_blocked, id=4379]
    0x083a85d0 JavaThread "RMI TCP Connection(315)-192.168.100.62" daemon [_thread_blocked, id=4343]
    0x08cdd748 JavaThread "JMX server connection timeout 1017" daemon [_thread_blocked, id=3885]
    0x08df9fc0 JavaThread "RMI LeaseChecker" daemon [_thread_blocked, id=3884]
    0x083c7f68 JavaThread "http-80-Processor225" daemon [_thread_blocked, id=3816]
    0x083c85b8 JavaThread "http-80-Processor223" daemon [_thread_blocked, id=3814]
    0x08df3be8 JavaThread "http-80-Processor222" daemon [_thread_in_native, id=3813]
    0x087a49b8 JavaThread "http-80-Processor221" daemon [_thread_in_native, id=3812]
    0x084c9db8 JavaThread "http-80-Processor220" daemon [_thread_in_native, id=3811]
    0x086203e0 JavaThread "http-80-Processor218" daemon [_thread_in_native, id=3809]
    0x088e2090 JavaThread "http-80-Processor216" daemon [_thread_in_native, id=3807]
    0x088bd2d0 JavaThread "http-80-Processor214" daemon [_thread_in_native, id=3805]
    0x08863490 JavaThread "http-80-Processor211" daemon [_thread_in_native, id=3802]
    0x08e9f4b8 JavaThread "http-80-Processor207" daemon [_thread_in_native, id=3798]
    0x08c9f748 JavaThread "http-80-Processor206" daemon [_thread_in_native, id=3797]
    0x0861fa00 JavaThread "http-80-Processor205" daemon [_thread_in_native, id=3796]
    0x08408ec8 JavaThread "http-80-Processor204" daemon [_thread_blocked, id=3795]
    0x0869bf28 JavaThread "http-80-Processor203" daemon [_thread_blocked, id=3794]
    0x08ba2648 JavaThread "http-80-Processor201" daemon [_thread_blocked, id=3792]
    0x08e70980 JavaThread "http-80-Processor200" daemon [_thread_blocked, id=3550]
    0x08e707e8 JavaThread "http-80-Processor199" daemon [_thread_blocked, id=3549]
    0x088e83b0 JavaThread "http-80-Processor196" daemon [_thread_blocked, id=3546]
    0x08634758 JavaThread "http-80-Processor195" daemon [_thread_blocked, id=3545]
    0x08198ea8 JavaThread "http-80-Processor194" daemon [_thread_blocked, id=3544]
    0x0831d5a8 JavaThread "http-80-Processor191" daemon [_thread_in_native, id=3541]
    0x088c6788 JavaThread "http-80-Processor189" daemon [_thread_in_native, id=3539]
    0x0835d868 JavaThread "http-80-Processor187" daemon [_thread_blocked, id=3537]
    0x08be2788 JavaThread "http-80-Processor186" daemon [_thread_in_native, id=3536]
    0x08d5b638 JavaThread "http-80-Processor182" daemon [_thread_blocked, id=3532]
    0x088c6488 JavaThread "http-80-Processor180" daemon [_thread_in_native, id=3530]
    0x08d83d70 JavaThread "http-80-Processor173" daemon [_thread_blocked, id=3158]
    0x088f3ca8 JavaThread "http-80-Processor171" daemon [_thread_blocked, id=3156]
    0x08862858 JavaThread "http-80-Processor168" daemon [_thread_blocked, id=3153]
    0x08629e38 JavaThread "http-80-Processor162" daemon [_thread_blocked, id=3147]
    0x086b9dd0 JavaThread "http-80-Processor159" daemon [_thread_in_native, id=3144]
    0x086e1c88 JavaThread "http-80-Processor153" daemon [_thread_in_native, id=3138]
    0x082fae10 JavaThread "http-80-Processor151" daemon [_thread_in_native, id=3136]
    0x084c7c40 JavaThread "http-80-Processor149" daemon [_thread_blocked, id=2489]
    0x087a5568 JavaThread "http-80-Processor147" daemon [_thread_in_native, id=2487]
    0x08c5f648 JavaThread "http-80-Processor146" daemon [_thread_blocked, id=2486]
    0x08c64090 JavaThread "http-80-Processor135" daemon [_thread_blocked, id=2475]
    0x08d60c68 JavaThread "http-80-Processor133" daemon [_thread_in_native, id=2473]
    0x08cdc058 JavaThread "http-80-Processor129" daemon [_thread_blocked, id=2469]
    0x0854a978 JavaThread "http-80-Processor128" daemon [_thread_blocked, id=2468]
    0x08d940c0 JavaThread "http-80-Processor126" daemon [_thread_in_native, id=2466]
    0x087c4998 JavaThread "http-80-Processor114" daemon [_thread_blocked, id=2186]
    0x0895ec90 JavaThread "http-80-Processor113" daemon [_thread_in_native, id=2185]
    0x0895e028 JavaThread "http-80-Processor112" daemon [_thread_blocked, id=2184]
    0x08e9bbb8 JavaThread "http-80-Processor82" daemon [_thread_in_native, id=2147]
    0x08634cf8 JavaThread "http-80-Processor80" daemon [_thread_in_native, id=2145]
    0x085d93c0 JavaThread "http-80-Processor68" daemon [_thread_blocked, id=2129]
    0x085d8658 JavaThread "http-80-Processor67" daemon [_thread_blocked, id=2128]
    0x085d7310 JavaThread "http-80-Processor66" daemon [_thread_in_native, id=2127]
    0x084c57e0 JavaThread "http-80-Processor60" daemon [_thread_blocked, id=2121]
    0x084c4a78 JavaThread "http-80-Processor59" daemon [_thread_blocked, id=2120]
    0x08588db8 JavaThread "http-80-Processor56" daemon [_thread_blocked, id=2117]
    0x086a2130 JavaThread "http-80-Processor54" daemon [_thread_in_native, id=2115]
    0x0878cfa8 JavaThread "http-80-Processor50" daemon [_thread_in_native, id=2108]
    0x087b9148 JavaThread "http-80-Processor39" daemon [_thread_blocked, id=2097]
    0x082f38c8 JavaThread "http-80-Processor29" daemon [_thread_blocked, id=2087]
    0x087a6a30 JavaThread "http-80-Processor28" daemon [_thread_in_native, id=2086]
    0x36b33540 JavaThread "http-80-Monitor" [_thread_blocked, id=1769]
    0x351178e0 JavaThread "http-80-Processor4" daemon [_thread_blocked, id=1747]
    0x35a72210 JavaThread "http-80-Processor1" daemon [_thread_blocked, id=1744]
    0x363ed3b0 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=1743]
    0x35a60238 JavaThread "Thread-4" [_thread_blocked, id=1742]
    =>0x36bc7068 JavaThread "SessionReaperDaemon[null, 2005-11-01 22:38:23.388]" daemon [_thread_in_Java, id=1739]
    0x363633c8 JavaThread "DistributedCache:DistributedSessions:EventDispatcher" daemon [_thread_blocked, id=1738]
    0x363771a0 JavaThread "DistributedCache:DistributedSessions" daemon [_thread_blocked, id=1737]
    0x36ba85f0 JavaThread "ReplicatedCache:ReplicatedSessionsMisc" daemon [_thread_blocked, id=1736]
    0x36bbb118 JavaThread "TcpRingListener" daemon [_thread_in_native, id=1735]
    0x36373478 JavaThread "Cluster" daemon [_thread_blocked, id=1733]
    0x36351268 JavaThread "PacketPublisher" daemon [_thread_blocked, id=1732]
    0x36350d60 JavaThread "PacketReceiver" daemon [_thread_blocked, id=1731]
    0x36ba8858 JavaThread "PacketListenerN" daemon [_thread_in_native, id=1730]
    0x36bb11e8 JavaThread "PacketListener1" daemon [_thread_in_native, id=1729]
    0x36b9f530 JavaThread "Logger@9508926 3.0/315" daemon [_thread_blocked, id=1728]
    0x081b0910 JavaThread "RMI TCP Accept-9000" daemon [_thread_in_native, id=1726]
    0x081b5c90 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=1725]
    0x081b57c0 JavaThread "Timer-0" daemon [_thread_blocked, id=1724]
    0x08157b60 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1722]
    0x081566e8 JavaThread "CompilerThread1" daemon [_thread_blocked, id=1721]
    0x08155698 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1720]
    0x08154578 JavaThread "AdapterThread" daemon [_thread_blocked, id=1719]
    0x08153618 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1718]
    0x081528e8 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=1717]
    0x08148480 JavaThread "Finalizer" daemon [_thread_blocked, id=1716]
    0x08148008 JavaThread "Reference Handler" daemon [_thread_blocked, id=1715]
    0x0805c598 JavaThread "main" [_thread_in_native, id=1705]
    Other Threads:
    0x08145bc8 VMThread [id=1714]
    0x082237b0 WatcherThread [id=1727]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation total 523840K, used 289536K [0x3d1c0000, 0x5d1c0000, 0x5d1c0000)
    eden space 523392K, 55% used [0x3d1c0000, 0x4ec800f0, 0x5d0e0000)
    from space 448K, 0% used [0x5d150000, 0x5d150000, 0x5d1c0000)
    to space 448K, 0% used [0x5d0e0000, 0x5d0e0000, 0x5d150000)
    concurrent mark-sweep generation total 1318912K, used 521347K [0x5d1c0000, 0xad9c0000, 0xad9c0000)
    concurrent-mark-sweep perm gen total 30720K, used 30499K [0xad9c0000, 0xaf7c0000, 0xb19c0000)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 08:02 180163 /usr/java/jdk1.5.0_05/bin/java
    08056000-08058000 rwxp 0000e000 08:02 180163 /usr/java/jdk1.5.0_05/bin/java
    08058000-0aea7000 rwxp 00000000 00:00 0
    2af40000-2b067000 rwxp 00001000 00:00 0
    2b067000-2b06a000 ---p 00000000 00:00 0
    2b06a000-2b0e8000 rwxp 00003000 00:00 0
    2b0e8000-2b0eb000 ---p 00081000 00:00 0
    2b0eb000-2b169000 rwxp 00084000 00:00 0
    2b169000-2b16c000 ---p 00102000 00:00 0
    2b16c000-2b1ea000 rwxp 00105000 00:00 0
    2b1ea000-2b1ed000 ---p 00081000 00:00 0
    2b1ed000-2b26b000 rwxp 00084000 00:00 0
    2b26b000-2b26e000 ---p 00081000 00:00 0
    2b26e000-2b2ec000 rwxp 00084000 00:00 0
    2b2ec000-2b367000 r-xs 00000000 08:02 1784003 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/xsdlib.jar
    2b367000-2b382000 r-xs 00000000 08:02 1784002 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/xmlrpc-1.2-b1.jar
    2b382000-2b39d000 r-xs 00000000 08:02 1784001 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/xml-apis.jar
    2b39d000-2b476000 r-xs 00000000 08:02 1784000 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/xercesImpl.jar
    2b476000-2b554000 r-xs 00000000 08:02 1783999 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/xalan.jar
    2b554000-2b557000 ---p 00000000 00:00 0
    2b557000-2b5d5000 rwxp 00003000 00:00 0
    2b5d5000-2b5d8000 ---p 00081000 00:00 0
    2b5d8000-2b656000 rwxp 00084000 00:00 0
    2b656000-2b659000 ---p 00081000 00:00 0
    2b659000-2b6d7000 rwxp 00084000 00:00 0
    2b6d7000-2b6da000 ---p 00102000 00:00 0
    2b6da000-2b758000 rwxp 00105000 00:00 0
    2b758000-2b75b000 ---p 00183000 00:00 0
    2b75b000-2b7d9000 rwxp 00186000 00:00 0
    2b7d9000-2b7dc000 rwxp 00000000 00:00 0
    2b7dc000-2b85a000 rwxp 00207000 00:00 0
    2b85a000-2b85d000 ---p 00285000 00:00 0
    2b85d000-2b8db000 rwxp 00288000 00:00 0
    2b8db000-2b8de000 ---p 00102000 00:00 0
    2b8de000-2b95c000 rwxp 00105000 00:00 0
    2b95c000-2b95f000 ---p 00183000 00:00 0
    2b95f000-2ba5d000 rwxp 00186000 00:00 0
    2ba5d000-2ba60000 ---p 00182000 00:00 0
    2ba60000-2bade000 rwxp 00185000 00:00 0
    2bade000-2bae1000 ---p 00203000 00:00 0
    2bae1000-2bb5f000 rwxp 00206000 00:00 0
    2bb5f000-2bb62000 ---p 00284000 00:00 0
    2bb62000-2bbe0000 rwxp 00287000 00:00 0
    2bbe0000-2bbe3000 ---p 00305000 00:00 0
    2bbe3000-2bc61000 rwxp 00308000 00:00 0
    2bc61000-2bc64000 ---p 00204000 00:00 0
    2bc64000-2bce2000 rwxp 00207000 00:00 0
    2bce2000-2bce5000 ---p 00285000 00:00 0
    2bce5000-2bd63000 rwxp 00288000 00:00 0
    2bd63000-2bd66000 rwxp 00000000 00:00 0
    2bd66000-2bde4000 rwxp 00186000 00:00 0
    2bde4000-2bde7000 ---p 00204000 00:00 0
    2bde7000-2be65000 rwxp 00207000 00:00 0
    2be65000-2be68000 rwxp 00000000 00:00 0
    2be68000-2bee6000 rwxp 00084000 00:00 0
    2bee6000-2bee9000 ---p 00102000 00:00 0
    2bee9000-2bf67000 rwxp 00105000 00:00 0
    2bf67000-2bf6a000 ---p 00183000 00:00 0
    2bf6a000-2bfe8000 rwxp 00186000 00:00 0
    2bfe8000-2bfeb000 ---p 00204000 00:00 0
    2bfeb000-2c069000 rwxp 00207000 00:00 0
    2c069000-2c06c000 ---p 00081000 00:00 0
    2c06c000-2c0ea000 rwxp 00084000 00:00 0
    2c0ea000-2c0ed000 ---p 00102000 00:00 0
    2c0ed000-2c16b000 rwxp 00105000 00:00 0
    2c16b000-2c16e000 ---p 00183000 00:00 0
    2c16e000-2c1ec000 rwxp 00186000 00:00 0
    2c1ec000-2c1ef000 rwxp 00000000 00:00 0
    2c1ef000-2c26d000 rwxp 00207000 00:00 0
    2c26d000-2c270000 ---p 00285000 00:00 0
    2c270000-2c2ee000 rwxp 00288000 00:00 0
    2c2ee000-2c2f1000 ---p 00306000 00:00 0
    2c2f1000-2c36f000 rwxp 00309000 00:00 0
    2c36f000-2c372000 ---p 00387000 00:00 0
    2c372000-2c3f0000 rwxp 0038a000 00:00 0
    2c3f0000-2c3f3000 ---p 00204000 00:00 0
    2c3f3000-2c471000 rwxp 00207000 00:00 0
    2c471000-2c474000 ---p 00285000 00:00 0
    2c474000-2c4f2000 rwxp 00288000 00:00 0
    2c4f2000-2c4f5000 ---p 00102000 00:00 0
    2c4f5000-2c573000 rwxp 00105000 00:00 0
    2c573000-2c576000 ---p 00183000 00:00 0
    2c576000-2c5f4000 rwxp 00186000 00:00 0
    2c5f4000-2c5f7000 ---p 00204000 00:00 0
    2c5f7000-2c675000 rwxp 00207000 00:00 0
    2c675000-2c678000 ---p 00285000 00:00 0
    2c678000-2c6f6000 rwxp 00288000 00:00 0
    2c6f6000-2c6f9000 ---p 00306000 00:00 0
    2c6f9000-2c777000 rwxp 00309000 00:00 0
    2c777000-2c77a000 ---p 00387000 00:00 0
    2c77a000-2c7f8000 rwxp 0038a000 00:00 0
    2c7f8000-2c7fb000 ---p 00081000 00:00 0
    2c7fb000-2c879000 rwxp 00084000 00:00 0
    2c879000-2c87c000 ---p 00102000 00:00 0
    2c87c000-2c8fa000 rwxp 00105000 00:00 0
    2c8fa000-2c8fd000 ---p 00183000 00:00 0
    2c8fd000-2c97b000 rwxp 00186000 00:00 0
    2c97b000-2c97e000 rwxp 00000000 00:00 0
    2c97e000-2c9fc000 rwxp 00207000 00:00 0
    2c9fc000-2c9ff000 ---p 00285000 00:00 0
    2c9ff000-2ca7d000 rwxp 00288000 00:00 0
    2ca7d000-2ca80000 ---p 00285000 00:00 0
    2ca80000-2cafe000 rwxp 00288000 00:00 0
    2cafe000-2cb01000 rwxp 00000000 00:00 0
    2cb01000-2cb7f000 rwxp 00309000 00:00 0
    2cb7f000-2cb82000 ---p 00387000 00:00 0
    2cb82000-2cc58000 rwxp 0038a000 00:00 0
    2cc58000-2cd00000 ---p 00029000 00:00 0
    2cd7f000-2cd82000 ---p 00000000 00:00 0
    2cd82000-2cefe000 rwxp 00003000 00:00 0
    2cefe000-2cf00000 ---p 00029000 00:00 0
    2cf00000-2d0fe000 rwxp 0002b000 00:00 0
    2d0fe000-2d100000 ---p 00038000 00:00 0
    2d17b000-2d17e000 ---p 00000000 00:00 0
    2d17e000-2d1fc000 rwxp 00003000 00:00 0
    2d1fc000-2d1ff000 ---p 00081000 00:00 0
    2d1ff000-2d27d000 rwxp 00084000 00:00 0
    2d27d000-2d280000 rwxp 00000000 00:00 0
    2d280000-2d2fe000 rwxp 00105000 00:00 0
    2d2fe000-2d301000 ---p 00183000 00:00 0
    2d301000-2d37f000 rwxp 00186000 00:00 0
    2d37f000-2d382000 ---p 00204000 00:00 0
    2d382000-2d600000 rwxp 00207000 00:00 0
    2d67f000-2d682000 ---p 00000000 00:00 0
    2d682000-2e1ff000 rwxp 00003000 00:00 0
    2e1ff000-2e200000 ---p 00029000 00:00 0
    2e200000-2e25d000 rwxp 0002a000 00:00 0
    2e25d000-2e300000 ---p 00059000 00:00 0
    2e300000-2e700000 rwxp 00000000 00:00 0
    2e77f000-2e782000 ---p 00000000 00:00 0
    2e782000-30500000 rwxp 00003000 00:00 0
    3057f000-30582000 rwxp 00000000 00:00 0
    30582000-30700000 rwxp 00003000 00:00 0
    3077d000-30780000 ---p 00000000 00:00 0
    30780000-307fe000 rwxp 00003000 00:00 0
    307fe000-30801000 ---p 00081000 00:00 0
    30801000-3087f000 rwxp 00084000 00:00 0
    3087f000-30882000 ---p 00102000 00:00 0
    30882000-30a00000 rwxp 00105000 00:00 0
    30a7f000-30a82000 ---p 00000000 00:00 0
    30a82000-30ffc000 rwxp 00003000 00:00 0
    30ffc000-31000000 ---p 00029000 00:00 0
    31000000-311fc000 rwxp 00095000 00:00 0
    311fc000-31200000 ---p 00029000 00:00 0
    31200000-313fc000 rwxp 0002d000 00:00 0
    313fc000-31400000 ---p 000fd000 00:00 0
    31416000-31434000 r-xs 00000000 08:02 1783998 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/wsdl4j.jar
    31434000-31442000 r-xs 00000000 08:02 1783997 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/wrapper.jar
    31442000-3147f000 r-xs 00000000 08:02 1783995 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/webInstaller.jar
    3147f000-31482000 ---p 00000000 00:00 0
    31482000-315ff000 rwxp 00003000 00:00 0
    315ff000-31600000 ---p 00000000 00:00 0
    31625000-3167f000 r-xs 00000000 08:02 1783994 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/velocity-1.4-rc1.jar
    3167f000-31682000 ---p 00000000 00:00 0
    31682000-31dfb000 rwxp 00003000 00:00 0
    31dfb000-31e00000 ---p 00000000 00:00 0
    31e14000-31e17000 ---p 00000000 00:00 0
    31e17000-31e95000 rwxp 00003000 00:00 0
    31e95000-31e98000 ---p 00081000 00:00 0
    31e98000-31f16000 rwxp 00084000 00:00 0
    31f16000-31f19000 ---p 00102000 00:00 0
    31f19000-31f97000 rwxp 00105000 00:00 0
    31f97000-31f9a000 ---p 00183000 00:00 0
    31f9a000-32018000 rwxp 00186000 00:00 0
    32018000-3201b000 ---p 00183000 00:00 0
    3201b000-32099000 rwxp 00186000 00:00 0
    32099000-3209c000 ---p 00204000 00:00 0
    3209c000-3211a000 rwxp 00207000 00:00 0
    3211a000-3211d000 ---p 00285000 00:00 0
    3211d000-3219b000 rwxp 00288000 00:00 0
    3219b000-3219e000 ---p 00102000 00:00 0
    3219e000-3221c000 rwxp 00105000 00:00 0
    3221c000-3221f000 ---p 00183000 00:00 0
    3221f000-3229d000 rwxp 00186000 00:00 0
    3229d000-322a0000 ---p 00204000 00:00 0
    322a0000-3231e000 rwxp 00207000 00:00 0
    3231e000-32321000 ---p 00285000 00:00 0
    32321000-3239f000 rwxp 00288000 00:00 0
    3239f000-323a2000 ---p 00306000 00:00 0
    323a2000-32420000 rwxp 00309000 00:00 0
    32420000-32423000 ---p 00387000 00:00 0
    32423000-324a1000 rwxp 0038a000 00:00 0
    324a1000-324a4000 ---p 00408000 00:00 0
    324a4000-32522000 rwxp 0040b000 00:00 0
    32522000-32525000 ---p 00285000 00:00 0
    32525000-325a3000 rwxp 00288000 00:00 0
    325a3000-325a6000 ---p 00102000 00:00 0
    325a6000-32624000 rwxp 00105000 00:00 0
    32624000-32627000 ---p 00183000 00:00 0
    32627000-326a5000 rwxp 00186000 00:00 0
    326a5000-326a8000 ---p 00204000 00:00 0
    326a8000-32726000 rwxp 00207000 00:00 0
    32726000-32729000 ---p 00285000 00:00 0
    32729000-327a7000 rwxp 00288000 00:00 0
    327a7000-327aa000 ---p 00102000 00:00 0
    327aa000-32828000 rwxp 00105000 00:00 0
    32828000-3282b000 rwxp 00000000 00:00 0
    3282b000-328a9000 rwxp 00186000 00:00 0
    328a9000-328ac000 ---p 00204000 00:00 0
    328ac000-3292a000 rwxp 00207000 00:00 0
    3292a000-3292d000 ---p 00285000 00:00 0
    3292d000-329ab000 rwxp 00288000 00:00 0
    329ab000-329ae000 rwxp 00000000 00:00 0
    329ae000-32a2c000 rwxp 00309000 00:00 0
    32a2c000-32a2f000 ---p 00183000 00:00 0
    32a2f000-32aad000 rwxp 00186000 00:00 0
    32aad000-32ab0000 rwxp 00000000 00:00 0
    32ab0000-32b2e000 rwxp 00207000 00:00 0
    32b2e000-32b31000 ---p 00000000 00:00 0
    32b31000-32baf000 rwxp 00003000 00:00 0
    32baf000-32bb2000 ---p 00081000 00:00 0
    32bb2000-32c30000 rwxp 00084000 00:00 0
    32c30000-32c33000 ---p 00102000 00:00 0
    32c33000-32cb1000 rwxp 00105000 00:00 0
    32cb1000-32cb4000 rwxp 00000000 00:00 0
    32cb4000-32d32000 rwxp 00186000 00:00 0
    32d32000-32d35000 rwxp 00000000 00:00 0
    32d35000-32db3000 rwxp 00084000 00:00 0
    32db3000-32db6000 ---p 00102000 00:00 0
    32db6000-32e34000 rwxp 00105000 00:00 0
    32e34000-32e37000 rwxp 00000000 00:00 0
    32e37000-32eb5000 rwxp 00186000 00:00 0
    32eb5000-32eb8000 ---p 00204000 00:00 0
    32eb8000-32f36000 rwxp 00207000 00:00 0
    32f36000-32f39000 rwxp 00000000 00:00 0
    32f39000-32fb7000 rwxp 00288000 00:00 0
    32fb7000-32fba000 ---p 00306000 00:00 0
    32fba000-33038000 rwxp 00309000 00:00 0
    33038000-3303b000 rwxp 00000000 00:00 0
    3303b000-330b9000 rwxp 00186000 00:00 0
    330b9000-330bc000 ---p 00204000 00:00 0
    330bc000-3313a000 rwxp 00207000 00:00 0
    3313a000-3313d000 ---p 00285000 00:00 0
    3313d000-331bb000 rwxp 00288000 00:00 0
    331bb000-331be000 ---p 00102000 00:00 0
    331be000-3323c000 rwxp 00105000 00:00 0
    3323c000-3323f000 ---p 00183000 00:00 0
    3323f000-332bd000 rwxp 00186000 00:00 0
    332bd000-332c0000 ---p 00204000 00:00 0
    332c0000-3333e000 rwxp 00207000 00:00 0
    3333e000-33341000 ---p 00285000 00:00 0
    33341000-333bf000 rwxp 00288000 00:00 0
    333bf000-333c2000 ---p 00306000 00:00 0
    333c2000-33440000 rwxp 00309000 00:00 0
    33440000-33443000 ---p 00183000 00:00 0
    33443000-334c1000 rwxp 00186000 00:00 0
    334e2000-33531000 r-xs 00000000 08:02 1783993 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/torque-3.0.2.jar
    33531000-33537000 r-xs 00000000 08:02 1783992 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/textile4j-1.20.jar
    33537000-336e9000 r-xs 00000000 08:02 1783991 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/tangosol.jar
    336e9000-33710000 r-xs 00000000 08:02 1783990 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/ss_css2.jar
    33710000-33716000 r-xs 00000000 08:02 1783989 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/smtp.jar
    33716000-3371b000 r-xs 00000000 08:02 1783987 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/saaj.jar
    3371b000-33720000 r-xs 00000000 08:02 1783986 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/relaxngDatatype.jar
    33720000-33726000 r-xs 00000000 08:02 1783985 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/pop3.jar
    33726000-3373e000 r-xs 00000000 08:02 1783984 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/p6spy.jar
    3373e000-3375b000 r-xs 00000000 08:02 1783983 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/oscache-2.1.1.jar
    3375b000-337ff000 r-xs 00000000 08:02 1783982 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/optional.jar
    337ff000-3396a000 r-xs 00000000 08:02 1783981 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/msv.jar
    3396a000-33979000 r-xs 00000000 08:02 1783980 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/msutil.jar
    33979000-3398a000 r-xs 00000000 08:02 1783979 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/mssqlserver.jar
    3398a000-339d1000 r-xs 00000000 08:02 1783978 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/msbase.jar
    339d1000-339e8000 r-xs 00000000 08:02 1783977 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/metadata-extractor-2.2.2.jar
    339e8000-33a15000 r-xs 00000000 08:02 1783976 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/mailapi.jar
    33a15000-33a6c000 r-xs 00000000 08:02 1783975 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/log4j-1.2.8.jar
    33a6c000-33a6e000 r-xs 00000000 08:02 1783974 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jdbc2_0-stdext.jar
    33a6e000-33ab6000 r-xs 00000000 08:02 1783973 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jcs.jar
    33ab6000-33ac2000 r-xs 00000000 08:02 1783972 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jazzy-core.jar
    33ac2000-33acb000 r-xs 00000000 08:02 1783971 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jaxrpc.jar
    33acb000-33b06000 r-xs 00000000 08:02 1783970 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jaxen-1.1-beta-4.jar
    33b06000-33b0e000 r-xs 00000000 08:02 1783969 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jakarta-regexp-1.2.jar
    33b0e000-33b1e000 r-xs 00000000 08:02 1783968 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jakarta-oro-2.0.6.jar
    33b1e000-33c9f000 r-xs 00000000 08:02 1783967 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jai_core.jar
    33c9f000-33cd3000 r-xs 00000000 08:02 1783966 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/jai_codec.jar
    33cd3000-33d03000 r-xs 00000000 08:02 1783965 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/isorelax.jar
    33d03000-33d25000 r-xs 00000000 08:02 1783964 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/imap.jar
    33d25000-33d54000 r-xs 00000000 08:02 1783963 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/hessian-3.0.13.jar
    33d54000-33d58000 r-xs 00000000 08:02 1783962 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/fast-md5-2.5.jar
    33d58000-33db8000 r-xs 00000000 08:02 1783961 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/dom4j-1.5-rc1.jar
    33db8000-33df5000 r-xs 00000000 08:02 1783960 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/dnsjava-1.6.6.jar
    33df5000-33ef6000 r-xs 00000000 08:02 1783958 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/db-ojb-1.0.1.jar
    33ef6000-33f0f000 r-xs 00000000 08:02 1783957 /usr/local/apache-tomcat-5.5.12/webapps/x/WEB-INF/lib/crossdb.jar
    33f0f000-33f1d000

    An aside: When I switch to ParallelGC, afterrunning
    for about 5-6 hours, GC times start doubling
    (approximately) in time, eventually moving upwardsof
    2 minutes per full GC.That sounds to me like you're swapping during full
    GCs. I wouldn't assume that 2 GB of physical RAM is
    sufficient to run an app with an 1800 MB heap. Have
    you done any heap profiling to determine the real
    working set of your application? When the GCs get
    this pathologically long, is there disk activity on
    the machine?Hmm.. So what should we size our heap to on a server with 2GB? The server is essentially only running the Java process. What would you consider "safe"?
    While heap profiling with jconsole, the application only utilizes 1.1GB of the heap at peaks. We want to expand that eventually as we size our caches larger.
    I don't believe there's disk activity with long GCs, but I can't confirm that 100% right now. The server is reading files from another machine, so the disks are more or less untouched while the app is running. There's heavy caching. The only reason disks would be hititng if your guess regarding the swapping turns out correct. After you suggest a safer way to calc a max heap size for our machine, I'll try again with ParallelGC and a smaller heap.
    Some points:
    - I tried increasing perm generation size. It'snot
    even close to filled (according to gc log).(As you mentioned, "old generation" instead of "perm
    generation".) What about when the full collection
    times are taking 2 minutes in duration? Is there any
    disk activity indicating swapping?Again, not positive on the disk situation -- should get an answer above to figure this out.
    - I have not tried the -client VM, will this break
    performance on a production application?The client VM does not generate as high quality
    machine code as the server VM but on the x86
    architecture many benchmark scores for the two
    compilers are comparable. I would recommend you try
    that option if only to narrow down the scope of the
    crash you're seeing.
    - I saw a bug related to a ConcMarkSweepGC crashon
    4-cpu machines opened on Oct 17th. I've testedthis
    on 4-cpu (2 proc with hyperthreading) and 2-cpu
    (hyperthreading off) -- both exhibit this issue.What bug ID is this?http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6337544
    - Are there any known issues with this collectorand
    Linux 2.4.21-37.ELsmp? Should we be using
    LD_ASSUME_KERNEL=2.2.5 or anything? For java to
    recognize this variable, do we just need itspecified
    anywhere in the environment at JVM start? How dowe
    test if it worked?No issues as far as I know, but I am not a Linux
    expert. I think in order to toggle which thread
    library is used you just need that variable exported
    in the environment when the JVM starts up. You can
    probably use pmap to see which thread library got
    loaded to verify the one you expect is present in the
    loaded objects.Trying various combinations of LD_ASSUME_KERNEL to switch threading versions has no real effect on stability there. We're seeing crashes repeatedly still.
    I'm going to attempt to deploy some machines with a new kernel as well and see if we can reproduce on those. I'll try ParallelGC again as soon as I get your recommendations on the configuration.

  • JVM crashes with Out of SWAP space

    Hello every body,
    We have a problem in a production environnement. The JVM crashes every time with the log file below.
    The application which is running don't occupate all memory and we don't understand why an outofmemory exception is raised.
    It's not probably due to an allocation inside the application because the exception should be an outofmemory exception : Java Heap space.
    Please, somebody can help me to understant what append or to give me some advices?
    Thank you a lot for help.
    # An unexpected error has been detected by Java Runtime Environment:
    # java.lang.OutOfMemoryError: requested 41943040 bytes for GrET in C:\BUILD_AREA\jdk6_07\hotspot\src\share\vm\utilities\growableArray.cpp. Out of swap space?
    #  Internal Error (allocation.inline.hpp:42), pid=2700, tid=2112
    #  Error: GrET in C:\BUILD_AREA\jdk6_07\hotspot\src\share\vm\utilities\growableArray.cpp
    # Java VM: Java HotSpot(TM) Server VM (10.0-b23 mixed mode windows-x86)
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    ---------------  T H R E A D  ---------------
    Current thread (0x65b97400):  VMThread [stack: 0x65bd0000,0x65c20000] [id=2112]
    Stack: [0x65bd0000,0x65c20000]
    [error occurred during error reporting (printing stack bounds), id 0x80000001]
    VM_Operation (0x66dffa14): ParallelGCSystemGC, mode: safepoint, requested by thread 0x65fb9400
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x65f3cc00 JavaThread "pool-3-thread-1" [_thread_blocked, id=2780, stack(0x67300000,0x67350000)]
      0x66547800 JavaThread "RMI RenewClean-[192.16.252.55:3916]" daemon [_thread_blocked, id=3076, stack(0x672b0000,0x67300000)]
      0x66547400 JavaThread "RMI RenewClean-[192.16.252.53:2046]" daemon [_thread_blocked, id=2292, stack(0x67260000,0x672b0000)]
      0x6650d800 JavaThread "RMI RenewClean-[192.16.254.46:3126]" daemon [_thread_blocked, id=3012, stack(0x67210000,0x67260000)]
      0x663e8400 JavaThread "RMI RenewClean-[192.16.254.45:3026]" daemon [_thread_blocked, id=2596, stack(0x671c0000,0x67210000)]
      0x65f99800 JavaThread "RMI RenewClean-[192.16.252.54:1623]" daemon [_thread_blocked, id=3128, stack(0x67170000,0x671c0000)]
      0x65f99400 JavaThread "RMI RenewClean-[192.16.254.55:1992]" daemon [_thread_blocked, id=2720, stack(0x67120000,0x67170000)]
      0x66480800 JavaThread "RMI RenewClean-[192.16.254.54:4954]" daemon [_thread_blocked, id=2920, stack(0x670d0000,0x67120000)]
      0x66480000 JavaThread "RMI RenewClean-[192.16.254.53:3093]" daemon [_thread_blocked, id=2068, stack(0x67080000,0x670d0000)]
      0x6653f800 JavaThread "RMI RenewClean-[192.16.254.52:2543]" daemon [_thread_blocked, id=2156, stack(0x67030000,0x67080000)]
      0x66411400 JavaThread "RMI RenewClean-[192.16.254.51:3893]" daemon [_thread_blocked, id=1688, stack(0x66fe0000,0x67030000)]
      0x66468800 JavaThread "RMI RenewClean-[192.16.254.50:3371]" daemon [_thread_blocked, id=2688, stack(0x66f90000,0x66fe0000)]
      0x663f8400 JavaThread "RMI RenewClean-[192.16.254.49:4374]" daemon [_thread_blocked, id=2656, stack(0x66f40000,0x66f90000)]
      0x65f27800 JavaThread "RMI RenewClean-[192.16.254.48:3311]" daemon [_thread_blocked, id=748, stack(0x66ef0000,0x66f40000)]
      0x65f27400 JavaThread "RMI RenewClean-[192.16.254.47:2571]" daemon [_thread_blocked, id=1048, stack(0x66ea0000,0x66ef0000)]
      0x65f9e400 JavaThread "RMI RenewClean-[192.16.238.145:1673]" daemon [_thread_blocked, id=2332, stack(0x66e50000,0x66ea0000)]
      0x6602e800 JavaThread "RMI RenewClean-[192.16.238.144:2332]" daemon [_thread_blocked, id=3100, stack(0x66e00000,0x66e50000)]
      0x65fb9400 JavaThread "GC Daemon" daemon [_thread_blocked, id=1608, stack(0x66db0000,0x66e00000)]
      0x6657a400 JavaThread "RMI RenewClean-[192.16.238.143:3902]" daemon [_thread_blocked, id=2668, stack(0x66d60000,0x66db0000)]
      0x65fa9c00 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=2624, stack(0x66d10000,0x66d60000)]
      0x65ff4c00 JavaThread "pool-4-thread-1" [_thread_blocked, id=2864, stack(0x66390000,0x663e0000)]
      0x65fbf400 JavaThread "pool-2-thread-1" [_thread_blocked, id=2696, stack(0x66340000,0x66390000)]
      0x65f6d400 JavaThread "Thread-0" [_thread_blocked, id=3016, stack(0x662f0000,0x66340000)]
      0x65ebf000 JavaThread "WrapperSimpleAppMain" [_thread_blocked, id=696, stack(0x662a0000,0x662f0000)]
      0x00265c00 JavaThread "DestroyJavaVM" [_thread_blocked, id=564, stack(0x00680000,0x006d0000)]
      0x65fecc00 JavaThread "Wrapper-Connection" daemon [_thread_in_native, id=1224, stack(0x66170000,0x661c0000)]
      0x65ec9c00 JavaThread "Wrapper-Control-Event-Monitor" daemon [_thread_blocked, id=2896, stack(0x660d0000,0x66120000)]
      0x65bbf800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1284, stack(0x65e00000,0x65e50000)]
      0x65bbd000 JavaThread "CompilerThread1" daemon [_thread_blocked, id=3040, stack(0x65db0000,0x65e00000)]
      0x65bb8000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1472, stack(0x65d60000,0x65db0000)]
      0x65bb6c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=2000, stack(0x65d10000,0x65d60000)]
      0x65bb6000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2732, stack(0x65cc0000,0x65d10000)]
      0x65b9ec00 JavaThread "Finalizer" daemon [_thread_blocked, id=2008, stack(0x65c70000,0x65cc0000)]
      0x65b9a800 JavaThread "Reference Handler" daemon [_thread_blocked, id=1304, stack(0x65c20000,0x65c70000)]
    Other Threads:
    =>0x65b97400 VMThread [stack: 0x65bd0000,0x65c20000] [id=2112]
      0x65bc1000 WatcherThread [stack: 0x65e50000,0x65ea0000] [id=192]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread:  ([mutex/lock_event])
    [0x00265408/0x00000310] Threads_lock - owner thread: 0x65b97400
    [0x002655a8/0x000002d0] Heap_lock - owner thread: 0x65fb9400
    Heap
    PSYoungGen      total 76928K, used 344K [0x5ad20000, 0x60d40000, 0x653c0000)
      eden space 76544K, 0% used [0x5ad20000,0x5ad20000,0x5f7e0000)
      from space 384K, 89% used [0x5f7e0000,0x5f836070,0x5f840000)
      to   space 10944K, 0% used [0x60290000,0x60290000,0x60d40000)
    PSOldGen        total 1341888K, used 529414K [0x077c0000, 0x59630000, 0x5ad20000)
      object space 1341888K, 39% used [0x077c0000,0x27cc1b38,0x59630000)
    PSPermGen       total 16384K, used 10204K [0x037c0000, 0x047c0000, 0x077c0000)
      object space 16384K, 62% used [0x037c0000,0x041b73a0,0x047c0000)
    Dynamic libraries:
    0x00400000 - 0x00423000      D:\Java\jdk1.6.0_07\bin\java.exe
    0x78460000 - 0x784e2000      C:\WINNT\system32\ntdll.dll
    0x78ed0000 - 0x78f35000      C:\WINNT\system32\ADVAPI32.dll
    0x77e70000 - 0x77f2f000      C:\WINNT\system32\KERNEL32.dll
    0x770c0000 - 0x7712f000      C:\WINNT\system32\RPCRT4.dll
    0x78fb0000 - 0x78fbf000      C:\WINNT\system32\Secur32.dll
    0x7c340000 - 0x7c396000      D:\Java\jdk1.6.0_07\jre\bin\msvcr71.dll
    0x6dac0000 - 0x6de7a000      D:\Java\jdk1.6.0_07\jre\bin\server\jvm.dll
    0x77e00000 - 0x77e5f000      C:\WINNT\system32\USER32.dll
    0x77f40000 - 0x77f7c000      C:\WINNT\system32\GDI32.dll
    0x77540000 - 0x77571000      C:\WINNT\system32\WINMM.dll
    0x6d320000 - 0x6d328000      D:\Java\jdk1.6.0_07\jre\bin\hpi.dll
    0x68ea0000 - 0x68eab000      C:\WINNT\system32\PSAPI.DLL
    0x6d820000 - 0x6d82c000      D:\Java\jdk1.6.0_07\jre\bin\verify.dll
    0x6d3c0000 - 0x6d3df000      D:\Java\jdk1.6.0_07\jre\bin\java.dll
    0x6d860000 - 0x6d86f000      D:\Java\jdk1.6.0_07\jre\bin\zip.dll
    0x660a0000 - 0x660b7000      D:\Prism8.2\lib\wrapper.dll
    0x6d620000 - 0x6d633000      D:\Java\jdk1.6.0_07\jre\bin\net.dll
    0x74fb0000 - 0x74fc4000      C:\WINNT\system32\WS2_32.dll
    0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.DLL
    0x74fa0000 - 0x74fa8000      C:\WINNT\system32\WS2HELP.DLL
    0x74f50000 - 0x74f6e000      C:\WINNT\system32\msafd.dll
    0x74f90000 - 0x74f97000      C:\WINNT\System32\wshtcpip.dll
    0x77830000 - 0x7783c000      C:\WINNT\System32\rnr20.dll
    0x77970000 - 0x77994000      C:\WINNT\system32\DNSAPI.DLL
    0x74fd0000 - 0x74fd9000      C:\WINNT\system32\WSOCK32.dll
    0x77310000 - 0x77323000      C:\WINNT\system32\iphlpapi.dll
    0x774f0000 - 0x774f5000      C:\WINNT\system32\ICMP.dll
    0x772f0000 - 0x77307000      C:\WINNT\system32\MPRAPI.dll
    0x750d0000 - 0x750e0000      C:\WINNT\system32\SAMLIB.DLL
    0x7ccc0000 - 0x7cd10000      C:\WINNT\system32\NETAPI32.DLL
    0x77be0000 - 0x77bf1000      C:\WINNT\system32\NTDSAPI.dll
    0x77940000 - 0x7796c000      C:\WINNT\system32\WLDAP32.DLL
    0x75140000 - 0x75146000      C:\WINNT\system32\NETRAP.dll
    0x7cd20000 - 0x7ce0f000      C:\WINNT\system32\OLE32.DLL
    0x779a0000 - 0x77a3c000      C:\WINNT\system32\OLEAUT32.DLL
    0x77380000 - 0x773b0000      C:\WINNT\system32\ACTIVEDS.DLL
    0x77350000 - 0x77373000      C:\WINNT\system32\ADSLDPC.DLL
    0x77820000 - 0x7782e000      C:\WINNT\system32\RTUTILS.DLL
    0x783c0000 - 0x78451000      C:\WINNT\system32\SETUPAPI.DLL
    0x78d20000 - 0x78d85000      C:\WINNT\system32\USERENV.DLL
    0x774b0000 - 0x774e4000      C:\WINNT\system32\RASAPI32.dll
    0x77490000 - 0x774a1000      C:\WINNT\system32\rasman.dll
    0x77500000 - 0x77522000      C:\WINNT\system32\TAPI32.dll
    0x77b40000 - 0x77bc4000      C:\WINNT\system32\COMCTL32.DLL
    0x77c70000 - 0x77cb9000      C:\WINNT\system32\SHLWAPI.DLL
    0x77330000 - 0x77349000      C:\WINNT\system32\DHCPCSVC.DLL
    0x777d0000 - 0x777d8000      C:\WINNT\System32\winrnr.dll
    0x777e0000 - 0x777e5000      C:\WINNT\system32\rasadhlp.dll
    0x7ca00000 - 0x7ca23000      C:\WINNT\system32\rsaenh.dll
    0x79570000 - 0x795fd000      C:\WINNT\system32\CRYPT32.dll
    0x77400000 - 0x77411000      C:\WINNT\system32\MSASN1.dll
    0x7ce30000 - 0x7d07d000      C:\WINNT\system32\shell32.dll
    0x6d7c0000 - 0x6d7c6000      D:\Java\jdk1.6.0_07\jre\bin\rmi.dll
    VM Arguments:
    jvm_args: -Djava.rmi.server.codebase=file:.\Prism.jar -Djava.security.policy=.\policy -Xms64m -Xmx1500m -Djava.library.path=.\lib;.\config -Dwrapper.key=ouZmthkGY4rb0RsE -Dwrapper.port=32000 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=1388 -Dwrapper.version=3.2.3 -Dwrapper.native_library=wrapper -Dwrapper.service=TRUE -Dwrapper.cpu.timeout=10 -Dwrapper.jvmid=1
    java_command: org.tanukisoftware.wrapper.WrapperSimpleApp com.socgen.prism.simulateur.client.PrismSimulatorClientOld
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=D:\Java\jdk1.6.0_07
    PATH=D:\Java\jdk1.6.0_07;D:\Java\jdk1.6.0_07\bin;C:\Program Files\nsr\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\MSDE\BINN;ITAPaging;D:\PROGRA~1\patrol\Patrol3\bin;D:\Program Files\patrol\Patrol3\bin;D:\Program Files\patrol\Patrol3\Pamo;C:\Program Files\Resource Kit\;C:\Program Files\Support Tools\;C:\Program Files\Dell\SysMgt\oma\bin;C:\Program Files\Dell\SysMgt\RAC3
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows 2000 Build 2195 Service Pack 4
    CPU:total 4 (1 cores per cpu, 2 threads per core) family 15 model 2 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2097151k(2059808k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (10.0-b23) for windows-x86 JRE (1.6.0_07-b06), built on Jun 10 2008 01:09:43 by "java_re" with MS VC++ 7.1
    time: Sat Aug 09 17:44:47 2008
    elapsed time: 79016 seconds

    Answers are in this thread: http://forum.java.sun.com/thread.jspa?threadID=5139476
    Be sure to read the whole thing.

  • How can i fix my mac book pro. My safari crashes all the time, my screen will turn black for no reason, My iPhoto crashes during upload from my iPhone, I can't highlight anything and I can't drag anything.

    Someone PLEASE help me! I cant figure out what is going on with my computer.  I don't install anything weird, but my brother does.  He's very good at computer tech stuff and is in I.T, but I cant help but blame him for all the problems my Mac is having.  Nothing works like it should.  My safari will randomally crash, my screen will randomally turn back, my iphoto will crash during uploading from my iPhone, I cant highlight anything, I can't drag anything.  When I want to click on something, I have to click over and over again just for it to even register.  I know everything is up to date and recently reset my PRAM.  I'm running Lion and have a lot of room on my hardrive.  I have an external harddrive and I'm wondering if I should just move all of my important files over to it and completly wipe out my computer's hardrive and start from scratch. 

    Some folks can't leave well enough alone, and insist on downloading all sorts of additional "stuff" that ends up making their Mac unstable.
    Standard Mac OS X on properly-operating Hardware does not crash, unless you start installing too many add-ons.
    You can run "just the basics" by holding down the Shift key at Startup. This does one pass of Disk Repair, then loads a minimal set of extensions, and comes up in Safe Mode. If it works OK that way, but crashes in "regular", it's the add-ons.
    There ia another layer of add-on junk that can be added to Safari. If the only remaining problem is Safari crashing, those add-ons can be disabled as well.

  • JVM crash when main process exiting

    I started a main process as root user, in the execution of the main process, i started several child processes. All children processes execution are ok, but then main process existing, it throws jvm crash as following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00002aaabc7005a8, pid=19195, tid=1106790720
    # JRE version: 6.0_31-b02
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.6-b01 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    [error occurred during error reporting (printing problematic frame), id 0xb]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0000000056224800): VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=2 (SEGV_ACCERR), si_addr=0x00002aaabc9a5848
    Registers:
    RAX=0x0000003311838510, RBX=0x0000003288c1c000, RCX=0x0000000000000000, RDX=0x0000000000000032
    RSP=0x0000000041f83ca0, RBP=0x0000000041f83e30, RSI=0x0000000000000000, RDI=0x0000003311838510
    R8 =0x00002aaab1ed8028, R9 =0x0000000000004aff, R10=0x0000000000000000, R11=0x0000003289233750
    R12=0x00002ae5cca86143, R13=0x000000005666b790, R14=0x0000000000000022, R15=0x000000000000000c
    RIP=0x00002aaabc7005a8, EFLAGS=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    Top of Stack: (sp=0x0000000041f83ca0)
    0x0000000041f83ca0: 00002aaabc77fb22 0000003288a0d7e4
    0x0000000041f83cb0: 00002ae5cbe9e000 00002ae5cbe9e590
    0x0000000041f83cc0: 00000000561ce5c0 00002aaab41eb5f0
    0x0000000041f83cd0: 0000000056492c40 00002aaab41ebac0
    0x0000000041f83ce0: 00000000561c5a40 00000000561c53a0
    0x0000000041f83cf0: 00000000561c27b0 00000000561c4050
    0x0000000041f83d00: 00002aaab41f5b30 00000000566514d0
    0x0000000041f83d10: 000000005666b790 00000000565c1070
    0x0000000041f83d20: 00000000565c0bc0 00000000563fea60
    0x0000000041f83d30: 00000000566519a0 00000000563fe5c0
    0x0000000041f83d40: 00000000565bfdc0 00000000565c19b0
    0x0000000041f83d50: 00000000565c1510 00000000565c0720
    0x0000000041f83d60: 00000000565c0270 00000000565c1e50
    0x0000000041f83d70: 00002ae5cbe9f508 00002ae5cbe9fa00
    0x0000000041f83d80: 00002ae5cbffd000 00000000561c2c80
    0x0000000041f83d90: 00000000561c6010 00000000563fe120
    0x0000000041f83da0: 000000005666bc60 00002ae5cbffd4c8
    0x0000000041f83db0: 0000003311838510 000000005671baa0
    0x0000000041f83dc0: 0000000000000000 0000003288a0d660
    0x0000000041f83dd0: 0000000000000000 0000003288c1c000
    0x0000000041f83de0: 0000003288c1c000 0000000041f83cb0
    0x0000000041f83df0: 00000000ccbdb240 0000000000000000
    0x0000000041f83e00: 0000000000000110 00000000418b2840
    0x0000000041f83e10: 00002ae5cca86143 0000000041f83ed0
    0x0000000041f83e20: 0000000000000000 0000000041f83f80
    0x0000000041f83e30: 0000000000000000 00000032892334f5
    0x0000000041f83e40: 00000000418b2840 0000000041f83e60
    0x0000000041f83e50: 00002ae5cca86143 00002ae5cc4dd6c9
    0x0000000041f83e60: 0000000041f83e80 00002ae5cc86e53f
    0x0000000041f83e70: 0000000041f83ed0 00000000418b2840
    0x0000000041f83e80: 0000000041f83ec0 00002ae5cc86d7ea
    0x0000000041f83e90: 0000000056223bb0 00000000561e3560
    Instructions: (pc=0x00002aaabc7005a8)
    0x00002aaabc700588: ff 25 aa 52 2a 00 68 6f 00 00 00 e9 f0 f8 ff ff
    0x00002aaabc700598: ff 25 a2 52 2a 00 68 70 00 00 00 e9 e0 f8 ff ff
    0x00002aaabc7005a8: ff 25 9a 52 2a 00 68 71 00 00 00 e9 d0 f8 ff ff
    0x00002aaabc7005b8: ff 25 92 52 2a 00 68 72 00 00 00 e9 c0 f8 ff ff
    Register to memory mapping:
    RAX=0x0000003311838510 is an unknown value
    RBX=0x0000003288c1c000: rtldglobal+0 in /lib64/ld-linux-x86-64.so.2 at 0x0000003288a00000
    RCX=0x0000000000000000 is an unknown value
    RDX=0x0000000000000032 is an unknown value
    RSP=0x0000000041f83ca0 is an unknown value
    RBP=0x0000000041f83e30 is an unknown value
    RSI=0x0000000000000000 is an unknown value
    RDI=0x0000003311838510 is an unknown value
    R8 =0x00002aaab1ed8028: <offset 0x208028> in /scratch/product/12.1.0/grid/oui/lib/linux64/liboraInstaller.so at 0x00002aaab1cd0000
    R9 =0x0000000000004aff is an unknown value
    R10=0x0000000000000000 is an unknown value
    R11=0x0000003289233750: __cxa_finalize+0 in /lib64/libc.so.6 at 0x0000003289200000
    R12=0x00002ae5cca86143: <offset 0xa86143> in /scratch/product/12.1.0/grid/jdk/jre/lib/amd64/server/libjvm.so at 0x00002ae5cc000000
    R13=0x000000005666b790 is an unknown value
    R14=0x0000000000000022 is an unknown value
    R15=0x000000000000000c is an unknown value
    Stack: [0x0000000041e84000,0x0000000041f85000], sp=0x0000000041f83ca0, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    [error occurred during error reporting (printing native stack), id 0xb]
    VM_Operation (0x00000000418b2840): Exit, mode: safepoint, requested by thread 0x00000000561ca800
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00000000566d1800 JavaThread "GetActiveNodesThread" daemon [_thread_blocked, id=19282, stack(0x00000000426de000,0x00000000427df000)]
    0x0000000056259000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=19205, stack(0x00000000422da000,0x00000000423db000)]
    0x0000000056257000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19204, stack(0x00000000421d9000,0x00000000422da000)]
    0x0000000056251800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=19203, stack(0x0000000040705000,0x0000000040806000)]
    0x000000005624f000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=19202, stack(0x0000000040604000,0x0000000040705000)]
    0x000000005622d000 JavaThread "Finalizer" daemon [_thread_blocked, id=19201, stack(0x00000000420d8000,0x00000000421d9000)]
    0x000000005622b000 JavaThread "Reference Handler" daemon [_thread_blocked, id=19200, stack(0x0000000041fd7000,0x00000000420d8000)]
    0x00000000561ca800 JavaThread "main" [_thread_blocked, id=19196, stack(0x00000000417b3000,0x00000000418b4000)]
    Other Threads:
    =>0x0000000056224800 VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    VM state:at safepoint (shutting down)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00000000561c8f80] Threads_lock - owner thread: 0x0000000056224800
    Heap
    PSYoungGen total 42048K, used 38587K [0x00000000f5560000, 0x00000000fa780000, 0x0000000100000000)
    eden space 36096K, 91% used [0x00000000f5560000,0x00000000f75b6b90,0x00000000f78a0000)
    from space 5952K, 91% used [0x00000000f78a0000,0x00000000f7df80a8,0x00000000f7e70000)
    to space 5952K, 0% used [0x00000000fa1b0000,0x00000000fa1b0000,0x00000000fa780000)
    PSOldGen total 96000K, used 0K [0x00000000e0000000, 0x00000000e5dc0000, 0x00000000f5560000)
    object space 96000K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000e5dc0000)
    PSPermGen total 24320K, used 24139K [0x00000000dae00000, 0x00000000dc5c0000, 0x00000000e0000000)
    object space 24320K, 99% used [0x00000000dae00000,0x00000000dc592e20,0x00000000dc5c0000)
    Code Cache [0x00002aaaaae90000, 0x00002aaaab100000, 0x00002aaaade90000)
    total_blobs=620 nmethods=309 adapters=265 free_code_cache=49025536 largest_free_block=6976
    Dynamic libraries:
    40000000-40009000 r-xp 00000000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    40108000-4010a000 rwxp 00008000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    ....

    I started a main process as root user, in the execution of the main process, i started several child processes. All children processes execution are ok, but then main process existing, it throws jvm crash as following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00002aaabc7005a8, pid=19195, tid=1106790720
    # JRE version: 6.0_31-b02
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.6-b01 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    [error occurred during error reporting (printing problematic frame), id 0xb]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0000000056224800): VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=2 (SEGV_ACCERR), si_addr=0x00002aaabc9a5848
    Registers:
    RAX=0x0000003311838510, RBX=0x0000003288c1c000, RCX=0x0000000000000000, RDX=0x0000000000000032
    RSP=0x0000000041f83ca0, RBP=0x0000000041f83e30, RSI=0x0000000000000000, RDI=0x0000003311838510
    R8 =0x00002aaab1ed8028, R9 =0x0000000000004aff, R10=0x0000000000000000, R11=0x0000003289233750
    R12=0x00002ae5cca86143, R13=0x000000005666b790, R14=0x0000000000000022, R15=0x000000000000000c
    RIP=0x00002aaabc7005a8, EFLAGS=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    Top of Stack: (sp=0x0000000041f83ca0)
    0x0000000041f83ca0: 00002aaabc77fb22 0000003288a0d7e4
    0x0000000041f83cb0: 00002ae5cbe9e000 00002ae5cbe9e590
    0x0000000041f83cc0: 00000000561ce5c0 00002aaab41eb5f0
    0x0000000041f83cd0: 0000000056492c40 00002aaab41ebac0
    0x0000000041f83ce0: 00000000561c5a40 00000000561c53a0
    0x0000000041f83cf0: 00000000561c27b0 00000000561c4050
    0x0000000041f83d00: 00002aaab41f5b30 00000000566514d0
    0x0000000041f83d10: 000000005666b790 00000000565c1070
    0x0000000041f83d20: 00000000565c0bc0 00000000563fea60
    0x0000000041f83d30: 00000000566519a0 00000000563fe5c0
    0x0000000041f83d40: 00000000565bfdc0 00000000565c19b0
    0x0000000041f83d50: 00000000565c1510 00000000565c0720
    0x0000000041f83d60: 00000000565c0270 00000000565c1e50
    0x0000000041f83d70: 00002ae5cbe9f508 00002ae5cbe9fa00
    0x0000000041f83d80: 00002ae5cbffd000 00000000561c2c80
    0x0000000041f83d90: 00000000561c6010 00000000563fe120
    0x0000000041f83da0: 000000005666bc60 00002ae5cbffd4c8
    0x0000000041f83db0: 0000003311838510 000000005671baa0
    0x0000000041f83dc0: 0000000000000000 0000003288a0d660
    0x0000000041f83dd0: 0000000000000000 0000003288c1c000
    0x0000000041f83de0: 0000003288c1c000 0000000041f83cb0
    0x0000000041f83df0: 00000000ccbdb240 0000000000000000
    0x0000000041f83e00: 0000000000000110 00000000418b2840
    0x0000000041f83e10: 00002ae5cca86143 0000000041f83ed0
    0x0000000041f83e20: 0000000000000000 0000000041f83f80
    0x0000000041f83e30: 0000000000000000 00000032892334f5
    0x0000000041f83e40: 00000000418b2840 0000000041f83e60
    0x0000000041f83e50: 00002ae5cca86143 00002ae5cc4dd6c9
    0x0000000041f83e60: 0000000041f83e80 00002ae5cc86e53f
    0x0000000041f83e70: 0000000041f83ed0 00000000418b2840
    0x0000000041f83e80: 0000000041f83ec0 00002ae5cc86d7ea
    0x0000000041f83e90: 0000000056223bb0 00000000561e3560
    Instructions: (pc=0x00002aaabc7005a8)
    0x00002aaabc700588: ff 25 aa 52 2a 00 68 6f 00 00 00 e9 f0 f8 ff ff
    0x00002aaabc700598: ff 25 a2 52 2a 00 68 70 00 00 00 e9 e0 f8 ff ff
    0x00002aaabc7005a8: ff 25 9a 52 2a 00 68 71 00 00 00 e9 d0 f8 ff ff
    0x00002aaabc7005b8: ff 25 92 52 2a 00 68 72 00 00 00 e9 c0 f8 ff ff
    Register to memory mapping:
    RAX=0x0000003311838510 is an unknown value
    RBX=0x0000003288c1c000: rtldglobal+0 in /lib64/ld-linux-x86-64.so.2 at 0x0000003288a00000
    RCX=0x0000000000000000 is an unknown value
    RDX=0x0000000000000032 is an unknown value
    RSP=0x0000000041f83ca0 is an unknown value
    RBP=0x0000000041f83e30 is an unknown value
    RSI=0x0000000000000000 is an unknown value
    RDI=0x0000003311838510 is an unknown value
    R8 =0x00002aaab1ed8028: <offset 0x208028> in /scratch/product/12.1.0/grid/oui/lib/linux64/liboraInstaller.so at 0x00002aaab1cd0000
    R9 =0x0000000000004aff is an unknown value
    R10=0x0000000000000000 is an unknown value
    R11=0x0000003289233750: __cxa_finalize+0 in /lib64/libc.so.6 at 0x0000003289200000
    R12=0x00002ae5cca86143: <offset 0xa86143> in /scratch/product/12.1.0/grid/jdk/jre/lib/amd64/server/libjvm.so at 0x00002ae5cc000000
    R13=0x000000005666b790 is an unknown value
    R14=0x0000000000000022 is an unknown value
    R15=0x000000000000000c is an unknown value
    Stack: [0x0000000041e84000,0x0000000041f85000], sp=0x0000000041f83ca0, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    [error occurred during error reporting (printing native stack), id 0xb]
    VM_Operation (0x00000000418b2840): Exit, mode: safepoint, requested by thread 0x00000000561ca800
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00000000566d1800 JavaThread "GetActiveNodesThread" daemon [_thread_blocked, id=19282, stack(0x00000000426de000,0x00000000427df000)]
    0x0000000056259000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=19205, stack(0x00000000422da000,0x00000000423db000)]
    0x0000000056257000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19204, stack(0x00000000421d9000,0x00000000422da000)]
    0x0000000056251800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=19203, stack(0x0000000040705000,0x0000000040806000)]
    0x000000005624f000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=19202, stack(0x0000000040604000,0x0000000040705000)]
    0x000000005622d000 JavaThread "Finalizer" daemon [_thread_blocked, id=19201, stack(0x00000000420d8000,0x00000000421d9000)]
    0x000000005622b000 JavaThread "Reference Handler" daemon [_thread_blocked, id=19200, stack(0x0000000041fd7000,0x00000000420d8000)]
    0x00000000561ca800 JavaThread "main" [_thread_blocked, id=19196, stack(0x00000000417b3000,0x00000000418b4000)]
    Other Threads:
    =>0x0000000056224800 VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    VM state:at safepoint (shutting down)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00000000561c8f80] Threads_lock - owner thread: 0x0000000056224800
    Heap
    PSYoungGen total 42048K, used 38587K [0x00000000f5560000, 0x00000000fa780000, 0x0000000100000000)
    eden space 36096K, 91% used [0x00000000f5560000,0x00000000f75b6b90,0x00000000f78a0000)
    from space 5952K, 91% used [0x00000000f78a0000,0x00000000f7df80a8,0x00000000f7e70000)
    to space 5952K, 0% used [0x00000000fa1b0000,0x00000000fa1b0000,0x00000000fa780000)
    PSOldGen total 96000K, used 0K [0x00000000e0000000, 0x00000000e5dc0000, 0x00000000f5560000)
    object space 96000K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000e5dc0000)
    PSPermGen total 24320K, used 24139K [0x00000000dae00000, 0x00000000dc5c0000, 0x00000000e0000000)
    object space 24320K, 99% used [0x00000000dae00000,0x00000000dc592e20,0x00000000dc5c0000)
    Code Cache [0x00002aaaaae90000, 0x00002aaaab100000, 0x00002aaaade90000)
    total_blobs=620 nmethods=309 adapters=265 free_code_cache=49025536 largest_free_block=6976
    Dynamic libraries:
    40000000-40009000 r-xp 00000000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    40108000-4010a000 rwxp 00008000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    ....

  • JVM Crash with big applications (swing)?

    We have a big application (C/S, Swing) with more than 1000 GUI's.
    When I navigate over 60/70 GUI's, the jvm crash and shows:
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    --------- UNCAUGHT EXCEPTION ---------
    Exception occurred during event dispatching:
    Any ideas are welcome.

    JVM 1.3.1_02 - 1.3.1_07

  • JVM crashes with: VM_Operation generation collection for allocation

    I have a program using JNI, and the gc crashes JVM occasionally. The crashing occurs randomly. I can reproduce it by starting the program several times. Following is the JVM dump message:
    =================================================================
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xb78eff96, pid=11442, tid=2830195904
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_04-b05 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x120f96]
    --------------- T H R E A D ---------------
    Current thread (0x080b5780): VMThread [id=11447]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x000e9bc8
    Registers:
    EAX=0xa8b1530c, EBX=0xb7b11e28, ECX=0xb7aff648, EDX=0x000e9bc8
    ESP=0xa8b1516c, EBP=0xa8b15184, ESI=0x08436eb4, EDI=0xa8b1530c
    EIP=0xb78eff96, CR2=0x000e9bc8, EFLAGS=0x00210203
    Top of Stack: (sp=0xa8b1516c)
    0xa8b1516c: a8b1530c 080b51a0 080b8330 b7b11e28
    0xa8b1517c: 08436eb0 0841d398 a8b151b4 b78f2061
    0xa8b1518c: a8b1530c 08436eb4 a90e9bc8 a90e9bc8
    0xa8b1519c: 080ba01c b7b08fa0 b7b08f40 000003d8
    0xa8b151ac: a8b1530c 0806b2b0 a8b151d4 b7a6decb
    0xa8b151bc: 0808c320 a8b1530c a8b1530c a8b1530c
    0xa8b151cc: b7b11e28 00000001 a8b15214 b790695c
    0xa8b151dc: a8b1530c 00000005 0806b3e8 0806b3e8
    Instructions: (pc=0xb78eff96)
    0xb78eff86: c3 a4 1e 22 00 8b 16 85 d2 74 35 3b 57 1c 73 30
    0xb78eff96: 8b 02 83 e0 03 83 f8 03 75 30 8b 02 83 e0 fc 89
    Stack: [0xa8a96000,0xa8b16000), sp=0xa8b1516c, free space=508k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x120f96]
    V [libjvm.so+0x123061]
    V [libjvm.so+0x29eecb]
    V [libjvm.so+0x13795c]
    V [libjvm.so+0x11f7cd]
    V [libjvm.so+0x13741f]
    V [libjvm.so+0xf5ce1]
    V [libjvm.so+0x137682]
    V [libjvm.so+0x2ed2e4]
    V [libjvm.so+0x2ed046]
    V [libjvm.so+0x2ec6b7]
    V [libjvm.so+0x2ec8c5]
    V [libjvm.so+0x2ec4d0]
    V [libjvm.so+0x25f108]
    C [libpthread.so.0+0x42b6]
    VM_Operation (0xa7242004): generation collection for allocation, mode: safepoint, requested by thread 0x08499520
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0xa89146e8 JavaThread "DestroyJavaVM" [_thread_blocked, id=11442]
    0x084a0520 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=11462]
    0x0849eac8 JavaThread "AWT-Shutdown" [_thread_blocked, id=11461]
    0x08499520 JavaThread "Thread-2" daemon [_thread_blocked, id=11460]
    0x08471790 JavaThread "Thread-1" [_thread_in_native, id=11459]
    0x0842b890 JavaThread "AWT-XAWT" daemon [_thread_blocked, id=11455]
    0x084118b0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=11454]
    0x080c5b10 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=11452]
    0x080c45c0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=11451]
    0x080c3728 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11450]
    0x080b8fd0 JavaThread "Finalizer" daemon [_thread_blocked, id=11449]
    0x080b8330 JavaThread "Reference Handler" daemon [_thread_blocked, id=11448]
    Other Threads:
    =>0x080b5780 VMThread [id=11447]
    0x080c6fa0 WatcherThread [id=11453]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x0805b5b0/0x0805b5d8] Threads_lock - owner thread: 0x080b5780
    [0x0805ba00/0x0805ba18] Heap_lock - owner thread: 0x08499520
    Heap
    def new generation total 576K, used 550K [0xa8ba0000, 0xa8c40000, 0xa9080000)
    eden space 512K, 100% used [0xa8ba0000, 0xa8c20000, 0xa8c20000)
    from space 64K, 60% used [0xa8c30000, 0xa8c39ad8, 0xa8c40000)
    to space 64K, 2% used [0xa8c20000, 0xa8c206c8, 0xa8c30000)
    tenured generation total 1408K, used 798K [0xa9080000, 0xa91e0000, 0xacba0000)
    the space 1408K, 56% used [0xa9080000, 0xa9147b50, 0xa9147c00, 0xa91e0000)
    compacting perm gen total 8192K, used 7693K [0xacba0000, 0xad3a0000, 0xb0ba0000)
    the space 8192K, 93% used [0xacba0000, 0xad323780, 0xad323800, 0xad3a0000)
    No shared spaces configured.
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 03:43 5145000 /usr/java/jdk1.5.0_04/bin/java
    08056000-08058000 rwxp 0000e000 03:43 5145000 /usr/java/jdk1.5.0_04/bin/java
    08058000-08a04000 rwxp 08058000 00:00 0 [heap]
    42000000-4212e000 r-xp 00000000 03:43 655363 /lib/tls/libc-2.3.2.so
    4212e000-42131000 rwxp 0012e000 03:43 655363 /lib/tls/libc-2.3.2.so
    42131000-42133000 rwxp 42131000 00:00 0
    a6e13000-a6e2e000 r-xp 00000000 03:43 4112449 /usr/share/fonts/default/Type1/n021003l.pfb
    a6e2e000-a6e3e000 rwxs 00000000 00:07 213713006 /SYSV00002cb2 (deleted)
    a6e3e000-a6e52000 r-xp 00000000 03:43 4112443 /usr/share/fonts/default/Type1/n019044l.pfb
    a6e52000-a6e6d000 r-xp 00000000 03:43 4112449 /usr/share/fonts/default/Type1/n021003l.pfb
    a6e6d000-a6e80000 r-xp 00000000 03:43 4112441 /usr/share/fonts/default/Type1/n019043l.pfb
    a6e80000-a6ecc000 rwxp a6e80000 00:00 0
    a6ecc000-a70a1000 rwxs 00000000 00:07 213680229 /SYSV00000000 (deleted)
    a70a1000-a70a9000 r-xp 00000000 03:43 6979921 /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2
    a70a9000-a70aa000 rwxp 00007000 03:43 6979921 /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2
    a70aa000-a70c3000 r-xp 00000000 03:43 6979920 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    a70c3000-a70c5000 rwxp 00019000 03:43 6979920 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    a70c5000-a70c8000 ---p a70c5000 00:00 0
    a70c8000-a7145000 rwxp a70c8000 00:00 0
    a7145000-a7148000 ---p a7145000 00:00 0
    a7148000-a71c5000 rwxp a7148000 00:00 0
    a71c5000-a71c8000 ---p a71c5000 00:00 0
    a71c8000-a7245000 rwxp a71c8000 00:00 0
    a7245000-a7248000 ---p a7245000 00:00 0
    a7248000-a72c5000 rwxp a7248000 00:00 0
    a72c5000-a72d8000 r-xp 00000000 03:43 6883133 /usr/X11R6/lib/libXmu.so.6.2
    a72d8000-a72d9000 rwxp 00013000 03:43 6883133 /usr/X11R6/lib/libXmu.so.6.2
    a72d9000-a74c8000 r-xp 00000000 03:43 1445820 /opt/tools/multimedia/install_flash_player_7_linux/libflashplayer.so
    a74c8000-a74d8000 rwxp 001ef000 03:43 1445820 /opt/tools/multimedia/install_flash_player_7_linux/libflashplayer.so
    a74d8000-a759f000 rwxp a74d8000 00:00 0
    a759f000-a75b3000 r-xp 00000000 03:43 6883089 /usr/X11R6/lib/libICE.so.6.3
    a75b3000-a75b4000 rwxp 00013000 03:43 6883089 /usr/X11R6/lib/libICE.so.6.3
    a75b4000-a75b6000 rwxp a75b4000 00:00 0
    a75b6000-a75bd000 r-xp 00000000 03:43 6883092 /usr/X11R6/lib/libSM.so.6.0
    a75bd000-a75be000 rwxp 00007000 03:43 6883092 /usr/X11R6/lib/libSM.so.6.0
    a75be000-a75dc000 r-xp 00000000 03:43 360471 /usr/lib/libexpat.so.0.4.0
    a75dc000-a75de000 rwxp 0001e000 03:43 360471 /usr/lib/libexpat.so.0.4.0
    a75de000-a75e6000 r-xp 00000000 03:43 3212363 /usr/lib/libgcc_s.so.1
    a75e6000-a75e7000 rwxp 00007000 03:43 3212363 /usr/lib/libgcc_s.so.1
    a75e7000-a76ad000 r-xp 00000000 03:43 3212368 /usr/lib/libstdc++.so.6.0.3
    a76ad000-a76b2000 rwxp 000c6000 03:43 3212368 /usr/lib/libstdc++.so.6.0.3
    a76b2000-a76b7000 rwxp a76b2000 00:00 0
    a76b7000-a76fd000 r-xp 00000000 03:43 6883098 /usr/X11R6/lib/libXt.so.6.0
    a76fd000-a7700000 rwxp 00046000 03:43 6883098 /usr/X11R6/lib/libXt.so.6.0
    a7700000-a7701000 rwxp a7700000 00:00 0
    a7701000-a7725000 r-xp 00000000 03:43 3428509 /usr/local/garnome/lib/libpangoft2-1.0.so.0.800.1
    a7725000-a7726000 rwxp 00024000 03:43 3428509 /usr/local/garnome/lib/libpangoft2-1.0.so.0.800.1
    a7726000-a772a000 r-xp 00000000 03:43 6883231 /usr/X11R6/lib/libXfixes.so.3.0
    a772a000-a772b000 rwxp 00003000 03:43 6883231 /usr/X11R6/lib/libXfixes.so.3.0
    a772b000-a7751000 r-xp 00000000 03:43 6883201 /usr/X11R6/lib/libfontconfig.so.1.0.4
    a7751000-a7756000 rwxp 00026000 03:43 6883201 /usr/X11R6/lib/libfontconfig.so.1.0.4
    a7756000-a7757000 rwxp a7756000 00:00 0
    a7757000-a7763000 r-xp 00000000 03:43 360515 /usr/lib/libz.so.1.1.4
    a7763000-a7765000 rwxp 0000b000 03:43 360515 /usr/lib/libz.so.1.1.4
    a7765000-a77c1000 r-xp 00000000 03:43 365899 /usr/lib/libfreetype.so.6.3.7
    a77c1000-a77c8000 rwxp 0005c000 03:43 365899 /usr/lib/libfreetype.so.6.3.7
    a77c8000-a77d8000 r-xp 00000000 03:43 6883206 /usr/X11R6/lib/libXft.so.2.1.2
    a77d8000-a77d9000 rwxp 0000f000 03:43 6883206 /usr/X11R6/lib/libXft.so.2.1.2
    a77d9000-a77e0000 r-xp 00000000 03:43 6883155 /usr/X11R6/lib/libXi.so.6.0
    a77e0000-a77e1000 rwxp 00006000 03:43 6883155 /usr/X11R6/lib/libXi.so.6.0
    a77e1000-a781f000 r-xp 00000000 03:43 3524199 /home/steven/mozilla/objdir/nsprpub/pr/src/libnspr4.so
    a781f000-a7821000 rwxp 0003d000 03:43 3524199 /home/steven/mozilla/objdir/nsprpub/pr/src/libnspr4.so
    a7821000-a7822000 rwxp a7821000 00:00 0
    a7822000-a7826000 r-xp 00000000 03:43 50245 /opt/projects/wonder/svn/trunk/javaflash/lib/libgtkxtbin.so
    a7826000-a7827000 rwxp 00003000 03:43 50245 /opt/projects/wonder/svn/trunk/javaflash/lib/libgtkxtbin.so
    a7827000-a78fe000 r-xp 00000000 03:43 3784903 /usr/local/lib/libiconv.so.2.2.0
    a78fe000-a78ff000 rwxp 000d7000 03:43 3784903 /usr/local/lib/libiconv.so.2.2.0
    a78ff000-a797f000 r-xp 00000000 03:43 7275834 /usr/lib/libglib-2.0.so.0.600.3
    a797f000-a7980000 rwxp 0007f000 03:43 7275834 /usr/lib/libglib-2.0.so.0.600.3
    a7980000-a79b8000 r-xp 00000000 03:43 7275838 /usr/lib/libgobject-2.0.so.0.600.3
    a79b8000-a79b9000 rwxp 00037000 03:43 7275838 /usr/lib/libgobject-2.0.so.0.600.3
    a79be000-a79c8000 r-xp 00000000 03:43 6080345 /usr/local/garnome/lib/gtk-2.0/2.4.0/engines/libredmond95.so
    a79c8000-a79c9000 rwxp 00009000 03:43 6080345 /usr/local/garnome/lib/gtk-2.0/2.4.0/engines/libredmond95.so
    a79c9000-a79d0000 r-xp 00000000 03:43 6080349 /usr/local/garnome/lib/gtk-2.0/2.4.0/engines/libthinice.so
    a79d0000-a79d1000 rwxp 00006000 03:43 6080349 /usr/local/garnome/lib/gtk-2.0/2.4.0/engines/libthinice.so
    a79d1000-a79fe000 r-xp 00000000 03:43 3428497 /usr/local/garnome/lib/libpango-1.0.so.0.800.1
    a79fe000-a7a03000 rwxp 0002c000 03:43 3428497 /usr/local/garnome/lib/libpango-1.0.so.0.800.1
    a7a03000-a7a1b000 r-xp 00000000 03:43 3424601 /usr/local/garnome/lib/libatk-1.0.so.0.901.0
    a7a1b000-a7a1d000 rwxp 00017000 03:43 3424601 /usr/local/garnome/lib/libatk-1.0.so.0.901.0
    a7a1d000-a7a9a000 r-xp 00000000 03:43 3014738 /usr/local/garnome/lib/libgdk-x11-2.0.so.0.600.4
    a7a9a000-a7a9d000 rwxp 0007d000 03:43 3014738 /usr/local/garnome/lib/libgdk-x11-2.0.so.0.600.4
    a7a9d000-a7d74000 r-xp 00000000 03:43 3014741 /usr/local/garnome/lib/libgtk-x11-2.0.so.0.600.4
    a7d74000-a7d7c000 rwxp 002d7000 03:43 3014741 /usr/local/garnome/lib/libgtk-x11-2.0.so.0.600.4
    a7d7c000-a7d7f000 rwxp a7d7c000 00:00 0
    a7d7f000-a7d82000 ---p a7d7f000 00:00 0
    a7d82000-a7dff000 rwxp a7d82000 00:00 0
    a7dff000-a7e06000 r-xp 00000000 03:43 6883224 /usr/X11R6/lib/libXcursor.so.1.0.2
    a7e06000-a7e07000 rwxp 00007000 03:43 6883224 /usr/X11R6/lib/libXcursor.so.1.0.2
    a7e07000-a7e09000 r-xp 00000000 03:43 6883195 /usr/X11R6/lib/libXinerama.so.1.0
    a7e09000-a7e0a000 rwxp 00001000 03:43 6883195 /usr/X11R6/lib/libXinerama.so.1.0
    a7e0a000-a7e1e000 r-xp 00000000 03:43 3014734 /usr/local/garnome/lib/libgdk_pixbuf-2.0.so.0.600.4
    a7e1e000-a7e1f000 rwxp 00014000 03:43 3014734 /usr/local/garnome/lib/libgdk_pixbuf-2.0.so.0.600.4
    a7e1f000-a7e22000 ---p a7e1f000 00:00 0
    a7e22000-a7e9f000 rwxp a7e22000 00:00 0
    a7e9f000-a7f12000 r-xp 00000000 03:43 5145942 /usr/java/jdk1.5.0_04/jre/lib/i386/libfontmanager.so
    a7f12000-a7f1c000 rwxp 00073000 03:43 5145942 /usr/java/jdk1.5.0_04/jre/lib/i386/libfontmanager.so
    a7f1c000-a7f20000 rwxp a7f1c000 00:00 0
    a7f20000-a7f58000 r-xs 00000000 03:43 3196949 /opt/projects/wonder/svn/trunk/javaflash/lib/mysql-connector-java-3.0.9-stable-bin.jar
    a7f58000-a7f70000 r-xs 00000000 03:43 6358581 /opt/projects/wonder/svn/trunk/javaflash/lib/servlet-api.jar
    a7f70000-a7f8c000 r-xs 00000000 03:43 219155 /opt/projects/wonder/svn/trunk/javaflash/lib/openamf-1.0RC11-1.jar
    a7f8c000-a7fb6000 r-xs 00000000 03:43 50909 /opt/projects/wonder/svn/trunk/javaflash/lib/commons-lang-2.0.jar
    a7fb6000-a7fed000 r-xs 00000000 03:43 50910 /opt/projects/wonder/svn/trunk/javaflash/lib/commons-httpclient-2.0.jar
    a7fed000-a8017000 r-xs 00000000 03:43 50908 /opt/projects/wonder/svn/trunk/javaflash/lib/commons-digester.jar
    a8017000-a80a0000 r-xs 00000000 03:43 50258 /opt/projects/wonder/svn/trunk/javaflash/lib/commons-collections-3.1.jar
    a80a0000-a80cf000 r-xs 00000000 03:43 50257 /opt/projects/wonder/svn/trunk/javaflash/lib/commons-beanutils-1.7.0.jar
    a80cf000-a80e6000 r-xs 00000000 03:43 50256 /opt/projects/wonder/svn/trunk/javaflash/lib/astranslator-1.5.8.jar
    a80e6000-a81a2000 r-xp 00000000 03:43 6883076 /usr/X11R6/lib/libX11.so.6.2
    a81a2000-a81a6000 rwxp 000bb000 03:43 6883076 /usr/X11R6/lib/libX11.so.6.2
    a81a6000-a81b2000 r-xp 00000000 03:43 6883095 /usr/X11R6/lib/libXext.so.6.4
    a81b2000-a81b3000 rwxp 0000c000 03:43 6883095 /usr/X11R6/lib/libXext.so.6.4
    a81b3000-a81b5000 r-xp 00000000 03:43 6883215 /usr/X11R6/lib/libXrandr.so.2.0
    a81b5000-a81b6000 rwxp 00002000 03:43 6883215 /usr/X11R6/lib/libXrandr.so.2.0
    a81b6000-a81c0000 r-xp 00000000 03:43 3428505 /usr/local/garnome/lib/libpangox-1.0.so.0.800.1
    a81c0000-a81c1000 rwxp 00009000 03:43 3428505 /usr/local/garnome/lib/libpangox-1.0.so.0.800.1
    a81c1000-a81cb000 r-xs 00000000 03:43 50243 /opt/projects/wonder/svn/trunk/javaflash/lib/commons-logging-1.0.4.jar
    a81cb000-a8201000 r-xp 00000000 03:43 5145974 /usr/java/jdk1.5.0_04/jre/lib/i386/xawt/libmawt.so
    a8201000-a8204000 rwxp 00035000 03:43 5145974 /usr/java/jdk1.5.0_04/jre/lib/i386/xawt/libmawt.so
    a8204000-a8205000 rwxp a8204000 00:00 0
    a8205000-a82cb000 r-xp 00000000 03:43 5145960 /usr/java/jdk1.5.0_04/jre/lib/i386/libmlib_image.so
    a82cb000-a82cc000 rwxp 000c5000 03:43 5145960 /usr/java/jdk1.5.0_04/jre/lib/i386/libmlib_image.so
    a82cc000-a8341000 r-xp 00000000 03:43 5145937 /usr/java/jdk1.5.0_04/jre/lib/i386/libawt.so
    a8341000-a8347000 rwxp 00074000 03:43 5145937 /usr/java/jdk1.5.0_04/jre/lib/i386/libawt.so
    a8347000-a836b000 rwxp a8347000 00:00 0
    a836b000-a8396000 r-xs 00000000 03:43 5145898 /usr/java/jdk1.5.0_04/jre/lib/ext/sunpkcs11.jar
    a8396000-a83bc000 r-xs 00000000 03:43 5145897 /usr/java/jdk1.5.0_04/jre/lib/ext/sunjce_provider.jar
    a83bc000-a8480000 r-xs 00000000 03:43 5145893 /usr/java/jdk1.5.0_04/jre/lib/ext/localedata.jar
    a8480000-a8481000 ---p a8480000 00:00 0
    a8481000-a8500000 rwxp a8481000 00:00 0
    a8500000-a8503000 ---p a8500000 00:00 0
    a8503000-a8580000 rwxp a8503000 00:00 0
    a8580000-a8583000 ---p a8580000 00:00 0
    a8583000-a8600000 rwxp a8583000 00:00 0
    a8600000-a8603000 ---p a8600000 00:00 0
    a8603000-a8680000 rwxp a8603000 00:00 0
    a8680000-a8880000 r-xp 00000000 03:43 479417 /usr/lib/locale/locale-archive
    a8880000-a8883000 ---p a8880000 00:00 0
    a8883000-a892f000 rwxp a8883000 00:00 0
    a892f000-a8a00000 ---p a892f000 00:00 0
    a8a00000-a8a02000 r-xp 00000000 03:43 7275842 /usr/lib/libgmodule-2.0.so.0.600.3
    a8a02000-a8a03000 rwxp 00002000 03:43 7275842 /usr/lib/libgmodule-2.0.so.0.600.3
    a8a03000-a8a08000 r-xp 00000000 03:43 3428535 /usr/local/garnome/lib/libpangoxft-1.0.so.0.800.1
    a8a08000-a8a09000 rwxp 00005000 03:43 3428535 /usr/local/garnome/lib/libpangoxft-1.0.so.0.800.1
    a8a09000-a8a0d000 r-xp 00000000 03:43 5279633 /opt/projects/wonder/svn/trunk/javaflash/src/c/libjavaflash.so
    a8a0d000-a8a0e000 rwxp 00003000 03:43 5279633 /opt/projects/wonder/svn/trunk/javaflash/src/c/libjavaflash.so
    a8a0e000-a8a15000 r-xp 00000000 03:43 6883198 /usr/X11R6/lib/libXrender.so.1.2.2
    a8a15000-a8a16000 rwxp 00006000 03:43 6883198 /usr/X11R6/lib/libXrender.so.1.2.2
    a8a16000-a8a19000 ---p a8a16000 00:00 0
    a8a19000-a8a96000 rwxp a8a19000 00:00 0
    a8a96000-a8a97000 ---p a8a96000 00:00 0
    a8a97000-a8b1b000 rwxp a8a97000 00:00 0
    a8b1b000-a8b37000 rwxp a8b1b000 00:00 0
    a8b37000-a8b38000 rwxp a8b37000 00:00 0
    a8b38000-a8b55000 rwxp a8b38000 00:00 0
    a8b55000-a8b56000 rwxp a8b55000 00:00 0
    a8b56000-a8b57000 rwxp a8b56000 00:00 0
    a8b57000-a8b59000 rwxp a8b57000 00:00 0
    a8b59000-a8b75000 rwxp a8b59000 00:00 0
    a8b75000-a8b79000 rwxp a8b75000 00:00 0
    a8b79000-a8b9f000 rwxp a8b79000 00:00 0
    a8b9f000-a8c40000 rwxp a8b9f000 00:00 0
    a8c40000-a9080000 rwxp a8c40000 00:00 0
    a9080000-a91e0000 rwxp a9080000 00:00 0
    a91e0000-acba0000 rwxp a91e0000 00:00 0
    acba0000-ad3a0000 rwxp acba0000 00:00 0
    ad3a0000-b27a0000 rwxp ad3a0000 00:00 0
    b27a1000-b27a2000 r-xp 00000000 03:43 6979918 /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    b27a2000-b27a3000 rwxp 00000000 03:43 6979918 /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    b27a3000-b27a9000 r-xs 00000000 03:43 606386 /usr/lib/gconv/gconv-modules.cache
    b27a9000-b27ad000 rwxp b27a9000 00:00 0
    b27ad000-b2829000 rwxp b27ad000 00:00 0
    b2829000-b28f9000 rwxp b2829000 00:00 0
    b28f9000-b4829000 rwxp b28f9000 00:00 0
    b4829000-b5064000 r-xs 00000000 03:43 5146001 /usr/java/jdk1.5.0_04/jre/lib/charsets.jar
    b5064000-b5078000 r-xs 00000000 03:43 5146000 /usr/java/jdk1.5.0_04/jre/lib/jce.jar
    b5078000-b50ff000 r-xs 00000000 03:43 5146016 /usr/java/jdk1.5.0_04/jre/lib/jsse.jar
    b50ff000-b5168000 rwxp b50ff000 00:00 0
    b5168000-b7748000 r-xs 00000000 03:43 5146021 /usr/java/jdk1.5.0_04/jre/lib/rt.jar
    b7748000-b775b000 r-xp 00000000 03:43 5145968 /usr/java/jdk1.5.0_04/jre/lib/i386/libzip.so
    b775b000-b775d000 rwxp 00012000 03:43 5145968 /usr/java/jdk1.5.0_04/jre/lib/i386/libzip.so
    b775d000-b777e000 r-xp 00000000 03:43 5145948 /usr/java/jdk1.5.0_04/jre/lib/i386/libjava.so
    b777e000-b7780000 rwxp 00020000 03:43 5145948 /usr/java/jdk1.5.0_04/jre/lib/i386/libjava.so
    b7780000-b7792000 r-xp 00000000 03:43 2523154 /lib/libnsl-2.3.2.so
    b7792000-b7793000 rwxp 00011000 03:43 2523154 /lib/libnsl-2.3.2.so
    b7793000-b7795000 rwxp b7793000 00:00 0
    b7797000-b7798000 r-xp 00000000 03:43 5145953 /usr/java/jdk1.5.0_04/jre/lib/i386/libjawt.so
    b7798000-b7799000 rwxp 00000000 03:43 5145953 /usr/java/jdk1.5.0_04/jre/lib/i386/libjawt.so
    b7799000-b77a4000 r-xp 00000000 03:43 5145967 /usr/java/jdk1.5.0_04/jre/lib/i386/libverify.so
    b77a4000-b77a5000 rwxp 0000b000 03:43 5145967 /usr/java/jdk1.5.0_04/jre/lib/i386/libverify.so
    b77a5000-b77ad000 rwxs 00000000 03:43 1836606 /tmp/hsperfdata_steven/11442
    b77ad000-b77ce000 r-xp 00000000 03:43 1704993 /lib/tls/libm-2.3.2.so
    b77ce000-b77cf000 rwxp 00020000 03:43 1704993 /lib/tls/libm-2.3.2.so
    b77cf000-b7af7000 r-xp 00000000 03:43 5145932 /usr/java/jdk1.5.0_04/jre/lib/i386/client/libjvm.so
    b7af7000-b7b15000 rwxp 00327000 03:43 5145932 /usr/java/jdk1.5.0_04/jre/lib/i386/client/libjvm.so
    b7b15000-b7f2b000 rwxp b7b15000 00:00 0
    b7f2b000-b7f2d000 r-xp 00000000 03:43 2523152 /lib/libdl-2.3.2.so
    b7f2d000-b7f2e000 rwxp 00002000 03:43 2523152 /lib/libdl-2.3.2.so
    b7f2e000-b7f38000 r-xp 00000000 03:43 1704995 /lib/tls/libpthread-0.29.so
    b7f38000-b7f39000 rwxp 0000a000 03:43 1704995 /lib/tls/libpthread-0.29.so
    b7f39000-b7f3b000 rwxp b7f39000 00:00 0
    b7f3c000-b7f3e000 r-xs 00000000 03:43 2033060 /usr/java/jdk1.5.0_04/jre/lib/ext/dnsns.jar
    b7f3e000-b7f49000 r-xp 00000000 03:43 2523429 /lib/libnss_files-2.3.2.so
    b7f49000-b7f4a000 rwxp 0000a000 03:43 2523429 /lib/libnss_files-2.3.2.so
    b7f4a000-b7f50000 r-xp 00000000 03:43 5145970 /usr/java/jdk1.5.0_04/jre/lib/i386/native_threads/libhpi.so
    b7f50000-b7f51000 rwxp 00006000 03:43 5145970 /usr/java/jdk1.5.0_04/jre/lib/i386/native_threads/libhpi.so
    b7f51000-b7f52000 rwxp b7f51000 00:00 0
    b7f52000-b7f53000 ---p b7f52000 00:00 0
    b7f53000-b7f54000 rwxp b7f53000 00:00 0
    b7f54000-b7f69000 r-xp 00000000 03:43 2523138 /lib/ld-2.3.2.so
    b7f69000-b7f6a000 rwxp 00014000 03:43 2523138 /lib/ld-2.3.2.so
    bf769000-bf76c000 ---p bf769000 00:00 0
    bf76c000-bf969000 rwxp bf76c000 00:00 0 [stack]
    ffffe000-fffff000 ---p 00000000 00:00 0 [vdso]
    VM Arguments:
    java_command: sjtu.dctc.wonder.flashui.TestFlashUI
    Environment Variables:
    JAVA_HOME=/usr/java/jdk1.5.0_03
    PATH=/usr/local/garnome/bin:/usr/local/garnome/sbin:/usr/local/kde3.4/bin:/usr/local/kde3.4/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/sbin:/home/steven/bin:/usr/java/jdk1.5.0_03/bin:/opt/ant/bin
    USERNAME=steven
    LD_LIBRARY_PATH=/usr/java/jdk1.5.0_04/jre/lib/i386/client:/usr/java/jdk1.5.0_04/jre/lib/i386:/usr/java/jdk1.5.0_04/jre/../lib/i386:/opt/projects/wonder/svn/trunk/javaflash/src/c:/opt/projects/wonder/svn/trunk/javaflash/lib:/home/steven/mozilla/objdir/dist/lib:/usr/local/garnome/lib:/usr/local/kde3.4/lib:/usr/local/BerkeleyDB.4.3/lib
    SHELL=/bin/bash
    DISPLAY=:0.0
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x2e52f0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGBUS: [libjvm.so+0x2e52f0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGFPE: [libjvm.so+0x25d640], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGPIPE: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x04000000
    SIGILL: [libjvm.so+0x25d640], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x25f980], sa_mask[0]=0x00000004, sa_flags=0x14000004
    SIGHUP: [libjvm.so+0x25f3b0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGINT: [libjvm.so+0x25f3b0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGQUIT: [libjvm.so+0x25f3b0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGTERM: [libjvm.so+0x25f3b0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    --------------- S Y S T E M ---------------
    OS:Red Hat Linux release 9 (Shrike)
    uname:Linux 2.6.12.2-smp #3 SMP Sat Jul 2 08:10:18 CST 2005 i686
    libc:glibc 2.3.2 NPTL 0.29
    rlimit: STACK 8192k, CORE 0k, NPROC 4089, NOFILE 1024, AS infinity
    load average:1.79 0.51 0.22
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 514764k(6852k free), swap 1052248k(907128k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_04-b05) for linux-x86, built on Jun 3 2005 03:17:33 by java_re with gcc 3.2.1-7a (J2SE release)
    ================================================================
    The following is the gc dump when the operation is successful:
    ================================================================
    [GC  {Heap before GC invocations=9:
    Heap
    def new generation   total 576K, used 559K [0x49970000, 0x49a10000, 0x4c0d0000)
      eden space 512K, 100% used [0x49970000, 0x499f0000, 0x499f0000)
      from space 64K,  74% used [0x49a00000, 0x49a0bdf0, 0x49a10000)
      to   space 64K,   0% used [0x499f0000, 0x499f0000, 0x49a00000)
    tenured generation   total 1408K, used 762K [0x4c0d0000, 0x4c230000, 0x69970000)
       the space 1408K,  54% used [0x4c0d0000, 0x4c18ea80, 0x4c18ec00, 0x4c230000)
    compacting perm gen  total 8192K, used 1553K [0x69970000, 0x6a170000, 0x6d970000)
       the space 8192K,  18% used [0x69970000, 0x69af46f0, 0x69af4800, 0x6a170000)
        ro space 8192K,  68% used [0x6d970000, 0x6deea338, 0x6deea400, 0x6e170000)
        rw space 12288K,  47% used [0x6e170000, 0x6e7297d8, 0x6e729800, 0x6ed70000)
    [DefNew: 559K->19K(576K), 0.0018160 secs] 1322K->817K(1984K) Heap after GC invocations=10:
    Heap
    def new generation total 576K, used 19K [0x49970000, 0x49a10000, 0x4c0d0000)
    eden space 512K, 0% used [0x49970000, 0x49970000, 0x499f0000)
    from space 64K, 30% used [0x499f0000, 0x499f4f28, 0x49a00000)
    to space 64K, 0% used [0x49a00000, 0x49a00000, 0x49a10000)
    tenured generation total 1408K, used 798K [0x4c0d0000, 0x4c230000, 0x69970000)
    the space 1408K, 56% used [0x4c0d0000, 0x4c197880, 0x4c197a00, 0x4c230000)
    compacting perm gen total 8192K, used 1553K [0x69970000, 0x6a170000, 0x6d970000)
    the space 8192K, 18% used [0x69970000, 0x69af46f0, 0x69af4800, 0x6a170000)
    ro space 8192K, 68% used [0x6d970000, 0x6deea338, 0x6deea400, 0x6e170000)
    rw space 12288K, 47% used [0x6e170000, 0x6e7297d8, 0x6e729800, 0x6ed70000)
    } , 0.0021780 secs]
    ========================================================================
    The following is the gc dump when JVM crashes:
    ========================================================================
    [GC  {Heap before GC invocations=9:
    Heap
    def new generation   total 576K, used 546K [0x49970000, 0x49a10000, 0x4c0d0000)
      eden space 512K, 100% used [0x49970000, 0x499f0000, 0x499f0000)
      from space 64K,  54% used [0x49a00000, 0x49a08a48, 0x49a10000)
      to   space 64K,   0% used [0x499f0000, 0x499f0000, 0x49a00000)
    tenured generation   total 1408K, used 792K [0x4c0d0000, 0x4c230000, 0x69970000)
       the space 1408K,  56% used [0x4c0d0000, 0x4c1960f0, 0x4c196200, 0x4c230000)
    compacting perm gen  total 8192K, used 1551K [0x69970000, 0x6a170000, 0x6d970000)
       the space 8192K,  18% used [0x69970000, 0x69af3c90, 0x69af3e00, 0x6a170000)
        ro space 8192K,  68% used [0x6d970000, 0x6deea338, 0x6deea400, 0x6e170000)
        rw space 12288K,  47% used [0x6e170000, 0x6e7297d8, 0x6e729800, 0x6ed70000)
    [DefNew#
    =======================================================================
    I can reproduce the error in jdk1.5.0_03, jdk1.5.0_04 and jdk1.6.0-ea-b50. I am sure it's my program's fault, not the gc's. But as I have no knowledge of sun's JVM implementation, I don't know what may be the root cause. What error in JNI may cause the problem above?
    Hope you can help me! Thanks ahead.
    Best Regards,
    Steven Gong                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    It is a core dump. Hence i feel the problem is in
    your native code. I think there is a null pointer
    exception or any exception in your native code. Check
    the native code. If it was java code problem, it
    would have generated an exception.You mean there may be unhandled exceptions in native code that
    may cause this problem?

  • JVM crashes with jdeveloper 11g and jrockit 6

    When i run my application its al going well, when i call some to show data, then all is going well,
    but when i would like to save some, then the jvm crashes, and i have no idea, i've added arguments in the jvm run configuration, etc nothing seems to work, has anybody any idea, because im getting very desperate.
    [JRockit] ERROR: The JVM has crashed. Writing crash information to C:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.52.05\DefaultDomain\jrockit.6136.dump.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:01:35 on Thu Aug 20 16:02:44 2009
    * If you see this dump, please go to *
    * http://edocs.bea.com/jrockit/go2troubleshooting.html *
    * for troubleshooting information. *
    Additional information is available in:
    C:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.52.05\DefaultDomain\jrockit.6136.dump
    C:\Oracle\Middleware\jdeveloper\system\system11.1.1.0.31.52.05\DefaultDomain\jrockit.6136.mdmp
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (c0000005) at 0x00000000 - memory at 0x00000000 could not be read.
    Minidump : Wrote mdmp. Size is 527MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.6.3-40_o-112056-1.6.0_11-20090318-2104-windows-ia32
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 SSE4.1 Core Intel64
    Number CPUs : 2
    Tot Phys Mem : 3715284992 (3543 MB)
    OS version : Microsoft Windows XP version 5.1 Service Pack 3 (Build 2600) (32-bit)
    Thread System: Windows Threads
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State : JVM is running
    Command Line : -Xms256m -Xmx512m -Djbo.debugoutput=console -Xmx512M -XX:MaxPermSize=512M -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~2\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~2\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~2\WLSERV~1.3\server -Ddomain.home=C:\Oracle\MIDDLE~2\JDEVEL~1\system\SYSTEM~1.05\DEFAUL~1 -Doracle.home=C:\Oracle\Middleware\jdeveloper -Doracle.security.jps.config=C:\Oracle\MIDDLE~2\JDEVEL~1\system\SYSTEM~1.05\DEFAUL~1\config\oracle\jps-config.xml -Doracle.dms.context=OFF -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~2\patch_wls1030\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~2\patch_jdev1111\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~2\patch_cie660\profiles\default\sysext_manifest_classpath -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~2\WLSERV~1.3\server\lib\weblogic.policy -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    java.home : C:\PROGRA~1\Java\JROCKI~1.0_1
    j.class.path : ;C:\Oracle\MIDDLE~2\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~2\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~2\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\PROGRA~1\Java\JROCKI~1.0_1\lib\tools.jar;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~2\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~2\modules\ORGAPA~1.5/lib/ant-all.jar;C:\Oracle\MIDDLE~2\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\Middleware\jdeveloper\modules\features\adf.share_11.1.1.jar;;C:\Oracle\MIDDLE~2\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\lib\xqrl.jar;;
    j.lib.path : C:\PROGRA~1\Java\JROCKI~1.0_1\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\Oracle\MIDDLE~2\patch_wls1030\profiles\default\native;C:\Oracle\MIDDLE~2\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~2\patch_cie660\profiles\default\native;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~2\modules\ORGAPA~1.5\bin;C:\PROGRA~1\Java\JROCKI~1.0_1\jre\bin;C:\PROGRA~1\Java\JROCKI~1.0_1\bin;C:\Oracle\OraClient10g\bin;C:\Oracle\DevSuite10G\bin;C:\Oracle\DevSuite10G\jdk\jre\bin\classic;C:\Oracle\DevSuite10G\jdk\jre\bin;C:\Oracle\DevSuite10G\jdk\jre\bin\client;C:\Oracle\DevSuite10G\jlib;C:\Oracle\DevSuite10G\jre\1.4.2\bin\client;C:\Oracle\DevSuite10G\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\TortoiseSVN\bin;C:\Oracle\jdevstudio10133\jdk\bin;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\QuickTime\QTSystem\;Z:.;;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\native\win\32\oci920_8
    JAVA_HOME : C:\PROGRA~1\Java\JROCKI~1.0_1
    JAVAOPTIONS: <not set>
    PATH : C:\PROGRA~1\Java\JROCKI~1.0_1\bin;C:\Oracle\MIDDLE~2\patch_wls1030\profiles\default\native;C:\Oracle\MIDDLE~2\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~2\patch_cie660\profiles\default\native;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~2\modules\ORGAPA~1.5\bin;C:\PROGRA~1\Java\JROCKI~1.0_1\jre\bin;C:\PROGRA~1\Java\JROCKI~1.0_1\bin;C:\Oracle\OraClient10g\bin;C:\Oracle\DevSuite10G\bin;C:\Oracle\DevSuite10G\jdk\jre\bin\classic;C:\Oracle\DevSuite10G\jdk\jre\bin;C:\Oracle\DevSuite10G\jdk\jre\bin\client;C:\Oracle\DevSuite10G\jlib;C:\Oracle\DevSuite10G\jre\1.4.2\bin\client;C:\Oracle\DevSuite10G\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\TortoiseSVN\bin;C:\Oracle\jdevstudio10133\jdk\bin;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\QuickTime\QTSystem\;Z:.;;C:\Oracle\MIDDLE~2\WLSERV~1.3\server\native\win\32\oci920_8
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    C Heap : Good; no memory allocations have failed
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#9.
    : YC is not running. Last finished YC was YC#15.
    OC History : Strategy genparpar was used for OC#1 to OC#6.
    : Strategy singleparpar was used for OC#7.
    : Strategy genparpar was used for OC#8 to OC#9.
    YC History : Ran 1 YCs before OC#5.
    : Ran 0 YCs before OC#6.
    : Ran 0 YCs before OC#7.
    : Ran 1 YCs before OC#8.
    : Ran 4 YCs before OC#9.
    : Ran 1 YCs since last OC.
    YC Promotion : Last YC successfully promoted all objects
    Heap : 0x00C00000 - 0x10C00000 (Size: 256 MB)
    Compaction : 0x0BC00030 - 0x0CC00038 (Current compaction type: external)
    NurseryList : 0x0289B2D8 - 0x0A5D4488
    KeepArea : 0x085ADA80 - 0x0A5D4488
    NurseryMarker: [ 0x06479790,  0x085ADA80 ]
    CompRefs : References are 32-bit.
    Registers (from ThreadContext: 0x2562E340 / OS context: 0x2562E72C):
    eax = 00000000 ecx = 00000000 edx = 2562e998 ebx = 07ab6220
    esp = 2562e9f8 ebp = 07ab6220 esi = 2562ea18 edi = 242bae4c
    es = 00000023 cs = 0000001b ss = 00000023 ds = 00000023
    fs = 0000003b gs = 00000000
    eip = 00000000 eflags = 00010212
    Loaded modules:
    (* denotes the module causing the exception)
    00400000-00412fff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\java.exe
    7c900000-7c9b4fff C:\WINDOWS\system32\ntdll.dll
    7c800000-7c8fffff C:\WINDOWS\system32\kernel32.dll
    77f40000-77feafff C:\WINDOWS\system32\ADVAPI32.dll
    77da0000-77e31fff C:\WINDOWS\system32\RPCRT4.dll
    77f10000-77f20fff C:\WINDOWS\system32\Secur32.dll
    77be0000-77c37fff C:\WINDOWS\system32\MSVCRT.dll
    7c340000-7c395fff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\msvcr71.dll
    00420000-006c6fff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\jrockit\jvm.dll
    76af0000-76b1dfff C:\WINDOWS\system32\WINMM.dll
    77e40000-77e88fff C:\WINDOWS\system32\GDI32.dll
    7e390000-7e420fff C:\WINDOWS\system32\USER32.dll
    71a30000-71a46fff C:\WINDOWS\system32\WS2_32.dll
    71a20000-71a27fff C:\WINDOWS\system32\WS2HELP.dll
    6d860000-6d86bfff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\verify.dll
    6d3d0000-6d3eefff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\java.dll
    6d330000-6d337fff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\hpi.dll
    6d8a0000-6d8aefff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\zip.dll
    6d6c0000-6d6d2fff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\net.dll
    719d0000-71a0ffff C:\WINDOWS\system32\mswsock.dll
    61200000-61258fff C:\WINDOWS\system32\hnetcfg.dll
    71a10000-71a17fff C:\WINDOWS\System32\wshtcpip.dll
    23750000-23776fff C:\WINDOWS\system32\DNSAPI.dll
    23780000-23787fff C:\WINDOWS\System32\winrnr.dll
    23790000-237bcfff C:\WINDOWS\system32\WLDAP32.dll
    66210000-66218fff C:\WINDOWS\system32\netware\NWWS2NDS.DLL
    50d50000-50d84fff C:\WINDOWS\system32\NETWIN32.DLL
    50d00000-50d15fff C:\WINDOWS\system32\CLNWIN32.DLL
    50df0000-50e14fff C:\WINDOWS\system32\LOCWIN32.dll
    50db0000-50de4fff C:\WINDOWS\system32\NCPWIN32.dll
    71a50000-71a59fff C:\WINDOWS\system32\WSOCK32.dll
    66220000-6622bfff C:\WINDOWS\system32\netware\NWWS2SLP.DLL
    66250000-66256fff C:\WINDOWS\system32\NWSRVLOC.dll
    23850000-23855fff C:\WINDOWS\system32\rasadhlp.dll
    6d610000-6d618fff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\management.dll
    6d6e0000-6d6e8fff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\nio.dll
    68000000-68035fff C:\WINDOWS\system32\rsaenh.dll
    76970000-76a24fff C:\WINDOWS\system32\USERENV.dll
    6ff20000-6ff74fff C:\WINDOWS\system32\netapi32.dll
    00ba0000-00baafff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\jmapi.dll
    22490000-2249dfff C:\Oracle\Middleware\wlserver_10.3\server\native\win\32\wlfileio2.dll
    24fe0000-24ff8fff C:\WINDOWS\system32\iphlpapi.dll
    25bc0000-25bd7fff C:\WINDOWS\system32\MPRAPI.dll
    77c90000-77cc1fff C:\WINDOWS\system32\ACTIVEDS.dll
    25be0000-25c04fff C:\WINDOWS\system32\adsldpc.dll
    76ad0000-76ae0fff C:\WINDOWS\system32\ATL.DLL
    774a0000-775dcfff C:\WINDOWS\system32\ole32.dll
    25c10000-25c9afff C:\WINDOWS\system32\OLEAUT32.dll
    25ca0000-25cadfff C:\WINDOWS\system32\rtutils.dll
    71b80000-71b92fff C:\WINDOWS\system32\SAMLIB.dll
    778e0000-779d6fff C:\WINDOWS\system32\SETUPAPI.dll
    25cf0000-25cf4fff C:\Oracle\Middleware\wlserver_10.3\server\native\win\32\wlntio.dll
    6d840000-6d847fff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\sunmscapi.dll
    77a40000-77ad5fff C:\WINDOWS\system32\CRYPT32.dll
    77ae0000-77af1fff C:\WINDOWS\system32\MSASN1.dll
    76bb0000-76bbafff C:\WINDOWS\system32\psapi.dll
    6d0b0000-6d1e7fff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\awt.dll
    72f70000-72f95fff C:\WINDOWS\system32\WINSPOOL.DRV
    76330000-7634cfff C:\WINDOWS\system32\IMM32.dll
    5d4e0000-5d579fff C:\WINDOWS\system32\comctl32.dll
    6d7b0000-6d7b5fff C:\Program Files\Java\jrockit-R27.6.3-jre1.6.0_11\bin\rmi.dll
    33230000-33342fff C:\PROGRA~1\Java\JROCKI~1.0_1\bin\dbghelp.dll
    Stack:
    (* marks the word pointed to by the stack pointer)
    2562e9f8: 2562ea34* 00000000 242bace8 0059a501 242bae4c 2562ea34
    2562ea10: 00000000 21941522 242bae4c 2562ea34 0d3829b8 2cfb78c0
    2562ea28: 2194151d 242bb0b4 2562ea18 0d1018b8 242bace8 07ab6220
    2562ea40: 07ab6220 21bfb985 0d1018b8 00000001 07ab6220 051988d8
    Code:
    (* marks the word pointed to by the instruction pointer)
    ffffffd0: Unreadable
    ffffffe8: Unreadable
    00000000: Unreadable
    00000018: Unreadable
    "[ACTIVE] ExecuteThread: '0' for" id=15 idx=0x3c tid=6000 lastJavaFrame=0x2562EA24
    Stack 0: start=0x255F0000, end=0x25630000, guards=0x255F3000 (ok), forbidden=0x255F1000
    Thread Stack Trace:
    at RJNI_jrockit_vm_Locks_monitorEnterUnmatched+17(rnilocks.c:65+17)@0x0059A501
    -- Java stack --
    at jrockit/vm/Locks.monitorEnterUnmatched(Ljava/lang/Object;)V(Native Method)
    at oracle/jbo/server/ViewRowSetIteratorImpl.next(ViewRowSetIteratorImpl.java:1690)
    at oracle/jbo/server/ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1548)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.first(ViewRowSetImpl.java:3202)
    at oracle/jbo/server/ViewObjectImpl.first(ViewObjectImpl.java:8123)
    at oracle/jbo/uicli/binding/JUCtrlListBinding.initFromServerBinding(JUCtrlListBinding.java:524)
    at oracle/jbo/uicli/binding/JUCtrlListBinding.setupListItems(JUCtrlListBinding.java:630)
    at oracle/jbo/uicli/binding/JUCtrlListBinding.findListIndex(JUCtrlListBinding.java:1783)
    at oracle/jbo/uicli/binding/JUCtrlListBinding.setValueAt(JUCtrlListBinding.java:2686)
    at oracle/jbo/uicli/binding/JUCtrlListBinding.updateValuesFromRow(JUCtrlListBinding.java:2118)
    at oracle/jbo/uicli/binding/JUCtrlValueBinding.updateNavigated(JUCtrlValueBinding.java:268)
    at oracle/jbo/uicli/binding/JUIteratorBinding.navigated(JUIteratorBinding.java:302)
    ^-- Holding lock: oracle/jbo/uicli/binding/JUApplication@0x0CECD4F0[biased lock]
    at oracle/jbo/common/RowSetHelper.fireNavigationEvent(RowSetHelper.java:268)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3624)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3595)
    at oracle/jbo/server/ViewRowSetIteratorImpl.next(ViewRowSetIteratorImpl.java:1744)
    at oracle/jbo/server/ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1548)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.first(ViewRowSetImpl.java:3202)
    at oracle/jbo/server/ViewObjectImpl.first(ViewObjectImpl.java:8123)
    at oracle/adf/model/binding/DCIteratorBinding.setupRSIstate(DCIteratorBinding.java:755)
    at oracle/adf/model/binding/DCIteratorBinding.refreshControl(DCIteratorBinding.java:655)
    at oracle/jbo/uicli/binding/JUIteratorBinding.refreshControl(JUIteratorBinding.java:475)
    at oracle/adf/model/binding/DCIteratorBinding.rangeRefreshed(DCIteratorBinding.java:861)
    at oracle/jbo/common/RowSetHelper.fireRangeRefreshed(RowSetHelper.java:179)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyRangeRefreshed(ViewRowSetIteratorImpl.java:3559)
    at oracle/jbo/server/ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2776)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2996)
    at oracle/jbo/server/ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:2453)
    at oracle/jbo/server/ViewRowSetImpl.execute(ViewRowSetImpl.java:1047)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.execute(ViewRowSetImpl.java:873)
    at oracle/jbo/server/ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2738)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2996)
    at oracle/jbo/server/ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:2453)
    at oracle/jbo/server/ViewRowSetImpl.refreshRowSet(ViewRowSetImpl.java:6106)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyDetailRowSets(ViewRowSetIteratorImpl.java:3493)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3635)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3595)
    at oracle/jbo/server/ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3378)
    at oracle/jbo/server/ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1551)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.first(ViewRowSetImpl.java:3202)
    at oracle/jbo/server/ViewObjectImpl.first(ViewObjectImpl.java:8123)
    at oracle/adf/model/binding/DCIteratorBinding.setupRSIstate(DCIteratorBinding.java:755)
    at oracle/adf/model/binding/DCIteratorBinding.refreshControl(DCIteratorBinding.java:655)
    at oracle/jbo/uicli/binding/JUIteratorBinding.refreshControl(JUIteratorBinding.java:475)
    at oracle/adf/model/binding/DCIteratorBinding.rangeRefreshed(DCIteratorBinding.java:861)
    at oracle/jbo/common/RowSetHelper.fireRangeRefreshed(RowSetHelper.java:179)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyRangeRefreshed(ViewRowSetIteratorImpl.java:3559)
    at oracle/jbo/server/ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2776)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2996)
    at oracle/jbo/server/ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:2453)
    at oracle/jbo/server/ViewRowSetImpl.execute(ViewRowSetImpl.java:1047)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.execute(ViewRowSetImpl.java:873)
    at oracle/jbo/server/ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2738)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2996)
    at oracle/jbo/server/ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:2453)
    at oracle/jbo/server/ViewRowSetImpl.refreshRowSet(ViewRowSetImpl.java:6106)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyDetailRowSets(ViewRowSetIteratorImpl.java:3493)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3635)
    at oracle/jbo/server/ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3595)
    at oracle/jbo/server/ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3378)
    at oracle/jbo/server/ViewRowSetIteratorImpl.setCurrentRow(ViewRowSetIteratorImpl.java:1018)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetIteratorImpl.activateIteratorState(ViewRowSetIteratorImpl.java:3955)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.activateIteratorState(ViewRowSetImpl.java:6228)
    at oracle/jbo/server/ViewObjectImpl.activateIteratorState(ViewObjectImpl.java:16120)
    at oracle/jbo/server/ViewRowSetIteratorImpl.activateIteratorState(ViewRowSetIteratorImpl.java:3874)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.activateIteratorState(ViewRowSetImpl.java:6228)
    at oracle/jbo/server/ViewObjectImpl.activateIteratorState(ViewObjectImpl.java:16120)
    at oracle/jbo/server/ViewRowSetIteratorImpl.activateIteratorState(ViewRowSetIteratorImpl.java:3874)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ViewRowSetImpl.activateIteratorState(ViewRowSetImpl.java:6228)
    at oracle/jbo/server/ViewObjectImpl.activateIteratorState(ViewObjectImpl.java:16120)
    at oracle/jbo/server/ApplicationModuleImpl.activateVOs(ApplicationModuleImpl.java:7675)
    at oracle/jbo/server/ApplicationModuleImpl.doActivateState(ApplicationModuleImpl.java:7421)
    at oracle/jbo/server/ApplicationModuleImpl.doActivateState(ApplicationModuleImpl.java:7453)
    at oracle/jbo/server/ApplicationModuleImpl.doActivateAMState(ApplicationModuleImpl.java:7400)
    at oracle/jbo/server/Serializer.activate(Serializer.java:284)
    at oracle/jbo/server/DBSerializer.activateRootAM(DBSerializer.java:331)
    at oracle/jbo/server/ApplicationModuleImpl.activateFromStack(ApplicationModuleImpl.java:6063)
    at oracle/jbo/server/ApplicationModuleImpl.activateState(ApplicationModuleImpl.java:5923)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at oracle/jbo/server/ApplicationModuleImpl.activateStateForUndo(ApplicationModuleImpl.java:8308)
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at nl/nak/iva/RuleFrameTransactionImpl.activateStateForUndo(RuleFrameTransactionImpl.java:262)
    at nl/nak/iva/RuleFrameTransactionImpl.handleSQLError(RuleFrameTransactionImpl.java:130)
    at nl/nak/iva/RuleFrameTransactionImpl.doCommit(RuleFrameTransactionImpl.java:86)
    at oracle/jbo/server/DBTransactionImpl.commitInternal(DBTransactionImpl.java:2244)
    at oracle/jbo/server/DBTransactionImpl.commit(DBTransactionImpl.java:2382)
    ^-- Holding lock: nl/nak/iva/RuleFrameTransactionImpl@0x0E986690[biased lock]
    ^-- Holding lock: oracle/jbo/JboSyncLock@0x0D1018B8[recursive]
    at nl/nak/iva/RuleFrameTransactionImpl.commit(RuleFrameTransactionImpl.java:103)
    at oracle/adf/model/bc4j/DCJboDataControl.commitTransaction(DCJboDataControl.java:1565)
    at oracle/adf/model/binding/DCDataControl.callCommitTransaction(DCDataControl.java:1407)
    at oracle/jbo/uicli/binding/JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1293)
    at oracle/adf/model/binding/DCDataControl.invokeOperation(DCDataControl.java:2126)
    at oracle/jbo/uicli/binding/JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:697)
    at oracle/adf/controller/v2/lifecycle/PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:392)
    at oracle/adfinternal/view/faces/model/binding/FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:159)
    at oracle/adfinternal/view/faces/model/binding/FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:118)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;) Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at com/sun/el/parser/AstValue.invoke(AstValue.java:157)
        at com/sun/el/MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
        at org/apache/myfaces/trinidadinternal/taglib/util/MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
        at org/apache/myfaces/trinidad/component/UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1227)
        at org/apache/myfaces/trinidad/component/UIXCommand.broadcast(UIXCommand.java:183)
        at oracle/adf/view/rich/component/fragment/ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:70)
        at oracle/adf/view/rich/component/fragment/ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:274)
        at oracle/adf/view/rich/component/fragment/ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:74)
        at javax/faces/component/UIViewRoot.broadcastEvents(UIViewRoot.java:458)
        at javax/faces/component/UIViewRoot.processApplication(UIViewRoot.java:763)
        at oracle/adfinternal/view/faces/lifecycle/LifecycleImpl._invokeApplication(LifecycleImpl.java:640)
        at oracle/adfinternal/view/faces/lifecycle/LifecycleImpl._executePhase(LifecycleImpl.java:275)
        at oracle/adfinternal/view/faces/lifecycle/LifecycleImpl.execute(LifecycleImpl.java:175)
        at javax/faces/webapp/FacesServlet.service(FacesServlet.java:265)
        at weblogic/servlet/internal/StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
        at weblogic/servlet/internal/StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
        at weblogic/servlet/internal/ServletStubImpl.execute(ServletStubImpl.java:292)
        at weblogic/servlet/internal/TailFilter.doFilter(TailFilter.java:26)
        at weblogic/servlet/internal/FilterChainImpl.doFilter(FilterChainImpl.java:42)
        at oracle/adf/model/servlet/ADFBindingFilter.doFilter(ADFBindingFilter.java:181)
        at weblogic/servlet/internal/FilterChainImpl.doFilter(FilterChainImpl.java:42)
        at oracle/adfinternal/view/faces/webapp/rich/RegistrationFilter.doFilter(RegistrationFilter.java:85)
        at org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:279)
        at org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:239)
        at org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:196)
        at org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
        at org/apache/myfaces/trinidad/webapp/TrinidadFilter.doFilter(TrinidadFilter.java:92)
        at weblogic/servlet/internal/FilterChainImpl.doFilter(FilterChainImpl.java:42)
        at oracle/security/jps/wls/JpsWlsFilter.doFilter(JpsWlsFilter.java:102)
        at oracle/security/jps/ee/http/JpsFilter.doFilter(JpsFilter.java:65)
        at weblogic/servlet/internal/FilterChainImpl.doFilter(FilterChainImpl.java:42)
        at weblogic/servlet/internal/RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
        at weblogic/servlet/internal/FilterChainImpl.doFilter(FilterChainImpl.java:42)
        at weblogic/servlet/internal/WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
        at weblogic/security/acl/internal/AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic/security/service/SecurityManager.runAs(Lweblogic/security/acl/internal/AuthenticatedSubject;Lweblogic/security/acl/internal/AuthenticatedSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;(Unknown Source)
        at weblogic/servlet/internal/WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
        at weblogic/servlet/internal/WebAppServletContext.execute(WebAppServletContext.java:2086)
        at weblogic/servlet/internal/ServletRequestImpl.run(ServletRequestImpl.java:1406)
        at weblogic/work/ExecuteThread.execute(ExecuteThread.java:201)
        at weblogic/work/ExecuteThread.run(ExecuteThread.java:173)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        -- end of trace
        *  If you see this dump, please go to                    *
        *  http://edocs.bea.com/jrockit/go2troubleshooting.html  *
        *  for troubleshooting information.                      *
    ===== END DUMP ===============================================================                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    Core dumps are usually a bug, so I suggest filing a Service Request with support.

Maybe you are looking for