Mistake with Bootcamp can anyone help?

Hi,
I installed a Bootcamp Partition on my MacBook weeks ago and was going to get around to putting windows on it again.. (did it a few times) But today i wanted to erase the partition and instead of using bootcamp (like i should have i realise that now... :-() I used Disk Utility to "Erase" it, and i formatted it in "mac osx extended (journaled)" and now when i go into bootcamp to restore the mac to a single partition it says "The startup disk cannot be partitioned or restored to a single partition." I no i missed up but what can i do to fix this?
There is now two drives in my finder window, one that is "Macintosh HD" and the other is "Windows" but i can't delete that windows one to make one single drive from the two.
What do i do to restore this to a single drive because the windows drive is not showing its GB's on my mac and i really need that space to use...

it might be the right direction to you but i cant do that! i cant buy dvds or a hard drive i have no job and can not buy these things, just cos you can doesn't mean anyone else can. i bought this computer when i had a job and had money! and as for windows, i got it free, i didn't buy it! and the last time i checked it was free to run windows?! i don't care about buying security updates and all that i just want to run windows on my mac!
Running a computer is free, what the **** are you talking about? mac has free updates, and i have all the software i need on the installation disks, i got windows free, i don't pay for internet or electricity cos i use my dads where in there is costs?!?!?

Similar Messages

  • My iMac 24 can no longer be paired with the keyboard; it doesn't recognise any keyboard at boot up, even the one it is paired with. Can anyone help, please?

    My iMac 24 can no longer be paired with the keyboard; it doesn't recognise any keyboard at boot up, even the one it is paired with. Can anyone help, please?
    Thank. Simon

    Brian - The batteries are fine and there has only every been one keyboard paired with it. We have tried my MacPro keyboard as well, and it will not even recognise that there is a discoverable keyboard nearby.
    Thanks, Simon

  • Why does my webcam not work with Skype - can anyone help?

    Why does my webcam on Mac Book air not work with Skype - can anyone help?

    Did you set the Skype Audio/Video preferences to use the camera?

  • TS3510 Can't receive emails or messages with FaceTime can anyone help please thanks

    Can't receive emails or messages with FaceTime can anyone help please thanks

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
     Cheers, Tom

  • HT201210 once again my iphone not working. i have a usb sign pointing to an itune icon on the screen. this is been on for over 24 hours. tried to restore but keeps coming up with era can anyone help please

    once again my iphone not working. i have a usb sign pointing to an itune icon on the screen. this is been on for over 24 hours. tried to restore but keeps coming up with era can anyone help please

    What is the error that is occurring?  We are not mind readers.

  • I have a new iphone 5s with ios 7 , I cannot pair with the bluetooth in my BMW with idrive , can anyone help . My old iphone 4 worked fine , however this was initially paired with older software , but still worked after the upgrade

    I have a new iphone 5s with ios 7 , I cannot pair with the bluetooth in my BMW with idrive , can anyone help . My old iphone 4 worked fine , however this was initially paired with older software , but still worked after the upgrade . I have tried & tried to pair again & that wont work either , suggesting it is the phones software . Can anyone help please

    Hi there soulboycraney,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting Bluetooth connections
    http://support.apple.com/kb/TS4562
    iOS: Troubleshooting car stereo connections
    http://support.apple.com/kb/ts3581
    -Griff W. 

  • HT1212 hi my daughter has disabled her iphone 4 and its never been synced with itunes can anyone help please

    hi my daughter has disabled her iphone 4 and its never been synced with itunes can anyone help please

    iOS: Forgotten passcode or device disabled after entering wrong passcode - http://support.apple.com/kb/ht1212 - Learn what to do if you have forgotten or can't remember your passcode, or if your device displays a message saying it is disabled.

  • Cant use continuity on iPhone 6 with iMac, can anyone help?

    Cant use continuity on iPhone 6 with iMac, can anyone help?
    Running iso8 on iPhone 6 space grey 64gb
    Running OS X Yosemite on iMac 2010 -12 gb i3 1TB
    handoff has been switched on off with restart, but doesn't show on iMac with incoming call
    any ideas?

    HAve you checked its its a feature supported by older macs ?
    if so then it maybe a beta softtware issiue

  • Events placed on iphone are not synchronising with outlook, can anyone help me?

    I have an iphone 3gs which i am running with icloud.  outlook entries seem to work fine but not the other way.  Can anyone help?

    Check this:
    https://discussions.apple.com/thread/3404857?start=0&tstart=0

  • Having compiler issues with Array, can anyone help please?

    Using your Invoice class created in lab02, write a client program that allows the user to input three Invoice objects into an array of Invoice objects. After you have inputted all of the invoices, print a heading and then output all of the array elements (Invoice objects) by calling the method from your Invoice class that displays all of the data members on a single line using uniform field widths to insure that all Invoice objects will line up in column format (created in Lab04). At the end of the loop, display the calculated total retail value of all products entered in the proper currency format.
    Example of possible program execution:
    Part Number : WIDGET
    Part Description : A fictitious product
    Quantity : 100
    Price          : 19.95
    (etc.)
    Example of possible output
    Part Number          Part Description          Quantity          Price     Amount
    WIDGET          A fictitious product     100          19.95     199.95
    Hammer               9 pounds          10          5.00     50.00
    (etc.)
    Total Retail Value:                                   249.95
    This is what I have so far at the bottom, can anyone tell me what I'm doin wrong please
    //Invoice Lab 6
    //Application to test class Invoice with arrays
    public class InvoiceTest
    public static void main( String args[] )
    Invoice invoice1 = new Invoice( "1234", "Hammer", 2, 14.95 );
    Invoice array [] = new Invoice [2];
    array [0] = new Invoice ("1234", "Hammer", 2, 14.95);
    array [1] = new Invoice ("5678", "PaintBrush", -5, -9.99);
    double total = 0.0;
    System.out.println("Part Number                    Description               Quantity          Price               Amount");
    System.out.println("----------------------------------------------------------------------------------");
    for (int i=0; <=2; i++)
    total+=array.getPaymentAmount();
         system.out.println("The Total retail value is: %.2f\n")
    // display invoice1
    System.out.println( "Original invoice information" );
    System.out.printf( "Part number: %s\n", invoice1.getPartNumber() );
    System.out.printf( "Description: %s\n",
    invoice1.getPartDescription() );
    System.out.printf( "Quantity: %d\n", invoice1.getQuantity() );
    System.out.printf( "Price: %.2f\n", invoice1.getPricePerItem() );
    System.out.printf( "Invoice amount: %.2f\n",
    invoice1.getInvoiceAmount() );
    // change invoice1's data
    invoice1.setPartNumber( "001234" );
    invoice1.setPartDescription( "Blue Hammer" );
    invoice1.setQuantity( 3 );
    invoice1.setPricePerItem( 19.49 );
    // display invoice1 with new data
    System.out.println( "\nUpdated invoice information" );
    System.out.printf( "Part number: %s\n", invoice1.getPartNumber() );
    System.out.printf( "Description: %s\n",
    invoice1.getPartDescription() );
    System.out.printf( "Quantity: %d\n", invoice1.getQuantity() );
    System.out.printf( "Price: %.2f\n", invoice1.getPricePerItem() );
    System.out.printf( "Invoice amount: %.2f\n",
    invoice1.getInvoiceAmount() );
    Invoice invoice2 = new Invoice( "5678", "PaintBrush", -5, -9.99 );
    // display invoice2
    System.out.println( "\nOriginal invoice information" );
    System.out.printf( "Part number: %s\n", invoice2.getPartNumber() );
    System.out.printf( "Description: %s\n",
    invoice2.getPartDescription() );
    System.out.printf( "Quantity: %d\n", invoice2.getQuantity() );
    System.out.printf( "Price: %.2f\n", invoice2.getPricePerItem() );
    System.out.printf( "Invoice amount: %.2f\n",
    invoice2.getInvoiceAmount() );
    // change invoice2's data
    invoice2.setQuantity( 3 );
    invoice2.setPricePerItem( 9.49 );
    // display invoice2 with new data
    System.out.println( "\nUpdated invoice information" );
    System.out.printf( "Part number: %s\n", invoice2.getPartNumber() );
    System.out.printf( "Description: %s\n",
    invoice2.getPartDescription() );
    System.out.printf( "Quantity: %d\n", invoice2.getQuantity() );
    System.out.printf( "Price: %.2f\n", invoice2.getPricePerItem() );
    System.out.printf( "Invoice amount: %.2f\n",
    invoice2.getInvoiceAmount() );
    } // end main
    } // end class InvoiceTest

    Change this (check my comments):
    for (int i=0; <=2; i++) // what is <=2??  check the fixed version
    total+=array.getPaymentAmount(); //two things 1) this needs to be inside the for-loop 2) you need to tell the array which index to look at
    system.out.println("The Total retail value is: %.2f\n") //no need for \n because println does it automagically
    }to this:
    for(int i=0; i<array.length; i++) {
        total += array.getPaymentAmount();
    System.out.println("The total retail value is: " + total); //if you need another blank line like above be my guest
    Honestly, I didn't look past this part so fix this and post again if something is still broken.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I think I have a problem with Mavericks: can anyone help,please?

    A couple of days ago I installed Mavericks on top of my existing Mountain Lion OS. Not before I backed up the ML version with Time Machine, though.... :-)
    Initially I thought everthing was fine, but then started to notice a few things that bothered me, which have not gone away. In fact, I think this install is now a potential problem. Unlike many other people, elsewhere on this forum, I have not noticed the calamitous slowing down and general unusability of Mavericks. I'm using a prety new i7 iMac ( the new flat one) with 32 GB of RAM.Everytihng worked great with Mountain Lion. However, The following anomalies have cropped up: Mail is taking over 30" to send a simple email. In ML it was almost instantaneous. I feel that Mail is not performing as it did in ML, and the same goes for Safari. It "feels" odd and slow and can take an age to load up pages. In fact one particular page would not load properly at all, but worked fine in Firefox. In the end got it to work in Sfari, but ithis type of behaviour doesn't instill confidence. Things got wierder...
    An update to iMovie got " stuck" in the dowload process,and was perpetually downloading in Launchpad. It kept oscillating from approx 61 MB to aprrox 84 MB of a 1.94 GB file. Then I did a disk utiltiy test of my system drive and it suddenly stated that the drive need repairing. I booted up in Recovery Mode and tested the drive, which came back all clear! I booted up normally again and now the disk utility won't even complete a full diagnosis of the drive!It will diagnos all my other drives fine though.... :-s  It keeps getting stuck on: Checking Volume Bitmap, and won't go any further. So, I did what some other person did on another thread, which seemed to clear up his problems; namely: simply reinstalled Mavericks  from Recovery mode. This did not improve anything for me. The same issues remain. In fact as I type this, I notice that I'm using nearly 23 GB of my 32 GB of RAM, and all I have open is Safari, Disk Utility and Mail ! To quote Hans Solo: " I've got a b-a-a-a-d feeling about this..."
    So, this is my long-winded way of asking: what shall I do? I would like to boot in Recovery Mode and reinstall my back up from an external drive. Does anyone have any advice about this,please? If I restore from my backup, will I actually get the ML OS back on the computer, or will  I be stuck with Mavericks trying to impose itself ,as some people reported? I do want to use Mavericks, but not in the condition it's in right now. Also,  really don't want to perfom a clean install and migrate everything over from the Time Machine back up....
    Thanks for any advice.

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • Burning a CD with folders - CAN ANYONE HELP???

    I recently purchased a new vehicle with CD option of selecting folders. Dealer said I could burn MP-3 folders on a CD and select it (e.g. burn albums of music into a folder). I want to make each folder a different album so I can select a folder and play it on my CD MP-3 vehicle player. How do I make folders in I-tunes on a playlist. I can only burn a playlist to a CD and I cannot get folders into the playlist, or even playlists under a playlist. I want each album in a folder on a playlist. If anyone can help me I'd so appreciate it. THANKS!!!

    This article tells you how to do that:
    iTunes: How to set the play order of songs on an MP3 CD
    Hope this helps.
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.4.6)   Several ext. HD (backup and data)

  • Repeated crashes with iMovie, can anyone help plz ?

    Hello,
    I was used to have many crashes with Imovie, but I just relaunched or restarted it and I was fine, sometimes deleted the preferences file or tried to delete old movies and projects to free some space, but now, after opening Imovie, it just crashes right away.
    I don't know what to do anymore, if anyone can help ?
    Thanks.
    Process:         iMovie [370]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.9 (1795)
    Build Info:      iMovieApp-1795000000000000~2
    App Item ID:     408981434
    App External ID: 15340117
    Code Type:       X86 (Native)
    Parent Process:  launchd [138]
    User ID:         501
    Date/Time:       2013-09-02 19:12:36.708 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Sleep/Wake UUID: 7013A4F1-7B62-4312-8E68-373BD1259911
    Interval Since Last Report:          10123 sec
    Crashes Since Last Report:           12
    Per-App Interval Since Last Report:  3973 sec
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      CED87758-6DA6-51A3-9B5D-2D3F4870CED2
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iMovie.app/Contents/MacOS/iMovie
        VM_ALLOCATE            0000000000001000-000000000005f000 [  376K] ---/--- SM=NUL 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x9841aa57 memmove$VARIANT$sse42 + 154
    1   libobjc.A.dylib                         0x94e04e56 objc_memmove_collectable + 75
    2   com.apple.CoreFoundation                0x94c3116c -[__NSArrayM insertObject:atIndex:] + 540
    3   com.apple.CoreFoundation                0x94c30f40 -[__NSArrayM addObject:] + 64
    4   com.apple.iMovieApp                     0x0035a0f8 0x5f000 + 3125496
    5   com.apple.iMovieApp                     0x0035a785 0x5f000 + 3127173
    6   com.apple.iMovieApp                     0x0021f2d0 0x5f000 + 1835728
    7   com.apple.iMovieApp                     0x0010cf16 0x5f000 + 712470
    8   com.apple.iMovieApp                     0x0010cfe0 0x5f000 + 712672
    9   com.apple.iMovieApp                     0x0012b3ea 0x5f000 + 836586
    10  com.apple.iMovieApp                     0x0011c36c 0x5f000 + 775020
    11  com.apple.iMovieApp                     0x00112b5c 0x5f000 + 736092
    12  com.apple.iMovieApp                     0x0013142e 0x5f000 + 861230
    13  com.apple.iMovieApp                     0x0011ce7f 0x5f000 + 777855
    14  com.apple.iMovieApp                     0x00112da2 0x5f000 + 736674
    15  com.apple.iMovieApp                     0x0012c890 0x5f000 + 841872
    16  com.apple.iMovieApp                     0x00124106 0x5f000 + 807174
    17  com.apple.iMovieApp                     0x0016611a 0x5f000 + 1077530
    18  com.apple.iMovieApp                     0x0017badc 0x5f000 + 1166044
    19  com.apple.Foundation                    0x930e2e52 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49
    20  com.apple.CoreFoundation                0x94ce7851 ___CFXNotificationPost_block_invoke_0 + 257
    21  com.apple.CoreFoundation                0x94c32e8a _CFXNotificationPost + 2794
    22  com.apple.Foundation                    0x930cb988 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    23  com.apple.Foundation                    0x930db727 -[NSNotificationCenter postNotificationName:object:] + 55
    24  com.apple.AppKit                        0x96ed7c35 -[NSTableView _sendSelectionChangedNotificationForRows:columns:] + 168
    25  com.apple.AppKit                        0x96ebd5cb -[NSTableView _enableSelectionPostingAndPost] + 402
    26  com.apple.AppKit                        0x972c9cec -[NSTableView mouseDown:] + 5098
    27  com.apple.AppKit                        0x97201a84 -[NSOutlineView mouseDown:] + 707
    28  com.apple.iMovieApp                     0x0025c363 0x5f000 + 2085731
    29  com.apple.AppKit                        0x96e4f921 -[NSWindow sendEvent:] + 6968
    30  com.apple.iMovieApp                     0x001d6e84 0x5f000 + 1539716
    31  com.apple.AppKit                        0x96e4a90f -[NSApplication sendEvent:] + 4278
    32  com.apple.iMovieApp                     0x000b0d80 0x5f000 + 335232
    33  com.apple.AppKit                        0x96d6462c -[NSApplication run] + 951
    34  com.apple.AppKit                        0x96d075f6 NSApplicationMain + 1053
    35  com.apple.iMovieApp                     0x0006112a 0x5f000 + 8490
    36  com.apple.iMovieApp                     0x00060c95 0x5f000 + 7317
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x922b9c02 __select_nocancel + 10
    1   libdispatch.dylib                       0x99e14a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x99e147a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x922ba0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x984320ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98431e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98419d2a start_wqthread + 30
    Thread 17:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x922b9be6 __select + 10
    1   com.apple.CoreFoundation                0x94c65650 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98434572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x93d0d6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x93d0d184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x93d0d40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x906023bc 0x9000c000 + 6251452
    7   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98434572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x93d0d6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x93d0d184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x93d0d40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x93cae7da AIOFileThread(void*) + 892
    7   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 20:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x922b77d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x922b6cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio               0x9174beba HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio               0x9174652e HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio               0x91744bcd HALC_ProxyIOContext::IOWorkLoop() + 1287
    5   com.apple.audio.CoreAudio               0x91744617 HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio               0x9174eb61 ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio               0x9174453d HALB_IOThread::Entry(void*) + 71
    8   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 21:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 22:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 23:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 24:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 25:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 26:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 27:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x922b98e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x984342e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x984c1af0 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907194ae 0x9000c000 + 7394478
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x922b780e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x90abc746 0x9000c000 + 11208518
    2   com.apple.QuickTimeComponents.component          0x90670d7e 0x9000c000 + 6704510
    3   com.apple.QuickTimeComponents.component          0x90abc4d8 0x9000c000 + 11207896
    4   libsystem_c.dylib                       0x9842f5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x98419d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x2a6b2110  ebx: 0x00000050  ecx: 0x00000000  edx: 0xfffffec0
      edi: 0x00000140  esi: 0x2a6b2250  ebp: 0xbffa0c28  esp: 0xbffa0c20
       ss: 0x00000023  efl: 0x00010246  eip: 0x9841aa57   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
       0x5f000 -   0x4e6fef  com.apple.iMovieApp (9.0.9 - 1795) <74D6B017-973D-3169-BC5F-13E296703D9C> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5aa000 -   0x5c0ff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <B06AF65E-3188-3361-BD75-3EE9B2DF4A68> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x5ce000 -   0x5cfff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x5d6000 -   0x604fe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x63e000 -   0x6befff  com.apple.iLifeMediaBrowser (2.7.4 - 546.7) <130581CE-0699-3524-B487-726353FDDF96> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x705000 -   0x824ffb  com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x8d6000 -   0x8d7ff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x8df000 -   0x8e0fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x8e4000 -   0x909ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x911000 -   0x945fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x94c000 -   0xab3fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xaba000 -   0xcbdfeb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd12000 -   0xd93fe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x10cd000 -  0x128afeb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x12c1000 -  0x1f56ff3  com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x39ae000 -  0x39bbff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3a6d000 -  0x3a6effe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1170) <ABD37289-2DF8-3F89-A208-C11BE80EA69D> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3a73000 -  0x3a76ffe  com.apple.DirectoryServicesSource (2.1 - 1170) <69A0CC43-41DB-3D3F-9D97-8D4741C29823> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x5263000 -  0x52b4ff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <A8099206-0C6D-3114-A908-F8992CA5CA88> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x52d1000 -  0x5333fff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x536e000 -  0x537bffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x5385000 -  0x5394ffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x539f000 -  0x53a6ff7  com.apple.AOSNotification (1.7.0 - 636.3) <520524D9-B14F-3DED-9281-8FAFEFFBA863> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x53b0000 -  0x540cffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x5439000 -  0x546bff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x547d000 -  0x5486fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x8960000 -  0x8abcfff  com.apple.iLMBAperture31Plugin (2.7.4 - 339.7) <8098B17B-FE5F-3485-B60F-B09621FB2A3A> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x8b04000 -  0x8b0bff8  com.apple.iLMBAperturePlugin (2.7.4 - 339.7) <97CE7529-BC10-34C0-BD94-8BC752EBDB15> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x8b12000 -  0x8cc4ffb  com.apple.iLMBAperturePlugin2012 (2.7.4 - 339.7) <AFE0093F-6D74-3CB0-B6C0-637CAB5B39E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x8d1f000 -  0x8d1ffff  com.apple.iLMBAppDefPlugin (2.7.4 - 339.7) <F25B6DFA-1FC6-3399-9586-2892C228DAE3> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x8d24000 -  0x8d2dfff  com.apple.iLMBFinalCutPlugin (2.7.4 - 339.7) <F6EB64C3-AA4B-313E-A93D-F251CF90E688> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x8d34000 -  0x8d35fff  com.apple.iLMBFolderPlugin (2.7.4 - 339.7) <912A684A-EB51-3F6A-A0B7-DC0974642E18> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x8d3a000 -  0x8d3dfff  com.apple.iLMBGarageBandPlugin (2.7.4 - 339.7) <A57AEEBB-351B-3DC8-A785-6BAADB43F977> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x8d43000 -  0x8d4fffb  com.apple.iLMBiMoviePlugin (2.7.4 - 339.7) <E1D19F5F-5727-3431-83B7-73414D88E0EA> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x8d58000 -  0x8d6bfff  com.apple.iLMBiPhoto8Plugin (2.7.4 - 339.7) <D2D1B771-2982-3ACA-9F48-C7128162F68A> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x8d73000 -  0x8ed2fff  com.apple.iLMBiPhoto9Plugin (2.7.4 - 339.7) <D21A9767-1167-3AD9-8CD4-9F7C36EEECE6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x8f1b000 -  0x8f23ffb  com.apple.iLMBiPhotoPlugin (2.7.4 - 339.7) <8CA05801-85F5-3D63-8407-932E5826C28B> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x8f2a000 -  0x90ddff3  com.apple.iLMBiPhotoPlugin2012 (2.7.4 - 339.7) <7D471EFB-B3F0-3265-B256-AA92CF2794F4> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9139000 -  0x9141ffb  com.apple.iLMBiTunesPlugin (2.7.4 - 339.7) <63A219A2-0872-3F35-8534-6F1D43792974> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9148000 -  0x91f7fff  com.apple.iTunesAccess (11.0.4 - 11.0.4) <7B04A0C5-9076-3D97-8CDF-D17157E90757> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9222000 -  0x9225fff  com.apple.iLMBLogicPlugin (2.7.4 - 339.7) <231807C9-C40E-3DFE-ABE9-E3267B587553> /Library/Application Support/iLifeMediaBrowser/*/iLMBLogicPlugin
    0x922b000 -  0x922cfff  com.apple.iLMBMoviesFolderPlugin (2.7.4 - 339.7) <04348BE1-770E-3D38-B9CC-75A34204F0FA> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x9231000 -  0x9233ffb  com.apple.iLMBPhotoBooth2Plugin (2.7.4 - 339.7) <52D54C62-EF85-300E-AC12-B6AF5BF0E405> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x9239000 -  0x923affd  com.apple.iLMBPhotoBoothPlugin (2.7.4 - 339.7) <2730DEE0-B4A6-39E0-8D6B-5E63B40C8419> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x933f000 -  0x94d3ffa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x950a000 -  0x968bfff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96bd000 -  0x96c8fff  libGPUSupport.dylib (8.9.2) <01E0F852-CBB7-3EE7-A2CD-79CB4A3EF2B5> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x96cf000 -  0x9b1cff3  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.12.47 - 8.1.2) <5B46A344-20F2-3C75-9D42-D13092E6BB81> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
    0x9c6f000 -  0x9c73fff  com.apple.IOAccelerator (74.5.1 - 74.5.1) <CB7CDE62-DAEC-35AF-8ADB-3271AA2DF921> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x9c7a000 -  0x9c84fff  libGPUSupportMercury.dylib (8.9.2) <302EC167-66A3-3E12-8416-F03F50CA96D9> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0xa08e000 -  0xa0b9ff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0xa0c2000 -  0xa0caffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0xa17e000 -  0xa23cff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xbaee000 -  0xbaf3fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <903097A8-3922-3BF8-8B82-8BD1D831F6E7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xe646000 -  0xe646ffb +cl_kernels (???) <93E9BE31-1EE6-4B18-B343-86E94A4162C1> cl_kernels
    0xe64b000 -  0xe64bff5 +cl_kernels (???) <C3025269-8ED6-486B-A402-F699B2231E4D> cl_kernels
    0xe64f000 -  0xe64fffb +cl_kernels (???) <D461B825-AB33-4025-97C6-B4D3D4EEAA7D> cl_kernels
    0xe658000 -  0xe658ff0 +cl_kernels (???) <1F0D3C58-F963-4D6D-9050-6F32148C270C> cl_kernels
    0xe65a000 -  0xe6ecfff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xe701000 -  0xe702ff5 +cl_kernels (???) <1501C5F8-57F9-42CB-83FA-3C7C3C927098> cl_kernels
    0xe704000 -  0xe704ff0 +cl_kernels (???) <1F0D3C58-F963-4D6D-9050-6F32148C270C> cl_kernels
    0xe708000 -  0xe708ff6 +cl_kernels (???) <53F65028-5732-4573-B0AA-02AD9F86CF3B> cl_kernels
    0xe71c000 -  0xe71cffb +cl_kernels (???) <DE537613-A27C-4199-8563-1F4A472A91E1> cl_kernels
    0xeb17000 -  0xed1cfff  com.apple.audio.codecs.Components (3.1 - 3.1) <BB0D3850-7B21-3138-938B-E5E63020249D> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x105b6000 - 0x105dcffb  com.apple.QuartzComposer.ExtraPatches (4.1 - 284) <BC445DFA-0C21-332E-AD55-31224AF4E57A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x105ed000 - 0x10707ffb  com.apple.avfoundation (2.0 - 361.40) <BFC9959C-7F41-3D1B-B108-F4245E4D9311> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x107a4000 - 0x107ecffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <7AAE4076-36FA-37C1-9EAE-344F1C8F14D9> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x10811000 - 0x108faffb  com.apple.PubSub (1.0.5 - 65.32) <8DF8E1CB-D489-3EC9-8FCB-0AF73C6A233D> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x10953000 - 0x1097eff7  com.apple.audio.OpenAL (1.6 - 1.6) <B10D8F86-253D-37C8-BC11-64DEEF81AC45> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x1098e000 - 0x109a4ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x10af7000 - 0x10b22ff7  com.apple.iMovieQCPlugIns (1.1 - 1795) <83E8D414-6498-3F82-B262-D75B8CA05B5D> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x10b32000 - 0x10b73fff  com.apple.glut (3.5.2 - GLUT-3.5.2) <0A9E8D36-8EA6-328D-AEF9-E7A7B1A830D4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x10eb5000 - 0x10ed6fff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x10ee6000 - 0x10f4efeb  com.apple.AppleProResDecoder (3.0.2 - 5718) <4442CBCE-7163-3E6A-8511-A52E9F6D8AFC> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x10f7f000 - 0x10f86ffc  com.apple.AppleGVAHW.component (1.1 - 1) <5DB91F15-3FD3-308F-8FC5-662562F3EA78> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x10f8d000 - 0x10fc7fff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.31) <0761249B-19FD-39DA-819E-C827BE16B0B8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x10fd3000 - 0x10fd7ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x10fdc000 - 0x10ff4ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x11800000 - 0x11849fff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <E1B4C063-BF0D-3021-AFB0-4575C986140C> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1190d000 - 0x11a58fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6) <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x22bf7000 - 0x22fbcffb  com.apple.SceneKit (3.3 - 155.6) <CAD9C7C0-60E9-3B0E-8C10-AD78A5C2FDF2> /System/Library/Frameworks/SceneKit.framework/SceneKit
    0x70000000 - 0x7015eff7  com.apple.audio.units.Components (1.9 - 1.9) <F2B2712A-3203-3875-B1FF-768E92AE0D42> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e2fa000 - 0x8ec49ffb  com.apple.GeForceGLDriver (8.12.47 - 8.1.2) <ED7895B5-BF75-3BC8-A956-8E423FD02395> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe5e000 - 0x8fe90e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9000afff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9000b000 - 0x9000bfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9000c000 - 0x90d44ff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.31) <A0445D02-A1C1-3D40-8219-D8EA6B28811C> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x90d45000 - 0x90d4cffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x90da5000 - 0x90dd6fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90dd7000 - 0x90de1ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90de2000 - 0x90e15fff  libssl.0.9.8.dylib (47.1) <1725A506-BD80-39D5-8EE8-78D2FBBE194C> /usr/lib/libssl.0.9.8.dylib
    0x90e16000 - 0x90e17fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x90e18000 - 0x90e36ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90e37000 - 0x9121afff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9121b000 - 0x91290ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91291000 - 0x912c6ff7  com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x912c7000 - 0x912c9ffc  com.apple.QuickTimeH264.component (7.7.1 - 2599.31) <25140E1C-EDF3-31EB-937F-C1439721E0BB> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x912ca000 - 0x91367ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <639CF802-BE94-39C5-AC97-B5B42FF910C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91368000 - 0x9136ffff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x91370000 - 0x9138dff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9138e000 - 0x913c4ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x913c5000 - 0x91522ffb  com.apple.QTKit (7.7.1 - 2599.31) <B9AE5675-22B0-3AA9-903F-2195DA0B04F5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91523000 - 0x91543ffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x91544000 - 0x91569ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9156c000 - 0x9157aff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x9157b000 - 0x915d2ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x915d3000 - 0x916c4ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x916c5000 - 0x916d0fff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x916d1000 - 0x916d1fff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x916d2000 - 0x916dbff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x916dc000 - 0x9172affb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9172b000 - 0x9172ffff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91730000 - 0x91791fff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91792000 - 0x91796ffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91797000 - 0x91797fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91798000 - 0x917b5fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x917b6000 - 0x917b9ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x91b33000 - 0x91b36ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91b37000 - 0x91b43ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91b44000 - 0x91b5bfff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x91b5c000 - 0x91b71fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b72000 - 0x91b7afff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x91b7b000 - 0x92207ff3  com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92208000 - 0x92231ff7  libRIP.A.dylib (332) <521E60A6-A768-3CB8-B10D-D10EECD68A94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9223e000 - 0x922a4fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x922a5000 - 0x922bfffc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x922ce000 - 0x922d0fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x922d1000 - 0x92319ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9231a000 - 0x92368ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92369000 - 0x92379ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9237a000 - 0x92415fff  com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x92416000 - 0x92416ffe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x92417000 - 0x9247ffe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92480000 - 0x92480fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92481000 - 0x926daff5  com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x926db000 - 0x926f1fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x926f2000 - 0x92709ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9270a000 - 0x92741ffa  com.apple.LDAPFramework (2.4.28 - 194.5) <23668AB5-68EA-37D2-978E-C9EF22BF8C0C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92742000 - 0x92742fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x92743000 - 0x92768ffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92769000 - 0x927c3ff3  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <6313E06F-37FD-3606-BF2F-87D8598A9983> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x927c4000 - 0x92806ffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x92807000 - 0x92816fff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92817000 - 0x92818fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x92819000 - 0x9283eff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9283f000 - 0x92889ff7  com.apple.framework.CoreWLAN (3.3 - 330.15) <74C4B50F-7016-341F-8261-D379B8F0CC97> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x92944000 - 0x9294efff  com.apple.DisplayServicesFW (2.7.2 - 357) <76D33A58-C39E-398A-9597-389A9B1FE76D> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9294f000 - 0x92d6cfff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x92d6d000 - 0x92db4ff7  com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x92db5000 - 0x92db6fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x92db7000 - 0x92dc3ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x92dc4000 - 0x92e40ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92e41000 - 0x92ea3fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x92ea4000 - 0x92fafff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x92fb0000 - 0x92fc5fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92fc6000 - 0x92feafff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92feb000 - 0x92ff8ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x92ff9000 - 0x92ffffff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93000000 - 0x93050ff7  com.apple.CoreMediaIO (308.0 - 4155.4) <E2FF59A9-3728-3D17-A1AD-84DC1BDA2146> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x93051000 - 0x9307effb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9307f000 - 0x9339fff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x933a0000 - 0x934f9ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x934fa000 - 0x93555fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93556000 - 0x93568fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9358f000 - 0x9358ffff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93597000 - 0x935a1fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93644000 - 0x93648fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93649000 - 0x9364cffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x9364d000 - 0x93678ff9  com.apple.framework.Apple80211 (8.4 - 840.22.1) <DBC31BEB-B771-315F-852D-66ADC3BD75A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x93679000 - 0x9367afff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x9367b000 - 0x936c0ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93718000 - 0x937afff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x937b0000 - 0x937b1ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x937b5000 - 0x938c2ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x938c3000 - 0x93b30ffb  com.apple.imageKit (2.2 - 673) <CDB2AC11-6D60-34A7-83F9-F6E7DA25F97B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93b31000 - 0x93c49ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x93c4a000 - 0x93f4fff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93f50000 - 0x93f53ff9  libCGXType.A.dylib (332) <07B59FCC-6229-37C2-9870-70A18E2C5598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93f85000 - 0x94066fff  libcrypto.0.9.8.dylib (47.1) <E4820342-4F42-3DEB-90DB-DE5A66C5585E> /usr/lib/libcrypto.0.9.8.dylib
    0x94067000 - 0x94223ffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x94224000 - 0x9422bfff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x9422c000 - 0x9422cfff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9422d000 - 0x94368ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94369000 - 0x94485ffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94486000 - 0x94486fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94487000 - 0x9448eff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9448f000 - 0x94490ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94491000 - 0x944b5fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x944b6000 - 0x944b7fff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x944b8000 - 0x944c6fff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x944c7000 - 0x944d3ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x944d4000 - 0x9465dff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9465e000 - 0x94734fff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94735000 - 0x9474efff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9474f000 - 0x949e9ff7  com.apple.AddressBook.framework (7.1 - 1170) <9A7DDF7F-5081-3708-8965-E564953EEE39> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x949ea000 - 0x94a59ffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x94a

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain iMacs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • At my wits end with BT - can anyone help please?

    This is a long and ongoing saga and so I apologise for the long post.
    In February due to a change in job I needed to change the payment date of my DD payment. I did this online and received an email confirming the new payment date of the 28th. I stupidly assumed that was the date BT would take payment. The account is only used for Direct Debits and so money is put in there shortly before they're due. Over two weeks before the payment was due I received an unpaid DD letter from my bank. BT had attempted to take the payment early. I contacted BT and was assured my payment date was the 28th and they had no idea why payment had been attempted early. Later that day BT called to discuss the returned DD and I explained it was a BT error. A week later BT attempted to take the DD again. Once again I contacted them to be told my DD was definitely set up for the 28th and "there must be an error on the system" Later that day I received another call from BT to inform me my DD had been returned unpaid and again I explained that it was a BT error. Not trusting BT I cancelled the DD with the intention of making my payment online on the 28th. On 28th Feb before I had chance to make the payment I received a call from someone at BT who was mentioning late payment charges etc. I made it clear that any charges would be unacceptable as the error was down to BT and my payment wasn't actually late. I was asked to make payment over the phone but as it was difficult to understand each other I made it online and gave the payment reference number.
    My online balance at this point showed as zero and so I decided against setting up another DD for BT to attempt to take money as and when they pleased. Late March I received a phone call from BT telling me my DD wasn't set up and I had an outstanding balance of £57.75. I explained I'd had a zero balance but it would appear that my online balance was showing incorrectly. The person I spoke to said he could set up a new DD for this amount but as a one off it would come out on the 13th - something to do with making sure payment was made before the new bill came out and it taking X amount of time for a DD to set up. This would be a one off payment and after it had been made I'd be contacted to set up a new DD.
    On 20th April I received a call from UK based BT asking did I want to set up my new DD However to do this I would need to pay £120 over the phone. I asked why when I definitely had a zero balance, I'd received no bill and quite simply owed BT no money at that point. I was told there was a problem seeing all the data and somebody would call me back after the Easter weekend. Instead later that same day somebody else UK based phoned me asking me to set up my DD. I explained about the earlier phone call and she was confused as to why I'd been asked to pay anything as I clearly had a zero balance. I set up a new DD with her for £60 a month, payments to be made on 28th, starting 28th May. A few days after this my new bill arrived for £109.
    On 5th May my bank called me to say once again BT had attempted to take the DD early but this time they'd attempted to take £109. Once again I called BT and this time spoke to an Indian gentleman who advised me to cancel the DD with my bank while I was on the phone with him, he'd cancel it at that end and then he would set up a new one. He said letters of confirmation would be sent out to me.
    I sent an email to BT explaining all this and also saying I wasn't happy that they'd charged me £10 late payment charge on the new bill for unpaid DD. Had BT taken the payment when they should it wouldn't have been unpaid!! A gentleman phoned me back, assured me the £60 a month DD was set up for the 28th starting 28th May. He also emailed me confirmation of this.
    On 9th May I received an email saying I had a "supplementary bill" so looked at my online account to see my bill had gone up by about £5. My DD wasn't showing as set up on the online account but I decided to leave it a couple of days before contacting BT. Later that day though I received three letters. One saying my DD had been cancelled as discussed, and two others saying my DD had been set up to be paid 28th of every month starting 28th May for the amount £104!
    Before I had chance to call BT someone UK based called me to ask did I want to set up my DD as I had no payment plan set up. By this point I'd more than had enough and told her I had one email and two letters clearly saying my DD was set up and the only reason she'd be calling to ask me to do this would be if BT had cancelled the DD themselves. I refused to set up the DD yet again and she put me through to India based billing to discuss what was happening. I was told a DD wasn't set up on my account, that I couldn't set one up unless I paid my bill in full and that line restrictions are due to come into place on 29th May if the bill isn't paid in full.
    Today my BT online account shows no DD set up. However my bank shows the new DD is in fact active. I have no idea when BT will take money, or for how much. I don't know what to do, do I cancel the DD and just pay all future bills in full when they come in and in doing so be penalised by BT for not paying by DD? Or do I just leave it and hope they finally get it right? Bearing in mind I've had two letters saying they're going to take £104 and an email saying £60 I can't see that happening.
    It appears not one BT department speaks to the other, half the calls aren't logged and nobody at BT listens to the customer. I have spoken to Ofcom about this and they've advised me to give BT one more chance to sort this out and then go to the Ombudsman. I've just come across the forums and so am giving this a try to see if I can get any joy here.
    At some point during all this I spoke to somebody UK based who told me to send my bank charge letters to BT which I have done but as yet have heard nothing in return! I've lost track of how many people I've spoken to and am at my wits end with it all.
    Solved!
    Go to Solution.

    I'm even more concerned now after hearing back regarding my initial post. Apparently any cancellations or changes are showing as done by me using the self help platform on my BT account. This isn't the case. The actions carried out on certain dates listed on the email I received were all carried out by BT over the phone and not myself. I didn't even know it was possible to cancel a direct debit using the BT website. I thought it had to be cancelled at the bank and then a phone call to BT. I was logged onto my BT account while the phone calls were taking place but any action was carried out by BT and not myself. 
    BT are insisting I have no DD set up. Yet it clearly shows on my bank account that there is an active DD for BT. To confirm that, I've spoken to my bank today who have verified there is most definitely a DD set up to pay BT on the bank account. They've double checked the account number with me and it's definitely for my BT account. The bank are sending me a letter confirming it's an active DD for me to include all other details for the Ombudsman because I really feel this needs fetching to their attention. 
    To be fair to the person who has replied I have been told I can pay a small amount and set the DD up rather than pay in full or face restrictions. But despite BT's insistence that I have no DD set up my bank clearly states I have. I'm now going to have to cancel the DD that BT are sure isn't active and set it up again.
    Incidentally the monthly payments I'm to make are £45 - less than the £60 and a lot less than the £104 previously mentioned! So on one hand I will have a satisfactory conclusion but on the other I have to still cancel a "none existent" existing DD, set a new one up and am out of pocket on bank charges caused by BT trying to take payment on the wrong date. I then have to trust they'll not do the same thing again.......
    It's all like a stupid joke that's just not funny. 

  • I'm having a few issues with Safari, can anyone help?

    Hello, all,
    I'm having a few annoying little issues with Safari at the moment, hopefully someone can help and it'll be an easy fix, but I'm stumped at the moment.
    1. Every time I close and quit Safari it freezes and I have to 'force quit' the app. Not the biggest of problems but it's a little annoying.
    2. Once I open Safari back up it reloads with whatever window was open when I quit, even if my Mac has been turned off.
    3. Safari is eating up a lot of my RAM at the moment. 'Activity Monitor' is telling me it's taking up between 2-6GB of Memory.
    Anybody have any ideas?
    Thanks in advance.

    Try a basic Safari reset.
    Safari/Preferences/Advanced - enable the Develop menu, then go there and Empty Caches. Quit/reopen Safari and test. Then try Safari/History/Show History and delete all history items.  Quit/reopen Safari and test. You can also try try Safari/Clear History and Web Site Data. The down side is it clears all cookies.Doing this may cause some sites to no longer recognize your computer as one that has visited the web site.

Maybe you are looking for

  • Evaluating kodo for a thin rich client

    Hi We're evaluating our options for persistence on a project. We need a thin rich client - thin in terms of logic/smarts and rich in terms of UI/usability (swing/swt etc. not html). Before spending time to build a prototype, we have some questions. 1

  • How do I add options to the 'output' section of sound. My 'internal speakers' was deleted or something.

    I recently went to use my computer (MacBook Pro) and all of a sudden the sound was gone. The icon for sound is completely grayed out and the buttons on my keyboard don't work. When I go to system prferences there is no 'internal speakers' option eith

  • Photos not in cache,  %appdata%...? Help! 800 pics MIA!

    Help! 800+ pics M. I. A.! Mid June I moved photos from my iPhone4 camera roll, now I can't find them anywhere. I have searched for ways to gain access to my iPhone4 history in the attempt to see exactly where they may have gone, but can't locate that

  • Creating Insert Method for a binary tree

    I have code for a binary tree http://sourcepost.sytes.net/sourceview.aspx?source_id=5046 I'm trying to create an insert method that will accept an element and insert it into my binary tree. The main purpose of this is to test my traversal functions,

  • What will bluetooth do for me?

    I am getting a new Macbook Pro 13 inch next week and see that it is bluetooth enabled. What does this mean exactly? How can an average user use this technology? Am also a new Mac user.