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);
 
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

Similar Messages

  • Premiere is Crashing when using CUDA and dual GTX680

    I am getting consistent crashing when using Premiere in this configuration:
    OSX 10.8.5
    2 x 2.93 GHZ 6-core
    64 GB RAM (32 allocated to CC)
    GUI graphics: ATI Radeon HD 5870
    CUDA GPUs: 2 x NVIDIA GeForce GTX 680 (expansion chasis)
    CUDA Driver version: 5.5.28
    System will freeze when switching to Premiere or on playback with irregularity.  Disabling CUDA hardware acceleration solves issue.
    Here is the Kernel Panic report:
    Interval Since Last Panic Report:  11922612 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    8B84C82D-B83F-C297-7CB2-84377167CBA6
    Wed Apr 30 09:07:58 2014
    panic(cpu 16 caller 0xffffff801ceb8945): Kernel trap at 0xffffff7f9e91bd71, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x00000000000000c0, CR3: 0x000000001971109c, CR4: 0x00000000000206e0
    RAX: 0x0000000000000000, RBX: 0xffffff80b3c01c00, RCX: 0xffffff87239f9014, RDX: 0x0000000000000012
    RSP: 0xffffff87192e3b30, RBP: 0xffffff87192e3b40, RSI: 0x0000000000000005, RDI: 0xffffff80b3c01c00
    R8:  0x0000000008830080, R9:  0x000000000000002f, R10: 0x0000000000000000, R11: 0xffffff8693a180f0
    R12: 0xffffff87239f3000, R13: 0x0000000008830080, R14: 0xffffff8693a18000, R15: 0x0000000000000400
    RFL: 0x0000000000010246, RIP: 0xffffff7f9e91bd71, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000000000000c0, Error code: 0x0000000000000000, Fault CPU: 0x10
    Backtrace (CPU 16), Frame : Return Address
    0xffffff87192e37d0 : 0xffffff801ce1d636
    0xffffff87192e3840 : 0xffffff801ceb8945
    0xffffff87192e3a10 : 0xffffff801cecebfd
    0xffffff87192e3a30 : 0xffffff7f9e91bd71
    0xffffff87192e3b40 : 0xffffff7f9e92be7a
    0xffffff87192e3b90 : 0xffffff7f9e92c0a1
    0xffffff87192e3bd0 : 0xffffff7f9e90920a
    0xffffff87192e3bf0 : 0xffffff7f9e931807
    0xffffff87192e3c70 : 0xffffff7f9e8f8416
    0xffffff87192e3de0 : 0xffffff801d26deed
    0xffffff87192e3e40 : 0xffffff801ce988d4
    0xffffff87192e3e80 : 0xffffff801ce20b4d
    0xffffff87192e3eb0 : 0xffffff801ce10448
    0xffffff87192e3f00 : 0xffffff801ce1961b
    0xffffff87192e3f70 : 0xffffff801cea6546
    0xffffff87192e3fb0 : 0xffffff801cecf473
          Kernel Extensions in backtrace:
             com.apple.GeForce(8.1.6)[7C67749B-3B6B-38A9-8203-01A139C21895]@0xffffff7f9e8e1000->0xffff ff7f9e9aefff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f9d852000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xffffff7f9d83 e000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff7f9d7b8000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0xffffff7f9 d7fb000
    BSD process name corresponding to current thread: Adobe Premiere P
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x000000001cc00000
    Kernel text base: 0xffffff801ce00000
    System model name: MacPro5,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 55230373642253
    last loaded kext at 5997022568100: com.apple.driver.AppleUSBCDC 4.1.23 (addr 0xffffff7f9ff33000, size 16384)
    last unloaded kext at 6071655418813: com.apple.driver.AppleUSBCDC 4.1.23 (addr 0xffffff7f9ff33000, size 12288)
    loaded kexts:
    metasan.sandsbd 5.6.0
    metasan.sandsfs 5.6.0
    com.nvidia.CUDA 1.1.0
    tbox.sanefs 2.0.5
    tbox.vpfs 2.0.5
    tbox.vpbd 2.0.5
    tbox.sanebd 2.0.5
    com.logmein.driver.LogMeInSoundDriver 1.0.3
    com.blackmagic-design.desktopvideo.iokit.driver 9.9.3
    com.blackmagic-design.desktopvideo.iokit.framebufferdriver 9.9.
    metasan.sandsdf 5.6.0
    com.Logitech.Unifying.HID Driver 1.2.0
    com.Logitech.Control Center.HID Driver 3.6.0
    com.ATTO.driver.ATTOCelerityFC8 2.0.0
    com.apple.filesystems.smbfs 1.8.4
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.1.7f4
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AGPM 100.13.12
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleHDA 2.4.7fc4
    com.apple.driver.AppleUpstreamUserClient 3.5.12
    com.apple.driver.AppleMCCSControl 1.1.11
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.kext.AMDFramebuffer 8.1.6
    com.apple.GeForce 8.1.6
    com.apple.driver.AppleMikeyDriver 2.4.7fc4
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.1.7f4
    com.apple.AMDRadeonAccelerator 1.0.8
    com.apple.driver.ApplePolicyControl 3.4.5
    com.apple.driver.AppleLPC 1.6.3
    com.apple.driver.AppleSMBusPCI 1.0.11d1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.iokit.SCSITaskUserClient 3.5.6
    com.apple.driver.AppleRAID 4.0.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.3.5
    com.apple.driver.AppleFWOHCI 4.9.9
    com.apple.driver.AppleUSBHub 635.4.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.driver.AirPort.Brcm4331 615.20.17
    com.apple.driver.Intel82574L 2.3.0b5
    com.apple.BootCache 34
    com.apple.driver.AppleAHCIPort 2.6.6
    com.apple.driver.AppleUSBEHCI 621.4.6
    com.apple.driver.AppleUSBUHCI 621.4.0
    com.apple.driver.AppleRTC 1.5
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleACPIButtons 1.8
    com.apple.driver.AppleSMBIOS 1.9
    com.apple.driver.AppleACPIEC 1.8
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 214.0.0
    com.apple.nke.applicationfirewall 4.0.39
    com.apple.security.quarantine 2.1
    com.apple.driver.AppleIntelCPUPowerManagement 214.0.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.5.6
    com.apple.driver.DspFuncLib 2.4.7fc4
    com.apple.iokit.IOSurface 86.0.4
    com.apple.nvidia.gk100hal 8.1.6
    com.apple.NVDAResman 8.1.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.1.7f4
    com.apple.driver.AppleSMBusController 1.0.11d1
    com.apple.iokit.IOAcceleratorFamily 74.15
    com.apple.iokit.IOAudioFamily 1.9.2fc7
    com.apple.kext.OSvKernDSPLib 1.12
    com.apple.iokit.IOSerialFamily 10.0.6
    com.apple.driver.AppleHDAController 2.4.7fc4
    com.apple.iokit.IOHDAFamily 2.4.7fc4
    com.apple.driver.AppleGraphicsControl 3.4.5
    com.apple.iokit.IONDRVSupport 2.3.7
    com.apple.kext.AMD5000Controller 8.1.6
    com.apple.kext.AMDSupport 8.1.6
    com.apple.iokit.IOGraphicsFamily 2.3.7
    com.apple.driver.AppleSMC 3.1.5d4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.4.1d13
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.driver.AppleUSBHIDKeyboard 170.2.4
    com.apple.driver.AppleHIDKeyboard 170.2.4
    com.apple.driver.IOBluetoothHIDDriver 4.1.7f4
    com.apple.iokit.IOBluetoothFamily 4.1.7f4
    com.apple.iokit.IOUSBHIDDriver 623.4.0
    com.apple.driver.AppleUSBMergeNub 621.4.6
    com.apple.driver.AppleUSBComposite 621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.5.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCISerialATAPI 2.5.5
    com.apple.iokit.IOSCSIParallelFamily 2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.5.6
    com.apple.iokit.IO80211Family 530.5
    com.apple.iokit.IOUSBUserClient 630.4.4
    com.apple.iokit.IONetworkingFamily 3.0
    com.apple.iokit.IOAHCIFamily 2.5.1
    com.apple.iokit.IOUSBFamily 635.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 1.8.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 220.3
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.DiskImages 345
    com.apple.iokit.IOStorageFamily 1.8
    com.apple.driver.AppleKeyStore 28.21
    com.apple.driver.AppleACPIPlatform 1.8
    com.apple.iokit.IOPCIFamily 2.8
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    Model: MacPro5,1, BootROM MP51.007F.B03, 12 processors, 6-Core Intel Xeon, 2.93 GHz, 64 GB, SMC 1.39f11
    Graphics: ATI Radeon HD 5870, ATI Radeon HD 5870, PCIe, 1024 MB
    Graphics: NVIDIA GeForce GTX 680, NVIDIA GeForce GTX 680, PCIe, 4096 MB
    Graphics: NVIDIA GeForce GTX 680, NVIDIA GeForce GTX 680, PCIe, 4096 MB
    Memory Module: DIMM 1, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A534631473732505A2D3147344D3120
    Memory Module: DIMM 2, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A534631473732505A2D3147344D3120
    Memory Module: DIMM 3, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A535A4631473732505A2D3147344431
    Memory Module: DIMM 4, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A535A4631473732505A2D3147344431
    Memory Module: DIMM 5, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A534631473732505A2D3147344D3120
    Memory Module: DIMM 6, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A534631473732505A2D3147344D3120
    Memory Module: DIMM 7, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A535A4631473732505A2D3147344431
    Memory Module: DIMM 8, 8 GB, DDR3 ECC, 1333 MHz, 0x802C, 0x33364A535A4631473732505A2D3147344431
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    Network Service: Ethernet 2, Ethernet, en1
    Serial ATA Device: HL-DT-ST DVD-RW GH61N
    Serial ATA Device: ST2000DM001-9YN164, 2 TB
    Serial ATA Device: APPLE SSD TS512B, 500.28 GB
    Serial ATA Device: Hitachi HDS5C3020ALA632, 2 TB
    Serial ATA Device: Hitachi HDS5C3020ALA632, 2 TB
    Serial ATA Device: ST2000DM001-9YN164, 2 TB
    Fibre Channel Device: SCSI Target Device @ 0
    Fibre Channel Device: SCSI Target Device @ 1
    USB Device: USB 2.0 HUB
    , 0x2109  (VIA Labs, Inc.), 0x2812, 0xfa200000 / 2
    USB Device: USB 2.0 HUB
    , 0x2109  (VIA Labs, Inc.), 0x2812, 0xfa230000 / 5
    USB Device: element-Tk, 0x04d8  (Microchip Technology Inc.), 0xfa1c, 0xfa234000 / 10
    USB Device: PTK-840, 0x056a  (WACOM Co., Ltd.), 0x00ba, 0xfa233000 / 9
    USB Device: element-Bt, 0x04d8  (Microchip Technology Inc.), 0xfa1f, 0xfa231000 / 8
    USB Device: element-Mf, 0x04d8  (Microchip Technology Inc.), 0xfa1a, 0xfa232000 / 7
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa220000 / 4
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfa222000 / 6
    USB Device: element-Kb, 0x04d8  (Microchip Technology Inc.), 0xfa1e, 0xfa210000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x5a100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x5a110000 / 3
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0x3a200000 / 2
    USB Device: USB DONGLE, 0x096e, 0x0201, 0x1d100000 / 2
    FireWire Device: built-in_hub, 800mbit_speed

    Brandon Kraemer wrote:
    Jeff,
    The ATI card is the GUI interface, it can't be disabled.  GTX cards are dedicated to processing (DaVinci Resolve setup).  Are there known issues with setups using both ATI and NVidia CUDA cards?
    I actually rolled back the CUDA drivers do to this same issue.  Recent version of the drivers had the same issue.
    bk
    Yeah, typically dual video card setups that involve cards or chips from different manufacturers will choke Pr.  Typical issue is with laptops that have on-board Intel graphics chips and also have ATI or nVidia graphics adapters.  I don't have any answers or workarounds for you if that's your issue.  To see if the different manufacturer thing is the issue, try temporarily disabling the nVidia cards and using hardware-accelerated Mecury Playback with the ATI card and OpenCL.  (I'm not a Mac guy, so I don't know if the GUI card can be used for other video processing.)
    Jeff

  • Lion crashes when using Firefox and Safari, have found a fix for this.  I can't believe they would just let us hang.  Very frustrated.

    How do I fix frequent crashes when using Firefox or Safari???  I see a lot of people have this problem...is there a solution yet?

    Try posting in Safari forum, you'll get better help there.
    https://discussions.apple.com/community/mac_os/safari

  • Application crashes when using JNI with Jdk 1,2, 1.3 and 1.4

    Hi!
    I have this application that has a GUI written in Java and a file parser written in C. JNI is used to connect these parts together. The problem is that the application only works when I am using jdk 1.1.8 but not when using jdk1.2, jdk1.3 or jdk1.4. I am running the application on a Solaris 8 machine.
    I have not written the application myself but I am going to be working with it from now on. But I have today little knowledge with JNI and I have tried different approaches to solve the problem. For example I have tried to used DDD together with GDB to find out what the problem is but with no luck. When I run the application using jdk1.4 I get the following error when the JVM crashes:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 10 occurred at PC=0xFA023164
    Function=Java_Bitmap_setDebug+0x1C
    Library=/usr/u/lal/micview/micview2_1_0_beta1/libBitmapImpl.so
    Current Java thread:
    at Bitmap.setDebug(Native Method)
    at DisplayPanel.loadFile(DisplayPanel.java:396)
    at MicPlot.loadFile(MicPlot.java:1452)
    at MicPlot.loadFile(MicPlot.java:1441)
    at MicPlot.miOpen_Action(MicPlot.java:1267)
    at MicPlot$SymAction.actionPerformed(MicPlot.java:1184)
    at java.awt.MenuItem.processActionEvent(MenuItem.java:588)
    at java.awt.MenuItem.processEvent(MenuItem.java:548)
    at java.awt.MenuComponent.dispatchEventImpl(MenuComponent.java:285)
    at java.awt.MenuComponent.dispatchEvent(MenuComponent.java:273)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:452)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    Dynamic libraries:
    0x10000 /opt/java/jdk1.4/bin/java
    0xff360000 /usr/lib/libthread.so.1
    0xff3a0000 /usr/lib/libdl.so.1
    0xff280000 /usr/lib/libc.so.1
    0xff270000 /usr/platform/SUNW,Ultra-4/lib/libc_psr.so.1
    0xfe000000 /opt/java/j2sdk1.4.1/jre/lib/sparc/client/libjvm.so
    0xff220000 /usr/lib/libCrun.so.1
    0xff200000 /usr/lib/libsocket.so.1
    0xff100000 /usr/lib/libnsl.so.1
    0xff1d0000 /usr/lib/libm.so.1
    0xff250000 /usr/lib/libw.so.1
    0xff0e0000 /usr/lib/libmp.so.2
    0xff0b0000 /opt/java/j2sdk1.4.1/jre/lib/sparc/native_threads/libhpi.so
    0xff080000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libverify.so
    0xff030000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libjava.so
    0xfe7e0000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libzip.so
    0xfe4e0000 /usr/lib/locale/en_US.ISO8859-1/en_US.ISO8859-1.so.2
    0xedd00000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libawt.so
    0xfc480000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libmlib_image.so
    0xfc410000 /opt/java/j2sdk1.4.1/jre/lib/sparc/motif21/libmawt.so
    0xeda80000 /usr/dt/lib/libXm.so.4
    0xfa090000 /usr/openwin/lib/libXt.so.4
    0xfa3d0000 /usr/openwin/lib/libXext.so.0
    0xfc7e0000 /usr/openwin/lib/libXtst.so.1
    0xed980000 /usr/openwin/lib/libX11.so.4
    0xfa2a0000 /usr/openwin/lib/libdps.so.5
    0xfa3b0000 /usr/openwin/lib/libSM.so.6
    0xfa1d0000 /usr/openwin/lib/libICE.so.6
    0xed880000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libfontmanager.so
    0xfa390000 /usr/openwin/lib/locale/common/xlibi18n.so.2
    0xfa1b0000 /usr/openwin/lib/locale/iso8859-1/xomEuro.so.2
    0xfa190000 /usr/lib//liblayout.so
    0xfa050000 /usr/openwin/lib/locale/common/ximlocal.so.2
    0xfa010000 /usr/u/lal/micview/micview2_1_0_beta1/libBitmapImpl.so
    Local Time = Thu Oct 3 13:32:47 2002
    Elapsed Time = 35
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.1-beta-b14 mixed mode)
    # An error report file has been saved as hs_err_pid27692.log.
    # Please refer to the file for further information.
    Abort
    From this information I think that the problem should be in the native method setDebug. But I have tried to set a breakpoint at the beginning of that function in the C part but with no luck. The application crashes before it reaches that position in the C file.
    What could possibly go wrong between the setDebug function in the C part and the function call in the Java part?
    When using GDB, GDB cannot figure out what is wrong it just returns a hex address, no function name.
    I would really appreciate some help. I have tried everything that I can come up with!
    Best regards
    Lars

    I have figured out that the application fails on its first call to the native methods.
    So I have this Bitmap class that contains all the native calls and it is defined shortly as follow:
    public class Bitmap {
    static {
    System.loadLibrary("BitmapImpl");
    native void setDebug(int debuglevel, int statistics);
    There are many more native methods defined in Bitmap, but I only show the setDebug method because that is the first one that is executed and also the one that immediately fails.
    My setDebug C function is defined as follow in BitmapImpl.c
    #include <time.h>
    #include <stdio.h>
    #include <limits.h>
    #include <fcntl.h>
    #include <jni.h>
    #include <math.h>
    #include <errno.h>
    #include "Bitmap.h"
    #include "data.h"
    jint debug = 0;
    jint statistics = 1;
    JNIEXPORT void JNICALL Java_Bitmap_setDebug
    (JNIEnv *jenv, jobject jo, jint d, jint s)
    debug = d;
    statistics = s;
    My libBitmapImpl.so file is compiled using the following Makefile and using GNU gcc:
    JAVAPATH=$(JAVAINCLUDEPATH)
    LMACRO=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSOLARIS
    CSOURCE=BitmapImpl.c
    all:
    gcc -O3 -G $(LMACRO) -I$(JAVAPATH) -I$(JAVAPATH)/solaris \
    $(CSOURCE) -o libBitmapImpl.so
    It is still a total mystory why the application fails. I have tried it on a RedHat Linux machine and there it works fine. But not on Solaris. Only if I use the jdk1.1.8 but not a later one.
    Would really appreiciate some help!
    Best regards
    Lars

  • App crash when using JNI callbacks

    Hi all,
    I have a solaris application which crashes when I try to callback the JNI methods from the native code. The description of the problem is below
    Written a native library, the library is multithreaded (i.e) I create a thread using pthread_create() in the native code which performs the operation of calling a JAVA method from the native code. The routine of calling the JAVA method works perfectly from elsewhere.
    There are two scenarios I've tested it in
    1. I created a thread (say X) from the main thread (say Y) and made the y to wait until the X is complete using the pthread_join(). The JAVA callbacks work fine when called from Y but the app crashes if done from X.
    2. Did not make the Y to wait until the X is complete, hoping that both will run paralelly and even the the App crashes.
    And to be precise the Y is the thread where the native method is called from JAVA.
    I have tested for any memory leaks or stack corruption by removing the JAVA callbacks and bulding a executable and using purify, the report doesnot hint any such occurances.
    The linker options used for building the shared library is as follows
    ${GPP} ${INC} -G ${LIB} -mt -g -lCstd -lCrun -lpthread ${OBJS} -o <lib-name>
    I wonder if we can create threads in the native code when using JAVA callbacks and even if we can whether it would be appropiate to use the callbacks with in the threads
    Looking forward for any help.
    Regards,
    Vamsi

    Guys... can't any one help me with this problem :(

  • Freqent JVM crash when using OCI

    I have been experiencing the following JVM crashes frequently. We are using OCI to access database because of failover ability, OS is Suse 9. Any help is appreciated. Here's the log file.
    Thank you.
    Anita
    ===============================
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x00000000, pid=18784, tid=24601
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_13-b06 mixed mode)
    # Problematic frame:
    # C 0x00000000
    --------------- T H R E A D ---------------
    Current thread (0x53588fd0): JavaThread "Thread-10" daemon [_thread_in_native, id=18809]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    EAX=0x0810619c, EBX=0x555cec38, ECX=0x5510192d, EDX=0x08107dac
    ESP=0x548350fc, EBP=0x54835958, ESI=0x0810619c, EDI=0x08107dac
    EIP=0x00000000, CR2=0x00000000, EFLAGS=0x00010283
    Top of Stack: (sp=0x548350fc)
    0x548350fc: 5510194b 0810619c 08107dac 00000000
    0x5483510c: 08379300 4d176b08 548351d8 00000000
    0x5483511c: 00000003 08382b7c 08382aa8 08125788
    0x5483512c: 00000000 083808e0 00000002 08363c00
    0x5483513c: 08164f48 08382abc 54835100 54f31700
    0x5483514c: 00000040 4d176b08 00000000 0810e650
    0x5483515c: 080b3720 08382b08 00000055 08382b74
    0x5483516c: 00000000 080b36f8 08363cd8 08382aa8
    Instructions: (pc=0x00000000)
    0xfffffff0:
    Stack: [0x547c9000,0x5483b000), sp=0x548350fc, free space=432k
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.jdbc.oci8.OCIDBAccess.do_execute(Loracle/jdbc/oci8/OCIDBStatement;I)I+0
    j oracle.jdbc.oci8.OCIDBAccess.executeFetch(Loracle/jdbc/dbaccess/DBStatement;BLoracle/jdbc/dbaccess/DBDataSet;ILoracle/jdbc/dbaccess/DBDataSet;I)I+1335
    j oracle.jdbc.driver.OracleStatement.doExecuteQuery()V+625
    j oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout()V+186
    j oracle.jdbc.driver.OraclePreparedStatement.executeUpdate()I+70
    j oracle.jdbc.driver.OraclePreparedStatement.executeQuery()Ljava/sql/ResultSet;+17
    j org.apache.catalina.realm.DualRealm.getDBRoles(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;+27
    j org.apache.catalina.realm.DualRealm.authorizeViaDB(Ljava/lang/String;)Ljava/util/List;+29
    j org.apache.catalina.realm.DualRealm.authenticate(Ljavax/naming/directory/DirContext;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Principal;+275
    j org.apache.catalina.realm.DualRealm.authenticateJNDI(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Principal;+250
    j org.apache.catalina.realm.DualRealm.authenticate(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Principal;+62
    j org.apache.catalina.authenticator.DualRealmFormAuthenticator.authenticate(Lorg/apache/catalina/HttpRequest;Lorg/apache/catalina/HttpResponse;Lorg/apache/catalina/deploy/LoginConfig;)Z+951
    j org.apache.catalina.authenticator.AuthenticatorBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+322
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+39
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+10
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.catalina.core.StandardContext.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+81
    j org.apache.catalina.core.StandardHostValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+171
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+79
    j org.apache.catalina.valves.ErrorDispatcherValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+3
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+39
    j org.apache.catalina.valves.ErrorReportValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+3
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+39
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+10
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.catalina.core.StandardEngineValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+160
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+79
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+10
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.coyote.tomcat4.CoyoteAdapter.service(Lorg/apache/coyote/Request;Lorg/apache/coyote/Response;)V+101
    j org.apache.jk.server.JkCoyoteHandler.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+165
    j org.apache.jk.common.HandlerRequest.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+249
    j org.apache.jk.common.ChannelSocket.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+59
    j org.apache.jk.common.ChannelSocket.processConnection(Lorg/apache/jk/core/MsgContext;)V+87
    j org.apache.jk.common.SocketConnection.runIt([Ljava/lang/Object;)V+8
    j org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run()V+152
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x080b2580 JavaThread "Thread-122" daemon [_thread_in_native, id=29611]
    0x535947a8 JavaThread "MonitorRunnable" daemon [_thread_blocked, id=18811]
    0x5358a128 JavaThread "Thread-11" daemon [_thread_in_native, id=18810]
    =>0x53588fd0 JavaThread "Thread-10" daemon [_thread_in_native, id=18809]
    0x535884b8 JavaThread "Thread-9" daemon [_thread_in_native, id=18808]
    0x535882c0 JavaThread "Thread-8" daemon [_thread_blocked, id=18807]
    0x5357f890 JavaThread "MonitorRunnable" daemon [_thread_blocked, id=18806]
    0x53594a58 JavaThread "Thread-6" daemon [_thread_in_native, id=18805]
    0x53581108 JavaThread "Thread-5" daemon [_thread_blocked, id=18804]
    0x5358d410 JavaThread "Thread-4" daemon [_thread_blocked, id=18803]
    0x535773a8 JavaThread "Thread-3" daemon [_thread_blocked, id=18802]
    0x53585508 JavaThread "HostConfig[localhost]" daemon [_thread_blocked, id=18801]
    0x535851a8 JavaThread "StandardManager[webdav]" daemon [_thread_blocked, id=18800]
    0x53595330 JavaThread "StandardManager[]" daemon [_thread_blocked, id=18799]
    0x53599cf0 JavaThread "StandardManager[manager]" daemon [_thread_blocked, id=18798]
    0x5357a450 JavaThread "StandardManager[compliance]" daemon [_thread_blocked, id=18797]
    0x53575340 JavaThread "WebappLoader[compliance]" daemon [_thread_blocked, id=18796]
    0x523f8f80 JavaThread "StandardManager[examples]" daemon [_thread_blocked, id=18795]
    0x523fcef8 JavaThread "WebappLoader[examples]" daemon [_thread_blocked, id=18794]
    0x51405480 JavaThread "CompilerThread0" daemon [_thread_blocked, id=18791]
    0x51404730 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=18790]
    0x514005f8 JavaThread "Finalizer" daemon [_thread_blocked, id=18788]
    0x080a5668 JavaThread "Reference Handler" daemon [_thread_blocked, id=18787]
    0x08057c98 JavaThread "main" [_thread_in_native, id=18784]
    Other Threads:
    0x080a24f0 VMThread [id=18786]
    0x51406f00 WatcherThread [id=18792]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 9088K, used 412K [0x45170000, 0x45b40000, 0x45b40000)
    eden space 8128K, 1% used [0x45170000, 0x45192400, 0x45960000)
    from space 960K, 28% used [0x45960000, 0x459a4d10, 0x45a50000)
    to space 960K, 0% used [0x45a50000, 0x45a50000, 0x45b40000)
    tenured generation total 121024K, used 15706K [0x45b40000, 0x4d170000, 0x4d170000)
    the space 121024K, 12% used [0x45b40000, 0x46a96b38, 0x46a96c00, 0x4d170000)
    compacting perm gen total 11264K, used 11218K [0x4d170000, 0x4dc70000, 0x51170000)
    the space 11264K, 99% used [0x4d170000, 0x4dc64880, 0x4dc64a00, 0x4dc70000)
    Dynamic libraries:
    08048000-08053000 r-xp 00000000 68:06 69898 /usr/java/j2sdk1.4.2_13/bin/java
    08053000-08055000 rw-p 0000a000 68:06 69898 /usr/java/j2sdk1.4.2_13/bin/java
    08055000-08446000 rwxp 00000000 00:00 0
    40000000-40013000 r-xp 00000000 68:05 11538 /lib/ld-2.2.5.so
    40013000-40014000 rw-p 00013000 68:05 11538 /lib/ld-2.2.5.so
    40014000-4001a000 r-xp 00000000 68:06 62540 /usr/java/j2sdk1.4.2_13/jre/lib/i386/native_threads/libhpi.so
    4001a000-4001c000 rw-p 00005000 68:06 62540 /usr/java/j2sdk1.4.2_13/jre/lib/i386/native_threads/libhpi.so
    4001c000-40020000 rw-s 00000000 68:07 110 /tmp/hsperfdata_tc_cmpdv/18784
    40021000-4002e000 r-xp 00000000 68:05 11466 /lib/i686/libpthread.so.0
    4002e000-40035000 rw-p 0000d000 68:05 11466 /lib/i686/libpthread.so.0
    40035000-40036000 rw-p 00000000 00:00 0
    40036000-40038000 r-xp 00000000 68:05 11500 /lib/libdl.so.2
    40038000-40039000 rw-p 00001000 68:05 11500 /lib/libdl.so.2
    40039000-4014d000 r-xp 00000000 68:05 11529 /lib/i686/libc.so.6
    4014d000-40153000 rw-p 00113000 68:05 11529 /lib/i686/libc.so.6
    40153000-40157000 rw-p 00000000 00:00 0
    40157000-40570000 r-xp 00000000 68:06 69111 /usr/java/j2sdk1.4.2_13/jre/lib/i386/client/libjvm.so
    40570000-4058c000 rw-p 00418000 68:06 69111 /usr/java/j2sdk1.4.2_13/jre/lib/i386/client/libjvm.so
    4058c000-405a1000 rw-p 00000000 00:00 0
    405a1000-405b3000 r-xp 00000000 68:05 11541 /lib/libnsl.so.1
    405b3000-405b4000 rw-p 00011000 68:05 11541 /lib/libnsl.so.1
    405b4000-405b6000 rw-p 00000000 00:00 0
    405b6000-405d8000 r-xp 00000000 68:05 11457 /lib/i686/libm.so.6
    405d8000-405d9000 rw-p 00021000 68:05 11457 /lib/i686/libm.so.6
    405d9000-405e6000 r-xp 00000000 68:06 69119 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libverify.so
    405e6000-405e8000 rw-p 0000c000 68:06 69119 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libverify.so
    405e8000-40604000 r-xp 00000000 68:06 69121 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libjava.so
    40604000-40606000 rw-p 0001b000 68:06 69121 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libjava.so
    40606000-40614000 r-xp 00000000 68:06 69123 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libzip.so
    40614000-40616000 rw-p 0000d000 68:06 69123 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libzip.so
    40616000-40619000 r--s 00000000 3a:00 460370 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/bin/tomcat-jni.jar
    40619000-4061c000 r--s 00000000 3a:00 460384 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/bin/commons-daemon.jar
    4061c000-40623000 r--s 00000000 3a:00 460393 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/bin/bootstrap.jar
    40623000-40633000 r--s 00000000 3a:00 369241 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/dom.jar
    40633000-4064b000 r--s 00000000 3a:00 474022 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/sax.jar
    4064b000-408fa000 r--s 00000000 3a:00 587835 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/xercesImpl.jar
    408fa000-40fbf000 r--s 00000000 3a:00 479234 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/xalan.jar
    40fbf000-40ff5000 r--s 00000000 3a:00 386319 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/jaxp-api.jar
    40ff5000-429a3000 r--s 00000000 68:06 69889 /usr/java/j2sdk1.4.2_13/jre/lib/rt.jar
    429a3000-429ed000 rw-p 00000000 00:00 0
    429ed000-42a03000 r--s 00000000 68:06 69153 /usr/java/j2sdk1.4.2_13/jre/lib/sunrsasign.jar
    42a03000-42ae0000 r--s 00000000 68:06 69763 /usr/java/j2sdk1.4.2_13/jre/lib/jsse.jar
    42ae0000-42af2000 r--s 00000000 68:06 69154 /usr/java/j2sdk1.4.2_13/jre/lib/jce.jar
    42af2000-430c7000 r--s 00000000 68:06 69814 /usr/java/j2sdk1.4.2_13/jre/lib/charsets.jar
    430c7000-45147000 rwxp 00000000 00:00 0
    45147000-4516f000 rw-p 00000000 00:00 0
    45170000-5122e000 rwxp 00000000 00:00 0
    5122e000-5122f000 ---p 0c0be000 00:00 0
    5122f000-512af000 rwxp 0c0bf000 00:00 0
    512af000-512b0000 ---p 0c13f000 00:00 0
    512b0000-512be000 rwxp 0c140000 00:00 0
    512be000-512c1000 ---p 0c14e000 00:00 0
    512c1000-51330000 rwxp 0c151000 00:00 0
    51330000-51331000 ---p 0c1c0000 00:00 0
    51331000-5133f000 rwxp 0c1c1000 00:00 0
    5133f000-51342000 ---p 0c1cf000 00:00 0
    51342000-513b1000 rwxp 0c1d2000 00:00 0
    513b1000-513dc000 r--p 00000000 68:06 87085 /usr/lib/locale/en_GB/LC_CTYPE
    513dc000-513df000 r--s 00000000 68:06 69150 /usr/java/j2sdk1.4.2_13/jre/lib/ext/dnsns.jar
    513df000-513fb000 r--s 00000000 68:06 69149 /usr/java/j2sdk1.4.2_13/jre/lib/ext/sunjce_provider.jar
    513fb000-513fe000 r--s 00000000 3a:00 515615 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jta.jar
    513fe000-51400000 r--s 00000000 3a:00 515649 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-common.jar
    51400000-514ff000 rw-p 00000000 00:00 0
    514ff000-51501000 ---p 000eb000 00:00 0
    51501000-51581000 rwxp 00000000 00:00 0
    51581000-51582000 ---p 00080000 00:00 0
    51582000-51590000 rwxp 00081000 00:00 0
    51590000-51593000 ---p 0008f000 00:00 0
    51593000-51602000 rwxp 00092000 00:00 0
    51602000-51603000 ---p 00101000 00:00 0
    51603000-51611000 rwxp 00102000 00:00 0
    51611000-51614000 ---p 00110000 00:00 0
    51614000-51683000 rwxp 00113000 00:00 0
    51683000-51684000 ---p 00182000 00:00 0
    51684000-51704000 rwxp 00183000 00:00 0
    51704000-51711000 r--s 00000000 68:06 69152 /usr/java/j2sdk1.4.2_13/jre/lib/ext/ldapsec.jar
    51711000-517cd000 r--s 00000000 68:06 69815 /usr/java/j2sdk1.4.2_13/jre/lib/ext/localedata.jar
    517cd000-51ca9000 r--s 00000000 68:06 10327 /usr/java/j2sdk1.4.2_13/lib/tools.jar
    51ca9000-51cb5000 r--s 00000000 3a:00 515616 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/activation.jar
    51cb5000-51ccc000 r--s 00000000 3a:00 515617 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-collections.jar
    51ccc000-51ce0000 r--s 00000000 3a:00 515621 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/servlet.jar
    51ce0000-51cf5000 r--s 00000000 3a:00 515622 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jdbc2_0-stdext.jar
    51cf5000-51d22000 r--s 00000000 3a:00 515623 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jasper-compiler.jar
    51d22000-51d41000 r--s 00000000 3a:00 515624 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/Opta2000.jar
    51d41000-51d86000 r--s 00000000 3a:00 515625 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/mail.jar
    51d86000-51d9f000 r--s 00000000 3a:00 515626 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jndi.jar
    51d9f000-51da4000 r--s 00000000 3a:00 515627 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/naming-factory.jar
    51da4000-51ec7000 r--s 00000000 3a:00 515619 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/ojdbc14.jar
    51ec7000-51ed8000 r--s 00000000 3a:00 515628 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jasper-runtime.jar
    51ed8000-51ee2000 r--s 00000000 3a:00 515629 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/naming-resources.jar
    51ee2000-51f92000 r--s 00000000 3a:00 515630 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/ant.jar
    51f92000-51f97000 r--s 00000000 3a:00 515631 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-logging-api.jar
    51f97000-51f9e000 r--s 00000000 3a:00 515632 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/naming-common.jar
    51f9e000-51fb7000 r--s 00000000 3a:00 515370 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-dbcp-1.1.jar
    51fb7000-51fc1000 r--s 00000000 3a:00 515372 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-pool-1.1.jar
    51fc1000-51fc5000 r--s 00000000 3a:00 515641 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/catalina-ant.jar
    51fc5000-51fd9000 r--s 00000000 3a:00 515642 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-jk2.jar
    51fd9000-51fff000 r--s 00000000 3a:00 515645 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-util.jar
    52000000-520fd000 rw-p 00000000 00:00 0
    520fd000-52100000 ---p 0015f000 00:00 0
    52100000-52107000 r--s 00000000 3a:00 515654 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-logging.jar
    52107000-52116000 r--s 00000000 3a:00 515643 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-coyote.jar
    52116000-5211f000 r--s 00000000 3a:00 515646 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-http11.jar
    5211f000-52139000 r--s 00000000 3a:00 515647 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/jaas.jar
    52139000-52140000 r--s 00000000 3a:00 515652 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/DualRealm.jar
    52140000-52142000 r--s 00000000 3a:00 515653 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-invoker.jar
    52142000-52187000 r--s 00000000 3a:00 515655 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/mx4j-jmx.jar
    52187000-5219e000 r--s 00000000 3a:00 515656 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-digester.jar
    5219e000-52257000 r--s 00000000 3a:00 516898 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/catalina.jar
    52257000-5225c000 r--s 00000000 3a:00 515657 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-default.jar
    5225c000-52260000 r--s 00000000 3a:00 515658 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-manager.jar
    52260000-52268000 r--s 00000000 3a:00 515659 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/jakarta-regexp-1.2.jar
    52268000-5226e000 r--s 00000000 3a:00 515660 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-warp.jar
    5226e000-52276000 r--s 00000000 3a:00 515661 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-modeler.jar
    52276000-52286000 r--s 00000000 3a:00 515662 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-jk.jar
    52286000-5229a000 r--s 00000000 3a:00 515663 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-beanutils.jar
    5229a000-522a0000 r--s 00000000 3a:00 515664 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-webdav.jar
    522a0000-522ae000 r-xp 00000000 68:06 69127 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libnet.so
    522ae000-522af000 rw-p 0000d000 68:06 69127 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libnet.so
    522af000-522b7000 r--s 00000000 3a:00 1757684 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompCommon.jar
    522b7000-522bc000 r--s 00000000 3a:00 1757686 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompDBUtil.jar
    522bc000-522c5000 r-xp 00000000 68:05 11512 /lib/libnss_files.so.2
    522c5000-522c6000 rw-p 00008000 68:05 11512 /lib/libnss_files.so.2
    522c6000-522c9000 r-xp 00000000 68:05 11511 /lib/libnss_dns.so.2
    522c9000-522ca000 rw-p 00003000 68:05 11511 /lib/libnss_dns.so.2
    522ca000-522d8000 r-xp 00000000 68:05 11515 /lib/libresolv.so.2
    522d8000-522d9000 rw-p 0000e000 68:05 11515 /lib/libresolv.so.2
    522d9000-522db000 rw-p 00000000 00:00 0
    522db000-522fa000 r--s 00000000 3a:00 1757687 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompPrivateXMLMessage.jar
    522fa000-52300000 r--s 00000000 3a:00 1757697 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-fileupload.jar
    52300000-523ff000 rw-p 00000000 00:00 0
    523ff000-52400000 ---p 00000000 00:00 0
    52400000-52415000 r-xp 00000000 3a:00 80003 /local/oracle/apps/oracle/product/9ir2/lib/libocijdbc9.so
    52415000-52417000 rw-p 00014000 3a:00 80003 /local/oracle/apps/oracle/product/9ir2/lib/libocijdbc9.so
    52417000-52419000 r-xp 00000000 3a:00 79911 /local/oracle/apps/oracle/product/9ir2/lib/libwtc9.so
    52419000-5241a000 rw-p 00001000 3a:00 79911 /local/oracle/apps/oracle/product/9ir2/lib/libwtc9.so
    5241a000-52465000 rw-p 00000000 00:00 0
    52481000-5249d000 r--s 00000000 3a:00 1757688 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompSharedXMLMessage.jar
    5249d000-524a4000 r--s 00000000 3a:00 1757689 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/DualRealm.jar
    524a4000-524af000 r--s 00000000 3a:00 1757690 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/activation.jar
    524af000-524de000 r--s 00000000 3a:00 1757693 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-beanutils.jar
    524de000-524f9000 r--s 00000000 3a:00 1757695 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-dbcp-1.2.1.jar
    524f9000-524fb000 r--s 00000000 3a:00 1757704 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jax-qname.jar
    524fb000-524fd000 r--s 00000000 3a:00 1757711 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jdbc2_0-stdext.jar
    524fd000-524ff000 r--s 00000000 3a:00 1757717 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/namespace.jar
    52500000-52600000 rw-p 00000000 00:00 0
    52600000-52601000 ---p 000da000 00:00 0
    52601000-5260f000 rwxp 00000000 00:00 0
    5260f000-52612000 ---p 0000e000 00:00 0
    52612000-52681000 rwxp 00011000 00:00 0
    52681000-52682000 ---p 00080000 00:00 0
    52682000-52690000 rwxp 00081000 00:00 0
    52690000-52693000 ---p 0008f000 00:00 0
    52693000-52702000 rwxp 00092000 00:00 0
    52702000-5280a000 r--s 00000000 3a:00 1757685 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompDAO.jar
    5280a000-52862000 r--s 00000000 3a:00 1757691 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/antlr.jar
    52862000-5291b000 r--s 00000000 3a:00 1757692 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/catalina.jar
    5291b000-52946000 r--s 00000000 3a:00 1757694 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-collections.jar
    52946000-52970000 r--s 00000000 3a:00 1757696 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-digester.jar
    52970000-5297a000 r--s 00000000 3a:00 1757698 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-logging.jar
    5297a000-5298f000 r--s 00000000 3a:00 1757699 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-validator.jar
    5298f000-5299f000 r--s 00000000 3a:00 1757700 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/dom.jar
    5299f000-52a5b000 r--s 00000000 3a:00 1757701 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/iText.jar
    52a5b000-52a89000 r--s 00000000 3a:00 1757702 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaas.jar
    52a89000-52a99000 r--s 00000000 3a:00 1757703 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jakarta-oro.jar
    52a99000-52aaf000 r--s 00000000 3a:00 1757705 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-api.jar
    52aaf000-52ade000 r--s 00000000 3a:00 1757709 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxen-full.jar
    52ade000-52ae4000 r--s 00000000 3a:00 1757713 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jstl.jar
    52ae4000-52ae9000 r--s 00000000 3a:00 1757714 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jta-spec1_0_1.jar
    52ae9000-52af1000 r--s 00000000 3a:00 1757719 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/relaxngDatatype.jar
    52af1000-52af7000 r--s 00000000 3a:00 1757721 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/saxpath.jar
    52af7000-52afb000 r--s 00000000 3a:00 1757724 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/td_ie_util.jar
    52b00000-52c00000 rw-p 00000000 00:00 0
    52c00000-52c54000 r--s 00000000 3a:00 1757706 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-impl.jar
    52c54000-52e0d000 r--s 00000000 3a:00 1757707 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-libs.jar
    52e0d000-53167000 r--s 00000000 3a:00 1757708 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-xjc.jar
    53167000-5319d000 r--s 00000000 3a:00 1757710 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxp-api.jar
    5319d000-53216000 r--s 00000000 3a:00 1757712 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jfreechart-0.9.11.jar
    53216000-53273000 r--s 00000000 3a:00 1757715 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/log4j-1.2.4.jar
    53273000-532c3000 r--s 00000000 3a:00 1757716 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/mail.jar
    532c3000-53387000 r--s 00000000 3a:00 1757718 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/poi-2.5.1-final-20040804.jar
    53387000-5339f000 r--s 00000000 3a:00 1757720 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/sax.jar
    5339f000-5341c000 r--s 00000000 3a:00 1757722 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/standard.jar
    5341c000-534a3000 r--s 00000000 3a:00 1757723 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/struts.jar
    534a3000-534c2000 r--s 00000000 3a:00 1757727 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xml-apis.jar
    53500000-535fc000 rw-p 00000000 00:00 0
    535fc000-53600000 ---p 000be000 00:00 0
    53600000-53cc5000 r--s 00000000 3a:00 1757725 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xalan.jar
    53cc5000-53f74000 r--s 00000000 3a:00 1757726 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xercesImpl.jar
    53f74000-54031000 r--s 00000000 3a:00 1757728 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xmlsec.jar
    54031000-540a6000 r--s 00000000 3a:00 1757729 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xsdlib.jar
    540a6000-540a7000 ---p 00000000 00:00 0
    540a7000-540b5000 rwxp 00001000 00:00 0
    540b5000-540b8000 ---p 0000f000 00:00 0
    540b8000-54127000 rwxp 00012000 00:00 0
    54127000-54128000 ---p 00081000 00:00 0
    54128000-54136000 rwxp 00082000 00:00 0
    54136000-54139000 ---p 00090000 00:00 0
    54139000-541a8000 rwxp 00093000 00:00 0
    541a8000-5422f000 r--s 00000000 3a:00 1757723 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/struts.jar
    5422f000-54230000 ---p 00000000 00:00 0
    54230000-5423e000 rwxp 00001000 00:00 0
    5423e000-54241000 ---p 0000f000 00:00 0
    54241000-542b0000 rwxp 00012000 00:00 0
    542b0000-542b1000 ---p 00081000 00:00 0
    542b1000-542bf000 rwxp 00082000 00:00 0
    542bf000-542c2000 ---p 00090000 00:00 0
    542c2000-54331000 rwxp 00093000 00:00 0
    54331000-54332000 ---p 00102000 00:00 0
    54332000-54340000 rwxp 00103000 00:00 0
    54340000-54343000 ---p 00111000 00:00 0
    54343000-543b2000 rwxp 00114000 00:00 0
    543b2000-543b3000 ---p 00183000 00:00 0
    543b3000-543c1000 rwxp 00184000 00:00 0
    543c1000-543c4000 ---p 00192000 00:00 0
    543c4000-54433000 rwxp 00195000 00:00 0
    54433000-54434000 ---p 00204000 00:00 0
    54434000-54442000 rwxp 00205000 00:00 0
    54442000-54445000 ---p 00213000 00:00 0
    54445000-544b4000 rwxp 00216000 00:00 0
    544b4000-544b5000 ---p 00285000 00:00 0
    544b5000-544c3000 rwxp 00286000 00:00 0
    544c3000-544c6000 ---p 00294000 00:00 0
    544c6000-54535000 rwxp 00297000 00:00 0
    54535000-54536000 ---p 00306000 00:00 0
    54536000-54544000 rwxp 00307000 00:00 0
    54544000-54547000 ---p 00315000 00:00 0
    54547000-545b6000 rwxp 00318000 00:00 0
    545b6000-545b7000 ---p 00387000 00:00 0
    545b7000-545c5000 rwxp 00388000 00:00 0
    545c5000-545c8000 ---p 00396000 00:00 0
    545c8000-54637000 rwxp 00399000 00:00 0
    54637000-54638000 ---p 00408000 00:00 0
    54638000-54646000 rwxp 00409000 00:00 0
    54646000-54649000 ---p 00417000 00:00 0
    54649000-546b8000 rwxp 0041a000 00:00 0
    546b8000-546b9000 ---p 00489000 00:00 0
    546b9000-546c7000 rwxp 0048a000 00:00 0
    546c7000-546ca000 ---p 00498000 00:00 0
    546ca000-54739000 rwxp 0049b000 00:00 0
    54739000-5473a000 ---p 0050a000 00:00 0
    5473a000-54748000 rwxp 0050b000 00:00 0
    54748000-5474b000 ---p 00519000 00:00 0
    5474b000-547ba000 rwxp 0051c000 00:00 0
    547ba000-547bb000 ---p 0058b000 00:00 0
    547bb000-547c9000 rwxp 0058c000 00:00 0
    547c9000-547cc000 ---p 0059a000 00:00 0
    547cc000-5483b000 rwxp 0059d000 00:00 0
    5483b000-5483c000 ---p 0060c000 00:00 0
    5483c000-5484a000 rwxp 0060d000 00:00 0
    5484a000-5484d000 ---p 0061b000 00:00 0
    5484d000-548bc000 rwxp 0061e000 00:00 0
    548bc000-548fd000 rw-p 00000000 00:00 0
    548fd000-548fe000 ---p 00000000 00:00 0
    548fe000-5490c000 rwxp 00001000 00:00 0
    5490c000-5490f000 ---p 0000f000 00:00 0
    5490f000-5497e000 rwxp 00012000 00:00 0
    54a00000-54a49000 rw-p 00000000 00:00 0
    54a49000-54b00000 ---p 000cb000 00:00 0
    54b9b000-54b9c000 ---p 00000000 00:00 0
    54b9c0

    Hello,
    Hi,
    My application server(apache-tomcat-5.5.27) is running on linux box with Jdk1.6_13,64 bit server, It's crashing frequently like every 12- 15 hrs once. I am using OCI dirver to connect to the oracle database, here with I have enclosed the dump file generated.
    Any one faced such issues or have workaround or help on this issue to resolve is highly appreciated...
    Please help me as soon as possible//
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x0000002c35f26e7e, pid=11354, tid=1074588000
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (11.3-b02 mixed mode linux-amd64)
    # Problematic frame:
    # C [libclntsh.so.10.1+0x552e7e] gslcrqwWrite+0x40
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0000002c343ff000): JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_in_native, id=11383, stack(0x00000000400ae000,0x00000000400cf000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x000000000000019c
    Registers:
    RAX=0x0000002c34310f80, RBX=0x0000000000000000, RCX=0x0000002c33744d80, RDX=0x0000000000000000
    RSP=0x00000000400c4d60, RBP=0x00000000400c4da0, RSI=0x0000002c3355e5f0, RDI=0x0000000000000000
    R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x0000002c36cf00a0, R11=0x0000002c35f41800
    R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000002c3355e5f0, R15=0x0000000000000000
    RIP=0x0000002c35f26e7e, EFL=0x0000000000010202, CSGSFS=0x0000000000000000, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    time: Mon Apr 20 05:16:14 2009
    elapsed time: 42930 seconds

  • Photoshop CS3 Extended crashes when using Black and White or photomerge

    Photoshop crashes when I go to adjustment > Black and White also crashes on Photomerge.
    Running 10.4.11 have uninstalled and reinstalled 2 times. Runs fine on old HD only different program is Office 2008.
    Have 3 gigs of ram and 500 gig HD . G5 1.6 GHz
    Any suggestions,
    Thanks

    I did reset to factory settings no change. I also ran Repair Permission. I didn't run it before I
    installed but it was a new system on a new 500 gig HD. I have over 200 gig of free space and 100 gig on other HD. 2 gigs of Ram for Photoshop. Tried both as scratch disk same problem. Photoshop crashes with both Photomerge and Black and White.
    Don't have the latest version of Disk Warrior so haven't tried that.
    This problem doesn't happen when I reboot to other HD same programs except for Office 2008 could that be the conflict?
    thank you for the suggestions.

  • JVM crash when using debug mode in eclipse

    Hi,
    I get a SIGSEGV every time I use debug mode in Eclipse. Sometimes after a few breakpoints, sometimes when I start the debug view.
    Have Eclipse helios and JRE 6.0_21-b06 but have also tried 1.6.0_03-b05 with same result.
    The log file (hs_error_pidxxx.log) gives the following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xff23259c, pid=2917, tid=2
    # JRE version: 6.0_21-b06
    # Java VM: Java HotSpot(TM) Server VM (17.0-b16 mixed mode solaris-sparc )
    # Problematic frame:
    # C [libc.so.1+0x3259c] strncmp+0x348
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0003d800): JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    O0=0x00000001 O1=0x00000000 O2=0x00000001 O3=0x00000000
    O4=0x00000102 O5=0x0125d898 O6=0xfe37d3b8 O7=0xe1dd104c
    G1=0x00105000 G2=0x00007b00 G3=0x00000000 G4=0xe2947b08
    G5=0xfee6e2e8 G6=0x00000000 G7=0xfe3e0200 Y=0x00000000
    PC=0xff23259c nPC=0xff2325a0
    Top of Stack: (sp=0xfe37d3b8)
    0xfe37d3b8: 00000000 e1ebec00 ff2c1bd0 e1ebec00
    0xfe37d3c8: 011966e8 00000001 fee2e000 00001cc4
    0xfe37d3d8: 1d69c014 e2963fec 00000001 00000108
    0xfe37d3e8: 0000006e 0000006e fe37d3f8 e2947bd4
    0xfe37d3f8: e2963ff4 014e2b38 e2963ffc 00000000
    0xfe37d408: fee2e000 011afd80 01da6f38 e2963fec
    0xfe37d418: fe37d484 0125da90 0125dab8 00000002
    0xfe37d428: 00000000 e2974f88 fe37d488 e2350fd4
    Instructions: (pc=0xff23259c)
    0xff23258c: 91 ee 00 00 b4 a6 a0 01 0a bf ff e1 01 00 00 00
    0xff23259c: f8 0e 40 18 fa 0e 40 00 b2 06 60 01 80 a7 00 1d
    Stack: [0xfe300000,0xfe380000], sp=0xfe37d3b8, free space=1f4ff23259ck
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libc.so.1+0x3259c] strncmp+0x348
    C [libpangoft2-1.0.so.0.501.1+0x7bdc]
    C [libswt-pi-gtk-3650.so+0x50fdc] Java_org_eclipse_swt_internal_gtk_OS__1pango_1context_1list_1families+0x74
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+472954808
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+0
    j org.eclipse.swt.internal.gtk.OS.pango_context_list_families(I[I[I)V+10
    j org.eclipse.swt.graphics.Device.getFontList(Ljava/lang/String;Z)[Lorg/eclipse/swt/graphics/FontData;+53
    j org.eclipse.jface.resource.FontRegistry.filterData([Lorg/eclipse/swt/graphics/FontData;Lorg/eclipse/swt/widgets/Display;)[Lorg/eclipse/swt/graphics/FontData;+67
    j org.eclipse.jface.resource.FontRegistry.createFont(Ljava/lang/String;[Lorg/eclipse/swt/graphics/FontData;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+32
    j org.eclipse.jface.resource.FontRegistry.getFontRecord(Ljava/lang/String;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+53
    j org.eclipse.jface.resource.FontRegistry.get(Ljava/lang/String;)Lorg/eclipse/swt/graphics/Font;+2
    j org.eclipse.jface.resource.JFaceResources.getHeaderFont()Lorg/eclipse/swt/graphics/Font;+5
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createTitleLabel(Lorg/eclipse/swt/widgets/Composite;Ljava/lang/String;)Lorg/eclipse/swt/widgets/Label;+36
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createControl(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+99
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.verifyInput(Lorg/eclipse/ui/IEditorInput;)V+95
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+96
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+361
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorReference.getEditor(Z)Lorg/eclipse/ui/IEditorPart;+2
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+233
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+27
    j org.eclipse.ui.internal.WorkbenchPage.access$11(Lorg/eclipse/ui/internal/WorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+8
    j org.eclipse.ui.internal.WorkbenchPage$10.run()V+29
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+59
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZI)Lorg/eclipse/ui/IEditorPart;+7
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility$1.run()V+41
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/ui/IWorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;)Lorg/eclipse/ui/IEditorPart;+26
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)Lorg/eclipse/ui/IEditorPart;+201
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.display(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+3
    j org.eclipse.debug.ui.DebugUITools.displaySource(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+5
    j org.eclipse.debug.internal.ui.elements.adapters.StackFrameSourceDisplayAdapter$SourceDisplayJob.runInUIThread(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+24
    j org.eclipse.ui.progress.UIJob$1.run()V+53
    J org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
    J org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z
    J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    V [libjvm.so+0x15e33c]
    V [libjvm.so+0x797afc]
    V [libjvm.so+0x217704]
    V [libjvm.so+0x215d8c]
    C [libjava.so+0x10bfc] Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x18
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+746878888
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
    v ~StubRoutines::call_stub
    V [libjvm.so+0x15e33c]
    V [libjvm.so+0x2012dc]
    C [java+0x3ab8]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+0
    j org.eclipse.swt.internal.gtk.OS.pango_context_list_families(I[I[I)V+10
    j org.eclipse.swt.graphics.Device.getFontList(Ljava/lang/String;Z)[Lorg/eclipse/swt/graphics/FontData;+53
    j org.eclipse.jface.resource.FontRegistry.filterData([Lorg/eclipse/swt/graphics/FontData;Lorg/eclipse/swt/widgets/Display;)[Lorg/eclipse/swt/graphics/FontData;+67
    j org.eclipse.jface.resource.FontRegistry.createFont(Ljava/lang/String;[Lorg/eclipse/swt/graphics/FontData;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+32
    j org.eclipse.jface.resource.FontRegistry.getFontRecord(Ljava/lang/String;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+53
    j org.eclipse.jface.resource.FontRegistry.get(Ljava/lang/String;)Lorg/eclipse/swt/graphics/Font;+2
    j org.eclipse.jface.resource.JFaceResources.getHeaderFont()Lorg/eclipse/swt/graphics/Font;+5
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createTitleLabel(Lorg/eclipse/swt/widgets/Composite;Ljava/lang/String;)Lorg/eclipse/swt/widgets/Label;+36
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createControl(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+99
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.verifyInput(Lorg/eclipse/ui/IEditorInput;)V+95
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+96
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+361
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorReference.getEditor(Z)Lorg/eclipse/ui/IEditorPart;+2
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+233
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+27
    j org.eclipse.ui.internal.WorkbenchPage.access$11(Lorg/eclipse/ui/internal/WorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+8
    j org.eclipse.ui.internal.WorkbenchPage$10.run()V+29
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+59
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZI)Lorg/eclipse/ui/IEditorPart;+7
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility$1.run()V+41
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/ui/IWorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;)Lorg/eclipse/ui/IEditorPart;+26
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)Lorg/eclipse/ui/IEditorPart;+201
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.display(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+3
    j org.eclipse.debug.ui.DebugUITools.displaySource(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+5
    j org.eclipse.debug.internal.ui.elements.adapters.StackFrameSourceDisplayAdapter$SourceDisplayJob.runInUIThread(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+24
    j org.eclipse.ui.progress.UIJob$1.run()V+53
    J org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
    J org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z
    J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x016fec00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=300, stack(0xd8f00000,0xd8f80000)]
    0x01a5dc00 JavaThread "org.eclipse.jdt.debug: JDI Event Dispatcher" daemon [_thread_blocked, id=292, stack(0xd9000000,0xd9080000)]
    0x00a3bc00 JavaThread "Timer-2" daemon [_thread_blocked, id=291, stack(0xd9700000,0xd9780000)]
    0x00a41000 JavaThread "Packet Send Manager" daemon [_thread_blocked, id=290, stack(0xd9100000,0xd9180000)]
    0x01f73c00 JavaThread "Packet Receive Manager" daemon [_thread_in_native, id=289, stack(0xd9200000,0xd9280000)]
    0x00e2a400 JavaThread "Timer-1" daemon [_thread_blocked, id=287, stack(0xd9a00000,0xd9a80000)]
    0x0094c000 JavaThread "ServerConnection" [_thread_in_native, id=285, stack(0xd9800000,0xd9880000)]
    0x0094bc00 JavaThread "Process monitor" daemon [_thread_blocked, id=284, stack(0xd9300000,0xd9380000)]
    0x00895c00 JavaThread "Input Stream Monitor" daemon [_thread_blocked, id=283, stack(0xd9400000,0xd9480000)]
    0x01fef800 JavaThread "Output Stream Monitor" daemon [_thread_in_native, id=282, stack(0xd9600000,0xd9680000)]
    0x00a8b000 JavaThread "Output Stream Monitor" daemon [_thread_in_native, id=281, stack(0xd9900000,0xd9980000)]
    0x011dbc00 JavaThread "process reaper" daemon [_thread_in_native, id=280, stack(0xd9500000,0xd9580000)]
    0x01059800 JavaThread "Worker-24" [_thread_blocked, id=261, stack(0xd9c80000,0xd9d00000)]
    0x01059000 JavaThread "Worker-23" [_thread_blocked, id=260, stack(0xde580000,0xde600000)]
    0x02176000 JavaThread "Worker-22" [_thread_blocked, id=248, stack(0xddd00000,0xddd80000)]
    0x01ff0800 JavaThread "Worker-21" [_thread_blocked, id=247, stack(0xda280000,0xda300000)]
    0x00c41c00 JavaThread "Worker-20" [_thread_blocked, id=245, stack(0xdd700000,0xdd780000)]
    0x0268bc00 JavaThread "Worker-19" [_thread_blocked, id=243, stack(0xde000000,0xde080000)]
    0x0141e800 JavaThread "Worker-18" [_thread_blocked, id=242, stack(0xdda00000,0xdda80000)]
    0x019aec00 JavaThread "Worker-16" [_thread_blocked, id=227, stack(0xddf00000,0xddf80000)]
    0x0143b800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=223, stack(0xddb00000,0xddb80000)]
    0x01022800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=219, stack(0xdde00000,0xdde80000)]
    0x00a58800 JavaThread "Worker-12" [_thread_blocked, id=211, stack(0xde680000,0xde700000)]
    0x018c5400 JavaThread "pool-1-thread-5" [_thread_blocked, id=187, stack(0xd9d80000,0xd9e00000)]
    0x013cdc00 JavaThread "pool-1-thread-4" [_thread_blocked, id=186, stack(0xda380000,0xda400000)]
    0x002a4c00 JavaThread "pool-1-thread-3" [_thread_blocked, id=185, stack(0xddc00000,0xddc80000)]
    0x0282b400 JavaThread "pool-1-thread-2" [_thread_blocked, id=184, stack(0xd9e80000,0xd9f00000)]
    0x018c6400 JavaThread "pool-1-thread-1" [_thread_blocked, id=183, stack(0xd9f80000,0xda000000)]
    0x00973000 JavaThread "Timer-0" daemon [_thread_blocked, id=75, stack(0xdd800000,0xdd880000)]
    0x00ab8000 JavaThread "Thread-39" daemon [_thread_blocked, id=74, stack(0xdd500000,0xdd580000)]
    0x00dc1400 JavaThread "Worker-6" [_thread_blocked, id=73, stack(0xdd900000,0xdd980000)]
    0x004db000 JavaThread "Thread-32" daemon [_thread_in_native, id=66, stack(0xda4d0000,0xda4e0000)]
    0x011eb000 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=43, stack(0xdd400000,0xdd480000)]
    0x003e6400 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=27, stack(0xde100000,0xde180000)]
    0x007c6c00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=26, stack(0xde200000,0xde280000)]
    0x001ce800 JavaThread "Java indexing" daemon [_thread_blocked, id=24, stack(0xde380000,0xde400000)]
    0x00191400 JavaThread "Worker-0" [_thread_blocked, id=21, stack(0xe2580000,0xe2600000)]
    0x01235400 JavaThread "Worker-JM" [_thread_blocked, id=20, stack(0xe2380000,0xe2400000)]
    0x007ff400 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=19, stack(0xe2480000,0xe2500000)]
    0x0074e000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=17, stack(0xe2680000,0xe2700000)]
    0x00390000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=16, stack(0xe2780000,0xe2800000)]
    0x005c9800 JavaThread "State Data Manager" daemon [_thread_blocked, id=15, stack(0xe2880000,0xe2900000)]
    0x00124800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=13, stack(0xe2a80000,0xe2b00000)]
    0x00122400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=12, stack(0xe2b80000,0xe2c00000)]
    0x00110c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=11, stack(0xe2c80000,0xe2d00000)]
    0x00118000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=10, stack(0xe2d80000,0xe2e00000)]
    0x00107c00 JavaThread "Finalizer" daemon [_thread_blocked, id=9, stack(0xe2e80000,0xe2f00000)]
    0x00106400 JavaThread "Reference Handler" daemon [_thread_blocked, id=8, stack(0xe2f80000,0xe3000000)]
    =>0x0003d800 JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    Other Threads:
    0x00103c00 VMThread [stack: 0xe3080000,0xe3100000] [id=7]
    0x0012ec00 WatcherThread [stack: 0xe2980000,0xe2a00000] [id=14]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 40704K, used 18973K [0xf6000000, 0xf9400000, 0xfb800000)
    eden space 29568K, 59% used [0xf6000000,0xf714b120,0xf7ce0000)
    from space 11136K, 11% used [0xf7e40000,0xf7f7c5c8,0xf8920000)
    to space 10432K, 0% used [0xf89d0000,0xf89d0000,0xf9400000)
    PSOldGen total 90112K, used 71968K [0xeb400000, 0xf0c00000, 0xf6000000)
    object space 90112K, 79% used [0xeb400000,0xefa48298,0xf0c00000)
    PSPermGen total 73728K, used 71408K [0xe3400000, 0xe7c00000, 0xeb400000)
    object space 73728K, 96% used [0xe3400000,0xe79bc298,0xe7c00000)
    Dynamic libraries:
    0x00010000      /proj/atelteadm/tools/jdk1.6.0_21/bin/java
    0xff3a0000      /lib/libthread.so.1
    0xff370000      /proj/atelteadm/tools/jdk1.6.0_21/bin/../jre/lib/sparc/jli/libjli.so
    0xff350000      /lib/libdl.so.1
    0xff200000      /lib/libc.so.1
    0xff390000      /platform/SUNW,Sun-Fire-V445/lib/libc_psr.so.1
    0xfe400000      /proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc/server/libjvm.so
    0xff1d0000      /lib/libsocket.so.1
    0xff1f0000      /usr/lib/libsched.so.1
    0xff1b0000      /lib/libm.so.1
    0xff180000      /usr/lib/libCrun.so.1
    0xff160000      /lib/libdoor.so.1
    0xff080000      /lib/libnsl.so.1
    0xfef80000      /lib/libm.so.2
    0xff050000      /lib/libscf.so.1
    0xff140000      /lib/libuutil.so.1
    VM Arguments:
    jvm_args: -Xms128m -Xmx256m -XX:MaxPermSize=128m
    java_command: /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar -os solaris -ws gtk -arch sparc -showsplash -launcher /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix/eclipse -name Eclipse --launcher.library /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher.gtk.solaris.sparc_1.1.0.v20100503/eclipse_1307.so -startup /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar -exitdata 74000027 -install /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix -nl en_US -showlocation -vm /proj/atelteadm/tools/jdk1.6.0_21//bin/java -vmargs -Xms128m -Xmx256m -XX:MaxPermSize=128m -jar /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/usr/local/opt/apssystem/aps_9.1/bin:/proj/aps/bin:/home/ehollis/.afs/0/rbin:/home/ehollis/.afs/0/pbin:/env/seli/bin:/home/ehollis/.afs/0/ibin:/usr/atria/bin:/usr/afsws/bin:/usr/bin:/usr/X/bin:/usr/dt/bin:/usr/openwin/demo:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin:/usr/sbin:/sbin:/usr/ucb:/opt/seli/bin:/opt/sge/seli/etegrid/bin:/opt/sge/seli/bctgrid/bin:/usr/ucb:.
    LD_LIBRARY_PATH=/proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc/server:/proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc:/proj/atelteadm/tools/jdk1.6.0_21/jre/../lib/sparc:/app/gtk+/2.2.2/lib:/usr/sfw/lib/mozilla/
    SHELL=/bin/tcsh
    DISPLAY=:16.0
    HOSTTYPE=sun4
    OSTYPE=solaris
    MACHTYPE=sparc
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x87b320], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x87b320], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGXFSZ: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x759ae8], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Solaris 10 10/08 s10s_u6wos_07b SPARC
    uname:SunOS 5.10 Generic_142900-13 sun4u (T2 libthread)
    vm_info: Java HotSpot(TM) Server VM (17.0-b16) for solaris-sparc JRE (1.6.0_21-b06), built on Jun 22 2010 01:34:33 by "" with Workshop 5.8
    Any clues anyone?

    get a SIGSEGV every time I use debug mode in EclipseSo if you create a hello world program and then debug it, it crashes?
    If yes then the causes would be
    1. The VM(s) binaries are corrupted. Plural as it depends on how you run Eclipse.
    2. Something else installed on your system at the OS level (or at least always running) is corrupt or is corrupting the OS.
    3. A hardware failure.

  • JVM crash when used JDK 1.6

    HI ALL
    we have a stand alone program running fro every one minute on linux RHEL 4 update 4
    we upgraded our JDK to jdk 1.6 update 6
    we also have another process which is running continumouly on the system and lot of load is applied on this.
    The first process queries on db for a task and if exists processes it.
    Though this program is idle and has no task to process it has crashed.
    do we have any problem like this in JDK 1.6 update 6 when the process is idle
    the error written is as follows
    cat /tmp/hs_err_pid12381.log
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x38790d86, pid=12381, tid=2908736432
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C 0x38790d86
    # 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 (0x083e9800): JavaThread "GC Daemon" daemon [_thread_in_Java, id=12397, stack(0xad5ac000,0xad5fd000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x38790d86
    Registers:
    EAX=0x00000000, EBX=0xb23fb4f0, ECX=0x38790d86, EDX=0x083e9800
    ESP=0xad5fbd1c, EBP=0xad5fbd54, ESI=0xb23fb4ec, EDI=0xad5fbd60
    EIP=0x38790d86, CR2=0x38790d86, EFLAGS=0x00010246
    Top of Stack: (sp=0xad5fbd1c)
    0xad5fbd1c: b5f3bdfe 083e9800 00000000 083e9800
    0xad5fbd2c: 01000000 083e9800 ad5fbd34 b23fb4ec
    0xad5fbd3c: ad5fbd60 b23fbbb8 00000000 b23fb4f0
    0xad5fbd4c: 00000000 ad5fbd64 ad5fbd8c b5f34dfb
    0xad5fbd5c: 00000000 00000000 00000001 adf3cf90
    0xad5fbd6c: ad5fbd64 b23fcfd6 ad5fbdb0 b23fd470
    0xad5fbd7c: 00000000 b23fd028 ad5fbd64 ad5fbdb0
    0xad5fbd8c: ad5fbdc8 b5f32249 00000000 00000000
    Instructions: (pc=0x38790d86)
    0x38790d76:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xb]
    Stack: [0xad5ac000,0xad5fd000], sp=0xad5fbd1c, free space=319k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x38790d86
    v ~BufferBlob::Interpreter
    v ~BufferBlob::StubRoutines (1)
    V [libjvm.so+0x21c5cd]
    V [libjvm.so+0x310748]
    V [libjvm.so+0x21bee0]
    V [libjvm.so+0x21bf6d]
    V [libjvm.so+0x28c175]
    V [libjvm.so+0x391f8d]
    V [libjvm.so+0x3113f9]
    C [libpthread.so.0+0x5371]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x083f9800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=12403, stack(0xad508000,0xad559000)]
    0x083f2c00 JavaThread "RMI TCP Connection(1)-192.168.6.44" daemon [_thread_in_native, id=12399, stack(0xad55b000,0xad5ac000)]
    =>0x083e9800 JavaThread "GC Daemon" daemon [_thread_in_Java, id=12397, stack(0xad5ac000,0xad5fd000)]
    0x083d6000 JavaThread "RMI Reaper" [_thread_blocked, id=12396, stack(0xad5fd000,0xad64e000)]
    0x083cfc00 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=12395, stack(0xad64e000,0xad69f000)]
    0x081fe000 JavaThread "Thread-0" daemon [_thread_blocked, id=12394, stack(0xad6c8000,0xad719000)]
    0x080c7c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=12388, stack(0xad7f9000,0xad84a000)]
    0x080bd000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=12387, stack(0xad84a000,0xad8cb000)]
    0x080bbc00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=12386, stack(0xad8cb000,0xad91c000)]
    0x080a9000 JavaThread "Finalizer" daemon [_thread_blocked, id=12385, stack(0xadb50000,0xadba1000)]
    0x080a7c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=12384, stack(0xadba1000,0xadbf2000)]
    0x08058c00 JavaThread "main" [_thread_in_native, id=12382, stack(0xb7f90000,0xb7fe1000)]
    Other Threads:
    0x080a4c00 VMThread [stack: 0xadbf2000,0xadc73000] [id=12383]
    0x080c9000 WatcherThread [stack: 0xad778000,0xad7f9000] [id=12389]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 946K [0xadeb0000, 0xadfb0000, 0xae390000)
    eden space 896K, 100% used [0xadeb0000, 0xadf90000, 0xadf90000)
    from space 64K, 78% used [0xadf90000, 0xadf9ca38, 0xadfa0000)
    to space 64K, 0% used [0xadfa0000, 0xadfa0000, 0xadfb0000)
    tenured generation total 4096K, used 746K [0xae390000, 0xae790000, 0xb1eb0000)
    the space 4096K, 18% used [0xae390000, 0xae44a850, 0xae44aa00, 0xae790000)
    compacting perm gen total 12288K, used 6211K [0xb1eb0000, 0xb2ab0000, 0xb5eb0000)
    the space 12288K, 50% used [0xb1eb0000, 0xb24c0c70, 0xb24c0e00, 0xb2ab0000)
    No shared spaces configured.
    Dynamic libraries:
    001d6000-001e8000 r-xp 00000000 08:01 116255 /lib/libnsl-2.3.4.so
    001e8000-001ea000 rwxp 00011000 08:01 116255 /lib/libnsl-2.3.4.so
    001ea000-001ec000 rwxp 001ea000 00:00 0
    0023d000-00245000 r-xp 00000000 08:01 116256 /lib/tls/librt-2.3.4.so
    00245000-00247000 rwxp 00007000 08:01 116256 /lib/tls/librt-2.3.4.so
    00247000-00251000 rwxp 00247000 00:00 0
    00a9a000-00aaf000 r-xp 00000000 08:01 116243 /lib/ld-2.3.4.so
    00aaf000-00ab0000 r-xp 00015000 08:01 116243 /lib/ld-2.3.4.so
    00ab0000-00ab1000 rwxp 00016000 08:01 116243 /lib/ld-2.3.4.so
    00ab8000-00bdd000 r-xp 00000000 08:01 116244 /lib/tls/libc-2.3.4.so
    00bdd000-00bde000 r-xp 00124000 08:01 116244 /lib/tls/libc-2.3.4.so
    00bde000-00be1000 rwxp 00125000 08:01 116244 /lib/tls/libc-2.3.4.so
    00be1000-00be3000 rwxp 00be1000 00:00 0
    00be5000-00c06000 r-xp 00000000 08:01 116245 /lib/tls/libm-2.3.4.so
    00c06000-00c08000 rwxp 00020000 08:01 116245 /lib/tls/libm-2.3.4.so
    00c0a000-00c0c000 r-xp 00000000 08:01 116246 /lib/libdl-2.3.4.so
    00c0c000-00c0e000 rwxp 00001000 08:01 116246 /lib/libdl-2.3.4.so
    00d01000-00d0f000 r-xp 00000000 08:01 116247 /lib/tls/libpthread-2.3.4.so
    00d0f000-00d11000 rwxp 0000d000 08:01 116247 /lib/tls/libpthread-2.3.4.so
    00d11000-00d13000 rwxp 00d11000 00:00 0
    06000000-0641b000 r-xp 00000000 08:11 7250607 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/client/libjvm.so
    0641b000-06435000 rwxp 0041a000 08:11 7250607 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/client/libjvm.so
    06435000-06855000 rwxp 06435000 00:00 0
    08048000-08052000 r-xp 00000000 08:11 7250708 /home/blaster44b18/env/jdk1.6.6/bin/java
    08052000-08053000 rwxp 00009000 08:11 7250708 /home/blaster44b18/env/jdk1.6.6/bin/java
    08053000-08401000 rwxp 08053000 00:00 0
    ad508000-ad50b000 --xp ad508000 00:00 0
    ad50b000-ad559000 rwxp ad50b000 00:00 0
    ad559000-ad55a000 r-xp 00000000 08:11 7250614 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/librmi.so
    ad55a000-ad55b000 rwxp 00000000 08:11 7250614 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/librmi.so
    ad55b000-ad55e000 --xp ad55b000 00:00 0
    ad55e000-ad5ac000 rwxp ad55e000 00:00 0
    ad5ac000-ad5af000 --xp ad5ac000 00:00 0
    ad5af000-ad5fd000 rwxp ad5af000 00:00 0
    ad5fd000-ad600000 --xp ad5fd000 00:00 0
    ad600000-ad64e000 rwxp ad600000 00:00 0
    ad64e000-ad651000 --xp ad64e000 00:00 0
    ad651000-ad69f000 rwxp ad651000 00:00 0
    ad69f000-ad6b2000 r-xp 00000000 08:11 7250625 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libnet.so
    ad6b2000-ad6b3000 rwxp 00013000 08:11 7250625 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libnet.so
    ad6b3000-ad6bc000 r-xs 0007a000 08:11 6979711 /home/blaster44b18/env/jdk1.6.6/jre/lib/resources.jar
    ad6bc000-ad6bf000 r-xs 00027000 08:11 6995983 /home/blaster44b18/env/jdk1.6.6/jre/lib/ext/sunjce_provider.jar
    ad6bf000-ad6c5000 r-xs 00091000 08:11 6979722 /home/blaster44b18/env/jdk1.6.6/jre/lib/jsse.jar
    ad6c5000-ad6c8000 r-xs 00013000 08:11 6979732 /home/blaster44b18/env/jdk1.6.6/jre/lib/jce.jar
    ad6c8000-ad6cb000 --xp ad6c8000 00:00 0
    ad6cb000-ad719000 rwxp ad6cb000 00:00 0
    ad719000-ad71a000 r-xp 00000000 08:11 7250731 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libj_pid.so
    ad71a000-ad71b000 rwxp 00000000 08:11 7250731 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libj_pid.so
    ad71b000-ad72f000 r-xs 0025e000 08:11 4260998 /home/blaster44b18/api/lib/ebiz_api.jar
    ad72f000-ad735000 r-xs 0004a000 08:11 6973655 /home/blaster44b18/api/lib/mail.jar
    ad735000-ad73a000 r-xs 00043000 08:11 6973647 /home/blaster44b18/api/lib/htmlparser.jar
    ad73a000-ad73b000 r-xs 00002000 08:11 3358797 /home/blaster44b18/jar/ebiz_monitor.jar
    ad73b000-ad742000 r-xs 00053000 08:11 3358804 /home/blaster44b18/jar/log4j-1.2.14.jar
    ad742000-ad743000 r-xs 00001000 08:11 3358817 /home/blaster44b18/jar/util.jar
    ad743000-ad745000 r-xs 00005000 08:11 3358812 /home/blaster44b18/jar/tar.jar
    ad745000-ad74b000 r-xs 00059000 08:11 3358811 /home/blaster44b18/jar/scp.jar
    ad74b000-ad752000 r-xs 000ee000 08:11 3358814 /home/blaster44b18/jar/terajdbc4.jar
    ad752000-ad754000 r-xs 00007000 08:11 3358813 /home/blaster44b18/jar/tdgssjava.jar
    ad754000-ad758000 r-xs 00068000 08:11 3358805 /home/blaster44b18/jar/mysql-connector-java-3.1.11-bin.jar
    ad758000-ad75b000 r-xs 00043000 08:11 3358801 /home/blaster44b18/jar/jtds-1.2.jar
    ad75b000-ad75d000 r-xs 0002e000 08:11 6979590 /home/blaster44b18/jar/scheduler.jar
    ad75d000-ad767000 r-xs 00118000 08:11 3358809 /home/blaster44b18/jar/ojdbc14.zip
    ad767000-ad776000 r-xs 001c8000 08:11 3358810 /home/blaster44b18/jar/ojdbc14_g.jar
    ad776000-ad778000 r-xs 00008000 08:11 3358808 /home/blaster44b18/jar/ocrs12.zip
    ad778000-ad779000 --xp ad778000 00:00 0
    ad779000-ad7f9000 rwxp ad779000 00:00 0
    ad7f9000-ad7fc000 --xp ad7f9000 00:00 0
    ad7fc000-ad84a000 rwxp ad7fc000 00:00 0
    ad84a000-ad84d000 --xp ad84a000 00:00 0
    ad84d000-ad8cb000 rwxp ad84d000 00:00 0
    ad8cb000-ad8ce000 --xp ad8cb000 00:00 0
    ad8ce000-ad91c000 rwxp ad8ce000 00:00 0
    ad91c000-ad91d000 r-xp 0285b000 08:05 18691 /usr/lib/locale/locale-archive
    ad91d000-ad923000 r-xp 011ba000 08:05 18691 /usr/lib/locale/locale-archive
    ad923000-ad950000 r-xp 01188000 08:05 18691 /usr/lib/locale/locale-archive
    ad950000-adb50000 r-xp 00000000 08:05 18691 /usr/lib/locale/locale-archive
    adb50000-adb53000 --xp adb50000 00:00 0
    adb53000-adba1000 rwxp adb53000 00:00 0
    adba1000-adba4000 --xp adba1000 00:00 0
    adba4000-adbf2000 rwxp adba4000 00:00 0
    adbf2000-adbf3000 --xp adbf2000 00:00 0
    adbf3000-adca5000 rwxp adbf3000 00:00 0
    adca5000-ade30000 r-xs 02df0000 08:11 6979708 /home/blaster44b18/env/jdk1.6.6/jre/lib/rt.jar
    ade30000-ade37000 rwxp ade30000 00:00 0
    ade37000-ade51000 rwxp ade37000 00:00 0
    ade51000-ade54000 rwxp ade51000 00:00 0
    ade54000-ade6f000 rwxp ade54000 00:00 0
    ade6f000-ade70000 rwxp ade6f000 00:00 0
    ade70000-ade71000 rwxp ade70000 00:00 0
    ade71000-ade74000 rwxp ade71000 00:00 0
    ade74000-ade8f000 rwxp ade74000 00:00 0
    ade8f000-ade95000 rwxp ade8f000 00:00 0
    ade95000-adeaf000 rwxp ade95000 00:00 0
    adeaf000-adfb0000 rwxp adeaf000 00:00 0
    adfb0000-ae390000 rwxp adfb0000 00:00 0
    ae390000-ae790000 rwxp ae390000 00:00 0
    ae790000-b1eb0000 rwxp ae790000 00:00 0
    b1eb0000-b2ab0000 rwxp b1eb0000 00:00 0
    b2ab0000-b5eb0000 rwxp b2ab0000 00:00 0
    b5eb0000-b5eb1000 r-xs 00001000 08:11 6973646 /home/blaster44b18/api/lib/htmlentities.jar
    b5eb1000-b5eb2000 r-xs 00009000 08:11 3358806 /home/blaster44b18/jar/nanoxml-2.1.1.jar
    b5eb2000-b5eb6000 rwxp b5eb2000 00:00 0
    b5eb6000-b5f32000 rwxp b5eb6000 00:00 0
    b5f32000-b6012000 rwxp b5f32000 00:00 0
    b6012000-b7f32000 rwxp b6012000 00:00 0
    b7f32000-b7f41000 r-xp 00000000 08:11 7250651 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libzip.so
    b7f41000-b7f43000 rwxp 0000e000 08:11 7250651 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libzip.so
    b7f43000-b7f66000 r-xp 00000000 08:11 7250615 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libjava.so
    b7f66000-b7f68000 rwxp 00023000 08:11 7250615 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libjava.so
    b7f68000-b7f71000 r-xp 00000000 08:01 114738 /lib/libnss_files-2.3.4.so
    b7f71000-b7f73000 rwxp 00008000 08:01 114738 /lib/libnss_files-2.3.4.so
    b7f73000-b7f7e000 r-xp 00000000 08:11 7250640 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libverify.so
    b7f7e000-b7f7f000 rwxp 0000b000 08:11 7250640 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/libverify.so
    b7f7f000-b7f87000 rwxs 00000000 08:01 16402 /tmp/hsperfdata_blaster44b18/12381
    b7f87000-b7f8d000 r-xp 00000000 08:11 7250658 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/native_threads/libhpi.so
    b7f8d000-b7f8e000 rwxp 00006000 08:11 7250658 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/native_threads/libhpi.so
    b7f8e000-b7f8f000 rwxp b7f8e000 00:00 0
    b7f8f000-b7f90000 r-xp b7f8f000 00:00 0
    b7f90000-b7f93000 --xp b7f90000 00:00 0
    b7f93000-b7fe2000 rwxp b7f93000 00:00 0
    b7fe2000-b7fe9000 r-xp 00000000 08:11 7250618 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/jli/libjli.so
    b7fe9000-b7feb000 rwxp 00006000 08:11 7250618 /home/blaster44b18/env/jdk1.6.6/jre/lib/i386/jli/libjli.so
    b7feb000-b7fec000 rwxp b7feb000 00:00 0
    bfff9000-c0000000 rwxp bfff9000 00:00 0
    ffffe000-fffff000 ---p 00000000 00:00 0
    VM Arguments:
    jvm_args: -DHOME=/home/blaster44b18
    java_command: scheduler.controllers.SchedulerManager 8 /home/blaster44b18/etc/listproc.cfg /home/blaster44b18/log/listproc8.pid 0 0
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=/home/blaster44b18/jar:/home/blaster44b18/jar/nanoxml-2.1.1.jar:/home/blaster44b18/jar/ocrs12.zip:/home/blaster44b18/jar/ojdbc14_g.jar:/home/blaster44b18/jar/ojdbc14.zip:/home/blaster44b18/jar/scheduler.jar:/home/blaster44b18/jar/jtds-1.2.jar:/home/blaster44b18/jar/mysql-connector-java-3.1.11-bin.jar:/home/blaster44b18/jar/tdgssjava.jar:/home/blaster44b18/jar/terajdbc4.jar:/home/blaster44b18/jar/scp.jar:/home/blaster44b18/jar/tar.jar:/home/blaster44b18/jar/util.jar:/home/blaster44b18/jar/log4j-1.2.14.jar:/home/blaster44b18/jar/ebiz_monitor.jar:/home/blaster44b18/api/lib/htmlparser.jar:/home/blaster44b18/api/lib/mail.jar:/home/blaster44b18/api/lib/ebiz_api.jar:/home/blaster44b18/api/lib/htmlentities.jar:/home/blaster44b18/etc/scheduler_log4j.properties:.
    PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
    LD_LIBRARY_PATH=/home/blaster44b18/env/jdk1.6.6/jre/lib/i386/client:/home/blaster44b18/env/jdk1.6.6/jre/lib/i386:/home/blaster44b18/env/jdk1.6.6/jre/../lib/i386
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x3be710], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x3be710], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x30f810], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x30f810], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGXFSZ: [libjvm.so+0x30f810], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x30f810], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x311850], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: [libjvm.so+0x3115f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x3115f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x3115f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:Red Hat Enterprise Linux ES release 4 (Nahant Update 4)
    uname:Linux 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:27:17 EDT 2006 i686
    libc:glibc 2.3.4 NPTL 2.3.4
    rlimit: STACK 10240k, CORE 0k, NPROC 100352, NOFILE 1024, AS infinity
    load average:2.96 3.24 3.41
    CPU:total 2 (1 cores per cpu, 2 threads per core) family 15 model 2 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 6235276k(2577560k free), swap 12586916k(12586772k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b22) for linux-x86 JRE (1.6.0_06-b02), built on Mar 25 2008 00:39:19 by "java_re" with gcc 3.2.1-7a (J2SE release)
    time: Fri Sep 12 07:45:41 2008
    elapsed time: 1 seconds
    please give some suggestions so as to understand why this has happened
    Thanks
    Vijay Sunder

    Hello,
    after some debugging with gdb, I discovered that the three crashes happen in the same instruction (mov %rcx,(%r10,%rcx,1)) and code fragment.
    0x00002aaaabb73410:     and    %al,(%rdx)
    0x00002aaaabb73412:     add    %al,(%rax)
    0x00002aaaabb73414:     add    $0x0,%al
    0x00002aaaabb73416:     add    %al,(%rax)
    0x00002aaaabb73418:     mov    $0x2b71d348f0a0,%r10
    0x00002aaaabb73422:     rex.WB callq  *%r10
    0x00002aaaabb73425:     and    $0xff,%eax
    0x00002aaaabb7342b:     setne  %al
    0x00002aaaabb7342e:     movq   $0x5,0x220(%r15)
    0x00002aaaabb73439:     mov    %r15d,%ecx
    0x00002aaaabb7343c:     shr    $0x4,%ecx
    0x00002aaaabb7343f:     and    $0xffc,%ecx
    0x00002aaaabb73445:     mov    $0x2aaaaabb7000,%r10
    ----> 0x00002aaaabb7344f:     mov    %rcx,(%r10,%rcx,1)
    0x00002aaaabb73453:     mov    $0x2b71d38f0e88,%r10
    0x00002aaaabb7345d:     cmpl   $0x0,(%r10)
    0x00002aaaabb73464:     jne    0x2aaaabb73478
    0x00002aaaabb7346a:     cmpl   $0x0,0x30(%r15)
    0x00002aaaabb73472:     je     0x2aaaabb7349e
    0x00002aaaabb73478:     mov    %rax,-0x8(%rbp)
    0x00002aaaabb7347c:     mov    %r15,%rdi
    0x00002aaaabb7347f:     mov    %rsp,%r12
    0x00002aaaabb73482:     sub    $0x0,%rsp
    0x00002aaaabb73486:     and    $0xfffffffffffffff0,%rsp
    0x00002aaaabb7348a:     mov    $0x2b71d36c2e30,%r10 Is it possible that it's the same bug as described in:
    [http://bugs.sun.com/view_bug.do?bug_id=6811384] [http://bugs.sun.com/view_bug.do?bug_id=6885108]
    The jdk Versions with the problem are: 1.6.0_11 and 1.6.0_16
    (We didn't test it with 1.6.0_18 as previously mentioned, sorry)
    bye
    Roland
    Edited by: Cymric on Sep 16, 2010 7:37 AM

  • Photoshop CS4 Crashes when using shift and the move tool

    Please help!
    Everytime I click on a layer with the move tool while holding the shift button (so I can constrain the movement), photoshop crashes.  I get a message that says, "Could not use the move tool because of a program error". And then photoshop just shuts down.
    Now I can use the move tool without holding shift, but as soon as I hit the shift button and try them together . . . crash!
    What is going on?
    I'm wondering if it has something to do with an updated video driver that I installed yesterday.  It wasn't doing this before that.
    Suggestions anyone?  Please Please Please Help!

    Have you tried rolling back the driver to see if the fault disappears?
    You could also try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    (A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.)

  • Windows 7 crashes when using Lightroom and Photoshop

    I am trying to determine the cause of random crashes (bsod) when I run Lightroom 4 and Photoshop CS5 (either individually or both at the same time) on my Windows 7 64-bit PC.  I'm begining to think the crashes might be related to interactions between LR4, CS5, and Windows 7 Services.  Does anyone know of a list of Windows 7 64-bit Services that are used by LR4 and CS5?

    Applications can't cause BSOD's. Crash, yes, but not BSOD. The real cause is usually faulty or incompatible hardware (most likely RAM), or buggy drivers (most likely video card).
    Photoshop puts a lot of stress on your computer, so any latent problems are likely to turn up. Lightroom I believe less so; but still it can push the wrong buttons.
    I'd start by downloading an updated video driver, and next test RAM by removing or replacing one stick at a time.

  • G5 Crashes when using iTunes and web browser

    On a fairly consistent basis, my G5 will lock up if I'm listening to music in iTunes while using my web browser. It doesn't matter if I'm using Safari or FireFox, and it doesn't matter what music I'm listening to.
    It also sometimes happens if I'm using Dreamweaver.
    The music just stops playing and it sounds as if iTunes is stuck on a song, kind of like our old LPs used to do when the needle got stuck. The only solution is a hard reboot.
    Any suggestions?

    Apple is testing iOS 6.0.1 to fix these issues&stability improvements. I have iPod touch 4th gen too, and it is pretty bad for me too. The best way to get Apps&Games on your iPod touch is to sync it with your computer using iTunes v. 10.7. Let me know if you have any other questions!

  • Photoshop CS6 crashes when using burn tool, crop tool, and dodge tool?

    Just recently upgraded from Photoshop CS5.5 64bit to Photoshop CS6 64 bit. Crashes when using burn tool, crop tool, or dodge tool? Thanks for your help!

    Turn off OpenGL in the prefs and update your graphics driver before re-enabling it.
    Mylenium

  • Sphere doc cam software crashed when used in the WorkGroup Manager managed environment  Crash report Process:         Sphere [93076] Path:            /Applications/Sphere.app/Contents/MacOS/Sphere Identifier:      com.yourcompany.Sphere Version:         ?

    Sphere doc cam software crashes when using the screen recording feature in the WorkGroup Manager managed environment .  Does not crash in admin (non managed).
    Process:         Sphere [94287]
    Path:            /Applications/Sphere.app/Contents/MacOS/Sphere
    Identifier:      com.yourcompany.Sphere
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [244]
    Interval Since Last Report:          371 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  25 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2014-02-11 09:53:05.896 -0700
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  9ACAC95B-DACE-48A7-BA12-8644258A670B
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000002c
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.yourcompany.Sphere                  0x0009e93f FrameMovieExporter::stop(QString&) + 79
    1   com.yourcompany.Sphere                  0x000a2e06 -[RecordingController stopRecording] + 118
    2   com.yourcompany.Sphere                  0x0009c217 RecordingImpl::doStopRecording(QString*) + 39
    3   com.yourcompany.Sphere                  0x0009b33d RecordingImpl::doStopRecording(QList<QString>&) + 77
    4   com.yourcompany.Sphere                  0x00095163 RecordingCommonImpl::stopRecording(QList<QString>&) + 67
    5   com.yourcompany.Sphere                  0x0011a7a8 Sphere::stopRecord() + 136
    6   com.yourcompany.Sphere                  0x0010d37e ToolsPanel::startStopRecording(bool) + 78
    7   com.yourcompany.Sphere                  0x00134bad ToolsPanel::qt_metacall(QMetaObject::Call, int, void**) + 541
    8   QtCore                                  0x00902b51 QMetaObject::activate(QObject*, QMetaObject const*, int, void**) + 673
    9   QtGui                                   0x02f172c4 QAbstractButton::clicked(bool) + 68
    10  QtGui                                   0x02c3329a QAbstractButton::mousePressEvent(QMouseEvent*) + 186
    11  QtGui                                   0x02c34366 QAbstractButton::keyPressEvent(QKeyEvent*) + 726
    12  QtGui                                   0x02c345b5 QAbstractButton::mouseReleaseEvent(QMouseEvent*) + 117
    13  QtGui                                   0x02d0866c QToolButton::mouseReleaseEvent(QMouseEvent*) + 28
    14  QtGui                                   0x028e2a65 QWidget::event(QEvent*) + 2565
    15  QtGui                                   0x02c335bd QAbstractButton::event(QEvent*) + 45
    16  QtGui                                   0x02d0a6f0 QToolButton::event(QEvent*) + 64
    17  QtGui                                   0x028872ec QApplicationPrivate::notify_helper(QObject*, QEvent*) + 188
    18  QtGui                                   0x0288efbd QApplication::notify(QObject*, QEvent*) + 7789
    19  QtCore                                  0x008fc33c QCoreApplication::notifyInternal(QObject*, QEvent*) + 108
    20  QtGui                                   0x0288741c QApplication::activeModalWidget() + 156
    21  QtGui                                   0x0283b043 QMacCocoaAutoReleasePool::QMacCocoaAutoReleasePool() + 19427
    22  QtGui                                   0x0282adff QMacInputContext::reset() + 4063
    23  com.apple.AppKit                        0x91dadb95 -[NSWindow sendEvent:] + 5539
    24  QtGui                                   0x02831cdb QMacInputContext::reset() + 32443
    25  com.apple.AppKit                        0x91d7a6a5 -[NSApplication sendEvent:] + 2939
    26  QtGui                                   0x028353dd QMacInputContext::reset() + 46525
    27  com.apple.AppKit                        0x91cd7fe7 -[NSApplication run] + 867
    28  QtGui                                   0x0283f471 QDesktopWidget::resizeEvent(QResizeEvent*) + 12513
    29  QtCore                                  0x009ebb61 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 65
    30  QtCore                                  0x009ebeaa QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 170
    31  QtCore                                  0x009ed526 QCoreApplication::exec() + 182
    32  com.yourcompany.Sphere                  0x001229e1 main + 897
    33  com.yourcompany.Sphere                  0x0000bd09 _start + 208
    34  com.yourcompany.Sphere                  0x0000bc38 start + 40
    Thread 1:
    0   libSystem.B.dylib                       0x9094460a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    2   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x908fc34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90926ccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x95d73b32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x900ea3d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.Foundation                    0x90168b4d -[NSRunLoop(NSRunLoop) runUntilDate:] + 93
    6   com.AVerMedia.AVerVDig                  0x170584b9 -[AVDocCamControlTCPServer socketThread] + 271
    7   com.apple.AppKit                        0x92035123 +[NSApplication _startDrawingThread:] + 77
    8   com.apple.Foundation                    0x900b5dfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x900b59a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x90926055 _pthread_start + 321
    11  libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564b04 CFRunLoopRun + 84
    4   ...le.QuickTimeUSBVDCDigitizer          0x181ca084 0x181c9000 + 4228
    5   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564b04 CFRunLoopRun + 84
    4   ...le.QuickTimeUSBVDCDigitizer          0x181ca084 0x181c9000 + 4228
    5   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x909258c6 kevent + 10
    1   QtCore                                  0x009306e6 QThread::setPriority(QThread::Priority) + 454
    2   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    3   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x95a695f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x95a69480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.CoreMediaIOServices           0x93278a74 MIO::DAL::RunLoop::OwnThread(void*) + 160
    5   com.apple.CoreMediaIOServices           0x9327ac46 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x908fc34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90926ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x937863c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x93798d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x908f5166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x908fc95c mach_msg + 72
    2   com.apple.CoreFoundation                0x93563e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x93564aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x900ea3d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.Foundation                    0x90168b4d -[NSRunLoop(NSRunLoop) runUntilDate:] + 93
    6   com.AVerMedia.AVerVDig                  0x17053914 -[AVUSBDeviceCYBulk2 threadEntry:] + 466
    7   com.apple.AppKit                        0x92035123 +[NSApplication _startDrawingThread:] + 77
    8   com.apple.Foundation                    0x900b5dfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x900b59a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x90926055 _pthread_start + 321
    11  libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x9092c2da select$DARWIN_EXTSN$NOCANCEL + 10
    1   QtCore                                  0x00a0e9f7 qt_safe_select(int, fd_set*, fd_set*, fd_set*, timeval const*) + 87
    2   QtCore                                  0x00a12c93 QEventDispatcherUNIXPrivate::doSelect(QFlags<QEventLoop::ProcessEventsFlag>, timeval*) + 435
    3   QtCore                                  0x00a131cf QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 175
    4   QtCore                                  0x009ebb61 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 65
    5   QtCore                                  0x009ebeaa QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 170
    6   QtCore                                  0x0092f79d QThread::exec() + 157
    7   libAVerMacDocCam.1.0.0.dylib            0x01054f2f IdleThread::run() + 127
    8   QtCore                                  0x009306e6 QThread::setPriority(QThread::Priority) + 454
    9   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    10  libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x908f51a2 semaphore_wait_trap + 10
    1   ...ickTimeComponents.component          0x93e98c82 QTThreadWaitSignal + 100
    2   ...ickTimeComponents.component          0x94aaf95c sgAudioProcessingThreadEntryPoint + 87
    3   ...ickTimeComponents.component          0x93e9846b start_thread + 54
    4   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x908f51c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x909271af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x90928a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x95a78bdf CAGuard::WaitFor(unsigned long long) + 213
    4   com.apple.audio.CoreAudio               0x95a7a79a CAGuard::WaitUntil(unsigned long long) + 70
    5   com.apple.audio.CoreAudio               0x95a78f3f HP_IOThread::WorkLoop() + 759
    6   com.apple.audio.CoreAudio               0x95a78c43 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x95a69480 CAPThread::Entry(CAPThread*) + 96
    8   libSystem.B.dylib                       0x90926055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90925f12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0009e8fe  ecx: 0x00000001  edx: 0x0107f000
      edi: 0x186b8940  esi: 0x186b8940  ebp: 0xbfffe7c8  esp: 0xbfffe770
       ss: 0x0000001f  efl: 0x00210282  eip: 0x0009e93f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x0000002c
    Binary Images:
        0x1000 -   0x4fffff +com.yourcompany.Sphere ??? (???) <f7c2b0a788413da6927f15cbf1665ed7> /Applications/Sphere.app/Contents/MacOS/Sphere
      0x56b000 -   0x575ff3 +libAVerBase.1.0.0.dylib ??? (???) <c0f817480b8b3b1e93acfaa715b5cdfe> /Applications/Sphere.app/Contents/Frameworks/libAVerBase.1.0.0.dylib
      0x57b000 -   0x580ffb +libAVerMacSystem.1.0.0.dylib ??? (???) <7d7ab1c093e73eacb72caa7378839ad8> /Applications/Sphere.app/Contents/Frameworks/libAVerMacSystem.1.0.0.dylib
      0x585000 -   0x618fe3 +libAVerSocialNetwork.1.0.0.dylib ??? (???) <b6ea2ada18a931bebe40559dac9c3355> /Applications/Sphere.app/Contents/Frameworks/libAVerSocialNetwork.1.0.0.dylib
      0x638000 -   0x686ffb +libAVerDocCamDirectCore.1.0.0.dylib ??? (???) <7ce00b3227cc357c89b6380576b039c1> /Applications/Sphere.app/Contents/Frameworks/libAVerDocCamDirectCore.1.0.0.dyli b
      0x6a4000 -   0x6a9fef +QtSingleApplication.1.0.0.dylib ??? (???) <c96c230d43c5fadf347617dbac171f4c> /Applications/Sphere.app/Contents/Frameworks/QtSingleApplication.1.0.0.dylib
      0x6af000 -   0x737fe3 +QtMultimediaKit ??? (???) <128415cf4f68e58494e3e8f796e64abe> /Applications/Sphere.app/Contents/Frameworks/QtMultimediaKit.framework/Versions /1/QtMultimediaKit
      0x766000 -   0x7a8fff +phonon ??? (???) <0c22e12035bf30ab3b45c683f2685731> /Applications/Sphere.app/Contents/Frameworks/phonon.framework/Versions/4/phonon
      0x7bd000 -   0x836fe3 +QtDBus ??? (???) <1978cb6b3385a6a506849d535c8ff202> /Applications/Sphere.app/Contents/Frameworks/QtDBus.framework/Versions/4/QtDBus
      0x844000 -   0x897fe3 +QtXml ??? (???) <55615d3464055b65160ce9d1f8732ff4> /Applications/Sphere.app/Contents/Frameworks/QtXml.framework/Versions/4/QtXml
      0x8a8000 -   0xb0afeb +QtCore ??? (???) <166e83eea8084b01d66ed13c1a20a216> /Applications/Sphere.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
      0xb56000 -   0xda1ff3 +QtScript ??? (???) <e5ca39a11e0d64757d8392027d1c6457> /Applications/Sphere.app/Contents/Frameworks/QtScript.framework/Versions/4/QtSc ript
      0xdd9000 -   0xe0bfe7 +QtSql ??? (???) <e9dba1fae1b47f6ec389fcc5a32ef9ad> /Applications/Sphere.app/Contents/Frameworks/QtSql.framework/Versions/4/QtSql
      0xe19000 -   0xedffe3 +QtOpenGL ??? (???) <9847c32076b1eb3415fe103622116be9> /Applications/Sphere.app/Contents/Frameworks/QtOpenGL.framework/Versions/4/QtOp enGL
      0xeff000 -  0x1016feb +QtNetwork ??? (???) <73e78f033d96a3976cf20b05c03f2c36> /Applications/Sphere.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtN etwork
    0x103a000 -  0x103dff7 +libAVerSupportCrypto.1.0.0.dylib ??? (???) <6279e58c463d38c2924fdf78693026b1> /Applications/Sphere.app/Contents/Frameworks/libAVerSupportCrypto.1.0.0.dylib
    0x1040000 -  0x1043ff7 +libAVerSupportGeneral.1.0.0.dylib ??? (???) <cf7af01f8b1e3e879ea29b0315801101> /Applications/Sphere.app/Contents/Frameworks/libAVerSupportGeneral.1.0.0.dylib
    0x1046000 -  0x1066ff3 +libAVerMacDocCam.1.0.0.dylib ??? (???) <f68870d8dbb63abdb259cf61ac462793> /Applications/Sphere.app/Contents/Frameworks/libAVerMacDocCam.1.0.0.dylib
    0x1073000 -  0x1079fff +libAVerUsbMisc.1.0.0.dylib ??? (???) <5193e5654fc63c9e8ca3ab9750a3be7a> /Applications/Sphere.app/Contents/Frameworks/libAVerUsbMisc.1.0.0.dylib
    0x1178000 -  0x1195ffb +libqqt7engine.dylib ??? (???) <9c4b928ca3761ad6f92c0ed85063c721> /Applications/Sphere.app/Contents/PlugIns/mediaservice/libqqt7engine.dylib
    0x11a0000 -  0x11abff7 +libqtmedia_audioengine.dylib ??? (???) <29adeb116e1e002e0a524167aa952468> /Applications/Sphere.app/Contents/PlugIns/mediaservice/libqtmedia_audioengine.d ylib
    0x13ff000 -  0x25ddfef +QtWebKit ??? (???) <8866c377d70c71144ec8e01f1a83dcdb> /Applications/Sphere.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWe bKit
    0x27fe000 -  0x317afef +QtGui ??? (???) <0bfe5cdbc200d5a4f7cb07122c2c0db8> /Applications/Sphere.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
    0x1704b000 - 0x1705dff0 +com.AVerMedia.AVerVDig 2.5.1.0032 (2.5.1.0032) <90c4277c83c6375a01fe65b19115e165> /Library/QuickTime/AVerVDig.component/Contents/MacOS/AVerVDig
    0x1706b000 - 0x17074ff7  com.apple.iokit.IOUSBLib 3.4.9 (3.4.9) <ea4061ec718fddebf2cf952e8606ae87> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x1707e000 - 0x17089ffb +com.aver.AVerVirtualVDig 1.2.2024.40 (1.2.2024.40) <8693b4a6443231a68759294fb1128c06> /Library/QuickTime/AVerVirtualVDig.component/Contents/MacOS/AVerVirtualVDig
    0x17090000 - 0x170a6fff +libAVerVisionBridgeServer.1.dylib ??? (???) <b0e30d4212a13a2fb1e9eb43280eb5b3> /Library/Application Support/AVer/dylibs/libAVerVisionBridgeServer.1.dylib
    0x170b1000 - 0x17a2dfef +QtGui ??? (???) <0bfe5cdbc200d5a4f7cb07122c2c0db8> /Library/Application Support/AVer/QtFrameworks/QtGui.framework/Versions/Current/QtGui
    0x17c3e000 - 0x17ea0feb +QtCore ??? (???) <166e83eea8084b01d66ed13c1a20a216> /Library/Application Support/AVer/QtFrameworks/QtCore.framework/Versions/Current/QtCore
    0x17f16000 - 0x1802dfeb +QtNetwork ??? (???) <73e78f033d96a3976cf20b05c03f2c36> /Library/Application Support/AVer/QtFrameworks/QtNetwork.framework/Versions/Current/QtNetwork
    0x18073000 - 0x18096ff7 +libAVerService.1.dylib ??? (???) <da19cc2d259d305c8e7807abd8ec4a99> /Library/Application Support/AVer/dylibs/libAVerService.1.dylib
    0x180a4000 - 0x180beff3 +libAPlusDataManager.1.dylib ??? (???) <41c391dda46c3f7289ef14ab21ea399a> /Library/Application Support/AVer/dylibs/libAPlusDataManager.1.dylib
    0x180c9000 - 0x18100ff3 +libAVerDocCamProxy.1.dylib ??? (???) <ce791d7872853232bdfcfaf8f402e2e0> /Library/Application Support/AVer/dylibs/libAVerDocCamProxy.1.dylib
    0x18116000 - 0x18151fff  com.apple.QuickTimeFireWireDV.component 7.6.9 (1680.9) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1815e000 - 0x18167fff  com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x18171000 - 0x1819fff7  com.apple.QuickTimeIIDCDigitizer 7.6.9 (1680.9) <e65ec1b47a8fa38231a0c063b0859ee4> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x181c9000 - 0x18217ffe  com.apple.QuickTimeUSBVDCDigitizer 2.3.2 (2.3.2) <dceb65eeab48361f6466fadf8aa4ad6f> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x18225000 - 0x183aafe3  GLEngine ??? (???) <052e02d9a452a45d014ffbd2a84a4e7c> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x183d8000 - 0x18431ff7  com.apple.driver.AppleIntelGMA950GLDriver 1.5.48 (5.4.8) <806d3030842b46995c46c9059046f2fc> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x18439000 - 0x18455ff7  GLRendererFloat ??? (???) <7badea5e2b8167c0e6391623bb46140a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x18524000 - 0x1852aff3 +libqgif.dylib ??? (???) <75dc58d3cf5b4f317ca57a90bb06cd32> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqgif.dylib
    0x18533000 - 0x18539fff +libqico.dylib ??? (???) <6af165080c046065ec11fe001ba05fd7> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqico.dylib
    0x1853e000 - 0x18573fef +libqjpeg.dylib ??? (???) <2b719025fdfb60464d73f1310a277292> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqjpeg.dylib
    0x18578000 - 0x185c2fe7 +libqmng.dylib ??? (???) <3b1a1648e9acb620cfc18976526a85fe> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqmng.dylib
    0x19700000 - 0x1974ffeb +libqtiff.dylib ??? (???) <b4b631dcd8e391e5305be882f36afae6> /Applications/Sphere.app/Contents/PlugIns/imageformats/libqtiff.dylib
    0x198a0000 - 0x19909ff7 +libqsqlite.dylib ??? (???) <01a276e06357373b9b9f4b74b1528a34> /Applications/Sphere.app/Contents/PlugIns/sqldrivers/libqsqlite.dylib
    0x19915000 - 0x19918fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1991e000 - 0x19924fff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x19a42000 - 0x19a6dff4  com.apple.mio.DAL.VDC_4 130.0 (935) <8f98042c48277e2c973284d845ad8b64> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x19a79000 - 0x19c2ffee  com.apple.TundraUnits 130.0 (935) <77804f3f11b9181b2a9f35990c12cf2a> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Tundr aUnits.bundle/Contents/MacOS/TundraUnits
    0x19c5c000 - 0x19c77fff  com.apple.FWAVC 130.46 (46) <ee8798230047eb0cb0dd083fa63f0ffc> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1b3d0000 - 0x1b6c9ff3  com.apple.RawCamera.bundle 2.3.0 (505) <1c7cea30ffe2b4de98ced6518df1e54b> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x900aafec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x900ab000 - 0x90327fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90377000 - 0x90392ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x903c0000 - 0x9041aff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9041b000 - 0x90427ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90428000 - 0x90560fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90561000 - 0x90568ffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x90569000 - 0x90630ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90698000 - 0x90869fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9086a000 - 0x908b3fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x908c6000 - 0x908c8ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x908c9000 - 0x908c9ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x908ca000 - 0x908f3fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x908f4000 - 0x90a5bff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x90a5c000 - 0x90e1afea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90e1b000 - 0x90e3ffff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x90e40000 - 0x90e6ffe3  com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90e70000 - 0x90e9bfe7  libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x90e9c000 - 0x911a4fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x911a5000 - 0x91361ff3  com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91362000 - 0x91579ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9159f000 - 0x915a3fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x915a4000 - 0x915a9fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x915fb000 - 0x9163dfef  com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9163e000 - 0x9165cff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9165d000 - 0x9165dffe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9165e000 - 0x9166effc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9166f000 - 0x916bdfe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91788000 - 0x91805fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91806000 - 0x9193fff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x91940000 - 0x919e7feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x919e8000 - 0x919f8fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919f9000 - 0x91a30fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91c9f000 - 0x9249dfef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9249e000 - 0x92778ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x927cb000 - 0x9281cff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9281d000 - 0x92c2dfef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92c2e000 - 0x92cc1ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92d67000 - 0x93123ff4  com.apple.VideoToolbox 0.484.2 (484.2) <46c37a5fead4e4f58501f15a641ff476> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x93124000 - 0x93132ffd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93133000 - 0x93135fff  com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93146000 - 0x931d9fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x931da000 - 0x931f7ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9322f000 - 0x93235fff  com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93236000 - 0x93267ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93268000 - 0x932b3ff7  com.apple.CoreMediaIOServices 130.0 (935) <e7c6d794bbec49f9d1ee8261c3f9ff0e> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x932b4000 - 0x93438fef  com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93439000 - 0x93439ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9343a000 - 0x934ebfff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x934f1000 - 0x93624fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93625000 - 0x93628fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93641000 - 0x93649fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9364a000 - 0x93732ff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93733000 - 0x93752ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93753000 - 0x9381efef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9381f000 - 0x939aefe7  com.apple.CoreAUC 3.08.0 (3.08.0) <5382f0ce050d3edd8f5979b8a87557bf> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x939af000 - 0x939cdfff  libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x939ce000 - 0x939cfffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x939d0000 - 0x939d4fff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x939d5000 - 0x93a02feb  libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93a03000 - 0x93a12ffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93a13000 - 0x93a1afff  com.apple.agl 3.0.9 (AGL-3.0.9) <5a57ce58f8adb7825e1adb9f7cdea151> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93a1b000 - 0x93a6afff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93a6b000 - 0x93a6bffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93a6c000 - 0x93a6cfff  com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93a6d000 - 0x93a6dffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93a6e000 - 0x93a79fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93a80000 - 0x93b61ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x93bd0000 - 0x93c4fff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93c56000 - 0x93cafff7  libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93cb0000 - 0x93d3dff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93e21000 - 0x93e2afff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93e2b000 - 0x94d2bfe6  com.apple.QuickTimeComponents.component 7.6.9 (1680.9) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94d2c000 - 0x94d41ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94d42000 - 0x94d83fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94f05000 - 0x94fb7ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x94ff5000 - 0x9500dfff  com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9500e000 - 0x95013fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95014000 - 0x9515dff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9515e000 - 0x951d0fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x951d1000 - 0x95211fef  com.apple.CoreMedia 0.484.2 (484.2) <81221976abdc19f30723c81c5669bbc9> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95212000 - 0x958b2fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x959d1000 - 0x95a4bff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95a4c000 - 0x95ac9feb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95aca000 - 0x95ae6ff3  com.apple.CoreVideo 1.6.1 (48.6) <186cb311c17ea8714e918273c86d3c13> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95bdc000 - 0x95c1bfef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95c39000 - 0x95c40ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95c41000 - 0x95c41ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95cc1000 - 0x95d4bff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95d4c000 - 0x9621dfbe  libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9621e000 - 0x96258fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96259000 - 0x965f6fef  com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x965f7000 - 0x96604fe7  com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96605000 - 0x96692ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96693000 - 0x966a9fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x966aa000 - 0x966b4feb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x966b5000 - 0x966c1ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x966c2000 - 0x96700fff  libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96701000 - 0x96853ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96a28000 - 0x96b08fff  libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x9788c000 - 0x979d6feb  com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97a19000 - 0x97ad4fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97b49000 - 0x97b49ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97b4a000 - 0x97b4affe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97c3a000 - 0x97c62ff7  com.apple.shortcut 1.0.1 (1.0) <37e4b08cfaf9edb08b8682a06c4ec844> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x97c96000 - 0x97c96ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97ca4000 - 0x97d00ff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97d01000 - 0x97d5effb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x97d5f000 - 0x97d66fe9  libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x97d67000 - 0x97deeff7  libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x97def000 - 0x97defffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97df0000 - 0x9811bff6  com.apple.QuickTime 7.6.9 (1680.9) <024f122335016a54f8e59ddb4c79901d> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hi
    Looks like it may be this:
    http://support.apple.com/kb/TS3968
    CCT

  • PSE crashes when using the Detail Smart Brush  plenty of memory and speed -please advise

    PSE crashes when using the Detail Smart Brush  plenty of memory and speed -please advise

    I have a similar thing happening here, but on my aging iMac8,1 (3.06, 6 gigs of ram, plenty of internal and external scratch space) No wacom here, a Logitech mouse though, running via USB overdrive.
    With me it's undos that are typically causing the hang, and as such, I notice it happening and don't keep clicking around. It hangs for anywhere from 30 seconds to 3 minutes or so and then I can continue working.  Once, it was happening on a document I had open for a while, once it was occurring on a file I opened, made an errant click, and hit undo.  This was a 46.6 MB CMYK tif. I also had it occur while drawing a simple selection with the polygonal lasso - each time it would hang on the third click.  That time, it would unhang, but then the selection would be all messed up and not display what was being selected.
    Each time it happens, I see photoshop pinned at 99-100% in iStat.  Doesn't seem to be related to running out of memory, as there is usually a good amount free when it's happening.  I tried using the internal drive as the swap, and that didn't seem to matter.
    I've been forced to go back to CS5 for the time being, but would love to see this solved.  Is there any further info I could provide?

Maybe you are looking for

  • Sort problem in a report

    Hi, I'm using the sort on a report with 7 columns. For each column I've specified the sort sequence from 1 to 7. The last sort is a date field. If i sort now the last column and i change to next report side the sort change jump to the first column. I

  • Admins reply After 48+ Hours of Ag

    ?After reading about tia_dear thread about her mp3 problems and myslef adding to my problems about the visionm ,We now get an a Administrator also adding to tia_dears?thread . Catherina -cl says?( Sorry to hear you were having problems with your Crea

  • Problem about Image....

    I want to read image file(like Sample.jpg) and trasform to one half size and save to another file. code: Image img=Toolkit.getDefaultToolkit().getImage("./Sample.png"); Image img2=img.getScaledInstance(100,100,SCALE_FAST); then I can draw image2....

  • TS1776 When I try to open itunes my computer says itunes has stopped working.  HELP

    When I try to open itunes my computer says itunes has stopped working.....HELP

  • Why doesn't Lookout 5.1 build 8 automatically logoff user if idle?

    Lookout is not auto logging off a user even though the program is idle and the logoff time under User Manager is set for 15 minutes.  Doesn't matter what user is logged in or what idle time is set up, the program keeps the user logged in during no ac