Oracle crashes when trying to pull reports into Excel

We are using Oracle 806 with Designer 2000 to pull reports into excel (office 2003).
Here is the issue, when we try to pull the report into Excel the report pulls and it puts it in the tmapps/files folder, but excel does not open and oracle crashes.
We also tested it with office 07 with the same results.
What could be causing this?
Let me know if there is any other information I can provide to help you help me.
thank you!

If by "oracle crashes" you mean the DB, then there are trace/dump files that the DBA can find that will help to identify the cause of the crash. If you mean Designer, I have no experience there.
Regardless, consider newer versions/alternatives to both since they are both very dated (10 years at least) by this point.

Similar Messages

  • Outlook crashes when trying to attach file. Excel crashes when trying to save. (Possibly Connected)

    A colleague is trying to attach a file to an email by clicking the attachment icon and it crashes, however it does not crash when you drag and drop.
    When they try to save an excel file by going New File > Save as, it crashes, but when you right click in a folder or desktop and create new excel and then work on it and save, it works.
    I already uninstalled, install compatibility pack again, reinstall, updated, disable all add-ons and ran them both in safe mode and it still crashes. Any ideas?
    Thanks in advance.

    '''eshbach''', Did you try updating the Trusteer Rapport software and did it fix the problem with Firefox crashing when downloading a file or saving a page?
    '''mike_berry413''',
    If you don't need the Trusteer Rapport software, you can remove it. If you need the software, you can try updating it or else temporarily disable it to see if that stops the crashes.
    For the record, here is the crash report from the ReportID you posted:
    https://crash-stats.mozilla.com/report/index/bp-fcd33048-3845-45f3-907c-9c5c62110930
    Firefox 7.0.1 Crash Report [@ rapporttanzan7.dll@0x620c ]
    ID: fcd33048-3845-45f3-907c-9c5c62110930
    Signature: rapporttanzan7.dll@0x620c

  • Short dump when trying to download alv into excel

    Hi SAPAll.
    here i have got one alv report ,when executing this alv report it displays in correct way but the only problem is when i click on the icon(local file) which exists at standard tool bar at the top to dowbload into local excel file it is raising the runtime error as
      The current statement requires a character-type data object.
    at happened?
      Error in the ABAP Application Program
      The current ABAP program "SAPLKKBL" had to be terminated because it has
      come across a statement that unfortunately cannot be executed.
    ror analysis
      At the statment
           "STRLEN( obj )..."
      , only character-type data objects are supported at the argument
      position "obj".
      In this particular case, the operand "obj" has the non-charcter-type type
      "P".
    igger Location of Runtime Error
      Program                                 SAPLKKBL
      Include                                 LKKBLF99
      Row                                     3.948
      Module type                             (FORM)
      Module Name                             GEN_FIELD_OUT2
    Line  SourceCde
    3923 * Bei NUMC führende '0' und ' ' nicht berücksichtigen
    3924   elseif gs_fc-tech_form = 6.
    3925     write  to gs_out-hlpchar no-zero left-justified.
    3926     if gs_fc-just = 'R'.
    3927       condense gs_out-hlpchar.
    3928     endif.
    3929     gs_out-hlplen = strlen( gs_out-hlpchar ).
    3930   elseif gs_fc-tech_form = 11.                              "INS TECH11
    3931 *   Min. Ausgabelänge für ein Datum ist immer 8
    3932     if gs_fc-datatype = 'DATS'.                             "INS TECH11
    3933       gs_out-hlplen = 8.                                    "INS TECH11
    3934 *    Min. Ausgabelänge für eine Uhrzeit ist immer 6
    3935     elseif gs_fc-datatype = 'TIMS'.                         "INS TECH11
    3936       gs_out-hlplen = 6.                                    "INS TECH11
    3937     endif.                                                  "INS TECH11
    3938   elseif gs_fc-tech_form = 1 or gs_fc-tech_form = 90.
    3939 *   Überführung int. in ext. Format via Konvertierungsexit
    3940     if not gs_fc-convexit is initial or                     "INS TECH11
    3941        not gs_fc-inttype ca 'CN'.
    3942 *   elseif not gs_fc-convexit is initial.            "DEL TECH11
    will be waiting for quick response please respond at your discretion.
    regards.
    Varma
    Edited by: Thomas Zloch on Mar 11, 2010 11:48 AM

    hi suhas .
    the folliwing below is the code for alv and i had used 2 different structures for populating the data into alv
    FORM fieldcat_init  USING    p_fieldcat TYPE slis_t_fieldcat_alv.
      DATA: ls_fieldcat TYPE slis_fieldcat_alv.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname   = 'ORDER'.
      ls_fieldcat-ref_tabname = 'st_proc_out'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_s   = 'ORDER NUMBER'.
      ls_fieldcat-seltext_m   = 'ORDER NUMBER'.
      ls_fieldcat-seltext_l   = 'ORDER NUMBER'.
      APPEND ls_fieldcat TO p_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname   = 'P_ORDER'.
      ls_fieldcat-ref_tabname = 'st_proc_out'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_s   = 'P.O.NUMBER'.
      ls_fieldcat-seltext_m   = 'P.O.NUMBER'.
      ls_fieldcat-seltext_l   = 'P.O.NUMBER'.
      APPEND ls_fieldcat TO p_fieldcat.
    CLEAR ls_fieldcat.
      ls_fieldcat-fieldname   ='LINE'.
      ls_fieldcat-ref_tabname = 'st_proc_out2'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_s   = 'Line Number'.
      ls_fieldcat-seltext_m   = 'Line Number'.
      ls_fieldcat-seltext_l   = 'Line Number'.
      APPEND ls_fieldcat TO p_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname   ='MATNO'.
      ls_fieldcat-ref_tabname = 'st_proc_out2'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_s   = 'Mat.Number'.
      ls_fieldcat-seltext_m   = 'Mat.Number'.
      ls_fieldcat-seltext_l   = 'Mat.Number'.
      APPEND ls_fieldcat TO p_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname   ='MATERIAL'.
      ls_fieldcat-ref_tabname = 'st_proc_out2'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_s   = 'Mat Descrption'.
      ls_fieldcat-seltext_m   = 'Mat Descrption'.
      ls_fieldcat-seltext_l   = 'Mat Descrption'.
      APPEND ls_fieldcat TO p_fieldcat .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = 'YSDRO024C1'
          i_grid_title       = 'EXPORT ORDER REPORT'
          is_layout          = alv_layout
          it_fieldcat        = alv_fieldcat
          i_save             = 'A'
        TABLES
          t_outtab           = i_output
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM  proc_print.
    FORM proc_print .
      DATA: ls_fieldcat TYPE slis_fieldcat_alv.
      CLEAR ls_fieldcat.
      ls_fieldcat-col_pos     = '1'.
      ls_fieldcat-fieldname   = 'ORDER'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_m   = 'ORDER NUMBER'.
      ls_fieldcat-ddictxt     = 'M'.
      APPEND ls_fieldcat TO alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-col_pos     = '2'.
      ls_fieldcat-fieldname   = 'P_ORDER'.
      ls_fieldcat-key         = 'X'.
      ls_fieldcat-seltext_m   = 'PO NUMBER'.
      ls_fieldcat-ddictxt     = 'M'.
      APPEND ls_fieldcat TO alv_fieldcat.
    regards,
    Varma

  • Crashing when trying to insert file into multitrack

    I am using CS4 on a MacBook Pro. Has been working fine last four months and then recently whenever I try to put an audio file into a multitrack file, the program closes with this message:
    Adobe Soundbooth CS4 quit unexpectedly.
    Here are the boring details. Crashes every time. I have completely uninstalled the entire CS4 Master Suite and Reinstalled it. Same issue. Below is the latest crash report.
    Process:         Adobe Soundbooth CS4 [4036]
    Path:            /Applications/Adobe Soundbooth CS4/Adobe Soundbooth CS4.app/Contents/MacOS/Adobe Soundbooth CS4
    Identifier:      com.adobe.Soundbooth
    Version:         20080902.0652 (2.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [86]
    Date/Time:       2011-01-20 13:30:39.686 -0800
    OS Version:      Mac OS X 10.6.6 (10J567)
    Report Version:  6
    Interval Since Last Report:          110359 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  749 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      760CEB88-C10C-44E9-AA38-81F5E3D18531
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7ffff0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x98be54a2 tiny_malloc_from_free_list + 981
    1   libSystem.B.dylib             0x98be4301 szone_malloc_should_clear + 263
    2   libSystem.B.dylib             0x98be41a8 malloc_zone_malloc + 81
    3   com.apple.CoreFoundation      0x92baff27 _CFArrayReplaceValues + 2647
    4   com.apple.CoreFoundation      0x92baf4ab CFArrayAppendValue + 139
    5   com.apple.audio.CoreAudio     0x90d9c5b2 CACFArray::AppendString(__CFString const*) + 36
    6   com.apple.audio.CoreAudio     0x90d8db47 IOA_MultiDeviceDescription::CopySubDeviceUIDList() const + 279
    7   com.apple.audio.CoreAudio     0x90d8acf8 IOA_MultiDevice::GetPropertyData(AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 200
    8   com.apple.audio.CoreAudio     0x90d53b2b HP_HardwarePlugIn_ObjectGetPropertyData(AudioHardwarePlugInInterface**, unsigned long, AudioObjectPropertyAddress const*, unsigned long, void const*, unsigned long*, void*) + 379
    9   com.apple.audio.CoreAudio     0x90d538d8 HALPlugIn::ObjectGetPropertyData(HALObject const&, AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 92
    10  com.apple.audio.CoreAudio     0x90d49b23 HALObject::GetPropertyData(AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 529
    11  com.apple.audio.CoreAudio     0x90d55b69 HALDevice::GetPropertyData(AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 1193
    12  com.apple.audio.CoreAudio     0x90d494d7 AudioObjectGetPropertyData + 365
    13  ...ore.Frameworks.AudioSupport 0x03516e35 ML::Device::GetNumberOfSubDevicesInAggregation(unsigned long) + 165
    14  ...ore.Frameworks.AudioSupport 0x0351923d ML::Device::GetSubDevicesInAggregation(unsigned long, std::vector<unsigned long, std::allocator<unsigned long> >&) + 49
    15  ...ore.Frameworks.AudioSupport 0x035193ee ML::Device::GetNumberStreams(unsigned long, unsigned char) + 70
    16  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    17  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    18  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    19  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    20  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    21  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    22  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    23  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    24  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    25  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    26  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    27  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    28  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    29  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    30  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    31  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    32  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    33  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    34  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    35  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    36  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    37  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    38  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    39  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    40  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    41  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    42  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    43  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    44  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    45  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    46  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    47  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    48  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    49  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    50  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    51  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    52  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    53  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    54  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    55  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    56  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    57  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    58  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    59  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    60  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    61  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    62  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    63  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    64  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    65  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    66  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    67  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    68  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    69  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    70  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    71  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    72  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    73  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    74  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    75  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    76  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    77  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    78  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    79  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    80  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    81  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    82  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    83  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    84  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    85  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    86  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    87  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    88  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    89  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    90  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    91  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    92  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    93  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    94  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    95  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    96  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    97  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    98  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    99  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    100 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    101 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    102 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    103 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    104 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    105 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    106 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    107 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    108 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    109 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    110 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    111 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    112 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    113 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    114 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    115 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    116 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    117 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    118 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    119 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    120 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    121 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    122 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    123 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    124 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    125 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    126 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    127 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    128 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    129 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    130 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    131 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    132 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    133 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    134 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    135 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    136 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    137 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    138 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    139 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    140 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    141 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    142 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    143 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    144 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    145 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    146 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    147 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    148 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    149 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    150 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    151 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    152 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    153 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    154 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    155 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    156 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    157 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    158 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    159 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    160 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    161 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    162 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    163 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    164 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    165 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    166 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    167 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    168 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    169 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    170 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    171 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    172 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    173 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    174 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    175 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    176 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    177 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    178 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    179 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    180 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    181 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    182 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    183 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    184 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    185 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    186 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    187 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    188 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    189 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    190 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    191 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    192 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    193 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    194 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    195 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    196 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    197 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    198 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    199 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    200 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    201 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    202 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    203 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    204 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    205 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    206 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    207 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    208 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    209 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    210 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    211 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    212 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    213 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    214 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    215 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    216 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    217 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    218 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    219 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    220 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    221 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    222 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    223 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    224 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    225 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    226 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    227 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    228 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    229 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    230 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    231 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    232 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    233 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    234 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    235 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    236 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    237 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    238 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    239 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    240 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    241 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    242 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    243 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    244 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    245 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    246 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    247 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    248 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    249 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    250 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    251 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    252 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    253 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    254 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    255 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    256 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    257 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    258 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    259 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    260 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    261 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    262 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    263 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    264 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    265 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    266 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    267 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    268 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    269 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    270 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    271 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    272 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    273 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    274 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    275 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    276 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    277 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    278 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    279 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    280 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    281 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    282 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    283 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    284 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    285 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    286 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    287 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    288 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    289 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    290 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    291 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    292 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    293 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    294 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    295 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    296 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    297 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    298 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    299 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    300 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    301 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    302 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    303 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    304 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    305 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    306 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    307 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    308 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    309 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    310 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    311 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    312 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    313 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    314 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    315 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    316 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    317 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    318 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    319 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    320 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    321 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    322 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    323 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    324 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    325 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    326 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    327 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    328 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    329 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    330 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    331 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    332 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    333 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    334 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    335 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    336 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    337 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    338 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    339 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    340 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    341 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    342 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    343 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    344 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    345 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    346 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    347 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    348 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    349 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    350 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    351 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    352 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    353 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    354 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    355 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    356 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    357 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    358 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    359 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    360 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    361 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    362 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    363 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    364 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    365 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    366 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    367 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    368 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    369 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    370 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    371 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    372 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    373 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    374 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    375 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    376 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    377 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    378 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    379 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    380 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    381 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    382 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    383 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    384 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    385 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    386 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    387 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    388 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    389 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    390 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    391 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    392 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    393 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    394 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    395 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    396 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    397 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    398 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    399 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    400 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    401 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    402 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    403 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    404 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    405 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    406 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    407 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    408 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    409 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    410 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    411 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    412 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    413 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    414 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    415 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    416 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    417 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    418 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    419 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    420 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    421 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    422 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    423 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    424 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    425 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    426 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    427 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    428 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    429 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    430 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    431 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    432 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    433 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    434 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    435 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    436 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    437 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    438 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    439 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    440 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    441 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    442 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    443 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    444 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    445 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    446 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    447 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    448 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    449 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    450 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    451 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    452 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    453 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    454 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    455 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    456 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    457 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    458 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    459 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    460 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    461 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    462 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    463 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    464 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    465 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    466 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    467 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    468 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    469 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    470 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    471 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    472 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    473 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    474 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    475 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    476 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    477 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    478 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    479 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    480 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    481 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    482 ...ore.Frameworks.AudioSupport

    OK, here's a kicker for ya. I just recorded a file by switching my inputs to the onboard mic on the Macbook pro. I then inserted it into a multi-track file and it worked fine. Then I inserted the others files I was trying to use and they worked fine. The only thing I can think of is the USB input from my mixer must have momentarily wigged out the program until the input/output was changed again. Working fine.

  • Mathematica crashes when trying to plot 3D graphics.

    Regardless to version 8 or 7 and to the command line option -mesa, mathematica crashes when trying to plot 3D graphics.
    The resulting errors, after launching mathematica and trying to execute a Plot3D in the examples, are:
    X Error of failed request: GLXBadContext
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 6 (X_GLXIsDirect)
    Serial number of failed request: 111091
    Current serial number in output stream: 111090
    X Error of failed request: BadAlloc (insufficient resources for operation)
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 3 (X_GLXCreateContext)
    Serial number of failed request: 111086
    Current serial number in output stream: 111091
    X Error of failed request: GLXBadContext
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 5 (X_GLXMakeCurrent)
    Serial number of failed request: 111092
    Current serial number in output stream: 111092
    Mathematica has received the signal: SIGSEGV and has exited.
    If possible, please report this problem to [email protected]
    describing in as much detail as possible what you were doing
    when the problem occurred.
    The fact is that
    $ glxgears
    works fine while the output of glxinfo is
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_multisample, GLX_EXT_create_context_es2_profile,
    GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method,
    GLX_SGI_swap_control, GLX_SGIS_multisample, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_INTEL_swap_event
    client glx vendor string: Mesa Project and SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_get_proc_address,
    GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_EXT_framebuffer_sRGB,
    GLX_EXT_create_context_es2_profile, GLX_MESA_copy_sub_buffer,
    GLX_MESA_multithread_makecurrent, GLX_MESA_swap_control,
    GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGI_make_current_read,
    GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample,
    GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group,
    GLX_EXT_texture_from_pixmap, GLX_INTEL_swap_event
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating,
    GLX_EXT_create_context_es2_profile, GLX_MESA_copy_sub_buffer,
    GLX_MESA_multithread_makecurrent, GLX_MESA_swap_control,
    GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGI_make_current_read,
    GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample,
    GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group,
    GLX_EXT_texture_from_pixmap, GLX_INTEL_swap_event
    OpenGL vendor string: Intel Open Source Technology Center
    OpenGL renderer string: Mesa DRI Mobile Intel® GM45 Express Chipset
    OpenGL version string: 2.1 Mesa 9.0.1
    OpenGL shading language version string: 1.20
    OpenGL extensions:
    GL_ARB_multisample, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_copy_texture,
    GL_EXT_polygon_offset, GL_EXT_subtexture, GL_EXT_texture_object,
    GL_EXT_vertex_array, GL_EXT_compiled_vertex_array, GL_EXT_texture,
    GL_EXT_texture3D, GL_IBM_rasterpos_clip, GL_ARB_point_parameters,
    GL_EXT_draw_range_elements, GL_EXT_packed_pixels, GL_EXT_point_parameters,
    GL_EXT_rescale_normal, GL_EXT_separate_specular_color,
    GL_EXT_texture_edge_clamp, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod, GL_ARB_framebuffer_sRGB, GL_ARB_multitexture,
    GL_EXT_framebuffer_sRGB, GL_IBM_multimode_draw_arrays,
    GL_IBM_texture_mirrored_repeat, GL_3DFX_texture_compression_FXT1,
    GL_ARB_texture_cube_map, GL_ARB_texture_env_add, GL_ARB_transpose_matrix,
    GL_EXT_blend_func_separate, GL_EXT_fog_coord, GL_EXT_multi_draw_arrays,
    GL_EXT_secondary_color, GL_EXT_texture_env_add,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod_bias,
    GL_INGR_blend_func_separate, GL_NV_blend_square, GL_NV_light_max_exponent,
    GL_NV_texgen_reflection, GL_NV_texture_env_combine4,
    GL_SUN_multi_draw_arrays, GL_ARB_texture_border_clamp,
    GL_ARB_texture_compression, GL_EXT_framebuffer_object,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, GL_MESA_window_pos,
    GL_NV_packed_depth_stencil, GL_NV_texture_rectangle, GL_NV_vertex_program,
    GL_ARB_depth_texture, GL_ARB_occlusion_query, GL_ARB_shadow,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
    GL_ARB_window_pos, GL_ATI_envmap_bumpmap, GL_EXT_stencil_two_side,
    GL_EXT_texture_cube_map, GL_NV_depth_clamp, GL_NV_vertex_program1_1,
    GL_APPLE_packed_pixels, GL_APPLE_vertex_array_object, GL_ARB_draw_buffers,
    GL_ARB_fragment_program, GL_ARB_fragment_shader, GL_ARB_shader_objects,
    GL_ARB_vertex_program, GL_ARB_vertex_shader, GL_ATI_draw_buffers,
    GL_ATI_texture_env_combine3, GL_ATI_texture_float, GL_EXT_shadow_funcs,
    GL_EXT_stencil_wrap, GL_MESA_pack_invert, GL_MESA_ycbcr_texture,
    GL_NV_primitive_restart, GL_ARB_depth_clamp,
    GL_ARB_fragment_program_shadow, GL_ARB_half_float_pixel,
    GL_ARB_occlusion_query2, GL_ARB_point_sprite, GL_ARB_shading_language_100,
    GL_ARB_sync, GL_ARB_texture_non_power_of_two, GL_ARB_vertex_buffer_object,
    GL_ATI_blend_equation_separate, GL_EXT_blend_equation_separate,
    GL_OES_read_format, GL_ARB_color_buffer_float, GL_ARB_pixel_buffer_object,
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_float,
    GL_ARB_texture_rectangle, GL_EXT_packed_float, GL_EXT_pixel_buffer_object,
    GL_EXT_texture_compression_rgtc, GL_EXT_texture_rectangle,
    GL_EXT_texture_sRGB, GL_EXT_texture_shared_exponent,
    GL_ARB_framebuffer_object, GL_EXT_framebuffer_blit,
    GL_EXT_framebuffer_multisample, GL_EXT_packed_depth_stencil,
    GL_APPLE_object_purgeable, GL_ARB_vertex_array_object,
    GL_ATI_separate_stencil, GL_EXT_draw_buffers2, GL_EXT_draw_instanced,
    GL_EXT_gpu_program_parameters, GL_EXT_texture_array,
    GL_EXT_texture_integer, GL_EXT_texture_sRGB_decode, GL_OES_EGL_image,
    GL_MESA_texture_array, GL_ARB_copy_buffer, GL_ARB_depth_buffer_float,
    GL_ARB_draw_instanced, GL_ARB_half_float_vertex, GL_ARB_instanced_arrays,
    GL_ARB_map_buffer_range, GL_ARB_texture_rg, GL_ARB_texture_swizzle,
    GL_ARB_vertex_array_bgra, GL_EXT_separate_shader_objects,
    GL_EXT_texture_swizzle, GL_EXT_vertex_array_bgra,
    GL_NV_conditional_render, GL_ARB_ES2_compatibility, GL_ARB_debug_output,
    GL_ARB_draw_elements_base_vertex, GL_ARB_explicit_attrib_location,
    GL_ARB_fragment_coord_conventions, GL_ARB_provoking_vertex,
    GL_ARB_sampler_objects, GL_ARB_seamless_cube_map,
    GL_ARB_shader_texture_lod, GL_ARB_texture_rgb10_a2ui,
    GL_EXT_provoking_vertex, GL_EXT_texture_snorm,
    GL_MESA_texture_signed_rgba, GL_ARB_robustness,
    GL_ARB_shader_bit_encoding, GL_ARB_texture_storage,
    GL_ARB_invalidate_subdata
    32 GLX Visuals
    visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat
    0x020 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x021 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x07e 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x07f 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x080 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x081 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x082 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x083 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x084 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x085 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x086 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x087 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x088 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x089 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow
    0x08a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x08b 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow
    0x08c 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x08d 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x08e 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x08f 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x090 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x091 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x092 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x093 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x094 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x095 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x096 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x097 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x098 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow
    0x099 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x09a 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow
    0x04d 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    48 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat
    0x04e 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None
    0x04f 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None
    0x050 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None
    0x051 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x052 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x053 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x054 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x055 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x056 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x057 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x058 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x059 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x05a 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x05b 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x05c 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x05d 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x05e 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x05f 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x060 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x061 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow
    0x062 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x063 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow
    0x064 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x065 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow
    0x066 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None
    0x067 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None
    0x068 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None
    0x069 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x06a 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x06b 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x06c 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x06d 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x06e 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None
    0x06f 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x070 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x071 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x072 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x073 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x074 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None
    0x075 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x076 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x077 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x078 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None
    0x079 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow
    0x07a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None
    0x07b 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow
    0x07c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None
    0x07d 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow
    I've tried in /etc/X11/xorg.conf under Section "Device" different options like:
    Option "AccelMethod" "uxa"
    or
    Option "AccelMethod" "sna"
    or
    Option "NoAccel" "true"
    without success.
    Here are informations about the graphics card:
    $ lspci -v -s `lspci | awk '/VGA/{print $1}'`
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) (prog-if 00 [VGA controller])
    Subsystem: Acer Incorporated [ALI] Device 0207
    Flags: bus master, fast devsel, latency 0, IRQ 44
    Memory at f4000000 (64-bit, non-prefetchable) [size=4M]
    Memory at d0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 1800 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    while my /etc/X11/xorg.conf file looks like
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "False"
    #ho aggiunto quanto segue il 22.06.2010 dopo che non riuscivo a cambiare la tastiera DISATTIVA L HOTPLUGIN
    #Option "AutoAddDevices" "False"
    EndSection
    Section "Module"
    Load "glx"
    Load "dri"
    Load "record"
    Load "dbe"
    Load "extmod"
    Load "dri2"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" "true" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    #Option "DRI" # [<bool>]
    #Option "NoDDC" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    #Option "AccelMethod" "uxa"
    #Option "AccelMethod" "sna"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 4 Series Chipset Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    I'm running a full updated Arch x86_64 release.
    Any suggestions?
    Thanks in advance,
    Roberto

    Hello BajaBoy,
    I think it would be easiest to figure this out if I had the data to look at. If you can send this too me (I will treat this confidientially and it will be deleted after we got it to plot) please sned to me me directly at National Instruments.
    My email address is my:   first name DOT last name AT ni DOT com       (no middle initial!).
    We'll get back to you with an answer the same day unless we run into the Thanksgiving holiday before we get this.
    Hope that helps,
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Iphoto crashes when trying import or export

    Iphoto crashes when trying to import or export pictures. I already deleted and reinstalled from disk without success. Please advice.
    Process: iPhoto [567]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 7.1.5 (7.1.5)
    Build Info: iPhotoProject-3780000~2
    Code Type: PPC (Native)
    Parent Process: launchd [90]
    Interval Since Last Report: 563 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 553 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-12-08 13:15:34.939 -0500
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: 4EA7FDBB-D171-42C4-AA95-E124D9338F19
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000005
    Crashed Thread: 11
    Thread 0:
    0 libSystem.B.dylib 0x948bf1f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x948c611c mach_msg + 56
    2 com.apple.CoreFoundation 0x9227c394 CFRunLoopRunSpecific + 1812
    3 com.apple.HIToolbox 0x942edb14 RunCurrentEventLoopInMode + 264
    4 com.apple.HIToolbox 0x942ed938 ReceiveNextEventCommon + 412
    5 com.apple.HIToolbox 0x942ed778 BlockUntilNextEventMatchingListInMode + 84
    6 com.apple.AppKit 0x94f09244 _DPSNextEvent + 596
    7 com.apple.AppKit 0x94f08bfc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    8 com.apple.AppKit 0x94f0289c -[NSApplication run] + 744
    9 com.apple.AppKit 0x94ed3298 NSApplicationMain + 440
    10 com.apple.iPhoto 0x00003554 0x1000 + 9556
    11 com.apple.iPhoto 0x00003258 0x1000 + 8792
    Thread 1:
    0 libSystem.B.dylib 0x948c5c08 _semwaitsignal + 8
    1 libSystem.B.dylib 0x948c5a1c nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x948c594c usleep$UNIX2003 + 68
    3 com.apple.AppKit 0x94f64e64 -[NSUIHeartBeat _heartBeatThread:] + 1840
    4 com.apple.Foundation 0x91a7cd84 _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x94922d74 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x92287808 __CFSocketManager + 764
    Thread 3:
    0 libSystem.B.dylib 0x948bf1f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x948c611c mach_msg + 56
    2 com.apple.CoreFoundation 0x9227c394 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x9227cc1c CFRunLoopRun + 60
    4 com.apple.iLifeMediaBrowser 0x933a64f4 -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 708
    5 com.apple.Foundation 0x91a7cd84 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x948c5c0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x9490246c pthread_condwait + 1580
    2 com.apple.QuartzCore 0x9049f110 fefragmentthread + 48
    3 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x948c5c0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x9490246c pthread_condwait + 1580
    2 com.apple.QuartzCore 0x9049f110 fefragmentthread + 48
    3 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x948c5c0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x9490246c pthread_condwait + 1580
    2 com.apple.QuartzCore 0x9049f110 fefragmentthread + 48
    3 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x948bf258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x94902378 pthread_condwait + 1336
    2 com.apple.iPhoto 0x00280a20 0x1000 + 2619936
    Thread 8:
    0 libSystem.B.dylib 0x948bf278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x94902368 pthread_condwait + 1320
    2 ...ple.CoreServices.CarbonCore 0x93a729e4 TSWaitOnConditionTimedRelative + 240
    3 ...ple.CoreServices.CarbonCore 0x93a727b8 TSWaitOnSemaphoreCommon + 428
    4 ...ickTimeComponents.component 0x9681e350 ReadSchedulerThreadEntryPoint + 5312
    5 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 9:
    0 libSystem.B.dylib 0x948bf278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x94902368 pthread_condwait + 1320
    2 ...ple.CoreServices.CarbonCore 0x93a729e4 TSWaitOnConditionTimedRelative + 240
    3 ...ple.CoreServices.CarbonCore 0x93a727b8 TSWaitOnSemaphoreCommon + 428
    4 ...ple.CoreServices.CarbonCore 0x93a9bc84 AIOFileThread(void*) + 1068
    5 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x948bf258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x94902378 pthread_condwait + 1336
    2 com.apple.iPhoto 0x00280a20 0x1000 + 2619936
    Thread 11 Crashed:
    0 com.apple.CoreFoundation 0x9227e054 CFRetain + 68
    1 com.apple.iPhoto 0x00200c28 0x1000 + 2096168
    2 com.apple.iPhoto 0x000fc4c4 0x1000 + 1029316
    3 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    4 libSystem.B.dylib 0x949010c4 pthreadstart + 316
    Thread 11 crashed with PPC Thread State 32:
    srr0: 0x9227e054 srr1: 0x0200f030 dar: 0x00000005 dsisr: 0x40000000
    r0: 0x00000000 r1: 0xf0534a00 r2: 0xa03de018 r3: 0x00000000
    r4: 0x00000000 r5: 0x00000000 r6: 0xa053613c r7: 0x00000065
    r8: 0x00000065 r9: 0x00000458 r10: 0x00581ba1 r11: 0x00690030
    r12: 0x9227e010 r13: 0x00000000 r14: 0x00000000 r15: 0x00690000
    r16: 0x00000001 r17: 0x006d0000 r18: 0x00000001 r19: 0x26ca2f00
    r20: 0x2800cd54 r21: 0x2ab455d0 r22: 0x28c009f0 r23: 0x280119e0
    r24: 0x00000001 r25: 0x27cabcc0 r26: 0x4a504547 r27: 0x27cabcc0
    r28: 0x00000000 r29: 0xa053613c r30: 0x00000000 r31: 0x9227e018
    cr: 0x28002482 xer: 0x20000000 lr: 0x9227e018 ctr: 0x9227e010
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x68bff7 com.apple.iPhoto 7.1.5 (7.1.5) <884c4c72b19c493c8afb3e5ffeffdcab> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76f000 - 0x83dff5 com.apple.DiscRecording 4.0.7 (4070.4.1) <73f6a269ffb9718fa9f165da9f2a5eb1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x8a4000 - 0x8ceffb com.apple.DiscRecordingUI 4.0.7 (4070.4.1) <37cb0b8d9ad4e211a9b075ae9a92ed74> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x8eb000 - 0x8edfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x8f3000 - 0x8fdfe3 com.apple.UpgradeChecker 1.0 (1.0) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x905000 - 0x9a6fdf com.apple.DotMacKit 50 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0xa15000 - 0xc4dffb com.apple.MessageFramework 3.6 (936) <720ddccc257045019d278c4efccc31ba> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0xd8f000 - 0xd8ffff com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0xd93000 - 0xdb4ff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0xdbc000 - 0xde2fff com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <3abfafbb3982f8c148b49a9c3b35b1f9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0xfe7000 - 0xfeefcf com.apple.AppleMPEG2Codec 1.0.1 (220) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x23496000 - 0x23497ffb ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x234c9000 - 0x2352ffab com.apple.AppleProResDecoder 2.0 (223) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x23534000 - 0x23572ff7 com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x2357e000 - 0x2359bff7 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x235a0000 - 0x235c1ffb com.apple.AppleVAFramework 4.1.16 (4.1.16) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x235c7000 - 0x23607ff7 com.apple.applepixletvideo 1.2.18 (1.2d18) <2373b6000acc27dcbdae6f6dc45ea88a> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x25c39000 - 0x25dedfeb +net.telestream.wmv.advanced 2.2.0.49 (2.2.0.49) /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x25e6a000 - 0x26051ff3 com.apple.RawCamera.bundle 2.1.0 (474) <ba17722601435c06547ceba8723777bb> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x2657f000 - 0x267b8fd7 +net.telestream.wmv.import 2.2.0.49 (2.2.0.49) /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x26b3d000 - 0x26b47fe7 com.apple.BookService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x26b50000 - 0x26b53fd7 com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x26b65000 - 0x26b6dfd7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x26b89000 - 0x26b92fcf com.apple.CalendarsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x26b9b000 - 0x26ba4fd7 com.apple.CardsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x26bad000 - 0x26bb2fd7 com.apple.NetSlidesService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x26bb9000 - 0x26bc3ff3 com.apple.PrintsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x277d2000 - 0x27849fef com.apple.NetServices.NetServices 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x27937000 - 0x2799bfef +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x279a9000 - 0x27a28ff7 +net.sourceforge.webcam-osx.common 0.9.0 (0.9.0) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x27af7000 - 0x27af9ffd com.apple.textencoding.unicode 2.2 (2.2) <483d06bdf16bdbbad53efcea4fcfb688> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x27d00000 - 0x27e61fef +com.elgato.mpegsupport EyeTV MPEG Support 1.0.2 (build 28) (1.0.2) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x27fdc000 - 0x27fddfff com.apple.iLMBAppDefPlugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x27fe3000 - 0x27feafff com.apple.iLMBAperturePlugin 2.0.4 (110.0.2) <049efa166250b3814643703e5a826553> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x27ff1000 - 0x27ff2fff com.apple.iLMBFolderPlugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x28381000 - 0x28391fff com.apple.iLMBiPhoto8Plugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x2859a000 - 0x285a2fff com.apple.iLMBiPhotoPlugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x287a9000 - 0x287b1fff com.apple.iLMBiTunesPlugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x287b8000 - 0x287bafff com.apple.iLMBMoviesFolderPlugin 2.0.4 (110.0.2) <87ec06886afb5912efa801bc5af274ce> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x287c0000 - 0x287c2fff com.apple.iLMBPhotoBoothPlugin 2.0.4 (110.0.2) <407c9a2f9a133a99f74c3c8fba45e5ec> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x287d0000 - 0x287d6fff libCGXCoreImage.A.dylib ??? (???) <f4166febf13e9b7c3342206cd8fa0853> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x2887a000 - 0x2887efff com.apple.iLMBGarageBandPlugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x28884000 - 0x2888ffff com.apple.iLMBiMoviePlugin 2.0.4 (110.0.2) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x299f1000 - 0x29ab9fff com.apple.iTunesAccess 9.0.2 (9.0.2) <d308cb48fde0d7200811ca601e1d60a0> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <89a0055b0e7ea2db881b73c6e63bc774> /usr/lib/dyld
    0x90003000 - 0x9008bffb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <6fc8a8cb43506b57b951da899a55d3b9> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9008c000 - 0x901d3ffb com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x901d4000 - 0x902caffc libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x902cb000 - 0x902d8fff libbz2.1.0.dylib ??? (???) <03227e92407191ff8e754461e842201b> /usr/lib/libbz2.1.0.dylib
    0x902d9000 - 0x903acfff com.apple.CoreServices.OSServices 228 (228) <8610aed4edbd5d21e887a68c32b5c216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x903ad000 - 0x90712ffe com.apple.QuartzCore 1.5.8 (1.5.8) <60e54cfb861dc5e66bb4f263a192d558> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90713000 - 0x90722fff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <305892aafaceb4e31915f0d759ef7e6d> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90723000 - 0x9073affb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9073b000 - 0x9084fffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90850000 - 0x90850fff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90ace000 - 0x90adefff libsasl2.2.dylib ??? (???) <c0d4783f9b08dfd1bded5e0b5ffe37cb> /usr/lib/libsasl2.2.dylib
    0x90adf000 - 0x90ca1ff4 com.apple.CoreAUC 3.08.0 (3.08.0) <9d8d7368e2d3b11318a3556c6d4902a1> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90ca2000 - 0x90ca4ffd libRadiance.dylib ??? (???) <34621dd441aab91846ed399a4801e9f8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90ca5000 - 0x90caaffe com.apple.AOSNotification 1.0.0 (68.13) <d4a95401c78f9de23d0ef3b763a5a584> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90cab000 - 0x90cb6ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x90cb7000 - 0x90cbcfff com.apple.OpenDirectory 10.5 (10.5) <6dca8a620bb66310737d421624ebbfcd> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x90cbd000 - 0x90cdbfff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90cdc000 - 0x90ceffff com.apple.LangAnalysis 1.6.5 (1.6.5) <2a661ad6e432dd62dd831e234904061f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90cf0000 - 0x90cf5fff com.apple.KerberosHelper 1.1 (1.0) <21f06ad33a0d3b5cd7c1a8a4464a99d7> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90cf6000 - 0x90d27fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90d28000 - 0x90e70ff3 libicucore.A.dylib ??? (???) <bdab570d90979c4f601131d442f84720> /usr/lib/libicucore.A.dylib
    0x90e71000 - 0x90ebffff com.apple.framework.familycontrols 1.0.4 (1.0.4) <a3dfe9950439159293ee5815315d279b> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90ec0000 - 0x90eccff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90ecd000 - 0x90f0ffff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90f60000 - 0x90f60ffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90f61000 - 0x91086ffb com.apple.imageKit 1.0.2 (1.0) <50dfcbe41b384bd71761c761c3fbfd5e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91087000 - 0x91087ff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91088000 - 0x91090ffb libCGATS.A.dylib ??? (???) <72ecb94f23cdc622a277671b4976a7d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91091000 - 0x9109efff libCSync.A.dylib ??? (???) <7ccecf2b36209e1196c42c635938519e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9109f000 - 0x91182fff libobjc.A.dylib ??? (???) <a1d4be2eed463c6799b6a1447fde72ba> /usr/lib/libobjc.A.dylib
    0x91183000 - 0x911fefff com.apple.SearchKit 1.2.2 (1.2.2) <a9d0033a5e1e55b5e382e52fe578d734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x911ff000 - 0x91284fff libsqlite3.0.dylib ??? (???) <daf55b073488086ef5b9a3781be53f14> /usr/lib/libsqlite3.0.dylib
    0x91285000 - 0x9128cffb com.apple.print.framework.Print 218.0.3 (220.2) <021d2263007c538fd9e6b52e66a2623d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9128d000 - 0x913dbffb com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x913dc000 - 0x913e2fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <7f4de3ca234fdf3f06f25d47d7119e9b> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x913e3000 - 0x913ffffb com.apple.openscripting 1.2.8 (???) <01f86cdb8f7347d2f3f13066e954acb6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91400000 - 0x91435ff3 com.apple.LDAPFramework 1.4.5 (110) <0cf1d114abaf598355afb6537b76874e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91436000 - 0x91436ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91437000 - 0x91486fff com.apple.Metadata 10.5.8 (398.26) <1a261534027b9d1518327d1fabe1182b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91487000 - 0x914b0ffb com.apple.shortcut 1.0.1 (1.0) <8da20d176ab4cf71cdf4f79b477fe0e7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x914b1000 - 0x914c1ffb com.apple.agl 3.0.9 (AGL-3.0.9) <e751a9e491c3a9ef82c6405466106726> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x914c2000 - 0x918f0ffe libGLProgrammability.dylib ??? (???) <5d52750ec9e438b25d3a4db51361fa2b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x918f1000 - 0x918fcff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x918fd000 - 0x9193bff7 libtidy.A.dylib ??? (???) <b7079239dfc471520a40a14f6913aa7b> /usr/lib/libtidy.A.dylib
    0x9193c000 - 0x91983fff com.apple.NavigationServices 3.5.2 (163) <453fd79dd63debad4908dcc726f9aa04> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91988000 - 0x91a72fff libxml2.2.dylib ??? (???) <c16d0fbbf8fd6b30695cd3c930355066> /usr/lib/libxml2.2.dylib
    0x91a73000 - 0x91cb9ffb com.apple.Foundation 6.5.9 (677.26) <c30e4aea51bbae480d4550cd53abb441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91cba000 - 0x91ce2fff libxslt.1.dylib ??? (???) <bb985380f353bbc7ce694d56884ea156> /usr/lib/libxslt.1.dylib
    0x91ce3000 - 0x91cfffff com.apple.IMFramework 4.0.8 (584) <c700ba51b41e931a186ebff34b250f15> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x91d00000 - 0x91db0fff edu.mit.Kerberos 6.0.13 (6.0.13) <2ed20a450576465ee4f9c317b8ce8c44> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91db1000 - 0x91deafff com.apple.SystemConfiguration 1.9.2 (1.9.2) <21dee7ffd93306032f911b5ef3fdbab3> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91deb000 - 0x92114fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92115000 - 0x92177ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92178000 - 0x92178fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92179000 - 0x9220eff7 com.apple.framework.IOKit 1.5.2 (???) <ced0a498252f76a2d2ba9f2a0ae02160> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9220f000 - 0x92212ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92213000 - 0x92338ff3 com.apple.CoreFoundation 6.5.7 (476.19) <dee0f0024f3bf976cfa0a0816e8aa338> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92339000 - 0x92383fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92384000 - 0x923a3fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x923a4000 - 0x923a7fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x923a8000 - 0x923b1fff com.apple.DiskArbitration 2.2.1 (2.2.1) <682f5c45591e8c4a89c79e384e2c49af> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x923b2000 - 0x923b8ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x923b9000 - 0x923e6fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x923e7000 - 0x923faffe com.apple.CFOpenDirectory 10.5 (10.5) <41ed29dcd683657b10994df7d7349e0a> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x923fb000 - 0x92547ffb com.apple.ImageIO.framework 2.0.6 (2.0.6) <c20e33d5ff7076c0855c874db7df320d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92548000 - 0x9258eff9 com.apple.securityinterface 3.0.4 (37213) <d36d3af3d7c501ec78476dee04df3051> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9258f000 - 0x926a2fff com.apple.PubSub 1.0.4 (65.11) <a8a631747e34fe5d1e6d5c8153dcc0d7> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x926a3000 - 0x9272dfff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9272e000 - 0x9274dfff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9274e000 - 0x928baff9 com.apple.AddressBook.framework 4.1.2 (702) <00009729166ef5c0294f864e1c4e54c9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x928bb000 - 0x92975fff libcrypto.0.9.7.dylib ??? (???) <4b5031781db984ba920156875ec2a772> /usr/lib/libcrypto.0.9.7.dylib
    0x92976000 - 0x9297affe libGIF.dylib ??? (???) <755ca03546f380942649cb38cec37ba2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9297b000 - 0x92ef7ff7 com.apple.CoreGraphics 1.409.5 (???) <5055e3621c3a2239851bd7e829e94ea1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92ef8000 - 0x92f28fff com.apple.DotMacSyncManager 1.2.4 (308) <b7efa35e834d68ec5dd9d1511e48122e> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x92f29000 - 0x92f5efff com.apple.AE 402.3 (402.3) <75725936d014fd3ca2553d18b784b99b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92f5f000 - 0x92f74fff com.apple.IMUtils 4.0.8 (584) <798e21f99606c71cc5998dc473c8652b> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x92f75000 - 0x9300efc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9300f000 - 0x9304cffe com.apple.securityfoundation 3.0.2 (36131) <d8a8685348c0bcba4953a46e30c2ce9a> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9304d000 - 0x93076fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93077000 - 0x93218ff7 com.apple.QuartzComposer 2.1 (106.13) <6dd1df71cb588b1b9ceb0c5bbf32e842> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93219000 - 0x93235ffb libPng.dylib ??? (???) <82a7ac26fb2dd17c6c6159f1227d4de6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93236000 - 0x93237fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x93238000 - 0x9324bffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <050180a659a3905ea38f2acddcdf7b40> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9324c000 - 0x932b6fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x932bd000 - 0x93322ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93323000 - 0x93372fff libGLImage.dylib ??? (???) <2e1f2a2625064149d209ec19e52d0384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93373000 - 0x933ddffb com.apple.iLifeMediaBrowser 2.0.4 (346.0.2) <48a24c4079638af1b2b53fea1183b121> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x933de000 - 0x9341fffb libTIFF.dylib ??? (???) <da8860d4d8b2a54970a81fca35968366> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93420000 - 0x939dafff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x939db000 - 0x93a31fff libGLU.dylib ??? (???) <3418ce7ca0863162847f553c15d08674> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93a32000 - 0x93a3dfff com.apple.dotMacLegacy 3.1 (246) <57424b69415f7e00365e1865bf11d209> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x93a49000 - 0x93d4bffb com.apple.CoreServices.CarbonCore 786.11 (786.14) <4da8e0984e333f8cea32a24ba4364e8c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93d4c000 - 0x9407eff7 com.apple.QuickTime 7.6.4 (1327.73) <2a47a570627b516ad5d7e2ee611c49fa> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94095000 - 0x94148ffc com.apple.CFNetwork 438.14 (438.14) <6e213ab40eabfc276ca46a7c7cfad01a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94149000 - 0x941d1fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x941d2000 - 0x94204fff com.apple.bom 9.0.1 (136.1.1) <1399341d4cd4b8d4c560e683bc81d73c> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94205000 - 0x942bcfff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x942bd000 - 0x945f6ff7 com.apple.HIToolbox 1.5.6 (???) <a3b713a77c16da495c886463985f1e39> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x945f7000 - 0x945f7ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x945f8000 - 0x94610ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94611000 - 0x94768ffb com.apple.JavaScriptCore 5531.21 (5531.21.9) <4954a9baddeb61795c18970e821caa57> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94769000 - 0x94793ff7 libssl.0.9.7.dylib ??? (???) <09e02b0724f19afe9f0fc7e4eb893f0d> /usr/lib/libssl.0.9.7.dylib
    0x94794000 - 0x947d3fff com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x947d4000 - 0x9489cffb com.apple.CoreData 100.2 (186.2) <be912ff41bd4506438a71d5665e89069> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9489d000 - 0x948bdff7 libJPEG.dylib ??? (???) <65edcc6af826566c94cfa1f19fd02291> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x948be000 - 0x94a5eff3 libSystem.B.dylib ??? (???) <900415cd2c829b2de9a6cdcdaa6307e3> /usr/lib/libSystem.B.dylib
    0x94a5f000 - 0x94aeeffb com.apple.DesktopServices 1.4.8 (1.4.8) <efaf20fbcdf58c7da37ddbcf190bba75> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94aef000 - 0x94aefffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94af0000 - 0x94af1ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94af2000 - 0x94afafff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x94afb000 - 0x94b16ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <efcd6350b6ddbabea5e2e6a45b0e58fb> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94b17000 - 0x94be7fff com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94be8000 - 0x94c02ffb com.apple.CoreVideo 1.6.0 (20.0) <2bc359d0334aa51fcf0534320dee89e9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94c03000 - 0x94c68ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x94c69000 - 0x94c74fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94c75000 - 0x94d5cffc com.apple.WebKit 5531.21 (5531.21.8) <2674f9eafd8daba90a6453303721b219> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94d5d000 - 0x94e2dffb com.apple.syncservices 3.3 (389.20) <6f381ee31b84416f59603afc05de893d> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94e2e000 - 0x94e3cff3 com.apple.opengl 1.5.10 (1.5.10) <54bae289e544387ce7997a4a05e70aa9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94e3d000 - 0x94e9affb com.apple.HIServices 1.7.1 (???) <a6c5c0bf2d68aeb453dbc493b7d0c8d9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94ecd000 - 0x95643fff com.apple.AppKit 6.5.9 (949.54) <687f1742c249d7c9268e2eb57713cef6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95644000 - 0x95681fff libRIP.A.dylib ??? (???) <a710b7ef58700a54a39e7738dd804e57> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95682000 - 0x95682fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95683000 - 0x956c7ffb com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <4fb3af125aa28f9a22d8855e4e24d19b> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x956c8000 - 0x956cbff3 com.apple.QuickTimeH264.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9579c000 - 0x9618bff1 com.apple.WebCore 5531.21 (5531.21.8) <b8de0ff51af3371382164aa7df26ae67> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9618c000 - 0x96223fff com.apple.LaunchServices 292 (292) <06cb373fd960fbc2b4a0201f55c7dd6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96224000 - 0x96232fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x96233000 - 0x96252fff libresolv.9.dylib ??? (???) <c5c72e1cf61cb844163156956a1d8407> /usr/lib/libresolv.9.dylib
    0x96253000 - 0x96258ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96259000 - 0x96260fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96261000 - 0x9628cff7 libauto.dylib ??? (???) <a64d088b2d17e013b9ee5a08d3a20d33> /usr/lib/libauto.dylib
    0x9628d000 - 0x962d1fff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x962d2000 - 0x96354fff com.apple.print.framework.PrintCore 5.5.4 (245.6) <3cde2550ec10348b7162d2b6cb0dfc67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96355000 - 0x963bcffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x963bd000 - 0x96fe8fef com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96fe9000 - 0x97010fff libcups.2.dylib ??? (???) <36d234d12b45180674e9c00585cd10a6> /usr/lib/libcups.2.dylib
    0x97011000 - 0x970c1fff com.apple.QD 3.11.57 (???) <e74b370c6f81fc00e8936f5cf7c8ebe0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x970c2000 - 0x9715cff7 com.apple.ApplicationServices.ATS 3.8 (???) <61c7a66473c16fce3d1eac4d09d401d7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9715d000 - 0x97346fff com.apple.security 5.0.5 (36371) <b84af5a0adfba86bc6977c1083eb9915> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x97347000 - 0x973a8fff com.apple.CoreText 2.0.4 (???) <ebcc2c7e9b0bc10016af530d82a11f03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x973a9000 - 0x9744bffb com.apple.QuickTimeImporters.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0xba900000 - 0xba917ffe libJapaneseConverter.dylib ??? (???) <ddbf52237a078e0b4f6b1a408b4f272a> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    That
    Exception Codes: KERNPROTECTIONFAILURE
    is always a Data Related issue.
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • Constantly crashes when trying to access folders

    my iMac 2008 model just keeps crashing whenever i try to access a folder on my hdd to upload etc
    iphoto-crashes when trying to import photo from folder on desktop
    safari-crashes when trying to add photos to flickr
    safari-crashes when trying to upload photos to facebook
    itunes-crashes when trying to add music and photos to library
    can anyone help this is driving me mad

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • Safari crashes when trying to enter in password field

    Hi Apple Community!
    My Safari crashes when trying to enter the password to a certain online forum. This is not happening to Google Chrome. I have tried disabling extensions and third-party plugins but it doesn't seem to work. See below for the error log.
    EDIT: I have tried resetting Safari and the problem persists.
    Thank you!
    Cheers,
    Daryl
    =====
    Process:         com.apple.WebKit.WebContent [2681]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.77.4)
    Build Info:      WebKit2-7537077004000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [2672]
    User ID:         501
    Date/Time:       2014-07-06 14:57:40.601 +0800
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  8ACE00CA-6CDB-25D5-2453-03900567B440
    Sleep/Wake UUID: A0B33EA1-9A1F-4798-B69E-D1E0652751DC
    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                 0000000106c50000-0000000106c51000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.Safari.framework     0x00007fff93749322 Safari::WK::BundleFrame::jsWrapper(Safari::WK::BundleNodeHandle const&, Safari::WK::BundleScriptWorld const&) const + 12
    1   com.apple.Safari.framework     0x00007fff939a56f4 -[WBSFormMetadataController getMetadataForTextField:inFrame:textFieldMetadata:formMetadata:canAutoComplete: ] + 107
    2   com.apple.Safari.framework     0x00007fff93801d9f -[FormMetadataController passwordFieldFocused:inFrame:] + 63
    3   com.apple.Safari.framework     0x00007fff939a6021 -[WBSFormMetadataController textFieldFocused:inFrame:] + 186
    4   com.apple.Safari.framework     0x00007fff9374b020 Safari::WK::didFocusTextField(OpaqueWKBundlePage const*, OpaqueWKBundleNodeHandle const*, OpaqueWKBundleFrame const*, void const*) + 97
    5   com.apple.WebKit2             0x00007fff93fd3594 WebKit::InjectedBundlePageFormClient::didFocusTextField(WebKit::WebPage*, WebCore::HTMLInputElement*, WebKit::WebFrame*) + 72
    6   com.apple.WebCore             0x00007fff9699e10a WebCore::Document::setFocusedElement(***::PassRefPtr<WebCore::Element>, WebCore::FocusDirection) + 1754
    7   com.apple.WebCore             0x00007fff968dd565 WebCore::FocusController::setFocusedElement(WebCore::Element*, ***::PassRefPtr<WebCore::Frame>, WebCore::FocusDirection) + 1029
    8   com.apple.WebCore             0x00007fff968d6128 WebCore::EventHandler::dispatchMouseEvent(***::AtomicString const&, WebCore::Node*, bool, int, WebCore::PlatformMouseEvent const&, bool) + 696
    9   com.apple.WebCore             0x00007fff968dc5e0 WebCore::EventHandler::handleMousePressEvent(WebCore::PlatformMouseEvent const&) + 1552
    10  com.apple.WebKit2             0x00007fff93fd4658 WebKit::handleMouseEvent(WebKit::WebMouseEvent const&, WebKit::WebPage*, bool) + 207
    11  com.apple.WebKit2             0x00007fff93fd454d WebKit::WebPage::mouseEvent(WebKit::WebMouseEvent const&) + 221
    12  com.apple.WebKit2             0x00007fff93fd430a void CoreIPC::handleMessage<Messages::WebPage::MouseEvent, WebKit::WebPage, void (WebKit::WebPage::*)(WebKit::WebMouseEvent const&)>(CoreIPC::MessageDecoder&, WebKit::WebPage*, void (WebKit::WebPage::*)(WebKit::WebMouseEvent const&)) + 83
    13  com.apple.WebKit2             0x00007fff93fa29b8 WebKit::WebPage::didReceiveWebPageMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 1248
    14  com.apple.WebKit2             0x00007fff93f8c5ab CoreIPC::MessageReceiverMap::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 125
    15  com.apple.WebKit2             0x00007fff93f8c490 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    16  com.apple.WebKit2             0x00007fff93f8c3f9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    17  com.apple.WebKit2             0x00007fff93f8c322 CoreIPC::Connection::dispatchOneMessage() + 106
    18  com.apple.WebCore             0x00007fff96627c9e WebCore::RunLoop::performWork() + 270
    19  com.apple.WebCore             0x00007fff96627b72 WebCore::RunLoop::performWork(void*) + 34
    20  com.apple.CoreFoundation       0x00007fff92fa15b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    21  com.apple.CoreFoundation       0x00007fff92f92c62 __CFRunLoopDoSources0 + 242
    22  com.apple.CoreFoundation       0x00007fff92f923ef __CFRunLoopRun + 831
    23  com.apple.CoreFoundation       0x00007fff92f91e75 CFRunLoopRunSpecific + 309
    24  com.apple.HIToolbox           0x00007fff8f467a0d RunCurrentEventLoopInMode + 226
    25  com.apple.HIToolbox           0x00007fff8f4677b7 ReceiveNextEventCommon + 479
    26  com.apple.HIToolbox           0x00007fff8f4675bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    27  com.apple.AppKit               0x00007fff97bbe24e _DPSNextEvent + 1434
    28  com.apple.AppKit               0x00007fff97bbd89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    29  com.apple.AppKit               0x00007fff97bb199c -[NSApplication run] + 553
    30  com.apple.AppKit               0x00007fff97b9c783 NSApplicationMain + 940
    31  com.apple.XPCService           0x00007fff8ce7ec0f _xpc_main + 385
    32  libxpc.dylib                   0x00007fff93bb2bde xpc_main + 399
    33  com.apple.WebKit.WebContent   0x0000000106c50ba0 0x106c50000 + 2976
    34  libdyld.dylib                 0x00007fff961385fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8dffa662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff93e8c421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff93e8c136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8dff5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8dff4d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff92f92f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff92f92539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff92f91e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff97d5e05e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 3:: WebCore: Scrolling
    0   libsystem_kernel.dylib         0x00007fff8dff5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8dff4d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff92f92f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff92f92539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff92f91e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff93047811 CFRunLoopRun + 97
    6   com.apple.WebCore             0x00007fff966d46f4 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore       0x00007fff8c249f5f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8dff5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8dff4d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff92f92f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff92f92539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff92f91e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff8e381967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff8e38176b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 5:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8dff9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff933bdc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8c255116 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore       0x00007fff8c254c35 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore       0x00007fff8c249f5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8dff9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff933bdc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8c255737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8c2555c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8c249f5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8dff9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff933bdc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8c255737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8c2555c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8c249f5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8dff9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff933bdc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8c255737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8c2555c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8c249f5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff933bb899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff933bb72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff933bffc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8dff9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff933bcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff933bffb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff8dff9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff933bcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff933bffb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff8dff9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff933bcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff933bffb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff8dff9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff933bcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff933bffb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007ff8b9e27700  rbx: 0x00007ff8bc02a9f0  rcx: 0x0000000000000000  rdx: 0x00007ff8b9e27700
      rdi: 0x000000010a1146e8  rsi: 0x0000000000000000  rbp: 0x00007fff58fad730  rsp: 0x00007fff58fad730
       r8: 0x0000000000000007   r9: 0x000000010a1146e8  r10: 0x00007ff8bc09abb0  r11: 0x00007fff7cf9bb28
      r12: 0x00007fff58fad7e8  r13: 0x000000010d694780  r14: 0x00007fff58fad7f0  r15: 0x0000000000000000
      rip: 0x00007fff93749322  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x106c50000 -        0x106c50ff4  com.apple.WebKit.WebContent (9537 - 9537.77.4) <B93A6BB6-F13F-3DF9-A728-6384CEC6B516> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x106c56000 -        0x106c56fff  WebProcessShim.dylib (7537.77.4) <5033C8DE-6FDC-3885-A4B6-357095992A43> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x108eea000 -        0x108ef2ff3  libCGCMS.A.dylib (599.25.10.1) <9A4FAAD7-1C16-33F8-A615-1DCAB0546E31> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10abd9000 -        0x10ac01ffb  libRIP.A.dylib (599.25.10.1) <623091DF-5769-3326-90EB-44EFC8087660> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x10c692000 -        0x10c695ffa  libCGXType.A.dylib (599.25.10.1) <9E609F91-BD17-3C51-A877-C80E7183A867> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10e83b000 -        0x10e846fff  libGPUSupport.dylib (9.6.1) <23B64473-59E7-3AC2-B8C0-CFCFDDF3F8A3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
        0x123400000000 -     0x12340034dff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.24.15 - 8.2.4) <1D246FBA-B34D-3B45-BDBE-F7CC6B6DEF2D> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
        0x7fff69945000 -     0x7fff69978817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8b426000 -     0x7fff8b473fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b48b000 -     0x7fff8b48cfff  libquit.dylib (161.2) <7B9C07B6-8993-32C8-89C2-23D2E7FA85BA> /usr/lib/libquit.dylib
        0x7fff8b6c9000 -     0x7fff8b6cbfff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8b6cc000 -     0x7fff8b929ffa  com.apple.RawCamera.bundle (5.05 - 743) <362EA30F-3B5A-35C4-9455-339B0FDC89C6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8b92a000 -     0x7fff8b946fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8b947000 -     0x7fff8b94affc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8b99f000 -     0x7fff8ba63ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8ba64000 -     0x7fff8ba8eff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
        0x7fff8ba8f000 -     0x7fff8bd63fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8bd64000 -     0x7fff8bd69fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8bd6a000 -     0x7fff8bd81ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8bd82000 -     0x7fff8bd8cff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
        0x7fff8bda7000 -     0x7fff8bdd5ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8bdd6000 -     0x7fff8c0a7ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8c0a8000 -     0x7fff8c0ddffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8c0de000 -     0x7fff8c12affe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8c150000 -     0x7fff8c19efff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8c241000 -     0x7fff8c5b8ff6  com.apple.JavaScriptCore (9537 - 9537.77.1) <F588191A-25E6-31AC-A325-B7779DC6D1EC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8c5b9000 -     0x7fff8c5e8fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8c5e9000 -     0x7fff8c6d7fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c6d8000 -     0x7fff8c730ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c731000 -     0x7fff8c74aff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8c8b4000 -     0x7fff8c8e3ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c8e4000 -     0x7fff8c8f5ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8c8f6000 -     0x7fff8c8faff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
        0x7fff8c8fb000 -     0x7fff8c95effb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8c96f000 -     0x7fff8c96fff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8c9d1000 -     0x7fff8cac2ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8cac3000 -     0x7fff8cac4ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
        0x7fff8cac5000 -     0x7fff8caf5fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8cbb1000 -     0x7fff8cbd9ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8cbda000 -     0x7fff8ce34ff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8ce35000 -     0x7fff8ce37ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8ce3a000 -     0x7fff8ce63ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8ce64000 -     0x7fff8ce6fff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8ce7d000 -     0x7fff8ce83ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8ced4000 -     0x7fff8cf19fff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
        0x7fff8cf1a000 -     0x7fff8cf22ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8cf33000 -     0x7fff8cf3cff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8cf3d000 -     0x7fff8cf48fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
        0x7fff8cf49000 -     0x7fff8cf64ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8cfae000 -     0x7fff8cff3ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d8b8000 -     0x7fff8d8b8fff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d8b9000 -     0x7fff8d998fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d999000 -     0x7fff8da83fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8da84000 -     0x7fff8da88ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8da89000 -     0x7fff8dac7ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8dac8000 -     0x7fff8dbacfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8dc83000 -     0x7fff8dc93fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8dc94000 -     0x7fff8dcb9ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8dcba000 -     0x7fff8dcc0fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8dcc1000 -     0x7fff8dd34fff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8dd35000 -     0x7fff8ddfffff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8de00000 -     0x7fff8de19ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8de1a000 -     0x7fff8de27ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8de28000 -     0x7fff8de63fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8de64000 -     0x7fff8de66fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8de67000 -     0x7fff8de74ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8df46000 -     0x7fff8df46fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8df84000 -     0x7fff8dfe3fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8dfe4000 -     0x7fff8e000ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8e001000 -     0x7fff8e05cffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8e05d000 -     0x7fff8e05dfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e05e000 -     0x7fff8e066fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8e067000 -     0x7fff8e0efff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8e0f9000 -     0x7fff8e128fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8e1be000 -     0x7fff8e2c4ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8e2c7000 -     0x7fff8e31afff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8e31b000 -     0x7fff8e619fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8e61a000 -     0x7fff8e621ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff8e622000 -     0x7fff8e623fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8e8b6000 -     0x7fff8e8bfffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8e8c0000 -     0x7fff8e8f8ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e908000 -     0x7fff8e91efff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8e91f000 -     0x7fff8e929ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e937000 -     0x7fff8e93fff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8e940000 -     0x7fff8e967ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8e968000 -     0x7fff8ea39ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8ea3a000 -     0x7fff8ea66fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ea67000 -     0x7fff8eb29ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8eb2a000 -     0x7fff8eb39ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8eb5e000 -     0x7fff8eb75ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8eb76000 -     0x7fff8edbeff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8edbf000 -     0x7fff8f196fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8f197000 -     0x7fff8f1e5ff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8f1e6000 -     0x7fff8f1e6fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8f439000 -     0x7fff8f6e3ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8fabe000 -     0x7fff8facbfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8facc000 -     0x7fff8fc3aff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8fcb6000 -     0x7fff8fd81fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8fd82000 -     0x7fff8feb8ffd  com.apple.WebKit (9537 - 9537.77.4) <A0291E16-4ED9-30E8-B9A2-DB836778EE9E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8feb9000 -     0x7fff8fed7ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8fed9000 -     0x7fff8fedaffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8fedb000 -     0x7fff8ff24fff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8ff25000 -     0x7fff90306ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff9035f000 -     0x7fff9040fff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff90410000 -     0x7fff90439fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff90684000 -     0x7fff906e2ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff907a1000 -     0x7fff907a2fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff907d4000 -     0x7fff907d4ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff907d5000 -     0x7fff907e6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff9083d000 -     0x7fff908c6fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff908c7000 -     0x7fff90a74f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff90a7b000 -     0x7fff90eaeffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff90eaf000 -     0x7fff90eb6fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90eb7000 -     0x7fff90f1dfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff90f2d000 -     0x7fff90faefff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff90fb2000 -     0x7fff90fbdfff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff90fc1000 -     0x7fff90fd3fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff9100a000 -     0x7fff91025ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff91026000 -     0x7fff9106dff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
        0x7fff9106e000 -     0x7fff91070fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff91071000 -     0x7fff910d6ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff910d7000 -     0x7fff910dafff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9117c000 -     0x7fff911bdfff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff911be000 -     0x7fff911c6fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff911ee000 -     0x7fff912ddfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff91c9b000 -     0x7fff91cccfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff91ccd000 -     0x7fff91d56ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff91d59000 -     0x7fff91de5ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff91e50000 -     0x7fff91e68ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff91e69000 -     0x7fff91e6dfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff91eb5000 -     0x7fff9201bfff  libGLProgrammability.dylib (9.6.1) <07700B99-8542-32D7-BB96-29472EFE75EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff9201c000 -     0x7fff92170ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92171000 -     0x7fff9217dff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff921e2000 -     0x7fff921e2fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff921e3000 -     0x7fff921f5ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff9220e000 -     0x7fff9220ffff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff92224000 -     0x7fff9226bfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff9226c000 -     0x7fff9226cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9226d000 -     0x7fff92354ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff92355000 -     0x7fff9235efff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9235f000 -     0x7fff92517ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
        0x7fff9251c000 -     0x7fff92525ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff9253b000 -     0x7fff925f3ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff925f4000 -     0x7fff92f1432b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff92f1c000 -     0x7fff92f21fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff92f22000 -     0x7fff93107fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff93108000 -     0x7fff93159ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff93214000 -     0x7fff933b4ff7  GLEngine (9.6.1) <28300FBD-E3B2-35D2-BB54-77DCE62FC371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff933b5000 -     0x7fff933b9ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff933ba000 -     0x7fff933c1ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff9345e000 -     0x7fff93468ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff93469000 -     0x7fff93627fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff9364e000 -     0x7fff93661ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff93662000 -     0x7fff93b68ffb  com.apple.Safari.framework (9537 - 9537.77.4) <4DA7F240-5451-3C23-9ADA-CFE34FB51FDB> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff93b69000 -     0x7fff93b93ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff93b94000 -     0x7fff93b9efff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff93b9f000 -     0x7fff93bc3fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff93bc4000 -     0x7fff93bc4fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff93bc5000 -     0x7fff93bc6ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff93e89000 -     0x7fff93ea3fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff93ef3000 -     0x7fff93f5ffff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff93f60000 -     0x7fff94151ff3  com.apple.WebKit2 (9537 - 9537.77.4) <5090816E-BD02-350C-B4CE-613A246532F5> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff941e9000 -     0x7fff941ebfff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff941ec000 -     0x7fff9427cff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9446c000 -     0x7fff944d0fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff944e0000 -     0x7fff94505ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff94506000 -     0x7fff94535ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff94536000 -     0x7fff945c1fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
        0x7fff945c2000 -     0x7fff945e6ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff94c5c000 -     0x7fff94f46fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff94fad000 -     0x7fff95024fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95025000 -     0x7fff9535bfff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff9535c000 -     0x7fff953b5fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff953b6000 -     0x7fff95423fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff957bd000 -     0x7fff957bfffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff95810000 -     0x7fff958abff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff958d2000 -     0x7fff958d9ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
        0x7fff95903000 -     0x7fff95d51fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff95d52000 -     0x7fff95d60fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff95da2000 -     0x7fff95da6fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff95e64000 -     0x7fff95f86fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff95f89000 -     0x7fff95f90fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff95f91000 -     0x7fff96000ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff960d6000 -     0x7fff96107ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff96108000 -     0x7fff9610afff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff9610b000 -     0x7fff96134fff  GLRendererFloat (9.6.1) <23A2C705-F932-335D-B27B-565A30333460> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
        0x7fff96135000 -     0x7fff96138ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff9615b000 -     0x7fff9618ffff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff96246000 -     0x7fff963e2ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff963e3000 -     0x7fff96512fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff96513000 -     0x7fff96519ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff965c4000 -     0x7fff965ceff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff965fd000 -     0x7fff97450ffb  com.apple.WebCore (9537 - 9537.77.4) <9C4E816A-0DAC-31B2-85C3-910164F3E741> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9747e000 -     0x7fff97486ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff97487000 -     0x7fff974a4ff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff974a5000 -     0x7fff974f7fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff97505000 -     0x7fff97506ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff97510000 -     0x7fff9751aff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff97618000 -     0x7fff97628ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff97629000 -     0x7fff97662ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff97663000 -     0x7fff9767eff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff97680000 -     0x7fff97683fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff97684000 -     0x7fff97685ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff97766000 -     0x7fff9777eff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff9777f000 -     0x7fff97783ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff97784000 -     0x7fff97786fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff977d4000 -     0x7fff9783bff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff97842000 -     0x7fff9784fff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff9796b000 -     0x7fff97a9bff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff97a9c000 -     0x7fff97ac3ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff97b9a000 -     0x7fff98710ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff98711000 -     0x7fff98750fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff988ad000 -     0x7fff988b2ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff988b3000 -     0x7fff98900ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff98901000 -     0x7fff9890dffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff9891f000 -     0x7fff98924ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff98925000 -     0x7fff98927ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff98928000 -     0x7fff9892aff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff9892b000 -     0x7fff9896dff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff9896e000 -     0x7fff98adeff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff98adf000 -     0x7fff98ae0fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff9904b000 -     0x7fff9904efff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    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: 3627
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=214.4M resident=119.4M(56%) swapped_out_or_unallocated=95.1M(44%)
    Writable regions: Total=1.2G written=53.2M(4%) resident=94.0M(8%) swapped_out=0K(0%) unallocated=1.1G(92%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG image                              260K
    CG share

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • Lightroom 4 crashes when trying to open the slideshow module. I spent over three hours with both Adobe and Apple tech support and we know it is a permission issue but have not been able to get it solved.  It started with the last upgrade to 10.8

    Lightroom 4 crashes when trying to open the slideshow module. I spent over three hours with both Adobe and Apple tech support and we know it is a permission issue but have not been able to get it solved.  It started with the last upgrade to 10.8

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    The first step should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    resetpassword
    That's one word, all lower case, with no spaces. Then press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • ITunes crashes when trying to access Store  while in administrator account

    I have been having this problem for the past month at least.
    Everytime i try to access the iTunes store it crashes my itunes. This ONLY happens when im logged in as the administrator. Now i generally only have am administrator account because this is my computer for work (i have my own business and im the only one who uses it) It used to work perfectly and one day it didnt work so good... things in the store were missing like images and text. then one day CRASH. and ever since CRASH.
    I created a TEST account and when i logged in and activated Itunes it accessed the store no problem.
    Does anyone have a clue?
    I have uninstalled an reinstalled my itunes... I have all the latest software updates. Its not the proxy server thing that so many have problems with... i don't have a proxy server....i've created a new location .... its not that... i don't have parental activated... its not that. I have backed up all my music.. uninstalled and reinstalled itunes... i have gone thru the plist thing nothing is working.
    why does i tunes work in the test account and not the administrator account?
    HELP PLEASE! anyone? I have tried calling apple but they hung up on me twice..:(
    this forum is all i have to find a solution.
    this is the error log i get when i tunes crashes.. i dont know what it means or how to read this thing.
    Process: iTunes [1733]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 7.7.1 (7.7.1)
    Build Info: iTunes-7711101~3
    Code Type: PPC (Native)
    Parent Process: launchd [157]
    Date/Time: 2008-08-06 12:45:15.210 -0700
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000c0000023
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x95bec018 objc_msgSend + 24
    1 ...ple.ApplicationServices.ATS 0x92c0f684 LLCStyleInfoCreateActiveStyleInfo + 652
    2 com.apple.QD 0x90241664 TATSUStyle::ConstructActiveStyleInfo() + 52
    3 com.apple.QD 0x902587f4 TATSUStyle::GetStyleInfo(LLCStyleInfo const**) + 40
    4 com.apple.QD 0x90258590 TTextLineLayout::ConstructGlyphRecordArrayWithVirtualGlyphs(TATSUGlyphRecordArr ay*, unsigned long*) + 168
    5 com.apple.QD 0x90257b68 TTextLineLayout::ConstructGlyphRecordArray(TATSUGlyphRecordArray*, TLayoutControls*) + 712
    6 com.apple.QD 0x9026a2b8 TTextLineLayout::EnsureLayoutIsUpToDate(unsigned long, unsigned char, unsigned long, TATSUGlyphRecordArray**) + 768
    7 com.apple.QD 0x90275098 TTextLineLayout::GetGlyphBounds(unsigned long, unsigned long, long, long, unsigned short, unsigned long, ATSTrapezoid*, unsigned long*) + 164
    8 com.apple.QD 0x90274fcc ATSUGetGlyphBounds + 132
    9 com.apple.iTunes 0x00247148 0x1000 + 2384200
    10 com.apple.iTunes 0x00245ecc 0x1000 + 2379468
    11 com.apple.iTunes 0x002477c0 0x1000 + 2385856
    12 com.apple.iTunes 0x00227418 0x1000 + 2253848
    13 com.apple.iTunes 0x00227428 0x1000 + 2253864
    14 com.apple.iTunes 0x00227428 0x1000 + 2253864
    15 com.apple.iTunes 0x00227428 0x1000 + 2253864
    16 com.apple.iTunes 0x00227428 0x1000 + 2253864
    17 com.apple.iTunes 0x00227428 0x1000 + 2253864
    18 com.apple.iTunes 0x00227428 0x1000 + 2253864
    19 com.apple.iTunes 0x00227428 0x1000 + 2253864
    20 com.apple.iTunes 0x00227428 0x1000 + 2253864
    21 com.apple.iTunes 0x001a7c5c 0x1000 + 1731676
    22 com.apple.iTunes 0x000b58ec 0x1000 + 739564
    23 com.apple.iTunes 0x0031e07c 0x1000 + 3264636
    24 com.apple.iTunes 0x00276cb4 0x1000 + 2579636
    25 com.apple.CoreFoundation 0x966829ec CFRunLoopRunSpecific + 2968
    26 com.apple.HIToolbox 0x932a572c RunCurrentEventLoopInMode + 264
    27 com.apple.HIToolbox 0x93359a90 GetNextEventMatchingMask + 416
    28 com.apple.HIToolbox 0x933597b0 WNEInternal + 172
    29 com.apple.HIToolbox 0x933596ec WaitNextEvent + 72
    30 com.apple.iTunes 0x00277cf4 0x1000 + 2583796
    31 com.apple.iTunes 0x00278420 0x1000 + 2585632
    32 com.apple.iTunes 0x00035bac 0x1000 + 215980
    33 com.apple.iTunes 0x002777fc 0x1000 + 2582524
    34 com.apple.iTunes 0x00002a28 0x1000 + 6696
    35 com.apple.iTunes 0x0000272c 0x1000 + 5932
    Thread 1:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 com.apple.CoreFoundation 0x96682568 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x94559e3c HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x94559c80 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x904e2498 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9052590c pthread_condwait + 1336
    2 com.apple.iTunes 0x0034f3d0 0x1000 + 3466192
    Thread 3:
    0 libSystem.B.dylib 0x90546ae4 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x9668d9b0 __CFSocketManager + 764
    Thread 4:
    0 libSystem.B.dylib 0x90554b98 accept$NOCANCEL$UNIX2003 + 12
    1 libSystem.B.dylib 0x9058bac4 accept + 16
    2 com.apple.iTunes 0x002e9eac 0x1000 + 3051180
    Thread 5:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 com.apple.CoreFoundation 0x96682568 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x96682df0 CFRunLoopRun + 60
    4 com.apple.iTunes 0x00243e64 0x1000 + 2371172
    5 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 ...ple.CoreServices.CarbonCore 0x013d5f24 YieldToThread + 528
    3 com.apple.iTunes 0x002889b4 0x1000 + 2652596
    4 com.apple.iTunes 0x001970f0 0x1000 + 1663216
    5 com.apple.iTunes 0x00199b38 0x1000 + 1674040
    6 com.apple.iTunes 0x0019a0c0 0x1000 + 1675456
    7 com.apple.iTunes 0x0019e520 0x1000 + 1692960
    8 com.apple.iTunes 0x0019e664 0x1000 + 1693284
    9 com.apple.iTunes 0x0019fb28 0x1000 + 1698600
    10 com.apple.iTunes 0x001a2804 0x1000 + 1710084
    11 com.apple.iTunes 0x001a3c74 0x1000 + 1715316
    12 com.apple.iTunes 0x001a3f3c 0x1000 + 1716028
    13 com.apple.iTunes 0x002888b4 0x1000 + 2652340
    14 ...ple.CoreServices.CarbonCore 0x013db150 CooperativeThread + 344
    15 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 8:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 9:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 10:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 11:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 12:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 13:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 14:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 15:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 16:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 17:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 ...ple.CoreServices.CarbonCore 0x013d5f24 YieldToThread + 528
    3 ...ple.CoreServices.CarbonCore 0x013db300 SetThreadState + 168
    4 com.apple.iTunes 0x0025e708 0x1000 + 2479880
    5 com.apple.iTunes 0x0019d678 0x1000 + 1689208
    6 com.apple.iTunes 0x001a1740 0x1000 + 1705792
    7 com.apple.iTunes 0x001a3d14 0x1000 + 1715476
    8 com.apple.iTunes 0x001a3f3c 0x1000 + 1716028
    9 com.apple.iTunes 0x002888b4 0x1000 + 2652340
    10 ...ple.CoreServices.CarbonCore 0x013db150 CooperativeThread + 344
    11 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 18:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 com.apple.CoreFoundation 0x96682568 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x96682df0 CFRunLoopRun + 60
    4 com.apple.iTunes 0x00284a7c 0x1000 + 2636412
    5 com.apple.iTunes 0x00284da8 0x1000 + 2637224
    6 com.apple.iTunes 0x00209214 0x1000 + 2130452
    7 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0x95bec018 srr1: 0x0000d030 dar: 0xc0000023 dsisr: 0x00200000
    r0: 0x92c0f688 r1: 0xbfffe1a0 r2: 0xa0c34508 r3: 0x090b8a30
    r4: 0x95c89110 r5: 0x00000028 r6: 0x0000002c r7: 0x00000e03
    r8: 0x00000000 r9: 0x00000000 r10: 0x905fbb8c r11: 0x6a369110
    r12: 0xc0000003 r13: 0x00000001 r14: 0xa0c1f478 r15: 0x00000000
    r16: 0xbfffe3fc r17: 0x00000001 r18: 0xa056f40c r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x0908b560 r23: 0x00010010
    r24: 0x00000000 r25: 0xa0575170 r26: 0x00000003 r27: 0xa0575170
    r28: 0xa0575170 r29: 0xa0575218 r30: 0xa0575250 r31: 0x92c0f40c
    cr: 0x44022428 xer: 0x20000000 lr: 0x92c0f688 ctr: 0x95bec000
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0xd6cfe7 com.apple.iTunes 7.7.1 (7.7.1) <64b1b1d2dfee44d996905e78b027fda8> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xfee000 - 0xff3fff com.apple.iPod 1.5 (15) <2bf5b4911f0588da2ced7a29876f203f> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xff9000 - 0x1000fff com.apple.ipodsynchronization 2.3 (106.0) /System/Library/PrivateFrameworks/iPodSync.framework/Versions/A/iPodSync
    0x1008000 - 0x109efc3 com.apple.iTunes.iPodUpdater 7.7 (7.7) /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x10f8000 - 0x11c6ff5 com.apple.DiscRecording 4.0.1 (4010.4.5) <4663bc0d7cb99fd1ead6018ee955d11b> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x122d000 - 0x124eff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1256000 - 0x1310fff libcrypto.0.9.7.dylib ??? (???) <29883b10f7a6ac2dd91addabf60e0ff8> /usr/lib/libcrypto.0.9.7.dylib
    0x135e000 - 0x165fffb com.apple.CoreServices.CarbonCore 786.6 (786.6) <d2ae460a0de15ca950ac723616666507> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x16e2000 - 0x16feffb com.apple.openscripting 1.2.8 (???) <cc6a91ad44b9d013d03b9977a1459bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x1711000 - 0x1c88ff3 com.apple.CoreGraphics 1.351.32 (???) <9f74f6f37d389945b10af033ae035ee5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x1d53000 - 0x1d7dff7 libssl.0.9.7.dylib ??? (???) <96a900022cb333091411b0e42eeeb2d6> /usr/lib/libssl.0.9.7.dylib
    0x1d8c000 - 0x1dd0fff com.apple.vmutils 4.1 (104) <ea4bd764588ed4625099564b5e253eb1> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4ac0000 - 0x4afeff7 com.apple.QuickTimeFireWireDV.component 7.5 (861) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x4b08000 - 0x4b25ff7 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x4b2a000 - 0x4b31fcf com.apple.AppleMPEG2Codec 1.0.1 (220) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x4b36000 - 0x4b56ff7 com.apple.AppleVAFramework 4.0.20 (4.0.20) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x4b5c000 - 0x4bb9fff com.apple.applepixletvideo 1.2.16 (1.2d16) <e7d7062d023b0d41d47f92c9bfe14c79> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x52f8000 - 0x52faffd com.apple.textencoding.unicode 2.2 (2.2) <483d06bdf16bdbbad53efcea4fcfb688> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6506000 - 0x650afff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ea9c438a65be22a5e946e62ebfc9360> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x650f000 - 0x6510ffd com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <7f1a60978b668db2fc7b7ee642120335> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x7247000 - 0x73e4ff7 com.apple.audio.codecs.Components 1.6.3 (1.6.3) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x7b68000 - 0x7b70ffb libCGATS.A.dylib ??? (???) <367c4beab293fb4e93202bd1d3339fe6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x7ce2000 - 0x7ceffff libCSync.A.dylib ??? (???) <78f215768036cfce737f00116252c626> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7cfc000 - 0x7d39fff libRIP.A.dylib ??? (???) <5f21492caab359881ef01076fee5f016> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x8498000 - 0x8592ff3 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <301197bb19c83780749805b978095825> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x245b0000 - 0x245e1fdb com.apple.mobiledevice 3.1 (3.1) <79b992f4858a4425b1bbc1ef9565e414> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <39109181acbf30fed542e6c9abcf1798> /usr/lib/dyld
    0x90003000 - 0x90011fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x901a2000 - 0x90238fff com.apple.LaunchServices 289.2 (289.2) <67191ba4de2d3d14be9b4bbddd4fe0a6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90239000 - 0x902e9fff com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x903ae000 - 0x904ccff7 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x904e1000 - 0x9067afe3 libSystem.B.dylib ??? (???) <787ea59c19201d04a507b13d2bb3f9ac> /usr/lib/libSystem.B.dylib
    0x906c7000 - 0x906edfff libcups.2.dylib ??? (???) <faed280b72f625b591ae0506cb142367> /usr/lib/libcups.2.dylib
    0x906f7000 - 0x90716fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9095a000 - 0x90967fff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x90968000 - 0x90a7cffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90a7d000 - 0x90afefff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90aff000 - 0x90afffff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90b00000 - 0x90b07ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90b08000 - 0x90c74ff9 com.apple.AddressBook.framework 4.1.1 (695) <c2da7479f17eecd7a1efd7250afb0aef> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90ca4000 - 0x91385ff3 com.apple.WebCore 5525.18.1 (5525.18.1) <c339884f32c81b029105d8a0243db0ff> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91386000 - 0x9138dfff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9138e000 - 0x913a6ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x913a7000 - 0x913a7ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x913fd000 - 0x914d0fff com.apple.CoreServices.OSServices 226.5 (226.5) <50a4f7fe2d6078971f9ef6fc88cc5d2b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x914d1000 - 0x9150afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9150b000 - 0x9150effb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9150f000 - 0x91541fff com.apple.bom 9.0 (136) <cb560109ea507cdfb6c77349845e6b2a> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91542000 - 0x9154dfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9154e000 - 0x91553ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x91554000 - 0x91567ffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91568000 - 0x9157bfff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9157c000 - 0x91665fff libxml2.2.dylib ??? (???) <6bf1a24e68615e0edf843988f5a0a1f4> /usr/lib/libxml2.2.dylib
    0x91666000 - 0x9169bfff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9169c000 - 0x916b3ffb com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x916b4000 - 0x916c0ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x916c1000 - 0x916edfff com.apple.CoreMediaPrivate 9.0 (9.0) <06724239f6a690e4c358b6ca14bfb1a6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x916ee000 - 0x9178fff7 com.apple.QuickTimeImporters.component 7.5 (861) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x91a92000 - 0x91b79fff com.apple.JavaScriptCore 5525.18 (5525.18) <d94ee2a4a7aa244335a4a2a49a5aaeec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91b7a000 - 0x91b85ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x91b86000 - 0x91c48fff com.apple.WebKit 5525.18 (5525.18) <ef0071ec0d5faa5b198348bc4f909c7c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91cb6000 - 0x91cb7ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91cb8000 - 0x91cb9fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x91cfd000 - 0x91d18ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <d69161954145cf745b51ae31e0961077> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91d44000 - 0x91d4cfff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x91d9b000 - 0x91d9eff3 com.apple.QuickTimeH264.component 7.5 (861) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x91d9f000 - 0x920fdff2 com.apple.QuartzCore 1.5.3 (1.5.3) <c410b1f89e67d41c3d06eac1790b500c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x920fe000 - 0x921c3ffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x921c4000 - 0x921c4ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x921c5000 - 0x92293ffb com.apple.QuickTimeMPEG4.component 7.5 (861) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x922fa000 - 0x9230afff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x9230b000 - 0x928c5fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x928c6000 - 0x9291cfff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9292b000 - 0x9298bfff com.apple.CoreText 2.0.2 (???) <e5940fddbca517f29b8865c9b02ddff0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9298c000 - 0x92a20ff7 com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92a21000 - 0x92ab0ffb com.apple.DesktopServices 1.4.6 (1.4.6) <58211b14d8d8dd52cb249711dc42c52d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92ab1000 - 0x92ae6ffb com.apple.LDAPFramework 1.4.3 (106) <d9a3a16b2d468683b68f714d11196d7b> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92bf6000 - 0x92c90ffb com.apple.ApplicationServices.ATS 3.3 (???) <5c97f539ba68e1143929cd89db390d20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92f0e000 - 0x92f13fff com.apple.CoreMediaAuthoringPrivate 1.4 (1.4) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x92f14000 - 0x92fadfc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92ff9000 - 0x92ffbffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92ffc000 - 0x93241ffb com.apple.Foundation 6.5.5 (677.19) <1667218c075b6e69728c5c2dd9ff6065> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93242000 - 0x93273fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93274000 - 0x935adfeb com.apple.HIToolbox 1.5.3 (???) <1f08f0263f6037c253e6cfbe69cfc5a0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935ae000 - 0x935f9ffb com.apple.Metadata 10.5.2 (398.18) <787e741e6b0c0b59f9b9c42a016672cb> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x935fa000 - 0x9363bffb libTIFF.dylib ??? (???) <0d0a3107d26786c3708e6a511d5acec9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9363c000 - 0x94449fef com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9444a000 - 0x944d2fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94538000 - 0x945bfffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x945c0000 - 0x945cbff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x945cc000 - 0x948f5fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x948f6000 - 0x9491fffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9493c000 - 0x94a09ffb com.apple.syncservices 3.1 (389.6) <e83163fad4c97dc8ed74b595e7cc594b> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94a0a000 - 0x94a10ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94a11000 - 0x94d3effb com.apple.QuickTime 7.5.0 (861) <62b9ecae4fb583bf9e989f526f6f8014> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d3f000 - 0x94d3fff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94d40000 - 0x94d43fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94d44000 - 0x94d5fffb libPng.dylib ??? (???) <a0a5ce98fa9fe98fe190c99a3dbbdfa0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94d60000 - 0x94eaaffb com.apple.ImageIO.framework 2.0.2 (2.0.2) <20c50c4b4d09a4cf69fb8732e3d79081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94edd000 - 0x94f44ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x94fe7000 - 0x95006fff libresolv.9.dylib ??? (???) <181fb3defd2942f00201507cfa4efdb5> /usr/lib/libresolv.9.dylib
    0x9504e000 - 0x95095fff com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95636000 - 0x95636fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95637000 - 0x95646fff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95647000 - 0x95716fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95717000 - 0x95724ffb com.apple.opengl 1.5.6 (1.5.6) <9f2c6a226837dae46ced8b28e195210c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95725000 - 0x95735ffb com.apple.agl 3.0.9 (AGL-3.0.9) <ab2f91cfb4e503d2516df44852c35e81> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95736000 - 0x95792ffb com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95793000 - 0x9581dfff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x959bf000 - 0x95a3afff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95a3b000 - 0x95aebfff edu.mit.Kerberos 6.0.12 (6.0.12) <5cf1a9c1d7e526bb9b084013a1722d08> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95aec000 - 0x95af5fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95af6000 - 0x95b58ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95b59000 - 0x95ba8ff7 libGLImage.dylib ??? (???) <dba44404ea3684df4f23df5e8e5430c3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95ba9000 - 0x95bd4ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x95bd5000 - 0x95cb8feb libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0x95cb9000 - 0x95cd9ff7 libJPEG.dylib ??? (???) <92341083256fbcd28888a179ebf941ef> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95ce2000 - 0x95d01fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95d02000 - 0x96137ffa libGLProgrammability.dylib ??? (???) <f032e07d587794af4d4ba1b7dc7b4fd2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96138000 - 0x9631effb com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9631f000 - 0x96338ffb com.apple.CoreVideo 1.5.1 (1.5.1) <9b726d9ba75efbaccaed1d34e2f71ea0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96339000 - 0x96481ffb libicucore.A.dylib ??? (???) <dd2fd169aa328f6e97a1d700e5846866> /usr/lib/libicucore.A.dylib
    0x96482000 - 0x96506ffd com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96546000 - 0x965cbfff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x965cc000 - 0x965f0ffb libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x965f1000 - 0x96618fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x96619000 - 0x9673effb com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96745000 - 0x96749ffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9674a000 - 0x96ebffff com.apple.AppKit 6.5.3 (949.33) <1144a07dd55895f89e44adf80cc151d9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96f7b000 - 0x96f7bfff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    I have a similar problem on the MacBook at work: 100% reproducible crash when trying to access the iTunes store. It also crashes frequently running ad-related JavaScript on a financial newspaper's web site. Stack traces of the crashed thread in the crash logs are what make me think my issue is JavaScript-related. Here's a stack trace from a crashed iTunes:
    Thread 14 Crashed:
    0 libSystem.B.dylib 0x92571dbe _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x92563c87 usleep$NOCANCEL$UNIX2003 + 61
    2 libSystem.B.dylib 0x9258548b abort + 85
    3 libstdc++.6.dylib 0x91e96005 0x91e4e000 + 294917
    4 libstdc++.6.dylib 0x91e9410c _gxx_personalityv0 + 1108
    5 libstdc++.6.dylib 0x91e9414b std::terminate() + 29
    6 libstdc++.6.dylib 0x91e946da std::typeinfo::~typeinfo() + 0
    7 com.apple.JavaScriptCore 0x923fce50 KJS::FunctionCallResolveNode::evaluateToBoolean(KJS::ExecState*) + 96
    8 com.apple.JavaScriptCore 0x923e842a KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 106
    9 com.apple.JavaScriptCore 0x923f4199 KJS::IfElseNode::execute(KJS::ExecState*) + 25
    10 com.apple.JavaScriptCore 0x923e1a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    11 com.apple.JavaScriptCore 0x923e1509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    12 com.apple.JavaScriptCore 0x923e4f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    13 com.apple.JavaScriptCore 0x923d9f19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    14 com.apple.JavaScriptCore 0x923d9ec9 KJS::VarStatementNode::execute(KJS::ExecState*) + 25
    15 com.apple.JavaScriptCore 0x923e1a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    16 com.apple.JavaScriptCore 0x923e1509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    17 com.apple.JavaScriptCore 0x92425787 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 135
    18 com.apple.JavaScriptCore 0x92434abd JSObjectCallAsFunction + 173
    19 com.apple.CFNetwork 0x91f7e48a CallFindProxyForURL + 297
    20 com.apple.CFNetwork 0x91f804d9 executionContextPerform + 177
    21 com.apple.CoreFoundation 0x96c80615 CFRunLoopRunSpecific + 3141
    22 com.apple.CoreFoundation 0x96c80d54 CFRunLoopRun + 84
    23 com.apple.iTunes 0x00281521 0x1000 + 2622753
    24 com.apple.iTunes 0x002818b4 0x1000 + 2623668
    25 com.apple.iTunes 0x0020b47c 0x1000 + 2139260
    26 libSystem.B.dylib 0x924c16f5 pthreadstart + 321
    27 libSystem.B.dylib 0x924c15b2 thread_start + 34
    Resetting all iTunes preferences hasn't fixed this and neither has running on another account on the same computer. My private MacBook Pro is fine. I suspect a corrupt file somewhere (I have repaired permissions).

  • Crashes when trying to save as other...

    Acrobat XI Pro repeatedly crashes when trying to Save as other > Reduced Size PDF >Make compatible with>Acrobat 10 or later

    Process:         AdobeAcrobat [70171]
    Path:            /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         11.0.04 (11.0.04)
    Code Type:       X86 (Native)
    Parent Process:  launchd [174]
    Responsible:     AdobeAcrobat [70171]
    User ID:         502
    Date/Time:       2013-11-20 06:12:26.508 -0800
    OS Version:      Mac OS X 10.9.1 (13B27)
    Report Version:  11
    Anonymous UUID:  1634FC89-36AC-7388-53BA-FCEBE3E49B63
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    terminating with uncaught exception of type PIRaiseException: PIRaiseException

  • Crashes when trying to save image

    Since upgrading to Lion I get regular crashes when trying to save images using Photoshop elements. Extract from crash report:
    "Thread 12 Crashed:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_c.dylib                       0x9129dc19 _spin_lock$VARIANT$mp + 9"
    Help required.

    Since upgrading to Lion I get regular crashes when trying to save images using Photoshop elements. Extract from crash report:
    "Thread 12 Crashed:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_c.dylib                       0x9129dc19 _spin_lock$VARIANT$mp + 9"
    Help required.

  • Firefox crashes when trying to print a certain page

    I process orders placed on our web site. As soon as I updated to v6.0 and then V6.0.1 at a particular page when I need to print out invoices (and only on this page - I print two other pages as well during the processing) firefox crashes when trying to print all, print one page or print preview. It is not every single time but most times. I never had this problem in any earlier version.
    It happened in safe mode as well.
    If it wasn't for the group tabs which I love in v6 I would go back to v5.0 as it is quite inconvenient and costs me extra time to have this happen. I have to display each of the invoices individiually and print them which never causes a crash.
    I have submitted fourteen reports:
    bp-66c1f741-c468-4281-a7b6-c04402110904
    bp-57fc6542-ce0c-4074-a73b-1f7212110901
    bp-31d79290-7da3-4fd3-9e63-0a6f32110829
    bp-e7e38adf-c46b-4e32-8ece-2019a2110829
    bp-c8cf5bc2-b6b0-4609-8891-edeae2110829
    bp-bbf53d40-28a6-46d9-974e-cd07a2110825
    bp-27d117d4-7504-449a-b3d2-b6aea2110825
    bp-e376a370-cf25-4f61-9b1c-efdcc2110825
    bp-2babf3dc-37ae-40c5-8402-7c81c2110825
    bp-b52e8582-30b1-4b93-866f-912632110823
    bp-e976aab0-69a4-45e3-bf29-935712110823
    bp-7695be1b-55bf-4eed-99a8-7bd4a2110823
    bp-1645b426-4e48-47e8-ac2d-1326c2110823
    bp-de55d693-c91c-4943-b3aa-eeac52110823
    Any help you can give would be appreciated. If I can give any more help please ask - [email protected]

    The crash IDs that you posted are a crash with the Flash plugin.
    *https://crash-stats.mozilla.com/report/index/9125d0a3-fdd7-4b3d-8493-db8752120331
    Do the pages that you try to print have Flash content on them?
    *https://support.mozilla.org/kb/Troubleshooting+plugins
    *http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • FCPX has suddenly started crashing when trying to import media

    I updated FCPX to 10.0.8 a couple of weeks ago and everything has been fine until today (I'm fully updated with Mountain Lion as well) .  Now every time I try to import media, FCPX crashes. This occurs right after I hit the "Import Selected" button -- and occurs regardless of type of media, where I'm importing it from, or how many clips.  I get a very long error message -- I've attached just the first part of it (through Thread 0) below.  The entire error message runs through Thread 37.
    The only thing I did right before this happoened was to delete some old unused applications that were not even on the system HD (they were on a different internal HD - drive A).  The applications included very old versions of Final Cut and iMovie that had not been opened in a couple of years.  After I did this, FCPX suddenly started to recognize another internal HD (drive C) as a camera for the first time, and tried to import a bunch of old home movies, which it has never done before.  And ever since then it started crashing when trying to import new media -- even after I "ejected" drive C. 
    Any ideas?  I'm at a total loss and in the middle of a big project for a client, and could really use some help.  Thanks!
    Process:         Final Cut Pro [326]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCut
    Version:         10.0.8 (221398)
    Build Info:      ProEditor-22139008018000000~1
    App Item ID:     424389933
    App External ID: 14685451
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [152]
    User ID:         502
    Date/Time:       2013-03-31 13:00:19.713 -0400
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          14013 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  12180 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      11BDDCCB-5BCF-05B8-C04A-9A39067B1572
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    objc[326]: objc_removeExceptionHandler() called with unknown alt handler; this is probably a bug in multithreaded AppKit use. Set environment variable OBJC_DEBUG_ALT_HANDLERS=YES or break in objc_alt_handler_error() to debug.
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8d168814 objc_alt_handler_error() + 0
    1   libobjc.A.dylib                         0x00007fff8d1686a0 alt_handler_error(unsigned long) + 52
    2   libobjc.A.dylib                         0x00007fff8d162f35 objc_removeExceptionHandler + 92
    3   com.apple.CoreFoundation                0x00007fff893ebb49 _CFDoExceptionOperation + 89
    4   com.apple.AppKit                        0x00007fff86e2bbcf -[NSApplication endModalSession:] + 24
    5   com.apple.prokit                        0x00000001003283c3 -[NSProApplication endModalSession:] + 45
    6   com.apple.FinalCut                      0x0000000100033870 -[PEAppController windowWillClose:] + 416
    7   com.apple.CoreFoundation                0x00007fff893aceda _CFXNotificationPost + 2554
    8   com.apple.Foundation                    0x00007fff8575ae26 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    9   com.apple.AppKit                        0x00007fff870c49e0 __18-[NSWindow _close]_block_invoke_0 + 260
    10  com.apple.AppKit                        0x00007fff870c48b5 -[NSWindow _close] + 364
    11  com.apple.FinalCut                      0x0000000100073be7 -[PEImportWindow timer] + 439
    12  com.apple.Foundation                    0x00007fff85785af3 __NSFireTimer + 96
    13  com.apple.CoreFoundation                0x00007fff893b7804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    14  com.apple.CoreFoundation                0x00007fff893b731d __CFRunLoopDoTimer + 557
    15  com.apple.CoreFoundation                0x00007fff8939cad9 __CFRunLoopRun + 1529
    16  com.apple.CoreFoundation                0x00007fff8939c0e2 CFRunLoopRunSpecific + 290
    17  com.apple.HIToolbox                     0x00007fff84842eb4 RunCurrentEventLoopInMode + 209
    18  com.apple.HIToolbox                     0x00007fff84842c52 ReceiveNextEventCommon + 356
    19  com.apple.HIToolbox                     0x00007fff84842ae3 BlockUntilNextEventMatchingListInMode + 62
    20  com.apple.AppKit                        0x00007fff86f2e563 _DPSNextEvent + 685
    21  com.apple.AppKit                        0x00007fff86f2de22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    22  com.apple.AppKit                        0x00007fff86f251d3 -[NSApplication run] + 517
    23  com.apple.prokit                        0x00000001003286c5 NSProApplicationMain + 378
    24  com.apple.FinalCut                      0x0000000100001e14 start + 52
    I'th Mountain Lion as well.  *and FCPX 10.0.7

    Update: the problem is definitely with the internal HD "drive C".  Before restarting FCPX after the last crash I unmounted the C drive -- then restarted FCPX and was able to import media just fine.  I thought I had tried this already, but I guess not.
    So, what did I change with my C drive when I deleted the old apps off my A drive?  There is both an iMovie events and projects folder on the C drive -- but FCPX has never tried to import them until after I deleted the old iMovie app (I still have the most recent version of iMovie on my system drive -- but have never used it to open these old folders).  I read on another thread on this forum that if I "hid" these folders, FCPX would not try to recognize them, so I moved them to within another folder on the same drive -- but FCPX is still trying to recognize and show them when the Import Media window is launched --  and still shows the C drive as a camera.
    So, what can I do to stop this from happening?
    Thanks!

  • Crashing when trying to open a project / forgetting where media files are

    I spent all day manually locating hundreds of missing 'offline media' in a project, saving as I went. Premier Elements crashed when this was complete, now I try to open the project after rebooting and it either cannot find them again or crashes when trying to open the project. Anyone got any clues as to how I can fix this?

    alex peatfield
    What version of Premiere Elements are you using and on what computer operating system is it running?
    How long has this issue existed?
    Are you moving, deleting, renaming files and folders that go into a project after the project has been saved closed?
    If you have source media stored on an external hard drive, determine if the external hard drive is malfunctioning, including if its drive letter
    changing.
    Lots of drill questions...
    a. Running the program from a User Account with Administrative Privileges?
    b. Latest version of QuickTime installed on your computer?
    c. What are your computer resources and is your computer optimized?
    d. What are the properties of your source media that are involved in this issue?
    e. Where are the Scratch Disks directed and how much free hard drive space is at those locations?
    f. Do the problems exist with and without the antivirus and firewall(s) disabled?
    Let us start here and then we can decide what next.
    Thanks.
    ATR

Maybe you are looking for

  • How do I set up an itunes account for my minor child?

    We're getting an ipod touch for our son for his 8th birthday. How do I set up his own Itunes account so he can store his apps on his own account? (I'm getting a little overloaded with apps on my iphone.) Can I set it up under my itunes account or doe

  • How do I set new tabs to BLANK? Why did you remove that choice from me?

    FF 5.0 There use to be an option to set new tabs to blank. How do I do that now that you removed the option. I tried the obvious (?) of setting the new tab to "about:blank" and it still comes up with what ever search engine is paying you money. I eve

  • ATV can't pair iPhone remote

    Greetings all. My iPhone 3GS (4.0.2) used to work fine as a remote for my ATV, but since I was forced to restore my ATV to fix a iTunes sync problem, it doesn't. The remote App can see the ATV. When I enter the code into the remote screen on the ATV,

  • Matrix with excel output?

    Hi I was wondering if creating a matrix report with excel output is possible? _*                                                                                                                                                                          

  • HT201210 iPhone Recovery

    Will restoring my iPhone delete photos on the phone? In recovery mode and won't do anything.