Coding for unexpected crashes.  Recovering data

I am trying to find some best practices on how to handle unexpected application crashes. I am mainly looking for ideas on how to lose the least amount of data as possible.
I like how programs like Microsoft Word and Open Office Writer can crash and then prompt you to recover your data when they start again.
I am trying to implement something similar to this and I am wondering if anyone had any advice on the best way to achieve this.
Thank you,
Al

You keep a "working file" until the file is finalized and then delete it when you are done (MS does not always delete the working copy, just look in your windows/temp folder).

Similar Messages

  • Coding for selecting a specific data

    i have a table with n records where email id is 1 field. In this table i have email id records.
    i want logic and coding for the following
    1. the mail id should be printed only once in the screen followed by its contents.
                                                                                    00    LPS19073_CRF-DESIGN_P1    LPS          000           -            22.03.2007 [email protected]
    00    LPS19073_CRF-DESIGN_P5    LPS           000           -            01.04.2007 [email protected]   
    00    LPS19073_CRF-DESIGN_P7    LPS           000           -            22.03.2007 [email protected]   
    for next mai id it should be printed in the next line and its contents should be printed .
    the putput should like this
    [email protected]
    00    LPS19073_CRF-DESIGN_P5    LPS           000           -            01.04.2007
    00    LPS19073_CRF-DESIGN_P7    LPS           000           -            22.03.2007
    [email protected]
    00    LPS19073_CRF-DESIGN_P1    LPS          000           -            22.03.2007
    plz help me

    Chandrasekharan,
    Check the below   code.There we are passing the total internal table data at once in FM
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    object_hd_change = object_hd_change
    object_type = 'RAW'
    outbox_flag = 'X'
    TABLES
    objcont = object_content
    receivers = rec_table
    Instead of this put the internal table in LOOP . and assign the mail ID value to
    rec_table-recextnam = '[email protected]'.
    rec_table-adr_name = '[email protected]'.
    So you will achieve your goal.Pls. see the below code.
    Go through the below code.
    REPORT zmbundal_email_out .
    DATA BEGIN OF object_hd_change. "SAPoffice: object definition,
    INCLUDE STRUCTURE sood1. "change attributes
    DATA END OF object_hd_change.
    DATA BEGIN OF object_content OCCURS 5. "SAPoffice: Single List with
    INCLUDE STRUCTURE solisti1. "Column Length 255
    DATA END OF object_content.
    DATA BEGIN OF rec_table OCCURS 1. "SAPoffice: recipient with
    INCLUDE STRUCTURE soos1. "attributes
    DATA END OF rec_table.
    Build email recipient table...........................................
    CLEAR rec_table.
    rec_table-sel = 'X'.
    rec_table-recesc = 'B'.
    rec_table-recesc = 'U'.
    rec_table-recnam = 'U-'.
    rec_table-recextnam = '[email protected]'.
    rec_table-adr_name = '[email protected]'.
    rec_table-sndex = 'X'.
    rec_table-sndpri = '1'.
    rec_table-mailstatus = 'E'.
    rec_table-SNDSPO = 442355.
    rec_table-SNDCP = 'X'.
    COLLECT rec_table.
    *.Email.content.........................................................
    object_content = 'dannyboy baboy'. APPEND object_content.
    object_content = 'dannyboy pogi'. APPEND object_content.
    object_content = 'dannyboy fagg*t'. APPEND object_content.
    *...Subject.Line........................................................
    object_hd_change-objnam = 'Test email'.
    object_hd_change-objdes = ' Email for Baboy'.
    Send Email............................................................
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    object_hd_change = object_hd_change
    object_type = 'RAW'
    outbox_flag = 'X'
    TABLES
    objcont = object_content
    receivers = rec_table
    EXCEPTIONS
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    originator_not_exist = 20
    x_error = 21
    OTHERS = 22.
    *...SAPconnect..........................................................
    SUBMIT rsconn01 "SAPconnect Start Send Process
    WITH mode EQ '*'
    WITH output EQ ''
    TO SAP-SPOOL
    DESTINATION 'LOCAL'
    IMMEDIATELY ' '
    KEEP IN SPOOL 'X'
    WITHOUT SPOOL DYNPRO
    AND RETURN.
    Don't forget to reward if useful....

  • Please help me in ABAP coding for the incoming transactional data

    Hi
    I have the following transactional data
    Transaction ID-  Buyer- Seg- Fam- Cla -Com-Total
    00001 - AB co - Engineering - Machinery - Equipment - Mechanical -15000
    00002 - AC co - Engineering - Machinery - Equipment - Mechanical -15850
    00003 - DE co - IT - Hardware - Mouse -Optical -5850
    00004 - AC co - Engineering - Machinery - Equipment - Architectural -10000
    00005 - FE co - Engineering - Machinery - Equipment - NOT_KNOWN -1580
    00006 - KC co - Engineering - Machinery - Equipment - NOT_KNOWN -75850
    00007 - EG co - Engineering - Machinery - Equipment - Mechanical -180050
    00008 - AS co-  Engineering - Machinery - Equipment - Architectural -10550
    00009 - DE co - IT - Hardware - Mouse -Optical -58500
    00010 - EF co - IT - Hardware - Mouse -NOT_KNOWN -555850
    00011 - EF co - Engineering - Machinery - Equipment - Mechanical -44850
    00012 - AC co - IT - Hardware - NOT_KNOWN -NOT_KNOWN -585550
    In this transactional data, SEG-> FAM -> CLA -> COM  are in hierarchy
    To distiguish the NOT_KNOWN which have different level i like to change there names like this...
    NOT_KNOWN_1, NOT_KNOWN_2....like that
    I expect the results to be like this
    Transaction ID-  Buyer- Seg- Fam- Cla -Com-Total
    00001 - AB co - Engineering - Machinery - Equipment - Mechanical -15000
    00002 - AC co - Engineering - Machinery - Equipment - Mechanical -15850
    00003 - DE co - IT - Hardware - Mouse -Optical -5850
    00004 - AC co - Engineering - Machinery - Equipment - Architectural -10000
    00005 - FE co - Engineering - Machinery - Equipment - NOT_KNOWN_1 -1580
    00006 - KC co - Engineering - Machinery - Equipment - NOT_KNOWN_1 -75850
    00007 - EG co - Engineering - Machinery - Equipment - Mechanical -180050
    00008 - AS co-  Engineering - Machinery - Equipment - Architectural -10550
    00009 - DE co - IT - Hardware - Mouse -Optical -58500
    00010 - EF co - IT - Hardware - Mouse -NOT_KNOWN_2 -555850
    00011 - EF co - Engineering - Machinery - Equipment - Mechanical -44850
    00012 - AC co - IT - Hardware - NOT_KNOWN_3 -NOT_KNOWN_4 -585550
    I like to make this changes in the coming data by writing a start routine
    Could anyone provide me the required code to make this happen
    Plz help me
    Regards
    KC

    Hi
    My Start routine screen look like this
    Declaration of transfer structure (selected fields only)
    TYPES: BEGIN OF TRANSFER_STRUCTURE ,
      Record number to be filled in case of adding row(s)
      to enable 'error handling'
        record      TYPE rsarecord,
      InfoObject TRAID: CHAR - 000060
        /BIC/TRAID(000060) TYPE C,
      InfoObject SEG5: CHAR - 000060
        /BIC/SEG5(000060) TYPE C,
      InfoObject FAM5: CHAR - 000060
        /BIC/FAM5(000060) TYPE C,
      InfoObject CLA5: CHAR - 000060
        /BIC/CLA5(000060) TYPE C,
      InfoObject COM5: CHAR - 000032
        /BIC/COM5(000032) TYPE C,
      InfoObject COCE: NUMC - 000015
      InfoObject TOTALSEG: CHAR - 000032
        /BIC/TOTALSEG(000032) TYPE C,
    END OF TRANSFER_STRUCTURE .
    Is this information you are lookin or something more
    Regards
    KC

  • How do I restore old emails from recovered data after hard drive crash?

    Hi all - I used data rescue II to recover data from a crashed hard drive - seems to have worked pretty well, as the file structure seems to be mostly intact - now I'm trying to find the old emails and get them back in my inbox/sent mailboxes where they belong - any help is surely appreciated - thanks

    Hi Tommybanjo.
    Mail stores the messages in .emlx files, but you cannot import individual messages directly, only entire mailboxes. In order to import the recovered .emlx files back into Mail, they must be organized as if they were in an .mbox mailbox, i.e. they must be in a Messages folder within an .mbox folder. You may create a folder called Recovered.mbox, then a Messages folder within this folder, then put the .emlx files within the Messages folder, then import that.
    In Mail, do File > Import Mailboxes, choose Mail for Mac OS X as the data format, and follow the instructions. Note that Mail wants you to select the folder that contains the mailboxes to be imported (i.e. the folder where the .mbox folders to be imported reside), not the .mbox folders themselves nor the Messages folders within them.
    Given the circumstances, however, there could be something wrong with one or more of the recovered messages and that might cause the import to fail. If that’s the case, you may try organizing the recovered messages in several smaller mailboxes and try to identify the messages that Mail has trouble with. Alternatively, you may try using emlx to mbox Converter or Emailchemy to convert the .emlx files to standard mbox format, then import that in Mail as Other.

  • Dear Apple: Can't recover data from iPad / no exploit for A5 bootrom

    Dear Apple,
    Looks like I'm not the only one who has had a failed upgrade to 6.1.3. Now my mother's iPad 2 is in recovery mode with 1000+ pictures lost in LaLaLand.
    No recent backup, no iCloud.
    I've done lots of research on how I can recover the data and the only possible way seems to be accessing the Ramdisk via SSH.
    But there is no bootrom exploit for A5 devices, so it won't work.
    Thanks Apple, I've lost photos of our family dog that passed this year, as well as photos from my grandmother's memorial service from this year.
    I hope an Apple employee see's this...
    Your process for upgrading iOS versions should be less prone to errors or failures. Required syncs or backups before upgrades should be required.
    I could send my iPad to the main data recovery service Apple has partnered with... but I don't have $400 - $1200 to spend.
    But even if I did, I would assume that only Apple has the power to access the data that is now in a digital vault, protected by their millions of dollars of revenue.
    How can a top-leader in the consumer electronics industry let down so many of their loyal customers? Just google "recover data on iPad" or iPhone and you'll see that 1000's of people across the globe are having the same issue with iOS upgrades.
    Please Apple, at least create a service to allow users to send in devices for data recovery. Only you have the power to "hack" into our devices.
    Sincerly,
    Forever lost memories?

    Apple aren't here. This is a user to user forum.
    You've lost your data because, as you said: "No recent backup, no iCloud." - that's your fault, no-one else's.
    Backing up is necessary regardless of whether you are upgrading or not. Your iPad could've been stolen or damaged and you'd've lost the data the same. Apple provides you with at least 3 ways of retaining copies of your photos - you chose not to use them.
    Call this a lesson learned in the consequences of not backing up as advised.

  • I have iPhone 4 and I update it to iOS 7 and when I try to start the personal hotspot it crashed and for sometime my cellular data was also not working then allot a sudden the personal hotspot icon disappeared from my settings

    I have iPhone 4 and I update it to iOS 7 and when I try to start the personal hotspot it crashed and for sometime my cellular data was also not working then allot a sudden the personal hotspot icon disappeared from my settings.
    Has anyone faced a problem like this!!!

    No. If you go Settings App > General > Reset > "Erase All Content and Settings", you will have the same iOS that was on the iPhone when you tapped the Erase button. If you believe your iPhone is Jailbroken, then this will not work. If you use iTunes on computer, this will put iPhone to current iOS which is iOS 7.0.2

  • Am I the only one for whom Illustrator 5.5 unexpectedly crashes when I try to save a doc?

    Am I the only one for whom Illustrator 5.5 unexpectedly crashes when I try to save a doc on Yosemite?Compatibility with Yosemite — Illustrator CS5.5

    Various folders. It usually allows me to re-save older files, but a new save is practically impossible to accomplish. I tried Reducing Transparency, as suggested in earlier posts to no avail. Also, when I drag an eps icon into Illustrator, it asks me if I want to retain the 9-slice scaling options for symbols — not sure what that means. Tried that both ways, with no results. Just had it crash on me 8 times this evening!

  • HT4623 how to recover data for contacts on iPad mini

    how to recover data for contacts on ipad mini?

    You don't give much info to go on. Do you sync your contacts?

  • Just had a fatal crash of my new 1TB fusion drive on my 3 month old Imac 27". Is there anyone elese having this issue? And have you been able to recover data from that Crashed Fushion Drive?

    Just had a fatal crash of my new 1TB fusion drive on my 3 month old Imac 27". Is there anyone elese having this issue? And have you been able to recover data from that Crashed Fushion Drive?

    Since it's a new machine, contact Apple's Support, formerly Apple Express Lane and let them deal with it.

  • Should I use a data retrieval service or software to recover data ?

    Please pardon the length of this post.
    Here's the setup for our office:
    Computer 1:
    10.4.8 OS X
    1 GHZ PowerPC G4: silver grey tower, grey apple
    1MB L3 Cache
    256 MB DDR SDRAM
    Computer 2:
    10.4.8 OS X
    Dual 450 MHZ PowerPC G4: blue grey tower, blue apple
    256 MB SDRAM
    Computer 3:
    10.4.8 OS X
    1 GHZ PowerPC G4 IMac Flat Screen:
    256 MB DDR SDRAM
    I have 2 LaCie Big Disk d2 Extremes daisy chained and connected to the IMac. We use the first to store all of our data to keep our local disks free. The second d2 is the backup to the first. The other 2 computers connect to the d2's via an ethernet hub. The d2's are each partitioned into 4 compartments.
    A couple of days ago I started the system up when I got in in the morning, and the main d2 would not open. I ran disk utility, but it said that the drive was damaged beyond it's ability to repair. I ran DiskWarrior, and it gave me this message:
    "The directory of disk 'G4' cannot be rebuilt. The disk was not modified. The original directory is too severely damaged. It appears another disk utility has erased critical directory information. (3004, 2176)."
    I contacted Disk Warrior tech support and after a series of exchanges that had me send him dated extracted from the terminal function, he said this:
    "It appears that the concatenated RAID inside your LaCie
    drive has failed (your 500GB drive is actually 2 250GB
    hard drives). That is why we only saw 2 partitions
    on "disk3". A possible cause could be a failed bridge
    in the case.
    You may be looking at sending this drive to a data recovery service.
    However, it is possible that we may be able to recover data
    from the partitions that we CAN see. What we would be doing would cause no damage to your data
    unless the hard drives were having a mechanical failure (ie, the
    head crashed and was contacting the platters, similar to scratching
    a record). But from what I've seen, I don't feel that is the case.
    I believe the piece of hardware that 'bridges' the two drives to
    make them act as one has failed. that's why we can only see data
    about 1 of the 2 drives in the case.
    We would only be attempting to gather data off the drive. Since
    data recovery services sometimes charge for amount of data retrieved,
    it's up to you how you want to proceed."
    Most of the data from the past 5 years for our business stands at being lost. Only some of it had been properly backed up on the second drive, due to some back up software issues. I want to do whatever I can to retrieve all of, or at least some of the data. From what the Alsoft technician said, do you think that the data recovery software available to the consumer is going to be robust enough to retrieve at least the data from the one disk in the drive that is recognizable (there are 2 250gig disks in the d2X. Only one is responding at all). If so, do these Softwares further damage the disks? Or should I just send the drive to a data recovery service?
    I'd like to try to extract some of it myself via over the counter retrieval software, but I don't know whether to trust these programs?
    Any advice would be greatly appreciated.
    Thanks in advance.
    Peter McConnell
    1 GHZ PowerPC G4 IMac Flat Screen   Mac OS X (10.4.8)   Posted

    Peter
    My 2 cents:
    I have used FileSalvage
    http://www.subrosasoft.com/OSXSoftware/index.php?mainpage=product_info&productsid=1
    to recover files from damaged disks. It works as advertised, within limits. Some files may be too damaged to recover. More importantly yo get to scan the disk before actually recovering, and it will give you a list of what it thinks it can recover.
    My experience was that it recovered approx 85% of the data.
    YMMV but they do have a trial.
    Regards
    TD

  • Can I sync from iPad to a Mac as hard drive crashed and data lost

    My iMac hard drive crashed and the data cannot be recovered. Can I sync the iTunes data on my iPad or iPhone back onto the new hard drive?

    You should be able to recover data that is in the backup. That does not included some items like music. See the following for what is in the backup:
    http://support.apple.com/kb/HT4079
    First in iTunes preferences check the box for prevent automatic syncing when a device is connected.
    They connect your iPod to the computer and transfer iTunes purchases to the computer. See:
    http://support.apple.com/kb/HT1848
    Then right click on the iPad listed under Devices in the left hand side and click on "Back Up". After backup is complete I think you will have to restore the iPad from backup to complete the process of using your iPad to the "new" computer.

  • How do I recover data from my dead hard drive?

    How do I recover data from my dead hard drive?

    Is it dead or corrupt? There are recovery programs out there, however if your HD is head, paying pros to do data recovery is VERY costly.       Some have removed the platters and installed them in likewise drives that dont have head crashes, but torque tolerances are tight, and doing it right is a bit advanced and tricky for most. Ive done HD disk swaps 4 times and had success 3 of the 4 times. It requires cannibalizing another working HD.   In the future remember the golden rule, 2 copies is 1, and one is NONE.
    Its likely you could find a local computer repair station that can do it for you cheaply.  HD dont really "die", they have fried SATA bus, or crashed HEADS........the platters DO demagnatize over long time due to heat and degauss of the data (poor storage, etc).........but in specific, a HARD DRIVE DOESNT DIE ,.........only the flying head mechanisms that read and write the data, and SATA / bus that feeds the data DIES,.......but the data (unless corrupt or magnetically corrupted) is THERE

  • Unexpected crashes... what can be the cause?

    Hello,
    I'm new to this forum so I hope I've found the correct forum to ask for some technical help!
    I'm experiencing quite a few applications crashing since I tried (unsuccessfully) to install Cubase LE 1 (I was hoping to look inside some old music projects). It installed ok, but several launches later, I still could not get it to open. So I just deleted the Cubase LE 1 app. I have the latest version (Cubase 5) installed anyway, so LE 1 is not really very important to me now.
    But I'm freaking out a bit as these unexpected crashes keep occurring. This evening it happened when I was using Cubase 5... which up til now has been really stable. Am I going to have to reinstall everything on my machine again (groan)?
    Can anyone offer some advice or look through the details of the crash for me?
    Thanks. Best,
    Anthony
    Process: Cubase 5 [35447]
    Path: /Applications/Cubase 5.app/Contents/MacOS/Cubase 5
    Identifier: com.steinberg.cubase
    Version: 5.0.1.147 (5.0.1.147)
    Code Type: X86 (Native)
    Parent Process: launchd [98]
    Date/Time: 2010-03-22 03:33:48.070 +0100
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 20361 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 76543 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: 762EFC54-9641-44D0-A5A4-445FCD15B753
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000287ffa00
    Crashed Thread: 22
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x9826f8da machmsgtrap + 10
    1 libSystem.B.dylib 0x98270047 mach_msg + 68
    2 com.apple.CoreFoundation 0x971be77f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x971bd864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x971bd691 CFRunLoopRunInMode + 97
    5 com.apple.HIToolbox 0x98510f0c RunCurrentEventLoopInMode + 392
    6 com.apple.HIToolbox 0x98510cc3 ReceiveNextEventCommon + 354
    7 com.apple.HIToolbox 0x98510b48 BlockUntilNextEventMatchingListInMode + 81
    8 com.apple.AppKit 0x937aaac5 _DPSNextEvent + 847
    9 com.apple.AppKit 0x937aa306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    10 com.apple.AppKit 0x9376c49f -[NSApplication run] + 821
    11 com.steinberg.cubase 0x014c6460 CResampleBase::~CResampleBase() + 3855760
    12 com.steinberg.cubase 0x01267d00 CResampleBase::~CResampleBase() + 1371696
    13 com.steinberg.cubase 0x0121d920 CResampleBase::~CResampleBase() + 1067600
    14 com.steinberg.cubase 0x00cc76ff 0x1000 + 13395711
    15 com.steinberg.cubase 0x00fff240 0x1000 + 16769600
    16 com.steinberg.cubase 0x000022b6 0x1000 + 4790
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x982960ea kevent + 10
    1 libSystem.B.dylib 0x98296804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98295cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98295a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x982954f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98295336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x9826f92e semaphoretimedwaittrap + 10
    1 com.steinberg.cubase 0x014e4e9d CResampleBase::~CResampleBase() + 3981261
    2 com.steinberg.cubase 0x006761be 0x1000 + 6771134
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 3:
    0 libSystem.B.dylib 0x9826f8da machmsgtrap + 10
    1 libSystem.B.dylib 0x98270047 mach_msg + 68
    2 com.apple.audio.midi.CoreMIDI 0x02141f31 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3 com.apple.audio.midi.CoreMIDI 0x021608fe MIDIProcess::RunMIDIInThread() + 150
    4 com.apple.audio.midi.CoreMIDI 0x02143149 XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x02142b16 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9829cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9829ce42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9826f9ee machwaituntil + 10
    1 ...ple.CoreServices.CarbonCore 0x98d24034 MPDelayUntil + 43
    2 ...ple.CoreServices.CarbonCore 0x98d33a56 Delay + 107
    3 ...opellerheads.rewire.library 0x22a277e8 RWPUnregisterDeviceImp + 21574
    4 ...opellerheads.rewire.library 0x22a42a5c RWPUnregisterDeviceImp + 132794
    5 libSystem.B.dylib 0x9829cfbd pthreadstart + 345
    6 libSystem.B.dylib 0x9829ce42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9826f922 semaphorewait_signaltrap + 10
    1 com.steinberg.cubase 0x014d4126 CResampleBase::~CResampleBase() + 3912278
    2 com.steinberg.cubase 0x00cf4865 0x1000 + 13580389
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 6:
    0 libSystem.B.dylib 0x9826f922 semaphorewait_signaltrap + 10
    1 com.steinberg.cubase 0x014d4126 CResampleBase::~CResampleBase() + 3912278
    2 com.steinberg.cubase 0x00cf4865 0x1000 + 13580389
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 7:
    0 libSystem.B.dylib 0x9826f922 semaphorewait_signaltrap + 10
    1 com.steinberg.cubase 0x014d4126 CResampleBase::~CResampleBase() + 3912278
    2 com.steinberg.cubase 0x00cf4865 0x1000 + 13580389
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 8:
    0 libSystem.B.dylib 0x9826f922 semaphorewait_signaltrap + 10
    1 com.steinberg.cubase 0x014d4126 CResampleBase::~CResampleBase() + 3912278
    2 com.steinberg.cubase 0x00cf4865 0x1000 + 13580389
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 9:
    0 libSystem.B.dylib 0x9826f922 semaphorewait_signaltrap + 10
    1 com.steinberg.cubase 0x014d4126 CResampleBase::~CResampleBase() + 3912278
    2 com.steinberg.cubase 0x00cf4865 0x1000 + 13580389
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 10:
    0 libSystem.B.dylib 0x9826f922 semaphorewait_signaltrap + 10
    1 com.steinberg.cubase 0x014d4126 CResampleBase::~CResampleBase() + 3912278
    2 com.steinberg.cubase 0x00cf4865 0x1000 + 13580389
    3 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 11:
    0 libSystem.B.dylib 0x9826f92e semaphoretimedwaittrap + 10
    1 com.steinberg.cubase 0x014e4e9d CResampleBase::~CResampleBase() + 3981261
    2 com.steinberg.cubase 0x014e5978 CResampleBase::~CResampleBase() + 3984040
    3 com.steinberg.cubase 0x00cf5bb3 0x1000 + 13585331
    4 com.steinberg.cubase 0x00cf5d58 0x1000 + 13585752
    5 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 12:
    0 libSystem.B.dylib 0x9826f92e semaphoretimedwaittrap + 10
    1 com.steinberg.cubase 0x014e4e9d CResampleBase::~CResampleBase() + 3981261
    2 com.steinberg.cubase 0x014e5978 CResampleBase::~CResampleBase() + 3984040
    3 com.steinberg.cubase 0x00a9db81 0x1000 + 11127681
    4 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 13:
    0 libSystem.B.dylib 0x9826f916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x27802c0a TSingleSyncPoint::Wait() + 24
    2 com.ableton.live-engine 0x2783f6e8 OValueProcessor::SetValue(float) + 1942
    3 com.ableton.live-engine 0x27808471 TThread::Start() + 293
    4 libSystem.B.dylib 0x9829cfbd pthreadstart + 345
    5 libSystem.B.dylib 0x9829ce42 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x9829d806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9829d4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9829f158 pthreadcondwait$UNIX2003 + 73
    3 com.steinberg.cubase 0x014e4fe5 CResampleBase::~CResampleBase() + 3981589
    4 com.steinberg.cubase 0x011744d4 CResampleBase::~CResampleBase() + 374276
    5 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 15:
    0 libSystem.B.dylib 0x9829d806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9829d4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9829f158 pthreadcondwait$UNIX2003 + 73
    3 com.steinberg.cubase 0x014e4fe5 CResampleBase::~CResampleBase() + 3981589
    4 com.steinberg.cubase 0x011744d4 CResampleBase::~CResampleBase() + 374276
    5 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 16:
    0 libSystem.B.dylib 0x9829d806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9829d4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9829f158 pthreadcondwait$UNIX2003 + 73
    3 com.steinberg.cubase 0x014e4fe5 CResampleBase::~CResampleBase() + 3981589
    4 com.steinberg.cubase 0x00d2926d 0x1000 + 13795949
    5 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 17:
    0 libSystem.B.dylib 0x9829d806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9829d4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9829f158 pthreadcondwait$UNIX2003 + 73
    3 com.steinberg.cubase 0x014e4fe5 CResampleBase::~CResampleBase() + 3981589
    4 com.steinberg.cubase 0x011744d4 CResampleBase::~CResampleBase() + 374276
    5 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 18:
    0 libSystem.B.dylib 0x98295182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98295718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98295336 start_wqthread + 30
    Thread 19:
    0 libSystem.B.dylib 0x9828e856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x971fdddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x9829cfbd pthreadstart + 345
    3 libSystem.B.dylib 0x9829ce42 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x98295182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98295718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98295336 start_wqthread + 30
    Thread 21:
    0 libSystem.B.dylib 0x98295182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98295718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98295336 start_wqthread + 30
    Thread 22 Crashed:
    0 ...ultimedia.vpa.SampleTank2.x 0x19d8ff31 epiThreadHandler::~epiThreadHandler() + 44473
    1 ...ultimedia.vpa.SampleTank2.x 0x19d18ff5 0x19cbe000 + 372725
    2 ...ultimedia.vpa.SampleTank2.x 0x19d1c37b 0x19cbe000 + 385915
    3 ...ultimedia.vpa.SampleTank2.x 0x19d1d848 0x19cbe000 + 391240
    4 ...ultimedia.vpa.SampleTank2.x 0x19dfb4e1 0x19cbe000 + 1299681
    5 ...ultimedia.vpa.SampleTank2.x 0x19d90d8d epiThreadHandler::~epiThreadHandler() + 48149
    6 ...ultimedia.vpa.SampleTank2.x 0x19d91244 epiThreadHandler::~epiThreadHandler() + 49356
    7 ...ultimedia.vpa.SampleTank2.x 0x19d21db9 0x19cbe000 + 409017
    8 ...ultimedia.vpa.SampleTank2.x 0x19cddaaa 0x19cbe000 + 129706
    9 ...ultimedia.vst.SampleTank2.x 0x16be4d66 AGain::processReplacing(float**, float**, int) + 58
    10 com.steinberg.VSTPlugManager 0x227ad670 0x227a6000 + 30320
    11 com.steinberg.cubase 0x00cca02e 0x1000 + 13406254
    12 com.steinberg.cubase 0x00d39c09 0x1000 + 13863945
    13 com.steinberg.cubase 0x00d7cd58 0x1000 + 14138712
    14 com.steinberg.cubase 0x00db2afa 0x1000 + 14359290
    15 com.steinberg.cubase 0x00db2cf8 0x1000 + 14359800
    16 com.steinberg.baios 0x21a4ccf2 bundleEntry + 91062
    17 com.steinberg.baios 0x21a419d9 bundleEntry + 45213
    18 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 23:
    0 libSystem.B.dylib 0x9826f93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9829d445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x982cc028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x910d7965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x910da997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x910d8294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x910d7b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x910d7a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x9829cfbd pthreadstart + 345
    9 libSystem.B.dylib 0x9829ce42 thread_start + 34
    Thread 24:
    0 libSystem.B.dylib 0x9826f93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9829d445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x982cc028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x910d7965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x910da997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x910d8294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x910d7b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x910d7a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x9829cfbd pthreadstart + 345
    9 libSystem.B.dylib 0x9829ce42 thread_start + 34
    Thread 25:
    0 libSystem.B.dylib 0x9826f916 semaphorewaittrap + 10
    1 com.steinberg.baios 0x21a5785b bundleEntry + 134943
    2 com.steinberg.baios 0x21a4ca5e bundleEntry + 90402
    3 com.steinberg.baios 0x21a31ac9 0x21a30000 + 6857
    4 com.steinberg.baios 0x21a31d4a 0x21a30000 + 7498
    5 com.steinberg.CoreAudio2ASIO 0x2134b8d8 GetPluginFactory + 38298
    6 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 22 crashed with X86 Thread State (32-bit):
    eax: 0x287ffa00 ebx: 0x19d8fdbe ecx: 0x00000000 edx: 0x28a3fa00
    edi: 0x19e7d428 esi: 0x00000000 ebp: 0xb0102718 esp: 0xb01026dc
    ss: 0x0000001f efl: 0x00010217 eip: 0x19d8ff31 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x287ffa00
    Binary Images:
    0x1000 - 0x1d1eff7 +com.steinberg.cubase 5.0.1.147 (5.0.1.147) <ACD35690-C79F-FB9C-67C5-6B379D5048E7> /Applications/Cubase 5.app/Contents/MacOS/Cubase 5
    0x2132000 - 0x217efff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x27d5000 - 0x27daff7 libFontStreams.A.dylib ??? (???) <1C41C807-D23B-F6CB-1FE5-6181F66C11B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    0x16a76000 - 0x16a92ff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x16be3000 - 0x16bedfff +com.ikmultimedia.vst.SampleTank2.x 2.5 (2.5) /Library/Audio/Plug-Ins/VST/SampleTank2.x.vst/Contents/MacOS/SampleTank2.x
    0x17f5a000 - 0x180cbff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x180fc000 - 0x18502fef libclh.dylib ??? (???) <3ACD0D90-B1E9-59DA-729E-7E97092F9A24> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/libclh.dyl ib
    0x19cbe000 - 0x19e56feb +com.ikmultimedia.vpa.SampleTank2.x 2.5 (2.5) /Library/Application Support/IK Multimedia/SampleTank 2.x/SampleTank2.x.vpa/Contents/MacOS/SampleTank2.x
    0x1b9b5000 - 0x1b9b5ff7 libmx.A.dylib ??? (???) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x1b9b8000 - 0x1b9beffb +optaudioprimitives.dylib ??? (???) /Applications/Cubase 5.app/Contents/MacOS/optaudioprimitives.dylib
    0x1b9c5000 - 0x1b9c9fff +optaudiochannel.dylib ??? (???) /Applications/Cubase 5.app/Contents/MacOS/optaudiochannel.dylib
    0x1b9cd000 - 0x1b9cefff +optaudiodsp.dylib ??? (???) /Applications/Cubase 5.app/Contents/MacOS/optaudiodsp.dylib
    0x1f9c4000 - 0x1f9e7ff7 +optconvif.dylib ??? (???) /Applications/Cubase 5.app/Contents/MacOS/optconvif.dylib
    0x20299000 - 0x20320fff +com.Syncrosoft.Synsoacc ??? (1.8.4.6) /Library/Application Support/Syncrosoft/pos/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x20b25000 - 0x20b29ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x20b33000 - 0x20b39ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x21340000 - 0x21360fef +com.steinberg.CoreAudio2ASIO 2.0.1.109 (2.0.1.109) <51F77CCD-A01E-925D-5764-09259E441131> /Applications/Cubase 5.app/Contents/Components/coreaudio2asio.bundle/Contents/MacOS/coreaudio2asio
    0x2183b000 - 0x218f3ffb +com.steinberg.omffilter 3.0.0.31 (3.0.0.31) <38EFC4D5-8E7E-6CF8-B8B7-1812042C2F95> /Applications/Cubase 5.app/Contents/Components/omffilter.bundle/Contents/MacOS/omffilter
    0x21a30000 - 0x21a66ff7 +com.steinberg.baios 2.0.0.82 (2.0.0.82) <4163605A-2446-1E63-2018-5E8073953D8A> /Applications/Cubase 5.app/Contents/Components/baios.bundle/Contents/MacOS/baios
    0x21ae6000 - 0x21b01ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x223d0000 - 0x223d3fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x223d8000 - 0x22401fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x22721000 - 0x22786fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x227a6000 - 0x227e9ffb +com.steinberg.VSTPlugManager 2.0.0.87 (2.0.0.87) <EF3EB653-8DE1-2BB7-168B-B71D89DAFD18> /Applications/Cubase 5.app/Contents/Components/VSTPlugManager.bundle/Contents/MacOS/VSTPlugManager
    0x22a1c000 - 0x22a7bfe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/anthonybarratt/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x27800000 - 0x27ca8feb +com.ableton.live-engine 8.0.10 (8.0.10) <52DBAE17-C815-20B0-89FD-4D66984A9D81> /Applications/Live 8.0.10 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x2b600000 - 0x2bbaefef +"com.steinberg.vst3." "Cubase Plug-in Set" 2.0.0.193 (2.0.0.193) <07423370-BF52-F867-E134-407C34E10B91> /Applications/Cubase 5.app/Contents/VST3/Cubase Plug-in Set.vst3/Contents/MacOS/Cubase Plug-in Set
    0x8f611000 - 0x8fa52fe7 com.apple.GeForce8xxxGLDriver 1.6.6 (6.0.6) <205911D0-3CE3-D53C-289B-319A4E4BA153> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x900df000 - 0x902baff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9030c000 - 0x903a8fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9042e000 - 0x90c114b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90c12000 - 0x91047ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x910b7000 - 0x91131fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91132000 - 0x91135ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91136000 - 0x91136ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9121c000 - 0x91220ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91221000 - 0x91252ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x91253000 - 0x912bdfe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x912be000 - 0x912e6ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x91355000 - 0x91363fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x91364000 - 0x9136dff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e3000 - 0x91480fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92421000 - 0x92424fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9254a000 - 0x92565ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92566000 - 0x9259bff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9259c000 - 0x9260bff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9278e000 - 0x929b9ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x929bd000 - 0x92e6bfe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x92ead000 - 0x92f05fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92f06000 - 0x92f2aff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92f2b000 - 0x92fadffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92fae000 - 0x92fefff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92ff0000 - 0x930f4fe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
    0x9324b000 - 0x932f9ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x932fa000 - 0x93407ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93408000 - 0x93408ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93409000 - 0x935c5fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x935c6000 - 0x935d7ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x935d8000 - 0x935f6ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x936c8000 - 0x936e0ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x936e1000 - 0x93761feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93762000 - 0x94040ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94041000 - 0x94097ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x94098000 - 0x94391fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94392000 - 0x943f2fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x943f3000 - 0x9441aff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x944c4000 - 0x944d0ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x944d1000 - 0x944d7ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x94504000 - 0x94555ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94556000 - 0x9455dfff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9455e000 - 0x94628fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94629000 - 0x946bafe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x946bb000 - 0x946bbff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x946c4000 - 0x946c5ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x946c6000 - 0x94734ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x94735000 - 0x94778ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94779000 - 0x9482cfff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9482d000 - 0x9486ffe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94871000 - 0x9492afe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x9492b000 - 0x94962ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94963000 - 0x94973ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x94974000 - 0x949b8ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x949b9000 - 0x94c1bfe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94c1c000 - 0x94c76fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x94c77000 - 0x94c77ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94cb8000 - 0x94ceefff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x94e56000 - 0x94f84fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94f85000 - 0x94fb8ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94fe3000 - 0x94ff5ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94ff6000 - 0x950ecff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x950fb000 - 0x951a2fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x952ab000 - 0x952bfffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x952fa000 - 0x952ffff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95300000 - 0x95303ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95341000 - 0x95347fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95353000 - 0x95367fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x95368000 - 0x953b5feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x953b6000 - 0x957ccff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x957cd000 - 0x9594ffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x95b51000 - 0x95b5bff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95b5c000 - 0x95bacff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95bad000 - 0x95bb7fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95bc0000 - 0x95c39ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x964a7000 - 0x964cdfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x96503000 - 0x9662ffeb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96630000 - 0x966c8fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96710000 - 0x96713ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96750000 - 0x968eefeb com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x968ef000 - 0x968f6ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9692f000 - 0x96939ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96a0e000 - 0x96a0eff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96a47000 - 0x96a47ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96a48000 - 0x96a82ffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96aa5000 - 0x96ac5fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96ac6000 - 0x96b16fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96b17000 - 0x96b17ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96cda000 - 0x96d0aff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96d21000 - 0x96dcefe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x96ec1000 - 0x96ec1ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96eca000 - 0x96f09ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96f0a000 - 0x96f47ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96f48000 - 0x96f68fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x96f69000 - 0x96f6aff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96f6b000 - 0x96fa0ff7 libcups.2.dylib ??? (???) <AFDC4D3C-0FF4-D459-B26C-4BA1093F9142> /usr/lib/libcups.2.dylib
    0x96fc3000 - 0x96fe2fe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x96fe3000 - 0x96ffffe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97000000 - 0x97073fff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97074000 - 0x97175fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x97176000 - 0x97181ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x97182000 - 0x972f9fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x972fa000 - 0x97354ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97355000 - 0x97399fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9739a000 - 0x9757cfff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x97582000 - 0x978e9ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x978ea000 - 0x979ecfef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x979ed000 - 0x97c5dffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97c63000 - 0x97d34fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x97d35000 - 0x97d35ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97d36000 - 0x97d60ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x97d61000 - 0x97d63ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97d64000 - 0x97d86fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97d87000 - 0x97ec6fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97ec7000 - 0x97ed7ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x97ed8000 - 0x97edcff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97fe6000 - 0x97fe8ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97ff7000 - 0x9809fffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x980a0000 - 0x9817dff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9817e000 - 0x981e2ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x981e3000 - 0x9822cfe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9826f000 - 0x98413feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x98414000 - 0x98429fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9842a000 - 0x9842bff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9842c000 - 0x984dbff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x984dc000 - 0x987fffef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98800000 - 0x9880dff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9880e000 - 0x9884afff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9884b000 - 0x98891ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x988ab000 - 0x98c09fff com.apple.RawCamera.bundle 3.0.1 (523) <BB20C4C8-ACEE-7B40-C1A0-4BF4EC6B8796> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x98c0a000 - 0x98c10ff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98c5a000 - 0x98f79fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9902a000 - 0x99068ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x99069000 - 0x99073ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x994dc000 - 0x994e9ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x994ea000 - 0x9955aff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9955b000 - 0x99635ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x99636000 - 0x9963aff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: eLicenser, 0x0819, 0x0101, 0x06400000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8217, 0x06110000

    Anthony Barratt wrote:
    But I'm freaking out a bit as these unexpected crashes keep occurring. This evening it happened when I was using Cubase 5.
    Process: Cubase 5 [35447]
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000287ffa00
    Crashed Thread: 22
    Thread 22 Crashed:
    0 ...ultimedia.vpa.SampleTank2.x 0x19d8ff31 epiThreadHandler::~epiThreadHandler() + 44473
    1 ...ultimedia.vpa.SampleTank2.x 0x19d18ff5 0x19cbe000 + 372725
    2 ...ultimedia.vpa.SampleTank2.x 0x19d1c37b 0x19cbe000 + 385915
    3 ...ultimedia.vpa.SampleTank2.x 0x19d1d848 0x19cbe000 + 391240
    4 ...ultimedia.vpa.SampleTank2.x 0x19dfb4e1 0x19cbe000 + 1299681
    5 ...ultimedia.vpa.SampleTank2.x 0x19d90d8d epiThreadHandler::~epiThreadHandler() + 48149
    6 ...ultimedia.vpa.SampleTank2.x 0x19d91244 epiThreadHandler::~epiThreadHandler() + 49356
    7 ...ultimedia.vpa.SampleTank2.x 0x19d21db9 0x19cbe000 + 409017
    8 ...ultimedia.vpa.SampleTank2.x 0x19cddaaa 0x19cbe000 + 129706
    9 ...ultimedia.vst.SampleTank2.x 0x16be4d66 AGain::processReplacing(float**, float**, int) + 58
    10 com.steinberg.VSTPlugManager 0x227ad670 0x227a6000 + 30320
    11 com.steinberg.cubase 0x00cca02e 0x1000 + 13406254
    12 com.steinberg.cubase 0x00d39c09 0x1000 + 13863945
    13 com.steinberg.cubase 0x00d7cd58 0x1000 + 14138712
    14 com.steinberg.cubase 0x00db2afa 0x1000 + 14359290
    15 com.steinberg.cubase 0x00db2cf8 0x1000 + 14359800
    16 com.steinberg.baios 0x21a4ccf2 bundleEntry + 91062
    17 com.steinberg.baios 0x21a419d9 bundleEntry + 45213
    18 libSystem.B.dylib 0x98365e52 pthreadbody + 27
    Thread 22 crashed with X86 Thread State (32-bit):
    eax: 0x287ffa00 ebx: 0x19d8fdbe ecx: 0x00000000 edx: 0x28a3fa00
    edi: 0x19e7d428 esi: 0x00000000 ebp: 0xb0102718 esp: 0xb01026dc
    ss: 0x0000001f efl: 0x00010217 eip: 0x19d8ff31 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x287ffa00
    Binary Images:
    0x1000 - 0x1d1eff7 +com.steinberg.cubase 5.0.1.147 (5.0.1.147) <ACD35690-C79F-FB9C-67C5-6B379D5048E7> /Applications/Cubase 5.app/Contents/MacOS/Cubase 5
    0x16be3000 - 0x16bedfff +com.ikmultimedia.vst.SampleTank2.x 2.5 (2.5) /Library/Audio/Plug-Ins/VST/SampleTank2.x.vst/Contents/MacOS/SampleTank2.x
    I don't claim to be the world's best crash dump analyzer, but it definitely looks like the crash occurred in Cubase and/or SampleTank 2. It looks like you're using the latest version of each of those. Have you contacted the vendor(s)?
    Correction: It looks like QuickTimeKirk has a good idea about the Cubase version.

  • Need to recover data from Bootcamp partition

    Hi, all,
    I recently sent my Macbook Pro in for repairs after a crash (Windows partition not recognized, after working well for a year), and they replaced the logic board and HD, the former of which was dead and the latter of which "wasn't running very well". I got the HD back, and have been trying to get data off it; the problem is, most of my data was stored on my Windows bootcamp partition, which I can now see - but not access.
    This is the info I got off it, since Disk Utility still recognizes it.
    Mount Point : /Volumes/BOOTCAMP
    Capacity : 116.7 GB (125,294,346,240 Bytes)
    Format : Windows NT File System (NTFS)
    Available : 26.6 GB (28,521,467,904 Bytes)
    Used : 90.1 GB (96,772,874,240 Bytes)
    Number of Files : 138,674
    Owners Enabled : No
    Number of Folders : 0
    I feel as if there should be a way to recover data from the drive, since it obviously still...exists and is recognized. But using "verify" in Disk Utility returns a "verify volume failed: invalid request", and I can't otherwise see any files, since there's apparently 0 folders.
    Does anyone have any recommendations for data recovery software that works in Mac? I can't just run Windows from an external drive because the HD with the Bootcamp on it is Mac-formatted.
    Many thanks.

    Probably the best option for attempting to recover files is attaching the hdd to a> USB Adapter and plug it into a usb port an another machine. If the hdd has not failed it should show up as a drive and can be browsed on the other machine to copy files over.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Crashed hdd data recovery

    Running 10.8.5, I dropped MacBook Pro 2012 and HDD never rebooted again.  Replaced with SSD and MacBook Pro works fine.  Tried crashed HDD via external USB but neither Disk Utility nor Data Rescue 3 recognize crashed HDD.  Have also tried leaving crashed HDD installed and booting from remote HDD or from Data Rescue in DVD drive, in both cases where damaged HDD is left installed and an alternative boot method is used, I get from the all gray screen to the Apple with a progress bar on bottom.  Progress bar hits about 15% and then screen goes black (but unit does not shut down).  Damaged HDD makes no noises. 
    My question is:  what's the best way to recover data off of the crashed HDD if neither Disk Utility nor Data Rescue 3 recognize it?  I have some accounting docs and home movies/photos that are lost and don't want to spend thousands to recover.  I've heard of Linux (Ubuntu) programs to read and transfer directories or is this a Genuis Bar or Disc Savers type problem?  Thanks!

    many HDD companies have data recovery services such as:
    http://www.seagate.com/services-software/data-recovery-services/
    You can read more here:
    http://lifehacker.com/5982339/diy-data-recovery-tricks-for-when-your-hard-drive- goes-belly-up

Maybe you are looking for

  • PSE Organizer 9 Unstable adding captions

    I have Adobe Photoshop Elements & Premiere Elements 9 and since installing it approximately 12 months ago  I have had instability problems with the Elements 9 Organizer, particularly whilst I am attempting to add captions. A "Change Caption" drop dow

  • No delivery expediter for PO item without material master

    Hello gurus, when I create a PO with an item without material master (just user-defined text), my system does not create a delivery expediter in ME91F, although the delivery is overdue. When I use a material master in the item, the expediter is creat

  • HT201210 i just got a brand new iphone 4s and it will not let me update it to 6.0... why?

    Its my first Iphone, I love it, but this is frustrating me, i've had to download the software 5 times... has taken a total of 5 hours to dl it.  now that i have it in itunes, it won't let me install 6.0.  can i get a little help plz?

  • Randomly disappearing DVD artwork in iTunes

    Hello, Hopefully someone can help me... I was lucky to receive an Apple TV for Christmas which is working really great. I have been ripping my DVD's on a daily basis using Handbrake to great effect, playing very well through my Apple TV. However, my

  • Ipad 2 just shuts down

    what ever i seem to do on my ipad e.g playing games browsing safari music etc my ipad 2 will shut down and the apple logo will apear then it will reboot itself. somtimes when its reebooting the apple logo apears at the start up screen and i can see c