Application crashes after printing

Sorry if this is the wrong forum, but we are a K-8 school district just beginning to Manage the network using AD/OD. Ever since we've begun this process, Word documents have crashed immediately after printing. Printing is not managed, but seems to have been adversely affected by us starting this process. Any help you can give would be much appreciated.

Sonal2890, thanks for your inquiry and I will try to provide as much information as possible.
1. What happens if inspite of using 'Print on both sides', you check Duplex setting from Properties dialog (As you do previously)?
      The Adobe Reader X Shuts down and is unable to print and displays a message stating it has incurred a problem. Please note, we are running IE7.
2. What happens if you print with any other application (Word/notepad)
     The documents print fine. IT is only when you print this particular document which is enabled in protected mode and double sided. Have tried the patch and the resolution of unticking the duplex methodology and the issue still persists.
     Crash Logs have already been submitted already. Have added the SEnd Error Report that was provided when the error occurs. The PDF stopped printing after page 6 of a 236 page document and provided the error above.

Similar Messages

  • Application crashes after IOS 5

    Application crashes after installing IOS 5

    OK, thanks for sharing that information.
    Now, how about more details, assuming you are looking for assistance, here, such as the name of the application? It's impossible for anyone here to offer even a guess with so little to go on. Have you checked for an update to said app, or contacted the developer to ask for help?
    Regards.

  • InDesign CC 2014 Crashing After Printing Document

    I'm having issues with InDesign CC 2014 crashing after printing a document. According to the Problem Details and System Configuration text below, what are the chances that it has to do with this thread?
    Problem Details and System Configuration text: http://pastebin.com/JBXmWVcz
    Thanks!
    EDIT: This is happening with Illustrator CC 2014 as well. Here's the Problem Details and System Configuration text: http://pastebin.com/vw0NbJTD

    Hello,
    We have posted a workaround fix for this problem for InDesign CC 2014. Kindly try this
    http://helpx.adobe.com/indesign/kb/indesign-cc-2014-crash-printing.html
    Thanks,
    Rohit

  • Windows 8 and IE 10 crashed after printing from Report Manager SQL server 2008 / 2008 R2

    We have a problem with Windows 8 in combination with IE 10 and printing reports.
    When we print a report from the Report Manager 'http://<servername>/reports' the browser crashed after a print.
    Sometimes before printing and somthimes after printing or when you close the browser.
    Al other operating systems like XP, Vista, Windows 7 with different IE versions have no problem.
    I tried the report manager from SQL Server 2008 and SQL Server 2008 R2.
    The same error occured when printing from our Internet application and the reportviewer.
    (ASP application written in Visual Studio 2010 and reportviewer version 10.)
    The event log shows two different messages.
    Faulting application name: IEXPLORE.EXE, version: 10.0.9200.16453, time stamp: 0x509b0dfb
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505aaa82
    Exception code: 0xc0000005
    Fault offset: 0x00061252
    Faulting process id: 0x780
    Faulting application start time: 0x01ce03a294f7d1d5
    Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: d4a72486-6f96-11e2-be6e-10604b6a74ed
    Faulting package full name:
    Faulting package-relative application ID:
    Faulting application name: IEXPLORE.EXE, version: 10.0.9200.16384, time stamp: 0x50107ee0
    Faulting module name: rsclientprint.dll, version: 2009.100.1600.1, time stamp: 0x4bb67a74
    Exception code: 0xc0000005
    Fault offset: 0x00017e7a
    Faulting process id: 0x9c8
    Faulting application start time: 0x01ce02f35c70ab85
    Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
    Faulting module path: C:\Windows\Downloaded Program Files\rsclientprint.dll
    Report Id: a13fccc6-6ee6-11e2-be67-10604b6a74ed
    Faulting package full name:
    Faulting package-relative application ID:
    Is there a fix for this problem?

    Dear Mike Yin,
    Thank you for your response. Your answer was the
    reason for finding the real problem.
    In december 2010 a SQL Server 2008 fix was the cause. I don't remember exactly the problem, but we changed the RSCLIENTPrint-x86.cab file. But instead to use the version of SQL Server 2008 we used the version of SQL Server 2008
    R2 (10.50.1600.1). This worked until
    Windows 8 (Internet Explorer crashed when printing).
    We fixed this problem by using the RSClientPrint-x86.cab file from SQL server 2008 (10.0.5500.0).
    But we now get the known problem that the
    activeX always must be installed again. 
    The reason for this is that the version of
    the SQL Server (10.0.5512.0) 
    and the rsclientprint.dll (10.0.5500.0) is different. SQL Server is newer (caused
    by a security patch (KB2716436)).
    Do you know when this problem will be resolved
    by Microsoft?
    Work arrounds
    I've also tried to install the RSClientprint.dll
    every time automatically (without user interaction).
    But this will be delayed the printing for more
    than 4 seconds. This
    is very annoying.
    Another workaround is to generate a PDF and print the PDF. But this is also
    a lot slower.
    Uninstall the security patch. but I don't know the security risk.

  • Anyone can prove JNI is safe? My application crashes after many calls.

    I heard that JNI is not safe. In fact I made an application base on many JNI calls.
    C level is API supplied by IBM. And I was told the C API is tested and safe.
    Java application and JNI calls is writen by myself. It crashed after about 3000 times call. I tried other JDK and other OS. On some platform, the thread hold there after many calls. No error, no crash. But others crashed even early.
    Here's my JNI call's code:
    JNIEXPORT void JNICALL Java_com_ibm_mm_sdk_cim_internal_PServiceFACImp_cEvaluate
    (JNIEnv *env, jclass jobj, jlong jhandle, jstring jmanualedListFilename, jstring jclassedListFileName, jstring jresultFilename){
         char *manualedListFilename = jstringToWindows(env, jmanualedListFilename);
         char *classedListFileName = jstringToWindows(env, jclassedListFileName);
         char *resultFilename = jstringToWindows(env, jresultFilename);
         int rc;                         // API return code
         void* handle;               // FAC Handle
         // convert C pointer from java long type
         handle = (void*)jhandle;
         rc = KmFAC_Evaluate(
              handle,                                   // FAC Handle
              (char*)manualedListFilename,     // File name of list of files
              (char*)classedListFileName,          // File name of list of files
              (char*)resultFilename               // Result file
         if (manualedListFilename)
              free(manualedListFilename);
         if (classedListFileName)
              free(classedListFileName);
         if (resultFilename)
              free(resultFilename);
         if (rc != KM_RC_OK) {
              //Throw exception
              jclass exceptClass;          // JNI exception class
              char errorMsg[256];          // Used to build error msg for exceptions
              jmethodID methodid;          // Exception constructor method id
              sprintf(errorMsg, "KmFAC_Evaluate() [CKM=%d]", (int)rc);
              exceptClass = env->FindClass("com/ibm/mm/sdk/cim/DKServiceExceptionCIM");
              methodid = env->GetMethodID(exceptClass,"<init>","(Ljava/lang/String;II)V");
              jstring str = env->NewStringUTF(errorMsg);
              jthrowable excobj = (jthrowable)env->NewObject(exceptClass,methodid,str,100, (int)rc);
              env->Throw(excobj);
         return;

    I agree with fury88. Try the code below it works fine!
    // **************** Java portion ************************
    public class Test {
    // Load the dll that exports functions callable from java
    static {System.loadLibrary("TestImp");}
    // Imported function declarations
    public native void print(String msg);
    public void Test() {
    public static void main(String [] args) {
    Test t = new Test();
    // Printf example
         t.print("->Testing JNI - Hello from c++\n");
    // **************** Windows portion - TestImp.dll **********************
    // Exported function
    JNIEXPORT void JNICALL Java_Test_print(JNIEnv *env, jobject obj, jstring msg)
    const char *str = env->GetStringUTFChars(msg, 0);
    printf("%s\n", str);
    env->ReleaseStringUTFChars(msg, str);
    // Entry point
    BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
         switch(ul_reason_for_call)
              case DLL_PROCESS_ATTACH:
                   return TRUE;
              case DLL_PROCESS_DETACH:
                   return TRUE;
    return TRUE;
    }

  • Apple applications crashing after Mountain Lion update

    I have updated to Mountain Lion (10.8.1) update. Some apple applications are crashing after the upgrade.
    I have tried some third party applications and they run fine.
    The following is App Store crash report.
    Process:         App Store [1459]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Identifier:      com.apple.appstore
    Version:         1.2 (129)
    Build Info:      Firenze-129000000000000~17
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [152]
    User ID:         554673337
    Date/Time:       2012-09-17 21:58:15.105 -0700
    OS Version:      Mac OS X 10.8.1 (12B19)
    Report Version:  10
    Interval Since Last Report:          15591 sec
    Crashes Since Last Report:           38574
    Per-App Interval Since Last Report:  452 sec
    Per-App Crashes Since Last Report:   33
    Anonymous UUID:                      032AE132-32C4-4168-BE9C-84ADAE464791
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000001
    VM Regions Near 0x1:
    -->
        __TEXT                 00000001054ad000-000000010552a000 [  500K] r-x/rwx SM=COW  /Applications/App Store.app/Contents/MacOS/App Store
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore                       0x000000010e6cf304 WebCore::ScriptController::createWindowShell(WebCore::DOMWrapperWorld*) + 68
    1   com.apple.WebCore                       0x000000010e6cf1a0 WebCore::ScriptController::initScript(WebCore::DOMWrapperWorld*) + 32
    2   com.apple.WebCore                       0x000000010e6cef68 WebCore::ScriptController::evaluateInWorld(WebCore::ScriptSourceCode const&, WebCore::DOMWrapperWorld*) + 168
    3   com.apple.WebCore                       0x000000010e6ceca9 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 41
    4   com.apple.WebCore                       0x000000010e6f28bb WebCore::ScriptElement::executeScript(WebCore::ScriptSourceCode const&) + 155
    5   com.apple.WebCore                       0x000000010f0e4036 WebCore::ScriptElement::prepareScript(***::TextPosition const&, WebCore::ScriptElement::LegacyTypeSupport) + 1078
    6   com.apple.WebCore                       0x000000010edc9876 WebCore::HTMLScriptRunner::runScript(WebCore::Element*, ***::TextPosition const&) + 294
    7   com.apple.WebCore                       0x000000010edc9700 WebCore::HTMLScriptRunner::execute(***::PassRefPtr<WebCore::Element>, ***::TextPosition const&) + 48
    8   com.apple.WebCore                       0x000000010e6f1e24 WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder() + 84
    9   com.apple.WebCore                       0x000000010e68b5b8 WebCore::HTMLDocumentParser::canTakeNextToken(WebCore::HTMLDocumentParser::Sync hronousMode, WebCore::PumpSession&) + 88
    10  com.apple.WebCore                       0x000000010e68b3dc WebCore::HTMLDocumentParser::pumpTokenizer(WebCore::HTMLDocumentParser::Synchro nousMode) + 268
    11  com.apple.WebCore                       0x000000010e6ea977 WebCore::HTMLDocumentParser::append(WebCore::SegmentedString const&) + 231
    12  com.apple.WebCore                       0x000000010ec46fd9 WebCore::DecodedDataDocumentParser::appendBytes(WebCore::DocumentWriter*, char const*, unsigned long) + 313
    13  com.apple.WebCore                       0x000000010ec585bb WebCore::DocumentLoader::commitData(char const*, unsigned long) + 427
    14  com.apple.WebKit                        0x0000000105a545e4 -[WebHTMLRepresentation receivedData:withDataSource:] + 100
    15  com.apple.WebKit                        0x0000000105a54500 -[WebDataSource(WebInternal) _receivedData:] + 80
    16  com.apple.WebKit                        0x0000000105a54487 WebFrameLoaderClient::committedLoad(WebCore::DocumentLoader*, char const*, int) + 103
    17  com.apple.WebCore                       0x000000010e6e57f0 WebCore::DocumentLoader::commitLoad(char const*, int) + 144
    18  com.apple.WebCore                       0x000000010e6e5565 WebCore::ResourceLoader::didReceiveData(char const*, int, long long, bool) + 53
    19  com.apple.WebCore                       0x000000010e6e5486 WebCore::MainResourceLoader::didReceiveData(char const*, int, long long, bool) + 694
    20  com.apple.WebCore                       0x000000010e6e51a0 WebCore::ResourceLoader::didReceiveData(WebCore::ResourceHandle*, char const*, int, int) + 128
    21  com.apple.Foundation                    0x0000000106fc71e8 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 28
    22  com.apple.Foundation                    0x0000000106fc712c -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 227
    23  com.apple.Foundation                    0x0000000106fc7028 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 63
    24  com.apple.Foundation                    0x0000000106fc9b4b _NSURLConnectionDidReceiveData_LengthReceived + 86
    25  com.apple.CFNetwork                     0x0000000108ac1a04 ___delegate_didReceiveDataArray_block_invoke_0 + 132
    26  com.apple.CFNetwork                     0x0000000108ab47ba ___withDelegateAsync_block_invoke_0 + 90
    27  com.apple.CFNetwork                     0x0000000108b4467a __block_global_1 + 28
    28  com.apple.CoreFoundation                0x0000000106c92e44 CFArrayApplyFunction + 68
    29  com.apple.CFNetwork                     0x0000000108aa5954 RunloopBlockContext::perform() + 124
    30  com.apple.CFNetwork                     0x0000000108aa582b MultiplexerSource::perform() + 221
    31  com.apple.CoreFoundation                0x0000000106c74841 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    32  com.apple.CoreFoundation                0x0000000106c74165 __CFRunLoopDoSources0 + 245
    33  com.apple.CoreFoundation                0x0000000106c974e5 __CFRunLoopRun + 789
    34  com.apple.CoreFoundation                0x0000000106c96dd2 CFRunLoopRunSpecific + 290
    35  com.apple.HIToolbox                     0x000000010a825774 RunCurrentEventLoopInMode + 209
    36  com.apple.HIToolbox                     0x000000010a825512 ReceiveNextEventCommon + 356
    37  com.apple.HIToolbox                     0x000000010a8253a3 BlockUntilNextEventMatchingListInMode + 62
    38  com.apple.AppKit                        0x0000000107680fa3 _DPSNextEvent + 685
    39  com.apple.AppKit                        0x0000000107680862 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    40  com.apple.AppKit                        0x0000000107677c03 -[NSApplication run] + 517
    41  com.apple.AppKit                        0x000000010761c656 NSApplicationMain + 869
    42  com.apple.appstore                      0x00000001054aee44 0x1054ad000 + 7748
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010948bd16 kevent + 10
    1   libdispatch.dylib                       0x0000000109274e26 _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x0000000109274a2a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000109489686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000109488c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x0000000106c91f23 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x0000000106c97606 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x0000000106c96dd2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x0000000106fe17d6 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x000000010703f842 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x0000000109318782 _pthread_start + 327
    8   libsystem_c.dylib                       0x00000001093051c1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x000000010948b6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010931af2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010931acf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001093051b1 start_wqthread + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x000000010948b0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x000000010931cfc9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x0000000106753d96 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x0000000106975d0a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000010698b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000109318782 _pthread_start + 327
    6   libsystem_c.dylib                       0x00000001093051c1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010948b0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x000000010931cfc9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001068d8724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001068d8606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010698b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000109318782 _pthread_start + 327
    6   libsystem_c.dylib                       0x00000001093051c1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010948b0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x000000010931cfc9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001068d8724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001068d8606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010698b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000109318782 _pthread_start + 327
    6   libsystem_c.dylib                       0x00000001093051c1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010948b0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x000000010931cfc9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001068d8724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001068d8606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010698b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000109318782 _pthread_start + 327
    6   libsystem_c.dylib                       0x00000001093051c1 thread_start + 13
    Thread 17:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x000000010948b322 __select + 10
    1   com.apple.CoreFoundation                0x0000000106cd6bf6 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x0000000109318782 _pthread_start + 327
    3   libsystem_c.dylib                       0x00000001093051c1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000001  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x000000011172b160  rsi: 0x00000001116927e0  rbp: 0x00007fff5a750930  rsp: 0x00007fff5a7508b0
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000011172fc70  r11: 0x000000011500a458
      r12: 0x000000011172b000  r13: 0x00000001116a7880  r14: 0x00000001116a7880  r15: 0x00000001116927e0
      rip: 0x000000010e6cf304  rfl: 0x0000000000010202  cr2: 0x0000000000000001
    Logical CPU: 2
    Binary Images:
           0x1054ad000 -        0x105529ff7  com.apple.appstore (1.2 - 129) <3B9ADBDB-D0B8-3AB1-BAA6-10D2677F2449> /Applications/App Store.app/Contents/MacOS/App Store
           0x105556000 -        0x105843ff7  com.apple.CommerceKit (1.2.0 - 135) <C5BF1074-DC11-3F10-8C41-C87A65566711> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
           0x1058db000 -        0x105933fff  com.apple.SoftwareUpdate.framework (6 - 451) <219F6392-EBF6-3039-B9C6-D7287FC6AFE7> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
           0x10597d000 -        0x1059eaff7  com.apple.framework.IOKit (2.0 - 755.9.7) <9B7C5E7A-3F7A-3E70-8179-4384992B84E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x105a1f000 -        0x105a22fff  com.apple.ServerInformation (1.1 - 1) <867C8480-ADEC-3623-8237-4D9054337446> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x105a2c000 -        0x105a2cfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x105a35000 -        0x105bbefff  com.apple.WebKit (8536 - 8536.25) <6827B87B-9921-3E69-80A6-115ED325DBA4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x105cb3000 -        0x105d53fff  com.apple.PackageKit (3.0 - 241) <5E940616-96F0-33C9-9020-8D9F216CEA09> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
           0x105dc7000 -        0x106094ff7  com.apple.security (7.0 - 55178.0.1) <8102877E-C866-33D4-A947-02FC7F4BAA95> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x1061c7000 -        0x106245ff7  com.apple.securityfoundation (6.0 - 55115.4) <137E156C-B29C-3B84-95B3-669BC7C1BA7A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x106285000 -        0x106285fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10628b000 -        0x1062bdfff  com.apple.framework.Admin (12.0 - 12.0) <5D6978C8-0B1B-3D0E-A122-C0ABD0AA8488> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
           0x1062e9000 -        0x10631dfff  com.apple.securityinterface (6.0 - 55024.3) <1AF13976-72BB-351F-A263-09284BA25C88> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10634f000 -        0x106375fff  com.apple.framework.familycontrols (4.0 - 400) <B296674D-6D0B-323D-84C0-1D356F6F3BFA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x106393000 -        0x106393fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10639c000 -        0x106461fff  com.apple.coreui (2.0 - 181) <CFCB6868-36AC-3734-ACEA-DF9CAB2B84F2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x1064db000 -        0x106689fff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x106741000 -        0x106742fff  libScreenReader.dylib (264.2) <E8BFC2E1-798D-33F6-AFF4-3334DE24DDE8> /usr/lib/libScreenReader.dylib
           0x10674b000 -        0x10674bff1 +cl_kernels (???) <4903BBBE-1493-4009-A1CE-34FE503E63FC> cl_kernels
           0x10674d000 -        0x1069e7ff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x106a97000 -        0x106ae8fff  com.apple.SystemConfiguration (1.12 - 1.12) <921FC1D6-06E6-3F37-8AFB-8CFB14E10AF9> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x106b16000 -        0x106b17ff3 +cl_kernels (???) <6CB5BC29-DEAB-43C3-BB4A-5444AD5ABA2A> cl_kernels
           0x106b1c000 -        0x106b1dff7  libSystem.B.dylib (169.3) <132FE02E-3865-3F1F-B78D-C93D65930A67> /usr/lib/libSystem.B.dylib
           0x106b29000 -        0x106c41a27  libobjc.A.dylib (532) <9FA80CDA-97F4-3801-8879-0C1B976BC5CA> /usr/lib/libobjc.A.dylib
           0x106c62000 -        0x106e4bfff  com.apple.CoreFoundation (6.8 - 744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x106faa000 -        0x107306ff7  com.apple.Foundation (6.8 - 945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10752a000 -        0x108154fff  com.apple.AppKit (6.8 - 1187) <C9309F5C-9441-3E5B-A120-B03FEDDA63F9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x108848000 -        0x108849ff3 +cl_kernels (???) <50C977BA-7D5C-4DEA-A82B-48A07459A85C> cl_kernels
           0x10884c000 -        0x10886aff7  com.apple.DistributionKit (700 - 729) <082532B5-7CF0-352C-B186-98C8BCB67393> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
           0x108885000 -        0x108982fff  libsqlite3.dylib (138) <8D6A6805-1494-30D1-9F2A-F58FA3C0D7EE> /usr/lib/libsqlite3.dylib
           0x10899e000 -        0x1089a7fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x1089b2000 -        0x1089c4ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x1089cc000 -        0x1089d2fff  com.apple.DiskArbitration (2.5 - 2.5) <348AC0CC-6BCE-3416-9141-A5C1164EDDFF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x1089df000 -        0x1089f2ff7  com.apple.AppContainer (2.0 - 1) <B5FD7F25-D376-3BFB-9E36-B382A14ED40A> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
           0x108a0b000 -        0x108a17ff7  com.apple.CrashReporterSupport (10.8.1 - 412) <3CBB620C-BDCF-31B1-B473-4B6380DE03F7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x108a29000 -        0x108b9cff7  com.apple.CFNetwork (596.1 - 596.1) <62830510-738D-3719-AD51-68E816B13BB7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x108c5f000 -        0x108cabff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
           0x108cc6000 -        0x108ec6fff  libicucore.A.dylib (491.11.1) <17E8B610-6B16-3F91-B49C-7CAE0D08E9CF> /usr/lib/libicucore.A.dylib
           0x108f6c000 -        0x109069ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
           0x1090a0000 -        0x1090a1fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x1090a7000 -        0x1090c8ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
           0x1090d4000 -        0x1090ebfff  com.apple.GenerationalStorage (1.1 - 132.1) <EAB41613-0145-3CE5-AA60-A8A791A3EE22> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1090f5000 -        0x1090f6ff2 +cl_kernels (???) <005A5699-2B4A-4FA0-9F2C-C23E3A3EB319> cl_kernels
           0x1090f8000 -        0x1090fbfff  com.apple.TCC (1.0 - 1) <DE7ECAC3-BD08-323A-9C12-EE4A49B72871> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x109105000 -        0x10916dff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
           0x1091c8000 -        0x1091ecff7  libc++abi.dylib (24.2) <340E7C7B-DC93-3AA2-B015-B1C9541EC255> /usr/lib/libc++abi.dylib
           0x10921f000 -        0x109224fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x10922b000 -        0x109239fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
           0x109246000 -        0x109248fff +jp.cvz.ColorfulSidebar (1.1 - 110) <57301138-7807-6ED1-D68E-5BD8D8F182D6> /Library/Application Support/SIMBL/*/ColorfulSidebar.bundle/Contents/MacOS/ColorfulSidebar
           0x10924c000 -        0x109251fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x10925e000 -        0x109265fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x109270000 -        0x109285ff7  libdispatch.dylib (228.18) <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
           0x10929c000 -        0x10929dff7  libdnsinfo.dylib (453.16) <38A3E0F4-E34C-3D45-A2C9-4CDE2DF007BD> /usr/lib/system/libdnsinfo.dylib
           0x1092a8000 -        0x1092abff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x1092b9000 -        0x1092b9fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x1092c2000 -        0x1092cafff  liblaunch.dylib (442.21) <224CB010-6CF8-3FC2-885C-6F80330321EB> /usr/lib/system/liblaunch.dylib
           0x1092d5000 -        0x1092dbfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x1092e3000 -        0x1092e5fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
           0x1092ee000 -        0x1092efff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
           0x1092f8000 -        0x1092f9fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x109304000 -        0x1093d0fef  libsystem_c.dylib (825.24) <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
           0x109414000 -        0x10941cff7  libsystem_dnssd.dylib (379.27.1) <B9F7B01D-8FAF-3CA5-909E-4D52B8D2DD8A> /usr/lib/system/libsystem_dnssd.dylib
           0x109429000 -        0x10945ffff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
           0x109479000 -        0x109494ff7  libsystem_kernel.dylib (2050.9.2) <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
           0x1094a8000 -        0x1094d6ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
           0x1094e7000 -        0x1094f5ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
           0x109503000 -        0x10950efff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x10951d000 -        0x10951eff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
           0x109529000 -        0x10952bff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
           0x109536000 -        0x10953cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x10954a000 -        0x10956cff7  libxpc.dylib (140.37) <C552985C-2171-3136-A1B9-3AB21CBF7C4A> /usr/lib/system/libxpc.dylib
           0x109589000 -        0x1095d8ff7  libcorecrypto.dylib (106) <57BC99C6-3C3F-344C-BDD6-25E845D956F2> /usr/lib/system/libcorecrypto.dylib
           0x1095e9000 -        0x109652fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x1096bd000 -        0x1096befff  libDiagnosticMessagesClient.dylib (7) <56A70657-E8C2-3804-AB87-77DC100512A4> /usr/lib/libDiagnosticMessagesClient.dylib
           0x1096c3000 -        0x1096d6ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x1096e2000 -        0x1096f1ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
           0x109701000 -        0x109705fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x10970b000 -        0x10970bfff  libOpenScriptingUtil.dylib (148) <4DB14EC4-422C-3AE8-83BF-354FEC197FD3> /usr/lib/libOpenScriptingUtil.dylib
           0x109716000 -        0x109723fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x109730000 -        0x109a47ff7  com.apple.CoreServices.CarbonCore (1037 - 1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x109ac2000 -        0x109b43fff  com.apple.Metadata (10.7.0 - 707.1) <ED39A710-1D87-3207-BB7D-4465B2673C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x109b9b000 -        0x109c41fff  com.apple.CoreServices.OSServices (557 - 557) <2806326A-6C4A-32C1-9BBE-ECB08453F328> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x109ca2000 -        0x109d2fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x109d76000 -        0x109dd3ff7  com.apple.AE (645 - 645) <9C3E54BA-EE6B-3F02-8775-9C4AF40F40CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x109e03000 -        0x109eb4fff  com.apple.LaunchServices (539 - 539) <04FA5C61-6349-3841-9609-B650B6222800> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x109f08000 -        0x109f39fff  com.apple.DictionaryServices (1.2 - 184) <B37F9A90-8954-3DEC-A216-8ABB15C615A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x109f5c000 -        0x109f63fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x109f6c000 -        0x109f7aff7  libkxld.dylib (2050.9.2) <4BEE9BC3-3708-330E-89D6-03E715D712CC> /usr/lib/system/libkxld.dylib
           0x109f83000 -        0x109f90ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x109fa0000 -        0x10a00dfff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10a049000 -        0x10a060fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10a07c000 -        0x10a0a7fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x10a0b6000 -        0x10a0f8fff  com.apple.RemoteViewServices (2.0 - 80.3) <E0224421-A421-3DB6-99AF-B249684FD13A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10a130000 -        0x10a280fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <8019964B-4FFB-3328-A425-B1A702177A25> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10a30f000 -        0x10a30fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <ECC4891A-9BA8-3C13-9A2B-6116521B7B46> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10a31a000 -        0x10a538fff  com.apple.CoreData (106 - 407.5) <45EF39FE-7FD6-366E-BB5C-3E86E0B7DA3C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10a631000 -        0x10a750fff  com.apple.desktopservices (1.7.1 - 1.7.1) <0E1A57B2-9EC7-32EC-8B87-82902A1FD357> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10a7c6000 -        0x10aaf5ff7  com.apple.HIToolbox (2.0 - 624) <49C4A53E-9239-3B9A-95DC-8C7B398E491D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10ac4c000 -        0x10ac56fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10ac66000 -        0x10acc3fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10acee000 -        0x10ad04fff  com.apple.MultitouchSupport.framework (235.27 - 235.27) <78E356A6-78E8-3CAB-8982-7A4958C7A955> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10ad17000 -        0x10ad3eff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ad5e000 -        0x10ad6dff7  com.apple.opengl (1.8.5 - 1.8.5) <8960E72A-9692-3B32-8452-B2163855AD86> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10ad79000 -        0x10ae4aff7  com.apple.CoreText (260.0 - 275.14) <98A59BFB-9AC0-3EAB-B5A4-26C2F965A65D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10aeaf000 -        0x10afc8ff7  com.apple.ImageIO.framework (3.2.0 - 843) <A9AC2A79-331A-3B06-AFE6-7E34EF876221> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10b02c000 -        0x10b106fff  com.apple.backup.framework (1.4 - 1.4) <00964E68-4A36-3F9F-B0A5-B782575C64DE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10b18d000 -        0x10b22bfff  com.apple.ink.framework (1.4 - 110) <C6E43ED5-7189-3291-80F0-BB7702AD051A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10b261000 -        0x10bbf239f  com.apple.CoreGraphics (1.600.0 - 322) <2F5D7032-9A96-36AE-A227-428E95CAE0C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10bcfc000 -        0x10bd7cff7  com.apple.ApplicationServices.ATS (332 - 341) <487A3EA8-E180-3EA4-B60E-B87E8F0AB5D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10bda8000 -        0x10be65ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10beaf000 -        0x10bf05fff  com.apple.HIServices (1.20 - 416) <99AC513F-B0AE-38AA-834E-9018902BB70C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10bf3b000 -        0x10bf4eff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10bf5e000 -        0x10bfb8fff  com.apple.print.framework.PrintCore (8.0 - 387) <3CA8A004-8F93-3936-9F9E-7030BD474D2B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10bfe6000 -        0x10c025ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10c040000 -        0x10c054fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <21086D96-F997-38D3-BB59-8600CCC3A36F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10c06d000 -        0x10c071fff  com.apple.IOSurface (86.0.2 - 86.0.2) <739A481A-DF06-39EB-B784-D03BA1CBD762> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10c07b000 -        0x10c07bfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10c082000 -        0x10c18dfff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10c1f5000 -        0x10c244ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10c26c000 -        0x10c407fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10c428000 -        0x10c428fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10c430000 -        0x10c498fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10c4a8000 -        0x10c542fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10c54d000 -        0x10c944fff  libLAPACK.dylib (1073.3) <E670020A-6969-3ED7-B80B-285AE1DE5F95> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10c9a9000 -        0x10cb2ffff  libBLAS.dylib (1073.3) <6B71AB8C-3D9A-33C2-9EAF-2A0BA504D493> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10cb5f000 -        0x10cb87fff  libJPEG.dylib (843) <377EC31E-1831-32E2-AEEB-C375E0A80335> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10cb91000 -        0x10cbe6ff7  libTIFF.dylib (843) <4EB491F3-8DA4-3E4F-AE83-E207720F38B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10cbf3000 -        0x10cc13fff  libPng.dylib (843) <8F83F355-CA33-3D15-8178-54A135BA23BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10cc21000 -        0x10cc25fff  libGIF.dylib (843) <21324AF8-AFDA-3149-B547-C5109C1FBECF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10cc2f000 -        0x10cd31fff  libJP2.dylib (843) <04915A7F-EE27-3C01-8582-0BD9919558B1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10cd62000 -        0x10cd65fff  libRadiance.dylib (843) <61405840-A8B0-368E-B39A-704B5A04FDA5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x10cd6f000 -        0x10cdb3fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
           0x10cdc7000 -        0x10cde9ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10ce02000 -        0x10ce3cfff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10ce5b000 -        0x10ce7aff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
           0x10ce88000 -        0x10cf7dfff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
           0x10cf94000 -        0x10d016fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10d043000 -        0x10d045fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10d050000 -        0x10d055fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10d067000 -        0x10d072fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10d080000 -        0x10d0c3ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10d0d8000 -        0x10d102ff7  com.apple.CoreVideo (1.8 - 99.0) <ED17EF3A-2775-3840-BBD1-6513B5B112F2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10d121000 -        0x10d3b1fff  com.apple.CoreImage (8.0.17 - 1.0.1) <FFD6159F-DF31-3EFC-9C59-7FC4F4219D43> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10d492000 -        0x10d4e9ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10d50f000 -        0x10d559ff7  libGLU.dylib (8.5) <5D71D182-D92F-35A7-81AA-0F1C79428911> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10d56f000 -        0x10d575fff  libGFXShared.dylib (8.5) <A68A5A0B-F90C-3078-BF5A-2874C4BC5DC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10d581000 -        0x10d595fff  libGL.dylib (8.5) <0FDF05D4-D560-3194-9DEA-52EEBD147618> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10d5a7000 -        0x10d5e4fe7  libGLImage.dylib (8.5) <E6FE6970-FE3C-3844-AE9D-4B9B5505601A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10d5ed000 -        0x10d5effff  libCVMSPluginSupport.dylib (8.5) <0ED3B9E3-2F29-30F3-B2D6-3EDBF97F787F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10d5f8000 -        0x10d5fcfff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10d604000 -        0x10d65aff7  com.apple.opencl (2.1.17 - 2.1.17) <CA9E8BED-17C9-393B-A53E-8EAA8BF01C47> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10d675000 -        0x10da91fff  FaceCoreLight (2.0.1) <BEDAFBE8-CC12-343D-85D5-29B694DC97F6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x10dca7000 -        0x10dcb4fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10dcc1000 -        0x10dce2fff  com.apple.Ubiquity (1.2 - 234.2) <AC544B6F-0879-39A3-90A3-8BC8C29CBAD5> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10dcfc000 -        0x10dd07ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <7A5F12E8-C1C2-39C7-8599-2362EAAB9F03> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10dd13000 -        0x10dd32fff  com.apple.ChunkingLibrary (2.0 - 132) <F5051C19-6C4E-3E65-9BEC-B0A4BA82457A> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10dd3e000 -        0x10dd3efff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x10dd47000 -        0x10dde1fff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10de30000 -        0x10de8cff7  com.apple.Symbolication (1.3 - 93) <66BAF8B0-26D5-38B6-A742-01031F1B4EC0> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10ded1000 -        0x10df07fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10df2c000 -        0x10df38ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x10df47000 -        0x10e037ff7  com.apple.DiskImagesFramework (10.8 - 344) <AC72B2EF-7307-3B20-B561-5ECF30E83627> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x10e098000 -        0x10e09bff7  com.apple.LoginUICore (2.0 - 2.0) <965559B0-1F0E-3767-A16B-F91AABFA5275> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
           0x10e0aa000 -        0x10e131ff7  libCoreStorage.dylib (274.4) <7CCA18AC-1A7D-3962-8817-D70AA927973F> /usr/lib/libCoreStorage.dylib
           0x10e157000 -        0x10e161fff  libcsfde.dylib (274.4) <BA21D512-35F1-3B00-8FF6-E0D6A29A21FF> /usr/lib/libcsfde.dylib
           0x10e16d000 -        0x10e16efff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
           0x10e179000 -        0x10e24cff7  com.apple.DiscRecording (7.0 - 7000.2.4) <005BE6FF-38A1-3AEA-B24C-9D4F330EF6BE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x10e2b6000 -        0x10e2fefff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
           0x10e314000 -        0x10e354fff  com.apple.MediaKit (13 - 658) <3614D66C-0712-3049-9C5A-1ED9A94D82C5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x10e36e000 -        0x10e3a5ff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
           0x10e3c0000 -        0x10e4c2fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
           0x10e530000 -        0x10e56bfff  com.apple.LDAPFramework (2.4.28 - 194.5) <012E3038-92EA-3DC8-82B1-A71462DDAE9E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10e57e000 -        0x10e58fff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
           0x10e59b000 -        0x10e59dff7  com.apple.EFILogin (2.0 - 2) <6D339047-85C5-35CD-B48F-8C43A6071416> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x10e5a4000 -        0x10e5a7fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
           0x10e5b0000 -        0x10e5f5ff7  com.apple.DiskManagement (5.0 - 631) <1F1CFE5E-39C9-3D8C-B7DE-A1B31E12F44C> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x10e61f000 -        0x10e623fff  com.apple.SecCodeWrapper (2.0 - 1) <9C89FB5E-A3C1-34B0-85C8-EF5B093A461C> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
           0x10e62d000 -        0x10e639fff  com.apple.login (2.0 - 2.0) <2CE05B78-5D08-3666-B816-6E1874386407> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
           0x10e649000 -        0x10e649fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10e64e000 -        0x10f600ff7  com.apple.WebCore (8536 - 8536.24) <A890E18B-9224-38B3-ADFB-C84B3BCD2AAC> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x10fecf000 -        0x10fed3ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x10fedd000 -        0x10fee0fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x10fee6000 -        0x10fefbfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x10ff1d000 -        0x10ff39fff  com.apple.openscripting (1.3.5 - 148) <ACDE22A1-6170-3289-AF26-E501E6326BD7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x10ff4e000 -        0x10ff50ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x10ff5a000 -        0x10ff5cfff  com.apple.securityhi (4.0 - 55002) <8B2008A2-B6A2-3E69-9FA2-77B38C869DD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x110315000 -        0x110343fff  com.apple.CoreServicesInternal (153 - 153) <11507A03-9165-350C-9492-A545EA7331BD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x11164f000 -        0x11165dff7  com.apple.Librarian (1.1 - 1) <B0248F96-6BC9-3F63-8557-65DF1606039C> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
           0x11179e000 -        0x1117a7fef  libcldcpuengine.dylib (2.1.16) <BA5F6C17-7A08-3DCF-A30E-E9C4D76B7356> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x1117ad000 -        0x1117b0ff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x1117c4000 -        0x1117d0fff  libCSync.A.dylib (322) <C1321292-F5D3-3B8F-8CBB-57AC8E05F90C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
           0x111866000 -        0x11186afff  libCGXType.A.dylib (322) <0FA2272E-7733-36EA-9B9B-9279169D5919> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x111872000 -        0x11189eff7  libRIP.A.dylib (322) <36880C8B-7FC0-3689-91FF-A0E8F4F57FE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x111a10000 -        0x111c84ff7  com.apple.RawCamera.bundle (3.14.2 - 644) <11978DA8-3427-33FB-95BD-315608107265> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x114227000 -        0x1142c2ff7  unorm8_bgra.dylib (2.1.16) <14128E4A-6050-35C3-A493-3C8AEAF9B14D> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x114ba2000 -        0x114ba5ff7 +net.culater.SIMBL.osax (0.9.9 - 0.9.9) <F0F26DED-2BF8-C0BF-8D26-30D50D989095> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
        0x7fff650ad000 -     0x7fff650e193f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 377
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=158.2M resident=107.7M(68%) swapped_out_or_unallocated=50.5M(32%)
    Writable regions: Total=1.1G written=13.3M(1%) resident=22.8M(2%) swapped_out=0K(0%) unallocated=1.1G(98%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                    4404K
    CG image                              204K
    CG raster data                         28K
    CG shared images                     1184K
    CoreAnimation                           4K
    CoreImage                               8K

    Re-installing OSX Mountain Lion fixed the issue.

  • Powerbuilder application crashes after upgrade to 12.5.2 (build 5006)

    I have already seen few similar posts on this forum for similar issue. However, I feel mine is different from those and could be some basic steps am missing. Thanks in advance for any comments.
    We are evaluating the effort and benefits of migrating our PB 10.2.1 (build 9731) application to  PB 12.5 Classic. After downloading the trial version from the SAP site, I could migrate the application easily with only a handful of warnings. However, while running the application either from build (EXE) or from IDE, it crashes (windows application failure) frequently. In addition to that, few of our application screens opens as blank screen (doesn’t display anything in the DW attached).
    My operating system is Windows 7 (32 bit) Service Pack 1. The application has many calls external DLLs (both windows standard and custom), as samples at the bottom. I believe that the correct (from PB 12.5) DLLs are copied to Powerbuilder home directory (C:\Software\Sybase\PowerBuilder 12.5 & C:\Software\Sybase\Shared\PowerBuilder) and the source code directory in my attempt to ensure that there are no issues with DLLs. However, initially I had installed powerbuilder 12.5 also under the same root as Power builder 10.0, but as I read few posts that DLLs from different version residing in same place can cause issues, uninstalled and installed PB 12.5 on different location.
    Our PB application also interact with the .Net modules of the application by communicating through a custom DLL. However, that seems still working and I am able to open the .Net screens from the migrated application.
    Below are the main scenarios in which the application crashes and every time I get a DLL error as given below.
    1. While running the application from IDE and selecting ‘Exit’ from the main window. This will close any instantiated objects and close the mutex by calling the windows API.
    function ulong CreateMutexA(ulong lpMutexAttributes, boolean bInitialOwner, ref string lpName) library "kernel32.dll" alias for "CreateMutexW" function ulong GetLastError() library "kernel32.dll" alias for "GetLastError;Ansi"
    function ulong CloseHandle(ulong hMutex) library  "kernel32.dll" alias for "CloseHandle;Ansi"
    This will result in the below crash.
    Faulting application name: PB125.EXE, version: 12.5.2.5006, time stamp: 0x50f93412
    Faulting module name: kernel32.dll, version: 6.1.7601.17932, time stamp: 0x503275b9
    Exception code: 0xc0000005 Fault offset: 0x0004c372
    Faulting process id: 0x2bdc
    Faulting application start time: 0x01cf3e72371227c9
    Faulting application path: C:\Software\Sybase\PowerBuilder 12.5\PB125.EXE
    Faulting module path: C:\Windows\system32\kernel32.dll
    Report Id: 8feef8fc-aa65-11e3-8049-f500274aecdc
    2. Opening of certain windows results in the below crash. If I try to debug the code and move mouse over the line of code being executed, then also I get the same crash. I don’t do the mouse move then I can proceed with the same line, however it will crash at a later line calling ‘classname’.
    Problem Event Name: APPCRASH
    Application Name: PB125.EXE
    Application Version: 12.5.2.5006
    Application Timestamp: 50f93412
    Fault Module Name: PBVM125.dll
    Fault Module Version: 12.5.2.5006
    Fault Module Timestamp: 50f93437
    Exception Code: c0000005
    Exception Offset: 00175357
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 3081
    Additional Information 1: 38ca
    Additional Information 2: 38ca6ad0537dbd0555785bd862b8e94f
    Additional Information 3: 0cd5
    Additional Information 4: 0cd54a5b6672f15bf2ca366539d89c12
    3. Few of the application screen opens but doesn’t display the datawindow attached to it.

    ... many calls external DLLs (both windows standard and custom),
    You have a very complex application and it is unlikely that you will receive much help in this type of setting.  As Chris has already pointed out, previous efforts appear to have been done in a sloppy manner; something indicated by the ANSI qualifiers on API functions that are not needed or relevant.  In addition, the PB alias of CreateMutexA for the API function CreateMutexW is also suggestive.
    I believe that the correct (from PB 12.5) DLLs are copied to Powerbuilder home directory (C:\Software\Sybase\PowerBuilder 12.5 & C:\Software\Sybase\Shared\PowerBuilder)
    You should be very very careful about doing things like this.  One should not simply scatter DLLs across directories without very good reasons as it often leads to strange problems.  On a machine with the IDE installed, you should allow PB to install everything where it wants them.  Copying or moving files is something done as a last resort - it is certainly something that you need to document in case you need to undo it or redo it at a later time.
    Lastly, you might reconsider attempting this with the trial version.  I don't how "current" the trial version is but I suspect it might be a bit buggier than the most current maintenance build.  I'm guessing that you will have to do a bit more than recompiling to get the functionality related to "opening .Net screens" working.  It might help to try creating a new application and put in some basic functionality to interact with all of these external processes, screens, dlls, etc since I suspect this is where the bulk of your problems exist.

  • Application crashes after closing LabVIEW instance with Scilab 5.2.2

    I use LV 8.21 with the LabVIEW to Scilab Gateway software Version 1.1 (new version from NI homepage)
    I have Scilab Version 5.2.2 installed. We will do some calculation with the LabVIEW Scilab script node.
    Mainly use a call "exec (functionA,-1) Scilab script node. The functionA is a scriptfile outside of the application.
    So far everything is working fine, I can build a LabVIEW application with the application builder.
    If I run the application the calculation inside the Scilab script node are proceeding; I can call
    it many times in a loop without no problem.
    But if I close the instance (the VI with the Scilab script node inside) the application crashes.
    The same problem I have in the LabVIEW development environment  
    Is there a way to "unload" Scilab before I close the VI without a crash. After the Scilab
    calculation I have to close the calling VI and call some other VIs for further calculation
    (but this VIs have no Scilab call)
    I tried with the "exit" and "quit" command in Scilab script node, no success
    any suggestion
    Attachments:
    scilab.GIF ‏5 KB

    Hello
    thanks for the advice. I tried with version 5.1.1   ...    but no success!
    So I went straight back to version 4.1.1 and it works fine, of course I had to remove the comments from the script node 
    So fare I can work with this version.
    So what are the time schedule to fix this problem? It is a very useful tool an I would like to use the latest version of scilab and not an old version.
    Thank you

  • Application crashes after sometime using UIGetScreenImage()

    Hi,
    I've the following code to take the screenshots in iPhone:-
    *+ (UIImage )imageWithScreenContents
    * CGImageRef cgScreen = UIGetScreenImage();*
    * if (cgScreen) {*
    *UIImage *result = [UIImage imageWithCGImage:cgScreen];*
    * CGImageRelease(cgScreen);*
    *return result;*
    *return nil;*
    I'm calling the above code in a timer of 1/1.0 seconds as:
    *[array addObject:[UIImage imageWithScreenContents]];*
    where imagewithScreenContents is a function. But after some seconds i.e after adding 90 frames application crashes. I'm unable to understand the problem.
    Can somebody help me in solving the problem ?
    Thanks in Advance.

    Hi,
    first please use the structure(without the minus sign in the parenthesis) below in order to
    properly post code:
    {-code}
    Place code here!
    {-code}
    Second, I am no iPhone developer but still I think you need to be more careful what and when you
    are releasing(especially with a timer). I myself have an application that uses multiple timers, so may
    be this will be helpful(without seeng your actual error message can't tell for sure). My first clue would be to ask you how you create your array object and what do you do with it. The second one,
    I am not sure if this is needed but can't you define a property called 'screenShotImage' or so and
    give it value in your 'imageWithScreenContents' function? What I am trying to say is:
    -(UIImage*) screenShotImage
    return screenShotImage;
    -(void) setScreenShotImage: (UIImage*) input
    [screenShotImage release];
    screenShotImage = [input retain];
    and then in your imageWithScreenContents method:
    [self setScreenShotImage: [UIImage imageWithCGImage: cgScreen]];
    CGImageRelease(cgScreen);
    I am pretty sure that you are not handling your memory allocation/deallocation properly, do a
    little research on the topic, I am also pretty sure that you have to be extra careful with memory
    when implementing an iPhone app. Hope some of this helps.
    Regards,
    -artOf...

  • Application crashes after getting oci-24550

    Hello ,
    I am working on Oracle 11.1.0.7 database on IBM AIX os.
    I am using Oracle client 11.1.0.7 on our app servers.
    We are getting following erros at oracle client side and after this application crashes.
    I have not found any error in alert log file , but at application server log files are keep generated and application crashes every after few minutes..
    We have chanded our sql net .ora file as oracle metalink suggested -
    DIAG_ADR_ENABLED=OFF
    DIAG_SIGHANDLER_ENABLED=FALSE
    DIAG_DDE_ENABLED=FALSE
    But it did not worked ..
    Any idea where to check and what colud be the reason..
    Dump file /home/LM1/oradiag_LM1/diag/clients/user_LM/host_23432154125_11/incident/incdir_3457/ora_28219_3934123156_i3457.trc
    Dump continued from file: /home/LM1/oradiag_LM1/diag/clients/user_LM1/host_719854125_11/trace/ora_28219_3923427456.trc
    oci-24550 [11] [[si_signo=11] [si_errno=0] [si_c] [] [] [] [] [] []
    ========= Dump for incident 3457 (oci 24550 [11]) ========
    Call Stack Trace
    calling call entry argument values in hex
    location type point (? means dubious value)

    Hello Helios,
    Yes we checkd this document...it says to set some parameter in sql net .ora file , if using OCI 7 ..but i am not not sure
    what OCI oracle 11g is using .. OCI 7 or OCI 8
    sqlnet.ora for parameter(s)
    SEC_USER_AUDIT_ACTION_BANNER=<path>/banner.txt
    SEC_USER_UNAUTHORIZED_ACCESS_BANNER=<path>/banner.txt
    What could be the value of path and banner ...where to look for these values..?
    It is about seting stop unauthorizes access.. is this is related to application crash ..?
    any idea on this ...

  • Application crashes when printing

    hi, whenever i try to print, the application crashes. this is the same regardless of which application im using,(opera, acrobat reader, neo office, etc.)
    im using a lexmark z1380 printer and an iMac with 10.5.6.
    any help greatly appreciated!
    dan

    I bumped into at least a partial answer trying to figure this out. It seems like the System/Library/Frameworks directories may have been corrupted. I recently installed the 2009-001 Security update (too soon to tell if that was the culprit). What I did to fix the printing problem was to Archive a copy of the System/Library/Frameworks/Carbon.framework directory from my wife's MAC. I made an acrhive of the same directory from my Powerbook. I then deleted that directory. I copied the archive of my wife's MAC to my Deskptop and unzipped it. Then I MOVED - not Copied (Copy will not work) that entire directory from the Deskptop to the System/Library/Frameworks directory. This not only solved my problem with the Printing Crashing - it also solved the problem of my MAC not responding to either the Shutdown or Restart Options. Something definitely corrupted this directory structure. Note: You will need to supply the Authentication Password when you Move the Directory. Hope this helps.

  • Working Flex builder application crashes after flash player version 11.7.700.225

    I had developed a application in flash builder 4.6 at the time of development in that time latest browser 11.2 it was working smooth and fine all functioning is well. But now after new flash player release after 11.7.700.225 application doesn't show text and Clicks anso doesn't work. Please suggest me a solution what has been changed in version 11.7.700.224 and 11.7.700.225 due to that my application crashes.

    JavaScript and Cookies are enabled.  my cookies list shows at least 3 associated with hulu.  Funny thing is, if I grab the up/down control bar on right side of screen with my mouse, then hulu plays in a somewhat chopped frame by frame. As soon as I let go, the frame freezes yet audio portion continues.
    I don't know what a munged Hulu cookie is, however.

  • Adobe Air Application Crash After installation

    Hi,
    We have developed a windows application "DsNetHTML5Player" in Adobe Air which shows HTML pages in sequence using <mx:HTML> control. When I run application in "Flash Builder" all plays fine.After creating its build and installing on system (Windows 7) application crashes with following error.
    Faulting application name: DsNetHTML5Player.exe, version: 0.0.0.0, time stamp: 0x4d7a7dd2
    Faulting module name: WebKit.dll, version: 6531.9.0.0, time stamp: 0x50fcd627
    Exception code: 0xc0000005
    Fault offset: 0x000a99ac
    Faulting process id: 0x19c0
    Faulting application start time: 0x01d00ae266bc2b46
    Faulting application path: C:\Program Files\DsNetHTML5Player\DsNetHTML5Player.exe
    Faulting module path: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll
    Report Id: 99882a24-76d6-11e4-a3ad-005056c00008
    If anyone has any idea what the problem could be here, please let me know.
    Thanks
    Umair

    Could you open a new bug report on this over at bugbase.adobe.com.  Please include a copy of your app (or a sample project) along with steps to reproduce.  Once added, please let me know the bug number and I'll have somone take a look ASAP.
    Thanks,
    Chris

  • Adobe CS3 crashes after print job

    I've tried the fix from Adobe listed here:
    http://helpx.adobe.com/x-productkb/multi/crash-printing-illustrator-indesign-cs3 .html
    Restarted InDesign and still crashes after the print job goes to the queue.
    Any other ideas?
    Greg

    What I can say is, all my CS3 Apps work fine with 10.6.2 Snow Leopard,,,,
    My problems started after updating to 10.6.3. And it's about the Serial Number in my case. LogicBoard Serial # is SystemSerialNumb.
    I'm going to wait a while. At least until 10.6.4.... Surely Lazy @S* Adobe won't fix anything. And my luck is quite slim for Apple to properly input a serial # into the logic free of charge because I opened my iMac and replaced the Hard Drive myself. The Job won't be Cheap. I finished replacing the Hard Drive just weeks before Apple shot out 10.6.3 which really blew. Had I of known, I would'nt of spent my time and money on it.
    IF I can't resort to a fix after that. I will take my 500GB Drive Out, put back the Original 160GB Drive
    and sell my iMac.
    I just wouldn't like keeping my Macs OS outdated. I can't even get security updates because I'm staying behind. I'll probably go for a new iMac or Simpler Mac Mini where I can use any display size I want.
    My iMac is a Late 2006 2Ghz 17" 3GB Ram & (500GB HDD Installed myself)

  • Apple Applications Crash After Time Machine Restore

    I recently had to do a full system restore using Time Machine. Ever since the restore completed, most of the Apple applications on my iMac immediately crash when I try to open them. Luckily, Disk Utility is one of the applications that does not crash, so I tried to verify/restore permissions, however, when I try to, I am given this:
    Repairing permissions for “Macintosh HD”
    Warning: SUID file "Applications/Utilities/Keychain Access.app/Contents/Resources/kcproxy" has been modified and will not be repaired.
    Warning: SUID file "System/Library/Printers/IOMs/LPRIOM.plugin/Contents/MacOS/LPRIOMHelper" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Reso urces/Locum" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Install.framework/Versions/A/Resources/runner " has been modified and will not be repaired.
    Warning: SUID file "usr/bin/login" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/newgrp" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/passwd" has been modified and will not be repaired.
    Warning: SUID file "usr/lib/sa/sadc" has been modified and will not be repaired.
    Warning: SUID file "usr/libexec/chkpasswd" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/scselect" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/traceroute" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/traceroute6" has been modified and will not be repaired.
    Permissions differ on "usr/share/derby", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "usr/share/derby".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions repair complete
    However, according to this KB article: http://support.apple.com/kb/TS1448, those are all errors that I can "safely ignore".
    This is what the Problem Report says when one of the applications crashes (this one is for iTunes, but they are pretty much all the same):
    Process: iTunes [334]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: ??? (???)
    Build Info: iTunes-9022501~2
    Code Type: X86 (Native)
    Parent Process: launchd [176]
    Date/Time: 2009-12-29 01:16:52.530 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 1707 sec
    Crashes Since Last Report: 203
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: 3178C0CD-1A80-48E0-A6EC-2DC6D5EC88CC
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Dyld Error Message:
    Symbol not found: __ZNK3JSC6JSCell17getTruncatedInt32ERi
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    in /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.45f0
    Graphics: NVIDIA GeForce GT 130, NVIDIA GeForce GT 130, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Shared Networking Adapter, Ethernet, en3
    Network Service: Parallels Host-Only Networking Adapter, Ethernet, en4
    Serial ATA Device: ST31000342ASQ, 931.51 GB
    Serial ATA Device: HL-DT-ST DVDRW GA11N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0x24400000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0307, 0x24300000
    USB Device: EPSON Scanner, 0x04b8 (Seiko Epson Corp.), 0x0119, 0x24360000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: Vendor-Specific Device, 0x4542, 0x4149, 0x04100000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0x06110000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0x26400000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0304, 0x26430000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0x26420000
    In addition to not being able to run about 95% of my Apple applications, I can also no longer connect to my Time Capsule Time Machine backups. I am able to SEE the files in the built-in hard drive, but I can not mount the sparsebundle for the backups of any of my computers. I am however able to access them on a different computer. Also, if I try to use System Recovery from my Snow Leopard install disk again, it can't find any backups on my Time Capsule, even though my other computer can view the files with no problem.
    Any help with any of these problems would be greatly appreciated.

    I had a couple of apps start crashing today, with basically the same stuff in the crash reports.
    Reinstalling Safari (which also reinstalls the WebKit and JavascriptCore frameworks, which seem to be part of the problem) worked for me.
    I found that solution here, after Googling for "Symbol not found: __ZNK3JSC6JSCell17getTruncatedInt32ERi":
    http://www.meproxsoft.de/tag/time-machine/
    I know very little German (even though I took German in high school-- it might have helped if the teacher actually knew English), but I managed to get "repair permissions" and "reinstall Safari" from all that.

Maybe you are looking for