Crash using Timestamps

Hi,
I have (at last!) a simple program that accesses a simple DB. I have one table that contains a column of type TIMESTAMP.
I want to use this timestamp eventually to select a range of data (perhaps using between or something like that). But to test my program I have first just a simple query to select the timestamp field:
Stmt->setSQL("SELECT dzupd FROM erec_t");
Works fine. However I now want to select data with a particular timestamp. So I am trying:
Timestamp tsStart;
tsStart.fromText ("01/04/06 00:00:00", "DD/MM/YY HH24:MI:SS", "" , env);
Now, without doing anything else with the timestamp, the program runs as before, outputs all the data, and then crashes. The information I have seems to indicate a problem with the oraclient10.dll:
AppName: oracle2.exe     AppVer: 0.0.0.0     ModName: oraclient10.dll
ModVer: 10.2.0.1     Offset: 000ad0f7
I am using Oracle 10g on Windows XP.
Any advice would be much appreciated.
Many thanks.

Thanks for the tip.
I will need to study the link properly, but creating the environment is first thing I do and terminating it is the last.
The code is very simple and looks like this:
// Oracle2.cpp : Defines the entry point for the console application.
#include "stdafx.h"
using namespace oracle::occi;
using namespace std;
int tmain(int argc, TCHAR* argv[])
//create environment and connection
Environment* env = Environment::createEnvironment();
cout << "Environment created" << endl;
Connection* conn=env->createConnection("tester","tdb","testdb");
//3rd parameter is db name/TNS alias
cout << "Connection made" << endl;
// build SELECT statement
Statement* Stmt = conn->createStatement();
Stmt->setSQL("SELECT dzupd FROM erec_t");
Timestamp tsStart;
tsStart.fromText("01/04/06 00:00:00", "DD/MM/YY HH24:MI:SS", "" , env);
ResultSet *rs = Stmt->executeQuery();
while (rs->next())
     Timestamp st = rs->getTimestamp(1);
     cout << "\t\t" << st.toText("dd/mm/yyyy hh:mi:ss",1) << endl;
Stmt->closeResultSet(rs);//to free resources
conn->terminateStatement(Stmt);
//logoff and terminate connection
env->terminateConnection(conn);
cout << "Connection terminated" << endl;
//terminate Environment by calling static method
// Environment::terminateEnvironment(env);
cout << "Environment terminated" << endl;
     return 0;
I think it is all done within the correct scope but I will study it more closely.
Thanks for the tip.
Tristan

Similar Messages

  • My laptop hard drive crashed, used to have lion now it is back to snow leopard. how do i get it back to lion again?

    my laptop hard drive crashed, used to have lion now it is back to snow leopard. i lost all of my info, music, pictures, etc. how do i get it back to lion again? this is very frustrating because i paid $30 to download it and now i am unable to have it again.

    If your Mac is off then start up. As soon as you hear the boot chime, hold down the Option key until the Mac and Windows Disks show up. Then click on the Mac disk and the arrow below it. After it boots up in Mac then go to System Preferences>Startup Disk and select your Mac partition as the Startup disk.
    If you are in Windows then look for the Boot Camp icon on the taskbar. It will look like a gray box sitting on one corner. One of the options when you click it is to restart in Mac OS. After it boots up in Mac then go to System Preferences>Startup Disk and select your Mac partition as the Startup disk.

  • Problem in following the webblog "Using TimeStamps: BSP Extensions"

    I try to follow the webblog "Using TimeStamps: BSP Extensions for a TimeStamp UI."
    However, after I have created the method 'RESOLVE_MODEL_BINDING' and compiled it, it shows me an error message
    <b>'Method "ADD_TO_CHECK_TABLE" is unknown or PROTECTED or PRIVATE.'</b>
    This is some part of that code.
      model = m_page_context->get_model( model_name ).
      name = model->get_attribute_name( attribute_path = value_path ).
      valuelow = model->get_attribute( attribute_path = value_path ).
      IF id IS INITIAL.
        id = name.
      ENDIF.
      IF disabled IS INITIAL.
        bspmodel ?= model.
        bspmodel->add_to_check_table( control_id = name ).
      ENDIF.

    I defined the bspmodel above the if block like the tutorial code.
    DATA: model             TYPE REF TO if_bsp_model_binding,
          model_name        TYPE string,
          metadata          TYPE REF TO if_bsp_metadata_simple,
          metadata_base     TYPE REF TO if_bsp_metadata,
          value_path        TYPE string,
          is_valid          TYPE i,
          error_value       TYPE string,
          bspmodel          TYPE REF TO if_bsp_model.
    I further looked into the interface <b>if_bsp_model</b> in my system. It doesn't include any interface, and only five methods were found:
    1) INIT
    2) GET_BINDING_INTERFACE
    3) GET_ERRORS
    4) INSTANTIATE
    5) RESET_ERRORS

  • Crash using Bridge

    Again problem with camera raw in Bridge.
    Many times, clicking on done after some modifications on RAW files, the system crash.

    Ok Barbara,
    I've downloaded Combo updater.
    I didn’t found files like com.adobe.bridge.plist in librery/prferences, maybe I made a wrong search?
    In finder/application I found what s shoved in the enclosure.
    The problem unfortunately is not fixed.
    BR
    Max
    Il giorno 24/apr/2012, alle ore 17:06, Barbara B. ha scritto:
    Re: Crash using Bridge
    created by Barbara B. in Photoshop Elements - View the full discussion
    Okay, then it's not a clone. TM only restores documents/settings/etc, not your system.
    Here's what I would do. Go here and download the combo updater for 10.7.3:
    http://support.apple.com/kb/DL1484
    Then run that. Repair permissions.
    Now go to  your username>library>preferences and delete everything that is anything like com.adobe.bridge.plist (there may be more than one and some may have numbers). Also any lockfiles with the same name. This library file is hidden in 10.7. Option click the Go menu in the Finder and it will appear below the little house for your user account. While you're in there, go to the Saved Application States folder and delete anything in there relating to PSE or bridge.
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4357273#4357273
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4357273#4357273. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Elements by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Using Timestamp Object with day light saving time

    Hi,
    I am getting problem while using timestamp object with daylight saving time.
    I am in 'Europe/London' time zone.
    The summer time for this year starts on 30 March(last sunday) at 0200 hours.
    For hour 30/03/2003 01:00, I created a date object using SimpleDateFormat and then created the timestamp object using the longvalue got from dateObject.getTime();
    On printing the timestampObject.toString() it displays
    30/03/2003 00:00 BST.
    It seems that timestamp object uses the system timezone and I want it to be in GMT.
    Could you please tell me how can I get GMT time from timestamp object.
    When creating timestamp object from date

    To translate Date/Timestamp objects in a controlled way use DateFormat objects. When you create a DataFormat object you can specify a Locale object which stipulates timezone information.

  • My flashplayer constantly crashes using Firefox!!  What's the deal?

    My flashplayer constantly crashes using Firefox!!  What's the deal?

    Follow the instructions here: http://forums.adobe.com/thread/1343084
    That will do a COMPLETE "clean install".
    After that, if it still stops, it's in your connection.

  • Using Timestamp - newbie

    Hi,
    I've got a question on how to use TimeStamp?...which timestamp class/method to use?..etc,etc...
    I'm using JDeveloper with Oracle 8i and it's a distributed database environment.
    I've got a single UI for order entry and Ineedto capture the timestamp from the UI and put it into the tables using JDBC - is there such a sample available somewhere or can anyone help me, please?....this is for an assignment and it's due wednesday (9th Oct)- australian time...& this is the only part of it that I havent been able to figure out yet thanks!!...appreciate any help..

    Hi,
    thanks very much for that - I did go thru the forums and there was stuff on timestamp but not on what I needed to do - I managed to get it going using oracle's 'to_date' function so it's ok now....took me all afternoon but I finally got it happening (only in my li'l trial date table that I made for it - but hey at least it works) .. now to integrate into the actual assignment!!....thanks heaps, ciao,

  • Playback skips in archive using timestamp

    We are using a the flash player to play back archives from live streams. We are using timestamps so that questions during the stream can match the stream playback.
    The streams are saved in full with no problems but in playback in the Flash player we are experiencing skips at the exact same points.
    Example:
    One archived stream of 30 questions experiences 2 parts where it freezes and skips. I read here that it might have to do with "silent" parts not being saved with teh timestamps.
    http://code.google.com/p/red5/issues/detail?id=15
    Has anyone experienced similar issues?

    3 months have gone by, and you still haven't gotten a response... Adobe Software is no better than a toothpick made in China. They want your money, that's it!

  • How to get  generic delta using timestamp field

    Hi All,
    i have created a generic datasource using tables vbrp,vbrk.mara,marc,knvv.. to get the sales data for planning.Here i have document created date and time.So i'm concatinating these 2 date and time fields into timestamp which is of format yyyymmddhhmmss.Finally i'm using this timestamp to extract data .
    So is it the right way to pull the data using timestamp and what is the timezone i need to specify as the servers are in india only.
    or any other way to proceed.
    Thanks
    Rao.

    Hi Rao,
    Delta based on timestamp based on generic datasource only works if any one of the tables contains timestamp field(not time and date fields separately).
    I dont think by combining date & time fields will give you correct results.
    Regarding time zone: Use SAP system time zone.
    Srini

  • Safari crashes used with maverick

    Safari crashes used with maverick

    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
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. 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 (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. 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 shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Crash using Hand tool

    after effects 13.2 keeps on crashing when i use the hand tool too much... problem details (Problem Event Name: APPCRASH   Application Name: AfterFX.exe   Application Version: 13.2.0.49   Application Timestamp: 54816501   Fault Module Name: StackHash_52fe
    why does after effects cc 13.2 crashes when i use the hand tool?

    FAQ: What information should I provide when asking a question on this forum?

  • General Error or Crash using menu button on chapter playlists

    This is my first complex project in 2.0 - I needed to have approx 120 clips playable individually from a series of still menus. Given the 99 timeline limit, I created a number of timelines and placed batches of clips on them. I'm then using individual chapter playlists to reference each clip. The chapter playlist is linked from a menu button.
    When using the menu remote button when a chapter playlist is playing, I either get an 'abnormal condition' error, or occasionally, Encore crashes with no message at all. Tried this with no menus, timelines and playlists open but same errors.
    More detail:
    PAL 16:9 project
    28 timelines
    65 chapter playlists
    15 still menus
    approx 120 mpv clips and associated wavs (mpv encoded with cinemacraft encoder sp)
    Settings for one of the clips giving problems:
    Timeline - end action not set, menu remote - return to last menu, all ops permitted, no chapter end actions
    Chapter playlist - end action - return to last menu, override not set, menu remote - return to last menu, all ops permitted.
    I think I can stop the errors and crashes if I disable the menu remote button - but I don't really want to do this.
    Any ideas what's going on? Is it a bug(S)?
    Thanks,
    Paul.

    Paul.
    The trouble I had was the "Abnormal Condition" error when hitting the menu remote button in preview.
    There was no problem with Prev/Next buttons though.
    I tried burning a disc too, just to check if it would burn true & just played up in preview - but no dice. What happened was the player froze up solid after pressing the menu remote.
    I did create another project where the chapter playlists numbered around 28 from a single timeline, and this actually worked as it should do, so I suspect an issue in Encore's internal stacks where this is all addressed.
    I had to use a different application in the end.
    I believe the reason yours is still failing is simply because despite having 5 timelines, you are still well over the number of chapter playlists that seem to be available.
    It's a nasty bug - but apparently a fix is in the works. Hopefully we will see this as a maintenance release - we got these with both earlier versions (1.01 from 1.0, and 1.5.1 from 1.5) so I am hoping it will happen.
    There are a couple of issues I have noticed - although this is so far the only one I cannot work around in my projects.
    One thing has just occurred to me that might help you here.
    Instead iof using a chapter playlist to reference each clip, save these for multiple clips that need to be accessed, and from your chapter menu, just point directly to the clip in question.
    Set an end action for each clip to revert back to the menu that called it, and create just a single chapter playlist for a "Play All" situation.
    This will greatly reduce the number of chapter playlists you are running - and should do the job for you.

  • Safari and Firefox Crashing using OS 10.3.9

    Hello I'm new to the discussion forums and would appreciate any help that can be given.
    I am currently experiencing web browsing difficulty with both Safari and Firefox. My current operating system is OS 10.3.9 on a Dual 2 GHz G5. Safari version is 1.3.2 and Firefox version is 2.0.0.12.
    Basically certain sites are causing my browser to quit. For example to name a few, ESPN, Yahoo, Ebay and Google Maps. When Safari errors out it simply quits and closes the window, while Firefox informs me of the error and then I have to force quit to exit Firefox before restarting it.
    I have tried clearing Cache and Repairing Disk Permissions on the Hard disk. Below I have copied and pasted the error logs for both Safari and Firefox.
    Safari Crash Log
    Date/Time: 2008-03-02 23:51:30 -0800
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Version: 1.3.2 (312.6)
    PID: 689
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x9a401d0e
    Thread 0 Crashed:
    0 ...romedia.Flash Player.plugin 0x07eedf0c Flash_EnforceLocalSecurity + 0x4be70
    1 <<00000000>> 0x00000000 0 + 0
    2 ...romedia.Flash Player.plugin 0x07ef01c4 Flash_EnforceLocalSecurity + 0x4e128
    3 ...romedia.Flash Player.plugin 0x07ee3958 Flash_EnforceLocalSecurity + 0x418bc
    4 ...romedia.Flash Player.plugin 0x07ee37b4 Flash_EnforceLocalSecurity + 0x41718
    5 ...romedia.Flash Player.plugin 0x07ee2c1c Flash_EnforceLocalSecurity + 0x40b80
    6 ...romedia.Flash Player.plugin 0x07ee0e10 Flash_EnforceLocalSecurity + 0x3ed74
    7 ...romedia.Flash Player.plugin 0x07ff4260 Flash_EnforceLocalSecurity + 0x1521c4
    8 ...romedia.Flash Player.plugin 0x07f88660 Flash_EnforceLocalSecurity + 0xe65c4
    9 ...romedia.Flash Player.plugin 0x07f87f8c Flash_EnforceLocalSecurity + 0xe5ef0
    10 ...romedia.Flash Player.plugin 0x07f6958c Flash_EnforceLocalSecurity + 0xc74f0
    11 ...romedia.Flash Player.plugin 0x08016368 nativeShockwaveFlashTCallFrame + 0xed50
    12 ...romedia.Flash Player.plugin 0x0801abb8 nativeShockwaveFlashTCallFrame + 0x135a0
    13 ...romedia.Flash Player.plugin 0x07f87fa8 Flash_EnforceLocalSecurity + 0xe5f0c
    14 ...romedia.Flash Player.plugin 0x07ebc78c Flash_EnforceLocalSecurity + 0x1a6f0
    15 ...romedia.Flash Player.plugin 0x07f88660 Flash_EnforceLocalSecurity + 0xe65c4
    16 ...romedia.Flash Player.plugin 0x0801acf8 nativeShockwaveFlashTCallFrame + 0x136e0
    17 ...romedia.Flash Player.plugin 0x07f5d1fc Flash_EnforceLocalSecurity + 0xbb160
    18 ...romedia.Flash Player.plugin 0x07f92648 Flash_EnforceLocalSecurity + 0xf05ac
    19 ...romedia.Flash Player.plugin 0x07f925a0 Flash_EnforceLocalSecurity + 0xf0504
    20 ...romedia.Flash Player.plugin 0x07facdd4 Flash_EnforceLocalSecurity + 0x10ad38
    21 ...romedia.Flash Player.plugin 0x07ea3ef0 Flash_EnforceLocalSecurity + 0x1e54
    22 com.apple.WebKit 0x99f8bb1c -[WebBaseNetscapePluginStream _destroyStream] + 0xa0
    23 com.apple.WebKit 0x99f8f600 -[WebNetscapePluginConnectionDelegate didFinishLoading] + 0xa0
    24 com.apple.WebKit 0x99f6c324 -[WebBaseResourceHandleDelegate connectionDidFinishLoading:] + 0x34
    25 com.apple.Foundation 0x90a6dd2c -[NSURLConnection(NSURLConnectionInternal) _sendDidFinishLoadingCallback] + 0x4c
    26 com.apple.Foundation 0x90a3d1dc -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 0x1f8
    27 com.apple.Foundation 0x90a27864 -[NSArray makeObjectsPerformSelector:withObject:] + 0x108
    28 com.apple.Foundation 0x90a51a04 _sendCallbacks + 0xd4
    29 com.apple.CoreFoundation 0x901c4800 __CFRunLoopDoSources0 + 0x1fc
    30 com.apple.CoreFoundation 0x901c20b8 __CFRunLoopRun + 0x1b0
    31 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    32 com.apple.HIToolbox 0x92886e10 RunCurrentEventLoopInMode + 0xac
    33 com.apple.HIToolbox 0x9288d53c ReceiveNextEventCommon + 0x17c
    34 com.apple.HIToolbox 0x928af638 BlockUntilNextEventMatchingListInMode + 0x60
    35 com.apple.AppKit 0x92e82248 _DPSNextEvent + 0x180
    36 com.apple.AppKit 0x92e98cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    37 com.apple.Safari 0x0000bda0 0x1000 + 0xada0
    38 com.apple.AppKit 0x92ead048 -[NSApplication run] + 0x21c
    39 com.apple.AppKit 0x92f69764 NSApplicationMain + 0x1d0
    40 com.apple.Safari 0x00007fc4 0x1000 + 0x6fc4
    41 com.apple.Safari 0x00054944 0x1000 + 0x53944
    Thread 1:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d038 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45c44 -[NSRunLoop run] + 0x4c
    6 com.apple.WebKit 0x99f76e6c +[WebFileDatabase _syncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a398 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d038 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45c44 -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a97f0c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 0x20c
    7 com.apple.Foundation 0x90a6a398 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x9000b42c select + 0xc
    1 com.apple.Foundation 0x90a22844 _loadRunLoop + 0xd4
    2 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d038 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45c44 -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a9844c +[NSURLCache _diskCacheSyncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a398 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x9000b42c select + 0xc
    1 com.apple.CoreFoundation 0x901c7668 __CFSocketManager + 0x1fc
    2 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d038 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45c44 -[NSRunLoop run] + 0x4c
    6 com.apple.Safari 0x000368f8 0x1000 + 0x358f8
    7 com.apple.Foundation 0x90a6a398 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 7:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 ...romedia.Flash Player.plugin 0x0815570c nativeShockwaveFlashTCallFrame + 0x14e0f4
    3 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x07eedf0c srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x44044208 xer: 0x20000000 lr: 0x07eedef4 ctr: 0x00000000
    r0: 0x20000000 r1: 0xbfffc9e0 r2: 0x80000000 r3: 0x80000002
    r4: 0x1a401d0e r5: 0x00000000 r6: 0x00000014 r7: 0x0817c2bc
    r8: 0x616e6100 r9: 0x1a82c5c0 r10: 0xff691abf r11: 0x081fdd70
    r12: 0x07ea7a68 r13: 0x0000003f r14: 0x00000000 r15: 0x00000008
    r16: 0x0000001e r17: 0x000000b4 r18: 0x0000001e r19: 0x07eeff14
    r20: 0x1a45d478 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x1a7fdcf0 r25: 0x0000001f r26: 0x00000000 r27: 0x0000116c
    r28: 0x1a45d478 r29: 0x00000000 r30: 0x00000000 r31: 0x00000000
    Binary Images Description:
    0x1000 - 0xcdfff com.apple.Safari 1.3.2 (312.6) /Applications/Safari.app/Contents/MacOS/Safari
    0x424000 - 0x424fff com.aladdinsys.mmenabler 7.1.0 (8.0.2) /Library/InputManagers/MagicMenuEnabler/MagicMenuEnabler.bundle/Contents/MacOS/ MagicMenuEnabler
    0x5e8000 - 0x5eafff com.apple.textencoding.unicode 1.6.4 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x63b5000 - 0x63b7fff com.apple.PDFImporter 1.3.1 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x68de000 - 0x68e7fff com.apple.LiveType.component 1.2.1 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x6b0c000 - 0x6b70fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x7e9e000 - 0x81b3fff com.macromedia.Flash Player.plugin 9.0.47 (1.0.4f41) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x70090000 - 0x700e5fff com.apple.LiveType.framework 1.2.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x81f20000 - 0x81f23fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x8445a000 - 0x8445afff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x846e0000 - 0x846e9fff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x86dcd000 - 0x86dd9fff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x880f0000 - 0x88226fff com.apple.vImage 1.2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x8a84d000 - 0x8a85dfff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x8b6f4000 - 0x8b7d2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8c70b000 - 0x8c7abfff com.apple.QuickTimeImporters.component 7.3 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8cbce000 - 0x8cbf7fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.10 (299.39) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.9 (558) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90905fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x909fcfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90a06000 - 0x90a15fff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.11 (500.65) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8ffff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90ec2000 - 0x90fa9fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x910c3000 - 0x910d7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x910dd000 - 0x910f4fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x914c0fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x914e0000 - 0x91549fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9157a000 - 0x9157afff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9158a000 - 0x915c2fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x915e0000 - 0x91699fff com.apple.QD 3.4.74 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91890000 - 0x918aafff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x918d0000 - 0x918e0fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91900000 - 0x9190dfff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91f0d000 - 0x91f61fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x920b7000 - 0x920d1fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x920f0000 - 0x92116fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92358fff com.apple.security 2.5 (29780) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.6 (71.13) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93a50000 - 0x93a54fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93daf000 - 0x93daffff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x940c0000 - 0x940fcfff com.apple.LDAPFramework 1.3.4 (37.4.2) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94120000 - 0x94138fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94182000 - 0x9418bfff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x941f8000 - 0x94201fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94204000 - 0x9420cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x945c0000 - 0x945d0fff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x94658000 - 0x94672fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x946c4000 - 0x946cffff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x946e0000 - 0x9473ffff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9477d000 - 0x9478dfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x947b0000 - 0x947b1fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x948b0000 - 0x948e1fff com.apple.securityinterface 1.0 (39) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x949e0000 - 0x949effff com.apple.DSObjCWrappers.Framework 1.0.1 (1.0) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94b47000 - 0x94bb4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94ea0000 - 0x954a6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95500000 - 0x957d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x958e0000 - 0x95900fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95b50000 - 0x95c32fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x95f30000 - 0x9601efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x961b0000 - 0x96292fff com.apple.JavaScriptCore 312.3.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x962e6000 - 0x965befff com.apple.CoreGraphics 1.203.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96980000 - 0x96a47fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98306000 - 0x9862efff com.apple.QuickTime 7.3.0 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x98714000 - 0x98a06fff com.apple.WebCore 315.15 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x99000000 - 0x990b8fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x99106000 - 0x99106fff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99108000 - 0x9916ffff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x991af000 - 0x991ccfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x991de000 - 0x991f4fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99201000 - 0x99deffff com.apple.QuickTimeComponents.component 7.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99f64000 - 0x99ffcfff com.apple.WebKit 312.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    Firefox Crash Log
    Fire Fox Crash Report
    Date/Time: 2008-03-02 23:50:27 -0800
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: firefox-bin
    Path: /Applications/Firefox.app/Contents/MacOS/firefox-bin
    Version: 2.0.0.12 (2.0.0.12)
    PID: 698
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x88dded62
    Thread 0 Crashed:
    0 ...romedia.Flash Player.plugin 0x0886df0c Flash_EnforceLocalSecurity + 0x4be70
    1 <<00000000>> 0x00000000 0 + 0
    2 ...romedia.Flash Player.plugin 0x088701c4 Flash_EnforceLocalSecurity + 0x4e128
    3 ...romedia.Flash Player.plugin 0x08863958 Flash_EnforceLocalSecurity + 0x418bc
    4 ...romedia.Flash Player.plugin 0x088637b4 Flash_EnforceLocalSecurity + 0x41718
    5 ...romedia.Flash Player.plugin 0x08862c1c Flash_EnforceLocalSecurity + 0x40b80
    6 ...romedia.Flash Player.plugin 0x08860e10 Flash_EnforceLocalSecurity + 0x3ed74
    7 ...romedia.Flash Player.plugin 0x08974260 Flash_EnforceLocalSecurity + 0x1521c4
    8 ...romedia.Flash Player.plugin 0x08908660 Flash_EnforceLocalSecurity + 0xe65c4
    9 ...romedia.Flash Player.plugin 0x08907f8c Flash_EnforceLocalSecurity + 0xe5ef0
    10 ...romedia.Flash Player.plugin 0x088e958c Flash_EnforceLocalSecurity + 0xc74f0
    11 ...romedia.Flash Player.plugin 0x08996368 nativeShockwaveFlashTCallFrame + 0xed50
    12 ...romedia.Flash Player.plugin 0x0899abb8 nativeShockwaveFlashTCallFrame + 0x135a0
    13 ...romedia.Flash Player.plugin 0x08902d80 Flash_EnforceLocalSecurity + 0xe0ce4
    14 ...romedia.Flash Player.plugin 0x0882bccc Flash_EnforceLocalSecurity + 0x9c30
    15 ...romedia.Flash Player.plugin 0x088240b4 Flash_EnforceLocalSecurity + 0x2018
    16 ...romedia.Flash Player.plugin 0x088211f0 unusenetscape_pluginPlugin + 0x8ec
    17 org.mozilla.firefox 0x0080fee0 _ZN18ns4xPluginInstance11HandleEventEP13nsPluginEventPi + 0x58
    18 org.mozilla.firefox 0x007114c4 _ZN21nsPluginInstanceOwner6NotifyEP8nsITimer + 0xd8
    19 libxpcom_core.dylib 0x2c04bb0c _ZN11nsTimerImpl4FireEv + 0xc4
    20 libxpcom_core.dylib 0x2c04bc18 _Z16handleTimerEventP14TimerEventType + 0x8c
    21 libxpcom_core.dylib 0x2c047a9c PL_HandleEvent + 0x24
    22 libxpcom_core.dylib 0x2c0479c0 PL_ProcessPendingEvents + 0x80
    23 com.apple.CoreFoundation 0x901c4800 __CFRunLoopDoSources0 + 0x1fc
    24 com.apple.CoreFoundation 0x901c20b8 __CFRunLoopRun + 0x1b0
    25 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    26 com.apple.HIToolbox 0x92886e10 RunCurrentEventLoopInMode + 0xac
    27 com.apple.HIToolbox 0x9288d53c ReceiveNextEventCommon + 0x17c
    28 com.apple.HIToolbox 0x928af138 AcquireNextEventInMode + 0x48
    29 com.apple.HIToolbox 0x928ac608 RunApplicationEventLoop + 0x88
    30 org.mozilla.firefox 0x00298084 _ZN10nsAppShell3RunEv + 0x40
    31 org.mozilla.firefox 0x00335cc0 _ZN12nsAppStartup3RunEv + 0x3c
    32 org.mozilla.firefox 0x00012a14 XRE_main + 0x1328
    33 org.mozilla.firefox 0x0000d768 start + 0x1b0
    34 org.mozilla.firefox 0x0000d5e8 start + 0x30
    Thread 1:
    0 libSystem.B.dylib 0x9000b42c select + 0xc
    1 libnspr4.dylib 0x2001f260 poll + 0x188
    2 libnspr4.dylib 0x2001ba88 PR_OpenDir + 0x3b0
    3 org.mozilla.firefox 0x003c230c _ZN24nsSocketTransportService4PollEPj + 0xa4
    4 org.mozilla.firefox 0x003c2ab4 _ZN24nsSocketTransportService3RunEv + 0x1b8
    5 libxpcom_core.dylib 0x2c04a760 _ZN8nsThread4MainEPv + 0x38
    6 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    7 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 libnspr4.dylib 0x20017dfc PR_Unlock + 0x12c
    3 libnspr4.dylib 0x20018060 PR_WaitCondVar + 0x88
    4 libxpcom_core.dylib 0x2c04d350 _ZN11TimerThread3RunEv + 0x19c
    5 libxpcom_core.dylib 0x2c04a760 _ZN8nsThread4MainEPv + 0x38
    6 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    7 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 libnspr4.dylib 0x20017dfc PR_Unlock + 0x12c
    3 libnspr4.dylib 0x20018060 PR_WaitCondVar + 0x88
    4 org.mozilla.firefox 0x0037f018 _ZN14nsIOThreadPool10ThreadFuncEPv + 0x74
    5 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    6 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x900171f8 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9dc pthread_condwait + 0x270
    2 libnspr4.dylib 0x2001804c PR_WaitCondVar + 0x74
    3 org.mozilla.firefox 0x003db52c _ZN11nsSSLThread3RunEv + 0xf8
    4 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    5 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x900171f8 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9dc pthread_condwait + 0x270
    2 libnspr4.dylib 0x2001804c PR_WaitCondVar + 0x74
    3 org.mozilla.firefox 0x003d7478 _ZN24nsCertVerificationThread3RunEv + 0x60
    4 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    5 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 libnspr4.dylib 0x20017dfc PR_Unlock + 0x12c
    3 libnspr4.dylib 0x20018060 PR_WaitCondVar + 0x88
    4 org.mozilla.firefox 0x0037f018 _ZN14nsIOThreadPool10ThreadFuncEPv + 0x74
    5 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    6 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 7:
    0 libSystem.B.dylib 0x900171f8 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9dc pthread_condwait + 0x270
    2 libnspr4.dylib 0x2001804c PR_WaitCondVar + 0x74
    3 org.mozilla.firefox 0x005ed334 _ZN17mozStorageService9FreeLocksEv + 0x118c
    4 org.mozilla.firefox 0x00a631a0 0x1000 + 0xa621a0
    5 libxpcom_core.dylib 0x2c04a760 _ZN8nsThread4MainEPv + 0x38
    6 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    7 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 8:
    0 libSystem.B.dylib 0x900171f8 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9dc pthread_condwait + 0x270
    2 libnspr4.dylib 0x2001804c PR_WaitCondVar + 0x74
    3 libnspr4.dylib 0x200183c8 PR_Wait + 0x30
    4 libxpcom_core.dylib 0x2c047c20 PL_WaitForEvent + 0x38
    5 libxpcom_core.dylib 0x2c049458 _ZN16nsEventQueueImpl12WaitForEventEPP7PLEvent + 0x38
    6 org.mozilla.firefox 0x0036150c _ZN24nsUrlClassifierDBService8ShutdownEv + 0x210
    7 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    8 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 9:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 ...romedia.Flash Player.plugin 0x08ad570c nativeShockwaveFlashTCallFrame + 0x14e0f4
    3 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 10:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 libnspr4.dylib 0x20017dfc PR_Unlock + 0x12c
    3 libnspr4.dylib 0x20018060 PR_WaitCondVar + 0x88
    4 org.mozilla.firefox 0x0067c90c _ZN14nsHostResolver15GetHostToLookupEPP12nsHostRecord + 0x84
    5 org.mozilla.firefox 0x0067cc60 _ZN14nsHostResolver10ThreadFuncEPv + 0xb8
    6 libnspr4.dylib 0x2001cf14 PR_Select + 0x354
    7 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x0886df0c srr1: 0x0200f930 vrsave: 0xfff00000
    cr: 0x42022224 xer: 0x20000000 lr: 0x0886def4 ctr: 0x00000000
    r0: 0x20000000 r1: 0xbfffda80 r2: 0x80000000 r3: 0x80000002
    r4: 0x08dded62 r5: 0x00000000 r6: 0x00000014 r7: 0x90147544
    r8: 0x08eb0074 r9: 0x00000000 r10: 0x90007544 r11: 0x08b7dd70
    r12: 0x08827a68 r13: 0x0000004c r14: 0x00000000 r15: 0x00000008
    r16: 0x0000000d r17: 0x0000004e r18: 0x0000000d r19: 0x0886ff14
    r20: 0x08da30a0 r21: 0x00000000 r22: 0x00000000 r23: 0x00000001
    r24: 0x08c852f0 r25: 0x00000011 r26: 0x0000004c r27: 0x000005c8
    r28: 0x08da30a0 r29: 0x00000000 r30: 0x00000000 r31: 0x00000001
    Binary Images Description:
    0x1000 - 0xa90fff org.mozilla.firefox 2.0.0.12 /Applications/Firefox.app/Contents/MacOS/firefox-bin
    0xf81000 - 0xf8ffff libmyspell.dylib /Applications/Firefox.app/Contents/MacOS/components/libmyspell.dylib
    0x18ba000 - 0x18c3fff libqfaservices.dylib /Applications/Firefox.app/Contents/MacOS/extensions/[email protected]/compon ents/libqfaservices.dylib
    0x1a4e000 - 0x1a57fff com.apple.LiveType.component 1.2.1 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1ae0000 - 0x1ae2fff com.apple.textencoding.unicode 1.6.4 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1c05000 - 0x1c69fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1cb6000 - 0x1cddfff talkback.dylib /Applications/Firefox.app/Contents/MacOS/extensions/[email protected]/compon ents/talkback/talkback.dylib
    0x1fb1000 - 0x1fe2fff libnssckbi.dylib /Applications/Firefox.app/Contents/MacOS/libnssckbi.dylib
    0x5c8a000 - 0x5cd6fff libfreebl3.dylib /Applications/Firefox.app/Contents/MacOS/libfreebl3.dylib
    0x5cde000 - 0x5cf0fff libspellchecker.dylib /Applications/Firefox.app/Contents/MacOS/components/libspellchecker.dylib
    0x6cb6000 - 0x6ce0fff com.adobe.acrobat.pdfviewer 7.0.0 /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0x881e000 - 0x8b33fff com.macromedia.Flash Player.plugin 9.0.47 (1.0.4f41) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x20000000 - 0x20032fff libnspr4.dylib /Applications/Firefox.app/Contents/MacOS/libnspr4.dylib
    0x21000000 - 0x2100dfff libplds4.dylib /Applications/Firefox.app/Contents/MacOS/libplds4.dylib
    0x22000000 - 0x2200efff libplc4.dylib /Applications/Firefox.app/Contents/MacOS/libplc4.dylib
    0x23000000 - 0x23093fff libmozjs.dylib /Applications/Firefox.app/Contents/MacOS/libmozjs.dylib
    0x24000000 - 0x24000fff libxpcom.dylib /Applications/Firefox.app/Contents/MacOS/libxpcom.dylib
    0x25000000 - 0x25023fff libssl3.dylib /Applications/Firefox.app/Contents/MacOS/libssl3.dylib
    0x26000000 - 0x26061fff libnss3.dylib /Applications/Firefox.app/Contents/MacOS/libnss3.dylib
    0x27000000 - 0x2701dfff libsmime3.dylib /Applications/Firefox.app/Contents/MacOS/libsmime3.dylib
    0x28000000 - 0x2804bfff libsoftokn3.dylib /Applications/Firefox.app/Contents/MacOS/libsoftokn3.dylib
    0x29000000 - 0x29018fff libxpcom_compat.dylib /Applications/Firefox.app/Contents/MacOS/libxpcom_compat.dylib
    0x2c000000 - 0x2c087fff libxpcom_core.dylib /Applications/Firefox.app/Contents/MacOS/libxpcom_core.dylib
    0x70090000 - 0x700e5fff com.apple.LiveType.framework 1.2.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x81f20000 - 0x81f23fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x8445a000 - 0x8445afff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x846e0000 - 0x846e9fff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x86dcd000 - 0x86dd9fff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x880f0000 - 0x88226fff com.apple.vImage 1.2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x8a84d000 - 0x8a85dfff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x8b6f4000 - 0x8b7d2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8c70b000 - 0x8c7abfff com.apple.QuickTimeImporters.component 7.3 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8eea0000 - 0x8eeb6fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.10 (299.39) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.9 (558) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90905fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x909fcfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90a06000 - 0x90a15fff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.11 (500.65) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8ffff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910c3000 - 0x910d7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x910dd000 - 0x910f4fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x914c0fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x914e0000 - 0x91549fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9157a000 - 0x9157afff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9158a000 - 0x915c2fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x915e0000 - 0x91699fff com.apple.QD 3.4.74 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91890000 - 0x918aafff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x918d0000 - 0x918e0fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91900000 - 0x9190dfff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91f0d000 - 0x91f61fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x920b7000 - 0x920d1fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x920f0000 - 0x92116fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92358fff com.apple.security 2.5 (29780) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.6 (71.13) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93a50000 - 0x93a54fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93daf000 - 0x93daffff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94120000 - 0x94138fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94182000 - 0x9418bfff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x941f8000 - 0x94201fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94204000 - 0x9420cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9422b000 - 0x9425dfff com.apple.QuickTime Plugin.plugin 7.3 /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x94658000 - 0x94672fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x946c4000 - 0x946cffff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x946e0000 - 0x9473ffff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9477d000 - 0x9478dfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94b47000 - 0x94bb4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94ea0000 - 0x954a6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95500000 - 0x957d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x958e0000 - 0x95900fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95b50000 - 0x95c32fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x95f30000 - 0x9601efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x962e6000 - 0x965befff com.apple.CoreGraphics 1.203.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96980000 - 0x96a47fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98306000 - 0x9862efff com.apple.QuickTime 7.3.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99000000 - 0x990b8fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x99106000 - 0x99106fff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99108000 - 0x9916ffff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x991af000 - 0x991ccfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x991de000 - 0x991f4fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99201000 - 0x99deffff com.apple.QuickTimeComponents.component 7.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    Again sorry for the long post, but I'm beginning to think that I might have no other option but to upgrade to a new OS System. Any help on this matter or trouble shooting ideas to try would be greatly appreciated. Thank you.
    Kev

    Hi Kev,
    Welcome to Discussions. I'm sorry you've found your way here under troubled circumstances.
    In all likelihood, the problem is down to the Flash plugin. The version which you're using is slightly outdated. Although that in itself might not be the cause, try uninstalling it by downloading the uninstaller (here) and installing the latest version (here). Restart when you're done.
    Yang

  • Safari 5.0.6 crashes using OS 10.5.8

    I bought a "new" MAC, Dual 2 GHz PowerPC G5 and it come with OS 10.5.8 installed. Safari 5.0.6 crashes when I try to use it. (may be related: my MAC mail crashes if I try to open a message with an attachment, otherwise ok).
    I know this is pretty old stuff but does anyone have any suggestions?

    Hi Andy,
    I'm a rookie.  Is this what you need?
    Process:    
    Safari [10993]
    Path:       
    /Applications/Safari 06.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    5.0.6 (5533.22.3)
    Build Info: 
    WebBrowser-75332203~3
    Code Type:  
    PPC (Native)
    Parent Process:  launchd [97]
    Date/Time:  
    2014-04-11 00:13:00.107 -0700
    OS Version: 
    Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  D387C267-90DC-427F-90D1-BCD40465AA30
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000006
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.apple.CoreFoundation 
    0x90a53054 CFRetain + 68
    1   JavaLaunching            
    0x082d8994 CreateJVMDetector + 332
    2   JavaLaunching            
    0x082d8390 CreateCompleteJVMListSortedByUserPrefsForTask + 76
    3   com.apple.JavaPluginCocoa
    0x082c573c BP_CreatePluginMIMETypesPreferences + 40
    4   com.apple.WebKit         
    0x95774ec0 -[WebBasePluginPackage createPropertyListFile] + 64
    5   com.apple.WebKit         
    0x95710e58 -[WebBasePluginPackage pListForPath:createFile:] + 40
    6   com.apple.WebKit         
    0x9570fea8 -[WebBasePluginPackage getPluginInfoFromPLists] + 280
    7   com.apple.WebKit         
    0x9570f60c -[WebPluginPackage initWithPath:] + 396
    8   com.apple.WebKit         
    0x9570f400 +[WebBasePluginPackage pluginWithPath:] + 64
    9   com.apple.WebKit         
    0x9570f280 -[WebPluginDatabase(Internal) _scanForNewPlugins] + 368
    10  com.apple.WebKit         
    0x9570eda8 -[WebPluginDatabase refresh] + 136
    11  com.apple.WebKit         
    0x9570eb2c +[WebPluginDatabase sharedDatabase] + 140
    12  com.apple.WebKit         
    0x9572fe4c WebPlatformStrategies::getPluginInfo(WebCore::Page const*, ***::Vector<WebCore::PluginInfo, 0ul>&) + 188
    13  com.apple.WebCore        
    0x94633404 WebCore::PluginData::PluginData(WebCore::Page const*) + 68
    14  com.apple.WebCore        
    0x946332cc WebCore::Page::pluginData() const + 76
    15  com.apple.WebCore        
    0x94b4445c WebCore::DOMPluginArray::length() const + 12
    16  com.apple.WebCore        
    0x94b44b60 WebCore::jsDOMPluginArrayLength(JSC::ExecState*, JSC::JSValue, JSC::Identifier const&) + 48
    17  com.apple.JavaScriptCore 
    0x90c564f8 JSC::JSValue::get(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) const + 1624
    18  com.apple.JavaScriptCore 
    0x90d77684 JSC::Interpreter::privateExecute(JSC::Interpreter::ExecutionFlag, JSC::RegisterFile*, JSC::ExecState*) + 28468
    19  com.apple.JavaScriptCore 
    0x90c1fe88 JSC::Interpreter::execute(JSC::ProgramExecutable*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*) + 1032
    20  com.apple.JavaScriptCore 
    0x90c1f830 JSC::evaluate(JSC::ExecState*, JSC::ScopeChainNode*, JSC::SourceCode const&, JSC::JSValue) + 592
    21  com.apple.WebCore        
    0x944992d4 WebCore::ScriptController::evaluateInWorld(WebCore::ScriptSourceCode const&, WebCore::DOMWrapperWorld*) + 724
    22  com.apple.WebCore        
    0x94498e10 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 48
    23  com.apple.WebCore        
    0x944e30e0 WebCore::ScriptElement::executeScript(WebCore::ScriptSourceCode const&) + 176
    24  com.apple.WebCore        
    0x944e21b8 WebCore::ScriptElement::prepareScript(***::TextPosition<***::OneBasedNumber> const&, WebCore::ScriptElement::LegacyTypeSupport) + 1848
    25  com.apple.WebCore        
    0x944e10d8 WebCore::HTMLScriptRunner::runScript(WebCore::Element*, ***::TextPosition<***::OneBasedNumber> const&) + 744
    26  com.apple.WebCore        
    0x944e0d54 WebCore::HTMLScriptRunner::execute(***::PassRefPtr<WebCore::Element>, ***::TextPosition<***::OneBasedNumber> const&) + 68
    27  com.apple.WebCore        
    0x944e0be0 WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder() + 80
    28  com.apple.WebCore        
    0x943f3630 WebCore::HTMLDocumentParser::canTakeNextToken(WebCore::HTMLDocumentParser::Sync hronousMode, WebCore::PumpSession&) + 112
    29  com.apple.WebCore        
    0x943f315c WebCore::HTMLDocumentParser::pumpTokenizer(WebCore::HTMLDocumentParser::Synchro nousMode) + 412
    30  com.apple.WebCore        
    0x94f85178 WebCore::HTMLDocumentParser::resumeParsingAfterScriptExecution() + 24
    31  com.apple.WebCore        
    0x9454c98c WebCore::HTMLDocumentParser::notifyFinished(WebCore::CachedResource*) + 124
    32  com.apple.WebCore        
    0x9454c8b4 WebCore::CachedResource::checkNotify() + 84
    33  com.apple.WebCore        
    0x945479bc WebCore::CachedResourceRequest::didFinishLoading(WebCore::SubresourceLoader*, double) + 428
    34  com.apple.WebCore        
    0x94547704 WebCore::SubresourceLoader::didFinishLoading(double) + 84
    35  com.apple.Foundation     
    0x96c17814 _NSURLConnectionDidFinishLoading + 120
    36  com.apple.CFNetwork      
    0x90450d8c URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 236
    37  com.apple.CFNetwork      
    0x90451a08 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 172
    38  com.apple.CFNetwork      
    0x90450500 URLConnectionClient::processEvents() + 132
    39  com.apple.CFNetwork      
    0x903fa000 MultiplexerSource::perform() + 168
    40  com.apple.CoreFoundation 
    0x90a5119c CFRunLoopRunSpecific + 1308
    41  com.apple.HIToolbox      
    0x9702ab14 RunCurrentEventLoopInMode + 264
    42  com.apple.HIToolbox      
    0x9702a8a0 ReceiveNextEventCommon + 260
    43  com.apple.HIToolbox      
    0x9702a778 BlockUntilNextEventMatchingListInMode + 84
    44  com.apple.AppKit         
    0x92907244 _DPSNextEvent + 596
    45  com.apple.AppKit         
    0x92906bfc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    46  com.apple.Safari         
    0x00018c68 0x1000 + 97384
    47  com.apple.AppKit         
    0x9290089c -[NSApplication run] + 744
    48  com.apple.AppKit         
    0x928d1298 NSApplicationMain + 440
    49  com.apple.Safari         
    0x0000b2f8 0x1000 + 41720
    Thread 1:
    0   libSystem.B.dylib        
    0x93fe0a8c __semwait_signal + 12
    1   libSystem.B.dylib        
    0x9401d318 _pthread_cond_wait + 1580
    2   com.apple.JavaScriptCore 
    0x90d68694 ***::TCMalloc_PageHeap::scavengerThread() + 132
    3   com.apple.JavaScriptCore 
    0x90d6895c ***::TCMalloc_PageHeap::runScavengerThread(void*) + 12
    4   libSystem.B.dylib        
    0x9401bf70 _pthread_start + 316
    Thread 2:
    0   libSystem.B.dylib        
    0x93fe0a8c __semwait_signal + 12
    1   com.apple.WebCore        
    0x943af754 WebCore::IconDatabase::syncThreadMainLoop() + 388
    2   com.apple.WebCore        
    0x943acdf4 WebCore::IconDatabase::iconDatabaseSyncThread() + 740
    3   libSystem.B.dylib        
    0x9401bf70 _pthread_start + 316
    Thread 3:
    0   libSystem.B.dylib        
    0x93fda078 mach_msg_trap + 8
    1   libSystem.B.dylib        
    0x93fe0f9c mach_msg + 56
    2   com.apple.CoreFoundation 
    0x90a51394 CFRunLoopRunSpecific + 1812
    3   com.apple.CFNetwork      
    0x903cc390 CFURLCacheWorkerThread(void*) + 288
    4   libSystem.B.dylib        
    0x9401bf70 _pthread_start + 316
    Thread 4:
    0   libSystem.B.dylib        
    0x93fe0a8c __semwait_signal + 12
    1   libSystem.B.dylib        
    0x9401d318 _pthread_cond_wait + 1580
    2   com.apple.WebCore        
    0x943c97d4 WebCore::LocalStorageThread::threadEntryPoint() + 196
    Thread 5:
    0   libSystem.B.dylib        
    0x93fda078 mach_msg_trap + 8
    1   libSystem.B.dylib        
    0x93fe0f9c mach_msg + 56
    2   com.apple.Safari         
    0x000324a0 0x1000 + 201888
    Thread 6:
    0   libSystem.B.dylib        
    0x93fe0a8c __semwait_signal + 12
    1   libSystem.B.dylib        
    0x9401d318 _pthread_cond_wait + 1580
    2   com.apple.JavaScriptCore 
    0x90bf4a10 ***::ThreadCondition::timedWait(***::Mutex&, double) + 80
    3   com.apple.Safari         
    0x001d5d30 0x1000 + 1920304
    4   com.apple.Safari         
    0x00049b08 0x1000 + 297736
    5   com.apple.Safari         
    0x00049a18 0x1000 + 297496
    6   libSystem.B.dylib        
    0x9401bf70 _pthread_start + 316
    Thread 7:
    0   libSystem.B.dylib        
    0x93fda078 mach_msg_trap + 8
    1   libSystem.B.dylib        
    0x93fe0f9c mach_msg + 56
    2   com.apple.CoreFoundation 
    0x90a51394 CFRunLoopRunSpecific + 1812
    3   com.apple.Foundation     
    0x96c15d50 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 280
    4   com.apple.Foundation     
    0x96bbed84 __NSThread__main__ + 1004
    5   libSystem.B.dylib        
    0x9401bf70 _pthread_start + 316
    Thread 8:
    0   libSystem.B.dylib        
    0x9403dc14 select$DARWIN_EXTSN + 12
    1   com.apple.CoreFoundation 
    0x90a5c808 __CFSocketManager + 764
    Thread 9:
    0   libSystem.B.dylib        
    0x93fe0a8c __semwait_signal + 12
    1   libSystem.B.dylib        
    0x9401d318 _pthread_cond_wait + 1580
    2   com.apple.WebCore        
    0x943c97d4 WebCore::LocalStorageThread::threadEntryPoint() + 196
    Thread 0 crashed with PPC Thread State 32:
      srr0: 0x90a53054  srr1: 0x0200f030   dar: 0x00000006 dsisr: 0x40000000
    r0: 0x00000000
    r1: 0xbfffa470
    r2: 0xa01f3018
    r3: 0x00000001
    r4: 0x00000000
    r5: 0x00000004
    r6: 0x00000d78
    r7: 0x00000003
    r8: 0x083fc080
    r9: 0x00000000   r10: 0x0091900c   r11: 0x8fe33c48
       r12: 0x90a53010   r13: 0x0598c760   r14: 0x059ca030   r15: 0xa088a81c
       r16: 0x957dd0f4   r17: 0x059cf930   r18: 0x956b1dc4   r19: 0x082c5720
       r20: 0x9569f370   r21: 0x95691c6c   r22: 0x059cf9b0   r23: 0x956d8108
       r24: 0xa087fd90   r25: 0x956aecb4   r26: 0x0830b660   r27: 0x00000001
       r28: 0xbfffa4fc   r29: 0x956b003c   r30: 0x00000001   r31: 0x90a53018
    cr: 0x82024402   xer: 0x00000000
    lr: 0x90a53018   ctr: 0x90a53010
    vrsave: 0x00000000
    Binary Images:
    0x1000 -   0x66dffb  com.apple.Safari 5.0.6 (5533.22.3) <cd58893d1bf864f43f33a2057dcbca12> /Applications/Safari 06.app/Contents/MacOS/Safari
      0x6da000 -   0x7d4fff  com.apple.PubSub 1.0.5 (65.23) <337f9f46f92e8ee1d388c1e9125266d1> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
      0x856000 -   0x859fff  com.apple.CrashReporterSupport 10.5.7 (161) <12938c62930c0c2a22cb68bfc618351e> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
      0x85f000 -   0x86affb  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x871000 -   0x89cffe  com.apple.framework.Apple80211 5.2.8 (528.1) <2fb1873c00513914682118195c6717c6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x8ad000 -   0x8bdffc  SyndicationUI ??? (???) <d45915392f1f1ddaaca3ea2b00bd59d5> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x8cb000 -   0x909ff7  libtidy.A.dylib ??? (???) <d9202168a6bd1e9d6800533f98fb093c> /usr/lib/libtidy.A.dylib
      0xc00000 -   0xde7ff3  com.apple.RawCamera.bundle 2.1.3 (537) <d485a6c33b017f6535c72b77ff4a8a84> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x63f4000 -  0x63fafff  libCGXCoreImage.A.dylib ??? (???) <16eb24800b7e310f46fdf65e3dba73c4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7c05000 -  0x7c10ffb  com.apple.LiveType.component 2.0.2 (2.0.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x7c16000 -  0x7c8ffe3 +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x82c4000 -  0x82c5ffc  com.apple.JavaPluginCocoa 12.0.0 (12.0.0) <0118f511530fa8d4fa6a0ee7ed9ca6f9> /Library/Internet Plug-Ins/JavaPluginCocoa 2.bundle/Contents/MacOS/JavaPluginCocoa
    0x82ca000 -  0x82cffff  com.apple.JavaVM 12.9.0 (12.9.0) <de8855b0d3086fc21c37d4973ee2cddd> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x82d7000 -  0x82dcffd  JavaLaunching ??? (???) <788461f30a065e0facc6bbbac188aba0> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x7f950000 - 0x7f9b8ffb  com.apple.LiveType.framework 2.0.2 (2.0.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x8fe00000 - 0x8fe30c23  dyld 97.1 (???) <89a0055b0e7ea2db881b73c6e63bc774> /usr/lib/dyld
    0x90003000 - 0x90052fff  libGLImage.dylib ??? (???) <2e1f2a2625064149d209ec19e52d0384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90053000 - 0x9019affb  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9019b000 - 0x901b3ffb  com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x901b4000 - 0x90264fff  com.apple.QD 3.11.57 (???) <e74b370c6f81fc00e8936f5cf7c8ebe0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90265000 - 0x902a6ffb  libTIFF.dylib ??? (???) <6910f0c75ed82f98ea8ebf601136ce47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x902de000 - 0x90313ff3  com.apple.LDAPFramework 1.4.5 (110) <0cf1d114abaf598355afb6537b76874e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90346000 - 0x90370ff7  libssl.0.9.7.dylib ??? (???) <2aafe2efc0fb9868cb630ac50b5892b4> /usr/lib/libssl.0.9.7.dylib
    0x90371000 - 0x9037cffb  libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x9037d000 - 0x90389ff3  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
    0x9038a000 - 0x9038effe  libGIF.dylib ??? (???) <e4f0002b104c2a2cb5b4327e906e544f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9038f000 - 0x903c8fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <21dee7ffd93306032f911b5ef3fdbab3> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x903c9000 - 0x9047cffc  com.apple.CFNetwork 438.16 (438.16) <a5b69f31ef4596c8f680772120e3eb08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9047d000 - 0x904e2ffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90533000 - 0x90540fff  libbz2.1.0.dylib ??? (???) <e25cbe0b7e3f3ff41ace9428e57e304c> /usr/lib/libbz2.1.0.dylib
    0x90541000 - 0x9054ffff  libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x90550000 - 0x90550fff  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90551000 - 0x9055cff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9055d000 - 0x905c4ffb  libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x905c5000 - 0x9064ffff  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90650000 - 0x906b1fff  com.apple.CoreText 2.0.5 (???) <0a3d84caa94b9d338921e464780dd350> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x906b2000 - 0x906dbffb  com.apple.shortcut 1.0.1 (1.0) <8da20d176ab4cf71cdf4f79b477fe0e7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x906dc000 - 0x906f8ffb  com.apple.openscripting 1.2.8 (???) <01f86cdb8f7347d2f3f13066e954acb6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x906f9000 - 0x906f9ffa  com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x906fa000 - 0x907c2ffb  com.apple.CoreData 100.2 (186.2) <be912ff41bd4506438a71d5665e89069> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x907e0000 - 0x9082ffff  com.apple.Metadata 10.5.8 (398.26) <1a261534027b9d1518327d1fabe1182b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90830000 - 0x90836fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <7f4de3ca234fdf3f06f25d47d7119e9b> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90837000 - 0x90856fff  libresolv.9.dylib ??? (???) <c5c72e1cf61cb844163156956a1d8407> /usr/lib/libresolv.9.dylib
    0x90857000 - 0x908d2fff  com.apple.SearchKit 1.2.2 (1.2.2) <a9d0033a5e1e55b5e382e52fe578d734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x908d3000 - 0x9093dfff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9093e000 - 0x909a0ffb  com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x909a1000 - 0x909e7ff9  com.apple.securityinterface 3.0.4 (37213) <d36d3af3d7c501ec78476dee04df3051> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x909e8000 - 0x90b0dff3  com.apple.CoreFoundation 6.5.7 (476.19) <dee0f0024f3bf976cfa0a0816e8aa338> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90b0e000 - 0x90b36fff  libxslt.1.dylib ??? (???) <82421418f81b9b6c63529215a3612ab0> /usr/lib/libxslt.1.dylib
    0x90b37000 - 0x90bd8ff7  com.apple.QuickTimeImporters.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90bd9000 - 0x90be8fff  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <305892aafaceb4e31915f0d759ef7e6d> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90be9000 - 0x90dd9ff3  com.apple.JavaScriptCore 5534 (5534.49) <85d598f60ce2169c99f4aab053b8f0c0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90dda000 - 0x90df5ffb  libPng.dylib ??? (???) <7ba22147e900d2ee6837c2f439302f7f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90df6000 - 0x90e15fff  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90e56000 - 0x90e82fff  com.apple.CoreMediaPrivate 11.0 (11.0) <5c3e0852cafaace76f92a112921a8ff0> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x90e83000 - 0x90e8bfff  libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x90e8c000 - 0x90ee2fff  libGLU.dylib ??? (???) <3418ce7ca0863162847f553c15d08674> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90f14000 - 0x90f14ffc  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90f64000 - 0x90fecfff  com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90fed000 - 0x91086fc3  libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91087000 - 0x910a5fff  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x910a6000 - 0x910d1ff7  libauto.dylib ??? (???) <a64d088b2d17e013b9ee5a08d3a20d33> /usr/lib/libauto.dylib
    0x910d2000 - 0x91103fff  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91104000 - 0x91270ff9  com.apple.AddressBook.framework 4.1.2 (702) <00009729166ef5c0294f864e1c4e54c9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91271000 - 0x91385ffa  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91386000 - 0x914d2fff  com.apple.ImageIO.framework 2.0.9 (2.0.9) <d12782e17c25bb9679c5d352ac202fcd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x914d3000 - 0x914e1ff3  com.apple.opengl 1.5.10 (1.5.10) <54bae289e544387ce7997a4a05e70aa9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x914e2000 - 0x91502ff7  libJPEG.dylib ??? (???) <3508b46417ed11d88ae1cea92c7fe756> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91503000 - 0x915d3ff7  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x915d4000 - 0x915d4ff8  com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x915d5000 - 0x915dcffb  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
    0x915dd000 - 0x9190bff7  com.apple.QuickTime 7.5.5 (990.7) <f530ad007afd28b3dc938a41e0a3f1e8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x919b7000 - 0x91a39fff  com.apple.print.framework.PrintCore 5.5.4 (245.6) <3cde2550ec10348b7162d2b6cb0dfc67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91a3a000 - 0x91a3bfff  libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x91a3c000 - 0x91fb8ff3  com.apple.CoreGraphics 1.409.8 (???) <e0bf5ff8fa51b99663fcb860bf44a7ed> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91fb9000 - 0x922e2fe7  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x922e3000 - 0x922f4fff  libsasl2.2.dylib ??? (???) <e4bcc0c9e50ee651e271ff2a8c3f03cd> /usr/lib/libsasl2.2.dylib
    0x922f5000 - 0x92723ffe  libGLProgrammability.dylib ??? (???) <5d52750ec9e438b25d3a4db51361fa2b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92724000 - 0x9272cffb  libCGATS.A.dylib ??? (???) <4766ee761032d31b0ad1855ec396e155> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9272d000 - 0x92777fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92778000 - 0x9280ffff  com.apple.LaunchServices 292 (292) <06cb373fd960fbc2b4a0201f55c7dd6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92810000 - 0x928cafff  libcrypto.0.9.7.dylib ??? (???) <1d82e65c85d65367f3b6b06355c89c9b> /usr/lib/libcrypto.0.9.7.dylib
    0x928cb000 - 0x93041fff  com.apple.AppKit 6.5.9 (949.54) <687f1742c249d7c9268e2eb57713cef6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93042000 - 0x9309fffb  com.apple.HIServices 1.7.1 (???) <a6c5c0bf2d68aeb453dbc493b7d0c8d9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x930b6000 - 0x930bcffb  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x930bd000 - 0x933bfffb  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d9a357a3be5a1bf5969e80db6a4b3327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x933c0000 - 0x9397afff  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9397b000 - 0x93a03ffb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <6fc8a8cb43506b57b951da899a55d3b9> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93a04000 - 0x93a41fff  libRIP.A.dylib ??? (???) <7f98bbcfc21f87ba692ae1722bc9ecd7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93a42000 - 0x93a84fff  com.apple.CoreMediaIOServicesPrivate 12.0 (12.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93a8b000 - 0x93df0ffe  com.apple.QuartzCore 1.5.8 (1.5.8) <60e54cfb861dc5e66bb4f263a192d558> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93df1000 - 0x93e9fffb  com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93f97000 - 0x93f98ff8  com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93f99000 - 0x93fa2fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <682f5c45591e8c4a89c79e384e2c49af> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93fa3000 - 0x93fd8fff  com.apple.AE 402.3 (402.3) <75725936d014fd3ca2553d18b784b99b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93fd9000 - 0x94179fe3  libSystem.B.dylib ??? (???) <7dc28e19e1aac16b29cbd7c5d9ce9638> /usr/lib/libSystem.B.dylib
    0x9417a000 - 0x94199fff  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
    0x941a6000 - 0x941b3fff  libCSync.A.dylib ??? (???) <02b13948e78cc30bd9f122a024ed9e17> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x941b4000 - 0x94249ff7  com.apple.framework.IOKit 1.5.2 (???) <ced0a498252f76a2d2ba9f2a0ae02160> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9424a000 - 0x9424afff  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x942b8000 - 0x943a2fff  libxml2.2.dylib ??? (???) <9d05a5451084c8cd78e3f4722e2c2960> /usr/lib/libxml2.2.dylib
    0x943a3000 - 0x943a3ffe  com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x943a4000 - 0x943a7fff  com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x943a8000 - 0x953a5375  com.apple.WebCore 5534 (5534.50.1) <0acf516306fd6327a76613c1f0dfdbe7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x954f5000 - 0x9561affb  com.apple.imageKit 1.0.2 (1.0) <50dfcbe41b384bd71761c761c3fbfd5e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9561b000 - 0x956fefff  libobjc.A.dylib ??? (???) <a1d4be2eed463c6799b6a1447fde72ba> /usr/lib/libobjc.A.dylib
    0x956ff000 - 0x95704ff6  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95705000 - 0x9582fff1  com.apple.WebKit 5534 (5534.50.2) <8307eb3b6a885d49844034bef76f983e> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95830000 - 0x9584bff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <af876670c51c87b1cb4da0926f02540d> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95852000 - 0x95865ffb  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
    0x95866000 - 0x9587dffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9587e000 - 0x95a67ffb  com.apple.security 5.0.7 (1) <2c8ae7414f8d113a695da92950753ad9> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95a68000 - 0x966dbfff  com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x966e2000 - 0x966fbffb  com.apple.CoreVideo 1.5.1 (1.5.1) <7568a5b07a0ccb4ee76a9b997fa3e5d9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x967d3000 - 0x967d6ffb  com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x967d7000 - 0x967e2fff  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
    0x96a60000 - 0x96a87fff  libcups.2.dylib ??? (???) <8b27a8d2477e9b253a664ad72ebc6ae5> /usr/lib/libcups.2.dylib
    0x96a88000 - 0x96acafff  com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96acb000 - 0x96b08ffe  com.apple.securityfoundation 3.0.2 (36131) <d8a8685348c0bcba4953a46e30c2ce9a> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96b09000 - 0x96b10fff  com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96b25000 - 0x96bb4fff  com.apple.DesktopServices 1.4.9 (1.4.9) <07d08e199716420b6df8e23ff91b5d2d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96bb5000 - 0x96dfbffb  com.apple.Foundation 6.5.9 (677.26) <c30e4aea51bbae480d4550cd53abb441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96dfc000 - 0x96f9dff7  com.apple.QuartzComposer 2.1 (106.13) <6dd1df71cb588b1b9ceb0c5bbf32e842> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96f9e000 - 0x96fe5fff  com.apple.NavigationServices 3.5.2 (163) <453fd79dd63debad4908dcc726f9aa04> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96fe6000 - 0x96ff9fff  com.apple.LangAnalysis 1.6.5 (1.6.5) <2a661ad6e432dd62dd831e234904061f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96ffa000 - 0x97333ff7  com.apple.HIToolbox 1.5.6 (???) <a3b713a77c16da495c886463985f1e39> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x97334000 - 0x97344ffb  com.apple.agl 3.0.9 (AGL-3.0.9) <e751a9e491c3a9ef82c6405466106726> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97345000 - 0x97345ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9735c000 - 0x9742ffff  com.apple.CoreServices.OSServices 228.1 (228.1) <b957e9c8b8ca9c3e03b99d2ad4b31aa2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x974ff000 - 0x97599ff7  com.apple.ApplicationServices.ATS 3.8 (???) <68fbf8a95392317d611f00c709955c8a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9759a000 - 0x9759cffd  libRadiance.dylib ??? (???) <50c07ca861b00fa063aec748b5f4d786> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9759d000 - 0x976e5ff3  libicucore.A.dylib ??? (???) <bdab570d90979c4f601131d442f84720> /usr/lib/libicucore.A.dylib
    0x976e6000 - 0x97713fff  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9771f000 - 0x977cffff  edu.mit.Kerberos 6.0.15 (6.0.15) <870d4f0c841af131a04737468ba803d6> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x977d0000 - 0x97855fff  libsqlite3.0.dylib ??? (???) <daf55b073488086ef5b9a3781be53f14> /usr/lib/libsqlite3.0.dylib
    0x97856000 - 0x97856fff  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

  • Crash using component videoDisplay on mp4 or mov file

    Hi,
    Sometime, I'm experiencing some problems with videoDisplay component. Ie the video is playing correctly, and randomly the application crashs.
    the video file are encoded in h264.
    An idea to solve it ?
    Regards,
    You can find here, crash report :
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    Date/Time:       2012-02-27 17:14:16.887 +0100
    OS Version:      Mac OS X Server 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          45867 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  45805 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      8E2B0D02-2159-4585-86BF-C8FD985D888F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000003c2bb01
    VM Regions Near 0x3c2bb01:
        shared memory          0000000003c1f000-0000000003c20000 [    4K] rw-/rw- SM=SHM 
    -->
        mapped file            0000000003e1f000-00000000046ff000 [ 9088K] r--/rwx SM=COW  /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/SArtFile.bin
    Application Specific Information:
    objc[202]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                           0x02e789cd 0x27a5000 + 7158221
    1   com.adobe.AIR                           0x02ba5f5c 0x27a5000 + 4198236
    2   com.apple.AppKit                        0x989fca57 -[NSApplication sendEvent:] + 7204
    3   com.adobe.AIR                           0x02b96dc7 0x27a5000 + 4136391
    4   com.apple.AppKit                        0x9898d6d5 -[NSApplication run] + 1007
    5   com.adobe.AIR                           0x027ad8ea 0x27a5000 + 35050
    6   com.adobe.AIR                           0x027adc30 0x27a5000 + 35888
    7   com.apple.CoreFoundation                0x900c6de1 -[NSObject performSelector:withObject:] + 65
    8   Diffmed.air                             0x00002f27 start + 2587
    9   Diffmed.air                             0x00002542 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x938b090a kevent + 10
    1   libdispatch.dylib                       0x996b3c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x996b26a7 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x938adc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x938ad1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9005ec7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x90067da4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9006747c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x90067328 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x943d80f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x943cbe59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x943cbe09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x9bea0ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9bea46de thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x938afb42 __select + 10
    1   com.apple.CoreFoundation                0x900b5ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9bea0ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9bea46de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x938b002e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9bea2ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9bea46fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x03c2b000  ebx: 0x02e789c6  ecx: 0x993dba78  edx: 0x00000000
      edi: 0x0015a100  esi: 0x03c2b000  ebp: 0xbffff548  esp: 0xbffff530
       ss: 0x00000023  efl: 0x00010286  eip: 0x02e789cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x03c2bb01
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x6ff7 +Diffmed.air (3.0.380 - ???) <0E2ECBFA-6321-EDA8-D329-039D773FCCF0> /Users/*/Diffmed_air.app/Contents/MacOS/Diffmed_air
      0x600000 -   0x6adff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x723000 -   0x727ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
      0x7ea000 -   0x7f4fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComponents
    0x27a5000 -  0x38bbfc7 +com.adobe.AIR (??? - 3.1.0.4880) <AB2E4804-CA8F-B8C0-AE11-B52400555F22> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x7697000 -  0x76d0ff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x76db000 -  0x7703ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2315) <E860A690-288A-30D1-8C30-09C17347C401> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/QuickTimeIIDCDi gitizer
    0x770b000 -  0x7759ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBV DCDigitizer
    0x7763000 -  0x7769ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x77a9000 -  0x77d6ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x781a000 -  0x781afff  com.apple.VideoDecodeAcceleration (1.1 - 8) <E193AA1D-9176-36FA-A084-7182AF615E60> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceleration
    0x8767000 -  0x88d4ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8908000 -  0x89ffffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0xb75c000 -  0xb872ff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
    0xba4e000 -  0xbb08ffb  com.apple.GeForceVADriver (7.18.11 - 7.1.8) <4BA206C2-3712-383C-AFF9-074A5D3BC3A9> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADriver
    0x8effe000 - 0x8f7a3ffb  com.apple.GeForceGLDriver (7.18.11 - 7.1.8) <71391D53-5F7C-3DA2-AB51-B9CFE665FF2A> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x8fee6000 - 0x8ff18aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x9002c000 - 0x90203fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902a2000 - 0x90309fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x903e5000 - 0x90a76fe3  libclh.dylib (4.0.3 - 4.0.3) <6A8847F2-1F44-3B30-A770-DAAF8D1D36C2> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x90a9e000 - 0x90aa0ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x90e1d000 - 0x90e4cff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x90e4d000 - 0x90e5bfff  com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e5c000 - 0x90f44fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x90f45000 - 0x90f5cff8  com.apple.CoreMediaAuthoring (2.0 - 890) <53F48529-E89F-3518-B888-C8C735C16F8F> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x90f5d000 - 0x90f5effd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x90fc2000 - 0x90fd8ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x90fd9000 - 0x90fdafff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90fdb000 - 0x90fe4fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x90fe5000 - 0x913e7ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x9142d000 - 0x914a5ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x914a6000 - 0x917eaffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x917f4000 - 0x917faffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x917fb000 - 0x9180cfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9180d000 - 0x9184bfff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0FAB8C29-2A1B-3E25-BA34-BDD832B828DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9184c000 - 0x9186ffff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91870000 - 0x918d2ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x918d3000 - 0x918f8ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x91968000 - 0x91c24ff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c25000 - 0x91c44fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x91f53000 - 0x92013ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x92014000 - 0x92018ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x92019000 - 0x92d69feb  com.apple.QuickTimeComponents.component (7.7.1 - 2315) <1826E4DB-15C2-3495-A278-A17ADEDB0A62> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x92d6a000 - 0x92df4ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x92df5000 - 0x92e12ff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x92f2b000 - 0x92f6bff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x93052000 - 0x93055ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x93056000 - 0x9305aff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9305b000 - 0x93065ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x93068000 - 0x9313fff6  com.apple.QuickLookUIFramework (3.1 - 500.10) <1E4CDD9B-BF13-375A-AC74-0943F9DA8648> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x93140000 - 0x93162ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x93163000 - 0x9316bff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x9316c000 - 0x9324fff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x93250000 - 0x9372cff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x9372d000 - 0x93776ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x937cc000 - 0x937cfff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x93887000 - 0x93888ffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x93889000 - 0x93896fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93897000 - 0x938b5ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x938db000 - 0x938defff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9436c000 - 0x94676ff3  com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94677000 - 0x946a0ff1  com.apple.CoreServicesInternal (113.12 - 113.12) <CFF78E35-81F5-36C2-A59F-BF85561AC16D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x946a1000 - 0x946f2fff  libFontRegistry.dylib (??? - ???) <DF69E8EC-9114-3757-8355-8F3E82156F85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x946f3000 - 0x9474eff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x947db000 - 0x947dcff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x947dd000 - 0x947e1ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9480c000 - 0x9480cff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9480d000 - 0x94814fff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94815000 - 0x94851ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x94852000 - 0x94c45ffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x94c46000 - 0x94c4dffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94c4e000 - 0x94c5cff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x94c5f000 - 0x94c62ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <E06426D8-CC01-3754-B5B3-D15CBA5C8D73> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94dff000 - 0x94e86fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x94e87000 - 0x94f96fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x94fb2000 - 0x951a7ff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x951a8000 - 0x95309ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9530a000 - 0x9531eff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9531f000 - 0x95328ff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x95329000 - 0x9532cffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x954b9000 - 0x95501ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <CA077C0D-8A54-38DB-9690-5D222899B93D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x95502000 - 0x9558ffe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x95a19000 - 0x95a67ff3  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <2FBC3C23-B0DD-3F0B-8452-90954F9C7E13> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x95a68000 - 0x95b3eaab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x95b51000 - 0x95bc0fff  com.apple.Heimdal (2.1 - 2.0) <BCF7C3F1-23BE-315A-BBB6-5F01C79CF626> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x95bc1000 - 0x95cdffec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x95f1a000 - 0x95f1afff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9604f000 - 0x96054ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x96055000 - 0x960b7ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x960b8000 - 0x960c3ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <DD0529E3-9D71-37B6-9EB8-D7747B2B12C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x96106000 - 0x9619bff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x9619c000 - 0x9619cfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9619d000 - 0x96557ffb  com.apple.SceneKit (2.2 - 125.3) <D4EAD83D-0E86-3159-80D6-C8B53B25B833> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x96558000 - 0x9658eff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x96671000 - 0x966b4ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x966db000 - 0x966deffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x966df000 - 0x96952ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96953000 - 0x9695bff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9695c000 - 0x9695cffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9695d000 - 0x96985ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x96986000 - 0x969eafff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x969eb000 - 0x96abafff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <D4D6EB78-8A6C-3474-921C-622C6951489B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x96abb000 - 0x96b18ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x96b1b000 - 0x96b91fff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x96b92000 - 0x96b96fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x96be3000 - 0x96be4fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x96ca9000 - 0x96ca9fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x96caa000 - 0x96cc6ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x96cd3000 - 0x96d13ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x96d15000 - 0x96d56ff7  com.apple.CoreMedia (1.0 - 705.61) <75CC7ECC-8D62-3BA3-BD9B-D5E7FA82EC2D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96d70000 - 0x96d76ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x96d77000 - 0x96ec9fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96eca000 - 0x977f25eb  com.apple.CoreGraphics (1.600.0 - ???) <E285B0B6-F9FC-33BC-988F-ED619B32029C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x977f3000 - 0x97810fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x97b1e000 - 0x97b38fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97b53000 - 0x97b61fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x97b62000 - 0x97bd6fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x97c12000 - 0x97f14fff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x97f15000 - 0x9819afe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9819b000 - 0x98217ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x98218000 - 0x98271fff  com.apple.HIServices (1.11 - ???) <F8B77735-B168-3E21-9B8F-921115B4C19B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x98272000 - 0x988edfe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x988ee000 - 0x98901ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x98988000 - 0x9941bff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x99434000 - 0x99439ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x994aa000 - 0x994faff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x995ce000 - 0x995d5ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x995d6000 - 0x995d7ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x99615000 - 0x996b0ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x996b1000 - 0x996bffff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x996c0000 - 0x9974dff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x9975a000 - 0x997fefff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9980f000 - 0x9983afff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9983f000 - 0x99841ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x99842000 - 0x9986bffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9986c000 - 0x99964ff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x99965000 - 0x99a3cffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x99a3d000 - 0x99a8eff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x99b11000 - 0x99b12ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x99b13000 - 0x99d2eff7  com.apple.imageKit (2.1.1 - 1.0) <3A523A4F-BE07-35B1-9A41-523FD27C14D4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x99d2f000 - 0x99d30fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x99d31000 - 0x9a1a6ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9a3d3000 - 0x9a3d4fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9a3d5000 - 0x9a3d5fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a3d6000 - 0x9a3fcffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9a43f000 - 0x9a44affb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9aae6000 - 0x9ae29fff  com.apple.MediaToolbox (1.0 - 705.61) <FF915A3D-16F4-3191-A9B2-EF9270104786> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x9ae2a000 - 0x9ae2bff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x9ae2c000 - 0x9ae69ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x9af3e000 - 0x9b04fff7  libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x9b132000 - 0x9b35bffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x9b45f000 - 0x9b58bff9  com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x9b595000 - 0x9b6f7fff  com.apple.QTKit (7.7.1 - 2315) <21C7F00E-FBB9-3F12-AE51-06A630ECAC5E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9b6f8000 - 0x9b725ff7  com.apple.securityinterface (5.0 - 55007) <E5139C3F-23D2-363D-A4A2-B491E55A5439> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x9b792000 - 0x9b7a2ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9b7b2000 - 0x9b7c2fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9bc11000 - 0x9bc19fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9bc1a000 - 0x9bc48fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x9bc49000 - 0x9bc5eff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9bcac000 - 0x9bce3fef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9bd16000 - 0x9bd7bff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9bd7c000 - 0x9bd87fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x9bd88000 - 0x9bd90ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9bd91000 - 0x9bd95fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x9bd96000 - 0x9bd96fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x9bd97000 - 0x9bda2ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x9bda3000 - 0x9bdaeffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9bdbd000 - 0x9be19fff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9be44000 - 0x9bf0ffff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x9bf10000 - 0x9bf19ffb  com.apple.DisplayServicesFW (2.5.2 - 317) <02BD6AF3-F355-3F68-9DC2-2DA28CE27682> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9bf1a000 - 0x9c02afe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x9c2dd000 - 0x9c2ffffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9c300000 - 0x9c300fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9c301000 - 0x9c301fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9c344000 - 0x9c394ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9c3ba000 - 0x9c3baff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9c3bb000 - 0x9c436ffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x9c455000 - 0x9c457ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x9c458000 - 0x9c51afff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9c51b000 - 0x9c60bff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9c695000 - 0x9c8deff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9c8df000 - 0x9ca93ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9ca94000 - 0x9ca97ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9ca98000 - 0x9cac6ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9cac7000 - 0x9cb5eff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9cb5f000 - 0x9cb66ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x9cb67000 - 0x9cb6bffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9cb6c000 - 0x9cbcdffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9cbce000 - 0x9cbcefff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9cd05000 - 0x9cd1afff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9cd1b000 - 0x9cd45ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9cd46000 - 0x9cd95ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9cd96000 - 0x9cde7ff3  com.apple.CoreMediaIO (210.0 - 3180) <6C9974AD-CA84-3C49-B55E-0496B675DBA1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 27
        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: 500
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=214.6M resident=43.5M(20%) swapped_out_or_unallocated=171.1M(80%)
    Writable regions: Total=1.1G written=1.0G(93%) resident=1.1G(93%) swapped_out=8088K(1%) unallocated=78.6M(7%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 31.8M
    CG backing stores                  13.9M
    CG image                              4K
    CG raster data                       64K
    CG shared images                   3376K
    CoreGraphics                          8K
    CoreServices                       1964K
    IOKit                              1216K
    MALLOC                              1.1G
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      156K
    SQLite page cache                   192K
    Stack                              65.6M
    VM_ALLOCATE                        16.2M
    __CI_BITMAP                          80K
    __DATA                             15.1M
    __DATA/__OBJC                       184K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         43.8M
    __OBJC                             2332K
    __OBJC/__DATA                        40K
    __PAGEZERO                            4K
    __TEXT                            170.7M
    __UNICODE                           544K
    mapped file                       104.7M
    shared memory                       764K
    shared pmap                        6744K
    ===========                      =======
    TOTAL                               1.5G
    Model: Macmini3,1, BootROM MM31.00AD.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 2 GB, SMC 1.35f1
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142323837334548312D4346382020
    Memory Module: BANK 1/DIMM0, 1 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142323837334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x90), Broadcom BCM43xx 1.0 (5.10.131.36.11)
    Bluetooth: Version 4.0.3f12, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS543216L9SA02, 160,04 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: Hub in Apple Extended USB Keyboard, apple_vendor_id, 0x1002, 0x06400000 / 3
    USB Device: Apple Optical USB Mouse, apple_vendor_id, 0x0306, 0x06420000 / 6
    USB Device: Apple Extended USB Keyboard, apple_vendor_id, 0x0205, 0x06410000 / 5
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2

    hi,
    Thanks for your help.
    I will try the air 3.4 beta version, and i tell you if it solve my problems.
    Also, i m using garbage collection.
    In add, i would specify that the video playing sound (AAC).
    Regards,

Maybe you are looking for