BI Apps Architecture.

Can we have infomatica Server/ Client and DAC server/client in same host?
Regards
Rajagopal

I wil say you have only two instances one is UAT and another is PROD.
Another option would be first pointing your DEV instance do a data load and then point to UAT and then do data load.
In that way you can reduce one set up hardware's.
But its entirely depends on how much hardware your comp/client procure and also on your decision on having 2 or 3 sets of environment.
Mark correct or helpfull if it helps,
Regards,
Veeresh Rayan

Similar Messages

  • Can't Open Any Apps: "architecture not supported"

    I'm using Snow Leopard on my Intel MBP, but keep handy a clone from a couple years ago on an external hard drive....in case I need to boot from another drive for diagnosis/repair.
    The clone on the external is from OS 10.5.7. And whenever I try to launch any apps (including native Mac ones like Safari....which are the versions that were on disk when I cloned) on that drive, I get "can't open; architecture not supported".
    I've tried adjusting an app's permissions to let me read/write/own,  renaming, and copying the apps.....but they won't open.
    Any ideas?
    I'll note that I'm trying to launch apps that were cloned at the time I was running OS 10.5.7. I'm not trying to launch apps from my internal drive.

    Unless you cloned a working Snow Leopard installation, which unless I'm misunderstanding you did not - you said you cloned 10.5 - then again you probably do not have the Rosetta environment installed. It won't matter that you have 10.5 on the external disk and that the applications are on that drive unless you boot from that drive. Nor will it matter that you cloned a 10.5 drive to your internal when you then upgrade to 10.6; the Rosetta environment does not carry over from 10.5 automatically when you upgrade to 10.6.
    Again, try installing Rosetta per the instructions to which I linked.
    Regards.

  • Dynamic app architecture

    I have application that displays customer data in the table form. I don’t know the data structure in advance, so I came up with the following architecture:
    I have report.jsp page that include reporttable.jsp or custom reportable.jsp
    report.jsp
            <f:subview id="invTable">
                 <jsp:include page="#{reportBean.tableJsp}"/>
            </f:subview>
    ...tableJsp string is pointed to /reporttable.jsp or /customer1/reporttable.jsp depending on the customer needs.
    reporttable.jsp
            <h:dataTable  id="tableData" value="#{reportBean.reportData}" var="rpt" >
           <c:forEach items="#{reportBean.columnNames}" var="name">
                <h:column>
               <f:facet name="header">
                    <h:outputText value="#{name}" />
                  </f:facet>
               <h:outputText value="#{rpt[name]}"/>
             </h:column>
           </c:forEach>
            </h:dataTable>
    ...For the customer that need something different I create customer1Bean that will return customized reportDate
    /customer1/reportable.jsp
    It maybe different from the generic jsp, but also can be almost the same except the bean it calls
            <h:dataTable  id="tableData" value="#{customer1Bean.reportData}" var="rpt" >
    ...I am wondering, if there is a way to call correct bean dynamically, so I don’t have to duplicate pages if they are the same.
    I would appreciate any suggestions.
    Irina.

    Thank you, <af:switcher> will work, but a lot of code need to be duplicated.
    If I have 10 customers that need to have something special in reportData I will need to duplicate table and whatever else needed 10 times when I need different reportBean.
    <af:switcher facetName="#{userData.custName}" defaultFacet="default">
    <f:facet name="default">
            <h:dataTable  id="tableData" value="#{reportBean.reportData}" var="rpt" >
           <c:forEach items="#{reportBean.columnNames}" var="name">
                <h:column>
               <f:facet name="header">
                    <h:outputText value="#{name}" />
                  </f:facet>
               <h:outputText value="#{rpt[name]}"/>
             </h:column>
           </c:forEach>
            </h:dataTable>
    </f:facet >
    <f:facet name="customer1">
            <h:dataTable  id="tableData" value="#{customer1.reportData}" var="rpt" >
           <c:forEach items="#{customer1.columnNames}" var="name">
                <h:column>
               <f:facet name="header">
                    <h:outputText value="#{name}" />
                  </f:facet>
               <h:outputText value="#{rpt[name]}"/>
             </h:column>
           </c:forEach>
            </h:dataTable>
    </f:facet >
    <f:facet name="customer2">
            <h:dataTable  id="tableData" value="#{customer2.reportData}" var="rpt" >
           <c:forEach items="#{customer2.columnNames}" var="name">
                <h:column>
               <f:facet name="header">
                    <h:outputText value="#{name}" />
                  </f:facet>
               <h:outputText value="#{rpt[name]}"/>
             </h:column>
           </c:forEach>
            </h:dataTable>
    </f:facet >
    </af:switcher>Solution that I have so far is (may not be the best):
    in Class Customer I initialized reportBean based on customer name
            if(custName.equals("customer1"))
                reportBean = new Customer1Bean(reportMenuSel);
            else if(custName.equals("customer2"))
                reportBean = new Customer2Bean(reportMenuSel);
            else
                reportBean = new ReportBean(reportMenuSel);
    ..Customer1Bean extends ReportBean
    In jsp page I called cust.reportBean.reportData which gave me an access to correct reportData without duplicating jsp code.
            <h:dataTable  id="tableData" value="#{cust.reportBean.reportData}" var="rpt" >
           <c:forEach items="#{ cust.reportBean.columnNames}" var="name">
                <h:column>
               <f:facet name="header">
                    <h:outputText value="#{name}" />
                  </f:facet>
               <h:outputText value="#{rpt[name]}"/>
             </h:column>
           </c:forEach>
            </h:dataTable>
    ...Irina.

  • Generate File in two node apps architecture.

    Hi All,
    We have two node apps environment. Node 1: Database Tier and Node 2 Application Tier. APPL_TOP is not shared.
    We want to generate a file from database (says payment batch) and transfer this file to another server for sending to bank
    Currently we are using a database procedure called from concurrent request to generate the file and is generated in the utl_file directory which is on database server. The same concurrent request will do the file transfer, but sincne the file is generated in the database server the scripts in the apps tier will not be able to see it. We are not intended to use SFTP or NFS. So how can we do this using standard oracle apps method?
    Thanks

    thanks for the update.
    One option in my mind is to call anonymous pl/sql script on apps tier from concurrent program and spool the output.
    What you think?

  • What is the Standard Syllabus for Oracle Apps Technical

    Dear Members I have studied Oracle Apps Technical 11i in this First I learned
    SQL ( Different Languages like DDL, DML, DCL, TCL, DQL, Operator, Functions, Constraints, Joins, Sub Queries, Locks on Tables, Synonyms, Sequences, Index, Views)
    PL/SQL (Pl/Sql Attributes, Control Statements (If, If Else, else if, Loop, for loop) Exceptions, Cursor & its attributes (normal Parameter cursor, Ref cursor), Procedures( In, Out, IN and Out, IN OUT), Functions ( In, Out, IN OUt), Packages, Triggers
    SQL* Loader, UTL File Packages,
    Oracle Apps Technical
    Introductions to ERP ( definition of ERP, overview of popular ERP's, comparision of oracle apps with other ERP's, types of roles, types of projects, AIM documentations Standard, Oracles Apps Architecture, Using Toad),
    AOL ( Who Columns, viewing responsibilities, menu construction) ,
    Application Development( Defining concurrent programs, concurrent program with parameters, working with multiple concurrent programs, concurrent programs incompatibilities, creating request set procedure registrations, value set) ,
    Report Registration( Report development, report registration, parametric report registration, report with repeating frames),
    Module Overview( Inventory Module flow with base tables, account payable module flow with base tables, account receivable module with base tables, order management module with base tables, pruchase order module with base tables, General ledger with base tables),
    Forms Registration ( pll files Downloading,Template FMB, Form Development using Templates, Form Registration process, ),
    Interfaces ( Intro to interfaces, outbound interafaces - Using Utl file package, Inbound interfaces Using Sql Loader tool),
    Conversions ( Overview on conversions, differences between interfaces and conversions, working with staging tables script, developing validation package, standard to be follow in conversions),
    Flex Fields( Types of Flex Fields, Description Flex Fields, Key Flex Fields),
    XML Publisher (Intro to XML Publisher, Generating XML File Using Report, Creating Templates, Creating Data Definitions
    I have learned only Inventory Module in Conversion, Interfaces, Reports, Forms ( other module like application developer, system administrator, XML Publisher)
    I have learned Item Import Project In Conversions, On Hand Quantity In Interfaces, Stock Expiration Report using Reports, XML Publisher)
    Why i Got this doubt because I attend interview they were asking different questions like this which My faculty didn't teach
    What are the receipt tables?
    What is invoice table name?
    API Name for conversion
    What is external table
    What is Pragma
    How many types of item available
    Mutating error
    P2P cycle
    is all the above belongs to apps Technical only I asked my faculty he said its functional who is correct faculty or interviewer
    Please help me in this regard
    Edited by: 969372 on Feb 1, 2013 12:22 PM
    Edited by: 969372 on Feb 1, 2013 12:22 PM

    Hi,
    Why i Got this doubt because I attend interview they were asking different questions like this which My faculty didn't teach
    What are the receipt tables?
    What is invoice table name?
    API Name for conversion
    What is external table
    What is Pragma
    How many types of item available
    Mutating error
    P2P cycle
    is all the above belongs to apps Technical only I asked my faculty he said its functional who is correct faculty or interviewer
    Please help me in this regardWhat all you have studied is basics. And in the institutes they only teach you 5% of actual work, Yes only 5%. They can not teach the whole 5 years learning just in few classes.
    In real time When you are working as a technical consultant, you get to speak to functional consultants a lot of time for developing reports, customization, creating custom forms.... So thats why the interviewer has asked a mixture of both technical and functional.
    The questions they asked also depends on the number of years experience you have in the resume ;).
    How ever you can gain more knowledge from blogs and forums like this.
    I will point you to few of them
    Your first step should be reading all the documents related to technical filed from the following link.
    http://docs.oracle.com/cd/B53825_08/current/html/docset.html
    Then read atleast 10 to 15 real time issues related to your field from forums like this.
    and read posts from oracle apps technical gurus like Anil Passi,
    http://oracle.anilpassi.com/basic-concepts-list-of-useful-oracle-apps-articles-2.html
    and links to all the technical blogs can be found at
    http://oracleappsexperience.blogspot.com/2010/02/my-favourite-links.html
    Best of luck and you will get a job soon.
    Thanks

  • Oracle_Id APPS or CUSTOM data schema...???

    Hi,
    I have a question about the Metalink Note: 70276.1.
    At point 5 , it is written the following:
    "It is recommended that you use the STANDARD datagroup and pair the custom schema with APPS or you can add a new data group. This depends upon your own requirements."
    I'm going to create a custom application and following the EBS directives , i'll create the tables,seqs,indexes to the CUSTOM schema whereas the views,packages,procs,funcs,synonyms to the APPS schema.
    According to the above Note , what may be the differences between selecting CUSTOM as ORACLE_ID and APPS...and which changes to the app architecture - regarding the db schema of both CUSTOM,APPS schema - should be done (if any...)???
    Many thanks ,
    Sim

    Sim,
    The standard way is to use apps as an Oracle ID when adding a custom schema to a data group. The custom application will use this Oracle ID (i.e. apps) to connect to the tables in the database. By default, apps user has select any table privilege and that is why is recommended to use the apps account. Adding a new data group requires giving more privileges to you custom user to allow access to tables in other schemas.
    In addition, I would suggest you refer to this note since you are on 11i.
    Note: 176852.1 - Integrating Custom Applications with Oracle Applications Release 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=176852.1

  • Please help - Oracle Apps related

    Hello,
    First of all I’m really sorry if I’ve posted this question on wrong thread. I am unable to get any category related to Oracle Apps.
    If there is any particular thread concerned to Oracle Apps then please let me know.
    My senior has asked me few question related to oracle application:-
    Q1 – What happens when we connect Oracle Apps through URL . How the URL connects it to apps. What are all background process to do so . Names with their workings. (Start level from the first login page)
    Q2 – What are JSP, APACHE & HTML in Oracle. How do jsp, apache and html pages related to oracle apps connection. How do they work.
    Q3 – What happens if the oracle apps page is not connecting, hangs or shows blank screen. How will you solve the same.
    Q4 – what are in folder 10.1.2 and 10.1.3. What are they meant for and how do they work.
    Q5 – What is the difference between Oracle home for 10g RDBMS / oAS 10.1.2 ORACLE HOME / oAS 10.1.3 ORACLE HOME and their contents.
    Q6 – What are in Instance top and their uses.
    Q7 – Complete Oracle apps architecture and its complete descriptions with workings.
    I will be very grateful for any help in this case.
    Regards

    Hi;
    Q1 – What happens when we connect Oracle Apps through URL . How the URL connects it to apps. What are all background process to do so . Names with their workings. (Start level from the first login page)Check below threads:
    Full cycle ...
    Re: Full cycle ...
    Q2 – What are JSP, APACHE & HTML in Oracle. How do jsp, apache and html pages related to oracle apps connection. How do they work.You need to read concept guide:
    tüm notlar2
    For r12.1.1:
    http://download.oracle.com/docs/cd/B53825_01/current/html/docset.html
    For r12:
    http://download.oracle.com/docs/cd/B40089_10/current/html/docset.html
    For r11:
    http://download.oracle.com/docs/cd/A60725_05/r11_doc.htm
    Q3 – What happens if the oracle apps page is not connecting, hangs or shows blank screen. How will you solve the same.You need to check apache log file or you should check apache and other service up &running. If not you need to check apache log files
    Q4 – what are in folder 10.1.2 and 10.1.3. What are they meant for and how do they work.Check concept guide
    Q5 – What is the difference between Oracle home for 10g RDBMS / oAS 10.1.2 ORACLE HOME / oAS 10.1.3 ORACLE HOME and their contents.There are 3 homes in EBS. Check concept guide :)
    Q6 – What are in Instance top and their uses.Check concept guide :)
    Q7 – Complete Oracle apps architecture and its complete descriptions with workings.Check concept guide :)
    As you can see You need to start to read concept guide. All your question answer is there. I can answer your question but it will not help you. If you inerested to become app dba you must know concept, component of ebs and their relation. Those topic cover in concept guide
    Read first. If you have still question than update thread ;)
    Regard
    Helios

  • Oracle fusion apps dba

    Hi
    it was said that next year there will not be oracle apps dba and oracle apps fusion dba is going to be there and we may have to start the preparation for oracle fusion
    how does the oracle fusion going to bring the change in the career of oracle apps dba
    does there will be any major change? if so which areas should i concentrate
    i heard that there will be a change in the oracle apps architecture and also there will be change in the oracle apps architectue
    Pls give your suggestion on this
    -Aram

    Aram,
    Please see these links:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Oracle+AND+Fusion&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Glimpses of E-Business Suite 12.2: WebLogic Server and Online Patching
    http://blogs.oracle.com/stevenChan/entry/glimpses_of_e_business_suite
    Oracle WebLogic Server Product Documentation
    http://www.oracle.com/technetwork/middleware/weblogic/documentation/index.html
    Oracle® WebLogic Server 10g Release 3 (10.3)
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/
    Oracle WebLogic Server
    http://www.oracle.com/technetwork/middleware/weblogic/overview/index.html
    Thanks,
    Hussein

  • Safari will not open.  Just bounces in the dock and then I force quit it.

    This is the report I got after force quitting it.  Note that I have received a different one on a prior force quit. Not sure if that is common.  Any help would be greatly appreciated!
    Date/Time:       2011-11-13 11:02:28 -0800
    OS Version:      10.7.2 (Build 11C74)
    Architecture:    x86_64
    Report Version:  9
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         5.1.1 (7534.51.22)
    Build Version:   3
    Project Name:    WebBrowser
    Source Version:  7534051022000000
    Parent:          launchd [136]
    PID:             244
    Event:           hang
    Duration:        0.92s
    Steps:           10 (100ms sampling interval)
    Pageins:         8
    Pageouts:        0
    Process:         Safari [244]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    UID:             501
      Thread 0x94c        DispatchQueue 1
      User stack:
        10 ??? (in Safari) [0x10a399f24]
          10 SafariMain + 197 (in Safari) [0x7fff82900ffb]
            10 NSApplicationMain + 398 (in AppKit) [0x7fff87131637]
              10 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364 (in AppKit) [0x7fff86ebd886]
                10 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141 (in AppKit) [0x7fff86ebd943]
                  10 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217 (in AppKit) [0x7fff86ebda28]
                    10 loadNib + 322 (in AppKit) [0x7fff86ebe52f]
                      10 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245 (in AppKit) [0x7fff86ec7f9b]
                        10 -[NSSet makeObjectsPerformSelector:] + 274 (in CoreFoundation) [0x7fff8564a262]
                          10 -[NSObject performSelector:] + 49 (in CoreFoundation) [0x7fff8564a2e1]
                            10 -[AppController awakeFromNib] + 1288 (in Safari) [0x7fff82708045]
                              10 Safari::ExtensionsController::reloadAllExtensions() + 54 (in Safari) [0x7fff8282e9e2]
                                10 Safari::ExtensionsController::loadInstalledExtensions() + 287 (in Safari) [0x7fff8282de9d]
                                  10 Safari::ExtensionsController::extensionFromDictionaryRepresentation(Safari::CF: :Dictionary const&, bool&) + 291 (in Safari) [0x7fff8282ced7]
                                    10 Safari::ExtensionExtractor::extractExtension(Safari::SURL const&, Safari::ExtensionExtractorClient&, Safari::ExtensionExtractor::CertificateRevocationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 69 (in Safari) [0x7fff82823937]
                                      10 Safari::ExtensionExtractor::ExtensionExtractor(Safari::SURL const&, Safari::ExtensionExtractor::CertificateRevocationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 186 (in Safari) [0x7fff82825544]
                                        10 Safari::ExtensionExtractor::verify(Safari::ExtensionExtractor::CertificateRevoc ationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 504 (in Safari) [0x7fff82824246]
                                          10 Safari::Certificate::isValidDeveloperCertificate(double, Safari::Certificate const*) const + 214 (in Safari) [0x7fff827ce072]
                                            10 Safari::Certificate::evaluateAppleIssuedCertificateChain(double, Safari::Certificate const*, Safari::Certificate::EvaluationFlags) const + 416 (in Safari) [0x7fff827ce692]
                                              10 SecTrustEvaluate + 49 (in Security) [0x7fff85308bb7]
                                                10 Security::KeychainCore::Trust::evaluate(bool) + 2086 (in Security) [0x7fff853094e0]
                                                  10 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 133 (in Security) [0x7fff8530f18b]
                                                    10 CSSM_TP_CertGroupVerify + 111 (in Security) [0x7fff8530f92b]
                                                      10 _ZL20cssm_CertGroupVerifylllPK14cssm_certgroupPK22cssm_tp_verify_contextP29cssm _tp_verify_context_result + 129 (in Security) [0x7fff8530fb51]
                                                        10 AppleTPSession::CertGroupVerify(long, long, cssm_certgroup const&, cssm_tp_verify_context const*, cssm_tp_verify_context_result*) + 3262 (in Security) [0x7fff853108ba]
                                                          10 tpVerifyCertGroupWithOCSP + 3250 (in Security) [0x7fff8531ecb2]
                                                            10 ocspdFetch + 108 (in Security) [0x7fff85320d7c]
                                                              10 ocsp_client_ocspdFetch + 157 (in Security) [0x7fff85321267]
                                                                10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          10 thread_set_child + 336 (in mach_kernel) [0xffffff80002ae8a0]
            10 mach_msg_overwrite_trap + 184 (in mach_kernel) [0xffffff800021bb58]
              10 ipc_kmsg_send + 416 (in mach_kernel) [0xffffff8000214960]
                10 ipc_mqueue_send + 306 (in mach_kernel) [0xffffff8000215cf2]
                  10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                    10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                      10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x952        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x955      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9 (in WebCore) [0x7fff860560cb]
              10 WebCore::IconDatabase::iconDatabaseSyncThread() + 489 (in WebCore) [0x7fff860562bd]
                10 WebCore::IconDatabase::syncThreadMainLoop() + 375 (in WebCore) [0x7fff860588e5]
                  10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff88bacbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x957      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 thread_fun + 24 (in QuartzCore) [0x7fff830b94a9]
              10 CA::Render::Server::server_thread(void*) + 184 (in QuartzCore) [0x7fff830b9569]
                10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x985      
      User stack:
        10 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8bc41b85]
          10 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff88bad192]
      Kernel stack:
        10 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Thread 0x986      
      User stack:
        10 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8bc41b85]
          10 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff88bad192]
      Kernel stack:
        10 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Binary Images:
             0x10a399000 -        0x10a399fff  com.apple.Safari 5.1.1 (7534.51.22) <8DB30E4C-22B6-3BCE-A6E7-580F13B8903D> /Applications/Safari.app/Contents/MacOS/Safari
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff826f4000 -     0x7fff82b83ff7  com.apple.Safari.framework 7534 (7534.51.22) <CD187BAF-2088-32CF-BCD3-E4057351A821> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
          0x7fff830b7000 -     0x7fff83256fff  com.apple.QuartzCore 1.7 (270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
          0x7fff852d6000 -     0x7fff855aeff7  com.apple.security 7.0 (55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff855af000 -     0x7fff85783fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86052000 -     0x7fff86d58fef  com.apple.WebCore 7534.51 (7534.51.22) <352D30ED-1D1D-390E-B7CB-18E954485FD3> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
          0x7fff86ead000 -     0x7fff87aaeff7  com.apple.AppKit 6.7.2 (1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         AirPort Base Station Agent [208]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x73c        DispatchQueue 1
      User stack:
        10 ??? (in AirPort Base Station Agent) [0x1011f7654]
          10 ??? (in AirPort Base Station Agent) [0x101208353]
            10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff855f77ff]
              10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff855e82d4]
                  10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff855dfb6c]
                    10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x750        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x753      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 __select + 10 (in libsystem_kernel.dylib) [0x7fff88bacdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x1011f6000 -        0x10120dfff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <4B2DADB0-223B-32AA-9438-30FBEA0A8FE6> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff855af000 -     0x7fff85783fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         aosnotifyd [82]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    UID:             0
      Thread 0x207        DispatchQueue 1
      User stack:
        10 start + 52 (in aosnotifyd) [0x10c8980bc]
          10 main + 74 (in aosnotifyd) [0x10c89f9f4]
            10 -[AOSNotificationDaemon startup] + 1294 (in aosnotifyd) [0x10c89f7bb]
              10 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8c75104f]
                10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                  10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff855e82d4]
                    10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff855dfb6c]
                      10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x309        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x3cd      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 __NSThread__main__ + 1575 (in Foundation) [0x7fff8c79f776]
              10 -[NSThread main] + 68 (in Foundation) [0x7fff8c79f7fe]
                10 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8c7ab0ab]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                    10 __CFRunLoopRun + 905 (in CoreFoundation) [0x7fff855e81a9]
                      10 __CFRunLoopDoSources0 + 253 (in CoreFoundation) [0x7fff855c13bd]
                        10 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (in CoreFoundation) [0x7fff855c1b51]
                          10 MultiplexerSource::perform() + 212 (in CFNetwork) [0x7fff8b19aca2]
                            10 URLConnectionLoader::processEvents() + 111 (in CFNetwork) [0x7fff8b19fc11]
                              10 URLConnectionLoader::LoaderConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XLoaderEvent, XLoaderEventParams>*, long) + 547 (in CFNetwork) [0x7fff8b27167b]
                                10 URLConnectionLoader::loaderUseCredential(_CFURLCredential const*) + 139 (in CFNetwork) [0x7fff8b1b4f61]
                                  10 HTTPProtocol::useCredential(_CFURLCredential const*, _CFURLAuthChallenge*) + 123 (in CFNetwork) [0x7fff8b1b5045]
                                    10 CFReadStreamSetProperty + 180 (in CoreFoundation) [0x7fff856568c4]
                                      10 CFNetworkReadStream::httpStreamSetProperty(__CFReadStream*, __CFString const*, void const*, void*) + 26 (in CFNetwork) [0x7fff8b1aa7b8]
                                        10 non-virtual thunk to HTTPNetStreamInfo::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 13 (in CFNetwork) [0x7fff8b1abd20]
                                          10 HTTPNetStreamInfo::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 366 (in CFNetwork) [0x7fff8b1abe94]
                                            10 CFReadStreamSetProperty + 180 (in CoreFoundation) [0x7fff856568c4]
                                              10 CFNetworkReadStream::httpStreamSetProperty(__CFReadStream*, __CFString const*, void const*, void*) + 26 (in CFNetwork) [0x7fff8b1aa7b8]
                                                10 non-virtual thunk to HTTPReadFilter::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 13 (in CFNetwork) [0x7fff8b1aa7cc]
                                                  10 HTTPReadFilter::streamSetProperty(__CFReadStream*, __CFString const*, void const*) + 266 (in CFNetwork) [0x7fff8b1aa8dc]
                                                    10 CFReadStreamSetProperty + 180 (in CoreFoundation) [0x7fff856568c4]
                                                      10 ReadStreamCallbacks::_setProperty(__CFReadStream*, __CFString const*, void const*, void*) + 45 (in CFNetwork) [0x7fff8b1a938f]
                                                        10 virtual thunk to SocketStream::setProperty(void const*, __CFString const*, void const*) + 16 (in CFNetwork) [0x7fff8b1a87e0]
                                                          10 SocketStream::setProperty(void const*, __CFString const*, void const*) + 2480 (in CFNetwork) [0x7fff8b1a9198]
                                                            10 SocketStream::securityAcceptPeerTrust_NoLock(unsigned char) + 376 (in CFNetwork) [0x7fff8b1b53da]
                                                              10 SocketStream::doSettingsOverrideTrustEvaluation() + 705 (in CFNetwork) [0x7fff8b1b56dd]
                                                                10 CFNetworkTrust::evaluate() + 33 (in CFNetwork) [0x7fff8b1b578f]
                                                                  10 SecTrustEvaluate + 49 (in Security) [0x7fff85308bb7]
                                                                    10 Security::KeychainCore::Trust::evaluate(bool) + 2086 (in Security) [0x7fff853094e0]
                                                                      10 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 133 (in Security) [0x7fff8530f18b]
                                                                        10 CSSM_TP_CertGroupVerify + 111 (in Security) [0x7fff8530f92b]
                                                                          10 _ZL20cssm_CertGroupVerifylllPK14cssm_certgroupPK22cssm_tp_verify_contextP29cssm _tp_verify_context_result + 129 (in Security) [0x7fff8530fb51]
                                                                            10 AppleTPSession::CertGroupVerify(long, long, cssm_certgroup const&, cssm_tp_verify_context const*, cssm_tp_verify_context_result*) + 906 (in Security) [0x7fff8530ff86]
                                                                              10 AppleTPSession::CertGroupConstructPriv(long, long, TPCertGroup&, cssm_dl_db_list const*, char const*, unsigned int, cssm_data const*, unsigned int, cssm_data const*, char const*, unsigned int, unsigned int, TPCertGroup&, int&, int&, int&, TPCertGroup&) + 230 (in Security) [0x7fff8531234e]
                                                                                10 TPCertGroup::buildCertGroup(TPClItemInfo const&, TPCertGroup*, cssm_dl_db_list const*, long, long, char const*, unsigned int, cssm_data const*, TPCertGroup&, TPCertGroup*, int, unsigned int, cssm_data const*, char const*, unsigned int, unsigned int, int&, int&, int&) + 4323 (in Security) [0x7fff85313499]
                                                                                  10 tpFetchIssuerFromNet + 534 (in Security) [0x7fff853dc2d9]
                                                                                    10 _ZL22tpFetchViaGeneralNamesPK17__CE_GeneralNamesR10TPCertInfoPK9cssm_dataP15TPV erifyContextllPKcPPS2_PP9TPCrlInfo + 336 (in Security) [0x7fff853dba8a]
                                                                                       10 _ZL13tpFetchViaNetRK9cssm_dataPS0_7LF_TypePcRN8Security9AllocatorERS_ + 82 (in Security) [0x7fff853db8af]
                                                                                         10 ocspdCertFetch + 108 (in Security) [0x7fff85461ee7]
                                                                                           10 ocsp_client_certFetch + 157 (in Security) [0x7fff85461540]
                                                                                             10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x536      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 __select + 10 (in libsystem_kernel.dylib) [0x7fff88bacdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x10c896000 -        0x10c8d7fff  aosnotifyd ??? (???) <750811D8-1A2D-3F5A-B157-8A35B8FB04DB> /usr/sbin/aosnotifyd
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff852d6000 -     0x7fff855aeff7  com.apple.security 7.0 (55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff855af000 -     0x7fff85783fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b193000 -     0x7fff8b2f9fff  com.apple.CFNetwork 520.2.5 (520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8c745000 -     0x7fff8ca5eff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         applepushserviced [81]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    Architecture:    x86_64
    UID:             0
      Thread 0x206        DispatchQueue 1
      User stack:
        10 ??? (in applepushserviced) [0x10638d324]
          10 ??? (in applepushserviced) [0x10638d408]
            10 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8c750f3b]
              10 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8c75104f]
                10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                  10 __CFRunLoopRun + 905 (in CoreFoundation) [0x7fff855e81a9]
                    10 __CFRunLoopDoSources0 + 253 (in CoreFoundation) [0x7fff855c13bd]
                      10 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (in CoreFoundation) [0x7fff855c1b51]
                        10 __CFSocketPerformV0 + 980 (in CoreFoundation) [0x7fff85609714]
                          10 SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 100 (in CFNetwork) [0x7fff8b1b2b72]
                            10 SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 184 (in CFNetwork) [0x7fff8b1b2c42]
                              10 SocketStream::_PerformSecurityHandshake_NoLock() + 159 (in CFNetwork) [0x7fff8b1b3867]
                                10 SSLHandshake + 107 (in Security) [0x7fff8532f5c3]
                                  10 SSLHandshakeProceed + 390 (in Security) [0x7fff8532f759]
                                    10 SSLProcessProtocolMessage + 82 (in Security) [0x7fff8532fd6b]
                                      10 SSLProcessHandshakeRecord + 330 (in Security) [0x7fff8532ff0a]
                                        10 SSLProcessCertificate + 303 (in Security) [0x7fff85338161]
                                          10 sslVerifyCertChain + 1104 (in Security) [0x7fff85338699]
                                            10 SecTrustEvaluate + 49 (in Security) [0x7fff85308bb7]
                                              10 Security::KeychainCore::Trust::evaluate(bool) + 2086 (in Security) [0x7fff853094e0]
                                                10 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 133 (in Security) [0x7fff8530f18b]
                                                  10 CSSM_TP_CertGroupVerify + 111 (in Security) [0x7fff8530f92b]
                                                    10 _ZL20cssm_CertGroupVerifylllPK14cssm_certgroupPK22cssm_tp_verify_contextP29cssm _tp_verify_context_result + 129 (in Security) [0x7fff8530fb51]
                                                      10 AppleTPSession::CertGroupVerify(long, long, cssm_certgroup const&, cssm_tp_verify_context const*, cssm_tp_verify_context_result*) + 906 (in Security) [0x7fff8530ff86]
                                                        10 AppleTPSession::CertGroupConstructPriv(long, long, TPCertGroup&, cssm_dl_db_list const*, char const*, unsigned int, cssm_data const*, unsigned int, cssm_data const*, char const*, unsigned int, unsigned int, TPCertGroup&, int&, int&, int&, TPCertGroup&) + 230 (in Security) [0x7fff8531234e]
                                                          10 TPCertGroup::buildCertGroup(TPClItemInfo const&, TPCertGroup*, cssm_dl_db_list const*, long, long, char const*, unsigned int, cssm_data const*, TPCertGroup&, TPCertGroup*, int, unsigned int, cssm_data const*, char const*, unsigned int, unsigned int, int&, int&, int&) + 1603 (in Security) [0x7fff853129f9]
                                                            10 TPCertInfo::evaluateTrustSettings(cssm_data const&, char const*, unsigned int, unsigned int, bool*, bool*) + 418 (in Security) [0x7fff8533af8c]
                                                              10 SecTrustSettingsEvaluateCert + 313 (in Security) [0x7fff8533b235]
                                                                10 _ZL24tsGetGlobalTrustSettingsj + 336 (in Security) [0x7fff8533b5ea]
                                                                  10 Security::KeychainCore::TrustSettings::CreateTrustSettings(unsigned int, bool, bool, Security::KeychainCore::TrustSettings*&) + 365 (in Security) [0x7fff8533b7f9]
                                                                    10 ocspdTrustSettingsRead + 111 (in Security) [0x7fff8533b9ea]
                                                                      10 ocsp_client_trustSettingsRead + 141 (in Security) [0x7fff8533bc59]
                                                                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x24e        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x6b7      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 __select + 10 (in libsystem_kernel.dylib) [0x7fff88bacdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x10638c000 -        0x1063f9fff  applepushserviced ??? (???) <846618F2-7FE6-374E-9D29-F132E254B130> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff852d6000 -     0x7fff855aeff7  com.apple.security 7.0 (55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff855af000 -     0x7fff85783fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b193000 -     0x7fff8b2f9fff  com.apple.CFNetwork 520.2.5 (520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8c745000 -     0x7fff8ca5eff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         AppleSpell [182]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             501
      Thread 0x583        DispatchQueue 1
      User stack:
        10 ??? (in AppleSpell) [0x101e21cf8]
          10 ??? (in AppleSpell) [0x101e21faa]
            10 -[NSSpellServer run] + 74 (in Foundation) [0x7fff8c8a1ca6]
              10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff855f77ff]
                10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                  10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff855e82d4]
                    10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff855dfb6c]
                      10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x595        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x96a      
      User stack:
        6 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8bc41b85]
          6 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff88bad192]
      Kernel stack:
        6 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Binary Images:
             0x101e20000 -        0x101edcff7  com.apple.AppleSpell 1.7 (131) <6CF6E283-A7F1-37AA-A461-56AFD527396B> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff855af000 -     0x7fff85783fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8c745000 -     0x7fff8ca5eff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         autofsd [79]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x236        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x237        DispatchQueue 6
      User stack:
        10 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff81ec9954]
          10 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff88bad022]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x102405000 -        0x102406fff  autofsd ??? (???) <0C88EC3A-8EA7-368E-832C-CF6FB08B1370> /usr/libexec/autofsd
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    Process:         automountd [161]
    Path:            /usr/libexec/automountd
    Architecture:    x86_64
    UID:             0
      Thread 0x47e        DispatchQueue 1
      User stack:
        10 ??? (in automountd) [0x1091ac5bc]
          10 ??? (in automountd) [0x1091ae4ac]
            10 __semwait_signal + 10 (in libsystem_kernel.dylib) [0x7fff88bace42]
      Kernel stack:
        10 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x491        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x488      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 ??? (in automountd) [0x1091ae5be]
              10 __sigwait + 10 (in libsystem_kernel.dylib) [0x7fff88bad036]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            10 __sigwait_nocancel + 333 (in mach_kernel) [0xffffff800055066d]
              10 msleep + 119 (in mach_kernel) [0xffffff8000552a57]
                10 wakeup + 267 (in mach_kernel) [0xffffff80005523fb]
                  10 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x489      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 ??? (in automountd) [0x1091ae6c9]
              10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff88bacbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x48a      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 ??? (in automountd) [0x1091b684e]
              10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff88bacbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x48b      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 ??? (in automountd) [0x1091ae775]
              10 __ioctl + 10 (in libsystem_kernel.dylib) [0x7fff88bac7ee]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            10 ioctl + 1236 (in mach_kernel) [0xffffff8000561124]
              10 fo_ioctl + 67 (in mach_kernel) [0xffffff8000531453]
                10 utf8_encodelen + 2024 (in mach_kernel) [0xffffff800030ffc8]
                  10 VNOP_IOCTL + 210 (in mach_kernel) [0xffffff80003196d2]
                    10 spec_ioctl + 142 (in mach_kernel) [0xffffff8000327dae]
                      10 autofs_ioctl + 405 (in autofs) [0xffffff7f8184e887]
                        10 msleep + 119 (in mach_kernel) [0xffffff8000552a57]
                          10 wakeup + 267 (in mach_kernel) [0xffffff80005523fb]
                            10 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                              10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                                10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                                  10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4a0      
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 ??? (in automountd) [0x1091ad015]
              10 mach_msg_server_once + 270 (in libsystem_kernel.dylib) [0x7fff88bab49a]
                10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x1091ab000 -        0x1091c6fff  automountd ??? (???) <D5876FF5-6072-3538-B705-3C69F65385F8> /usr/libexec/automountd
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         awacsd [46]
    Path:            /usr/sbin/awacsd
    Architecture:    x86_64
    UID:             0
      Thread 0x1d1        DispatchQueue 1
      User stack:
        10 ??? (in awacsd) [0x1009aaa5c]
          10 ??? (in awacsd) [0x1009b151e]
            10 ??? (in awacsd) [0x1009b9bd2]
              10 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab6b6]
      Kernel stack:
        10 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x1d7        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x3d0        DispatchQueue 13
      User stack:
        10 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8bc41b85]
          10 _pthread_wqthread + 316 (in libsystem_c.dylib) [0x7fff8bc403da]
            10 _dispatch_worker_thread2 + 198 (in libdispatch.dylib) [0x7fff81ec7760]
              10 _dispatch_queue_invoke + 54 (in libdispatch.dylib) [0x7fff81ec7f66]
                10 _dispatch_queue_drain + 264 (in libdispatch.dylib) [0x7fff81ec810a]
                  10 _dispatch_call_block_and_release + 18 (in libdispatch.dylib) [0x7fff81ec68ba]
                    10 ??? (in awacsd) [0x1009ba055]
                      10 ??? (in awacsd) [0x1009ba02f]
                        10 ??? (in awacsd) [0x1009b5c73]
                          10 ??? (in awacsd) [0x1009b5b80]
                            10 SSLHandshake + 107 (in Security) [0x7fff8532f5c3]
                              10 SSLHandshakeProceed + 390 (in Security) [0x7fff8532f759]
                                10 SSLProcessProtocolMessage + 82 (in Security) [0x7fff8532fd6b]
                                  10 SSLProcessHandshakeRecord + 330 (in Security) [0x7fff8532ff0a]
                                    10 SSLProcessCertificate + 303 (in Security) [0x7fff85338161]
                                      10 sslVerifyCertChain + 1104 (in Security) [0x7fff85338699]
                                        10 SecTrustEvaluate + 49 (in Security) [0x7fff85308bb7]
                                          10 Security::KeychainCore::Trust::evaluate(bool) + 2086 (in Security) [0x7fff853094e0]
                                            10 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 133 (in Security) [0x7fff8530f18b]
                                              10 CSSM_TP_CertGroupVerify + 111 (in Security) [0x7fff8530f92b]
                                                10 _ZL20cssm_CertGroupVerifylllPK14cssm_certgroupPK22cssm_tp_verify_contextP29cssm _tp_verify_context_result + 129 (in Security) [0x7fff8530fb51]
                                                  10 AppleTPSession::CertGroupVerify(long, long, cssm_certgroup const&, cssm_tp_verify_context const*, cssm_tp_verify_context_result*) + 906 (in Security) [0x7fff8530ff86]
                                                    10 AppleTPSession::CertGroupConstructPriv(long, long, TPCertGroup&, cssm_dl_db_list const*, char const*, unsigned int, cssm_data const*, unsigned int, cssm_data const*, char const*, unsigned int, unsigned int, TPCertGroup&, int&, int&, int&, TPCertGroup&) + 230 (in Security) [0x7fff8531234e]
                                                      10 TPCertGroup::buildCertGroup(TPClItemInfo const&, TPCertGroup*, cssm_dl_db_list const*, long, long, char const*, unsigned int, cssm_data const*, TPCertGroup&, TPCertGroup*, int, unsigned int, cssm_data const*, char const*, unsigned int, unsigned int, int&, int&, int&) + 4323 (in Security) [0x7fff85313499]
                                                        10 tpFetchIssuerFromNet + 534 (in Security) [0x7fff853dc2d9]
                                                          10 _ZL22tpFetchViaGeneralNamesPK17__CE_GeneralNamesR10TPCertInfoPK9cssm_dataP15TPV erifyContextllPKcPPS2_PP9TPCrlInfo + 336 (in Security) [0x7fff853dba8a]
                                                            10 _ZL13tpFetchViaNetRK9cssm_dataPS0_7LF_TypePcRN8Security9AllocatorERS_ + 82 (in Security) [0x7fff853db8af]
                                                              10 ocspdCertFetch + 108 (in Security) [0x7fff85461ee7]
                                                                10 ocsp_client_certFetch + 157 (in Security) [0x7fff85461540]
                                                                  10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x1009a9000 -        0x100a00ff7  awacsd ??? (???) <44F38E7E-CF70-3890-B333-5AB4791EC2E7> /usr/sbin/awacsd
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff852d6000 -     0x7fff855aeff7  com.apple.security 7.0 (55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8bbf0000 -     0x7fff8bccdfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         BBDaemon [84]
    Path:            /Library/Application Support/BlackBerry/BBDaemon
    Architecture:    i386
    UID:             0
    Process:         BBLaunchAgent.app [209]
    Path:            /Library/Application Support/BlackBerry/BBLaunchAgent.app
    Architecture:    i386
    UID:             501
    Process:         com.apple.dock.extra [168]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:    x86_64
    UID:             501
      Thread 0x4c9        DispatchQueue 1
      User stack:
        10 ??? (in com.apple.dock.extra) [0x1093e6974]
          10 xpc_service_main + 440 (in XPCService) [0x7fff8bbea8b9]
            10 NSApplicationMain + 867 (in AppKit) [0x7fff8713180c]
              10 -[NSApplication run] + 470 (in AppKit) [0x7fff86eb262d]
                10 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff86eb5cf5]
                  10 _DPSNextEvent + 659 (in AppKit) [0x7fff86eb63f1]
                    10 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8a1f74ca]
                      10 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8a1f763d]
                        10 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8a1f03d3]
                          10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                            10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff855e82d4]
                              10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff855dfb6c]
                                10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4cf        DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff88bad7e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Binary Images:
             0x1093e5000 -        0x1093e9fff  com.apple.dock.extra 1.0 (1) <88FC5646-1F5B-3B37-AE2D-C3202B74EEB9> /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff81ec5000 -     0x7fff81ed3fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff855af000 -     0x7fff85783fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86ead000 -     0x7fff87aaeff7  com.apple.AppKit 6.7.2 (1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff88b96000 -     0x7fff88bb6fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a1ee000 -     0x7fff8a512fff  com.apple.HIToolbox 1.8 (???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8bbe9000 -     0x7fff8bbefff7  com.apple.XPCService 1.0 (1) <8D0725AE-BF0B-31BE-9189-17191AF13001> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    Process:         configd [15]
    Path:            /usr/libexec/configd
    Architecture:    x86_64
    UID:             0
      Thread 0xf0         DispatchQueue 1
      User stack:
        10 ??? (in configd) [0x10cf37fcc]
          10 ??? (in configd) [0x10cf38783]
            10 ??? (in configd) [0x10cf39088]
              10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff855e82d4]
                  10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff855dfb6c]
                    10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0xf9         DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff81ec714e]
          10 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff88bace06]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0xfb       
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff8bc41b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8bc3e8bf]
            10 ??? (in configd) [0x10cf39a66]
              10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff855f77ff]
                10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff855e7ae6]
                  10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff855e82d4]
                    10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff855dfb6c]
                      10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff88bab67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x144      
      User s

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software -- potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions -- they’re easy to carry out and won’t change anything on your Mac.
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing.
    Below are four lines of text in monospaced type, which are actually shell commands -- little programs. They’re harmless, but they must be used exactly as given in order to work.
    First and most important, don’t run these commands until you have verified that they’re legitimate. Never execute shell commands from an untrusted source without knowing what they do, or at least that they don’t do anything harmful. I’ve posted these same commands, with minor variations, many times on this site. You should be able to find other discussions in which they were used without ill effects. Do that before proceeding.
    Some of the commands will probably line-wrap in your browser, but each one is really just a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands.
    To begin, launch the Terminal application; e.g., by entering the first few letters of its name in a Spotlight search.
    Step 1
    Copy or drag -- do not type -- the line below into the Terminal window, then press return:
    kextstat -kl | awk ' !/apple/ { print $6 $7 } '
    Post the lines of output (if any) that appear below what you just entered (the text, please, not a screenshot.)
    Step 2
    Repeat with this line:
    sudo launchctl list | sed 1d | awk ' !/0x|apple|com\.vix|edu\.|org\./ { print $3 } '
    This time, you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning.
    Step 3
    launchctl list | sed 1d | awk ' !/0x|apple|edu\.|org\./ { print $3 } '
    Step 4
    ls -1A {,/}Library/{Ad,Compon,Ex,Fram,In,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Sta}* 2> /dev/null
    Important: If you synchronize with a MobileMe account, your me.com email address will appear in the output of the above command. Change it to something like “[email protected]” before posting.
    Remember, this is all drag-and-drop or copy-and-paste, whichever you prefer -- no typing, except your password.
    You can then quit Terminal.

  • Creating new JSF2 pages from a running Servlet (3.0) or JSF2 page?

    I'm new to JEE6 web apps with JSF 2.x frontends (GlassFish 3), and I still wasn't able to find a solution for this dynamic JSF 2.x problem:
    *From inside a running JSF 2.x web app (Servlet 3.0), which possibilities (if any) do I have to dynamically add generated JSF pages (whole new .xhtml files) to specific folders of the (exploded) document root, so that these pages can be dispatched to the client like any traditional, statically-deployed one?*
    Background: An app for "promoting" authors/editors (content providers) which has these few main requirements:
    <ol>
    <li>New providers will register under <tt>www.acme.com/app/register.xhtml</tt>.</li>
    <li>The system will grant each provider "sub-domain" associated with web space under
    <tt>www.acme.com/app/<b>providerX</b></tt> where providerX is an arbitrary sub-domain name chosen by the provider during the registration.</li>
    <li>Each provider will initially have some pre-defined pages in their document context root, e.g.
    <tt>www.acme.com/app/providerX/index.xhtml</tt>, <tt>about-me.xhtml</tt>, <tt>contact.xhtml</tt>, etc.</li>
    <li>Each provider will have an administration console for managing 2 tasks:
    <ul>
    <li type="a"><tt>www.acme.com/app/providerX/admin/page-manager.xhtml</tt> </li>
    <li type="a"><tt>www.acme.com/app/providerX/admin/customer-manager.xhtml</tt></li>
    </ul>
    to specify new pages with offers, publish these pages in their document context root, e.g. <tt>www.acme.com/app/<b>providerX</b>/<b>my-services</b>.xhtml</tt> (customized page name), and
    to manage their readers/customers, respectively.
    </li>
    <li>Thus, each providerX will also have a pre-deployed customer registration page running, which creates standard customer accounts. E.g.:
    <ul>
    <li type="disc"><tt>www.acme.com/app/providerX/customers/registration.xhtml</tt></li>
    <li type="disc"><tt>www.acme.com/app/providerX/customers/login.xhtml</tt></li>
    <li type="disc"><tt>www.acme.com/app/providerX/customers/customer-account-dashboard.xhtml</tt></li>
    </ul>
    </li></ol>
    Please note: I know that for such kind of systems a CMS would be more suitable, but is such a system -- here aiming at only basic functionality -- also realizable in pure JEE 6 technologies, i.e. w/o CMS???
    <b>The unclear main aspect is stated in my initial question above. Basically, I hope to get these clarifications:</b>
    <ol>
    <li><b>Which app architecture designs can I use to deploy new generated JSF pages or servlets from within a running JSF page or servlet???</b></li>
    <li><b>Supposing that all relevant page description data provided by a provider is stored in a db:
    Where can I "cache" the new .xhtml pages generated from these data on-the-fly when (a) an exploded WAR, and (b) a packaged WAR is running???</b>
    The pages shall be "hooked" to the scope (doc root) of the respective provider and dispatches by the <tt>FacesServlet</tt> as such.</li>
    </ol>
    Due to the crucial importance in a current project, I'd really appreciate any constructive help very much.
    Natalia.

    Natalia F. wrote:
    Determining you as one of the experts in this forum, please, could I ask you how you'd solve this kind of web apps in JSF2 (one of the requirements stated at the beginning of this thread):I'm certainly an expert at having an opinion about everything.
    >
    Having a "page-manager.xhtml" JSF2 UI at "/page-manager" context that lets registered member X define a website (=a set of .jsf/.xhtml pages) in a new context "/websiteX" (where "websiteX" is freely chosen and associated with dedicated webspace to store the pages in the filesystem):
    How to store these dynamically created website pages from within the PageManagerServlet?
    <ol><li type="a">Could I create a new exploded WAR structure in the filesystem (or elsewhere) when a new context is defined, and then store new .jsf/.xhtml files therein when a new page is defined, all this with usual file operations? -- Would this be enough, or...</li>
    <li type="a">...after storing a new page, would I need to explicitly tell the container to deploy the page (or re-deploy the WAR(?)) so that I can instantly test/run the page when it is new/modified, or will it be compiled automatically when pointing a browser to it???
    I guess both is possible, but for performance reasons, a pre-compile would be better. How can I achieve this?</li>
    </ol>
    Thank you a million for your help, Natalia.I only see mention of xhtml files - that is the easy part. But XHTML files don't actually do anything at all. What about classes like JSF managed beans? jar libraries? database connections and ORM/JPA support which also adds the complexity of having to deal with all the configuration descriptor files? Even if you can automatically deploy all that, replacing existing classes and reloading them is a whole different matter.
    My "expert" opinion: this cannot be done with JSF. In fact the only Java web framework which I can think of that has any chance of making something like this possible is Play framework. I'd really take the road that EJP took: make the content dynamic, not the webapp.

  • Can anyone help with a solution to a persistent hang/crash when selecting 'Desktop/Screensaver'?

    For the past few weeks my 11" MBA, 10.8.3 hangs whenever I select 'Desktop & Screensaver' in System Preferences. The crash report is as follows:
    Date/Time:       2013-03-17 22:35:06 +0000
    OS Version:      10.8.3 (Build 12D78)
    Architecture:    x86_64
    Report Version:  11
    Command:         System Preferences
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Version:         12.0 (12.0)
    Build Version:   1
    Project Name:    SystemPrefsApp
    Source Version:  232001000000000
    Parent:          launchd [141]
    PID:             283
    Event:           hang
    Duration:        5.43s
    Steps:           55 (100ms sampling interval)
    Hardware model:  MacBookAir4,1
    Active cpus:     4
    Free pages:      326195 pages (-16662)
    Pageins:         60 pages
    Pageouts:        0 pages
    Process:         System Preferences [283]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Task size:       18611 pages
    CPU Time:        0.001s
      Thread 0xae6      DispatchQueue 1          priority 46       
      55 start + 1 (libdyld.dylib) [0x1114007e1]
        55 NSApplicationMain + 869 (AppKit) [0x10e463c06]
          55 -[NSApplication run] + 517 (AppKit) [0x10e4bf1d3]
            55 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x10e4c7e22]
              55 _DPSNextEvent + 685 (AppKit) [0x10e4c8563]
                55 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x10fed7ae3]
                  55 ReceiveNextEventCommon + 356 (HIToolbox) [0x10fed7c52]
                    55 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x10fed7eb4]
                      55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10dad40e2]
                        55 __CFRunLoopRun + 789 (CoreFoundation) [0x10dad47f5]
                          55 __CFRunLoopDoSources0 + 245 (CoreFoundation) [0x10dab1455]
                            55 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (CoreFoundation) [0x10dab1b31]
                              55 __NSThreadPerformPerform + 225 (Foundation) [0x10de86d3a]
                                55 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 130 (Foundation) [0x10de3cdbf]
                                  55 NSKeyValueDidChange + 456 (Foundation) [0x10de81859]
                                    55 NSKeyValueNotifyObserver + 390 (Foundation) [0x10de7fe40]
                                      55 -[DSKDesktopWindowController _setupSelection] + 244 (DesktopPictures) [0x11cd3a1c4]
                                        55 -[NSTreeController setSelectionIndexPath:] + 57 (AppKit) [0x10e62f81d]
                                          55 -[NSTreeController setSelectionIndexPaths:] + 25 (AppKit) [0x10e62f843]
                                            55 -[NSTreeController _selectObjectsAtIndexPaths:avoidsEmptySelection:sendObserverNotifications:] + 68 (AppKit) [0x10e62f88c]
                                              55 -[NSTreeController _selectObjectsAtIndexPathsNoCopy:avoidsEmptySelection:sendObserverNotifications :] + 510 (AppKit) [0x10e5fa1ed]
                                                55 -[NSTreeController _didChangeValuesForArrangedKeys:objectKeys:indexPathKeys:] + 248 (AppKit) [0x10e5fa8f7]
                                                  55 -[NSController _notifyObserversForKeyPath:change:] + 209 (AppKit) [0x10e5f8e23]
                                                    55 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 967 (Foundation) [0x10de7a303]
                                                      55 NSKeyValueNotifyObserver + 390 (Foundation) [0x10de7fe40]
                                                        55 -[NSArrayDetailBinder _refreshDetailContentInBackground:] + 399 (AppKit) [0x10e611983]
                                                          55 -[NSBinder valueForBinding:resolveMarkersToPlaceholders:] + 163 (AppKit) [0x10e6090d4]
                                                            55 -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 284 (Foundation) [0x10de7ddaf]
                                                              55 -[NSTreeController _singleValueForKeyPath:] + 162 (AppKit) [0x10e611fbc]
                                                                55 -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 341 (Foundation) [0x10de7dde8]
                                                                  55 -[NSObject(NSKeyValueCoding) valueForKey:] + 400 (Foundation) [0x10de5d539]
                                                                    55 -[DSKiLifeMediaElementSource pictures] + 69 (DesktopPictures) [0x11cd30d74]
                                                                      55 -[DSKiLifeMediaElementSource _createPictures] + 89 (DesktopPictures) [0x11cd30c29]
                                                                        55 ??? (iLMBiPhotoPlugin2012 + 583000) [0x11fa2d558]
                                                                          55 -[NSCondition wait] + 240 (Foundation) [0x10de88386]
                                                                            55 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x1115d10fa]
                                                                             *55 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0xaf2      DispatchQueue 2          priority 48       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1113cc9ee]
        55 __select_nocancel + 10 (libsystem_kernel.dylib) [0x1115d1336]
         *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xaf4      DispatchQueue 7          priority 46       
      55 start_wqthread + 13 (libsystem_c.dylib) [0x1114521d1]
        55 _pthread_wqthread + 404 (libsystem_c.dylib) [0x111467d0b]
          55 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x1113cb1c3]
            55 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x1113cb305]
              55 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x1113cc29b]
                55 _dispatch_client_callout + 8 (libdispatch.dylib) [0x1113ca0b6]
                  55 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x1113ce96f]
                    55 _dispatch_client_callout + 8 (libdispatch.dylib) [0x1113ca0b6]
                      55 __NSOQDelayedFinishOperations + 143 (Foundation) [0x10de8a9be]
                        55 -[NSObject(NSKeyValueObservingPrivate) _changeValueForKey:key:key:usingBlock:] + 742 (Foundation) [0x10de55ddc]
                          55 NSKeyValueDidChange + 456 (Foundation) [0x10de81859]
                            55 NSKeyValueNotifyObserver + 390 (Foundation) [0x10de7fe40]
                              55 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131 (Foundation) [0x10de806a8]
                                55 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 796 (Foundation) [0x10de80a48]
                                  55 -[NSCondition wait] + 240 (Foundation) [0x10de88386]
                                    55 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x1115d10fa]
                                     *55 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0xb01      priority 46         cpu time   0.001s
      55 start_wqthread + 13 (libsystem_c.dylib) [0x1114521d1]
        55 _pthread_wqthread + 412 (libsystem_c.dylib) [0x111467d13]
          55 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x1115d16d6]
           *55 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x10d035000 -        0x10d058fff  com.apple.systempreferences 12.0 (12.0) <0249AAAE-AA18-3A55-BBCE-D870C940E8C7> /Applications/System Preferences.app/Contents/MacOS/System Preferences
             0x10da9f000 -        0x10dc89ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10ddf4000 -        0x10e151ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x10e373000 -        0x10efa0ff7  com.apple.AppKit 6.8 (1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
             0x10fe78000 -        0x1101a8fff  com.apple.HIToolbox 2.0 <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
             0x1113c8000 -        0x1113ddff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x1113fe000 -        0x111401ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x111451000 -        0x11151dff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x1115bf000 -        0x1115daff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
             0x11cd2b000 -        0x11cd4bfff  com.apple.preference.desktopscreeneffect.desktop 5.0 (5.0) <ED7008B8-14AA-37B2-A9C9-58EF8491A211> /System/Library/PreferencePanes/DesktopScreenEffectsPref.prefPane/Contents/Reso urces/DesktopPictures.prefPane/Contents/MacOS/DesktopPictures
             0x11f99f000 -        0x11fb7ffff  com.apple.iLMBiPhotoPlugin2012 2.7.3 (339.4) <11892B54-9C18-32F0-9CD2-50E174633D30> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         accountsd [205]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       5294 pages
      Thread 0x588      DispatchQueue 1          priority 31       
      55 start + 1 (libdyld.dylib) [0x10bede7e1]
        55 ??? (accountsd + 3048) [0x107dbabe8]
          55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x109bbf0e2]
            55 __CFRunLoopRun + 1078 (CoreFoundation) [0x109bbf916]
              55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x109bba233]
                55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10c0c4686]
                 *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5e7      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10bea79ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10c0c6d16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x107dba000 -        0x107dbafff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
             0x109b8a000 -        0x109d74ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10bea3000 -        0x10beb8ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x10bedc000 -        0x10bedfff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x10c0b4000 -        0x10c0cfff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         aosnotifyd [89]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       5247 pages (-3)
      Thread 0x282      DispatchQueue 1          priority 31       
      55 start + 1 (libdyld.dylib) [0x1105167e1]
        55 ??? (aosnotifyd + 37439) [0x10daf323f]
          55 ??? (aosnotifyd + 36529) [0x10daf2eb1]
            55 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x10e842f5e]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10e4720e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10e472916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10e46d233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1106ea686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x2ec      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1104dd9ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x1106ecd16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0xc5b      priority 31       
      49 start_wqthread + 13 (libsystem_c.dylib) [0x1105671d1]
        49 _pthread_wqthread + 412 (libsystem_c.dylib) [0x11057cd13]
          49 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x1106ec6d6]
           *49 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x10daea000 -        0x10db32fff  aosnotifyd <A3543B5E-3291-3025-A09C-1B7087B1A9EA> /usr/sbin/aosnotifyd
             0x10e43d000 -        0x10e627ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10e7a8000 -        0x10eb05ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x1104d9000 -        0x1104eeff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x110514000 -        0x110517ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x110566000 -        0x110632ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x1106da000 -        0x1106f5ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         appleeventsd [85]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       2469 pages
      Thread 0x2c9      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1048609ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x104a62d16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2ca      DispatchQueue 7          priority 31       
      55 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x10485dd85]
        55 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x104a62566]
         *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x102cf2000 -        0x102cf2fff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
             0x10485c000 -        0x104871ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x104a50000 -        0x104a6bff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleIDAuthAgent [173]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2031 pages
      Thread 0x531      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10ac349ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10ae51d16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x533      DispatchQueue 7          priority 31       
      55 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x10ac31d85]
        55 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x10ae51566]
         *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0x7f8      DispatchQueue 17         priority 31       
      55 start_wqthread + 13 (libsystem_c.dylib) [0x10accd1d1]
        55 _pthread_wqthread + 404 (libsystem_c.dylib) [0x10ace2d0b]
          55 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x10ac331c3]
            55 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x10ac332f1]
              55 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x10ac33448]
                55 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x10ac33305]
                  55 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x10ac3429b]
                    55 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10ac320b6]
                      55 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x10ac3696f]
                        55 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10ac320b6]
                          55 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x10ac35f01]
                            55 ??? (AppleIDAuthAgent + 9227) [0x108a2b40b]
                              55 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x10ae4f6da]
                               *55 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Binary Images:
             0x108a29000 -        0x108a59fff  AppleIDAuthAgent <91A3B8DC-AD42-399C-9A44-413CF8DF2CA4> /System/Library/CoreServices/AppleIDAuthAgent
             0x10ac30000 -        0x10ac45ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x10accc000 -        0x10ad98ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x10ae3f000 -        0x10ae5aff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppSandboxSMLoginItemEnabler [219]
    Path:            /System/Library/Frameworks/ServiceManagement.framework/XPCServices/AppSandboxSM LoginItemEnabler.xpc/Contents/MacOS/AppSandboxSMLoginItemEnabler
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       5271 pages
      Thread 0x69f      DispatchQueue 7          priority 31       
      55 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x10914ed85]
        55 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x10935a566]
         *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0x6a2      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1091519ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10935ad16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x107f96000 -        0x107f97fff  com.apple.AppSandboxSMLoginItemEnabler 1.0 (1) <01E3E0D0-F6F6-31A0-AA2E-5132CDB9FA09> /System/Library/Frameworks/ServiceManagement.framework/XPCServices/AppSandboxSM LoginItemEnabler.xpc/Contents/MacOS/AppSandboxSMLoginItemEnabler
             0x10914d000 -        0x109162ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x109348000 -        0x109363ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         apsd [53]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       6484 pages (-3)
      Thread 0x224      DispatchQueue 1          priority 31       
      55 start + 1 (libdyld.dylib) [0x10cc707e1]
        55 ??? (apsd + 21734) [0x10b7884e6]
          55 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x10b92075a]
            55 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x10b987f5e]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10c2b20e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10c2b2916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10c2ad233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10ce52686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x23a      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10cc379ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10ce54d16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x257      priority 63       
      55 thread_start + 13 (libsystem_c.dylib) [0x10ccc81e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x10ccdb7a2]
          55 __NSThread__main__ + 1345 (Foundation) [0x10b982cd2]
            55 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x10b924b66]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10c2b20e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10c2b2916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10c2ad233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10ce52686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x551      priority 31       
      55 thread_start + 13 (libsystem_c.dylib) [0x10ccc81e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x10ccdb7a2]
          55 __select + 10 (libsystem_kernel.dylib) [0x10ce54322]
           *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xc50      priority 31       
      33 start_wqthread + 13 (libsystem_c.dylib) [0x10ccc81d1]
        33 _pthread_wqthread + 412 (libsystem_c.dylib) [0x10ccddd13]
          33 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x10ce546d6]
           *33 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x10b783000 -        0x10b801ff7  apsd <44247DBB-E2FB-3858-9CDD-F5C3C5FBAA6A> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
             0x10b8ed000 -        0x10bc4aff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x10c27d000 -        0x10c467ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10cc33000 -        0x10cc48ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x10cc6e000 -        0x10cc71ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x10ccc7000 -        0x10cd93ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x10ce42000 -        0x10ce5dff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         assistantd [175]
    Path:            /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Task size:       5551 pages
      Thread 0x516      DispatchQueue 1          priority 31       
      55 start + 1 (libdyld.dylib) [0x10e9d27e1]
        55 ??? (assistantd + 7216) [0x10c71ac30]
          55 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x10ca1a75a]
            55 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x10ca81f5e]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10de280e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10de28916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10de23233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10ebb8686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5d3      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10e99c9ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10ebbad16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x10c719000 -        0x10c9b9ff7  assistantd <62536A66-D370-3A95-87CF-6CAECFB7CBDD> /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd
             0x10c9e7000 -        0x10cd44ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x10ddf3000 -        0x10dfddff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10e998000 -        0x10e9adff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x10e9d0000 -        0x10e9d3ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x10eba8000 -        0x10ebc3ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         autofsd [88]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1883 pages (-3)
      Thread 0x2b5      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1042ad9ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x1044bfd16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2b6      DispatchQueue 7          priority 31       
      55 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x1042aad85]
        55 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x1044bf566]
         *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xc56      priority 31       
      42 start_wqthread + 13 (libsystem_c.dylib) [0x1043321d1]
        42 _pthread_wqthread + 412 (libsystem_c.dylib) [0x104347d13]
          42 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x1044bf6d6]
           *42 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x103e2f000 -        0x103e30fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
             0x1042a9000 -        0x1042beff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x104331000 -        0x1043fdff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x1044ad000 -        0x1044c8ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         awacsd [50]
    Path:            /usr/sbin/awacsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       6663 pages (-3)
      Thread 0x1fe      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x104ff39ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x1051fed16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x207      DispatchQueue 7          priority 31       
      55 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x104ff0d85]
        55 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x1051fe566]
         *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0x203      DispatchQueue 35         priority 31       
      55 start_wqthread + 13 (libsystem_c.dylib) [0x1050791d1]
        55 _pthread_wqthread + 404 (libsystem_c.dylib) [0x10508ed0b]
          55 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x104ff21c3]
            55 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x104ff22f1]
              55 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x104ff247f]
                55 _dispatch_client_callout + 8 (libdispatch.dylib) [0x104ff10b6]
                  55 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x104ff4f01]
                    55 ??? (awacsd + 159979) [0x1038e90eb]
                      55 CFRunLoopRun + 97 (CoreFoundation) [0x1043ccdd1]
                        55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x1043be0e2]
                          55 __CFRunLoopRun + 1078 (CoreFoundation) [0x1043be916]
                            55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x1043b9233]
                              55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1051fc686]
                               *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x204      DispatchQueue 145        priority 31       
      55 start_wqthread + 13 (libsystem_c.dylib) [0x1050791d1]
        55 _pthread_wqthread + 404 (libsystem_c.dylib) [0x10508ed0b]
          55 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x104ff21c3]
            55 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x104ff22f1]
              55 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x104ff247f]
                55 _dispatch_client_callout + 8 (libdispatch.dylib) [0x104ff10b6]
                  55 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x104ff4f01]
                    55 ??? (awacsd + 211834) [0x1038f5b7a]
                      55 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x103a16f5e]
                        55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x1043be0e2]
                          55 __CFRunLoopRun + 1078 (CoreFoundation) [0x1043be916]
                            55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x1043b9233]
                              55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1051fc686]
                               *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x8e7      priority 31       
      55 thread_start + 13 (libsystem_c.dylib) [0x1050791e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x10508c7a2]
          55 __select + 10 (libsystem_kernel.dylib) [0x1051fe322]
           *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xc4f      priority 31       
      29 start_wqthread + 13 (libsystem_c.dylib) [0x1050791d1]
        29 _pthread_wqthread + 412 (libsystem_c.dylib) [0x10508ed13]
          29 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x1051fe6d6]
           *29 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x1038c2000 -        0x10393bff7  awacsd <FE8E81DE-C8CA-3760-8FEC-EBA495AB2C83> /usr/sbin/awacsd
             0x10397c000 -        0x103cd9ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x104389000 -        0x104573ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x104fef000 -        0x105004ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x105078000 -        0x105144ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x1051ec000 -        0x105207ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         backupd [206]
    Path:            /System/Library/CoreServices/backupd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       3727 pages
    Note:            Self-throttled
      Thread 0x589      DispatchQueue 1          priority 4        
      55 start + 1 (libdyld.dylib) [0x10b78a7e1]
        55 ??? (backupd + 69283) [0x109ba6ea3]
          55 CFRunLoopRun + 97 (CoreFoundation) [0x10b081dd1]
            55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10b0730e2]
              55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10b073916]
                55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10b06e233]
                  55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10b95e686]
                   *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5cb      DispatchQueue 2          priority 4        
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10b7549ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10b960d16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x109b96000 -        0x109c25fff  backupd <A0539511-845C-3345-89FD-362F42CF7449> /System/Library/CoreServices/backupd
             0x10b03e000 -        0x10b228ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10b750000 -        0x10b765ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x10b788000 -        0x10b78bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x10b94e000 -        0x10b969ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         BambooCore [187]
    Path:            /Library/Application Support/Wacom/BambooCore.app/Contents/MacOS/BambooCore
    Architecture:    i386
    Parent:          launchd [141]
    UID:             501
    Task size:       4756 pages
    Note:            Throttled by external source
    Process:         BBDaemon [91]
    Path:            /Library/Application Support/BlackBerry/BBDaemon
    Architecture:    i386
    Parent:          launchd [1]
    UID:             0
    Task size:       2024 pages (+2)
    CPU Time:        0.001s
    Process:         BBLaunchAgent.app [179]
    Path:            /Library/Application Support/BlackBerry/BBLaunchAgent.app
    Architecture:    i386
    Parent:          launchd [141]
    UID:             501
    Task size:       5139 pages
    CPU Time:        0.045s
    Process:         blued [51]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       3033 pages (-3)
      Thread 0x1f2      DispatchQueue 1          priority 31       
      55 start + 1 (libdyld.dylib) [0x103ce67e1]
        55 ??? (blued + 169421) [0x101f4d5cd]
          55 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x102a3075a]
            55 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x102a97f5e]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10217b0e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10217b916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x102176233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x103eb9686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x1f3      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x103cb19ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x103ebbd16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x21d      priority 31       
      55 thread_start + 13 (libsystem_c.dylib) [0x103d341e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x103d477a2]
          55 __select + 10 (libsystem_kernel.dylib) [0x103ebb322]
           *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xc4e      priority 31       
      28 start_wqthread + 13 (libsystem_c.dylib) [0x103d341d1]
        28 _pthread_wqthread + 412 (libsystem_c.dylib) [0x103d49d13]
          28 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x103ebb6d6]
           *28 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x101f24000 -        0x101fd8fff  blued <46A5B612-858F-3554-A2AE-438A6A1C9EFB> /usr/sbin/blued
             0x102146000 -        0x102330ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x1029fd000 -        0x102d5aff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x103cad000 -        0x103cc2ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x103ce4000 -        0x103ce7ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x103d33000 -        0x103dffff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x103ea9000 -        0x103ec4ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         CalendarAgent [174]
    Path:            /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarA gent
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       16816 pages (+21)
    Pageins:         2 pages
    CPU Time:        0.008s
      Thread 0x515      DispatchQueue 1          priority 31       
      55 start + 1 (libdyld.dylib) [0x107f9d7e1]
        55 ??? (CalendarAgent + 2739) [0x105cf1ab3]
          55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10644b0e2]
            55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10644b916]
              55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x106446233]
                55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10816a686]
                 *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x624      DispatchQueue 2          priority 33       
      55 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x107f659ee]
        55 kevent + 10 (libsystem_kernel.dylib) [0x10816cd16]
         *55 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x6cb      priority 63       
      55 thread_start + 13 (libsystem_c.dylib) [0x107fe61e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x107ff97a2]
          55 __NSThread__main__ + 1345 (Foundation) [0x105de9cd2]
            55 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x105d8bb66]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10644b0e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10644b916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x106446233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10816a686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x739      priority 31       
      55 thread_start + 13 (libsystem_c.dylib) [0x107fe61e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x107ff97a2]
          55 __NSThread__main__ + 1345 (Foundation) [0x105de9cd2]
            55 -[CalAgentAPSConnectionManager _calAPSMain] + 731 (CalendarAgent) [0x105d01274]
              55 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10644b0e2]
                55 __CFRunLoopRun + 1078 (CoreFoundation) [0x10644b916]
                  55 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x106446233]
                    55 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10816a686]
                     *55 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x765      priority 31       
      55 thread_start + 13 (libsystem_c.dylib) [0x107fe61e1]
        55 _pthread_start + 327 (libsystem_c.dylib) [0x107ff97a2]
          55 __select + 10 (libsystem_kernel.dylib) [0x10816c322]
           *55 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xc55      priority <multiple> cpu time   0.001s
      55 start_wqthread + 13 (libsystem_c.dylib) [0x107fe61d1]
        55 _pthread_wqthread + 412 (libsystem_c.dylib) [0x107ffbd13]
          55 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x10816c6d6]
           *55 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Thread 0xd0c      priority <multiple> cpu time   0.006s
      19 start_wqthread + 13 (libsystem_c.dylib) [0x107fe61d1]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x107ffbd13]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x10816c6d6]
           *19 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Thread 0xd0d      priority 31       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x107fe61d1]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x107ffbd13]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x10816c6d6]
           *19 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Thread 0xd0e      priority <multiple>
      19 start_wqthread + 13 (libsystem_c.dylib) [0x107fe61d1]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x107ffbd13]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x10816c6d6]
           *19 ??? (mach_kernel + 3906688) [0xffffff80005b9c80]
      Binary Images:
             0x105cf1000 -        0x105cf1fff  CalendarAgent <6CFDD227-73B3-3E19-9FE7-DD95699A3D15> /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarA gent
             0x105cfc000 -        0x105d11fff  com.apple.CalendarAgent 1.0 (55) <D8084316-7159-3552-BA5D-081F856A1550> /System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/CalendarAg ent
             0x105d54000 -        0x1060b1ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x106416000 -        0x106600ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x107f61000 -        0x107f76ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x107f9b000 -        0x107f9eff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x107fe5000 -        0x1080b1ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x10815a000 -        0x108175ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel

    Did you reset the preferences file as well?  If not try this:
    Close PSe and then do this:
    Navigate to the Elements Organizer settings folder:
    >> Windows XP: C:\Documents and Settings\[User Name]\Application Data\Adobe\Elements Organizer\[Version]\Organizer\
    >> Win Vista/7/8: C:\Users\[User Name]\AppData\Roaming\Adobe\Elements Organizer\[Version]\Organizer\
    >> Macintosh OS: //Users/[User Name]/Library/Application Support/Adobe/Elements Organizer/[Version]/Organizer/
    Rename psa.prf to psa.old.
    Retry launching Elements Organizer
    Hope this helps.

  • Panic Reports and black screen since Lion upgrade

    Hi there
    I have a 13" Macbook Pro, mid 2009 with 4Gig ram. and 160Gig hard-drive (23Gig free).
    2 days ago I upgraded from Snow Leopard to Lion 10.7.2 and ever since, my machine has been freezing. It either has a panic attack (or whatever you call it) or i get a black screen saying, "You have to restart your computer..."
    This is a copy of my last panic report:
    Could anybody tell me why this is happening? It never happened once on Snow Leopard...
    Thank you...
    Interval Since Last Panic Report:  37914 sec
    Panics Since Last Report:          6
    Anonymous UUID:                    BE5025BE-9BA1-4416-8616-40117EA3457B
    Tue Oct 18 20:14:15 2011
    panic(cpu 1 caller 0xffffff80002c266d): Kernel trap at 0xffffff800028037b, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffef8011586b90, CR3: 0x000000000a2c2000, CR4: 0x0000000000000660
    RAX: 0x0000000000000000, RBX: 0xffffff800755ccd8, RCX: 0xffffff8007097ee8, RDX: 0xffffff80075b6108
    RSP: 0xffffff80792ebd10, RBP: 0xffffff80792ebd70, RSI: 0x00000000219b6bd2, RDI: 0xffffff800bc74f98
    R8:  0x000000000006c000, R9:  0xffffff80008bed50, R10: 0xfffffe803e5dc868, R11: 0x0008000000024c12
    R12: 0xffffef8011586b80, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0x000000000000007a
    RFL: 0x0000000000010202, RIP: 0xffffff800028037b, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffef8011586b90, Error code: 0x0000000000000000, Faulting CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80792eb9d0 : 0xffffff8000220702
    0xffffff80792eba50 : 0xffffff80002c266d
    0xffffff80792ebbf0 : 0xffffff80002d7a1d
    0xffffff80792ebc10 : 0xffffff800028037b
    0xffffff80792ebd70 : 0xffffff8000280cc6
    0xffffff80792ebda0 : 0xffffff8000281044
    0xffffff80792ebdd0 : 0xffffff8000281db6
    0xffffff80792ebe00 : 0xffffff8000273c27
    0xffffff80792ebef0 : 0xffffff80002748aa
    0xffffff80792ebf20 : 0xffffff80005a3267
    0xffffff80792ebf50 : 0xffffff80005caa9b
    0xffffff80792ebfb0 : 0xffffff80002d8363
    BSD process name corresponding to current thread: Dock
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: MacBookPro5,5 (Mac-F2268AC8)
    System uptime in nanoseconds: 9252048892739
    last loaded kext at 6473626414093: com.apple.iokit.IOAVBFamily          1.0.0d22 (addr 0xffffff7f80792000, size 36864)
    last unloaded kext at 6551535211929: com.apple.iokit.IOEthernetAVBController          1.0.0d5 (addr 0xffffff7f8078d000, size 20480)
    loaded kexts:
    com.rim.driver.BlackBerryUSBDriverInt          0.0.67
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AppleMikeyDriver          2.1.3f7
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AGPM          100.12.42
    com.apple.GeForce          7.1.2
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AirPort.Brcm4331          512.20.18
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleUSBEHCI          4.5.0
    com.apple.driver.AppleUSBOHCI          4.4.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.nvidia.nv50hal          7.1.2
    com.apple.NVDAResman          7.1.2
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IO80211Family          411.1
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.driver.AppleKeyStore          28.18
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IOUSBFamily          4.5.3
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4

    Another crash: this is so irritating... should have stayed with Snow Leopard...
    Date/Time:       2011-10-20 09:26:57 +0200
    OS Version:      10.7.2 (Build 11C74)
    Architecture:    x86_64
    Report Version:  9
    Command:         System Preferences
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Version:         11.0 (11.0)
    Build Version:   1
    Project Name:    SystemPrefsApp
    Source Version:  214001000000000
    Parent:          launchd [114]
    PID:             186
    Event:           hang
    Duration:        1.72s
    Steps:           18 (100ms sampling interval)
    Pageins:         46
    Pageouts:        0
    Process:         System Preferences [186]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Architecture:    x86_64
    UID:             501
      Thread 0x5cc        DispatchQueue 1
      User stack:
        18 ??? (in System Preferences) [0x10a732dbc]
          18 NSApplicationMain + 867 (in AppKit) [0x7fff9290980c]
            18 -[NSApplication run] + 470 (in AppKit) [0x7fff9268a62d]
              18 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff9268dcf5]
                18 _DPSNextEvent + 659 (in AppKit) [0x7fff9268e3f1]
                  18 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff9082d4ca]
                    18 ReceiveNextEventCommon + 181 (in HIToolbox) [0x7fff9082d58f]
                      18 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff908263d3]
                        18 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8fcc9ae6]
                          18 __CFRunLoopRun + 1617 (in CoreFoundation) [0x7fff8fcca471]
                            18 __CFRunLoopDoTimer + 534 (in CoreFoundation) [0x7fff8fce9ad6]
                              18 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (in CoreFoundation) [0x7fff8fce9f84]
                                18 __NSFireDelayedPerform + 392 (in Foundation) [0x7fff8e39e25a]
                                  18 ??? (in System Preferences) [0x10a738fbe]
                                    18 ??? (in System Preferences) [0x10a739adc]
                                      18 ??? (in Network) [0x110cd3765]
                                        18 -[NSAdminPreference willSelect] + 148 (in PreferencePanes) [0x7fff8b20550b]
                                          18 -[SFAuthorizationView updateStatus:] + 128 (in SecurityInterface) [0x7fff8babf021]
                                            18 -[SFAuthorizationView(Private) _tryState:interactive:] + 602 (in SecurityInterface) [0x7fff8bac0092]
                                              18 -[NSAdminPreference(Private) authorizationViewDidAuthorize:] + 120 (in PreferencePanes) [0x7fff8b205d4b]
                                                18 -[NSPreference setEditable:] + 228 (in PreferencePanes) [0x7fff8b204289]
                                                  18 ??? (in Network) [0x110cd47fb]
                                                    18 ??? (in Network) [0x110cd4883]
                                                      18 ??? (in Network) [0x110cd4dcd]
                                                        18 ??? (in Network) [0x110cd5c4d]
                                                          18 ??? (in Network) [0x110cd5f03]
                                                            18 _SCNetworkInterfaceCopyAllWithPreferences + 56 (in SystemConfiguration) [0x7fff8e8215ae]
                                                              18 pthread_once + 86 (in libsystem_c.dylib) [0x7fff89be7e06]
                                                                18 __waitForInterfaces + 288 (in SystemConfiguration) [0x7fff8e821b7b]
                                                                  18 SCDynamicStoreNotifyWait + 557 (in SystemConfiguration) [0x7fff8e829841]
                                                                    18 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bdfd67a]
      Kernel stack:
        18 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread <multiple> DispatchQueue 6
      User stack:
        36 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff89bebb85]
          36 _pthread_wqthread + 316 (in libsystem_c.dylib) [0x7fff89bea3da]
            36 _dispatch_worker_thread2 + 255 (in libdispatch.dylib) [0x7fff8fba6799]
              36 _dispatch_call_block_and_release + 18 (in libdispatch.dylib) [0x7fff8fba58ba]
                36 ____NSOQSchedule_block_invoke_2 + 124 (in Foundation) [0x7fff8e3ed9e6]
                  36 -[__NSOperationInternal start] + 705 (in Foundation) [0x7fff8e3da788]
                    18 -[DSKiLifeMediaRootSource loadDataSynchronously] + 235 (in DesktopPictures) [0x10c901f78]
                      18 +[NSThread sleepForTimeInterval:] + 146 (in Foundation) [0x7fff8e42884e]
                        18 __semwait_signal + 10 (in libsystem_kernel.dylib) [0x7fff8bdfee42]
                    18 -[NSInvocationOperation main] + 42 (in Foundation) [0x7fff8e4ad970]
                      18 -[NSInvocation invoke] + 132 (in CoreFoundation) [0x7fff8fd270a4]
                        18 __invoking___ + 140 (in CoreFoundation) [0x7fff8fd2720c]
                          18 -[ILMediaManager _loadDataThreaded] + 227 (in iLifeMediaBrowser) [0x7fff8a44a317]
                            18 -[ILMediaManager _performLoadData] + 511 (in iLifeMediaBrowser) [0x7fff8a44a6e5]
                              18 -[ILMediaManager setRootMediaGroup:] + 283 (in iLifeMediaBrowser) [0x7fff8a4493c7]
                                18 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 135 (in Foundation) [0x7fff8e3e14db]
                                  18 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975 (in Foundation) [0x7fff8e3e1928]
                                    18 -[NSCondition wait] + 261 (in Foundation) [0x7fff8e3ee594]
                                      18 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdfebca]
      Kernel stack:
        18 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              18 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x5d0        DispatchQueue 2
      User stack:
        18 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8fba614e]
          18 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff8bdfee06]
      Kernel stack:
        18 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0x619        DispatchQueue 12
      User stack:
        18 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff89bebb85]
          18 _pthread_wqthread + 316 (in libsystem_c.dylib) [0x7fff89bea3da]
            18 _dispatch_worker_thread2 + 198 (in libdispatch.dylib) [0x7fff8fba6760]
              18 _dispatch_queue_invoke + 54 (in libdispatch.dylib) [0x7fff8fba6f66]
                18 _dispatch_queue_drain + 264 (in libdispatch.dylib) [0x7fff8fba710a]
                  18 _dispatch_call_block_and_release + 18 (in libdispatch.dylib) [0x7fff8fba58ba]
                    18 __auto_zone_collect_block_invoke_0 + 74 (in libauto.dylib) [0x7fff8f8c121a]
                      18 auto_collect_internal(Auto::Zone*, unsigned int) + 459 (in libauto.dylib) [0x7fff8f8c57db]
                        18 Auto::Zone::invalidate_garbage(unsigned long, void**) + 73 (in libauto.dylib) [0x7fff8f8d8019]
                          18 batchFinalizeOnTwoThreads + 91 (in libobjc.A.dylib) [0x7fff88b5b5fb]
                            18 batchFinalize + 53 (in libobjc.A.dylib) [0x7fff88b5b4ac]
                              18 Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 94 (in libauto.dylib) [0x7fff8f8d807e]
                                18 finalizeOneObject + 53 (in libobjc.A.dylib) [0x7fff88b5b57c]
                                  18 -[IKImageWrapper finalize] + 66 (in ImageKit) [0x7fff8f63c78c]
                                    18 -[IKGLSharedContextRegistry removeOwner:] + 217 (in ImageKit) [0x7fff8f70eb1d]
                                      18 _CF_forwarding_prep_0 + 232 (in CoreFoundation) [0x7fff8fd21f48]
                                        18 ___forwarding___ + 756 (in CoreFoundation) [0x7fff8fd222b4]
                                          18 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 84 (in Foundation) [0x7fff8e40c81e]
                                            18 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975 (in Foundation) [0x7fff8e3e1928]
                                              18 -[NSCondition wait] + 261 (in Foundation) [0x7fff8e3ee594]
                                                18 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdfebca]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              18 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x610      
      User stack:
        18 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff89bebb85]
          18 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8bdff192]
      Kernel stack:
        18 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Thread 0x61e      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 __NSThread__main__ + 1575 (in Foundation) [0x7fff8e3ec776]
              18 -[NSThread main] + 68 (in Foundation) [0x7fff8e3ec7fe]
                18 -[IKTaskManager taskLoop] + 1228 (in ImageKit) [0x7fff8f6fc385]
                  18 _CF_forwarding_prep_0 + 232 (in CoreFoundation) [0x7fff8fd21f48]
                    18 ___forwarding___ + 756 (in CoreFoundation) [0x7fff8fd222b4]
                      18 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 84 (in Foundation) [0x7fff8e40c81e]
                        18 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975 (in Foundation) [0x7fff8e3e1928]
                          18 -[NSCondition wait] + 261 (in Foundation) [0x7fff8e3ee594]
                            18 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdfebca]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              18 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x10a731000 -        0x10a753fff  com.apple.systempreferences 11.0 (11.0) <50027251-BB22-3472-ADCE-90253DC46B60> /Applications/System Preferences.app/Contents/MacOS/System Preferences
             0x10c8fd000 -        0x10c91eff7  com.apple.preference.desktopscreeneffect.desktop 4.0 (4.0) <D6DAE5CE-85F4-3998-BBD3-9B1862929089> /System/Library/PreferencePanes/DesktopScreenEffectsPref.prefPane/Contents/Reso urces/DesktopPictures.prefPane/Contents/MacOS/DesktopPictures
             0x110cd1000 -        0x110d61ff7  com.apple.preference.network 2.6 (2.6) <33A6F103-0C67-33CB-9CD4-AC389FC74DDA> /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network
          0x7fff88b46000 -     0x7fff88c2adef  libobjc.A.dylib ??? (???) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
          0x7fff89b9a000 -     0x7fff89c77fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8a40d000 -     0x7fff8a49afff  com.apple.iLifeMediaBrowser 2.6.1 (502.1.5) <6E778C70-7254-3D1A-8D11-6D38643BDEBA> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
          0x7fff8b1fc000 -     0x7fff8b219fff  com.apple.frameworks.preferencepanes 15.0 (15.0) <ABF4E917-A452-3B86-B071-948F4B6A3CD3> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
          0x7fff8babd000 -     0x7fff8baf2fff  com.apple.securityinterface 5.0 (55004) <CFB4A542-7297-3159-8229-A5815EFE0EF5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
          0x7fff8bde8000 -     0x7fff8be08fff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8e392000 -     0x7fff8e6abff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e811000 -     0x7fff8e85cff7  com.apple.SystemConfiguration 1.11.1 (1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
          0x7fff8f631000 -     0x7fff8f8acfff  com.apple.imageKit 2.1.1 (1.0) <9C159577-0FFF-34D8-890E-66627A9E44FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
          0x7fff8f8c0000 -     0x7fff8f90efff  libauto.dylib ??? (???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
          0x7fff8fba4000 -     0x7fff8fbb2fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8fc91000 -     0x7fff8fe65fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90824000 -     0x7fff90b48fff  com.apple.HIToolbox 1.8 (???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff92685000 -     0x7fff93286ff7  com.apple.AppKit 6.7.2 (1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         AirPort Base Station Agent [155]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x427        DispatchQueue 1
      User stack:
        18 ??? (in AirPort Base Station Agent) [0x106cff654]
          18 ??? (in AirPort Base Station Agent) [0x106d10353]
            18 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8fcd97ff]
              18 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8fcc9ae6]
                18 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8fcca2d4]
                  18 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8fcc1b6c]
                    18 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bdfd67a]
      Kernel stack:
        18 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x43a        DispatchQueue 2
      User stack:
        18 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8fba614e]
          18 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bdff7e6]
      Kernel stack:
        18 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x443      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 __select + 10 (in libsystem_kernel.dylib) [0x7fff8bdfedf2]
      Kernel stack:
        18 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0x444      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 ??? (in AirPort Base Station Agent) [0x106d106a0]
              18 ??? (in AirPort Base Station Agent) [0x106d0157f]
                18 ??? (in AirPort Base Station Agent) [0x106d1074d]
                  18 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdfebca]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              18 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x106cfe000 -        0x106d15fff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <0D37CC05-D1C6-3C6C-BACD-A88D4BD4C3CD> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff89b9a000 -     0x7fff89c77fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8bde8000 -     0x7fff8be08fff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8fba4000 -     0x7fff8fbb2fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8fc91000 -     0x7fff8fe65fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         aosnotifyd [81]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    UID:             0
      Thread 0x20d        DispatchQueue 1
      User stack:
        18 start + 52 (in aosnotifyd) [0x1012370bc]
          18 main + 74 (in aosnotifyd) [0x10123e9f4]
            18 -[AOSNotificationDaemon startup] + 1294 (in aosnotifyd) [0x10123e7bb]
              18 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8e39e04f]
                18 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8fcc9ae6]
                  18 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8fcca2d4]
                    18 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8fcc1b6c]
                      18 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bdfd67a]
      Kernel stack:
        18 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x273        DispatchQueue 2
      User stack:
        18 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8fba614e]
          18 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bdff7e6]
      Kernel stack:
        18 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Binary Images:
             0x101235000 -        0x101276fff  aosnotifyd ??? (???) <750811D8-1A2D-3F5A-B157-8A35B8FB04DB> /usr/sbin/aosnotifyd
          0x7fff8bde8000 -     0x7fff8be08fff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8e392000 -     0x7fff8e6abff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8fba4000 -     0x7fff8fbb2fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8fc91000 -     0x7fff8fe65fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         applepushserviced [80]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    Architecture:    x86_64
    UID:             0
      Thread 0x20c        DispatchQueue 1
      User stack:
        18 ??? (in applepushserviced) [0x10c289324]
          18 ??? (in applepushserviced) [0x10c289408]
            18 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8e39df3b]
              18 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8e39e04f]
                18 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8fcc9ae6]
                  18 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8fcca2d4]
                    18 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8fcc1b6c]
                      18 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bdfd67a]
      Kernel stack:
        18 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x259        DispatchQueue 2
      User stack:
        18 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8fba614e]
          18 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bdff7e6]
      Kernel stack:
        18 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Binary Images:
             0x10c288000 -        0x10c2f5fff  applepushserviced ??? (???) <846618F2-7FE6-374E-9D29-F132E254B130> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff8bde8000 -     0x7fff8be08fff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8e392000 -     0x7fff8e6abff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8fba4000 -     0x7fff8fbb2fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8fc91000 -     0x7fff8fe65fff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         autofsd [78]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x242        DispatchQueue 2
      User stack:
        18 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8fba614e]
          18 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bdff7e6]
      Kernel stack:
        18 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x243        DispatchQueue 6
      User stack:
        18 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8fba8954]
          18 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff8bdff022]
      Kernel stack:
        18 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x104acb000 -        0x104accfff  autofsd ??? (???) <D0C5622F-0C60-3045-A1C2-F140785A79C3> /usr/libexec/autofsd
          0x7fff8bde8000 -     0x7fff8be08fff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8fba4000 -     0x7fff8fbb2fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         automountd [170]
    Path:            /usr/libexec/automountd
    Architecture:    x86_64
    UID:             0
      Thread 0x4b0        DispatchQueue 1
      User stack:
        18 ??? (in automountd) [0x1079795bc]
          18 ??? (in automountd) [0x10797b4ac]
            18 __semwait_signal + 10 (in libsystem_kernel.dylib) [0x7fff8bdfee42]
      Kernel stack:
        18 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x4b9        DispatchQueue 2
      User stack:
        18 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8fba614e]
          18 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bdff7e6]
      Kernel stack:
        18 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x4b1      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 ??? (in automountd) [0x10797b5be]
              18 __sigwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdff036]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 __sigwait_nocancel + 333 (in mach_kernel) [0xffffff800055066d]
              18 msleep + 119 (in mach_kernel) [0xffffff8000552a57]
                18 wakeup + 267 (in mach_kernel) [0xffffff80005523fb]
                  18 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4b2      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 ??? (in automountd) [0x10797b6c9]
              18 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdfebca]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              18 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4b3      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 ??? (in automountd) [0x10798384e]
              18 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bdfebca]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              18 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4b4      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 ??? (in automountd) [0x10797b775]
              18 __ioctl + 10 (in libsystem_kernel.dylib) [0x7fff8bdfe7ee]
      Kernel stack:
        18 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          18 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            18 ioctl + 1236 (in mach_kernel) [0xffffff8000561124]
              18 fo_ioctl + 67 (in mach_kernel) [0xffffff8000531453]
                18 utf8_encodelen + 2024 (in mach_kernel) [0xffffff800030ffc8]
                  18 VNOP_IOCTL + 210 (in mach_kernel) [0xffffff80003196d2]
                    18 spec_ioctl + 142 (in mach_kernel) [0xffffff8000327dae]
                      18 autofs_ioctl + 405 (in autofs) [0xffffff7f81945887]
                        18 msleep + 119 (in mach_kernel) [0xffffff8000552a57]
                          18 wakeup + 267 (in mach_kernel) [0xffffff80005523fb]
                            18 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                              18 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                                18 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                                  18 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4c6      
      User stack:
        18 thread_start + 13 (in libsystem_c.dylib) [0x7fff89bebb75]
          18 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff89be88bf]
            18 ??? (in automountd) [0x10797a015]
              18 mach_msg_server_once + 270 (in libsystem_kernel.dylib) [0x7fff8bdfd49a]
                18 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bdfd67a]
      Kernel stack:
        18 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x107978000 -        0x107993fff  automountd ??? (???) <DDD5174D-D8A1-3A24-BB33-0A3C5A13A4FE> /usr/libexec/automountd
          0x7fff89b9a000 -     0x7fff89c77fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8bde8000 -     0x7fff8be08fff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8fba4000 -     0x7fff8fbb2fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         BBDaemon [83]
    Path:            /Library/Application Support/BlackBerry/BBDaemon
    Architecture:    i386
    UID:             0
    Process:         BBLaunchAgent.app [157]
    Path:            /Library/Application Support/BlackBerry/BBLaunchAgent.app
    Architecture:    i386
    UID:             501

  • Large page sizes on Solaris 9

    I am trying (and failing) to utilize large page sizes on a Solaris 9 machine.
    # uname -a
    SunOS machinename.lucent.com 5.9 Generic_112233-11 sun4u sparc SUNW,Sun-Blade-1000
    I am using as my reference "Supporting Multiple Page Sizes in the Solaris� Operating System" http://www.sun.com/blueprints/0304/817-6242.pdf
    and
    "Taming Your Emu to Improve Application Performance (February 2004)"
    http://www.sun.com/blueprints/0204/817-5489.pdf
    The machine claims it supports 4M page sizes:
    # pagesize -a
    8192
    65536
    524288
    4194304
    I've written a very simple program:
    main()
    int sz = 10*1024*1024;
    int x = (int)malloc(sz);
    print_info((void**)&x, 1);
    while (1) {
    int i = 0;
    while (i < (sz/sizeof(int))) {
    x[i++]++;
    I run it specifying a 4M heap size:
    # ppgsz -o heap=4M ./malloc_and_sleep
    address 0x21260 is backed by physical page 0x300f5260 of size 8192
    pmap also shows it has an 8K page:
    pmap -sx `pgrep malloc` | more
    10394: ./malloc_and_sleep
    Address Kbytes RSS Anon Locked Pgsz Mode Mapped File
    00010000 8 8 - - 8K r-x-- malloc_and_sleep
    00020000 8 8 8 - 8K rwx-- malloc_and_sleep
    00022000 3960 3960 3960 - 8K rwx-- [ heap ]
    00400000 6288 6288 6288 - 8K rwx-- [ heap ]
    (The last 2 lines above show about 10M of heap, with a pgsz of 8K.)
    I'm running this as root.
    In addition to the ppgsz approach, I have also tried using memcntl and mmap'ing ANON memory (and others). Memcntl gives an error for 2MB page sizes, but reports success with a 4MB page size - but still, pmap reports the memcntl'd memory as using an 8K page size.
    Here's the output from sysinfo:
    General Information
    Host Name is machinename.lucent.com
    Host Aliases is loghost
    Host Address(es) is xxxxxxxx
    Host ID is xxxxxxxxx
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    Manufacturer is Sun (Sun Microsystems)
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    System Model is Blade 1000
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    ROM Version is OBP 4.10.11 2003/09/25 11:53
    Number of CPUs is 2
    CPU Type is sparc
    App Architecture is sparc
    Kernel Architecture is sun4u
    OS Name is SunOS
    OS Version is 5.9
    Kernel Version is SunOS Release 5.9 Version Generic_112233-11 [UNIX(R) System V Release 4.0]
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    Kernel Information
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    SysConf Information
    Max combined size of argv[] and envp[] is 1048320
    Max processes allowed to any UID is 29995
    Clock ticks per second is 100
    Max simultaneous groups per user is 16
    Max open files per process is 256
    System memory page size is 8192
    Job control supported is TRUE
    Savid ids (seteuid()) supported is TRUE
    Version of POSIX.1 standard supported is 199506
    Version of the X/Open standard supported is 3
    Max log name is 8
    Max password length is 8
    Number of processors (CPUs) configured is 2
    Number of processors (CPUs) online is 2
    Total number of pages of physical memory is 262144
    Number of pages of physical memory not currently in use is 4368
    Max number of I/O operations in single list I/O call is 4096
    Max amount a process can decrease its async I/O priority level is 0
    Max number of timer expiration overruns is 2147483647
    Max number of open message queue descriptors per process is 32
    Max number of message priorities supported is 32
    Max number of realtime signals is 8
    Max number of semaphores per process is 2147483647
    Max value a semaphore may have is 2147483647
    Max number of queued signals per process is 32
    Max number of timers per process is 32
    Supports asyncronous I/O is TRUE
    Supports File Synchronization is TRUE
    Supports memory mapped files is TRUE
    Supports process memory locking is TRUE
    Supports range memory locking is TRUE
    Supports memory protection is TRUE
    Supports message passing is TRUE
    Supports process scheduling is TRUE
    Supports realtime signals is TRUE
    Supports semaphores is TRUE
    Supports shared memory objects is TRUE
    Supports syncronized I/O is TRUE
    Supports timers is TRUE
    /opt/default/bin/sysinfo: /dev/ksyms is not a 32-bit kernel namelist
    Device Information
    SUNW,Sun-Blade-1000
    cpu0 is a "900 MHz SUNW,UltraSPARC-III+" CPU
    cpu1 is a "900 MHz SUNW,UltraSPARC-III+" CPU
    Does anyone have any idea as to what the problem might be?
    Thanks in advance.
    Mike

    I ran your program on Solaris 10 (yet to be released) and it works.
    Address Kbytes RSS Anon Locked Pgsz Mode Mapped File
    00010000 8 8 - - 8K r-x-- mm
    00020000 8 8 8 - 8K rwx-- mm
    00022000 3960 3960 3960 - 8K rwx-- [ heap ]
    00400000 8192 8192 8192 - 4M rwx-- [ heap ]
    I think you don't this patch for Solaris 9
    i386 114433-03
    sparc 113471-04
    Let me know if you encounter problem even after installing this patch.
    Saurabh Mishra

  • Launching Fireworks CS6 (Subscription) Mac "Not Responding"

    I have a CS6 subscription.
    I had not used FW CS6 (subscription service version) for a few months, maybe last December. But I used it and version predecessors regularly for years and today the CS6 Subscription would not open with Mac 10.8.3 where it basically shows startup screen and then puts mac into overdrive using about 62% of CPU where mac reports in monitor "Not Responding) and same message on Force Quit menu.
    So I did rename prefs in both Library and Application Support. That did not work.
    Then I removed Fireworks CS6 using Uninstall and reinstalled from the Adobe Application Manager.
    When the problem first started you would at least see the doc window, empty, no panels, no menu. but now after reinstall just see a small light gray window in top left corner of screen narrow width about 100 px(approx) and about 400 px (approx) with six horizontal lines.
    I am really dependent on FW as I have used it since days of Macromedia.
    So I am at a lost what to do next.
    [Edit]
    Spent an hour online chat support with Adobe. Not real happy about that experience.
    Most of the time spent gathering information about me. I would say I got about 5 minutes of the hour on the actual problem. But that abysmal support process deserved a different airing.
    After going over with three people,posting this link twice for two of them and once for the last one, the final one from the installation team, they concluded I need to make a call the support number and talk to a person for a resolution. Cannot see how that is better, using a voice to communicate technical issues, but I will try and provide an update.
    But in meantime if anyone has a clue where to look. It almost feels FW is reloading modules or itself behind the scenes.

    the full error log is:
    Date/Time:       2013-04-05 21:39:34 -0400
    OS Version:      10.8.3 (Build 12D78)
    Architecture:    x86_64
    Report Version:  11
    Command:         Fireworks
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
    Version:         Adobe Fireworks CS6 version 12.0.0.236 (12.0.0)
    Parent:          launchd [146]
    PID:             717
    Event:           hang
    Duration:        1.14s
    Steps:           12 (100ms sampling interval)
    Hardware model:  MacBookAir5,2
    Active cpus:     4
    Free pages:      793677 pages (+51)
    Pageins:         37 pages
    Pageouts:        0 pages
    Process:         Adobe Fireworks CS6 [717]
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       30552 pages
    CPU Time:        0.869s
      Thread 0x43de     priority 46         cpu time   0.328s
    *12 hndl_alltraps + 225 (mach_kernel) [0xffffff80002cd401]
       *12 user_trap + 862 (mach_kernel) [0xffffff80002b833e]
         *12 exception_triage + 69 (mach_kernel) [0xffffff800021e5f5]
           *12 exception_deliver + 556 (mach_kernel) [0xffffff800021e45c]
             *12 exception_raise + 172 (mach_kernel) [0xffffff800024a40c]
               *8  mach_msg_rpc_from_kernel_body + 278 (mach_kernel) [0xffffff8000220f46]
                 *8  ipc_mqueue_receive + 66 (mach_kernel) [0xffffff8000213112]
                   *5  thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                     *5  ??? (mach_kernel + 190273) [0xffffff800022e741]
                       *5  machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
                   *3  thread_block_reason + 352 (mach_kernel) [0xffffff800022da40]
                     *3  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
               *2  mach_msg_rpc_from_kernel_body + 199 (mach_kernel) [0xffffff8000220ef7]
                 *2  ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                   *2  ipc_mqueue_send + 388 (mach_kernel) [0xffffff8000212d34]
                     *2  ipc_mqueue_post + 539 (mach_kernel) [0xffffff8000212f7b]
                       *2  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
               *1  mach_msg_rpc_from_kernel_body + 634 (mach_kernel) [0xffffff80002210aa]
                 *1  ipc_kmsg_copyout_to_kernel + 90 (mach_kernel) [0xffffff800021270a]
                   *1  hw_lock_unlock + 31 (mach_kernel) [0xffffff80002ac7ff]
               *1  mach_msg_rpc_from_kernel_body + 232 (mach_kernel) [0xffffff8000220f18]
                 *1  usimple_lock + 8 (mach_kernel) [0xffffff80002b0488]
      Thread 0x43f2     DispatchQueue 1701273966 priority 48       
      12 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x9a58b7a9]
        12 kevent + 10 (libsystem_kernel.dylib) [0x982fd9ae]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x43f6     priority 54         cpu time   0.009s
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 TimerThread + 324 (CarbonCore) [0x9364e1a3]
            12 TSWaitOnSemaphoreRelative + 24 (CarbonCore) [0x9366840d]
              12 TSWaitOnSemaphoreCommon + 272 (CarbonCore) [0x93668184]
                12 TSWaitOnConditionTimedRelative + 177 (CarbonCore) [0x936686ad]
                  12 pthread_cond_timedwait_relative_np + 47 (libsystem_c.dylib) [0x92ddb572]
                    12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                     *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x43f7     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 CooperativeThread + 308 (CarbonCore) [0x93665c4d]
            12 FW_PowerPlant::LThread::DoEntry(void*) + 30 (libPowerPlant2.dylib) [0x93b1352]
              12 FW_PowerPlant::LThread::Cleanup::Run() + 33 (libPowerPlant2.dylib) [0x93b060d]
                12 FW_PowerPlant::LSemaphore::Wait(long) + 71 (libPowerPlant2.dylib) [0x93af1f7]
                  12 FW_PowerPlant::LSemaphore::BlockThread(long) + 70 (libPowerPlant2.dylib) [0x93af18e]
                    12 FW_PowerPlant::LThread::SemWait(FW_PowerPlant::LSemaphore*, long, QHdr&, unsigned char&) + 114 (libPowerPlant2.dylib) [0x93b027c]
                      12 SetThreadStateEndCritical + 111 (CarbonCore) [0x936660d4]
                        12 SetThreadState + 173 (CarbonCore) [0x93665e55]
                          12 YieldToThread + 389 (CarbonCore) [0x93666003]
                            12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                             *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4409     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (Adobe Fireworks CS6 + 12459297) [0xbe2d21]
              12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                  12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4440     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (AdobeACE + 257433) [0x2ecdd99]
              12 ??? (AdobeACE + 260713) [0x2ecea69]
                12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                  12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                    12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                      12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                        12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                         *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4441     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (AdobeACE + 257433) [0x2ecdd99]
              12 ??? (AdobeACE + 260713) [0x2ecea69]
                12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                  12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                    12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                      12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                        12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                         *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4442     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (AdobeACE + 257433) [0x2ecdd99]
              12 ??? (AdobeACE + 260713) [0x2ecea69]
                12 MPWaitOnQueue + 261 (CarbonCore) [0x935b4b8b]
                  12 TSWaitOnConditionTimedRelative + 146 (CarbonCore) [0x9366868e]
                    12 TSWaitOnCondition + 128 (CarbonCore) [0x93668492]
                      12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                        12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                         *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x446c     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (Adobe Fireworks CS6 + 10819844) [0xa52904]
              12 ??? (Adobe Fireworks CS6 + 8673081) [0x846739]
                12 ??? (Adobe Fireworks CS6 + 8166105) [0x7caad9]
                  12 __accept + 10 (libsystem_kernel.dylib) [0x982fbe9a]
                   *12 ??? (mach_kernel + 842253) [0xffffff80002cda0d]
                     *12 unix_syscall + 467 (mach_kernel) [0xffffff80005e0343]
                       *12 accept_nocancel + 442 (mach_kernel) [0xffffff800059e8fa]
                         *12 msleep + 116 (mach_kernel) [0xffffff8000569154]
                           *12 ??? (mach_kernel + 3575142) [0xffffff8000568d66]
                             *12 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                               *12 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                 *12 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                   *12 machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
      Thread 0x4477     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 Invoke + 46771 (ServiceManager-Launcher.dylib) [0x1774a2eb]
            12 Invoke + 38189 (ServiceManager-Launcher.dylib) [0x17748165]
              12 Login + 15377 (ServiceManager-Launcher.dylib) [0x1773e09a]
                12 Login + 461 (ServiceManager-Launcher.dylib) [0x1773a656]
                  12 Invoke + 37242 (ServiceManager-Launcher.dylib) [0x17747db2]
                    12 Invoke + 36953 (ServiceManager-Launcher.dylib) [0x17747c91]
                      12 Invoke + 34757 (ServiceManager-Launcher.dylib) [0x177473fd]
                        12 Invoke + 34408 (ServiceManager-Launcher.dylib) [0x177472a0]
                          12 Invoke + 23745 (ServiceManager-Launcher.dylib) [0x177448f9]
                            12 Invoke + 23117 (ServiceManager-Launcher.dylib) [0x17744685]
                              12 Invoke + 21103 (ServiceManager-Launcher.dylib) [0x17743ea7]
                                12 Invoke + 20343 (ServiceManager-Launcher.dylib) [0x17743baf]
                                  12 Invoke + 40407 (ServiceManager-Launcher.dylib) [0x17748a0f]
                                    12 Invoke + 40272 (ServiceManager-Launcher.dylib) [0x17748988]
                                      12 Invoke + 44046 (ServiceManager-Launcher.dylib) [0x17749846]
                                        12 Invoke + 47867 (ServiceManager-Launcher.dylib) [0x1774a733]
                                          12 __recvfrom + 10 (libsystem_kernel.dylib) [0x982fcb3e]
                                           *12 ??? (mach_kernel + 842253) [0xffffff80002cda0d]
                                             *12 unix_syscall + 467 (mach_kernel) [0xffffff80005e0343]
                                               *12 recvfrom_nocancel + 255 (mach_kernel) [0xffffff800059fb1f]
                                                 *12 ??? (mach_kernel + 3800446) [0xffffff800059fd7e]
                                                   *12 soreceive + 5579 (mach_kernel) [0xffffff800059895b]
                                                     *12 sbwait + 175 (mach_kernel) [0xffffff800059bb6f]
                                                       *12 msleep + 116 (mach_kernel) [0xffffff8000569154]
                                                         *12 ??? (mach_kernel + 3575142) [0xffffff8000568d66]
                                                           *12 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                                                             *12 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                                               *12 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                                                 *12 machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
      Thread 0x447f     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4480     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4481     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4482     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 83439 (adbeapeengine) [0x1ab4962f]
                  12 APXGetHostAPI + 2633743 (adbeapeengine) [0x1adb804f]
                    12 pthread_cond_wait$UNIX2003 + 71 (libsystem_c.dylib) [0x92e61095]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x448d     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 2736590 (adbeapeengine) [0x1add120e]
                  12 APXGetHostAPI + 2633687 (adbeapeengine) [0x1adb8017]
                    12 pthread_cond_timedwait_relative_np + 47 (libsystem_c.dylib) [0x92ddb572]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x448e     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 APXGetHostAPI + 2634374 (adbeapeengine) [0x1adb82c6]
            12 APXGetHostAPI + 2634087 (adbeapeengine) [0x1adb81a7]
              12 APXGetHostAPI + 2633982 (adbeapeengine) [0x1adb813e]
                12 APXGetHostAPI + 4264232 (adbeapeengine) [0x1af46168]
                  12 APXGetHostAPI + 2633687 (adbeapeengine) [0x1adb8017]
                    12 pthread_cond_timedwait_relative_np + 47 (libsystem_c.dylib) [0x92ddb572]
                      12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                       *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x448f     priority 46         cpu time   0.531s
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          9  ExternalPlayer_Initialize + 1873594 (AuthPlayLib) [0x1d423942]
            9  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
             *7  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
               *7  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                 *7  mach_msg_overwrite_trap + 427 (mach_kernel) [0xffffff800021970b]
                   *7  ipc_mqueue_receive + 59 (mach_kernel) [0xffffff800021310b]
                     *7  thread_block_reason + 275 (mach_kernel) [0xffffff800022d9f3]
                       *4  ??? (mach_kernel + 187521) [0xffffff800022dc81]
                         *4  processor_idle + 227 (mach_kernel) [0xffffff800022f1c3]
                           *4  machine_idle + 282 (mach_kernel) [0xffffff80002b901a]
                       *3  ??? (mach_kernel + 187510) [0xffffff800022dc76]
                         *3  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
             *2  call_continuation + 23 (mach_kernel) [0xffffff80002b2977]
               *2  mach_msg_receive_continue + 33 (mach_kernel) [0xffffff8000219551]
                 *1  ipc_kmsg_put + 106 (mach_kernel) [0xffffff80002105fa]
                   *1  ??? (mach_kernel + 720693) [0xffffff80002aff35]
                 *1  mach_msg_receive_results + 498 (mach_kernel) [0xffffff80002192b2]
                   *1  ipc_kmsg_copyout + 65 (mach_kernel) [0xffffff8000212251]
                     *1  ipc_kmsg_copyout_body + 233 (mach_kernel) [0xffffff8000212129]
                       *1  ipc_kmsg_copyout_port_descriptor + 68 (mach_kernel) [0xffffff8000211c34]
                         *1  ipc_object_copyout + 41 (mach_kernel) [0xffffff8000214409]
                           *1  usimple_lock + 6 (mach_kernel) [0xffffff80002b0486]
          3  ExternalPlayer_Initialize + 1873438 (AuthPlayLib) [0x1d4238a6]
            3  ExternalPlayer_Initialize + 1873327 (AuthPlayLib) [0x1d423837]
              1  ExternalPlayer_Initialize + 1874127 (AuthPlayLib) [0x1d423b57]
                1  thread_suspend + 90 (libsystem_kernel.dylib) [0x982f6014]
                  1  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                   *1  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
                     *1  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                       *1  mach_msg_overwrite_trap + 119 (mach_kernel) [0xffffff80002195d7]
                         *1  ipc_kmsg_get + 115 (mach_kernel) [0xffffff8000210133]
                           *1  ??? (mach_kernel + 720980) [0xffffff80002b0054]
              1  ExternalPlayer_Initialize + 1874231 (AuthPlayLib) [0x1d423bbf]
                1  thread_set_state + 208 (libsystem_kernel.dylib) [0x982f5f35]
                  1  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                   *1  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
                     *1  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                       *1  mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff800021961b]
                         *1  ipc_kmsg_send + 104 (mach_kernel) [0xffffff8000210448]
                           *1  ipc_kobject_server + 317 (mach_kernel) [0xffffff8000220aed]
                             *1  ??? (mach_kernel + 357403) [0xffffff800025741b]
                               *1  ??? (mach_kernel + 246531) [0xffffff800023c303]
                                 *1  thread_stop + 409 (mach_kernel) [0xffffff800022cfd9]
                                   *1  ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002b207b]
              1  ExternalPlayer_Initialize + 1874160 (AuthPlayLib) [0x1d423b78]
                1  thread_get_state + 172 (libsystem_kernel.dylib) [0x982f5d2d]
                  1  mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                   *1  hndl_mach_scall + 222 (mach_kernel) [0xffffff80002cdaee]
                     *1  ??? (mach_kernel + 679038) [0xffffff80002a5c7e]
                       *1  mach_msg_overwrite_trap + 153 (mach_kernel) [0xffffff80002195f9]
                         *1  ipc_kmsg_copyin + 33 (mach_kernel) [0xffffff8000211601]
                           *1  ipc_kmsg_copyin_header + 1013 (mach_kernel) [0xffffff8000210a45]
      Thread 0x4490     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4491     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4492     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x4493     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 ??? (AuthPlayLib + 2987354) [0x1d24e55a]
            12 ExternalPlayer_Initialize + 87949 (AuthPlayLib) [0x1d26fa15]
              12 ??? (AuthPlayLib + 2986332) [0x1d24e15c]
                12 pthread_cond_wait + 48 (libsystem_c.dylib) [0x92e68af0]
                  12 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x982fc8e2]
                   *12 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x449f     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 catch_exception_raise + 4487288 (Adobe Fireworks CS6) [0x10eff88]
            12 catch_exception_raise + 4464217 (Adobe Fireworks CS6) [0x10ea569]
              12 catch_exception_raise + 4486363 (Adobe Fireworks CS6) [0x10efbeb]
                12 __semwait_signal + 10 (libsystem_kernel.dylib) [0x982fcc72]
                 *12 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x44a0     priority 46       
      12 thread_start + 34 (libsystem_c.dylib) [0x92dc0d4e]
        12 _pthread_start + 344 (libsystem_c.dylib) [0x92dd65b7]
          12 PrivateMPEntryPoint + 68 (CarbonCore) [0x9363ba7b]
            12 ??? (Adobe Fireworks CS6 + 10819844) [0xa52904]
              12 ??? (Adobe Fireworks CS6 + 9919210) [0x976aea]
                12 RunCurrentEventLoop + 61 (HIToolbox) [0x995b2193]
                  12 RunCurrentEventLoopInMode + 242 (HIToolbox) [0x99450f5a]
                    12 CFRunLoopRunInMode + 123 (CoreFoundation) [0x92fe5e9b]
                      12 CFRunLoopRunSpecific + 378 (CoreFoundation) [0x92fe602a]
                        12 __CFRunLoopRun + 1247 (CoreFoundation) [0x92fe696f]
                          12 __CFRunLoopServiceMachPort + 185 (CoreFoundation) [0x92fe0f89]
                            12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x982fa7d2]
                             *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Binary Images:
                  0x1000 -          0x17b2ff3  com.macromedia.fireworks Adobe Fireworks CS6 version 12.0.0.236 (12.0.0) <2F0A75BA-AD91-EA3C-EFBF-9218722A0DF5> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
               0x2e8f000 -          0x300bff3  com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <464E11C2-11BF-EED9-445F-B110D65E1944> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
               0x9305000 -          0x940dfff  libPowerPlant2.dylib <97FD0C33-9BA8-83BC-CD83-97E5A5297ADA> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/Frameworks/libPowerPlant2.dylib
              0x17735000 -         0x1775cffb  ServiceManager-Launcher.dylib <4EEAF886-0B48-9FF4-BE65-41E222123A50> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
              0x1ab00000 -         0x1ba48fcb  com.adobe.ape.engine 3.3.8.19346 (3.3.8.19346) <FB642021-E854-27B0-9C15-E3567B4F56B9> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
              0x1cf75000 -         0x1d60affb  com.macromedia.Flash Player.authplaylib 10.0.0.508 (1.0.1d333) <02A2245F-4883-4AA8-B06C-47704216613B> /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/PlugIns/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib
              0x92dc0000 -         0x92e7dfeb  libsystem_c.dylib <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
              0x92faf000 -         0x93197ffb  com.apple.CoreFoundation 6.8 (744.18) <68AFEE40-0078-347E-9DEE-32CFE0062A10> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
              0x935a5000 -         0x938aaff7  com.apple.CoreServices.CarbonCore 1037.5 (1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
              0x982e8000 -         0x98302ffc  libsystem_kernel.dylib <70C520E8-0394-3DFB-823B-FE8C251C169A> /usr/lib/system/libsystem_kernel.dylib
              0x993f9000 -         0x997dcfff  com.apple.HIToolbox 2.0 <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
              0x9a587000 -         0x9a599ff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         1Password Helper [229]
    Path:            /Applications/1Password.app/Contents/Library/LoginItems/1Password Helper.app/Contents/MacOS/1Password Helper
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean
    Task size:       3291 pages
    Process:         1PasswordAgent [188]
    Path:            /Users/USER/Library/Application Support/1Password/*/1PasswordAgent.app/Contents/MacOS/1PasswordAgent
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Task size:       4806 pages
    Process:         accountsd [194]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean (allows idle exit)
    Task size:       1364 pages
      Thread 0x6fd      DispatchQueue 1          priority 31       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (accountsd + 3048) [0x101fabbe8]
          12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
            12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
              12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                 *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x71f      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x101fab000 -        0x101fabfff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff949b8000 -     0x7fff949bbff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AdobeCrashDaemon [719]
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemon.app/Co ntents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Fireworks CS6 [717]
    UID:             502
    Task size:       1083 pages (+1)
    CPU Time:        0.005s
    Process:         AirPort Base Station Agent [232]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean
    Task size:       515 pages
      Thread 0xa23      DispatchQueue 1          priority 31       
      12 ??? (AirPort Base Station Agent + 3676) [0x10598ce5c]
        12 ??? (AirPort Base Station Agent + 71073) [0x10599d5a1]
          12 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8c1ffdd1]
            12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
              12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                  12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                   *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xa24      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0xa2f      priority 31       
      12 thread_start + 13 (libsystem_c.dylib) [0x7fff89c951e1]
        12 _pthread_start + 327 (libsystem_c.dylib) [0x7fff89ca87a2]
          12 __select + 10 (libsystem_kernel.dylib) [0x7fff8914b322]
           *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x10598c000 -        0x1059a2fff  com.apple.AirPortBaseStationAgent 2.0 (200.4) <76A9C7FD-FFC5-3AB2-B7FD-9349F8AB5F2D> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c94000 -     0x7fff89d60ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         Android File Transfer Agent [220]
    Path:            /Users/USER/Library/Application Support/Google/*/Android File Transfer Agent.app/Contents/MacOS/Android File Transfer Agent
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       803 pages
    Note:            Throttled by external source
    Process:         appleeventsd [70]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       678 pages
      Thread 0x2ee      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2ef      DispatchQueue 7          priority 31       
      12 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8d97dd85]
        12 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8914b566]
         *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x10614b000 -        0x10614bfff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleIDAuthAgent [176]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean (allows idle exit)
    Task size:       492 pages
      Thread 0x6e3      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x6e5      DispatchQueue 7          priority 31       
      12 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8d97dd85]
        12 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8914b566]
         *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0xbf4      DispatchQueue 16         priority 31       
      12 start_wqthread + 13 (libsystem_c.dylib) [0x7fff89c951d1]
        12 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff89caad0b]
          12 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8d97f1c3]
            12 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8d97f2f1]
              12 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x7fff8d97f448]
                12 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x7fff8d97f305]
                  12 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x7fff8d98029b]
                    12 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8d97e0b6]
                      12 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x7fff8d98296f]
                        12 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8d97e0b6]
                          12 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8d981f01]
                            12 ??? (AppleIDAuthAgent + 9227) [0x10715d40b]
                              12 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff891496c2]
                               *12 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Binary Images:
             0x10715b000 -        0x10718bfff  AppleIDAuthAgent <91A3B8DC-AD42-399C-9A44-413CF8DF2CA4> /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c94000 -     0x7fff89d60ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleSpell [723]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             502
    Sudden Term:     Clean
    Task size:       1194 pages
      Thread 0x4421     DispatchQueue 1          priority 46       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (AppleSpell + 7271) [0x10d28dc67]
          12 -[NSSpellServer run] + 73 (Foundation) [0x7fff8d006516]
            12 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8c1ffdd1]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4424     DispatchQueue 2          priority 48       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x10d28c000 -        0x10d341ff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ce84000 -     0x7fff8d1e1ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff949b8000 -     0x7fff949bbff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         apsd [193]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2110 pages
      Thread 0x6ea      DispatchQueue 1          priority 31       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (apsd + 21734) [0x1070ed4e6]
          12 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8ceb775a]
            12 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8cf1ef5e]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x710      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x7c5      priority 63       
      12 thread_start + 13 (libsystem_c.dylib) [0x7fff89c951e1]
        12 _pthread_start + 327 (libsystem_c.dylib) [0x7fff89ca87a2]
          12 __NSThread__main__ + 1345 (Foundation) [0x7fff8cf19cd2]
            12 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8cebbb66]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x7cc      priority 31       
      12 thread_start + 13 (libsystem_c.dylib) [0x7fff89c951e1]
        12 _pthread_start + 327 (libsystem_c.dylib) [0x7fff89ca87a2]
          12 __select + 10 (libsystem_kernel.dylib) [0x7fff8914b322]
           *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x1070e8000 -        0x107166ff7  apsd <44247DBB-E2FB-3858-9CDD-F5C3C5FBAA6A> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c94000 -     0x7fff89d60ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
          0x7fff8c1bc000 -     0x7fff8c3a6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ce84000 -     0x7fff8d1e1ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff949b8000 -     0x7fff949bbff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         autofsd [74]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       469 pages
      Thread 0x2e2      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]
         *12 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2e3      DispatchQueue 7          priority 31       
      12 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8d97dd85]
        12 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8914b566]
         *12 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x10d596000 -        0x10d597fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff89139000 -     0x7fff89154ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8d97c000 -     0x7fff8d991ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         BBDaemon [77]
    Path:            /Library/Application Support/BlackBerry/BBDaemon
    Architecture:    i386
    Parent:          launchd [1]
    UID:             0
    Task size:       469 pages (-2)
    Process:         BBLaunchAgent.app [184]
    Path:            /Library/Application Support/BlackBerry/BBLaunchAgent.app
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       716 pages
    CPU Time:        0.001s
    Process:         BlackBerry-Link-Helper-Agent [183]
    Path:            /Library/Application Support/BlackBerry/BlackBerry-Link-Helper-Agent.app/Contents/MacOS/BlackBerry-Link-Helper -Agent
    Architecture:    i386
    Parent:          launchd [146]
    UID:             502
    Task size:       6657 pages
    Process:         blued [37]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1339 pages
      Thread 0x259      DispatchQueue 1          priority 31       
      12 start + 1 (libdyld.dylib) [0x7fff949ba7e1]
        12 ??? (blued + 169421) [0x10debc5cd]
          12 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8ceb775a]
            12 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8cf1ef5e]
              12 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8c1f10e2]
                12 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8c1f1916]
                  12 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8c1ec233]
                    12 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89149686]
                     *12 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x25a      DispatchQueue 2          priority 33       
      12 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8d9809ee]
        12 kevent + 10 (libsystem_kernel.dylib) [0x7fff8914bd16]

  • Safari 6.1.6 freezes with os 10.7.5

    Safari keeps freezing and I have to Force Quit every time.  Saw a previous post and found system log showing spindump and a hang report which is quite lengthy.  What's the next step to learn why it keeps hanging?

    Date/Time:       2015-01-15 14:02:16 -0500
    OS Version:      10.7.5 (Build 11G63)
    Architecture:    x86_64
    Report Version:  9
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         6.1.6 (7537.78.2)
    Build Version:   1
    Project Name:    WebBrowser
    Source Version:  7537078002000000
    Parent:          launchd [285]
    PID:             1376
    Event:           hang
    Duration:        3.29s
    Steps:           34 (100ms sampling interval)
    Pageins:         63
    Pageouts:        0
    Process:         Safari [1376] (zombie)
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    UID:             501
      Thread 0x2f61a      DispatchQueue 1
      User stack:
        33 ??? (in Safari) [0x10d926f2c]
          33 SafariMain + 266 (in Safari) [0x10db1c47c]
            33 NSApplicationMain + 867 (in AppKit) [0x7fff8cbeaeac]
              33 -[NSApplication run] + 470 (in AppKit) [0x7fff8c96e9b9]
                33 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 (in Safari) [0x10d9874d5]
                  33 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff8c97207d]
                    33 _DPSNextEvent + 659 (in AppKit) [0x7fff8c972779]
                      33 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8c17d3fa]
                        33 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8c17d56d]
                          33 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8c1762bf]
                            33 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                              33 __CFRunLoopRun + 905 (in CoreFoundation) [0x7fff8ab5ab49]
                                33 __CFRunLoopDoSources0 + 253 (in CoreFoundation) [0x7fff8ab33d5d]
                                  33 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (in CoreFoundation) [0x7fff8ab344f1]
                                    33 WebCore::RunLoop::performWork(void*) + 34 (in WebCore) [0x10ed201b2]
                                      33 WebCore::RunLoop::performWork() + 270 (in WebCore) [0x10ed202de]
                                        33 CoreIPC::Connection::dispatchOneMessage() + 106 (in WebKit2) [0x10e8e2ee4]
                                          33 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101 (in WebKit2) [0x10e8e2fbb]
                                            33 WebKit::WebProcessProxy::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 46 (in WebKit2) [0x10e8f1884]
                                              33 WebKit::WebContext::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 13 (in WebKit2) [0x10e8ed4f5]
                                                33 CoreIPC::MessageReceiverMap::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 132 (in WebKit2) [0x10e8e3170]
                                                  33 WebKit::WebContext::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 199 (in WebKit2) [0x10e90b4e9]
                                                    33 WebKit::WebContextInjectedBundleClient::didReceiveMessageFromInjectedBundle(Web Kit::WebContext*, ***::String const&, WebKit::APIObject*) + 115 (in WebKit2) [0x10e90b72f]
                                                      33 _ZN6Safari2WKL35didReceiveMessageFromInjectedBundleEPK15OpaqueWKContextPK14Opaq ueWKStringPKvS8_ + 90 (in Safari) [0x10da1f042]
                                                        33 Safari::SnapshotFetcher::didReceiveMessageFromInjectedBundle(Safari::WK::Contex t const&, Safari::WK::String const&, Safari::WK::Type const&) + 164 (in Safari) [0x10db5d072]
                                                          33 Safari::SnapshotFetcher::snapshotTaken(Safari::WK::Image, Safari::WK::String) + 113 (in Safari) [0x10db5c22d]
                                                            33 Safari::SnapshotFetcher::fetchNextInQueue() + 165 (in Safari) [0x10db5bef3]
                                                              33 Safari::SnapshotFetcher::fetchRequest(***::RefPtr<Safari::OffscreenSnapshotRequ est>) + 104 (in Safari) [0x10db5bf90]
                                                                33 Safari::SnapshotFetcher::initOffscreenWebView(CGSize const&) + 110 (in Safari) [0x10db5c08e]
                                                                  33 -[WKView(Private) initWithFrame:contextRef:pageGroupRef:] + 59 (in WebKit2) [0x10e8da3df]
                                                                    33 -[WKView(Private) initWithFrame:contextRef:pageGroupRef:relatedToPage:] + 467 (in WebKit2) [0x10e8d0538]
                                                                      33 WebKit::WebContext::createWebPage(WebKit::PageClient*, WebKit::WebPageGroup*, WebKit::WebPageProxy*) + 158 (in WebKit2) [0x10e8d13a8]
                                                                        33 WebKit::WebProcessProxy::createWebPage(WebKit::PageClient*, WebKit::WebContext*, WebKit::WebPageGroup*) + 82 (in WebKit2) [0x10e8d1482]
                                                                          33 ??? [0x7fb612c50290]
                                                                            33 WebPageProxy_ctor_helper(void*, unsigned long long) + 115 (in RapportDaishi.dylib) [0x111c263e3]
                                                                              33 web_page_monitor::create_monitor(void*, unsigned long long) + 203 (in RapportDaishi.dylib) [0x111c2b96b]
                                                                                33 counted_ptr<web_page_monitor>::operator=(counted_ptr<web_page_monitor> const&) + 61 (in RapportDaishi.dylib) [0x111c27953]
                                                                                  33 web_page_monitor::~web_page_monitor() + 92 (in RapportDaishi.dylib) [0x111c2ad8c]
                                                                                    33 generic_reader_writer_lock_base<grw_data_holder*, crisec_guard>::acquire_writer(bool) + 81 (in trf.dylib) [0x111c9a411]
                                                                                       33 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a3856b6]
      Kernel stack:
        33 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff8000234650]
        1 return_from_trap + 156 (in mach_kernel) [0xffffff80002da52c]
          1 i386_astintr + 42 (in mach_kernel) [0xffffff80002c3d3a]
            1 ast_taken + 211 (in mach_kernel) [0xffffff800021e143]
              1 bsd_ast + 837 (in mach_kernel) [0xffffff8000553755]
                1 postsig + 632 (in mach_kernel) [0xffffff8000551d18]
                  1 exit1 + 425 (in mach_kernel) [0xffffff8000544d49]
                    1 task_terminate_internal + 264 (in mach_kernel) [0xffffff8000237868]
                      1 thread_terminate_internal + 220 (in mach_kernel) [0xffffff800023cb5c]
                        1 thread_wait + 166 (in mach_kernel) [0xffffff8000230146]
                          1 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f42b]
                            1 thread_continue + 1661 (in mach_kernel) [0xffffff800022f1ad]
                              1 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c2939]
      Thread 0x2f630    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 exception_handler::exception_messages_handler(void*) + 167 (in RapportUtil1.dylib) [0x11220de27]
              33 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        33 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a480]
      Thread 0x2f631    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 mig_rpc_server::server_working_thread(void*) + 67 (in RapportDaishi.dylib) [0x111c32393]
              33 mach_msg_server + 641 (in libsystem_kernel.dylib) [0x7fff8a38531c]
                33 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        33 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a480]
      Thread 0x2f632    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 bp_heartbeat_thread + 392 (in RapportUtil1.dylib) [0x112156948]
              33 usleep + 53 (in libsystem_c.dylib) [0x7fff8c4a5bb5]
                33 __semwait_signal + 10 (in libsystem_kernel.dylib) [0x7fff8a386e42]
      Kernel stack:
        34 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff8000234650]
      Thread 0x2f633    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 active_monitor_finish_thread(void*) + 69 (in RapportDaishi.dylib) [0x111c26275]
              33 web_page_monitor::active_monitor() + 42 (in RapportDaishi.dylib) [0x111c275ea]
                33 generic_reader_writer_lock_base<grw_data_holder*, crisec_guard>::acquire_reader(bool) + 85 (in trf.dylib) [0x111c9a5b1]
                  33 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a3856b6]
      Kernel stack:
        34 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff8000234650]
      Thread 0x2f637    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x10e1d3a2f]
              33 WebCore::IconDatabase::iconDatabaseSyncThread() + 303 (in WebCore) [0x10ecfabef]
                33 WebCore::IconDatabase::syncThreadMainLoop() + 491 (in WebCore) [0x10ecfdfdb]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f63d    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 thread_fun + 24 (in QuartzCore) [0x7fff84fa3d35]
              33 CA::Render::Server::server_thread(void*) + 184 (in QuartzCore) [0x7fff84fa3df5]
                33 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x2f63e    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 __NSThread__main__ + 1575 (in Foundation) [0x7fff8b1896a2]
              33 -[NSThread main] + 68 (in Foundation) [0x7fff8b18972a]
                33 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8b194fd7]
                  33 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                    33 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                      33 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                        33 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x2f684    
      User stack:
        33 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c4f2b85]
          33 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8a387192]
      Kernel stack:
        34 workqueue_mark_exiting + 1408 (in mach_kernel) [0xffffff80005a50b0]
      Thread 0x2f685    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x10e1d3a2f]
              33 JSC::BlockAllocator::blockFreeingThreadMain() + 261 (in JavaScriptCore) [0x10e1de1b5]
                33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f686    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x10e1d3a2f]
              33 JSC::GCThread::gcThreadMain() + 88 (in JavaScriptCore) [0x10e1deac8]
                33 JSC::GCThread::waitForNextPhase() + 119 (in JavaScriptCore) [0x10e1dec37]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f68b    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10 (in RapportUtil1.dylib) [0x1121dc61a]
              33 async_tasks_scheduler::work() + 612 (in trf.dylib) [0x111c9cf8e]
                33 posix_waitable_condition::wait(int) + 262 (in trf.dylib) [0x111c69bdc]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f68f    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x10e1d3a2f]
              33 JSC::BlockAllocator::blockFreeingThreadMain() + 261 (in JavaScriptCore) [0x10e1de1b5]
                33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f690    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x10e1d3a2f]
              33 JSC::GCThread::gcThreadMain() + 88 (in JavaScriptCore) [0x10e1deac8]
                33 JSC::GCThread::waitForNextPhase() + 119 (in JavaScriptCore) [0x10e1dec37]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f691    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZL13startIOThreadPv + 148 (in CoreVideo) [0x7fff903e93e9]
              33 CVDisplayLink::runIOThread() + 710 (in CoreVideo) [0x7fff903e96c8]
                33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f697    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10 (in RapportUtil1.dylib) [0x1121dc61a]
              33 async_tasks_scheduler::work() + 612 (in trf.dylib) [0x111c9cf8e]
                33 posix_waitable_condition::wait(int) + 262 (in trf.dylib) [0x111c69bdc]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f698    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10 (in RapportUtil1.dylib) [0x1121dc61a]
              33 async_tasks_scheduler::work() + 612 (in trf.dylib) [0x111c9cf8e]
                33 posix_waitable_condition::wait(int) + 262 (in trf.dylib) [0x111c69bdc]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f6c4    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 __select + 10 (in libsystem_kernel.dylib) [0x7fff8a386df2]
      Kernel stack:
        34 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Thread 0x2f6d1    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x10e1d3a2f]
              33 Safari::MessageRunLoop::threadBody() + 119 (in Safari) [0x10dadbe6f]
                33 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                  33 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                    33 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                      33 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x2fc1d    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10 (in RapportUtil1.dylib) [0x1121dc61a]
              33 async_tasks_scheduler::work() + 612 (in trf.dylib) [0x111c9cf8e]
                33 posix_waitable_condition::wait(int) + 262 (in trf.dylib) [0x111c69bdc]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2fc26    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10 (in RapportUtil1.dylib) [0x1121dc61a]
              33 async_tasks_scheduler::work() + 612 (in trf.dylib) [0x111c9cf8e]
                33 posix_waitable_condition::wait(int) + 262 (in trf.dylib) [0x111c69bdc]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2fcfe    
      User stack:
      Kernel stack:
        34 workqueue_mark_exiting + 880 (in mach_kernel) [0xffffff80005a4ea0]
      Thread 0x2fd1d    
      User stack:
        33 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          33 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            33 posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10 (in RapportUtil1.dylib) [0x1121dc61a]
              33 async_tasks_scheduler::work() + 612 (in trf.dylib) [0x111c9cf8e]
                33 posix_waitable_condition::wait(int) + 262 (in trf.dylib) [0x111c69bdc]
                  33 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a386bca]
      Kernel stack:
        34 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x2f629      DispatchQueue 2
      User stack:
        33 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          33 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        33 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x2f629    
      Kernel stack:
        1 thread_funnel_set + 256 (in mach_kernel) [0xffffff800023a480]
      Binary Images:
             0x10d926000 -        0x10d926fff  com.apple.Safari 6.1.6 (7537.78.2) <8E17A314-6C01-3DA9-B716-8506A5F3C5AA> /Applications/Safari.app/Contents/MacOS/Safari
             0x10d92c000 -        0x10de65fff  com.apple.Safari.framework 7537 (7537.78.2) <1104F16E-0307-3450-BF85-4C6D65C22F24> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
             0x10e1ca000 -        0x10e571ff7  com.apple.JavaScriptCore 7537 (7537.78.1) <2EB02387-CA74-346C-9D51-D1E0C405FFF4> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
             0x10e8b8000 -        0x10eb21ff7  com.apple.WebKit2 7537 (7537.78.2) <BF0D7E05-0F7B-3791-B83B-EB5D6B989D28> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
             0x10ecf5000 -        0x10fda2fff  com.apple.WebCore 7537 (7537.78.1) <20E51224-E7C0-3B3C-AEE8-EB11D6786C42> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
             0x111c1f000 -        0x111c48fff  RapportDaishi.dylib ??? (???) <51E10FA1-C4BF-3177-B568-D2CFECA4B1CD> /Library/Rapport/*/RapportDaishi.dylib
             0x111c66000 -        0x111d04fef  trf.dylib ??? (???) <9DF6FC64-F94C-351A-B8B9-E5452D73A1EB> /Library/Rapport/*/trf.dylib
             0x11213f000 -        0x1123e9fef  RapportUtil1.dylib ??? (???) <9B41F8C1-5421-3D35-91C5-2AA04CA00272> /Library/Rapport/*/RapportUtil1.dylib
          0x7fff84fa1000 -     0x7fff85141ff7  com.apple.QuartzCore 1.7 (270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b12f000 -     0x7fff8b448fff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8c174000 -     0x7fff8c4a0fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8c4a1000 -     0x7fff8c57efef  libsystem_c.dylib ??? (???) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
          0x7fff8c96a000 -     0x7fff8d570fff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff903e7000 -     0x7fff90410fff  com.apple.CoreVideo 1.7 (70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    Process:         Activity Monitor [311]
    Path:            /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor
    Architecture:    x86_64
    UID:             501
      Thread 0x7c3        DispatchQueue 1
      User stack:
        34 ??? (in Activity Monitor) [0x106ca177c]
          34 NSApplicationMain + 867 (in AppKit) [0x7fff8cbeaeac]
            34 -[NSApplication run] + 470 (in AppKit) [0x7fff8c96e9b9]
              34 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff8c97207d]
                34 _DPSNextEvent + 659 (in AppKit) [0x7fff8c972779]
                  34 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8c17d3fa]
                    34 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8c17d56d]
                      34 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8c1762bf]
                        34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                          34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                            34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                              34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0xdcb        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x106ca0000 -        0x106ccdfff  com.apple.ActivityMonitor 10.7.4 (718) <8E691413-5892-3BE8-97D6-B62D873C903E> /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8c174000 -     0x7fff8c4a0fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8c96a000 -     0x7fff8d570fff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         activitymonitord [408]
    Path:            /usr/libexec/activitymonitord
    Architecture:    x86_64
    UID:             0
      Thread 0x1035     
      User stack:
        34 ??? (in activitymonitord) [0x10f768ccc]
          34 ??? (in activitymonitord) [0x10f76a49b]
            34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x10f768000 -        0x10f770ff7  activitymonitord ??? (???) <512E7906-3DBC-3F2B-932B-12AC84F03BDA> /usr/libexec/activitymonitord
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    Process:         Address Book [306]
    Path:            /Applications/Address Book.app/Contents/MacOS/Address Book
    Architecture:    x86_64
    UID:             501
      Thread 0x7be        DispatchQueue 1
      User stack:
        34 ??? (in Address Book) [0x105fc6dfc]
          34 NSApplicationMain + 867 (in AppKit) [0x7fff8cbeaeac]
            34 -[NSApplication run] + 470 (in AppKit) [0x7fff8c96e9b9]
              34 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff8c97207d]
                34 _DPSNextEvent + 659 (in AppKit) [0x7fff8c972779]
                  34 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8c17d3fa]
                    34 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8c17d56d]
                      34 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8c1762bf]
                        34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                          34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                            34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                              34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0xb7f        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x1a8b     
      User stack:
        34 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          34 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            34 __NSThread__main__ + 1575 (in Foundation) [0x7fff8b1896a2]
              34 -[NSThread main] + 68 (in Foundation) [0x7fff8b18972a]
                34 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8b194fd7]
                  34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                    34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                      34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                        34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x230f     
      User stack:
        34 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c4f2b75]
          34 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c4ef8bf]
            34 __select + 10 (in libsystem_kernel.dylib) [0x7fff8a386df2]
      Kernel stack:
        34 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Binary Images:
             0x105fc5000 -        0x106008ff7  com.apple.AddressBook 6.1.3 (1091) <4D963152-7515-3570-A08C-D33D62BAD729> /Applications/Address Book.app/Contents/MacOS/Address Book
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b12f000 -     0x7fff8b448fff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8c174000 -     0x7fff8c4a0fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8c4a1000 -     0x7fff8c57efef  libsystem_c.dylib ??? (???) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
          0x7fff8c96a000 -     0x7fff8d570fff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         aosnotifyd [452]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    UID:             0
      Thread 0x1b11       DispatchQueue 1
      User stack:
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x1cf6       DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x10a676000 -        0x10a6b7fff  aosnotifyd ??? (???) <5FCF666E-8567-3802-BFBF-7B8434FFFD12> /usr/sbin/aosnotifyd
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    Process:         applepushserviced [83]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    Architecture:    x86_64
    UID:             0
      Thread 0x2a6        DispatchQueue 1
      User stack:
        34 ??? (in applepushserviced) [0x1060038d4]
          34 ??? (in applepushserviced) [0x1060039b8]
            34 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8b13ae67]
              34 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8b13af7b]
                34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                  34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                    34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                      34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x305        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x7f9      
      User stack:
      Kernel stack:
        34 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Binary Images:
             0x106002000 -        0x106070ff7  applepushserviced ??? (???) <197002A4-5C6F-3816-87AD-CC1D36660A8D> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b12f000 -     0x7fff8b448fff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         AppleSpell [430]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             501
      Thread 0x1555       DispatchQueue 1
      User stack:
        34 ??? (in AppleSpell) [0x101501a7c]
          34 ??? (in AppleSpell) [0x101501d2e]
            34 -[NSSpellServer run] + 74 (in Foundation) [0x7fff8b28bc76]
              34 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8ab6a19f]
                34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                  34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                    34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                      34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x15ae       DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x101500000 -        0x1015bcff7  com.apple.AppleSpell 1.7.1 (131.1) <A994D9F1-C4D8-3361-B0F4-112A7BAED8BD> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b12f000 -     0x7fff8b448fff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         autofsd [81]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x2e6        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x3a2        DispatchQueue 6
      User stack:
        34 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff87398b1c]
          34 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff8a387022]
      Kernel stack:
        34 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Binary Images:
             0x1064e4000 -        0x1064e5fff  autofsd ??? (???) <E0BD130F-E4F9-3CA0-924F-79B3D8491533> /usr/libexec/autofsd
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    Process:         BBDaemon [86]
    Path:            /Library/Application Support/BlackBerry/BBDaemon
    Architecture:    i386
    UID:             0
    Process:         BBLaunchAgent.app [371]
    Path:            /Library/Application Support/BlackBerry/BBLaunchAgent.app
    Architecture:    i386
    UID:             501
    Process:         blued [21]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    UID:             0
      Thread 0x134        DispatchQueue 1
      User stack:
        34 ??? (in blued) [0x10275b9a4]
          34 ??? (in blued) [0x1027924bf]
            34 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8b13ae67]
              34 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8b13af7b]
                34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                  34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                    34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                      34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x141        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x1b9      
      User stack:
      Kernel stack:
        34 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Binary Images:
             0x10275a000 -        0x102813fff  blued ??? (???) <FE392F89-6D67-3015-A6AD-BA96C1FB5EFF> /usr/sbin/blued
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8b12f000 -     0x7fff8b448fff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:         cgpdftoraster [154]
    Path:            /usr/libexec/cups/filter/cgpdftoraster
    Architecture:    x86_64
    UID:             26
      Thread 0x3dd        DispatchQueue 1
      User stack:
      Kernel stack:
        34 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002daea3]
          34 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005ce4cb]
            34 write_nocancel + 194 (in mach_kernel) [0xffffff8000564dc2]
              34 writev + 207 (in mach_kernel) [0xffffff8000564c6f]
                34 read + 3808 (in mach_kernel) [0xffffff80005664e0]
                  34 msleep + 119 (in mach_kernel) [0xffffff8000556217]
                    34 wakeup + 267 (in mach_kernel) [0xffffff8000555bbb]
                      34 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227efa]
                        34 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f42b]
                          34 thread_continue + 1661 (in mach_kernel) [0xffffff800022f1ad]
                            34 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c2939]
      Thread 0x460        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x105063000 -        0x105071fe7  cgpdftoraster ??? (???) <D9118CF7-BEDF-3503-85DB-8BC22C1F3291> /usr/libexec/cups/filter/cgpdftoraster
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    Process:         com.apple.dock.extra [331]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:    x86_64
    UID:             501
      Thread 0x83b        DispatchQueue 1
      User stack:
        34 ??? (in com.apple.dock.extra) [0x10be48474]
          34 xpc_service_main + 448 (in XPCService) [0x7fff86da95ed]
            34 NSApplicationMain + 867 (in AppKit) [0x7fff8cbeaeac]
              34 -[NSApplication run] + 470 (in AppKit) [0x7fff8c96e9b9]
                34 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff8c97207d]
                  34 _DPSNextEvent + 659 (in AppKit) [0x7fff8c972779]
                    34 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8c17d3fa]
                      34 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8c17d56d]
                        34 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8c1762bf]
                          34 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8ab5a486]
                            34 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8ab5ac74]
                              34 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8ab5250c]
                                34 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a38567a]
      Kernel stack:
        34 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x846        DispatchQueue 2
      User stack:
        34 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff87396316]
          34 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a3877e6]
      Kernel stack:
        34 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x10be47000 -        0x10be4bff7  com.apple.dock.extra 1.0 (1) <681AAFB2-BA8C-31CD-AF2E-7423A349615A> /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff86da7000 -     0x7fff86daeff7  com.apple.XPCService 1.3 (1) <68C4DBC9-18C3-3053-96D5-1858B905EAE0> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
          0x7fff87394000 -     0x7fff873a2fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8a370000 -     0x7fff8a390fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab22000 -     0x7fff8acf6ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8c174000 -     0x7fff8c4a0fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8c96a000 -     0x7fff8d570fff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:         configd [16]
    Path:            /usr/libexec/configd
    Architecture:    x86_64
    UID:             0

Maybe you are looking for

  • MacBook Pro won't sync with other devices

    My MacBook pro won't sync with other devices in the house.  My iPad and iPhone sync OK but MacBook won't for some reason.  Can you help?

  • Invoice Due Date is past due but not being selected for payment

    We have 12.1.3. An invoice has a due date of 7/19 in our system. We have run payments several times but it is not being selected. terms are net 30, terms date was 6/19, GL date is 6/28. The invoice has been validated and accounted. Is there something

  • HOW DO I CREATE A SYSTEM TO CONTROL BOOKINGS

    Hi there,     I've designed a hotel's website and now I wanted to design a system to control bookings in that, on the bookings page there would be a chart showing the varieties of rooms available and also the chart must also indicate the rooms alread

  • What cable to I need to power graphics card?

    I bought a Referb 09 Mac Pro. I purchased a Gigabyte HD Radeon 6850. The Power cable that came with that card is obviously for a PC. I just need to know what cable I need and where I can get it Thank You for anyones help

  • How do I Fix DDS Generated Sine Wave That Produces a Periodic Square Wave?

    Hello, I'm an undergraduate researcher with almost no experience dealing with FPGA semantics and other National Instruments hardware in general.  Part of my project revolves around creating a sine wave signal via the FPGA on an sbRIO-9632 that is out