Cannot launch applications sometimes

Hi there,
I've got a knarly issue here. After a certain period of time (a couple of days for instance given that I leave the machine switched on) I cannot log into my computer via the screen saver password prompt (I just get the spinning ball, no login dialog displays). Additonally, at this time, I cannot ssh to the machine (whereupon I normally can). Finally, I have been doing something on the machine (using various applications) and then find myself unable to launch any other application via the dock (bouncing icon eventually times out). The latter problem has happened twice. In this instance I can still activate applications that are already running (they come to the front etc.). Additionally logging out in this instance is a problem and I have to force-quit things to get through the logout (including the Finder). Finally when it gets to actually logging out, I don't get the dialog to login again (just the clock style progress indicator with the bars which goes on forever).
Very mysterious. I've a suspicion that the above problems are related.
I have done a couple of things to this machine that may be relevant: increased the RAM; and (ii) updated the Pioneer DVR-110D firmware (this was a third party drive that I bought given that the original drive stopped working).
I have run memtest on the memory with several passes. Everything reports ok. I realise that memtest won't necessarily report all faults, but I know that if it does report a fault, there's definitely a fault. I want to get my hands on the Apple Hardware Profiler to do another test - anyone know how to get it?
Most importantly can anyone explain any of the symptoms I'm seeing? The machine is obviously still alive given the spinning ball when trying to wake up from sleep in the screen saver, and activation of existing application.
Any clues and diagnostic ideas are greatly appreciated.
Cheers,
-C

re: SSH. I presume you've enabled Remote Login on the
affected Mac? Remote Login has to be enabled before
the problem occurs if you are to SSH into a
frozen/hung Mac. However, depending on the problem,
the affected Mac may be so frozen or hung that you
simply can't get in via SSH.
I can normally log on to the machine using SSH. In fact, at one time, I established an SSH connection and then the problem occurred subsequently. My SSH connection, having already been established, allowed me to look around the machine.
In lieu of the AHT, and as noted in my AHT FAQ, you
can use Micromat
TechTool Pro 4 for hardware testing. You want to
use version 4.0.4 or later with Tiger, but it is best
to use the latest version, which is 4.1.2. You'll
want the CD so you can boot from it to run the
hardware tests.
I will look into this software now.
Another small update: given that the machine went weird again yesterday I managed to mount a volume via AppleShare and have a look in /var/logs. However I didn't see anything really out of the ordinary. Given that these logs get archived on reboot, any ideas on something that I might look for?
Once again the symptoms are that: I cannot su to any other account (whereas I normally can); and (ii) I cannot launch applications (also whereas I normally can of course). Apps are launched via the Finder Dock. I'm suspection that (ii) is caused by . The fact that I cannot su to any other user is most weird.
The machine is now running without the non-Apple memory, Activity Monitor is running and I've disabled passwords being required to wake the computer up. Thus if it does go down again I should be able to do some more diagnosis.

Similar Messages

  • Randomly cannot launch applications and programs

    Sometimes, I am not able to launch programs, be it from my dock, or from the Xfce application menu. This happens randomly and I do not know what the cause for this could be.
    Last edited by bl3ndy (2012-11-24 19:41:38)

    DSpider wrote:Fully updated system (i.e. no more ConsoleKit) ? What happens if you run them from a terminal? Do they complain about something?
    Currently running a hybrid initscripts/systemd installation. Will update to full systemd soon.
    Can't start terminal while in Xfce at all either. Forced to Ctrl + Alt + F1 and pkill X to 'restart'.

  • Java Web Start- Cannot launch Application. Pls help

    HI
    Ia m beginner in java web start. I creaate a simple swing application and try to launch it through web start. But I failed. My application jar file (sample.jar)contains only class files. No menifest file. Then I sign my "sample.jar" file and placed inside tomcat server: "webapps/root/WebStart/Sample". I also placed the "sample.jnlp" file in the above directory.The name of my main class is :"Sample" .Here is the content of sample.jnlp:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
      codebase="http://165.231199.164:8080"
    >
    <information>
      <title>Sample Launching Test</title>
      <vendor>FMO</vendor> 
      <homepage href="www.sun.com" />
      <description>Demonstration of JNLP</description>
    </information>
    <offline-allowed/>
    <security>
      <all-permissions/>
    </security>
    <resources>
      <j2se version="1.2+" />
      <jar href="/WebStart/Sample/sample.jar"/>
    </resources>
    <application-desc main-class="Sample" />
    </jnlp>Whenever I try to launch this application from the browser , it shows me following :
    An error occurred while launching/running the application.
    Title: Sample Launching Test
    Vendor: FMO
    Category: Unexpected Error
    RED
    Anybody pls help me here about how to Launch my application. Am I missing something?

    I fixed the porblem by modifying the sample.jnlp file. Here is the latest version:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase=http://[my-ip-address]:8080/WebStart/Sample>
    <href="sample.jnlp">
    <information>
      <title>Sample Launching Test</title>
      <vendor>FMO</vendor> 
      <homepage href="www.sun.com" />
      <description>Demonstration of JNLP</description>
      <offline-allowed/>
    </information>
    <security>
      <all-permissions/>
    </security>
    <resources>
      <j2se version=1.4+ />
      <jar href="sample.jar"/>
    </resources>
    <application-desc main-class="Sample" />
    </jnlp>

  • Upgraded Mac OS X to 10.8.4, Flash Builder cannot launch application

    I've update the JRE to Version 7, and added it to Flash Builder, but I when I run, nothing happens, when I debug, I get the following:
    The Flash Builder debugger failed to connect to the running application.
    Ensure that:
              1. For in-browser applications, you are running the debugger version of Flash Player.
              2. For network debugging on a mobile device, you have a reliable network connection to the device, and port 7935 is open on your machine's firewall.
                  Device connection help
    I am running the latest debugger, the only change that was made was upgrading to Mountain Lion from Lion.
    Joe

    I'm pretty sure this is down to the Java version but I could be wrong, download this version and re-launch Flash Builder, making sure that the java version your system is running 6 and not 7 after you've installed java 6.
    http://support.apple.com/kb/DL1572

  • Cannot launch application to open a file from jdev extension

    Hello:
    I use the following code to let my application to open a file:
    String[] cmd = new String[3];
    cmd[0] = "cmd.exe" ;
    cmd[1] = "/C" ;
    cmd[2] = "myfile.pdf;
    Process p = Runtime.getRuntime().exec(cmd);
    p.waitFor();
    It worked fine if it was in a main method running in jdev. However, my application is a jdev client launched by clicking run/debug extension on project icon. When that part of code was executed, I didn't see the file got opened. No cmd.exe process got created either. I am wondering if I need to do something more to make it work. (I did enable "allow program input" in Tool Settings in Run/Debug/Profile of the project property).
    Anyone who knows this may offer some help/hint?
    Thanks.

    Hi there
    Perhaps this trick will help.
    Do the file browse thing where it appears to lock up.
    Press Alt+Spacebar and release both keys.
    Presss M. (selects the Move command)
    Press any arrow key.
    Wiggle the mouse around a little and see if the window pops into view.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Successfull installation, But Cannot Launch Application Express 2.2

    Hi I have success fully installed the application express software, but however I could not launch the application express
    I have followed each and every step given in the installation documents.
    I have created the marvel.conf file with the following contents
    Alias /i/ "C:\Oracle\product\iasR2\Apache\Apache\images\"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_manager.process_download
    PlsqlDatabaseConnectString xxxx:1521:xxx ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword xxxxx
    Allow from all
    </Location>
    Modified the httpd.conf file and added the following
    include "C:\Oracle\product\iasR2\Apache\modplsql\conf\marvel.conf"
    When i try to start Oracle HTTP Server,
    I recieved this in my log, any suggestions what is wrong?
    Syntax error on line 11 of c:/oracle/product/iasr2/apache/modplsql/conf/marvel.conf:
    Invalid command 'PlsqlDocumentPath', perhaps mis-spelled or defined by a module not included in the server configuration
    Regards
    Tobias

    Tobias,
    Not sure if this will fix your problem, but I do not have the PlsqlDocumentPath defined in my marvel.conf file.
    I'm using 10g and Apex 2.2 on one machine, and Oracle Application Server on another machine.
    Try commenting the PlsqlDocumentPath line out and see what happens.
    Bill Ferguson

  • Cannot launch application from Workspace

    My Explorer upgraded to 10.0
    Since then I try to lanch application and a new window open and nothing.... it stays grey...
    EAS is connected.
    Thank you,

    Yes you can downgrade using
    Start/ Programs and Features / and select the version program you want to uninstall.
    I uninstall E10 so I am runnig E9 and it works.
    After I set up the windows upgrade manually.
    Thank you,

  • Cannot launch many application after 10.8.5 upgrade

    Hi, I have to report I cannot launch many application on my MacBook Pro (2011) after I upgraded to 10.8.5 and 10.8.5.1
    When I execute the application I receive the spinning ball, and all I have to do is to force and quit the application.
    For example I cannot launch any Mac Office application...
    This is the kind of error i receive:
    Date/Time:       2013-10-07 11:06:25 +0200
    OS Version:      10.8.5 (Build 12F45)
    Architecture:    x86_64
    Report Version:  11
    Command:         Excel
    Path:            /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Version:         14.3.7 (14.3.7)
    Build Version:   0
    Project Name:    (null)
    Source Version:  130812
    Parent:          launchd [171]
    PID:             5811
    Event:           hang
    Duration:        2.12s
    Steps:           22 (100ms sampling interval)
    Hardware model:  MacBookPro8,2
    Active cpus:     8
    Free pages:      2651769 pages (-998)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         Microsoft Excel [5811]
    Path:            /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Architecture:    i386
    Parent:          launchd [171]
    UID:             501
    Task size:       33236 pages (-5)
      Thread 0x696e3    priority 46       
      22 ??? (Microsoft Excel + 9498) [0xcf51a]
        22 ??? (Microsoft Excel + 9960) [0xcf6e8]
          22 ??? (Microsoft Excel + 954946) [0x1b6242]
            22 ??? (Microsoft Excel + 955054) [0x1b62ae]
              22 McpRunApplicationEventLoop + 148 (MicrosoftComponentPlugin) [0x1c87372]
                22 ReceiveNextEvent + 79 (HIToolbox) [0x9691915c]
                  22 ReceiveNextEventCommon + 162 (HIToolbox) [0x967b3bf5]
                    22 RunCurrentEventLoopInMode + 242 (HIToolbox) [0x967b3f5a]
                      22 CFRunLoopRunInMode + 123 (CoreFoundation) [0x960fbe8b]
                        22 CFRunLoopRunSpecific + 378 (CoreFoundation) [0x960fc01a]
                          22 __CFRunLoopRun + 1842 (CoreFoundation) [0x960fcbb2]
                            22 __CFRunLoopDoTimer + 709 (CoreFoundation) [0x96117da5]
                              22 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22 (CoreFoundation) [0x96118406]
                                22 IdleTimerVector + 63 (HIToolbox) [0x967c9c81]
                                  22 MbuSeriouslyEnableTimers + 354 (mbukernel) [0x1b1228d]
                                    22 ??? (Microsoft Excel + 1022394) [0x1c69ba]
                                      22 ??? (Microsoft Excel + 1022514) [0x1c6a32]
                                        22 ??? (Microsoft Excel + 1050468) [0x1cd764]
                                          22 ??? (Microsoft Excel + 1050754) [0x1cd882]
                                            22 McpRunFontMenuIdleTasks + 78 (MicrosoftComponentPlugin) [0x1c94347]
                                              22 McpRunFontMenuIdleTasks + 2671 (MicrosoftComponentPlugin) [0x1c94d68]
                                                22 McpFCreateDeepFSIterator + 13035 (MicrosoftComponentPlugin) [0x1ca162c]
                                                  22 McpFCreateDeepFSIterator + 13955 (MicrosoftComponentPlugin) [0x1ca19c4]
                                                    22 ATSFontFindFromPostScriptName + 63 (ATS) [0x99e831ec]
                                                      22 _eATSFontFindFromPostScriptName + 46 (ATS) [0x99e6b98d]
                                                        22 _eATSFontFindVariationFromPostScriptName + 518 (ATS) [0x99e6bb98]
                                                          22 FindFontFromName(__CFString const*, unsigned long, unsigned long const*, unsigned long*, unsigned char) + 446 (ATS) [0x99e6b6fe]
                                                            22 FindFontNameWithCFEncoding(__CFString const*, unsigned long*, unsigned long, unsigned long const*, unsigned long*, unsigned long) + 1073 (ATS) [0x99e6e385]
                                                              22 FindFontIDFromNameInternal + 377 (ATS) [0x99e536ae]
                                                                22 FindFontIDFromNameInternalCore(unsigned long, unsigned long const*, unsigned long, unsigned long, unsigned long, unsigned char*, unsigned long, unsigned long, unsigned long*, FontNameCacheNode*) + 974 (ATS) [0x99e53ae3]
                                                                  22 SendFindFontIDFromNameMessage + 310 (ATS) [0x99e4d0f1]
                                                                    22 SendFontManagementMessageWithMessageStatus + 333 (ATS) [0x99e47d2c]
                                                                      22 ReconnectToATSServer(int, unsigned char, unsigned char) + 219 (ATS) [0x99e4cd74]
                                                                        22 NewHookUpWithATSServer(unsigned int, unsigned char) + 526 (ATS) [0x99e47b8a]
                                                                          22 RendezvousWithServer(unsigned long, char*) + 351 (ATS) [0x99e50170]
                                                                            22 SendFontManagementMessageWithMessageStatus + 191 (ATS) [0x99e47c9e]
                                                                              22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x99b887ce]
                                                                               *22 hndl_mach_scall + 225 (mach_kernel) [0xffffff80002cf221]
                                                                                 *22 ??? (mach_kernel + 680942) [0xffffff80002a63ee]
                                                                                   *22 mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff800021961b]
                                                                                     *22 ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                                                                                        *22 ipc_mqueue_send + 315 (mach_kernel) [0xffffff8000212ceb]
                                                                                          *22 thread_block_reason + 300 (mach_kernel) [0xffffff800022db9c]
                                                                                            *22 ??? (mach_kernel + 190673) [0xffffff800022e8d1]
                                                                                              *22 machine_switch_context + 366 (mach_kernel) [0xffffff80002b496e]
      Thread 0x696f2    DispatchQueue 1701273966 priority 48       
      22 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x912ec7a9]
        22 kevent + 10 (libsystem_kernel.dylib) [0x99b8b9ae]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x696f3    DispatchQueue 1919904114 priority 46       
      22 start_wqthread + 30 (libsystem_c.dylib) [0x97664daa]
        22 _pthread_wqthread + 441 (libsystem_c.dylib) [0x9767ce72]
          22 _dispatch_worker_thread2 + 285 (libdispatch.dylib) [0x912eaf02]
            22 _dispatch_client_callout + 46 (libdispatch.dylib) [0x912e9c82]
              22 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x912edf8f]
                22 __block_global_6 + 135 (Foundation) [0x957f6039]
                  22 -[NSOperation start] + 67 (Foundation) [0x957edf64]
                    22 -[__NSOperationInternal start] + 789 (Foundation) [0x957ee28a]
                      22 -[NSInvocationOperation main] + 81 (Foundation) [0x957f69ad]
                        22 -[NSInvocation invoke] + 279 (CoreFoundation) [0x961526f7]
                          22 __invoking___ + 29 (CoreFoundation) [0x961527bd]
                            22 MsoFGetLegacyPPTDefaultTheme + 69029 (MicrosoftOffice) [0x1fc3b86]
                              22 -[NSNotificationCenter postNotification:] + 115 (Foundation) [0x957c0248]
                                22 _CFXNotificationPost + 2794 (CoreFoundation) [0x9610de8a]
                                  22 ___CFXNotificationPost_block_invoke_0 + 257 (CoreFoundation) [0x961c2851]
                                    22 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49 (Foundation) [0x957bae52]
                                      22 MsoFGetLegacyPPTDefaultTheme + 82542 (MicrosoftOffice) [0x1fc704f]
                                        22 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 159 (Foundation) [0x957eb65f]
                                          22 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 795 (Foundation) [0x957eba0f]
                                            22 -[NSCondition wait] + 274 (Foundation) [0x957f39a4]
                                              22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                                22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                                 *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x696f8    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 MerpCreateSession + 5817 (merp) [0x29dc7de]
            22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x99b887ce]
             *22 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x69702    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69703    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69704    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69705    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69706    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69707    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69708    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x69709    priority 46       
      22 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        22 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          22 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            22 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1b124e2]
              22 CreateThread + 1271 (WLMKernel) [0x4429142]
                22 ??? (Microsoft Excel + 89409) [0xe2d41]
                  22 WaitForSingleObject + 62 (WLMKernel) [0x4427154]
                    22 WaitForSingleObject + 382 (WLMKernel) [0x4427294]
                      22 WaitForSingleObject + 884 (WLMKernel) [0x442748a]
                        22 WaitForSingleObject + 1733 (WLMKernel) [0x44277db]
                          22 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4429eb2]
                            22 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1b12549]
                              22 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                22 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  22 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    22 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x6a01c    priority 46       
      19 start_wqthread + 30 (libsystem_c.dylib) [0x97664daa]
        19 _pthread_wqthread + 448 (libsystem_c.dylib) [0x9767ce79]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x99b8b0ee]
           *19 ??? (mach_kernel + 3943920) [0xffffff80005c2df0]
      Thread 0x6a01b    priority 46       
      18 start_wqthread + 30 (libsystem_c.dylib) [0x97664daa]
        18 _pthread_wqthread + 448 (libsystem_c.dylib) [0x9767ce79]
          18 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x99b8b0ee]
           *18 ??? (mach_kernel + 3943920) [0xffffff80005c2df0]
      Binary Images:
                 0xcd000 -          0x175dff3  com.microsoft.Excel 14.3.7 (14.3.7) <516DEDC2-D84A-8BB7-19D5-B1ED368BD67C> /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
               0x1b0d000 -          0x1b26ff7  com.microsoft.mbukernel 14.3.7 (14.3.7) <A806C9F4-0364-00AF-BD88-93B451A95169> /Applications/Microsoft Office 2011/*/mbukernel.framework/Versions/14/mbukernel
               0x1c42000 -          0x1e78ff3  com.microsoft.mcp 14.3.7 (14.3.7) <A05F5FA3-7666-9FD6-6619-86F3AC33AD45> /Applications/Microsoft Office 2011/*/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPlugin
               0x1f36000 -          0x26a0fef  com.microsoft.office 14.3.7 (14.3.7) <381C78DE-E85F-093D-37B9-D70AD4049240> /Applications/Microsoft Office 2011/*/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
               0x29d8000 -          0x29e5fff  com.microsoft.merp 2.2.4 (2.2.4) <17EF69E3-99BA-D7FD-CB68-17FA0E7409A9> /Applications/Microsoft Office 2011/*/merp.framework/Versions/14/merp
               0x441f000 -          0x444cfe3  com.microsoft.wlmkernel 14.3.7 (14.3.7) <D1900C8C-81F1-196F-67F7-38136F868C57> /Applications/Microsoft Office 2011/*/WLMKernel.framework/Versions/14/WLMKernel
              0x912e8000 -         0x912faff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
              0x917c9000 -         0x91aceff7  com.apple.CoreServices.CarbonCore 1037.6 (1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
              0x95757000 -         0x95a77ff3  com.apple.Foundation 6.8 (945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
              0x960c5000 -         0x962adffb  com.apple.CoreFoundation 6.8 (744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
              0x9675c000 -         0x96b3ffff  com.apple.HIToolbox 2.0 <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
              0x97664000 -         0x97721ffb  libsystem_c.dylib <A5C0B70C-5F14-3BF8-AA5B-B22E7B12A4AE> /usr/lib/system/libsystem_c.dylib
              0x99b76000 -         0x99b90ffc  libsystem_kernel.dylib <9B50E922-DCEA-3066-A9B2-613A6D2C5C69> /usr/lib/system/libsystem_kernel.dylib
              0x99e46000 -         0x99ebbff7  com.apple.ApplicationServices.ATS 332 <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         1PasswordAgent [306]
    Path:            /Users/USER/Library/Application Support/1Password/*/1PasswordAgent.app/Contents/MacOS/1PasswordAgent
    Architecture:    x86_64
    Parent:          launchd [171]
    UID:             501
    Task size:       4434 pages
    Process:         accountsd [225]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [171]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1803 pages
      Thread 0x8c8      DispatchQueue 1          priority 31       
      22 start + 1 (libdyld.dylib) [0x7fff983fe7e1]
        22 ??? (accountsd + 3048) [0x100f3fbe8]
          22 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff96e910e2]
            22 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff96e91916]
              22 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff96e8c233]
                22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff97bac686]
                 *22 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x8cd      DispatchQueue 2          priority 33       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Binary Images:
             0x100f3f000 -        0x100f3ffff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff96e5c000 -     0x7fff97046ff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff983fc000 -     0x7fff983ffff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         AirPort Base Station Agent [5683]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [171]
    UID:             501
    Sudden Term:     Clean
    Task size:       544 pages
      Thread 0x661e5    DispatchQueue 1          priority 31       
      22 ??? (AirPort Base Station Agent + 3064) [0x10bb8bbf8]
        22 ??? (AirPort Base Station Agent + 70465) [0x10bb9c341]
          22 CFRunLoopRun + 97 (CoreFoundation) [0x7fff96e9fdd1]
            22 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff96e910e2]
              22 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff96e91916]
                22 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff96e8c233]
                  22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff97bac686]
                   *22 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x661e8    DispatchQueue 2          priority 33       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x661f2    priority 31       
      22 thread_start + 13 (libsystem_c.dylib) [0x7fff947901a1]
        22 _pthread_start + 327 (libsystem_c.dylib) [0x7fff947a3772]
          22 __select + 10 (libsystem_kernel.dylib) [0x7fff97bae322]
           *22 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Thread 0x661fd    priority 31       
      22 thread_start + 13 (libsystem_c.dylib) [0x7fff947901a1]
        22 _pthread_start + 327 (libsystem_c.dylib) [0x7fff947a3772]
          22 ??? (AirPort Base Station Agent + 71512) [0x10bb9c758]
            22 ??? (AirPort Base Station Agent + 10842) [0x10bb8da5a]
              22 ??? (AirPort Base Station Agent + 72265) [0x10bb9ca49]
                22 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff97bae0fa]
                 *22 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Binary Images:
             0x10bb8b000 -        0x10bba1ff7  com.apple.AirPortBaseStationAgent 2.2 (220.2) <2CA1AE53-7CA0-30CF-99A9-5D2585BDFEF7> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff9478f000 -     0x7fff9485bff7  libsystem_c.dylib <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
          0x7fff96e5c000 -     0x7fff97046ff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         appleeventsd [80]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       932 pages
      Thread 0x318      DispatchQueue 2          priority 33       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x319      DispatchQueue 7          priority 31       
      22 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90a2cd85]
        22 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff97bae566]
         *22 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x108b14000 -        0x108b14fff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         AppleIDAuthAgent [247]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [171]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       556 pages
      Thread 0xa02      DispatchQueue 2          priority 33       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0xa04      DispatchQueue 7          priority 31       
      22 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90a2cd85]
        22 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff97bae566]
         *22 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Thread 0xc88      DispatchQueue 17         priority 31       
      22 start_wqthread + 13 (libsystem_c.dylib) [0x7fff94790191]
        22 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff947a5cdb]
          22 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff90a2e1c3]
            22 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff90a2e2f1]
              22 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x7fff90a2e448]
                22 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x7fff90a2e305]
                  22 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x7fff90a2f29b]
                    22 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff90a2d0b6]
                      22 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x7fff90a3196f]
                        22 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff90a2d0b6]
                          22 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff90a30f01]
                            22 ??? (AppleIDAuthAgent + 9227) [0x105a6540b]
                              22 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff97bac6c2]
                               *22 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000234050]
      Binary Images:
             0x105a63000 -        0x105a93fff  AppleIDAuthAgent <E004B38E-4C52-336B-9E97-0F2F770E1E8D> /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff9478f000 -     0x7fff9485bff7  libsystem_c.dylib <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         AppleSpell [268]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [171]
    UID:             501
    Sudden Term:     Clean
    Task size:       2646 pages
      Thread 0xd07      DispatchQueue 1          priority 46       
      22 start + 1 (libdyld.dylib) [0x7fff983fe7e1]
        22 ??? (AppleSpell + 7271) [0x108790c67]
          22 -[NSSpellServer run] + 73 (Foundation) [0x7fff92937ee6]
            22 CFRunLoopRun + 97 (CoreFoundation) [0x7fff96e9fdd1]
              22 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff96e910e2]
                22 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff96e91916]
                  22 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff96e8c233]
                    22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff97bac686]
                     *22 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xd13      DispatchQueue 2          priority 48       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Binary Images:
             0x10878f000 -        0x108844ff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff927b5000 -     0x7fff92b14fff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff96e5c000 -     0x7fff97046ff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff983fc000 -     0x7fff983ffff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         apsd [216]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2504 pages
      Thread 0x85e      DispatchQueue 1          priority 31       
      22 start + 1 (libdyld.dylib) [0x7fff983fe7e1]
        22 ??? (apsd + 21686) [0x1090874b6]
          22 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff927e91aa]
            22 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff928507ee]
              22 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff96e910e2]
                22 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff96e91916]
                  22 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff96e8c233]
                    22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff97bac686]
                     *22 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x861      DispatchQueue 2          priority 33       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x87a      priority 63       
      22 thread_start + 13 (libsystem_c.dylib) [0x7fff947901a1]
        22 _pthread_start + 327 (libsystem_c.dylib) [0x7fff947a3772]
          22 __NSThread__main__ + 1345 (Foundation) [0x7fff9284b562]
            22 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff927ed546]
              22 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff96e910e2]
                22 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff96e91916]
                  22 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff96e8c233]
                    22 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff97bac686]
                     *22 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x87c      priority 31       
      22 thread_start + 13 (libsystem_c.dylib) [0x7fff947901a1]
        22 _pthread_start + 327 (libsystem_c.dylib) [0x7fff947a3772]
          22 __select + 10 (libsystem_kernel.dylib) [0x7fff97bae322]
           *22 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x109082000 -        0x109100ff7  apsd <79FEFFFF-D855-3F06-BF98-C24F741AB4E7> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff927b5000 -     0x7fff92b14fff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff9478f000 -     0x7fff9485bff7  libsystem_c.dylib <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
          0x7fff96e5c000 -     0x7fff97046ff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff983fc000 -     0x7fff983ffff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         autofsd [84]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       533 pages
      Thread 0x2c5      DispatchQueue 2          priority 33       
      22 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff90a2f9ee]
        22 kevent + 10 (libsystem_kernel.dylib) [0x7fff97baed16]
         *22 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x2c6      DispatchQueue 7          priority 31       
      22 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90a2cd85]
        22 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff97bae566]
         *22 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x103fec000 -        0x103fedfff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff90a2b000 -     0x7fff90a40ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         Babylon Activation [304]
    Path:            /Library/Application Support/Babylon/Babylon Activation.app/Contents/MacOS/Babylon Activation
    Architecture:    i386
    Parent:          launchd [171]
    UID:             501
    Task size:       3420 pages
    Process:         bash [307]
    Path:            /bin/bash
    Architecture:    x86_64
    Parent:          launchd [171]
    UID:             501
    Task size:       218 pages
      Thread 0xee0      priority 31       
      22 start + 1 (libdyld.dylib) [0x7fff983fe7e1]
        22 ??? (bash + 10713) [0x10044e9d9]
          22 ??? (bash + 117763) [0x100468c03]
            22 ??? (bash + 118794) [0x10046900a]
              22 ??? (bash + 123820) [0x10046a3ac]
                22 ??? (bash + 156876) [0x1004724cc]
                  22 __wait4 + 10 (libsystem_kernel.dylib) [0x7fff97bae69a]
                   *22 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x10044c000 -        0x1004e2fff  bash <B3CE4882-ACE3-35E9-A5CC-6436AD7D504E> /bin/bash
          0x7fff97b9c000 -     0x7fff97bb7ff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff983fc000 -     0x7fff983ffff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         bash [1397]
    Path:            /bin/bash
    Architecture:    x86_64
    Parent:          login [1395]
    UID:             501
    Task size:       313 pages
      Thread 0x21e3d    DispatchQueue 1          priority 31       
      22 start + 1 (libdyld.dylib) [0x7fff983fe7e1]
        22 ??? (bash + 10713) [0x10891f9d9]
          22 ??? (bash + 117615) [0x108939b6f]
            22 ??? (bash + 118109) [0x108939d5d]
              22 ??? (bash + 118334) [0x108939e3e]
                22 ??? (bash + 176804) [0x1089482a4]
                  22 ??? (bash + 195714) [0x10894cc82]
                    22 ??? (bash + 196942) [0x10894d14e]
                      22 ??? (bash + 181833) [0x108949649]
                        22 ??? (bash + 398709) [0x10897e575]
                          22 ??? (bash + 400037) [0x10897eaa5]
                            22 ??? (bash + 386226) [0x10897b4b2]
                              22 read + 10 (libsystem_kernel.dylib) [0x7fff97baeffa]
                               *22 hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002cf453]
                                 *22 unix_syscall64 + 522 (mach_kernel) [0xffffff80005e97ba]
                                   *22 read_nocancel + 130 (mach_kernel) [0xffffff800057e822]
                                     *22 ??? (mach_kernel + 3664382) [0xffffff800057e9fe]
                                       *22 ??? (mach_kernel + 1109817) [0xffffff800030ef39]
                                         *22 VNOP_READ + 77 (mach_kernel) [0xffffff8000318f5d]
                                           *22 spec_read + 187 (mach_kernel) [0xffffff800032720b]
                                             *22 ??? (mach_kernel + 3718002) [0xffffff800058bb72]
                                               *22 ttread + 445 (mach_kernel) [0xffffff8000587c6d]
                                                 *22 msleep0 + 100 (mach_kernel) [0xffffff80005721b4]
                                                   *22 ??? (mach_kernel + 3612246) [0xffffff8000571e56]
                                                     *22 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022666e]
                                     

    ****... the very same problem happened again even with 1Password removed...
    It's impossibile to open any office documents I have to quit and retry many times before the file is loaded... it happens most with excel (updated to the very last build).
    Hope someone can help me checking this log:
    Date/Time:       2013-10-09 14:45:58 +0200
    OS Version:      10.8.5 (Build 12F45)
    Architecture:    x86_64
    Report Version:  11
    Command:         Excel
    Path:            /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Version:         14.3.7 (14.3.7)
    Build Version:   0
    Project Name:    (null)
    Source Version:  130812
    Parent:          launchd [145]
    PID:             11918
    Event:           hang
    Duration:        1.25s
    Steps:           13 (100ms sampling interval)
    Hardware model:  MacBookPro8,2
    Active cpus:     8
    Free pages:      1891700 pages (-983)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         Microsoft Excel [11918]
    Path:            /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Architecture:    i386
    Parent:          launchd [145]
    UID:             501
    Task size:       19584 pages (-2)
      Thread 0x100214   priority 46       
      13 ??? (Microsoft Excel + 9498) [0x3b51a]
        13 ??? (Microsoft Excel + 9960) [0x3b6e8]
          13 ??? (Microsoft Excel + 954946) [0x122242]
            13 ??? (Microsoft Excel + 955054) [0x1222ae]
              13 McpRunApplicationEventLoop + 1172 (MicrosoftComponentPlugin) [0x1bf6772]
                13 McpRunApplicationEventLoop + 11815 (MicrosoftComponentPlugin) [0x1bf9105]
                  13 SendEventToEventTarget + 88 (HIToolbox) [0x967a3655]
                    13 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430 (HIToolbox) [0x9678f780]
                      13 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538 (HIToolbox) [0x9679083f]
                        13 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2188 (HIToolbox) [0x967c35f6]
                          13 SendEventToEventTarget + 88 (HIToolbox) [0x967a3655]
                            13 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430 (HIToolbox) [0x9678f780]
                              13 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343 (HIToolbox) [0x96790394]
                                13 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36 (HIToolbox) [0x969089bb]
                                  13 McpDispatchPendingEvents + 302 (MicrosoftComponentPlugin) [0x1cc97f8]
                                    13 MenuSelect + 171 (HIToolbox) [0x96955dc6]
                                      13 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 623 (HIToolbox) [0x96954e7e]
                                        13 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134 (HIToolbox) [0x9677f7b6]
                                          13 SendMenuItemSelectedEvent + 268 (HIToolbox) [0x9677f931]
                                            13 SendMenuCommandWithContextAndModifiers + 70 (HIToolbox) [0x9677f984]
                                              13 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 498 (HIToolbox) [0x9690886a]
                                                13 SendEventToEventTarget + 88 (HIToolbox) [0x967a3655]
                                                  13 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430 (HIToolbox) [0x9678f780]
                                                    13 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343 (HIToolbox) [0x96790394]
                                                      13 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36 (HIToolbox) [0x969089bb]
                                                        13 MenuLib::CreateAppMenu(MenuLib::MMLMenuType) + 3995 (MicrosoftMenuLibrary) [0x58d55b1]
                                                          13 MenuLib::Terminate() + 6691 (MicrosoftMenuLibrary) [0x58ec001]
                                                            13 MenuLib::TMenuItem::CallSelectionProcs(unsigned long) + 139 (MicrosoftMenuLibrary) [0x58e92af]
                                                              13 MenuLib::TMenuItem::CallSelectionProcs(unsigned long) + 1117 (MicrosoftMenuLibrary) [0x58e9681]
                                                                13 MsoFClonePxCore + 411 (MicrosoftComponentPlugin) [0x1c1dec9]
                                                                  13 MsoFClonePxCore + 465 (MicrosoftComponentPlugin) [0x1c1deff]
                                                                    13 MsoFClonePxCore + 578 (MicrosoftComponentPlugin) [0x1c1df70]
                                                                      13 MsoOSTypeDefaultMailClient + 136 (MicrosoftOffice) [0x1f0fb49]
                                                                        13 ??? (Microsoft Excel + 1198174) [0x15d85e]
                                                                          13 ??? (Microsoft Excel + 1204111) [0x15ef8f]
                                                                            13 ??? (Microsoft Excel + 3951960) [0x3fdd58]
                                                                              13 ??? (Microsoft Excel + 3950588) [0x3fd7fc]
                                                                                13 ??? (Microsoft Excel + 3948114) [0x3fce52]
                                                                                  13 ??? (Microsoft Excel + 3945633) [0x3fc4a1]
                                                                                    13 ??? (Microsoft Excel + 3927128) [0x3f7c58]
                                                                                       13 ??? (Microsoft Excel + 4066668) [0x419d6c]
                                                                                         13 ??? (Microsoft Excel + 4023313) [0x40f411]
                                                                                           13 ??? (Microsoft Excel + 11079243) [0xac9e4b]
                                                                                             13 ??? (Microsoft Excel + 11158222) [0xadd2ce]
                                                                                               13 ??? (Microsoft Excel + 15974718) [0xf7513e]
                                                                                                 13 ??? (Microsoft Excel + 413960) [0x9e108]
                                                                                                   13 ??? (Microsoft Excel + 414021) [0x9e145]
                                                                                                     13 ??? (Microsoft Excel + 392254) [0x98c3e]
                                                                                                       13 ??? (Microsoft Excel + 393378) [0x990a2]
                                                                                                         13 ??? (Microsoft Excel + 121477) [0x56a85]
                                                                                                           13 ??? (Microsoft Excel + 116129) [0x555a1]
                                                                                                             13 ??? (Microsoft Excel + 13863014) [0xd71866]
                                                                                                               13 ATSUFindFontFromName + 127 (mbukernel) [0x1a80542]
                                                                                                                 13 ATSUFindFontFromName + 257 (QD) [0x90c95188]
                                                                                                                   13 FOFindFontIDFromName + 105 (ATS) [0x99e871e3]
                                                                                                                     13 _eFOFindFontIDFromName + 141 (ATS) [0x99e574b6]
                                                                                                                       13 FindFontIDFromNameInternal + 101 (ATS) [0x99e5359a]
                                                                                                                         13 FindFontIDFromNameInternalCore(unsigned long, unsigned long const*, unsigned long, unsigned long, unsigned long, unsigned char*, unsigned long, unsigned long, unsigned long*, FontNameCacheNode*) + 974 (ATS) [0x99e53ae3]
                                                                                                                           13 SendFindFontIDFromNameMessage + 310 (ATS) [0x99e4d0f1]
                                                                                                                             13 SendFontManagementMessageWithMessageStatus + 333 (ATS) [0x99e47d2c]
                                                                                                                               13 ReconnectToATSServer(int, unsigned char, unsigned char) + 219 (ATS) [0x99e4cd74]
                                                                                                                                 13 NewHookUpWithATSServer(unsigned int, unsigned char) + 526 (ATS) [0x99e47b8a]
                                                                                                                                   13 RendezvousWithServer(unsigned long, char*) + 351 (ATS) [0x99e50170]
                                                                                                                                     13 SendFontManagementMessageWithMessageStatus + 191 (ATS) [0x99e47c9e]
                                                                                                                                       13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x99b887ce]
                                                                                                                                        *13 hndl_mach_scall + 225 (mach_kernel) [0xffffff80002cf221]
                                                                                                                                          *13 ??? (mach_kernel + 680942) [0xffffff80002a63ee]
                                                                                                                                            *13 mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff800021961b]
                                                                                                                                              *13 ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                                                                                                                                                *13 ipc_mqueue_send + 315 (mach_kernel) [0xffffff8000212ceb]
                                                                                                                                                  *13 thread_block_reason + 300 (mach_kernel) [0xffffff800022db9c]
                                                                                                                                                    *13 ??? (mach_kernel + 190673) [0xffffff800022e8d1]
                                                                                                                                                      *13 machine_switch_context + 366 (mach_kernel) [0xffffff80002b496e]
      Thread 0x10021f   DispatchQueue 1701273966 priority 48       
      13 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x912ec7a9]
        13 kevent + 10 (libsystem_kernel.dylib) [0x99b8b9ae]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x100223   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 MerpCreateSession + 5817 (merp) [0x294c7de]
            13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x99b887ce]
             *13 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x100229   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x10022a   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x10022b   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x10022c   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x10022d   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x10022e   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x10022f   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x100230   priority 46       
      13 thread_start + 34 (libsystem_c.dylib) [0x97664dce]
        13 _pthread_start + 344 (libsystem_c.dylib) [0x9767a5b7]
          13 PrivateMPEntryPoint + 68 (CarbonCore) [0x9185fa7b]
            13 MBUCreateThread(char const*, void*, void (*)(void*), MBUThreadID&, unsigned long) + 510 (mbukernel) [0x1a7b4e2]
              13 CreateThread + 1271 (WLMKernel) [0x4396142]
                13 ??? (Microsoft Excel + 89409) [0x4ed41]
                  13 WaitForSingleObject + 62 (WLMKernel) [0x4394154]
                    13 WaitForSingleObject + 382 (WLMKernel) [0x4394294]
                      13 WaitForSingleObject + 884 (WLMKernel) [0x439448a]
                        13 WaitForSingleObject + 1733 (WLMKernel) [0x43947db]
                          13 SetUsePBHOpenDenySync + 123 (WLMKernel) [0x4396eb2]
                            13 MBUEvent::WaitOnEvent(unsigned long) + 51 (mbukernel) [0x1a7b549]
                              13 MPWaitForEvent + 316 (CarbonCore) [0x9185edf8]
                                13 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9188c68e]
                                  13 TSWaitOnCondition + 128 (CarbonCore) [0x9188c492]
                                    13 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x97705089]
                                      13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x99b8a8e2]
                                       *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Thread 0x110114   priority 46       
      1 start_wqthread + 30 (libsystem_c.dylib) [0x97664daa]
        1 _pthread_wqthread + 448 (libsystem_c.dylib) [0x9767ce79]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x99b8b0ee]
           *1 ??? (mach_kernel + 3943920) [0xffffff80005c2df0]
      Binary Images:
                 0x39000 -          0x16c9ff3  com.microsoft.Excel 14.3.7 (14.3.7) <516DEDC2-D84A-8BB7-19D5-B1ED368BD67C> /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
               0x1a76000 -          0x1a8fff7  com.microsoft.mbukernel 14.3.7 (14.3.7) <A806C9F4-0364-00AF-BD88-93B451A95169> /Applications/Microsoft Office 2011/*/mbukernel.framework/Versions/14/mbukernel
               0x1bb1000 -          0x1de7ff3  com.microsoft.mcp 14.3.7 (14.3.7) <A05F5FA3-7666-9FD6-6619-86F3AC33AD45> /Applications/Microsoft Office 2011/*/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPlugin
               0x1ea5000 -          0x260ffef  com.microsoft.office 14.3.7 (14.3.7) <381C78DE-E85F-093D-37B9-D70AD4049240> /Applications/Microsoft Office 2011/*/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
               0x2948000 -          0x2955fff  com.microsoft.merp 2.2.4 (2.2.4) <17EF69E3-99BA-D7FD-CB68-17FA0E7409A9> /Applications/Microsoft Office 2011/*/merp.framework/Versions/14/merp
               0x438c000 -          0x43b9fe3  com.microsoft.wlmkernel 14.3.7 (14.3.7) <D1900C8C-81F1-196F-67F7-38136F868C57> /Applications/Microsoft Office 2011/*/WLMKernel.framework/Versions/14/WLMKernel
               0x58cf000 -          0x5919fef  com.microsoft.menulib 14.3.7 (14.3.7) <0486E3E6-9190-BAF3-B44E-9D76A9EC22A2> /Applications/Microsoft Office 2011/*/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
              0x90c28000 -         0x90cc8ff7  com.apple.QD 3.42.1 <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
              0x912e8000 -         0x912faff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
              0x917c9000 -         0x91aceff7  com.apple.CoreServices.CarbonCore 1037.6 (1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
              0x9675c000 -         0x96b3ffff  com.apple.HIToolbox 2.0 <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
              0x97664000 -         0x97721ffb  libsystem_c.dylib <A5C0B70C-5F14-3BF8-AA5B-B22E7B12A4AE> /usr/lib/system/libsystem_c.dylib
              0x99b76000 -         0x99b90ffc  libsystem_kernel.dylib <9B50E922-DCEA-3066-A9B2-613A6D2C5C69> /usr/lib/system/libsystem_kernel.dylib
              0x99e46000 -         0x99ebbff7  com.apple.ApplicationServices.ATS 332 <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         accountsd [10479]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [145]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1882 pages
      Thread 0xd0ae8    DispatchQueue 1          priority 31       
      13 start + 1 (libdyld.dylib) [0x7fff8ee757e1]
        13 ??? (accountsd + 3048) [0x10c2b4be8]
          13 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8d9080e2]
            13 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8d908916]
              13 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8d903233]
                13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e623686]
                 *13 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xd0af6    DispatchQueue 2          priority 33       
      13 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff874a69ee]
        13 kevent + 10 (libsystem_kernel.dylib) [0x7fff8e625d16]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Binary Images:
             0x10c2b4000 -        0x10c2b4fff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff874a2000 -     0x7fff874b7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8d8d3000 -     0x7fff8dabdff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ee73000 -     0x7fff8ee76ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         Adobe Photoshop CS6 [9901]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Architecture:    x86_64
    Parent:          launchd [145]
    UID:             501
    Task size:       486217 pages (+3)
    CPU Time:        0.002s
    Process:         AdobeCrashDaemon [9903]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDae mon.app/Contents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Photoshop CS6 [9901]
    UID:             501
    Task size:       1058 pages
    CPU Time:        0.005s
    Process:         AirPort Base Station Agent [11064]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [145]
    UID:             501
    Sudden Term:     Clean
    Task size:       560 pages
      Thread 0xe40bc    DispatchQueue 1          priority 31       
      13 ??? (AirPort Base Station Agent + 3064) [0x10fc65bf8]
        13 ??? (AirPort Base Station Agent + 70465) [0x10fc76341]
          13 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8d916dd1]
            13 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8d9080e2]
              13 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8d908916]
                13 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8d903233]
                  13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e623686]
                   *13 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xe40cb    DispatchQueue 2          priority 33       
      13 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff874a69ee]
        13 kevent + 10 (libsystem_kernel.dylib) [0x7fff8e625d16]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0xe4127    priority 31       
      13 thread_start + 13 (libsystem_c.dylib) [0x7fff8b2071a1]
        13 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8b21a772]
          13 __select + 10 (libsystem_kernel.dylib) [0x7fff8e625322]
           *13 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Thread 0xe4129    priority 31       
      13 thread_start + 13 (libsystem_c.dylib) [0x7fff8b2071a1]
        13 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8b21a772]
          13 ??? (AirPort Base Station Agent + 71512) [0x10fc76758]
            13 ??? (AirPort Base Station Agent + 10842) [0x10fc67a5a]
              13 ??? (AirPort Base Station Agent + 72265) [0x10fc76a49]
                13 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e6250fa]
                 *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005bdcb0]
      Binary Images:
             0x10fc65000 -        0x10fc7bff7  com.apple.AirPortBaseStationAgent 2.2 (220.2) <2CA1AE53-7CA0-30CF-99A9-5D2585BDFEF7> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff874a2000 -     0x7fff874b7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8b206000 -     0x7fff8b2d2ff7  libsystem_c.dylib <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8d8d3000 -     0x7fff8dabdff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         appleeventsd [74]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       966 pages
      Thread 0x300      DispatchQueue 2          priority 33       
      13 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff874a69ee]
        13 kevent + 10 (libsystem_kernel.dylib) [0x7fff8e625d16]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x301      DispatchQueue 7          priority 31       
      13 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff874a3d85]
        13 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e625566]
         *13 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x1081f0000 -        0x1081f0fff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
          0x7fff874a2000 -     0x7fff874b7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         AppleSpell [226]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [145]
    UID:             501
    Sudden Term:     Clean
    Task size:       2823 pages
      Thread 0xc35      DispatchQueue 1          priority 46       
      13 start + 1 (libdyld.dylib) [0x7fff8ee757e1]
        13 ??? (AppleSpell + 7271) [0x10433cc67]
          13 -[NSSpellServer run] + 73 (Foundation) [0x7fff893aeee6]
            13 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8d916dd1]
              13 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8d9080e2]
                13 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8d908916]
                  13 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8d903233]
                    13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e623686]
                     *13 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xc39      DispatchQueue 2          priority 48       
      13 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff874a69ee]
        13 kevent + 10 (libsystem_kernel.dylib) [0x7fff8e625d16]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Binary Images:
             0x10433b000 -        0x1043f0ff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff874a2000 -     0x7fff874b7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8922c000 -     0x7fff8958bfff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d8d3000 -     0x7fff8dabdff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ee73000 -     0x7fff8ee76ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         apsd [186]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2684 pages
      Thread 0x7c0      DispatchQueue 1          priority 31       
      13 start + 1 (libdyld.dylib) [0x7fff8ee757e1]
        13 ??? (apsd + 21686) [0x10fd0f4b6]
          13 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff892601aa]
            13 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff892c77ee]
              13 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8d9080e2]
                13 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8d908916]
                  13 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8d903233]
                    13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e623686]
                     *13 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x7f5      DispatchQueue 2          priority 33       
      13 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff874a69ee]
        13 kevent + 10 (libsystem_kernel.dylib) [0x7fff8e625d16]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x901      priority 63       
      13 thread_start + 13 (libsystem_c.dylib) [0x7fff8b2071a1]
        13 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8b21a772]
          13 __NSThread__main__ + 1345 (Foundation) [0x7fff892c2562]
            13 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89264546]
              13 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8d9080e2]
                13 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8d908916]
                  13 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8d903233]
                    13 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e623686]
                     *13 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xe6a7     priority 31       
      13 thread_start + 13 (libsystem_c.dylib) [0x7fff8b2071a1]
        13 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8b21a772]
          13 __select + 10 (libsystem_kernel.dylib) [0x7fff8e625322]
           *13 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x10fd0a000 -        0x10fd88ff7  apsd <79FEFFFF-D855-3F06-BF98-C24F741AB4E7> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff874a2000 -     0x7fff874b7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8922c000 -     0x7fff8958bfff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b206000 -     0x7fff8b2d2ff7  libsystem_c.dylib <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8d8d3000 -     0x7fff8dabdff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ee73000 -     0x7fff8ee76ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         autofsd [79]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       539 pages
      Thread 0x2cb      DispatchQueue 2          priority 33       
      13 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff874a69ee]
        13 kevent + 10 (libsystem_kernel.dylib) [0x7fff8e625d16]
         *13 ??? (mach_kernel + 3504704) [0xffffff8000557a40]
      Thread 0x2cc      DispatchQueue 7          priority 31       
      13 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff874a3d85]
        13 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e625566]
         *13 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x10e0e0000 -        0x10e0e1fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff874a2000 -     0x7fff874b7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         Babylon Activation [265]
    Path:            /Library/Application Support/Babylon/Babylon Activation.app/Contents/MacOS/Babylon Activation
    Architecture:    i386
    Parent:          launchd [145]
    UID:             501
    Task size:       3231 pages
    Process:         bash [268]
    Path:            /bin/bash
    Architecture:    x86_64
    Parent:          launchd [145]
    UID:             501
    Task size:       218 pages
      Thread 0x1691     priority 31       
      13 start + 1 (libdyld.dylib) [0x7fff8ee757e1]
        13 ??? (bash + 10713) [0x10050b9d9]
          13 ??? (bash + 117763) [0x100525c03]
            13 ??? (bash + 118794) [0x10052600a]
              13 ??? (bash + 123820) [0x1005273ac]
                13 ??? (bash + 156876) [0x10052f4cc]
                  13 __wait4 + 10 (libsystem_kernel.dylib) [0x7fff8e62569a]
                   *13 ??? (mach_kernel + 3613728) [0xffffff8000572420]
      Binary Images:
             0x100509000 -        0x10059ffff  bash <B3CE4882-ACE3-35E9-A5CC-6436AD7D504E> /bin/bash
          0x7fff8e613000 -     0x7fff8e62eff7  libsystem_kernel.dylib <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ee73000 -     0x7fff8ee76ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000741d0c  mach_kernel <EA38B02E-2B88-309F-BA68-1DE29F605DD8> /mach_kernel
    Process:         blued [77]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1257 pages
      Thread 0x1f5      DispatchQueue 1          priority 31       
      13 start + 1 (libdyld.dylib) [0x7fff8ee757e1]
        13 ??? (blued + 91142) [0x107e98406]
          13 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff892601aa]
            13 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff892c77ee]
              13 CFRunLoopRunSpecific + 290 (CoreFoundation

  • Cannot Launch Microsoft or third-party applications!

    I am not sure exactly what happened (I think the problem started after some automatic update)...but now I cannot launch Microsoft Office, AIM, or any non-apple applications. I click on the icon on the dock, the icon bounces once, and then nothing happens. I have tried creating new user accounts, and uninstalling and reinstalling the programs, but again, the same thing happens...it will not launch. Is there anything I can do..I'm desperate!
    Thanks.

    I am having the same problem...and I am pretty sure it happened when I update Office for Mac...because after the update I could not get any office application to start, so I uninstalled then tried to reinstall but was unable to do so. Somehow Zinio also got fouled, and now I can not get/read any of my online magazines. Any help would be very much appreciated! I keep my Mac (17 mbp) completely up to date by running software update weekly, so am not sure that comboupdate will work. Help!?

  • Mac crashed and now upon restart I cannot launch any applications. When I try to, I just get the colorful pinwheel spinning, spinning, spinning...

    mac crashed and now upon restart I cannot launch any applications. When I try to, I just get the colorful pinwheel spinning, spinning, spinning...

    Troubleshoot the spinning beach ball

  • Cannot Launch Java Application

    I have installed Leopard on my PowerBook and everything seems to be working ok - except I receive an error message box on my screen - Titled Cannot Launch Java Application and in the box it says
    "Uncaught exception in main
    method:java.lang.NoSuchMethodError:javax.security.sasl.Sasl.setSasIServerFactory (Ljavax/security/sasl/SasIServerFactor;)V" I click the quit button and the message goes away for a minute and pops back up.
    I am not aware of any Java Application that is running. In fact it is always on the screen - even when no application is running. I have repaired permissions and restarted several times. It won't go away. It doesn't seem to interfere with anything - it's just annoying to have it always on my desk top. Anyone have any suggestions or experience this problem.
    Jane

    After seeing everyone's responses here, it's pretty clear that there's little rhyme or reason to our fixes.
    If mine worked, it wouldn't have come back.
    If the font thing worked, it would've worked for me (it didn't).
    If any of these worked, Jane's would be fixed (I'm assuming it isn't, yet...).
    Sounds like a Leopard glitch. Or, we're all running a certain program, my guess is most likely that start at startup, and that's triggering the thing.
    My computer starts up with Butler, Quicksilver, and Yojimbo this whole time. Anyone else?
    In the meantime, I'm going to shut these off and see if it still happens.

  • I cannot launch an application.

    I cannot launch the Reason application.  I get the message:   "The operation could not be completed because the device denied access."  I have used disk utilities to do permissions repair, but that did not solve it.  Any suggestions?

    Reason is not an Apple Application, if this is the only app that will not launch I'd recommend contacting the developer for assistance.

  • After a download update 4.0, I cannot launch. Message says I need to reboot to complete a previous update. I rebooted 5 times to no avail. What now?

    After a download update 4.0, I cannot launch. Message says I need to reboot to complete a previous update. I rebooted 5 times to no avail.I have tried searching for xpicleanup.dat to no avail as suggested. What now?

    I was able to get live chat support to solve the problem in my post. It worked immediately. Here is what I was told to do. I needed to perform a clean installation Hopefully, it will work for you, too.
    "To perform a clean installation, first close Firefox completely. (This chat window
    must be closed if it's in Firefox) Then, rename "Mozilla Firefox" to "Old Firefox".
    (On 32-bit Windows, this is C:\Program Files\. On x64 Windows, this is
    "C:\Program Files (x86)". On Mac, Firefox is in /Applications) Finally, re-install
    Firefox normally from http://www.firefox.com"
    Since I had already downloaded 4.0, I just went to my download file after renaming the file and ran it.

  • SGD - Fails to launch applications

    We are having a problem with SGD - we can not launch applications.
    We have SGD 4.2 running on a Solaris 10 server.
    We had SGD up and running good. However, we had several things occur and now it does not work. First we had to relocate our server due to building renovations. Then shortly after setting up the system in the new location, we had a hard drive fail. And unfortunately the sys admin guys did not have a good/current backup of the drive. We did however reload a backup that was about 9-months old. However it does not work correctly now.
    We can bring up the main SGD web page, can login to the system, and see the applications and function set up in object manager. However when we try to launch an application it fails.
    Looking in the error.log file we see a message "failed to open display"
    However we can not see how SGD sets the display to enable the application to be viewed over the web connection.
    Any help would be greatly appreciated.
    Thanks,
    Mike

    It is a good thing to have as much help as possible. One of the other SAs working on the problem entered his google search a little different and came up with this hit: (http://blogs.sun.com/malhar/entry/sun_secure_global_desktop_tarantella -- text below) that fixed our problem. Thought I would post it here for the next person who runs into the same problem.
    Sun Secure Global Desktop (Tarantella) "DISPLAY variable not set" error message?
    If you've been facing a problem with the erstwhile Tarantella, now Sun Secure Global Desktop (SGD), where you get don't see X applications opening up when you click the link, you're in luck.
    I have the solution.
    If you are fast enough to click on the "Show Details" button before the application loading window opens and then closes, you will see in the logs that the application cannot open because it finds that the DISPLAY variable is not set.
    Also, if you read the documentation, you will see that the admin guide explicitly asks you to NOT set the DISPLAY variable which gets set automatically. So where's the problem?
    What you need to do is this:
    1. Open the /etc/rc.d/init.d/Tarantella script in your favourite text editor
    2. Look for TTASSHCLIENT (this is usually commented out)
    You will notice that the line will look something like this
    #TTASSHCLIENT="";export TTASSHCLIENT
    3. Uncomment the line
    4. Add /usr/bin/ssh -X inside the quotes on the line to make the line look like this
    TTASSHCLIENT="/usr/bin/ssh -X";export TTASSHCLIENT
    And restart!
    That's it. You're problem is solved. I accept your thank yous in advance
    Posted at 06:23PM Dec 11, 2006 by malhar in General |
    Thanks again

  • Launch Application Error in PC Suite in XP Laptop

    Hi
    I can download PC suite onto Windows XP laptop and use all its functionality with my 6230 phone
    But when I end my laptop session and logout I cannot use any of the functionality when log back into my laptop
    Get launch application error
    When I download PC suite again , all functionality restored but lost again when logout of laptop

    Hi,
    I think that problem can be releated to internet connection so could you try to start Launch Application when you have internet connection open and also when you do not have disconnected from net. Does problem happen in both cases?
    Anyway, I would be nice to get some log files from Launch application....(then I can try to find reason for this problem)
    If you can take those log files, do this:
    1. Go to ttp://www.sysinternals.com/Utilities/Filemon.html and download Filemon (it is end of the page).
    2. Start FileMon.exe and click 'Options', 'Filter/Highlight..' and set string: *Launc* to 'Include' option.
    3. Go to http://www.sysinternals.com/Utilities/Regmon.html and download Regmon (it is end of the page).
    4. Start RegMon.exe and click 'Options', 'Filter/Highlight..' and set string: *Launc* to 'Include' option.
    5. Start "Launch Application" manually and when you get that error message, save logs from both applications and attach those log files to your response.

Maybe you are looking for