Exception [type: SIGSEGV, Address not mapped to object]

Hi,
I'm working on an Oracle Database 11g Release 11.1.0.6.0 - 64bit Production With the Real Application Clusters option.
I'm trying to execute the below:
      SELECT /*+ CURSOR_SHARING_EXACT */
             vc.id_vehicle, gr.geoRouteId, g.name, round(g.length) length_, gr.active,
             g.id_user id_user_georoute_owner, gr.grBindUserId id_user_bind_owner,
             (SELECT count(*) FROM dual WHERE XMLEXISTS('$XML_ALM/user/alarmwhen[@direction="out"]' passing gr.geoRouteUser AS "XML_ALM") = 1) alm_out
        FROM configurator.t_vehicle_configuration vc, dispatch.v_georoute g,
             xmltable('$XML/vehicleconf/GeoRoute/geoRoute[@active="1"]'
               passing vc.x_configuration AS "XML"
               columns geoRouteId   number  path '@id',
                       active       number  path '@active',
                       grBindUserId number  path '@id_user',
                       geoRouteUser xmltype path 'user'
             ) gr
       WHERE vc.id_vehicle = 453
         AND g.id_georoute = gr.geoRouteId;but after few seconds I got the error in the object.
The alert log says:
+Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x38] [PC:0x483CEFD, evahtr()+495]+
Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB2/trace/EVODB2_ora_13769.trc  (incident=301686):
+ORA-07445: exception encountered: core dump [evahtr()+495] [SIGSEGV] [ADDR:0x38] [PC:0x483CEFD] [Address not mapped to object] []+
Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB2/incident/incdir_301686/EVODB2_ora_13769_i301686.trc
The trace doesn't say more:
+ORA-07445: exception encountered: core dump [evahtr()+495] [SIGSEGV] [ADDR:0x38] [PC:0x483CEFD] [Address not mapped to object] []+
+========= Dump for incident 301686 (ORA 7445 [evahtr()+495]) ========+
----- Beginning of Customized Incident Dump(s) -----
+Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x38] [PC:0x483CEFD, evahtr()+495]+
The strange stuff is that if I remove the
(SELECT count(*) FROM dual WHERE XMLEXISTS('$XML_ALM/user/alarmwhen[@direction="out"]' passing gr.geoRouteUser AS "XML_ALM") = 1) alm_out
from the query, there is no problem.
Do you have any suggestion?
Thanks in advance,
Samuel

The strange stuff is that if I remove the
(SELECT count(*) FROM dual WHERE XMLEXISTS('$XML_ALM/user/alarmwhen[@direction="out"]' passing gr.geoRouteUser AS "XML_ALM") = 1) alm_out
from the query, there is no problem.That's probably because you're not using XMLExists correctly.
The function returns a boolean value so you don't need to test for 1 or 0 as we had to with existsNode function before :
http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28369/xdb04cre.htm#sthref360
It's also probably better to use a CASE expression instead of a subquery :
SELECT /*+ CURSOR_SHARING_EXACT */
       vc.id_vehicle
     , gr.geoRouteId
     , g.name
     , round(g.length) length_
     , gr.active
     , g.id_user id_user_georoute_owner
     , gr.grBindUserId id_user_bind_owner
     , case when XMLExists('$XML_ALM/user/alarmwhen[@direction="out"]' passing gr.geoRouteUser AS "XML_ALM")
            then 1
            else 0
       end as alm_out
FROM configurator.t_vehicle_configuration vc
   , dispatch.v_georoute g
   , xmltable('$XML/vehicleconf/GeoRoute/geoRoute[@active="1"]'
               passing vc.x_configuration AS "XML"
               columns geoRouteId   number  path '@id',
                       active       number  path '@active',
                       grBindUserId number  path '@id_user',
                       geoRouteUser xmltype path 'user'
     ) gr
WHERE vc.id_vehicle = 453
AND g.id_georoute = gr.geoRouteId
;Even better, you can test the condition directly in the COLUMNS clause with fn:exists XPath function.
For example, something like this :
SQL> with sample_data as (
  2    select xmltype('<root>
  3  <row><item>1</item><other id="a"/><other id="x"/></row>
  4  <row><item>2</item><other id="b"/></row>
  5  <row><item>3</item><other id="b"/></row>
  6  </root>') doc
  7    from dual
  8  )
  9  select x.*
10  from sample_data t
11     , xmltable(
12         '/root/row'
13         passing t.doc
14         columns item number path 'item',
15                 flag number path 'exists(other[@id="x"])'
16       ) x
17  ;
      ITEM       FLAG
         1          1
         2          0
         3          0

Similar Messages

  • DG Observer triggering SIGSEGV Address not mapped to object errors in alert log

    Hi,
    I've got a Data Guard configuration using two 11.2.0.3 single instance databases.  The configuration has been configured for automatic failover and I have an observer running on a separate box.
    This fast-start failover configuration has been in place for about a month and in the last week, numerous SEGSEGV (address not mapped to object) errors are reported in the alert log.  This is happening quite frequently (every 4/5 minutes or so).
    The corresponding trace files show the process triggering the error coming from the observer.
    Has anyone experienced this problem?  I'm at my wits end trying to figure out how to fix the configuration to eliminate this error.
    I must also note that even though this error is occurring a lot, it doesn't seem to be affecting any of the database functionality.
    Help?
    Thanks in advance.
    Beth

    Hi..   The following is the alert log message, the traced file generated, and the current values of the data guard configuration.  In addition, as part of my research, I attempted to apply patch 12615660 which did not take care of the issue.  I also set the inbound_connection_timeout parameter to 0 and that didn't help either.  I'm still researching but any pointer in the right direction is very much appreciated.
    Error in Alert Log
    Thu Apr 09 10:28:59 2015
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x9] [PC:0x85CE503, nstimexp()+71] [flags: 0x0, count: 1]
    Errors in file /u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/trace/<SID>_ora_29902.trc  (incident=69298):
    ORA-07445: exception encountered: core dump [nstimexp()+71] [SIGSEGV] [ADDR:0x9] [PC:0x85CE503] [Address not mapped to object] []
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Thu Apr 09 10:29:02 2015
    Sweep [inc][69298]: completed
    Trace file:
    Trace file /u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/trace/<SID>_ora_29902.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning and Oracle Label Security options
    ORACLE_HOME = /u01/app/oracle/product/11.2.0.3/dbhome_1
    System name:    Linux
    Node name:      <host name>
    Release:        2.6.32-431.17.1.el6.x86_64
    Version:        #1 SMP Wed May 7 14:14:17 CDT 2014
    Machine:        x86_64
    Instance name: <SID>
    Redo thread mounted by this instance: 1
    Oracle process number: 19
    Unix process pid: 29902, image: oracle@<host name>
    *** 2015-04-09 10:28:59.966
    *** SESSION ID:(416.127) 2015-04-09 10:28:59.966
    *** CLIENT ID:() 2015-04-09 10:28:59.966
    *** SERVICE NAME:(<db_unq_name>) 2015-04-09 10:28:59.966
    *** MODULE NAME:(dgmgrl@<observer host> (TNS V1-V3)) 2015-04-09 10:28:59.966
    *** ACTION NAME:() 2015-04-09 10:28:59.966
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x9] [PC:0x85CE503, nstimexp()+71] [flags: 0x0, count: 1]
    DDE: Problem Key 'ORA 7445 [nstimexp()+71]' was flood controlled (0x6) (incident: 69298)
    ORA-07445: exception encountered: core dump [nstimexp()+71] [SIGSEGV] [ADDR:0x9] [PC:0x85CE503] [Address not mapped to object] []
    ssexhd: crashing the process...
    Shadow_Core_Dump = PARTIAL
    ksdbgcra: writing core file to directory '/u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/cdump'
    Data Guard Configuration
    DGMGRL> show configuration verbose;
    Configuration - dg_config
      Protection Mode: MaxPerformance
      Databases:
        dbprim - Primary database
        dbstby - (*) Physical standby database
      (*) Fast-Start Failover target
      Properties:
        FastStartFailoverThreshold      = '30'
        OperationTimeout                = '30'
        FastStartFailoverLagLimit       = '180'
        CommunicationTimeout            = '180'
        FastStartFailoverAutoReinstate  = 'TRUE'
        FastStartFailoverPmyShutdown    = 'TRUE'
        BystandersFollowRoleChange      = 'ALL'
    Fast-Start Failover: ENABLED
      Threshold:        30 seconds
      Target:           dbstby
      Observer:         observer_host
      Lag Limit:        180 seconds
      Shutdown Primary: TRUE
      Auto-reinstate:   TRUE
    Configuration Status:
    SUCCESS
    DGMGRL> show database verbose dbprim
    Database - dbprim
      Role:            PRIMARY
      Intended State:  TRANSPORT-ON
      Instance(s):
        DG_CONFIG
      Properties:
        DGConnectIdentifier             = 'dbprim'
        ObserverConnectIdentifier       = ''
        LogXptMode                      = 'ASYNC'
        DelayMins                       = '0'
        Binding                         = 'optional'
        MaxFailure                      = '0'
        MaxConnections                  = '1'
        ReopenSecs                      = '300'
        NetTimeout                      = '30'
        RedoCompression                 = 'DISABLE'
        LogShipping                     = 'ON'
        PreferredApplyInstance          = ''
        ApplyInstanceTimeout            = '0'
        ApplyParallel                   = 'AUTO'
        StandbyFileManagement           = 'MANUAL'
        ArchiveLagTarget                = '0'
        LogArchiveMaxProcesses          = '4'
        LogArchiveMinSucceedDest        = '1'
        DbFileNameConvert               = ''
        LogFileNameConvert              = ''
        FastStartFailoverTarget         = 'dbstby'
        InconsistentProperties          = '(monitor)'
        InconsistentLogXptProps         = '(monitor)'
        SendQEntries                    = '(monitor)'
        LogXptStatus                    = '(monitor)'
        RecvQEntries                    = '(monitor)'
        SidName                         = ‘<sid>’
        StaticConnectIdentifier         = '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<db host name>)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=<service_name>)(INSTANCE_NAME=<sid>)(SERVER=DEDICATED)))'
        StandbyArchiveLocation          = 'USE_DB_RECOVERY_FILE_DEST'
        AlternateLocation               = ''
        LogArchiveTrace                 = '0'
        LogArchiveFormat                = '%t_%s_%r.dbf'
        TopWaitEvents                   = '(monitor)'
    Database Status:
    SUCCESS
    DGMGRL> show database verbose dbstby
    Database - dbstby
      Role:            PHYSICAL STANDBY
      Intended State:  APPLY-ON
      Transport Lag:   0 seconds
      Apply Lag:       0 seconds
      Real Time Query: ON
      Instance(s):
        DG_CONFIG
      Properties:
        DGConnectIdentifier             = 'dbstby'
        ObserverConnectIdentifier       = ''
        LogXptMode                      = 'ASYNC'
        DelayMins                       = '0'
        Binding                         = 'optional'
        MaxFailure                      = '0'
        MaxConnections                  = '1'
        ReopenSecs                      = '300'
        NetTimeout                      = '30'
        RedoCompression                 = 'DISABLE'
        LogShipping                     = 'ON'
        PreferredApplyInstance          = ''
        ApplyInstanceTimeout            = '0'
        ApplyParallel                   = 'AUTO'
        StandbyFileManagement           = 'AUTO'
        ArchiveLagTarget                = '0'
        LogArchiveMaxProcesses          = '4'
        LogArchiveMinSucceedDest        = '1'
        DbFileNameConvert               = ''
        LogFileNameConvert              = ''
        FastStartFailoverTarget         = 'dbprim'
        InconsistentProperties          = '(monitor)'
        InconsistentLogXptProps         = '(monitor)'
        SendQEntries                    = '(monitor)'
        LogXptStatus                    = '(monitor)'
        RecvQEntries                    = '(monitor)'
        SidName                         = ‘<sid>’
        StaticConnectIdentifier         = '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<db host name>)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=<service_name>)(INSTANCE_NAME=<sid>)(SERVER=DEDICATED)))'
        StandbyArchiveLocation          = 'USE_DB_RECOVERY_FILE_DEST'
        AlternateLocation               = ''
        LogArchiveTrace                 = '0'
        LogArchiveFormat                = '%t_%s_%r.dbf'
        TopWaitEvents                   = '(monitor)'
    Database Status:
    SUCCESS

  • SIGSEGV, Address not mapped to object] [ADDR:0x38]

    Hi
    I am running Oracle Database 11g Release 11.2.0.1.0 - 64bit on Centos 5.9 64bit. The machine has 128GB RAM and 600GB SAS drives.
    I daily get following in my alert.log and my database stops running queries.
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x38] [PC:0x2503528, pfrln0itinit()+60] [flags: 0x0, count: 2]
    Fri Aug 09 04:57:21 2013
    Sweep [inc][104359]: completed
    Sweep [inc][104358]: completed
    Fri Aug 09 08:35:49 2013
    PMON failed to acquire latch, see PMON dump
    Fri Aug 09 08:36:49 2013
    PMON failed to acquire latch, see PMON dump
    Fri Aug 09 08:38:19 2013
    PMON failed to acquire latch, see PMON dump
    Fri Aug 09 08:39:19 2013
    Some parameters are:
    SQL> show parameter sga
    NAME     TYPE VALUE
    lock_sga     boolean FALSE
    pre_page_sga     boolean FALSE
    sga_max_size     big integer 12G
    sga_target     big integer 12G
    SQL> show parameter memory
    NAME     TYPE VALUE
    hi_shared_memory_address     integer 0
    memory_max_target     big integer 0
    memory_target     big integer 0
    shared_memory_address     integer 0
    cat /proc/sys/kernel/shmmax
    68719476736
    cat /proc/sys/kernel/shmall
    16777216
    I don't have Oracle support contract therefore cannot contact them for help. Can someone please help?
    Habib

    Habib wrote:
    It is doing the same problem just after we put this into production about 3 weeks ago. The machine is hosted at a datacenter and they don't provide Oracle Linux or Red Hat.
    From where I sit you have only two alternatives.
    1) live it what you have now.
    2) pay for a support license & upgrade to supported OS & patched Oracle version
    Nobody here can provide any remedy for what ails this combination.

  • Address not mapped to object

    It comes from alert.log:
    Errors in file /opt/oracle/OraHome1/admin//bdump/owps_s001_29137.trc:
    ORA-07445: exception encountered: core dump [ioc_kprbrct()+72] [SIGSEGV] [Address not mapped to object] [0x4] [] []
    We use OSE to generate HTML pages.
    Why is the database dumped sometimes ?

    It's an OS error. The core dump or trace file will contain information telling you want it was doing and what went wrong. Quite often they map to bugs.
    Normally these things require Oracle support to diagnose although sometimes we can figure it out for ourselves.
    Cheers, APC

  • ORA-07445 : address not mapped to object

    Using a ODBC connection to database server to retrieve database
    schema information. Basically running queries against sys.all
    type tables.
    Rec'd ORA-07445: exception encountered : core dump [Kxspoac( ) +
    6969] [SIGSERGV] [Address not mapped to object] [1]
    Is this a user object lock out issue or just a ODBC and client
    configuration or a serious system issue?
    any input would be appreciated.

    I know the documentation is not as good as it could be but you can still see that your code doesn't look like the example given. Specifically, java is case sensitive, so it should be "write" not "WRITE" and the unix wildcard is * not -.
    Cheers, APC

  • Class type 022 is not defined for object for BATMAS

    Hi Experts,
    while creaitng the LSMW for batch classification,I faced the error during IDOC processing as "Class type 022 is not defined for object".I am using
    Business Object      BUS1001002
    Method               SAVEREPLICA
    Message Type         BATMAS
    Basic Type           BATMAS03
    Pleas guide how to resolve the error.
    Also ,as I intend to make LSMW for batch classifications.Is this the correct way.
    Please guide on this also.
    Regards.

    Hello Jass,
    Symptom
    The BATMAS03 basis type (message type BATMAS) /FB BAPI_BATCH_REPLICATE  cannot transfer any classification information. Please review note 1070634.
    First Option :
    You should first transfer the batmas and then the clfmas idoc.
    Second Option :
    You could create the batch together with classification. Normally the problem is the missing CUOBJ_BM in table MCH1. It is not necessary in all situations that the field have to be filled, but it can be in some cases (And it is better to store the right  information in the corresponding fields). Especially when you transfer batch/classification information in other system the field have to be filled.
    The way to create the batch TOGETHER with classification by using BATMAS IDOC is to set the following parameters correctly :-
    set E1BPBATCHCTRL-DOCLASSIFY to X and fill the segments with relevant classification information
    E1BP3060_ALLOCATION
    E1BP3060_VALUATION_CHAR
    E1BP3060_VALUATION_CURR
    E1BP3060_VALUATION_NUM
    In this case the field mch1-cuobj_bm should be filled with correct CUOBJ. You can also use function module BAPI_BATCH_SAVE_REPLICA to create batches together with classification.
    Hope this information helps
    Regards
    Amber

  • Class type 022 is not defined for object for batmas in LSMW idoc

    Hi Experts,
    while creaitng the LSMW for batch classification,I faced the error during IDOC processing as "Class type 022 is not defined for object".I am using
    Business Object BUS1001002
    Method SAVEREPLICA
    Message Type BATMAS
    Basic Type BATMAS03
    Pleas guide how to resolve the error.
    Also ,as I intend to make LSMW for batch classifications.Is this the correct way.
    Please guide on this also.
    Regards.

    Hi,
    Go to TCode OMCE and check the batch level.
    If batch is activated at material/client level then use class type 023, if it is at plant level the class type 022.

  • Problem 2950 arp address not mapped to a destination port

    I have a problem loosing connectivity to some switch connected directly to my 2950.
    I have the mac address in the arp table but when not working the mac-address is not linked to any port in the show mac-address table.
    Please help

    I think this could be simply a question of aging. The ARP tables are aged out after 4 hours. By contrast, the entries in the MAC forwarding tables are aged out after 5 minutes. All it means is that the host has not sent any frames to or through this particular switch in the last 5 minutes.
    There can be other explanations, but they are rare. For example, if your host is actually a service address in a WLBS cluster configured in unicast mode, then the host will source its frames from a different address from the address it gives in response to an ARP request.
    Another is if you have port security configured with a timeout shorter than your ARP table. You may have reached the maximum permitted MAC addresses. That would also account for your intermittent connectivity.
    But, as I said, these are very particular cases.
    Kevin Dorrell
    Luxembourg

  • SQL Exception : Type LONGINT .....

    Hi,
    I am using deploytool & J2EE 1.3.1...
    I am trying to get a stateless session bean to create/reference a CMP2.0 entity bean.
    I get the following error:
    Context Exception caught = nested exception is: SQL Exception: Type LONGINT does
    not recognize the format of the string 'Compiler'.
    javax.ejb.EJBException: nested exception is: SQL Exception: Type LONGINT does no
    t recognize the format of the string 'Compiler'.
    SQL Exception: Type LONGINT does not recognize the format of the string 'Compile
    r'.
    The create method has a string key (in this case I pass the string "Compiler" and this is received in the ejbCreate method and I store it using the abstract method setName().
    Has anybody any idea what this error means?
    Thanks
    Sean

    Greetings,
    Thanks for the help.
    I am using cloudscape and have told the deploytool to
    generate the SQL.Think of this as being only a "suggestion". The generated SQL is often incorrect, especially if your database schema is pre-existing. After generating the SQL, click on the method names and check the SQL statements for correctness.
    I have given a new Abstract schema name, but still no
    joy.This is really only relevant to your EJB QL. You should still check the mapping between EJB QL and SQL (refer again to the above :).
    Any idea how one syn's up cloudscape and the abstract
    schema?I hope this helps.
    Thanks,
    SeanRegards,
    Tony "Vee Schade" Cook

  • Various programs keep crashing with an error like Exception Type: EXC_BAD_ACCESS (SIGSEGV), and Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000

    I have various programmes that crash across the board with a similar error code like the following. I remember I've had this before, also on my previous MacBook Pro. I already tested memory using two second party programmes, and the (new Apple diagnostics..., which doesn't provide an overview over what's been found/not found??). I would tend to exclude the possibility that my memory fails always after half a year into a new computer. A (non-clean) reinstall (which preserved settings now (since Yosemite??), did not offer any relief. I am very disinclined to do a complete, clean reinstall, as it would take me at least a week or two to get the computer back into my work flow. Cleaning caches etc. did likewise not offer relief... Any suggestions? what is this apple main-thread and how to debug it? Again, this happens to at least 12 different programmes.
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:      KERN_INVALID_ADDRESS at 0x0000000000000018
    Many thanks.

    Dear Linc,
    @1: I may have emptied since most of the crashes, I copy here what appears after entering search string: 'crash':
    07/01/2015 10:38:28.279 com.apple.xpc.launchd[1]: (com.apple.ReportCrash) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    07/01/2015 10:38:28.279 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Self) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    07/01/2015 10:38:32.433 Cinch[331]: 6   CMCrashReporter                     0x00060be5 +[CMCrashReporterGlobal isRunningLeopard] + 25
    07/01/2015 10:38:38.586 Dropbox[339]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    07/01/2015 10:38:58.000 kernel[0]: Sandbox: assistantd(443) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 10:38:58.438 assistantd[443]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7f7f6a7402c0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 10:38:58.000 kernel[0]: Sandbox: com.apple.geod(445) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 10:38:58.504 com.apple.geod[445]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fb8b280da20 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 10:49:54.365 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[495]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    07/01/2015 13:22:12.042 assistantd[7077]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fdaf4201bb0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 13:22:12.219 sandboxd[280]: ([7077]) assistantd(7077) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 13:44:45.487 assistantd[8006]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7f9c0a41e160 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 13:44:45.741 sandboxd[280]: ([8006]) assistantd(8006) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 13:56:02.724 Things[8125]: Call stack:
      0   AppKit                              0x00007fff93a4ba9c -[NSThemeFrame addSubview:] + 107
      1   Things                              0x00000001079b95c1 Things + 710081
      2   Things                              0x0000000107926d50 Things + 109904
      3   AppKit                              0x00007fff933a4745 -[NSWindowTemplate nibInstantiate] + 567
      4   AppKit                              0x00007fff9337973b -[NSIBObjectData instantiateObject:] + 309
      5   AppKit                              0x00007fff9385bd01 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
      6   AppKit                              0x00007fff9336df05 loadNib + 384
      7   AppKit                              0x00007fff938dbf80 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
      8   AppKit                              0x00007fff938dc67d +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
      9   AppKit                              0x00007fff935adfed -[NSWindowController loadWindow] + 313
      10  AppKit                              0x00007fff935b3684 -[NSWindowController window] + 80
      11  AppKit                              0x00007fff935b4821 -[NSWindowController showWindow:] + 36
      12  Things                              0x000000010799ef13 Things + 601875
      13  Things                              0x00000001079a7864 Things + 637028
      14  HockeySDK                           0x0000000107bb00f0 -[BITCrashReportManager startManager] + 371
      15  CoreFoundation                      0x00007fff89bf3cbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      16  CoreFoundation                      0x00007fff89ae51b4 _CFXNotificationPost + 3140
      17  Foundation                          0x00007fff92453ea1 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
      18  AppKit                              0x00007fff9339210b -[NSApplication _postDidFinishNotification] + 291
      19  AppKit                              0x00007fff93391e76 -[NSApplication _sendFinishLaunchingNotification] + 191
      20  AppKit                              0x00007fff9338ec76 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 574
      21  AppKit                              0x00007fff9338e6b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
      22  Foundation                          0x00007fff92473458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
      23  Foundation                          0x00007fff924732c9 _NSAppleEventManagerGenericHandler + 102
      24  AE                                  0x00007fff8c69e99c _Z20aeDispatchAppleEventPK6AEDescPS_jPh + 531
      25  AE                                  0x00007fff8c69e719 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 31
      26  AE                                  0x00007fff8c69e623 aeProcessAppleEvent + 295
      27  HIToolbox                           0x00007fff973b837e AEProcessAppleEvent + 56
      28  AppKit                              0x00007fff9338ad76 _DPSNextEvent + 2665
      29  AppKit                              0x00007fff93389e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
      30  AppKit                              0x00007fff9337de23 -[NSApplication run] + 594
      31  AppKit                              0x00007fff933692d4 NSApplicationMain + 1832
      32  Things                              0x000000010790e2b4 Things + 8884
      33  ???                                 0x0000000000000001 0x0 + 1
    @2:
    the last one noted there seems to be Aperture, even though there have been crashes certainly after I used that:
    Process:               Aperture [1268]
    Path:                  /Volumes/*/Aperture.app/Contents/MacOS/Aperture
    Identifier:            com.apple.Aperture
    Version:               3.6 (3.6)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Aperture [1268]
    User ID:               501
    Date/Time:             2014-12-25 17:11:57.551 +0000
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        anonymised
    Sleep/Wake UUID:       E4 anonymised
    Time Awake Since Boot: 22000 seconds
    Time Since Wake:       4000 seconds
    Crashed Thread:        19  Dispatch queue: com.apple.photoapps.volumeMgr
    Exception Type:        EXC_BAD_ACCESS (SIGBUS)
    Exception Codes:       0x000000000000000a, 0x000000010d3dd5ab
    VM Regions Near 0x10d3dd5ab:
        VM_ALLOCATE            000000010d28a000-000000010d28b000 [    4K] r--/rw- SM=SHM 
    --> mapped file            000000010d28b000-000000010d80e000 [ 5644K] r-x/rwx SM=COW  Object_id=c83507bb
        mapped file            000000010d80e000-000000010d957000 [ 1316K] rw-/rwx SM=COW  Object_id=c6e6ec6b
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff8f4b07e1 FileIDTree_VolumeMessageProcessed_rpc + 105
    3   com.apple.CoreFoundation       0x00007fff8fbc5a0d __CFMachPortPerform + 285
    4   com.apple.CoreFoundation       0x00007fff8fbc58d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    5   com.apple.CoreFoundation       0x00007fff8fbc584b __CFRunLoopDoSource1 + 475
    6   com.apple.CoreFoundation       0x00007fff8fbb73c7 __CFRunLoopRun + 2375
    7   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    8   com.apple.HIToolbox           0x00007fff9627443f RunCurrentEventLoopInMode + 235
    9   com.apple.HIToolbox           0x00007fff962741ba ReceiveNextEventCommon + 431
    10  com.apple.HIToolbox           0x00007fff96273ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    11  com.apple.AppKit               0x00007fff8df496d1 _DPSNextEvent + 964
    12  com.apple.AppKit               0x00007fff8df48e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    13  ???                           0x000000010cccea81 0 + 4509723265
    14  com.apple.AppKit               0x00007fff8df3ce23 -[NSApplication run] + 594
    15  ???                           0x000000010e0b439a 0 + 4530586522
    16  ???                           0x000000010c8720b4 0 + 4505149620
    17  ???                           0x000000010c871a44 0 + 4505147972
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff951c322e kevent64 + 10
    1   libdispatch.dylib             0x00007fff8eacba6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8e0ac7a7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   libclh.dylib                   0x00007fff96099318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff95a9f593 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff9609a119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 11:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff8fc6ced1 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff99dcb948 listenOnDelegatePort + 372
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 12:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff8fc6ced1 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff99dcbdf3 listenOnNotificationPort + 340
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8c032d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 14:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff951c23f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   libclh.dylib                   0x00007fff96099318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff95a9f593 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff9609a119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff951c2946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff951c2946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 18:: Dispatch queue: NSWorkspace Volume Observer Queue
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff8f4b07e1 FileIDTree_VolumeMessageProcessed_rpc + 105
    3   com.apple.CoreServices.CarbonCore 0x00007fff8f4aea33 ___FSAddVolumeObserverOnQueue_block_invoke_2 + 205
    4   libdispatch.dylib             0x00007fff8eac8c13 _dispatch_client_callout + 8
    5   libdispatch.dylib             0x00007fff8ead387e _dispatch_source_latch_and_call + 721
    6   libdispatch.dylib             0x00007fff8eacc62b _dispatch_source_invoke + 412
    7   libdispatch.dylib             0x00007fff8eacc154 _dispatch_queue_drain + 571
    8   libdispatch.dylib             0x00007fff8eacdecc _dispatch_queue_invoke + 202
    9   libdispatch.dylib             0x00007fff8eacb6b7 _dispatch_root_queue_drain + 463
    10  libdispatch.dylib             0x00007fff8ead9fe4 _dispatch_worker_thread3 + 91
    11  libsystem_pthread.dylib       0x00007fff8c2516cb _pthread_wqthread + 729
    12  libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 19 Crashed:: Dispatch queue: com.apple.photoapps.volumeMgr
    0   ???                           0x000000010d3dd5ab 0 + 4517123499
    1   com.apple.DiskArbitration     0x00007fff90ab5648 _DASessionCallback + 265
    2   com.apple.DiskArbitration     0x00007fff90ab5538 __DASessionSetDispatchQueue_block_invoke_2 + 56
    3   libdispatch.dylib             0x00007fff8eac8c13 _dispatch_client_callout + 8
    4   libdispatch.dylib             0x00007fff8ead387e _dispatch_source_latch_and_call + 721
    5   libdispatch.dylib             0x00007fff8eacc62b _dispatch_source_invoke + 412
    6   libdispatch.dylib             0x00007fff8eacc154 _dispatch_queue_drain + 571
    7   libdispatch.dylib             0x00007fff8eacdecc _dispatch_queue_invoke + 202
    8   libdispatch.dylib             0x00007fff8eacb6b7 _dispatch_root_queue_drain + 463
    9   libdispatch.dylib             0x00007fff8ead9fe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib       0x00007fff8c2516cb _pthread_wqthread + 729
    11  libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 20:
    Thread 19 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff90ab5898  rbx: 0x00007fa228126400  rcx: 0x00007fff90ab59f4  rdx: 0x0000600000090900
      rdi: 0x00006080004494e0  rsi: 0x0000600000a70100  rbp: 0x00000001180a5cb0  rsp: 0x00000001180a5c48
       r8: 0x0000000000000080   r9: 0xbaddc0dedeadbead  r10: 0x00007fa224466e40  r11: 0x0000000000000002
      r12: 0x0000000000000003  r13: 0x000061800008dbb0  r14: 0x0000600000a70100  r15: 0x00006080004494e0
      rip: 0x000000010d3dd5ab  rfl: 0x0000000000010203  cr2: 0x000000010d3dd5ab
      Logical CPU:     3
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
                     0 - 0xffffffffffffffff +Aperture (???) /Volumes/*/Aperture.app/Contents/MacOS/Aperture
                     0 - 0xffffffffffffffff +PhotoFoundation (???) /Volumes/*/Aperture.app/Contents/Frameworks/PhotoFoundation.framework/Versions/ A/PhotoFoundation
                     0 - 0xffffffffffffffff +RedRock (???) /Volumes/*/Aperture.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRoc k
                     0 - 0xffffffffffffffff +iLifePageLayoutCore (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifePageLayoutCore.framework/Versi ons/A/iLifePageLayoutCore
                     0 - 0xffffffffffffffff +iLifePhotoStreamConfiguration (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifePhotoStreamConfiguration.frame work/Versions/A/iLifePhotoStreamConfiguration
                     0 - 0xffffffffffffffff +iLifeAssetManagement (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeAssetManagement.framework/Vers ions/A/iLifeAssetManagement
                     0 - 0xffffffffffffffff +AccountConfigurationPlugin (???) /Volumes/*/Aperture.app/Contents/Frameworks/AccountConfigurationPlugin.framewor k/Versions/A/AccountConfigurationPlugin
                     0 - 0xffffffffffffffff +MobileMe (???) /Volumes/*/Aperture.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobil eMe
                     0 - 0xffffffffffffffff +ProKit (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProKit.framework/Versions/A/ProKit
                     0 - 0xffffffffffffffff +iLifeSlideshow (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/A /iLifeSlideshow
                     0 - 0xffffffffffffffff +iLifeFaceRecognition (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/iLifeFaceRecognition
                     0 - 0xffffffffffffffff +PrintServices (???) /Volumes/*/Aperture.app/Contents/Frameworks/PrintServices.framework/Versions/A/ PrintServices
                     0 - 0xffffffffffffffff +ProUtils (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProUt ils
                     0 - 0xffffffffffffffff +Geode (???) /Volumes/*/Aperture.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
                     0 - 0xffffffffffffffff +ProXTCore (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProXTCore.framework/Versions/A/ProX TCore
                     0 - 0xffffffffffffffff +iLifeSQLAccess (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/A /iLifeSQLAccess
                     0 - 0xffffffffffffffff +Tellus (???) /Volumes/*/Aperture.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
                     0 - 0xffffffffffffffff +Tessera (???) /Volumes/*/Aperture.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesser a
                     0 - 0xffffffffffffffff +eOkaoCom.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoCom.dylib
                     0 - 0xffffffffffffffff +eOkaoPt.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoPt.dylib
                     0 - 0xffffffffffffffff +eOkaoDt.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoDt.dylib
                     0 - 0xffffffffffffffff +eOkaoFr.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoFr.dylib
                     0 - 0xffffffffffffffff +TaskView (???) /Volumes/*/Aperture.app/Contents/PlugIns/TaskView.bundle/Contents/MacOS/TaskVie w
                     0 - 0xffffffffffffffff +FacebookPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/M acOS/FacebookPublisher
                     0 - 0xffffffffffffffff +FlickrPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Mac OS/FlickrPublisher
                     0 - 0xffffffffffffffff +MobileMePublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/M acOS/MobileMePublisher
                     0 - 0xffffffffffffffff +SharedPhotoStreamPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/C ontents/MacOS/SharedPhotoStreamPublisher
                     0 - 0xffffffffffffffff +SmugMugPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/SmugMugPublisher.publisher/Contents/Ma cOS/SmugMugPublisher
                     0 - 0xffffffffffffffff +Facebook (???) /Volumes/*/Aperture.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents/ MacOS/Facebook
                     0 - 0xffffffffffffffff +Flickr (???) /Volumes/*/Aperture.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/Ma cOS/Flickr
                     0 - 0xffffffffffffffff +SmugMug (???) /Volumes/*/Aperture.app/Contents/PlugIns/SmugMug.accountconfigplugin/Contents/M acOS/SmugMug
           0x10d1b5000 -        0x10d1e2fff  com.apple.iTunesLibrary (12.0.1 - 12.0.1.26) <8EEB7003-E3B0-3149-81B6-F5D70F97466C> /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
           0x10e080000 -        0x10e08bff7  com.apple.PluginManager (1.7.6 - 55) <0E0F6415-A474-3FC8-8C8E-33867E31F391> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x10f0e3000 -        0x10f1fbfff  com.apple.mobiledevice (757.1.5.0.2 - 757.1.5.0.2) <364C6894-934B-3844-A77F-7DFEC21F8AEE> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x10f279000 -        0x10f2aeff7  libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
           0x10f2c6000 -        0x10f2c8ff7  com.apple.LibraryRepair (1.0 - 1) <7D0695B1-BCC9-3ED2-9688-14806C8ED284> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
           0x10f4c7000 -        0x10f51aff7  com.apple.NyxAudioAnalysis (12.5 - 12.5) <D1DAF825-1680-3D27-9F20-B1316C0A7C03> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
           0x118003000 -        0x118004fe5 +cl_kernels (???) <0A48AF2D-C3D6-4260-9FD2-9BB66B01CA20> cl_kernels
           0x11843a000 -        0x11843fff7  libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib
           0x11d722000 -        0x11d726ff3  libFontRegistryUI.dylib (134) <9C55337C-4D65-34C8-9BB9-90399B420A6F> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11da6f000 -        0x11da6ffe7 +cl_kernels (???) <7E713AF1-D6EB-4975-86EB-6F84BE214B39> cl_kernels
           0x11e6ec000 -        0x11e7d2fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11e814000 -        0x11e8f4ff7  unorm8_rgba.dylib (2.4.5) <A8805102-8A21-3A5E-AE22-63C0DEC8CB6F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
        0x123400000000 -     0x1234004f7ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.0.86 - 10.0.0) <03454F0A-EEE2-3B25-8DB2-A32FA24CE699> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
        0x123440000000 -     0x123440864fff  com.apple.GeForceGLDriver (10.0.43 - 10.0.0) <4E749711-614F-32F8-8373-1F0307082D7B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff61749000 -     0x7fff6177f837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8a906000 -     0x7fff8a992fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff8a993000 -     0x7fff8a99eff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8a9c6000 -     0x7fff8a9cafff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8a9cb000 -     0x7fff8aa86ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8aa87000 -     0x7fff8aa93ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8ab41000 -     0x7fff8ab48ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8ab5b000 -     0x7fff8ab5dfff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8ab73000 -     0x7fff8ab97ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8ab98000 -     0x7fff8abb3ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8abc0000 -     0x7fff8acb4ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ad57000 -     0x7fff8b026ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8b027000 -     0x7fff8b0a4ff7  com.apple.iLifeMediaBrowser (2.9.0 - 675) <2E008E85-B3EA-391C-9D79-6275AC70EDDB> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8b0a5000 -     0x7fff8b0c2ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8b0c3000 -     0x7fff8b0c8ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8b0c9000 -     0x7fff8b0cdfff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8b0ce000 -     0x7fff8b0cffff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b18e000 -     0x7fff8b22ddf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8b247000 -     0x7fff8b249fff  com.apple.ExceptionHandling (1.5 - 10) <C3A6EB3D-C0B3-371F-99D8-AF5495498091> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff8b3bc000 -     0x7fff8b462fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8b463000 -     0x7fff8b555ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8b556000 -     0x7fff8b5caff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8b5cb000 -     0x7fff8b5dafff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b5f7000 -     0x7fff8b5fbfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8b5fc000 -     0x7fff8b603fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8b619000 -     0x7fff8b6a2fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8b6a3000 -     0x7fff8b724ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8b725000 -     0x7fff8b730ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8b731000 -     0x7fff8b742ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8b743000 -     0x7fff8b750ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8b751000 -     0x7fff8b76ffff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b770000 -     0x7fff8b775ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8b776000 -     0x7fff8b77bff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8b77c000 -     0x7fff8b7cdff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8b7f6000 -     0x7fff8b802ff7  libGPUSupportMercury.dylib (11.0.7) <C04F6E18-3043-3096-A6E6-F6431ADC41D3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff8b803000 -     0x7fff8b80eff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b80f000 -     0x7fff8b811fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b829000 -     0x7fff8b843ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff8b844000 -     0x7fff8b895ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b896000 -     0x7fff8b92cffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b92d000 -     0x7fff8bd04fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bd09000 -     0x7fff8bd0dfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8bd0e000 -     0x7fff8bd39fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8bd4f000 -     0x7fff8bf34267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8bf35000 -     0x7fff8bf37ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <D7516965-DB40-3235-9D00-C724F7D2BC02> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8bf38000 -     0x7fff8bf6aff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8bf6b000 -     0x7fff8bf74ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8bf75000 -     0x7fff8bf86fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8bf87000 -     0x7fff8bf91ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8bf92000 -     0x7fff8c195ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8c1f2000 -     0x7fff8c24dfef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c24e000 -     0x7fff8c257fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c258000 -     0x7fff8c2d0ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8c2d1000 -     0x7fff8c2d8ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c2d9000 -     0x7fff8c2fafff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c2fb000 -     0x7fff8c32bfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8c32c000 -     0x7fff8c32cff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8c32d000 -     0x7fff8c338fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c35e000 -     0x7fff8c5d8fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8c5d9000 -     0x7fff8c601fff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8c75e000 -     0x7fff8c890ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8c891000 -     0x7fff8c8cafff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8c8ee000 -     0x7fff8c8f0fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8c92f000 -     0x7fff8c946ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8c947000 -     0x7fff8c94ffff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8c950000 -     0x7fff8c951ff7  MetadataLib.dylib (6.2) <BE9131AC-7D9C-3678-A053-2873442A3DF3> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff8c952000 -     0x7fff8c95afff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8c95b000 -     0x7fff8c9c2ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c9c3000 -     0x7fff8ca64ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8cbb4000 -     0x7fff8cfe4fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8cfe5000 -     0x7fff8cfe9fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8cfea000 -     0x7fff8d10cff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d10d000 -     0x7fff8d19eff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff8d19f000 -     0x7fff8d34efff  GLEngine (11.0.7) <3CB7447A-1A1D-3D55-A6A4-4814B49F6678> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8d34f000 -     0x7fff8d350ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8dcc5000 -     0x7fff8dcc7ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8dcc8000 -     0x7fff8dcc8ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8dcc9000 -     0x7fff8df09ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8df0a000 -     0x7fff8df24ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8df25000 -     0x7fff8ea66fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ea67000 -     0x7fff8ea78ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8ea79000 -     0x7fff8eac6ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8eac7000 -     0x7fff8eaf1ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8eaf2000 -     0x7fff8ec50ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8ec51000 -     0x7fff8ec8cfff  com.apple.AOSAccounts (1.3.1 - 1.8.19) <1EF4B780-3474-331E-9104-6CE796D8C930> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8ecce000 -     0x7fff8eccffff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8ecd0000 -     0x7fff8ecd1fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8edb2000 -     0x7fff8edb4ffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8edb5000 -     0x7fff8edbdffb  com.apple.CloudServices (1.0 - 1) <D278BECB-AEC3-3D32-BEC8-E949EB89D66B> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8edbe000 -     0x7fff8edd4ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ede4000 -     0x7fff8edfeff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8edff000 -     0x7fff8ee05ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8ee06000 -     0x7fff8ee77ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8ee78000 -     0x7fff8f028ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f057000 -     0x7fff8f091ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8f329000 -     0x7fff8f376fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8f377000 -     0x7fff8f385ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff8f386000 -     0x7fff8f3b9ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8f44c000 -     0x7fff8f477fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8f478000 -     0x7fff8f75fffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f760000 -     0x7fff8f878ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f879000 -     0x7fff8f8deff7  com.apple.ids (10.0 - 1000) <12E5717E-8D63-3B70-BB46-A60AFB02CCAE> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8f8df000 -     0x7fff8f8e2ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8f8e3000 -     0x7fff8f911fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f912000 -     0x7fff8f92eff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8fa02000 -     0x7fff8fa16ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8fb45000 -     0x7fff8fedbfff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8fedc000 -     0x7fff8fedcfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90815000 -     0x7fff90861ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff90862000 -     0x7fff90863fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff90864000 -     0x7fff908c9fff  com.apple.framework.internetaccounts (2.1 - 210) <DC8D9230-B7C8-3100-8B2F-399B51A4483A> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff90925000 -     0x7fff90950ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff90951000 -     0x7fff90963ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff90964000 -     0x7fff9097dff7  com.apple.CalendarAgentLink (8.0 - 250) <0F3CCA9C-645D-3A1A-A959-F4F8D31F9B1A> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff9098d000 -     0x7fff9098ffff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff909b9000 -     0x7fff909c2fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff909c3000 -     0x7fff90a99ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff90a9a000 -     0x7fff90ab2fff  com.apple.CalendarStore (8.0 - 1479) <42CC3B45-7916-3C2C-8F07-E40D96C9FEDB> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff90ab3000 -     0x7fff90ab8fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90ac4000 -     0x7fff90ac6ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff90add000 -     0x7fff90ae1fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff90aef000 -     0x7fff90b1fffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90b45000 -     0x7fff90b48fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90b49000 -     0x7fff90cd8fff  libGLProgrammability.dylib (11.0.7) <AF37E7F3-16C8-3747-9CC6-A442C0153DC6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff90cd9000 -     0x7fff90cdcfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff90cdd000 -     0x7fff90d30ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2B

  • Safari crashes with EXC_BAD_ACCESS (SIGSEGV) Exception Type

    Hi -  Looking for some help!
    After I updated to OS X 10.8.3, Safari will not open, but immediately crashes with the following exception type:
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    I have reinstalled 10.8.3 five times (what do they say about you if you expect a different answer when trying the same thing?), but no joy.  Also repaired Disk Permissions a few times (hmmm...  what did I say about repeating things?), again without any effect. 
    Others have reported a similar problem, but their solutions do not seem applicable here (I've tried all that were relevant without luck).  This is even more sad since I usually don't use Safari now (I dislike the unified URL-Search window), but I would like it to function in case it becomes advantageous to use it over Firefox.
    Anyway, I'd appreciate any advice to help make it fucntion.  Here's the entire error message:
    Process: Safari [574]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version:         6.0.3 (8536.28.10)
    Build Info: WebBrowser-7536028010000000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [188]
    User ID:         501
    Date/Time: 2013-03-23 21:12:28.795 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          4978 sec
    Crashes Since Last Report:           1
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: 43D941AC-4F78-4CBA-651B-492B3B83E818
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT 000000010f01c000-000000010f01d000 [ 4K] r-x/rwx SM=COW /Applications/Safari.app/Contents/MacOS/Safari
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 libsystem_c.dylib              0x00007fff913b29ae strtoul_l + 81
    1 com.apple.Safari.framework          0x00007fff9582275a Safari::SWebPreferences::setWebKitLinkTimeVersionString(Safari::CF::String const&) + 44
    2 com.apple.Safari.framework          0x00007fff957e2396 SafariMain + 120
    3   libdyld.dylib                      0x00007fff95ca77e1 start + 1
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7e72ba90  rbx: 0x00007fff50be3cc8  rcx: 0x00007fff7e729788  rdx: 0x000000000000000a
      rdi: 0x0000000000000000  rsi: 0x00007fff7e72ba98  rbp: 0x00007fff50be3c80  rsp: 0x00007fff50be3c50
       r8: 0x000000000000000a   r9: 0x00007fff7e72d890  r10: 0x00007fff7e729788  r11: 0x00007fff959239c8
      r12: 0x00007f9f3180b038  r13: 0x0000000000000000  r14: 0x00007fff50be3d18  r15: 0x00007fff50be3c98
      rip: 0x00007fff913b29ae  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU: 4
    Binary Images:
           0x10f01c000 -        0x10f01cfff  com.apple.Safari (6.0.3 - 8536.28.10) <F65DC101-5E84-3DE2-8494-CA90BD70AB3F> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff6ec1c000 -     0x7fff6ec5093f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8e2c4000 -     0x7fff8e2dbfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8e2e5000 -     0x7fff8e2edfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8e346000 -     0x7fff8e347fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e681000 -     0x7fff8e776fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8e877000 -     0x7fff8e882ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e883000 -     0x7fff8f2136ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f214000 -     0x7fff8f296ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8f2c3000 -     0x7fff8f2e8ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8f324000 -     0x7fff8f331fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f5f6000 -     0x7fff8f632fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8f681000 -     0x7fff8f68eff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f68f000 -     0x7fff8f933ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8f9fb000 -     0x7fff8f9fdfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff902b4000 -     0x7fff902b5fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff902b6000 -     0x7fff902bbfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff902bc000 -     0x7fff90557fff  com.apple.JavaScriptCore (8536 - 8536.28.10) <BC911515-D051-3E2E-8E57-D36878407C60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff90558000 -     0x7fff9059bff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff9059c000 -     0x7fff905aeff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff905af000 -     0x7fff905b9ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff905ba000 -     0x7fff905c2ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff905c3000 -     0x7fff9062bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff9062c000 -     0x7fff90632fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff90633000 -     0x7fff90650ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9067e000 -     0x7fff906fdff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff906fe000 -     0x7fff9070dfff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9070e000 -     0x7fff90730ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff90731000 -     0x7fff90731fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff9074a000 -     0x7fff90750fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90751000 -     0x7fff90770ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff90771000 -     0x7fff90772fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff90ba6000 -     0x7fff90baaff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff90bab000 -     0x7fff90c7dff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff90c7e000 -     0x7fff90c85fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90c86000 -     0x7fff90cdbff7  libTIFF.dylib (849) <C4D0E196-9319-319B-AF72-8B63FB5AF71B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff90d7a000 -     0x7fff90d89ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff90d8b000 -     0x7fff90db5ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff90f15000 -     0x7fff90f83fff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff90f84000 -     0x7fff912b4fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff912b5000 -     0x7fff91301ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff9130a000 -     0x7fff91349ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff9134a000 -     0x7fff91416ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff91417000 -     0x7fff91417fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff91418000 -     0x7fff91461fff  com.apple.framework.CoreWiFi (1.2.2 - 122.12) <D237551E-0E2C-30FB-8FAA-003D8F25E819> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff91462000 -     0x7fff914beff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff914bf000 -     0x7fff914d5fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff914d7000 -     0x7fff914eaff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff914f9000 -     0x7fff914fbff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff914fc000 -     0x7fff914fffff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff91500000 -     0x7fff9153dfef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff9153e000 -     0x7fff91773ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91780000 -     0x7fff9178bfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff91b79000 -     0x7fff91b90fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff91b91000 -     0x7fff91b9fff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff91bbb000 -     0x7fff91c55fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91c60000 -     0x7fff91c67fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91c68000 -     0x7fff91cd1fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff91dc6000 -     0x7fff91ec3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff91ec4000 -     0x7fff91f75fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff91f8b000 -     0x7fff91f8cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff91f8d000 -     0x7fff91f94fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff92075000 -     0x7fff920cbfff  com.apple.HIServices (1.20 - 417) <839B4EE4-B96F-3371-BE90-3B4EBB86C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff92115000 -     0x7fff92472ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92473000 -     0x7fff92492ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92777000 -     0x7fff92912fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff92964000 -     0x7fff929befff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff929bf000 -     0x7fff929f9ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff929fa000 -     0x7fff92a08ff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff92a09000 -     0x7fff92a34fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff92a35000 -     0x7fff92a35fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff92a84000 -     0x7fff92bd5fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92bed000 -     0x7fff92c31fff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff92c32000 -     0x7fff92c3cfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff92c74000 -     0x7fff92d94fff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff92d95000 -     0x7fff92da3fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92da5000 -     0x7fff92dcdfff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff92e5e000 -     0x7fff92efcff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff936ea000 -     0x7fff936eaffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9377e000 -     0x7fff93a4fff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff93aa5000 -     0x7fff93b25ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff93b38000 -     0x7fff93b3cfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff93bad000 -     0x7fff93bfcff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff93bfd000 -     0x7fff93bfdfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff93bfe000 -     0x7fff93bfefff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff93bff000 -     0x7fff9482cff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94fd7000 -     0x7fff95028ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff95029000 -     0x7fff9503eff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff950a2000 -     0x7fff950adff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff950bc000 -     0x7fff95162ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95163000 -     0x7fff95167fff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff95168000 -     0x7fff95169fff  libquit.dylib (130) <DC77F406-C5D4-301B-A96D-9A3DCA263756> /usr/lib/libquit.dylib
        0x7fff95177000 -     0x7fff9518efff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9519e000 -     0x7fff95595fff libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff955bf000 -     0x7fff95abcfff  com.apple.Safari.framework (8536 - 8536.28.10) <3A95B221-2F54-38D1-A916-FA79400EB8D8> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff95abd000 -     0x7fff95b25fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff95c53000 -     0x7fff95c53fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff95c70000 -     0x7fff95c72fff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff95c73000 -     0x7fff95ca4ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff95ca5000 -     0x7fff95ca8ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff95cae000 -     0x7fff95e98ff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9629c000 -     0x7fff9629ffff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff963f0000 -     0x7fff963f6ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff9642b000 -     0x7fff96430fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff96434000 -     0x7fff965bafff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff9661b000 -     0x7fff9661dfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff96661000 -     0x7fff9671eff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff967a2000 -     0x7fff967c3ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff9688b000 -     0x7fff96926fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff96927000 -     0x7fff96928ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff96929000 -     0x7fff96929fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9692c000 -     0x7fff96b14fff  com.apple.WebKit2 (8536 - 8536.28.10) <B9D84DFC-E7D5-3398-B0E8-5108DE9EC546> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff96b15000 -     0x7fff96b58ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff96d08000 -     0x7fff96d1efff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff96d1f000 -     0x7fff96d46ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96d47000 -     0x7fff96d4bfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff96d84000 -     0x7fff96dd3ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff96dd8000 -     0x7fff96dddfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff97054000 -     0x7fff9712efff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff9712f000 -     0x7fff971bcff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff972c0000 -     0x7fff9732dff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9732e000 -     0x7fff9735cff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff9735d000 -     0x7fff9735eff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff9735f000 -     0x7fff97397fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff97398000 -     0x7fff973e2ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff97483000 -     0x7fff974b9fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff974ba000 -     0x7fff97668fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff97669000 -     0x7fff976c0ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff979a8000 -     0x7fff979bdfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff97a1f000 -     0x7fff97a7cff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff97a7d000 -     0x7fff97b7afff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff97b7b000 -     0x7fff97cf0fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff97cf1000 -     0x7fff97ef1fff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff97ef2000 -     0x7fff9800bfff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9800c000 -     0x7fff98017fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff98018000 -     0x7fff98072ff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff98073000 -     0x7fff9818b92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff9818c000 -     0x7fff9818eff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff9818f000 -     0x7fff981b0fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff981b1000 -     0x7fff9916efff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9916f000 -     0x7fff991a3fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff991fb000 -     0x7fff9920ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9964d000 -     0x7fff99683fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff99c52000 -     0x7fff99c56ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff99c57000 -     0x7fff99c57fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff99c58000 -     0x7fff99d5afff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff99d5b000 -     0x7fff99d82fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff99d83000 -     0x7fff99e04fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff99e12000 -     0x7fff99ed7ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff99ee0000 -     0x7fff99f2bfff  com.apple.framework.CoreWLAN (3.0.2 - 302.12) <896D75EB-069B-3674-936E-27A81568BECB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff99f71000 -     0x7fff99f91fff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff99f92000 -     0x7fff99f93ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff99ffc000 -     0x7fff99ffefff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff9a05a000 -     0x7fff9a371ff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9a377000 -     0x7fff9a399ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9a39a000 -     0x7fff9a3c6fff  com.apple.framework.Apple80211 (8.3.2 - 832.18.1) <5D601780-9AD9-31C9-9AB5-716D8634CB78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9a3c7000 -     0x7fff9a3d4fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff9a445000 -     0x7fff9a550fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9a551000 -     0x7fff9a55dfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff9a5c4000 -     0x7fff9a623fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff9a624000 -     0x7fff9aa41fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9aa42000 -     0x7fff9aa55ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff9aa56000 -     0x7fff9aa58fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff9aa85000 -     0x7fff9aa8eff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9aa8f000 -     0x7fff9aa93fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9ae36000 -     0x7fff9ae36fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff9aec9000 -     0x7fff9af25fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9af26000 -     0x7fff9af41ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9af42000 -     0x7fff9b0cdff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 578
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=170.9M resident=140.5M(82%) swapped_out_or_unallocated=30.4M(18%)
    Writable regions: Total=19.7M written=732K(4%) resident=848K(4%) swapped_out=0K(0%) unallocated=18.9M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             11.5M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              8192K
    __DATA                             13.7M
    __IMAGE                             528K
    __LINKEDIT                         52.0M
    __TEXT                            118.9M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             261.2M
    Model: iMac11,3, BootROM IM112.0057.B01, 4 processors, Intel Core i7, 2.93 GHz, 32 GB, SMC 1.59f2
    Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.72.0-P2P
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Parallels Shared #0, Ethernet, vnic0
    Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    Serial ATA Device: APPLE SSD TS256B, 251 GB
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: USB2.0 Hub, 0x2109  (VIA Labs, Inc.), 0x3431, 0xfa130000 / 6
    USB Device: Officejet Pro 8500 A910, 0x03f0  (Hewlett Packard), 0x5312, 0xfa131000 / 15
    USB Device: hub_device, apple_vendor_id, 0x9126, 0xfa140000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa141000 / 14
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa141400 / 16
    USB Device: HP LaserJet P2035, 0x03f0  (Hewlett Packard), 0x5d17, 0xfa142000 / 13
    USB Device: Apple LED Cinema Display, apple_vendor_id, 0x9226, 0xfa146000 / 12
    USB Device: Display Audio, apple_vendor_id, 0x1105, 0xfa144000 / 11
    USB Device: Display iSight, apple_vendor_id, 0x8508, 0xfa145000 / 10
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0610, 0xfd140000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0610, 0xfd141000 / 6
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd141200 / 8
    USB Device: CRCA102-3I1, 0x0764  (Cyber Power Systems, Inc.), 0x0501, 0xfd141100 / 7
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    FireWire Device: My Book 111D, WD, 800mbit_speed

    After trying the update on the 10.8.2 version from Time Machine, the problem re-appeared.  Resetting the NVRAM did not help.  Finally tried Apple Support who suggested reinstalling the OS (which writes a complete version of 10.8.3 rather than the updated files).  That worked. 

  • Adobe Premiere CS6 keeps crashing - Crashed Thread:  0  Dispatch queue: com.apple.main-thread     Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

    Please help!  I've been wrestling with this all day!  Everytime I come to a clip on the timeline that has been adjusted via speed/duration the program crashes.  I've already deleted the preference files for all Adobe products.  Any suggestions?
    ~bdh
    Process:         Adobe Premiere Pro CS6 [955]
    Path:            /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Identifier:      com.adobe.AdobePremierePro
    Version:         6.0.2 (6.0.2)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [277]
    User ID:         501
    Date/Time:       2013-04-29 19:09:02.439 -0500
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          141185 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  99397 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      00F758BA-37B7-1854-7225-6B1330BFA109
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-0000000100004000 [   16K] r-x/rwx SM=COW  /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.dvaui.framework               0x00000001034a6d3a dvaui::ui::UI_Node::GetViewScaleFactor() const + 10
    1   com.adobe.UIFramework.framework          0x0000000103cc7066 UIF::TabViewImpl::UI_Draw(dvaui::drawbot::Drawbot*) const + 730
    2   com.adobe.dvaui.framework               0x00000001034addbb void dvaui::drawbot::InvokeDrawbotFromRegionT<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, bool) + 187
    3   com.adobe.dvaui.framework               0x00000001034adf79 void dvaui::drawbot::InvokeDrawbot<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, std::vector<dvacore::geom::RectT<int>, std::allocator<dvacore::geom::RectT<int> > >*, bool) + 313
    4   com.adobe.dvaui.framework               0x00000001034a6381 dvaui::ui::OS_View::UI_HandlePlatformDrawEvent(dvaui::drawbot::SurfaceInterface *) + 397
    5   com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    6   com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    7   com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    8   com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    9   com.adobe.dvaui.framework               0x000000010349c7bd -[DVAMacContainerView drawRect:] + 125
    10  com.apple.AppKit                        0x00007fff88bcf094 -[NSView _drawRect:clip:] + 4217
    11  com.apple.AppKit                        0x00007fff88bcd6f1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    12  com.apple.AppKit                        0x00007fff88bcb722 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    13  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    14  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x00007fff88bcb173 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    17  com.apple.AppKit                        0x00007fff88bc6d9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    18  com.apple.AppKit                        0x00007fff88b90cc3 -[NSView displayIfNeeded] + 1830
    19  com.apple.AppKit                        0x00007fff88b901fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    20  com.apple.Foundation                    0x00007fff85910af3 __NSFireTimer + 96
    21  com.apple.CoreFoundation                0x00007fff8477b804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    22  com.apple.CoreFoundation                0x00007fff8477b31d __CFRunLoopDoTimer + 557
    23  com.apple.CoreFoundation                0x00007fff84760ad9 __CFRunLoopRun + 1529
    24  com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    25  com.apple.HIToolbox                     0x00007fff84d26eb4 RunCurrentEventLoopInMode + 209
    26  com.apple.HIToolbox                     0x00007fff84d26c52 ReceiveNextEventCommon + 356
    27  com.apple.HIToolbox                     0x00007fff84ce7044 IsUserStillTracking(MenuSelectData*, unsigned char*) + 194
    28  com.apple.HIToolbox                     0x00007fff84cd089a TrackMenuCommon(MenuSelectData&, unsigned char*) + 307
    29  com.apple.HIToolbox                     0x00007fff84e66e04 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1556
    30  com.apple.HIToolbox                     0x00007fff84e66794 _HandlePopUpMenuSelection7 + 629
    31  com.apple.AppKit                        0x00007fff88e2f54b _NSSLMPopUpCarbonMenu3 + 3916
    32  com.apple.AppKit                        0x00007fff88e2e5d8 -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 189
    33  com.apple.AppKit                        0x00007fff88f88fe3 -[NSMenu _popUpContextMenu:withEvent:forView:withFont:] + 200
    34  com.adobe.dvaui.framework               0x00000001034c44b6 dvaui::utility::OS_Menu_MAC::DoPopupMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::RectT<float> const&, bool, bool) + 764
    35  com.adobe.dvaui.framework               0x00000001034c45b9 dvaui::utility::OS_Menu_MAC::DoContextMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::PointT<float> const&, bool) + 55
    36  com.adobe.dvaui.framework               0x000000010343773b dvaui::ui::UI_DoContextMenu(dvaui::utility::OS_Menu&, dvaui::ui::UI_Node const&, dvacore::geom::PointT<float> const&) + 27
    37  com.adobe.UIFramework.framework          0x0000000103c7e978 UIF::MenuUtils::TrackPopupMenu(boost::intrusive_ptr<dvaui::utility::OS_Menu>, dvaui::ui::UI_Node const&, ASL::ParamPoint<int> const&) + 40
    38  com.adobe.HandlerTimeline.framework          0x0000000109c40f97 HandlerTimeline::TrackViewArea::DoClipContextMenuWithEffects(ASL::ParamPoint<in t> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, char const*) + 1929
    39  com.adobe.HandlerTimeline.framework          0x0000000109c41aaa HandlerTimeline::TrackViewArea::DoContextMenu(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, unsigned int) + 514
    40  com.adobe.HandlerTimeline.framework          0x0000000109c421c3 HandlerTimeline::TrackViewArea::HandleContextMenuInContentView(ASL::ParamPoint< int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 1115
    41  com.adobe.HandlerTimeline.framework          0x0000000109b525bb HandlerTimeline::EditorController::RightButtonUp(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 169
    42  com.adobe.UIFramework.framework          0x0000000103cbf29f UIF::SubViewImpl::UI_DoMouseEvent(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&) + 981
    43  com.adobe.dvaui.framework               0x000000010343c4a8 dvaui::ui::UI_Node::DispatchMouseEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 184
    44  com.adobe.dvaui.framework               0x000000010344605b std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 91
    45  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    46  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    47  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    48  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    49  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    50  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    51  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    52  com.adobe.dvaui.framework               0x000000010343c615 dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeaf(dvaui::ui::MouseEvent const&, bool) + 75
    53  com.adobe.dvaui.framework               0x000000010344027e dvaui::ui::UI_Node::UI_DispatchMouseEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&, bool) + 136
    54  com.adobe.dvaui.framework               0x000000010344031f dvaui::ui::UI_Node::UI_DispatchMouseEvent(dvaui::ui::MouseEvent const&, bool) + 63
    55  com.adobe.dvaui.framework               0x00000001034a7bf2 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 702
    56  com.adobe.dvaui.framework               0x00000001034a5cfa dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 470
    57  com.adobe.dvaui.framework               0x00000001034a4919 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 123
    58  com.adobe.dvaui.framework               0x00000001034a5fe8 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 28
    59  com.adobe.dvaui.framework               0x00000001034a2ac7 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    60  com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    61  com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    62  com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    63  com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    64  com.adobe.dvaui.framework               0x000000010349bc8f -[DVAMacContainerView rightMouseUp:] + 127
    65  com.apple.AppKit                        0x00007fff88c7277d -[NSWindow sendEvent:] + 7428
    66  com.apple.AppKit                        0x00007fff88c6e674 -[NSApplication sendEvent:] + 5761
    67  com.adobe.dvaui.framework               0x0000000103495bb6 -[DVAMacApplication sendEvent:] + 630
    68  com.adobe.premiere.frontend             0x000000010c781520 -[PremiereCocoaMacApplication sendEvent:] + 304
    69  com.apple.AppKit                        0x00007fff88b8424a -[NSApplication run] + 636
    70  com.adobe.premiere.frontend             0x000000010c782784 FE::MacApplication::RunSelf() + 44
    71  com.adobe.premiere.frontend             0x000000010c72cdef FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 5681
    72  com.adobe.premiere.frontend             0x000000010c783cfc AppMain + 380
    73  com.adobe.premiere.startup              0x000000010c8f41d7 Run + 247
    74  com.adobe.AdobePremierePro              0x00000001000038b7 main + 647
    75  com.adobe.AdobePremierePro              0x000000010000361c start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff85512dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff855129ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.ASLFoundation.framework          0x00000001005c0770 ASL::(anonymous namespace)::TaskProc(void*) + 160
    6   com.apple.CoreServices.CarbonCore          0x00007fff89bf97e0 PrivateMPEntryPoint + 58
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   com.adobe.dvatransport.framework          0x000000010079bf12 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 240
    2   com.adobe.dvatransport.framework          0x00000001007a60da boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100792fbd SkyConnectionEnv::MainLoop() + 129
    5   com.adobe.dvatransport.framework          0x000000010079303b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    6   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.adobe.dvatransport.framework          0x00000001007a604b boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 369
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100793c2a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_b ase::work_io_service_runner>::run() + 42
    5   com.adobe.dvatransport.framework          0x0000000100796c33 boost_asio_detail_posix_thread_function + 19
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff82eec122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9dfd pthread_mutex_lock + 536
    2   com.adobe.AudioSupport.framework          0x000000010308b132 ML::MonitorMixer::Stop() + 30
    3   com.adobe.PlayerHost.framework          0x00000001049b79b4 ML::VideoPlayer::PlayerCallback_StopAudio() + 256
    4   com.adobe.PlayerHost.framework          0x00000001049d6ad6 ML::SDKCallback_StopAudio(int) + 86
    5   com.adobe.PlayerMediaCore.framework          0x0000000119de812d AdobePlayer::PlayerAudioHost::StopPlayback() + 137
    6   com.adobe.TransmitHost.framework          0x000000010d1e0aa0 ML::TransmitManager::StopPlayback() + 182
    7   com.adobe.PlayerMediaCore.framework          0x0000000119de9754 AdobePlayer::PlayerClock::SetState(AdobePlayer::PlayState, PrActivationEvent) + 828
    8   com.adobe.PlayerMediaCore.framework          0x0000000119df88a3 AdobePlayer::PlayerMain::ForceStop() + 253
    9   com.adobe.PlayerMediaCore.framework          0x0000000119df89e3 AdobePlayer::PlayerMain::OnStop() + 79
    10  com.adobe.PlayerMediaCore.framework          0x0000000119e05926 PrPlayModule<AdobePlayer::PlayerMain>::PlayEntry(int, pmStdParms*, void*, void*) + 302
    11  com.adobe.PlayerHost.framework          0x000000010499b0c9 ML::CallPlayerModuleGuarded(int (*)(int, pmStdParms*, void*, void*), int, pmStdParms*, void*, void*, int*, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 137
    12  com.adobe.PlayerHost.framework          0x000000010499bf94 ML::PlayerModule::CallPlugin(int, void*, void*) + 130
    13  com.adobe.PlayerHost.framework          0x00000001049c0e77 ML::VideoPlayer::CallPlayModuleSelector_Stop() + 79
    14  com.adobe.PlayerHost.framework          0x00000001049abb16 ML::VideoPlayer::StopPlayback(bool, bool) + 64
    15  com.adobe.PlayerHost.framework          0x00000001049a0500 ML::PlayModuleThreadQueue::ExecuteDeferredCall(ASL::ObjectPtr<ML::DeferredCallB ase, ASL::AtomicValue>) + 280
    16  com.adobe.PlayerHost.framework          0x00000001049a1537 ML::PlayModuleThreadQueue::ServiceQueue() + 253
    17  com.adobe.ASLFoundation.framework          0x00000001005b3232 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54
    18  com.adobe.dvacore.framework             0x00000001001f62a2 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 194
    19  com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    20  com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    21  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    22  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    4   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    8   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c1f3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff82eec386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d02e800 nanosleep + 163
    2   com.adobe.ScriptLayerPPro.framework          0x0000000106d0c6fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.ScriptLayerPPro.framework          0x0000000106cf8259 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.ScriptLayerPPro.framework          0x0000000106d0ca66 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 20:: com.apple.audio.IOThread.client
    0   libsystem_c.dylib                       0x00007fff8cf92d2c OSAtomicAdd64Barrier$VARIANT$mp + 8
    1   com.adobe.dvacore.framework             0x0000000100241356 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::TrySimpleAllocate() + 144
    2   com.adobe.dvacore.framework             0x00000001002642e2 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::DoAllocate() + 28
    3   com.adobe.dvacore.framework             0x0000000100245829 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::Allocate(unsigned long) + 279
    4   com.adobe.dvacore.framework             0x000000010016412f dvacore::utility::SmallBlockAllocator::Allocate(unsigned long) + 63
    5   com.adobe.Backend.framework             0x00000001015adcd4 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_create_node(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 20
    6   com.adobe.Backend.framework             0x00000001015ade02 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_insert_unique(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 206
    7   com.adobe.Backend.framework             0x00000001015ac650 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 234
    8   com.adobe.Backend.framework             0x00000001015ab298 BE::CompositeOutputValue::Clone() const + 34
    9   com.adobe.Backend.framework             0x00000001015ac6d2 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 364
    10  com.adobe.Backend.framework             0x00000001015bacec BE::CompositeProperty::CompositeProperty(BE::CompositeOutputValue const&, std::map<dvacore::utility::Guid, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue>, std::less<dvacore::utility::Guid>, std::allocator<std::pair<dvacore::utility::Guid const, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue> > > > const&) + 52
    11  com.adobe.Backend.framework             0x00000001015b69f1 BE::PropertiesImpl::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 963
    12  com.adobe.Backend.framework             0x00000001015bb93c BE::PropertiesProxy::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 144
    13  com.adobe.HandlerProject.framework          0x0000000109576871 void BE::IProperties::SetOpaque<ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown> >(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>&, bool) + 121
    14  com.adobe.HandlerProject.framework          0x00000001095759bc HandlerProject::ProjectViewStateList::WriteViewStateList() + 138
    15  com.adobe.HandlerProject.framework          0x00000001094a827e HandlerProject::ProjectHandler::ViewDestroyed(HandlerProject::ProjectView*, dvacore::utility::Guid) + 866
    16  com.adobe.HandlerProject.framework          0x0000000109523289 HandlerProject::ProjectView::DestroySelf() + 139
    17  com.adobe.dvaworkspace.framework          0x0000000106a342dc dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, int, bool, bool) + 140
    18  com.adobe.dvaworkspace.framework          0x0000000106a31cbf dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, dvaworkspace::workspace::TabPanel*, bool, bool) + 67
    19  com.adobe.dvaworkspace.framework          0x0000000106a48400 dvaworkspace::workspace::WorkspaceFrame::RemoveAllTabs(bool) + 162
    20  com.adobe.dvaworkspace.framework          0x0000000106a346c6 dvaworkspace::workspace::TopLevelWindow::RemoveTabPanels(bool) + 392
    21  com.adobe.dvaworkspace.framework          0x0000000106a3552a dvaworkspace::workspace::Workspace::RemoveTabPanels() + 150
    22  com.adobe.premiere.frontend             0x000000010c726700 FE::Application::CloseCurrentWorkspace() + 552
    23  com.adobe.premiere.frontend             0x000000010c75e50d FE::DocumentManager::CloseDocumentWithPrompt(bool, bool) + 353
    24  com.adobe.premiere.frontend             0x000000010c75f151 FE::DocumentManager::AttemptPanicProjectSave() + 991
    25  com.adobe.premiere.frontend             0x000000010c72b74e FE::Application::AttemptPanicProjectSave() + 24
    26  com.adobe.premiere.frontend             0x000000010c78327c UnixInterruptSignal(int) + 44
    27  com.adobe.dvacore.framework             0x0000000100279b15 (anonymous namespace)::SignalHandler(int, __siginfo*, void*) + 261
    28  libsystem_c.dylib                       0x00007fff8cf9294a _sigtramp + 26
    29  libsystem_c.dylib                       0x00007fff8cf91ac7 memmove$VARIANT$sse42 + 159
    30  com.adobe.AudioRenderer.framework          0x0000000100df1fbb AR::AudioBuffer::CopyFrom(AR::AudioBuffer const&, unsigned int) + 59
    31  com.adobe.AudioRenderer.framework          0x0000000100e4797b AR::AudioPannerDirectChannelAssignmentBase::Process(AR::AudioBuffer const&, AR::AudioBuffer&) + 713
    32  com.adobe.AudioRenderer.framework          0x0000000100e4cc46 AR::AudioPannerStereoTo16Channel::ProcessAudioData(AR::AudioBuffer const&, AR::AudioBuffer&) + 174
    33  com.adobe.AudioRenderer.framework          0x0000000100e1ff32 AR::RealtimeAudioClipTrackItemRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 3666
    34  com.adobe.AudioRenderer.framework          0x0000000100df7822 AR::AudioClipTrackRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 2530
    35  com.adobe.AudioRenderer.framework          0x0000000100e13697 AR::AudioTrackGroupRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 571
    36  com.adobe.AudioSupport.framework          0x0000000103089b67 ML::MonitorMixer::AudioCallback(AR::AudioBuffer&, dvamediatypes::TickTime&) + 6969
    37  com.adobe.AudioSupport.framework          0x000000010309284c ML::AudioPlaybackBuffer::GetAudioData(AR::AudioBuffer&) + 106
    38  com.adobe.AudioSupport.framework          0x00000001030993af ML::CoreAudioHost::ProcessAudio(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*) + 813
    39  com.adobe.AudioSupport.framework          0x000000010309954e ML::CoreAudioHost::DeviceIOProc(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*) + 38
    40  com.apple.audio.CoreAudio               0x00007fff8f09fbad HALC_ProxyIOContext::IOWorkLoop() + 2413
    41  com.apple.audio.CoreAudio               0x00007fff8f09f1a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 83
    42  com.apple.audio.CoreAudio               0x00007fff8f09f069 HALB_IOThread::Entry(void*) + 75
    43  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    44  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff82eec2aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000011ff375ec Invoke + 45721
    2   ServiceManager-Launcher.dylib           0x000000011ff36813 Invoke + 42176
    3   ServiceManager-Launcher.dylib           0x000000011ff35be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib           0x000000011ff35c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib           0x000000011ff3130f Invoke + 20412
    6   ServiceManager-Launcher.dylib           0x000000011ff31616 Invoke + 21187
    7   ServiceManager-Launcher.dylib           0x000000011ff31cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib           0x000000011ff31f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib           0x000000011ff3461d Invoke + 33482
    10  ServiceManager-Launcher.dylib           0x000000011ff34775 Invoke + 33826
    11  ServiceManager-Launcher.dylib           0x000000011ff34fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib           0x000000011ff350ad Invoke + 36186
    13  ServiceManager-Launcher.dylib           0x000000011ff27d6b Login + 480
    14  ServiceManager-Launcher.dylib           0x000000011ff2b7ad Login + 15394
    15  ServiceManager-Launcher.dylib           0x000000011ff35412 Invoke + 37055
    16  ServiceManager-Launcher.dylib           0x000000011ff37253 Invoke + 44800
    17  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c21f6d TSWaitOnSemaphoreCommon + 265
    4   com.apple.CoreServices.CarbonCore          0x00007fff89be5b93 AsyncFileThread(void*) + 257
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cfa6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cfa6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8cf911d1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_ke

    Either or both of the following third-party system modifications may be contributing to your problem:
    FxFactory
    CUDA
    I suggest you uninstall them, one at a time, according to the developers' instructions, to see whether you can identify which is at fault. Reboot after uninstalling CUDA.
    Back up all data before making any changes.

  • IMS-exception type "Other errors" is not getting triggered

    Hi experts,
                     I am trying out some scenarios in IMS. I want to check exception type- "Other Errors" which is a most generic exception type. I have tried many options like- removed country from partner id address, tried posting invoice after removing account assignment category but for all these invoice triggers exception- duplicate invoice which i am unable to understand. can anybody please tell me what are the settings required for exception type- other errors?
    2. I even tried exception type "missing goods receipt". Excption type is getting triggered but after creation of confirmation- the status of the exception is not getting changed to clarified. Instead it gives an error- User is locked please try after some time.
    Please help
    Regards
    Kapil

    Hi Friend,
    Please read the possible exception types in IMS
    Have you set these exception in Settings for Invoice Monitor
    Purpose
    In the Settings for Invoice Monitor application, you can make settings directly on the user interface for every exception that you wish to adjust.
    Digital signature
    For each exception, you can define whether you want to use a digital signature.
    If you use a digital signature, the field Digital Signature is active on the Adobe PDF form and the processor of the form has to sign it before sending it back.
    The system then checks that the signature is valid.
    If the signature is invalid, or the processor does not sign the form, an error message is written to the log and the e-mail is closed.
    You can assign a digital signature to a vendor in two different ways.
    ·        The user assigns a partner certificate and sends it to the vendor.
    ·        The user uses the vendor’s signature certificate. This certificate has to be registered on the ADS server. For more information, see the SAP NetWeaver Configuration Guide Interactive Forms based on Adobe Software on the SAP Service Marketplace under service.sap.com/instguidesNW2004s.
    Additionally, you can make settings for the following exceptions:
       Invoice duplicate
    This exception is triggered if you try to post an invoice that has already been posted. The two invoices are compared using criteria that you have specified. In the settings, you can define whether a notification e-mail is automatically sent in the case of an invoice duplicate exception, and to whom this e-mail is sent. Furthermore, you can tailor the duplicate check to suit your requirements. The following criteria are available:
        Consider special characters in the vendor invoice number
         Check the number of items and purchase order number
         Additionally, you can define that the invoice is automatically deleted as soon as the vendor confirms that a duplicate invoice exists.
    ¡        Fields for duplicate check
    On this tab page, you can activate the fields that are relevant for the duplicate check. Furthermore, you can define a maximum variance for each field. In other words, you define whether the data in the fields should be an exact match, or whether small differences are acceptable.
    ¡        Exclude vendor values and or invoice values
    On this tab page, you can exclude certain vendors and/or invoice values from the duplicate check. If, for example, you always receive invoices from one vendor for the same amount, you can enter this here so as to prevent unnecessary checks.
    ¡        Group vendors
    On this tab page, you can group vendors that have several vendor numbers together in a data record to facilitate the duplicate check. Entries in this table cause an update in the TREX database which might lead to a short delay.
    Regardless of your settings, the system performs a standard duplicate check (for vendor invoice numbers or vendor numbers that match exactly, for a +/- 7 day period) to ensure that these duplicates are found. If this standard check is not successful, a further check is performed using the settings that you made.
    ·        Missing external information
    This exception is triggered if you try to post an invoice that contains incomplete or incorrect information. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by missing external information, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System, where the missing/incorrect information can be entered directly in an interactive form.
    ·        Missing internal information
    This exception is triggered if you try to post an invoice that contains incomplete or incorrect information. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by missing internal information, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System, where the missing/incorrect information can be entered directly in an interactive form.
    ·        Missing goods receipt
    If no digital signature is used, two additional fields are displayed in the PDF form. The processor has to enter his first and last name into these fields before he/she sends the e-mail back.
    In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by a missing goods receipt, and to whom this e-mail is sent. You can define how long the invoice should remain with status 'Waiting for Preceding Documents' before it receives the status 'To be Corrected Manually’. Furthermore, you can define how many days pass before an e-mail is sent to the goods recipient. When the goods recipient then confirms that no goods delivery has taken place, an e-mail is automatically sent to the vendor. If the goods receipt has already taken place, you can either define that the goods recipient confirms this automatically in an interactive form, or that the goods recipient uses a link in the e-mail to confirm the goods receipt in the SRM system.
    ·        Incorrect reference
    This exception is triggered if you try to post an invoice that refers to an incorrect reference. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by an incorrect reference, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Approval overdue
    This exception is triggered if an invoice remains in approval status for longer than allowed. You can define how long an invoice can remain in approval status before the exception is triggered.
    ·        Other errors
    This exception is triggered if you try to post an invoice that contains errors. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by other errors, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    Note that the invoice is checked in accordance with the vendor tolerance limits in the case of the following exceptions: If these are exceeded, an error message is output.
    ·        Price variance
    This exception is triggered if you try to post an invoice that contains price variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a price variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the price variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Quantity variance
    This exception is triggered if you try to post an invoice that contains quantity variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a quantity variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the quantity variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Tax variance
    This exception is triggered if you try to post an invoice that contains tax variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a tax variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the tax variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM system.
    In Invoice monito system pls check the what setting is done for Duplicate  invoice, Missing GR and other invoice.
    Based on these setting only system identifies what type of exception it is.
    In other errors you should mention in Settings for Invoice Monitor  what are the fileds your consider for other exception.
    Hope this information will help.
    Thanks & Best regards
    Girish

  • Itunes crashes Exception Type:  EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000  Application Specific Information: objc[268]: garbage collection is OFF *** error for object 0x7fc2b1a14e00: incorrect checksum for freed object -

    Ok, itunes keeps crashing. Have used disk utility to repair permissions, in regular mode, safe mode, and at start up. None of that worked. Was thinking maybe internet recovery may be my only option.
    Here is the crash report, not sure how much i should post, so i will give the whole thing
    Process:         iTunes [268]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.0.4 (11.0.4)
    Build Info:      iTunes-1104004001000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [135]
    Date/Time:       2013-06-30 08:49:31.015 -0400
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          1614339 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  91 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      216341DE-1868-4DAB-BF67-A14384C0CB4E
    Crashed Thread:  18
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[268]: garbage collection is OFF
    *** error for object 0x7fc2b1a14e00: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.iTunes                        0x000000010af63053 0x10ade3000 + 1572947
    3   com.apple.iTunes                        0x000000010ae35ff5 0x10ade3000 + 339957
    4   com.apple.iTunes                        0x000000010af62fde 0x10ade3000 + 1572830
    5   com.apple.iTunes                        0x000000010af62ed6 0x10ade3000 + 1572566
    6   com.apple.iTunes                        0x000000010af62e78 0x10ade3000 + 1572472
    7   com.apple.iTunes                        0x000000010ae35cea 0x10ade3000 + 339178
    8   com.apple.iTunes                        0x000000010ae35ba4 0x10ade3000 + 338852
    9   com.apple.iTunes                        0x000000010ae35b01 0x10ade3000 + 338689
    10  com.apple.CoreFoundation                0x00007fff910dc4f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    11  com.apple.CoreFoundation                0x00007fff910dbd5d __CFRunLoopDoSources0 + 253
    12  com.apple.CoreFoundation                0x00007fff91102b49 __CFRunLoopRun + 905
    13  com.apple.CoreFoundation                0x00007fff91102486 CFRunLoopRunSpecific + 230
    14  com.apple.HIToolbox                     0x00007fff9a1342bf RunCurrentEventLoopInMode + 277
    15  com.apple.HIToolbox                     0x00007fff9a13b56d ReceiveNextEventCommon + 355
    16  com.apple.HIToolbox                     0x00007fff9a13b3fa BlockUntilNextEventMatchingListInMode + 62
    17  com.apple.AppKit                        0x00007fff95088779 _DPSNextEvent + 659
    18  com.apple.AppKit                        0x00007fff9508807d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    19  com.apple.AppKit                        0x00007fff9533c735 -[NSApplication _realDoModalLoop:peek:] + 610
    20  com.apple.AppKit                        0x00007fff9533c369 -[NSApplication runModalForWindow:] + 120
    21  com.apple.AppKit                        0x00007fff9532f9cd -[NSAlert runModal] + 159
    22  com.apple.AppKit                        0x00007fff950b759b __-[NSPersistentUIManager promptToIgnorePersistentState]_block_invoke_1 + 815
    23  com.apple.AppKit                        0x00007fff95335782 -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 31
    24  com.apple.AppKit                        0x00007fff950b7234 -[NSPersistentUIManager promptToIgnorePersistentState] + 178
    25  com.apple.AppKit                        0x00007fff9508b9ec -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 180
    26  com.apple.AppKit                        0x00007fff9508cca9 -[NSApplication _sendFinishLaunchingNotification] + 358
    27  com.apple.AppKit                        0x00007fff95088ac3 _DPSNextEvent + 1501
    28  com.apple.AppKit                        0x00007fff9508807d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    29  com.apple.AppKit                        0x00007fff950849b9 -[NSApplication run] + 470
    30  com.apple.iTunes                        0x000000010afaceab 0x10ade3000 + 1875627
    31  com.apple.iTunes                        0x000000010afacd40 0x10ade3000 + 1875264
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff98b947e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff97714786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff97713316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff98b94192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff97016594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff97017b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff98b94192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff97016594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff97017b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff910fa50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff91102c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff91102486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9111219f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010af66d66 0x10ade3000 + 1588582
    7   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    8   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff97018274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010adfe0d4 0x10ade3000 + 110804
    3   com.apple.iTunes                        0x000000010adfdb99 0x10ade3000 + 109465
    4   com.apple.iTunes                        0x000000010adfd550 0x10ade3000 + 107856
    5   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    6   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff910fa50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff91102c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff91102486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9111219f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010ae229bb 0x10ade3000 + 260539
    7   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    8   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff970182a6 _pthread_cond_wait + 890
    2   com.apple.iTunes                        0x000000010ae33bef 0x10ade3000 + 330735
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010ae33a51 0x10ade3000 + 330321
    5   com.apple.iTunes                        0x000000010ae338d9 0x10ade3000 + 329945
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff970182a6 _pthread_cond_wait + 890
    2   com.apple.iTunes                        0x000000010ae33bef 0x10ade3000 + 330735
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010ae33a51 0x10ade3000 + 330321
    5   com.apple.iTunes                        0x000000010ae338d9 0x10ade3000 + 329945
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff970182a6 _pthread_cond_wait + 890
    2   com.apple.iTunes                        0x000000010ae33bef 0x10ade3000 + 330735
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010ae33a51 0x10ade3000 + 330321
    5   com.apple.iTunes                        0x000000010ae338d9 0x10ade3000 + 329945
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff970182a6 _pthread_cond_wait + 890
    2   com.apple.iTunes                        0x000000010ae33bef 0x10ade3000 + 330735
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010ae33a51 0x10ade3000 + 330321
    5   com.apple.iTunes                        0x000000010ae338d9 0x10ade3000 + 329945
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 11:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff97018274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff91a8f6c8 CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff91a8f3e9 _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.iTunes                        0x000000010af63053 0x10ade3000 + 1572947
    3   com.apple.iTunes                        0x000000010ae35ff5 0x10ade3000 + 339957
    4   com.apple.iTunes                        0x000000010af63aa3 0x10ade3000 + 1575587
    5   com.apple.iTunes                        0x000000010af68e8a 0x10ade3000 + 1597066
    6   com.apple.iTunes                        0x000000010b39cbe6 0x10ade3000 + 6003686
    7   com.apple.iTunes                        0x000000010af54c91 0x10ade3000 + 1514641
    8   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.iTunes                        0x000000010af63053 0x10ade3000 + 1572947
    3   com.apple.iTunes                        0x000000010ae35ff5 0x10ade3000 + 339957
    4   com.apple.iTunes                        0x000000010af63aa3 0x10ade3000 + 1575587
    5   com.apple.iTunes                        0x000000010af654bf 0x10ade3000 + 1582271
    6   com.apple.iTunes                        0x000000010b75c461 0x10ade3000 + 9933921
    7   com.apple.iTunes                        0x000000010af64605 0x10ade3000 + 1578501
    8   com.apple.iTunes                        0x000000010af6437c 0x10ade3000 + 1577852
    9   com.apple.iTunes                        0x000000010af64323 0x10ade3000 + 1577763
    10  com.apple.iTunes                        0x000000010af633cf 0x10ade3000 + 1573839
    11  com.apple.iTunes                        0x000000010af6308f 0x10ade3000 + 1573007
    12  com.apple.iTunes                        0x000000010af54c91 0x10ade3000 + 1514641
    13  libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    14  libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff97018274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010adfe0d4 0x10ade3000 + 110804
    3   com.apple.iTunes                        0x000000010ae228e3 0x10ade3000 + 260323
    4   com.apple.iTunes                        0x000000010af56713 0x10ade3000 + 1521427
    5   com.apple.iTunes                        0x000000010af56659 0x10ade3000 + 1521241
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.iTunes                        0x000000010af54c5b 0x10ade3000 + 1514587
    3   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 16:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff98b93df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff9114bc8b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff910fa50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff91102c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff91102486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9111219f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010af66d66 0x10ade3000 + 1588582
    7   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    8   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 18 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff98b93ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff970167d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff97007a7a abort + 143
    3   libsystem_c.dylib                       0x00007fff970294ac szone_error + 459
    4   libsystem_c.dylib                       0x00007fff970294e8 free_list_checksum_botch + 29
    5   libsystem_c.dylib                       0x00007fff97029ae0 small_free_list_remove_ptr + 264
    6   libsystem_c.dylib                       0x00007fff9702dc53 szone_free_definite_size + 3495
    7   libsystem_c.dylib                       0x00007fff97066789 free + 194
    8   com.apple.iTunes                        0x000000010b72a505 0x10ade3000 + 9729285
    9   com.apple.iTunes                        0x000000010ae0e808 0x10ade3000 + 178184
    10  com.apple.iTunes                        0x000000010ae06bab 0x10ade3000 + 146347
    11  com.apple.iTunes                        0x000000010afe7150 0x10ade3000 + 2113872
    12  com.apple.iTunes                        0x000000010afe706d 0x10ade3000 + 2113645
    13  com.apple.iTunes                        0x000000010afc42fc 0x10ade3000 + 1970940
    14  com.apple.iTunes                        0x000000010af54c91 0x10ade3000 + 1514641
    15  libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    16  libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff970182a6 _pthread_cond_wait + 890
    2   com.apple.iTunes                        0x000000010ae33bef 0x10ade3000 + 330735
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010ae33a51 0x10ade3000 + 330321
    5   com.apple.iTunes                        0x000000010ae338d9 0x10ade3000 + 329945
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff98b9267a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff98b91d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff910fa50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff91102c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff91102486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9111219f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010af66d66 0x10ade3000 + 1588582
    7   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    8   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff98b94192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff97016594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff97017b85 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff98b94192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff97016594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff97017b85 start_wqthread + 13
    Thread 23:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff98b93e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff96fcadea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff96fcabb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff952bd11b -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff9132c72a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff9132c6a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff97018274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010ae33bce 0x10ade3000 + 330702
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010afd0e3c 0x10ade3000 + 2022972
    5   com.apple.iTunes                        0x000000010afd0d11 0x10ade3000 + 2022673
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff98b93bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff97018274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010ae33bce 0x10ade3000 + 330702
    3   com.apple.iTunes                        0x000000010ae33ab4 0x10ade3000 + 330420
    4   com.apple.iTunes                        0x000000010ae33a51 0x10ade3000 + 330321
    5   com.apple.iTunes                        0x000000010ae338d9 0x10ade3000 + 329945
    6   com.apple.iTunes                        0x000000010ade92df 0x10ade3000 + 25311
    7   libsystem_c.dylib                       0x00007fff970148bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff97017b75 thread_start + 13
    Thread 18 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x000000011f884be8  rdx: 0x0000000000000000
      rdi: 0x0000000000012203  rsi: 0x0000000000000006  rbp: 0x000000011f884c10  rsp: 0x000000011f884be8
       r8: 0x00007fff7ebcafb8   r9: 0x0000000000000000  r10: 0x00007fff98b93d0a  r11: 0xffffff80002dad60
      r12: 0x000000010c57e000  r13: 0x0000000118d5e000  r14: 0x000000011f887000  r15: 0x0000000118d5e0c0
      rip: 0x00007fff98b93ce2  rfl: 0x0000000000000246  cr2: 0x0000000119120000
    Logical CPU: 0
    Binary Images:
           0x10ade3000 -        0x10c203fef  com.apple.iTunes (11.0.4 - 11.0.4) <67E80C94-C386-345C-8C79-13436004A025> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x10c580000 -        0x10c600ff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <0EE5C372-0F11-31C3-BE3E-F5B300596964> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x10c640000 -        0x10c66cff7  com.apple.avfoundationcf (2.0 - 63.21) <A3140BD7-BB0C-3BD7-8F63-2ECB98041B6E> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x10c69b000 -        0x10c6a1fff  com.apple.agl (3.2.0 - AGL-3.2.0) <C98394A8-305D-3904-BEAE-8340FF988F15> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10c6ac000 -        0x10c6b2fff  com.apple.iPod (1.7 - 19) <8F1B8246-F053-3CD1-9040-29440BDB19D7> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10c6ba000 -        0x10c9e6ff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x10ca0c000 -        0x10ca43ff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10ca55000 -        0x10cb2bfe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x10cb4f000 -        0x10cb92ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x10d014000 -        0x10d016fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10d01b000 -        0x10d01ffff  com.apple.audio.AudioIPCPlugIn (1.2.3 - 1.2.3) <F94D690D-3196-3B01-B798-09708367D28D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x10d024000 -        0x10d029fff  com.apple.audio.AppleHDAHALPlugIn (2.2.5 - 2.2.5a5) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10e039000 -        0x10ed94fff  com.apple.CoreFP (2.4.16 - 2.4.16) <BC24CECB-5B51-3BC7-A6AC-9D301D09F3C1> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x1109e7000 -        0x110b32ff7  com.apple.audio.units.Components (1.7.3 - 1.7.3) <CAC75CC0-DAD7-3DD3-91CF-DDE8B19DEBDD> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x110ba6000 -        0x110c43fff  com.apple.mobiledevice (555.43 - 555.43) <4460453F-C565-36B8-B1B8-6626AF98CBB5> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x110c8c000 -        0x110e6dff7  com.apple.audio.codecs.Components (2.3 - 2.3) <9FF1C1F7-F049-3CE0-AE2A-E3D220A7031B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x119867000 -        0x11986aff7  libCoreFSCache.dylib (??? - ???) <0D155750-7910-32C5-8327-924FC1089442> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x11d8e1000 -        0x11d8ebfef  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <4572AD1E-D1D1-3412-AFCC-D37037B1FAB5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x11e626000 -        0x11e7defff  GLEngine (??? - ???) <59179FEC-D0E2-38B3-BD49-765506A645AC> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11e815000 -        0x11e96ffff  libGLProgrammability.dylib (??? - ???) <90390984-70BC-365C-AB3E-16C35C4240CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x11e9a1000 -        0x11ed88fe7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.32.12 - 7.3.2) <5C9C9474-BA99-33A6-BAD8-628224491FED> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x11eeae000 -        0x11eebcfff  libGPUSupport.dylib (??? - ???) <9FF8DDA2-7CB1-3888-8AAE-227C7691CB98> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x11eec3000 -        0x11eef1ff7  GLRendererFloat (??? - ???) <06CA5D0B-BC5F-3CC7-836D-A02F7DB92BE8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff6a9e3000 -     0x7fff6aa17baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff8d86d000 -     0x7fff8d872fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8d873000 -     0x7fff8d874fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8d8ae000 -     0x7fff8e5e5fff  com.apple.WebCore (7534.57 - 7534.57.7) <33FCF30A-08C5-3169-B3B0-3A9462FA1A0D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8e5e6000 -     0x7fff8e64eff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e64f000 -     0x7fff8e6abff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8ea07000 -     0x7fff8ea0dff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8ea0e000 -     0x7fff8f1b6fff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8f352000 -     0x7fff8f5c6fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8f5d3000 -     0x7fff8f5e0fff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8f760000 -     0x7fff8f768fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8f769000 -     0x7fff8fa85fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8fa86000 -     0x7fff8fa87fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8fa88000 -     0x7fff8fa9ffff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8faa0000 -     0x7fff8fba1fff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8fbff000 -     0x7fff8fc32ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8fc33000 -     0x7fff90060fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff90061000 -     0x7fff90066fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff90067000 -     0x7fff90074ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
        0x7fff90075000 -     0x7fff90077fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff90078000 -     0x7fff900a0fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff909a2000 -     0x7fff909b1ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff909b2000 -     0x7fff90bb4fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff90bb5000 -     0x7fff90c09fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff90e45000 -     0x7fff90e5cfff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <559C1AFB-E0B4-3D23-9189-18DE09C06FFE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff90e62000 -     0x7fff90ebdff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff90edd000 -     0x7fff90fdffff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff910ca000 -     0x7fff9129eff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9129f000 -     0x7fff9129ffff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff912a0000 -     0x7fff912a9ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff912b0000 -     0x7fff912d1fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff912d2000 -     0x7fff915ebfff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff915ec000 -     0x7fff915ecfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9166a000 -     0x7fff91687ff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff91688000 -     0x7fff916c6fff  com.apple.bom (11.0 - 183) <F300B9EC-995E-33A7-9175-9F07D4B68F16> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff916cb000 -     0x7fff91a75fe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff91a76000 -     0x7fff91a8cfff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff91a8d000 -     0x7fff91ab6fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff91abf000 -     0x7fff91ac0ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff91ac1000 -     0x7fff91cebfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91d66000 -     0x7fff91ef1fff  com.apple.QTKit (7.7.1 - 2343) <2A7B0660-7E8F-378D-9D60-B9664410336E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff91ef2000 -     0x7fff92214fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff9226d000 -     0x7fff92323fff  com.apple.PDFKit (2.7.7 - 2.7.7) <96C0C88B-F049-39F1-92A5-180F1C2EE6EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9235f000 -     0x7fff92373ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff92394000 -     0x7fff92397fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff92398000 -     0x7fff923d8fe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff923d9000 -     0x7fff923dafff  libScreenReader.dylib (??? - ???) <7CC8F990-29A2-3F41-B2C1-A128F2498D8C> /usr/lib/libScreenReader.dylib
        0x7fff9241c000 -     0x7fff92492fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff924d1000 -     0x7fff924fcfff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff9254f000 -     0x7fff925bffff  com.apple.datadetectorscore (3.0 - 179.4) <4AB32B7F-8EC2-327E-BAC8-80129AA36E7B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff925c0000 -     0x7fff925c1fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff925c2000 -     0x7fff925c5fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff925c6000 -     0x7fff926cdfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff926ce000 -     0x7fff926cefff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff9270e000 -     0x7fff9270fff7  libsystem_sandbox.dylib (??? - ???) <5459F293-E1F2-33B3-B9B2-2ABB7B915B62> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff92710000 -     0x7fff92783fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff927ac000 -     0x7fff927d0fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff927d1000 -     0x7fff92867ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff92868000 -     0x7fff928acff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff928ad000 -     0x7fff9294ffff  com.apple.securityfoundation (5.0 - 55116) <70CDC3ED-39AA-3784-8715-F0F5E2CB9754> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff92950000 -     0x7fff92f34fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff92f35000 -     0x7fff92f3cfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff92f3d000 -     0x7fff92f8eff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff92f8f000 -     0x7fff92fddfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff92fde000 -     0x7fff92ff4ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff92ff5000 -     0x7fff93011ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff93012000 -     0x7fff93053fff  com.apple.QD (3.40.1 - ???) <13ACC7F4-B004-3370-B575-6D06447EE428> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff93054000 -     0x7fff930b4fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff930b5000 -     0x7fff930bbfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff930e6000 -     0x7fff930ecfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff930ed000 -     0x7fff93223fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff93224000 -     0x7fff93381fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff93382000 -     0x7fff9339cfff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff9339d000 -     0x7fff933a4fff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff933a5000 -     0x7fff933a5fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff93442000 -     0x7fff93466fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff934f6000 -     0x7fff93523fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <6E5C8AC3-DBB7-31CB-BEB7-D6ED8E6DE0CE> /usr/lib/libSystem.B.dylib
        0x7fff9353b000 -     0x7fff93566ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff93567000 -     0x7fff935bfff7  libTIFF.dylib (??? - ???) <59353B7F-EA9A-32D5-A501-283443B30C60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff935c0000 -     0x7fff93a87fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff93aa3000 -     0x7fff93ac9fff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff93aca000 -     0x7fff93ad5ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff93ad6000 -     0x7fff93ad8fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff93aea000 -     0x7fff93aeefff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff93b64000 -     0x7fff93b94ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff93ba3000 -     0x7fff93ba6fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff93ba7000 -     0x7fff93be1fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff93c3d000 -     0x7fff93c4bff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff93c4c000 -     0x7fff93d59fff  libJP2.dylib (??? - ???) <6AF1F5FC-34D4-3278-BEBB-0712B81890B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff93d5a000 -     0x7fff93d69fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff941ff000 -     0x7fff942e3ff7  com.apple.CoreServices.OSServices (478.50 - 478.50) <3D6AA4EF-C601-36C7-8F3A-A00964F01759> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff942e4000 -     0x7fff942eeff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff942ef000 -     0x7fff942f2ff7  com.apple.securityhi (4.0 - 1) <D0ABB03B-CEF9-39E0-A139-AA9484DBBC07> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff9431a000 -     0x7fff9431afff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9431b000 -     0x7fff94329fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9432a000 -     0x7fff94427ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff94428000 -     0x7fff94463fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff94464000 -     0x7fff945cbfff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff945cc000 -     0x7fff945deff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff9467a000 -     0x7fff9471bfff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff94779000 -     0x7fff947b8fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff949d3000 -     0x7fff94a25ff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff94a26000 -     0x7fff94acbfff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff94b42000 -     0x7fff94b55ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff94b70000 -     0x7fff94b75ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff94b76000 -     0x7fff94b7bfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff94b7c000 -     0x7fff94c5afff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <F434B351-AE30-3D1B-9DAF-4581D080D2BC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff94c5b000 -     0x7fff95079ff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff9507a000 -     0x7fff9507ffff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff95080000 -     0x7fff95c86fff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff95c87000 -     0x7fff95d66fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <047DFE61-500F-3F11-9881-D0844D2FCE5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff95d67000 -     0x7fff95dbafff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff95dbb000 -     0x7fff95dc8fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff9648e000 -     0x7fff96499ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff9649a000 -     0x7fff9649eff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff964be000 -     0x7fff964c9fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff964d5000 -     0x7fff964d7fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff964d8000 -     0x7fff96e76a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff96e77000 -     0x7fff96f2aff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff96f2b000 -     0x7fff96fc5ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff96fc6000 -     0x7fff970a3fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B4

    Hi there rapitupnow9!
    I have a couple of links here for you that should be able to help you with this issue. First, I would suggest isolating the issue by following the steps located in this article:
    Isolating an issue by using another user account
    http://support.apple.com/kb/TS4053
    If you are still having trouble with iTunes in the new user account, then you should attempt to reinstall iTunes on your computer. Information about doing this can be found here:
    OS X Lion: Reinstall applications that came with your computer
    http://support.apple.com/kb/PH4360
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • ES2 Environment Unstable | head_application_configuration_uuid does not exist on object-type: dsc.sc

    We have test environment in running state for the past months, developer complained something is not usual, when tried to review if any new applications deployed thru admin UI, I ended up this error:
    [11/2/12 17:54:45:367 EDT] 00000028 servlet       I com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: [LiveCycleES2] [/AACComponent] [/layouts/aacLayout.jsp]: Initialization successful.
    [11/2/12 17:54:47:345 EDT] 00000033 TilesRequestP I org.apache.struts.tiles.TilesRequestProcessor initDefinitionsMapping Tiles definition factory found for request processor ''.
    [11/2/12 17:54:49:668 EDT] 00000033 LocalExceptio E   CNTR0020E: EJB threw an unexpected (non-declared) exception during invocation of method "doSupports" on bean "BeanId(LiveCycleES2#adobe-dscf.jar#EjbTransactionCMTAdapter, null)". Exception data: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.pof.schema.POFAbstractObjectType.getAttribute(POFAbstractObjectType.java:177)
            at com.adobe.pof.DefaultGenericObject.getValue(DefaultGenericObject.java:88)
            at com.adobe.idp.dsc.boi.BOIApplicationBase.getHeadApplicationConfigurationUuid(BOIApplicati onBase.java:237)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationStoreImpl.getApplications(Ap plicationStoreImpl.java:515)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationRegistryImpl.getApplications (ApplicationRegistryImpl.java:906)
            at com.adobe.idp.applicationmanager.service.ApplicationManagerService.getApplications(Applic ationManagerService.java:1206)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
            at com.adobe.idp.applicationmanager.invoker.ApplicationInvoker.invoke(ApplicationInvoker.jav a:38)
            at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionCMTAdapter_ caf58c4f.doSupports(Unknown Source)
            at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
            at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
            at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:20 9)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.idp.applicationmanager.client.ApplicationManagerClient.callApplicationManager(A pplicationManagerClient.java:78)
            at com.adobe.idp.applicationmanager.client.ApplicationManager.getApplications(ApplicationMan ager.java:336)
            at com.adobe.repository.ui.aac.struts.actions.SwitchArchivesPageAction.execute(SwitchArchive sPageAction.java:168)
            at com.adobe.repository.ui.aac.struts.actions.CommandProcessorAction.execute(CommandProcesso rAction.java:228)
            at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
            at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
            at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
            at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1657)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1597)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:131)
            at com.adobe.repository.ui.aac.AacServletFilter.doFilter(AacServletFilter.java:137)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SecurityFilter.doFilter(SecurityFilter.java:206)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SessionBundleFilter.doFilter(SessionBundleFilter.java:135)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.repository.ui.aac.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java :76)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:77)
            at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:908)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:934)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
            at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 179)
            at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3933)
            at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
            at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
            at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
            at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:452)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:511)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 305)
            at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a:83)
            at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLRe adServiceContext.java:1784)
            at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
            at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
            at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
            at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
            at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
            at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
            at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
            at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    [11/2/12 17:54:49:744 EDT] 00000033 DMAdapter     I com.ibm.ws.ffdc.impl.DMAdapter getAnalysisEngine FFDC1009I: Analysis Engine using data base: /wsste/wasapps/OLF/WASv70/profiles/nhwsutgCell/nhwsutg/properties/logbr/ffdc/adv/ffdcdb.x ml
    [11/2/12 17:54:50:706 EDT] 00000033 FfdcProvider  W com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident emitted on /wsste/wasapps/OLF/WASv70/profiles/nhwsutgCell/nhwsutg/logs/ffdc/ADB_nhwsutgServer1_55fa5 5fa_12.11.02_17.54.49.6837809252540716734891.txt com.ibm.ejs.container.LocalExceptionMappingStrategy.setUncheckedException 178
    [11/2/12 17:54:50:715 EDT] 00000033 LocalTranCoor E   WLTC0017E: Resources rolled back due to setRollbackOnly() being called.
    [11/2/12 17:54:51:544 EDT] 00000033 FfdcProvider  W com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident emitted on /wsste/wasapps/OLF/WASv70/profiles/nhwsutgCell/nhwsutg/logs/ffdc/ADB_nhwsutgServer1_55fa5 5fa_12.11.02_17.54.50.7232356566147224587866.txt com.ibm.ejs.csi.TranStrategy.rollback 375
    [11/2/12 17:54:51:552 EDT] 00000033 CommandProces E   Application Administration: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
                                     java.lang.RuntimeException: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.repository.ui.aac.struts.actions.SwitchArchivesPageAction.execute(SwitchArchive sPageAction.java:190)
            at com.adobe.repository.ui.aac.struts.actions.CommandProcessorAction.execute(CommandProcesso rAction.java:228)
            at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
            at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
            at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
            at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1657)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1597)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:131)
            at com.adobe.repository.ui.aac.AacServletFilter.doFilter(AacServletFilter.java:137)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SecurityFilter.doFilter(SecurityFilter.java:206)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SessionBundleFilter.doFilter(SessionBundleFilter.java:135)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.repository.ui.aac.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java :76)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:77)
            at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:908)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:934)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
            at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 179)
            at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3933)
            at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
            at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
            at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
            at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:452)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:511)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 305)
            at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a:83)
            at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLRe adServiceContext.java:1784)
            at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
            at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
            at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
            at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
            at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
            at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
            at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
            at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    Caused by: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.idp.applicationmanager.client.ApplicationManagerClient.callApplicationManager(A pplicationManagerClient.java:98)
            at com.adobe.idp.applicationmanager.client.ApplicationManager.getApplications(ApplicationMan ager.java:336)
            at com.adobe.repository.ui.aac.struts.actions.SwitchArchivesPageAction.execute(SwitchArchive sPageAction.java:168)
            ... 45 more
    Caused by: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.idp.dsc.boi.BOIApplicationBase.getHeadApplicationConfigurationUuid(BOIApplicati onBase.java:240)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationStoreImpl.getApplications(Ap plicationStoreImpl.java:515)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationRegistryImpl.getApplications (ApplicationRegistryImpl.java:906)
            at com.adobe.idp.applicationmanager.service.ApplicationManagerService.getApplications(Applic ationManagerService.java:1206)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
            at com.adobe.idp.applicationmanager.invoker.ApplicationInvoker.invoke(ApplicationInvoker.jav a:38)
            at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionCMTAdapter_ caf58c4f.doSupports(Unknown Source)
            at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
            at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
            at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:20 9)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.idp.applicationmanager.client.ApplicationManagerClient.callApplicationManager(A pplicationManagerClient.java:78)
            ... 47 more
    I did run the LCM to see if that fix the issue, but it failed at Db initializing. error as below:
    [2012-11-02 17:38:50,723], SEVERE, Thread-11, com.adobe.livecycle.bootstrap.client.BootstrapRequestClient, com.adobe.livecycle.bootstrap.BootstrapException: ALC-TTN-011-031: Bootstrapping failed for platform component [DocumentServiceContainer].  The wrapped exception's message reads:
    See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not exist on object-type: dsc.sc_application.
            at com.adobe.livecycle.bootstrap.bootstrappers.DSCBootstrapper.bootstrap(DSCBootstrapper.jav a:73)
            at com.adobe.livecycle.bootstrap.framework.ManualBootstrapInvoker.invoke(ManualBootstrapInvo ker.java:78)
            at com.adobe.livecycle.bootstrap.framework.BootstrapServlet.doGet(BootstrapServlet.java:156)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1657)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:939)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
            at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 179)
            at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:91)
            at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:864)
            at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
            at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
            at com.ibm.ws.ard.channel.ARDChannelConnLink.handleDiscrimination(ARDChannelConnLink.java:18 8)
            at com.ibm.ws.ard.channel.ARDChannelConnLink.ready(ARDChannelConnLink.java:93)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:452)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:511)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 305)
            at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a:78)
            at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
            at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
            at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
            at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
            at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
            at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
            at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
            at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    Caused by: javax.ejb.EJBException: See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not exist on object-type: dsc.sc_application.
            at com.adobe.pof.odapi.POFSchemaManagerImpl.synchronizeAll(POFSchemaManagerImpl.java:1127)
            at com.adobe.pof.odapi.POFSchemaManagerRemoteBean.synchronizeAll(POFSchemaManagerRemoteBean. java:511)
            at com.adobe.pof.odapi.EJSLocalStatelessadobe_POFSchemaManagerLocalEJB_626825cc.synchronizeA ll(Unknown Source)
            at com.adobe.pof.odapi.POFSchemaManagerLocalEJBAdapter.synchronizeAll(POFSchemaManagerLocalE JBAdapter.java:135)
            at com.adobe.idp.dsc.initializer.DSCInitializerBean.installSchema(DSCInitializerBean.java:20 1)
            at com.adobe.idp.dsc.initializer.DSCInitializerBean.bootstrap(DSCInitializerBean.java:94)
            at com.adobe.idp.dsc.initializer.EJSLocalStatelessDSCInitializerBeanLocalEJB_7bb34e85.bootst rap(Unknown Source)
            at com.adobe.livecycle.bootstrap.bootstrappers.DSCBootstrapper.bootstrap(DSCBootstrapper.jav a:68)
            ... 26 more
    Caused by: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not exist on object-type: dsc.sc_application.
            ... 34 more
    [2012-11-02 17:38:50,735], INFO, Thread-11, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask, Completing task: com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask@4c144c14 isDone:true
    [2012-11-02 17:38:50,735], INFO, Thread-11, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask, Completing task: com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask@4c144c14 isDone:true
    [2012-11-02 17:38:50,736], SEVERE, Thread-11, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask, Task failed
    com.adobe.livecycle.bootstrap.BootstrapException: ALC-TTN-103-000: Bootstrapping request failed on server.  Message from server:
    ALC-TTN-011-031: Bootstrapping failed for platform component [DocumentServiceContainer].  The wrapped exception's message
    reads:
    See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not
    exist on object-type: dsc.sc_application.
    Check application server logs for details.
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.analyzeResponse(BootstrapRequ estClient.java:152)
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.bootstrap(BootstrapRequestCli ent.java:63)
            at com.adobe.livecycle.bootstrap.client.BootstrapManager.executeStep(BootstrapManager.java:2 03)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$ActualTask.<init>(BootstrapTask.j ava:125)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$1.construct(BootstrapTask.java:58 )
            at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
            at java.lang.Thread.run(Thread.java:736)
    [2012-11-02 17:38:51,184], SEVERE, AWT-EventQueue-0, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapDialog, Bootstrap exception
    com.adobe.livecycle.bootstrap.BootstrapException: ALC-TTN-103-000: Bootstrapping request failed on server.  Message from server:
    ALC-TTN-011-031: Bootstrapping failed for platform component [DocumentServiceContainer].  The wrapped exception's message
    reads:
    See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not
    exist on object-type: dsc.sc_application.
    Check application server logs for details.
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.analyzeResponse(BootstrapRequ estClient.java:152)
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.bootstrap(BootstrapRequestCli ent.java:63)
            at com.adobe.livecycle.bootstrap.client.BootstrapManager.executeStep(BootstrapManager.java:2 03)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$ActualTask.<init>(BootstrapTask.j ava:125)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$1.construct(BootstrapTask.java:58 )
            at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
            at java.lang.Thread.run(Thread.java:736)
    [2012-11-02 17:40:38,734], INFO, AWT-EventQueue-0, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapDialog, onExit(com.adobe.livecycle.lcm.gui.LCMDialogExitEvent: CLOSE)
    Techstack: ES2 (9.5), AIX 6.1, Oracle 11gr2, WAS 7.0.0.17.
    Any one faced similar issue can add their inputs, How can we avoid such issues in future.
    Thanks in advance and much appreciated.
    Regards,
    Buddiga

    This error disappeared when we changed to the drivers ojdbc6.jar provided by Adobe along with the bundle. We were using the one that are available local to the system(default from oracle). I shall post more information if I see any other occurance.
    Hope this is helpful.

Maybe you are looking for

  • How can you set up a "ring around" that us old timers used to do in the dark room for printing?

    I have a calibrated monitor. I have set up the proper profile for my epson 1400 printer using only epson ink. I am using PSE 5.0 and am perfectly happy with it.Working on Win Vista Business. I tried "soft proofing" in Quimage and was not happy with i

  • Enhanced RD from SP14 or SP16?

    Hi , Can any one tell me from when XI has the additional option for ENHANCED Receiver Determination.Is it from SP 14 or SP16? How can i find my XI system SP? Somehow I came across EXTENDED receiver determination.What is ENHANCED Rd and what is EXTEND

  • Merge play counts between work and home?

    Hi all, I use iTunes at work with a moderately substantial library, mostly made up of songs I haven't listened to much at home which I can stick on an SD card and take in. I also use it here but with a library that is about 4x as big. Basically I'm w

  • When I try to sync i get the message "original file could not be found.  What does that mean?

    When I try to sync i get the message "original file could not be found.  What does that mean? Have i lost all the music on my computer?

  • Save time on migration!

    I wanted to just write few notes on the migration process i just did hoping this could be usefull to someone else. I just received a MacbookPro Retina and i'm going to use this as a replacement of my old Macbook pro (end 2008 non-unibody). Since the