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

Similar Messages

  • 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?

  • 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 :(

  • JVM Crash When Using JNI and COM

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

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

  • Application crash when it starts with a list form...

    hi guys i have an application that starts with a list form, i use netbeans and linux, in the emulator it works well but in my sony ericsson w810i it crashes when the application starts with a list form, if i change it to a text form or other thing it doesnt crashes, why?

    it is a list screen and is implicit, but before it was working i dont know what i change that suddenly it doesnt work any more :(....

  • Mail crashes when using it with GMail

    I have two GMail accounts set-up with mail.app using IMAP. Since upgrading to Snow Leopard mail.app will crash when i'm composing an e-mail.
    I can receive GMail messages fine and send them also, but if i'm taking a while writing an e-mail mail.app will crash after a few minutes.
    I've re-formatted and installed a new copy of Snow Leopard, but that didn't help.

    I second this issue - although I have not yet upgraded to Snow Leopard (I was kinda hoping doing so would solve this problem, darn it). Mail was working fine with my old email account, but when that temporarily went down and I set up a gmail account, it started crashing while composing messages.
    Anyone have any thoughts about this?
    Message was edited by: Gryphon

  • All video applications crash when loading a video. Including web browsers, vlc and quick time

    Last night chrome started crashing when trying to load a youtube video. I tried on safari and then downloaded firefox but they crashed too blaming flash player. Then when i tried to play a video using vlc that crashed too and so did quick time. Nothing will play in any application.   
    I've tried reinstalling the browsers, uninstalling and reinstalling flash player, repairing disk permissions, starting in safe mode and installing avast to scan for malware but none of these have made any difference. I haven't installed any updates since the last time it was working
    When verifying the disk permissions i get the following and no matter how many times i repair them it says the same thing
    OS 10.6.8
      Model Name: Mac Pro
      Model Identifier: MacPro1,1
      Processor Name: Dual-Core Intel Xeon
      Processor Speed: 2.66 GHz
      Number Of Processors: 2
      Total Number Of Cores: 4
      L2 Cache (per processor): 4 MB
      Memory: 4 GB
      Bus Speed: 1.33 GHz
      Boot ROM Version: MP11.005C.B08
      SMC Version (system): 1.7f10
      Serial Number (system): CK******Z6M
      Hardware UUID: *****
    <Edited By Host>

    Verify permissions for “HD”
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Group differs on "Library/Internet Plug-Ins/flashplayer.xpt", should be 80, group is 0.
    Permissions differ on "Library/Internet Plug-Ins/flashplayer.xpt", should be -rw-rw-r-- , they are -rw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions verification complete

  • Application crashes when using @NAME

    We have an outline with dimensionsPlanversion ... 2002_12 2003_01 2003_02 2003_03 ...Jahr 2001 2002 2003I want to use the following formula for a member in the accounts dimension "Kostenart":IF (@ISMBR(@LSIBLINGS(@MEMBER(@SUBSTRING(@NAME(@CURRMBR(Planversion)),0,4))))) 1;ELSE #missing;ENDIFThis formula validates on the server but if validated on the client a message pops up saying "This function must be a macro" and the outline cannot be saved.So I wrote a macro with maxL:MAXL> create or replace macro '@ISMBRLSIBLCURRMBR' (Single) AS 2> '@ISMBR(@LSIBLINGS(@MEMBER(@SUBSTRING(@NAME(@CURRMBR(@@1)),0,4))))' 3> spec '@ISMBRLSIBLCURRMBR(dimName)' 4> comment 'checks if current member is left sibling of a member deducted from a substring of the current member in another dimension';and I changed the member formula to:IF (@ISMBRLSIBLCURRMBR(Planversion)) 1;ELSE #missing;ENDIFWhen I try to start the application it immediately crashes with a Dr. Watson in esssvr.exe (Exception: access violation 0xc0000005, Address 0x0023110d). Essbase creates an exception error log.If I do not use the @Name function, the application starts properly. But there is a problem when compiling the member formula:"Error compiling formula for [ERLOESE_HR] (line 2): expected type [STRING] found [MEMBER] ([@ISMBRLSIBLCURRMBR]) in function [@ISMBRLSIBLCURRMBR]"IMO the remedy would be to use @Name. But this causes the application to crash! Is this a bug in the @Name function? Are there any other ways to achieve the desired functionality? Please help!Best Regards,GeraldPS The problem occurs with Essbase 6.22 and 6.24

    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

  • Specific User receiving Application crash when using Remote Desktop Application

    I have a client running a server with their line of business software configured as a remote application. I have one user that when he attempts to run the line of business software as a remote application he receives a APPCRASH error.However if another user
    launches the remote application and then signs in as the problem user there is no APPCRASH.
    The following information is reported with the error:
    Faulting application name: impress.exe, version: 5.1.102.0, time stamp: 0x522f820a
    Faulting module name: impress.exe, version: 5.1.102.0, time stamp: 0x522f820a
    Exception code: 0xc0000005
    Fault offset: 0x003fe41f
    Faulting process id: 0x268
    Faulting application start time: 0x01cf11ffa8811e46
    Faulting application path: C:\data\Impress\impress.exe
    Faulting module path: C:\data\Impress\impress.exe
    Report Id: 238e8dfc-7df6-11e3-b1b6-001e678ee8f8
    After the app crash the is a warning in the event log, but its about 43 seconds later; Event 1530, user Profile Service
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     1 user registry handles leaked from \Registry\User\S-1-5-21-2105745629-1987324649-1874639966-1224:
    Process 328 (\Device\HarddiskVolume2\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-2105745629-1987324649-1874639966-1224\Printers\DevModePerUser
    just trying to find some sort of hint as to way the remote application would crash for just one user. it is my luck that the one user is the owner.

    It looks like the issue was resolved by deleting the problem users profile off of the terminal server.  The user can now access the RD application without suffering an APPCRASH error.

  • Application Crash when use crystal report

     I use crystal report in visual studio 2010. In crystal report i use parameter, image, sub-report. When i close the crystal report viewer. there is always crash my program, below are the details.
    How I overcome this situation?????????
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: myapp.vshost.exe
    Application Version: 10.0.30128.1
    Application Timestamp: 4b61238e
    Fault Module Name: KERNELBASE.dll
    Fault Module Version: 6.1.7600.16385
    Fault Module Timestamp: 4a5bdbdf
    Exception Code: c0020001
    Exception Offset: 0000b727
    OS Version: 6.1.7600.2.0.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt

    Hi SriBalaram,
    According to your description, it seems the crash is caused by crystal report in your project. For this kind of issue, I would suggest go to its official forum http://scn.sap.com/community/crystal-reports-for-visual-studio/content?filterID=content~objecttype~objecttype[thread] for
    support.
    Best regards,
    Shanks Zen
    MSDN Community Support | Feedback to us

  • Acrobat crashes when using PDPageRemoveAnnot with a selected annotation

    Hey,
    Im using following function to remove all annotations on a page:
    void removeAnnotsOnPage(PDPage pdPage){   
        int annotLen = PDPageGetNumAnnots(pdPage);
        for (int i = annotLen -1; i >= 0; i--){       
            PDPageRemoveAnnot(pdPage, i);
    this does not work when the corresponding annotation is selected.
    If the annotation is selected, it causes acrobat to crash.
    Can anybody help me on this?
    thank you in advance,
    Tommi

    Hi Irosenth,
    While I'm struggling with another Acrobat Pro (in regards to ntdll.dll crash in this forum) issue - could you tell us how to file that formal report with your developer staff?
    I've tried today to clarify that with Adobe Online Chat representative in Customer Support portal area and after I've provided him with our Acrobat Pro 9 serial number his response was: "since this is a Volume Licensing serial number and it comes pre registered, you'll have to contact our Technical Support team for further assistance"
    But Adobe Technical Support links really sucks on Adobe sites, cause no one allows me to communicate via email and each one tells to call someone via a phone.
    So, what are my as developer and my organization as Adobe customer for Adobe Acrobat Pro technical support options? Do we need to buy anything else in addition to buying Volume License to register regular bugs and track them properly?
    I'd really appreciate if you could brign some light to this.
    Andrejus

  • Mac crash when using Skype with webcam

    Today I used skype for videocalling on my brand new MBP 15". After 20 minutes the laptop crashed and gave me the "hold down the power button" screen.
    20 minutes later he crashed again. In the last 20 minutes I only used skype (1 videocall) and safari (google & wikipedia).
    Is there a way I can 'solve' this problem? (install a plugin, or something?)
    thanks in advance,

    Marty_ wrote:
    Today I used skype for videocalling on my brand new MBP 15". After 20 minutes the laptop crashed and gave me the "hold down the power button" screen.
    20 minutes later he crashed again. In the last 20 minutes I only used skype (1 videocall) and safari (google & wikipedia).
    Is there a way I can 'solve' this problem? (install a plugin, or something?)
    thanks in advance,
    Mac OS X: "Broken folder" icon, prohibitory sign, or kernel panic when computer starts
    User Tips:  Kernel Panics
    About "You need to restart your computer" (kernel panic) messages

  • OS 10.3.7 Applications Crash when I do a "save "

    Applications crash when I save documents, so I always save as, and make the file name alittle different. I have fixed and verified permissions, I have trashed preferences, anything else I can do?? this is really getting annoying!
    thanks,
    Tori

    I agree with Roam -- use the new one for a while. Run all your apps to make sure things are cool and work as you desire. In a few months, once you've grown accustomed to the new account, it will be safe to wipe out the old.
    It sounds like there was some corruption in the old account (caches? perms? who knows?) Often these problems can be solved at a more granular level, but if the big and easy answer works, hey, go with that.
    Thanks for the star, BTW.
    Best,
    ~FifthWheel

  • Photoshop CS6 (Mac) crashes when opening files with type or using the type tool

    Hi,
    Photoshop CS6 keeps crashing when using the type tool or when opening files with type on it. I've quit suitcase, disabled the suitcase plug-in, reset the preferences in Photoshop there's no crash report coming up either the application just dies! I am currently trying a system restore from time machine to see if that works!. Any other suggestions would be greatly appreciated.
    Many thanks
    Olly

    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://helpx.adobe.com/photoshop/kb/troubleshoot-fonts-photoshop-cs5.html

  • 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

Maybe you are looking for

  • [solved] 'ERROR: file not found:' when running 'mkinitcpio -p linux'

    $ sudo mkinitcpio -p linux ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default' -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img ==> Starting build: 3.13.5-1-ARCH -> Running build hook: [systemd] ==>

  • How can I use DW for internal email

    Hi all, I am interested in using Dreamweaver to build something like email marketing, for internal corporate notifications. I want to be able to tract how many people are reading the email, and how many people use our site for ordering suplys, etc? I

  • What is happening with Multimedia players in Firefox 8?

    Is there some big problem here? Since Firefox 8 I have been struggling to get Multimedia and Flash content on websites, including BBC and Facebook, to work right. I have re-installed Adobe Flash player and Shockwave flash players on several occasions

  • TURN OFF the music ("dinggggggg") at power on??

    I'm a new owner of MBP, and I like it very much. I would like to find out whether it's possible to turn off the "dingggg" sound when you power up the laptop? That sound is really annoying especially in the public area because people will look at you

  • Which Messages can be and cannot be archived in sap xi

    Hello experts,    I have gone through the sdn  and  known about the basic knowledge about the message archiving in xi. But which messages can be and which messages cannot be archived. Thanks in advance.