System Extremely Unstable

Windows 7 Ultimate x64 with all patches
Office 2007 Ultimate with all patches
One of my systems has begun to crash a lot lately.  The information below is from bluescreenview. 
The associated mini-dumps are at: http://1drv.ms/1kgMrIW
The latest two crashes (first two below) occurred with verifier turned on for all drivers.  Any suggestion on where to look further would be appreaciated.
==================================================
Dump File         : 060114-7875-01.dmp
Crash Time        : 6/1/2014 10:54:13 PM
Bug Check String  : UNEXPECTED_KERNEL_MODE_TRAP
Bug Check Code    : 0x0000007f
Parameter 1       : 00000000`00000008
Parameter 2       : 00000000`80050031
Parameter 3       : 00000000`000006f8
Parameter 4       : fffff800`028cfbf2
Caused By Driver  : ntoskrnl.exe
Caused By Address : ntoskrnl.exe+75bc0
File Description  : NT Kernel & System
Product Name      : Microsoft® Windows® Operating System
Company           : Microsoft Corporation
File Version      : 6.1.7601.18409 (win7sp1_gdr.140303-2144)
Processor         : x64
Crash Address     : ntoskrnl.exe+75bc0
Stack Address 1   :
Stack Address 2   :
Stack Address 3   :
Computer Name     :
Full Path         : C:\Windows\Minidump\060114-7875-01.dmp
Processors Count  : 1
Major Version     : 15
Minor Version     : 7601
Dump File Size    : 268,984
==================================================
==================================================
Dump File         : 060114-17343-01.dmp
Crash Time        : 6/1/2014 10:42:32 PM
Bug Check String  : UNEXPECTED_KERNEL_MODE_TRAP
Bug Check Code    : 0x0000007f
Parameter 1       : 00000000`00000008
Parameter 2       : 00000000`80050031
Parameter 3       : 00000000`000006f8
Parameter 4       : fffff800`0286f87e
Caused By Driver  : ntoskrnl.exe
Caused By Address : ntoskrnl.exe+75bc0
File Description  : NT Kernel & System
Product Name      : Microsoft® Windows® Operating System
Company           : Microsoft Corporation
File Version      : 6.1.7601.18409 (win7sp1_gdr.140303-2144)
Processor         : x64
Crash Address     : ntoskrnl.exe+75bc0
Stack Address 1   :
Stack Address 2   :
Stack Address 3   :
Computer Name     :
Full Path         : C:\Windows\Minidump\060114-17343-01.dmp
Processors Count  : 1
Major Version     : 15
Minor Version     : 7601
Dump File Size    : 268,984
==================================================
==================================================
Dump File         : 060114-8218-01.dmp
Crash Time        : 6/1/2014 10:16:17 PM
Bug Check String  : UNEXPECTED_KERNEL_MODE_TRAP
Bug Check Code    : 0x0000007f
Parameter 1       : 00000000`00000008
Parameter 2       : 00000000`80050031
Parameter 3       : 00000000`000006f8
Parameter 4       : fffff800`028c7b90
Caused By Driver  : ntoskrnl.exe
Caused By Address : ntoskrnl.exe+75bc0
File Description  : NT Kernel & System
Product Name      : Microsoft® Windows® Operating System
Company           : Microsoft Corporation
File Version      : 6.1.7601.18409 (win7sp1_gdr.140303-2144)
Processor         : x64
Crash Address     : ntoskrnl.exe+75bc0
Stack Address 1   :
Stack Address 2   :
Stack Address 3   :
Computer Name     :
Full Path         : C:\Windows\Minidump\060114-8218-01.dmp
Processors Count  : 1
Major Version     : 15
Minor Version     : 7601
Dump File Size    : 268,984
==================================================
==================================================
Dump File         : 060114-8343-01.dmp
Crash Time        : 6/1/2014 10:04:50 PM
Bug Check String  : UNEXPECTED_KERNEL_MODE_TRAP
Bug Check Code    : 0x0000007f
Parameter 1       : 00000000`00000008
Parameter 2       : 00000000`80050031
Parameter 3       : 00000000`000006f8
Parameter 4       : fffff800`028d1b90
Caused By Driver  : ntoskrnl.exe
Caused By Address : ntoskrnl.exe+75bc0
File Description  : NT Kernel & System
Product Name      : Microsoft® Windows® Operating System
Company           : Microsoft Corporation
File Version      : 6.1.7601.18409 (win7sp1_gdr.140303-2144)
Processor         : x64
Crash Address     : ntoskrnl.exe+75bc0
Stack Address 1   :
Stack Address 2   :
Stack Address 3   :
Computer Name     :
Full Path         : C:\Windows\Minidump\060114-8343-01.dmp
Processors Count  : 1
Major Version     : 15
Minor Version     : 7601
Dump File Size    : 268,984
==================================================
http://www.saberman.com

Hi,
All of the attached DMP files are of the
UNEXPECTED_KERNEL_MODE_TRAP (7f)
This bug check indicates that the Intel CPU generated a trap and the kernel failed to catch this trap.
BugCheck 7F, {8, 80050031, 6f8, fffff800028cfbf2}
The 1st parameter of the bug check is 0x00000008, or Double Fault, indicates that an exception occurs during a call to the handler for a prior exception. Typically, the two exceptions are handled serially. However, there are several exceptions that
cannot be handled serially, and in this situation the processor signals a double fault. There are two common causes of a double fault:
A kernel stack overflow. This overflow occurs when a guard page is hit, and the kernel tries to push a trap frame. Because there is no stack left, a stack overflow results, causing the double fault.
A hardware problem.
FAILURE_BUCKET_ID: X64_0x7f_8_VRF_nt!KiDoubleFaultAbort+b2
This dump is verifier enabled, yet failed to detect a 3rd party driver in violation, therefore this is likely a hardware problem, or you did not set up verifier properly. It's interesting to see
KiDoubleFaltAbort in the FBID, so I looked further:
kd> k
Child-SP RetAddr Call Site
fffff800`00ba4d28 fffff800`028c6169 nt!KeBugCheckEx
fffff800`00ba4d30 fffff800`028c4632 nt!KiBugCheckDispatch+0x69
fffff800`00ba4e70 fffff800`028cfbf2 nt!KiDoubleFaultAbort+0xb2
fffff880`009b9000 00000000`00000000 nt!KeAcquireInStackQueuedSpinLockAtDpcLevel+0x2
nt!KeAcquireInStackQueuedSpinLockAtDpcLevel+0x2 calls into
nt!KiDoubleFaultAbort+0xb2. KeAcquireInStackQueuedSpinLockAtDpcLevel is a routine that acquires a queued spin lock when the caller is already running at IRQL >= DISPATCH_LEVEL.
kd> !irql
Debugger saved IRQL for processor 0x0 -- 2 (DISPATCH_LEVEL)
We seem to be at DISPATCH_LEVEL at the time of the crash, so there's nothing wrong there. I suspect a hardware problem despite the problem stemming from acquiring a spinlock.
First off, please run Memtest for NO LESS than ~8 passes (several hours):
Memtest86+:
Download Memtest86+ here:
http://www.memtest.org/
Which should I download?
You can either download the pre-compiled ISO that you would burn to a CD and then boot from the CD, or you can download the auto-installer for the USB key. What this will do is format your USB drive, make it a bootable device, and then install the necessary
files. Both do the same job, it's just up to you which you choose, or which you have available (whether it's CD or USB).
Do note that some older generation motherboards do not support USB-based booting, therefore your only option is CD (or Floppy if you really wanted to).
How Memtest works:
Memtest86 writes a series of test patterns to most memory addresses, reads back the data written, and compares it for errors.
The default pass does 9 different tests, varying in access patterns and test data. A tenth test, bit fade, is selectable from the menu. It writes all memory with zeroes, then sleeps for 90 minutes before checking to see if bits have changed (perhaps because
of refresh problems). This is repeated with all ones for a total time of 3 hours per pass.
Many chipsets can report RAM speeds and timings via SPD (Serial Presence Detect) or EPP (Enhanced Performance Profiles), and some even support changing the expected memory speed. If the expected memory speed is overclocked, Memtest86 can test that memory performance
is error-free with these faster settings.
Some hardware is able to report the "PAT status" (PAT: enabled or PAT: disabled). This is a reference to Intel Performance acceleration technology; there may be BIOS settings which affect this aspect of memory timing.
This information, if available to the program, can be displayed via a menu option.
Any other questions, they can most likely be answered by reading this great guide here:
http://forum.canardpc.com/threads/28864-FAQ-please-read-before-posting
2. If the above happens to pass without errors, the only driver I see that could be causing a problem is VirtualBox (please uninstall), and your Intel network drivers are dated from 2008, so see if an update is available -
http://www.intel.com/p/en_US/support/detect
Regards,
Patrick
“Be kind whenever possible. It is always possible.” - Dalai Lama

Similar Messages

  • AGP 8x acts extremely unstable

    This is my computer:
    2.4 GHz Pentium 4 processor with 800MHz FSB and HT
    Sapphire Atlantis 128MB Radeon 9600Pro GPU
    512MB(2x256) Kingston HyperX DDR400 RAM
    MSI 875P Neo 2 Motherboard
    120GB Serial ATA Maxtor Hard Drive
    Creative Labs SoundBlaster Audigy2 Sound Card
    Creative Megaworks 5.1 THX surround sound
    16x LiteOn DVD drive
    48x24x48 LiteOn CD-RW drive
    400 Watt Foxconn Power Supply
    19" Viewsonic P95f+ CRT
    Chieftec Black Case
    Logitech MX700 Rechargeable Wireless Optical Mouse
    Logitech Elite Multimedia Keyboard
    Cyberpower 825AVR UPS
    And a floppy drive!
    I'm running Windows XP.
    Everytime I set the AGP speed from 4x to 8x, my computer goes extremely unstable. I am using ATI's Catalyst drivers; I've tried a number of different versions and it doesn't seem to change anything.  My screen freezes up every five seconds and VPU recover (part of the Catalyst Driver suite) informs me that the graphics card has been restarted because it has stopped responding.  
    I'd like to figure this out so that I can take back the 250 lost 3DMarks that are rightfully mine.  
    Any ideas as to why I can't use AGP 8x?
    Thanks for listening....

    Thanks, netsile!  My monitor is the P95f+.  My desktop was set at 1280x 1024 @ 85 HZ.
    It's not that AGP 8x failed during benchmarks or under complex rendering strains, but on the desktop.  I still can't manage to find side-band addressing, only write-combining and FastWrite.
    By the way: my card doesn't use a 'Molex' connector.
    I would like to try more troubleshooting now, but I have a much bigger PC problem to deal with.  Just the other day I decided to clear the CMOS to reset the BIOS defaults before I flashed the newest BIOS (1.9 or whatever, I'm currently using the version that came right out of the box).  I was looking forward to MAT, but I never even got far enough to flash the BIOS.  Upon switching the jumper back, plugging in and resetting  the PC, I get nothing.  No video, no nothing (remember, I didn't flash the BIOS).  It is very early in the morning and I need some sleep, so I switched the jumper back to the 'clear CMOS' position and popped out the battery.  I figured that it would figure itself out overnight.  
    The next morning, I switch it on to more blackness.  All of the fans come on, the drives spin up, and then my motherboard piezo-buzzer speaker thing hits me with an error code: (beep-beep-beep-beep-beep-beep-beep-beep, and then some time, and then eight more beeps, on and on forever).  My monitor comes out of Power-save mode, like it knows that the computer has been activated, but then it goes to sleep again.  My PC stays on and keeps beeping in the 8-beep pattern until I unplug it.  
    I looked up the error code on the internet, and I find that the error is the result of a graphics card read/write error.  I recheck everything in the box (I built it myself, I know where everything is) and restart again... and again... and again... The INFERNAL BEEPING never ends.  The D-Bracket on my PC is telling me that booting stops right before VGA initialization (LED pattern RRRG).  I think, "Oh great, my 9600Pro is fried, not cool" and proceed to remove it from the system.  
    Later that night, I take the card to my Dad's office where I have constructed him a nearly identical PC, only difference being a Gigabyte motherboard, an older Radeon All in Wonder for graphics editing, and 2-3-2-6-1T Kingston instead of my 2-2-2-6-1T.  I take out his graphics card and check to make sure that there's no integrating video.  There isn't, so I hook up and power up.  I expect nothing to happen, but I am completely perplexed when the thing boots perfectly and continues to hum happily on the older Radeon's drivers that were previously responded.  
    This test leads me to believe that maybe my AGP slot is messed up, or something.  I walk (in the 5 degree F weather that doesn't belong in central Pennsylvania) up to my friend's house up the street.  He has an affinity for building PCs out of ancient parts, and I pick up an old Voodoo 3 PCI card from him for testing.  I pop that card in my machine, and I get the same INFERNAL BEEPING.  Not cool.
    Several calls to my IT professional grandfather do nothing to correct the situation.  At this time, I've cleared the CMOS probably 249865 times.  I unplug everything but the hard drive, CPU, and 1 stick (instead of the regular 2) of DDR 400 Kingston and reboot with the bare minimals.  INFERNAL BEEPING ensues.  
    Now I take out the hard drive.  I'm not happy.
    INFERNAL BEEPING.
    Now I take out the remaining memory stick.  Ah! The beeping has stopped!  And my PC is gutted, and worthless... Not cool.  
    Now, I've sent MSI some emails and they may even get a call tomorrow.
    I've gathered the original packing material and bookmarked the RMA page.
    If I do not discover the answers I seek on one of the 3927 message boards I'm going to post this on, I'm sending the thing back.  I've had it for less than four months, and I'm not going to run out and buy a new one when it's not my fault that it doesn't work.  
    My dad's Gigabyte GA-8KNXP is looking nicer all of the time...
    I'd like to thank anyone that decides to respond to this.
            -Brandon, the guy with the PC that BEEPS INFERNALLY

  • Mac is extremely unstable

    Hi,
    My PowerMac G5, which has been a highly reliable system, is suddenly extremely unstable. Apps are freezing (iTunes, iMovie, even Finder). Force Quit is frequently unable to completely exit the frozen app.
    Shut downs are also a problem, I am have resorted to forced reboot multiple times.
    I recently installed the ProKit 5.1 update. This would appear to be the root cause, but I don't know if that is the problem.
    I have run Disk Utility and repaired disk permissions. No error messages generated.
    Any thoughts on how I can get this machine back to it's usual reliable state are appreciated!
    David

    For the shutdowns, I'm wondering if it might be overheating. And definitely check the amount of free space on the drive.
    If you don't have anything to read the temps, I'd install Temperature Monitor. It's freeware.
    http://www.bresink.com/osx/0TemperatureMonitor/download.html
    To check the status of the fans + temp, the best is Hardware Monitor (Also Marcel Bresink) it costs around $10.
    _Not accurate_ for the temps, but OK for the fans is iStat Menus, which is free.

  • KT880 DELTA (SOCKET A) MEM KING 512 400MHZ, EXTREMELY UNSTABLE

    HELLO THAT SO, I FINISH BUYING NEW PIECES PROCESSOR SEMPRON 2800+ And TWO KINGSTON MEMORIES OF 512 OF 400MHZ, The PROBLEM ARE IN WHICH SEGUN The SPECIFICATIONS OF The MSI, The MOTHERBOARD KT880 DELTA WORKING PERFECTLY  IF The PROCESSOR HAS A FSB OF 300 And The MEMORY A FSB OF 400.
      BUT APPARENTLY IT IS A GREAT LIE, IT FORMS PC ASI And HE IS EXTREMELY UNSTABLE[/color][/b],  IN The SAME INSTALLATION IT SENT The BLUE SCREEN OF ERROR, And WHEN I COULD INSTALL IT With great difficulty, WINDOWS REINCIABA IN CERTAIN SHORT WHILES. UPDATE The BIOS To COMPLETES IT And The ERROR WAS EQUAL. ASI THAT I HAD TO PITIFULLY CHANGE The FSB OF The MEMORY To 333.
    However, WHEN IT WAS To 400 And IT MANAGED TO WORK, WAOOO WAS FAST MAS, IT WANTED THAT SOMEBODY HELPED ME WITH SOMETHING, Or THAT The PEOPLE OF The MSI REVIEWED THAT ERROR. I HAVE UNDERSTOOD THAT The FIRST BIOS OF THIS SINGLE MOTHERBOARD SUPPORTED ATHLON XP And SOON THEY MODIFIED IT FOR The SEMPRON, BUT DO NOT BELIEVE THAT THEY HAVE PROVEN WITH The MEMORIES, TOO MUCH INSTABILITY, And I  QUERIA TO TAKE The COMPUTER to the MAX, HURTS, PLEASE CORRIGAN THAT ERROR Or SOMEBODY HELP ME 
    I AM PANAMENIAN AND MY ENGLISH IS BAD, JEJE. PLEASE HELP ME!!!!!!!!!!!!!!!!

    Hola !
    You have to tell us complete PC specs includding P.Su. brand and AMPS to 3.3, 5 and 12v. rails so we can help you better.- Right now I can say, Semprons FSB is 333, no 300, so, if you set it by hand in Bios, you have to set it to that new value.  Also you must have in mind that is better to run memory at same speed as CPU. Instability comes when memory send more data than CPU can process in a certain time. BTW Those Kingston memory are value Ram ? You also could try "upping " memory voltage in 0,1-0,2 volts to see if system is more stable. Y trata de no escribir con mayúsculas.

  • H57M-ED65 - system very unstable

    Hi All, I have just built a new system and am finding it very unstable, I thought i'd see if anyone has any thoughts on what the problem might be
    H57M-ED65 mainboard
    Intel i5 650 CPU
    on-board graphics
    geil DDR3 RAM
    coolermaster 600 W PSU
    So I'm finding the system is very unstable, I get frequent random resets. by reset's I mean that the system power's off (as if the reset button has been pressed), the fan's spin down, then a moment later start up again and the system post's. I dont see any pattern to this (ie it doesn't always happen when i'm doing CPU intensive work or memory/ IO intensive work.)  At least once it's corrupted the BIOS settings in the process of going down.
    I dont think this is a heat problem - the CPU temp is fairly stable under a high workload (prime95 running) - approx 40deg c +- a few degrees. I have had prime95 run for several hours ok without a reset and then had it reset when idle doing nothing.
    The bios version is as shipped - v1.1 - i'm a little reluctant to re-flash when the systems so unstable, I'm not too keen on the idea of it resetting part way through flashing.
    I should probably add that i'm not overclocking anything. 
    I have had the system reset on me when tweaking the fan speeds in the MSI control panel software - though that could be a co-incidence ...
    So any ideas ? Anything worth trying  / or RMA the board ?

     Sounds like the same problem I had with my H55 with original BIOS and RAM compatibility. BIOS updates include memory compatibility so it's recommended you update BIOS for that reason. I had an H57M-ED but it came with BIOS 1.3 and didn't have that problem. That being said I prefer the Crucial RAM you see in my signature for the H55/H57 MB's.
    http://www.newegg.com/Product/Product.aspx?Item=N82E16820148262
     Wise decision not trying to flash BIOS yet. Do like Jack said before anything else but I would recommend returning RAM and exchange for Crucial.

  • Digikam extremely unstable

    The last version of Digikam 1.5.0 is extremely unstable for me. It crashes very often just when browsing photos, it also displays broken thumbnails all the time. Am I the only one who experiences that? If not, is it problem with Arch Linux build, library dependences or just 1.5.0 is unstable?

    I don't know the answer. I have a problem with digikam too. It does not present any thumbnail.
    the message is
    $ digikam
    QSqlDatabasePrivate::removeDatabase: connection 'ConnectionTest' is still in use, all queries will cease to work.
    Time elapsed: 33 ms
    Model: Time elapsed: 138 ms
    TextureColorizer: Time elapsed: 26 ms
    Time elapsed: 7 ms
    Model: Time elapsed: 48 ms
    digikam(6316)/digikam (core) Digikam::AlbumManager::slotDatesJobResult: Failed to list dates
    digikam(6316)/digikam (core) Digikam::ImageAlbumModel::slotResult: Failed to list url: "The process for the digikamalbums protocol died unexpectedly."

  • Extremely unstable Airport network

    [Dutch so sorry for my English]
    My Airport network (1 extreme (latest), 1 express (1st gen)) is extremely unstable (especially AirPort Extreme), my iPad and iPhone are being unconnected every 2 minutes or so.
    My iMac is connected over ethernet and wifi, my speeds:
    Ethernet: 59Mbps down; 5,5Mbps up.
    Wifi: 9Mbps down; 5,5Mbps up. (distance between Airport Extreme and iMac is one wall and 5 meters.)
    Ridiculous right?!
    Especially the problem my devices are trown of the wifi network every couple minutes is REALLY frustrating. Didn't have the problem until like half a year ago.
    Tried a lot, the channel stuff (I don't have many networks near my place, so I have few interference), all the basic solutions for the basic problems. None have worked so far.
    Hope you can help me, this is kinda my last shot.

    [Dutch so sorry for my English]
    My Airport network (1 extreme (latest), 1 express (1st gen)) is extremely unstable (especially AirPort Extreme), my iPad and iPhone are being unconnected every 2 minutes or so.
    My iMac is connected over ethernet and wifi, my speeds:
    Ethernet: 59Mbps down; 5,5Mbps up.
    Wifi: 9Mbps down; 5,5Mbps up. (distance between Airport Extreme and iMac is one wall and 5 meters.)
    Ridiculous right?!
    Especially the problem my devices are trown of the wifi network every couple minutes is REALLY frustrating. Didn't have the problem until like half a year ago.
    Tried a lot, the channel stuff (I don't have many networks near my place, so I have few interference), all the basic solutions for the basic problems. None have worked so far.
    Hope you can help me, this is kinda my last shot.

  • My Mac has lost it's mind since the 10.5.2 update!  System VERY unstable!

    Ok, ever since I installed the 10.5.2 update my Mac mini has been behaving badly! This sucka is askin' for a time out (if you get what I mean). We're about to see just how airborne a Mac mini can get in a few!
    Ok, since I updated to 10.5.2 I've been getting these crashes here is a report from one of the crashes which gives some message like, "You will need to restart your Mac." I just know I had never seen this message until I had installed the latest OSX update.
    Is there a way that I can uninstall this update? Now it's gotten to be so unstable that I'm no longer getting any error message, it just locks up after 20 or so minutes of use sometimes.
    Oh something else in that started happening. I can't leave it running idle for more than 20 to 30 minutes or it will lock up for certain. When it locks up the only thing I can do it to power off and back on again.
    Is there a way to remove the updates that I had installed? I'm using Time Machine, but is there a way to revert back to a time just prior to installing the 10.5.2 update? I'm afraid if I can't figure this out, I'm going to have to delete and reinstall Leopard and see if that resolves my problems. Oh, is there a diagnostic test that I should run to make sure I'm not having a hardware problem. This is my first Mac ever so I'm not sure exactly how to troubleshoot it.
    Thanks,
    Jeff
    Crash report:
    If there are images in this attachment, they will not be displayed. Download the original attachment
    Model: Macmini1,1, BootROM MM11.0055.B08, 2 processors, Intel Core Duo, 1.83 GHz, 2 GB
    Graphics: kHW_IntelGMA950Item, GMA 950, spdisplays_builtin, spdisplaysintegratedvram
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), 1.3.2
    Bluetooth: Version 2.1.0f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Host-Guest, Ethernet, en2
    Network Service: Parallels NAT, Ethernet, en3
    Serial ATA Device: ST98823AS, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R UJ-85J, 460 MB
    USB Device: Keyboard Hub, Apple, Inc., high_speed, 500 mA
    USB Device: USB Receiver, Logitech, full_speed, 100 mA
    USB Device: Apple Keyboard, Apple, Inc, low_speed, 100 mA
    USB Device: HarmonyRemote.com!, HarmonyRemote.com!, full_speed, 500 mA
    USB Device: Creative Xmod, Creative Technology Ltd, full_speed, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., full_speed, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., full_speed, 500 mA
    FireWire Device: (1394 ATAPI,Rev 1.00), PL3507 Combo Device, 400mbit_speed

    Um, no actually I don't have THAT many devices attached. I have the Apple keyboard, a Logitech mouse, a FireWire external hard drive which is my boot drive and a USB key drive may have been plugged in at the time (which isn't now and nothing has improved). I don't even have a printer attached right now.
    Leopard has gotten so unreliable that I'm seriously thinking of wiping out everything and reinstalling. I can't keep the **** thing up and running at this point. It keeps locking up on me and NOT reporting any error messages. I couldn't even run the Disk Utility last time I booted it up. Even that locked up on me. I don't understand what's happened! It used to be rock solid, running WAY better than my Dell Windows Vista box. Now it won't run for ****!
    So why can't I just remove the last update and see how things run then? Can't updates be removed? Can Time Machine restore the system files to an earlier point in time. What a frickin' waist if it can't. I come from the Windows world where I could restore from a restore point and it would set things back to where they were last working. Does that not exist on the mac? I'll try to remove the Logitech mouse software and see what difference that makes, but it's been running great for 6 months with it. Like I've said before, things didn't go south until after that update was installed.
    So if anyone else out there has some ideas, PLEASE let me know!
    Thanks,
    Jeff

  • IPhoto 08 extremely unstable with external

    Good evening
    I am very frustrated with iPhoto as the application keeps crashing every 3-4 minutes. I have my pictures stored on an external drive and have created a library also on the external. When I imported all my photos over to the library, I used the advanced option of not actually copying the items to the library (1.4 gig; actual photos 'imported' are 34 gig = 16000 photos).
    Are all these advanced and external options combined making my iPhoto unstable?
    I have the latest iPhoto and MAC software updates installed.
    Any thoughts or suggestions? I want to keep my MACBook Pro somewhat uncluttered of photos so that I can edit videos!
    Thank you for your time and thoughts.
    sKY::

    sKY
    Welcome to the Apple Discussions.
    No, neither of these things will make iPhoto unstable.
    Post the Crash Log.
    It's at Home / Library / Logs / Crash-Reporter / iphoto.crash.log
    Double click on the file and it will open in the Console. Copy and Paste it in here.
    Just a heads up: You need to be aware of a number of potential pitfalls using a referenced Library.
    1. Import and deleting pics are more complex procedures
    2. You cannot move or rename the files on your system or iPhoto will lose track of them
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    Always allowing for personal preference, I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers.
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about finding the files, that can be easily done from the iPhoto Window.
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically.
    Regards
    TD

  • WRT54G with extremely unstable speed/ping.

    I seriously have no idea why this is happening, suddenly after the holidays my router has been acting up.
    When I ping my router (Linksys Wireless G (192.168.1.1)) it is usually between 1-2ms.
    However if I ping google or gamefaqs or something, the ping would be stable sometimes (RARELY) being at around 50ms or it would be extremely high at over 2000ms, or it would fluctuate from 50 to 500.
    I have not changed my settings on the router in anyway before the problem started. My isp is NOT the problem since if I directly connect the modem to the computer it would be a constant low ping.
    All the computers connected to the router is experiencing the same problem, I have updated the firmware for the router (no effect) and even changed the frequency of the router with the router's home page.
    I have tested this all with and without firewalls, with and without virus protection. I have tested it after scanning my whole computer for viruses and malware on safemode. I have resetted the modem by turning off the modem and holding reset on the router for 45 seconds then unplugging and replugging it.
    I have updated the firmware and resetted it after.
    This is an extremely frustrating problem as it makes it virtually impossible to play any games online, it also makes it extremely difficult to finish any of my University assignments without pulling my hair out with the load times, and I really wish someone on gamefaqs would be able to help.

    Gaqt wrote:
    >snip<
    I pinged google.com and my router at the same time, sure enough the router ping increases a bit (1ms to 2+ or sometimes 4+) when the ping for the Google goes up.
    >snip<
    Also some additional information. My ISP is Shaw, I am on their high speed connection, (40-50canadian$ a month).
    >snip<
    There are currently 4 computers connected to the router (one wired 3 wireless). This did not cause problems for 6+ the months leading up to this point.
    >snip<
    However, when I set the passwords up for the other users of the wireless (so it may work for them) it starts to slow down AGAIN. This has led me to believe that the amount of users on the router is now a factor, even though it had not been for the last year or so.
    No one uses torrents, and even if they did the problems would not be the same as that of what I stated above.
    There's a lot of stuff to cover here...
    You said the router ping slows down when you ping both your router and Google at the same time. What is really important isn't how much the router ping slows, but what the ping times are to both your router and Google.
    It's nice to know you are on a cable modem. One problem might be the cable infrastructure is over-subscribed. One test is to get up in the middle of the night - something like 3 or 4 am would be good for this test - and see how your system performs. If it is OK, this suggests other users are saturating a link somewhere. Have you checked with your cable company? They might be able to help - but don't count on it.
    Shutdown all other machines on your network and perform the tests. One machine might have malware that is using all of your bandwidth. If everything tests OK with only your machine under test, bring other machines up one at a time to isolate the source of the problem.
    Are you using wireless for connectivity? If so, you are sharing bandwidth among not only yourself, but whatever neighbors are using the same wireless channel. If anyone is using 802.11b, that has the possibility to slow down all users of the wireless network. Having said that, I don't think this is your problem but it is something to keep in mind.
    Don't discount torrents as being a problem. They will suck up all of your bandwidth, and this can cause delays for other applications running on the network.
    -- Dan Meyer
    http://www.linkedin.com/in/danielrmeyer

  • EXTREMELY unstable xp1900

    my system, on a scale of 1-10(10 high) of how unstable my computer is with my cpu at 133FSB..... *34*
    it crashes if i basicly use the cpu! i have NO idea why, and my temps are not to high... any help?
    (voltages are good too)
    rig =
    powmax 500watt PSU
    msi kt3 ultra 2
    XP1900+
    60gig seagate hdd
    256Mb DDR-2700 samsung
    AX-7 heatsink
    GeForce 4 mx400
    cd-rw lite-on
    cd-rom

    Make sure the HSF and CPU are clean. (read the sticky on how to clean them)
    Once they are clean put a VERY small amount of grease to the CPU core (the small metal bit in the middle of the CPU). You only need enough to smear over the core. About the size of a rice grain. Place the HSF on the CPU and clip it in place.
    Now for a little trick I use to help. VERY gently twist the HSF a fraction one way then back again. This helps disperse the grease and give the best metal to metal contact possible.
    Remember. Smear of grease and GENTLE  twist.

  • System extremely slow. how can i speed it up?

    I MAC speed is 2.8 GHz Intel Core 2 Duo, Memory is 4 GB 800 MHz DDR2 SDRAM. OS X 10.9.4 since downloading 10.9.4 extremely slow. Any remedies? also have  parallels for windows.

    EtreCheck version: 1.9.15 (52)
    Report generated September 18, 2014 at 9:08:38 AM CDT
    Hardware Information: ?
      iMac (24-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.8 GHz Intel Core 2 Duo CPU: 2 cores
      4 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1920 x 1200
      Cinema HD 1920 x 1200
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:53:58
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (190.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      EPSON USB2.0 MFP(Hi-Speed)
      Apple Computer, Inc. Apple Cinema HD Display
      Apple, Inc. Keyboard Hub
      Apple, Inc Apple Keyboard
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Generic USB Ear-Microphone
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Anywhere
    Kernel Extensions: ?
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.16 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.16 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungComposite (1.4.16 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.16 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.16 - SDK 10.6) Support
      [not loaded] net.pocketmac.driver.BlackberryUSB (3.0.12) Support
      [not loaded] net.pocketmac.driver.BlackberryUSBDev (3.0.12) Support
    Startup Items: ?
      ParallelsDesktopTransporter: Path: /Library/StartupItems/ParallelsDesktopTransporter
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.ciscosystems.ciscoconnect.daemon.plist Support
      [running] com.parallels.mobile.dispatcher.launchdaemon.plist Support
      [loaded] com.parallels.mobile.kextloader.launchdaemon.plist Support
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.parallels.mobile.prl_deskctl_agent.launchagent.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.divx.agent.postinstall.plist Support
      [running] com.genieo.completer.download.plist Support
      [loaded] com.genieo.completer.update.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.parallels.mobile.startgui.launchagent.plist Support
      [running] com.zeobit.MacKeeper.Helper.plist Support
    User Login Items: ?
      Garmin Express Service
      iTunesHelper
      KiesAgent
      EpsonRegReminder
      TuneupMyMac
      fuspredownloader
      EEventManager
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 6.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 2.4.4.2 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      OVSHelper: Version: 1.1 Support
      AdobePDFViewerNPAPI: Version: 10.1.10 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivXBrowserPlugin: Version: 2.1 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 10.1.10 Support
      GarminGpsControl: Version: 4.0.1.0 Release - SDK 10.4 Support
    Safari Extensions: ?
      Omnibar
      DivXHTML5
      OpenIE
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins ?
      Move-Media-Player: Version: npmnqmp 071500000273 Support
      Picasa: Version: 1.0 Support
    3rd Party Preference Panes: ?
      DivX  Support
      Flash Player  Support
      Flip4Mac WMV  Support
      MacFUSE  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          7% mds
          2% WindowServer
          1% fontd
          0% EPSON Scanner
          0% aosnotifyd
    Top Processes by Memory: ?
      213 MB com.apple.WebKit.WebContent
      139 MB com.apple.IconServicesAgent
      123 MB mds_stores
      111 MB MacKeeper
      82 MB Safari
    Virtual Memory Information: ?
      1.62 GB Free RAM
      1.71 GB Active RAM
      146 MB Inactive RAM
      531 MB Wired RAM
      506 MB Page-ins
      0 B Page-outs

  • K7T266Pro2, bios ver. 3.6, 3.7 - the system is unstable if the CPU is

    I've a problem - after flashing to new versions of bios the system becomes very unstable if the CPU is even slightly overclocked (140х11). Now I have the bios version 3.3. It is stable, but does not support fast CPU's (when I overclock my cpu to 1862 MHz, the results in SiSoft Sandra 2002 are much lower then with non-overclocked cpu). What am I to do?
    P.S. How to rename the thread?

    what is the problem with 3.3 memory timing? I upgraded to 3.7 bios and found that I cannot restart Windows - every time I restart, the bios is stuck in the POST screen - I went back to 3.3 and the problem is gone. I also did not notice any difference in SisSandra 2002 score (including memory benchmark), 3dmark2001se and all other benchmark software I threw at my system between bios 3.3 and bios 3.7.
    BTW, I was also like Kolian before in that once I flashed to any bios above 3.3, my system cannot overclock. It turns out I fixed my CPU heatsink the other way around. Once I fixed the heatsink correct, I can use bios 3.7 stably, only problem being it not able to restart.

  • G50-30 System is unstable after BIOS upgrade

    After installing Windows 7 I decided to upgrade BIOS and picked the proposed update for Windows 7 64bit (http://support.lenovo.com/uu/en/products/laptops-and-netbooks/lenovo-g-series-laptops/g50-30-notebook-lenovo). 
    After applying the upgrade system boot failed. This issue was fixed using yapha7's advice (see this thread: https://forums.lenovo.com/t5/Lenovo-B-and-G-Series-Notebooks/Lenovo-G50-30-Bios-update-crashed-installed-win-7/m-p/1693051#M32265).
    Well, OS boots. But now I can draw violet lines on a viewport by pressing two mouse buttons simultaneously. WLAN breaks periodically, gets fixed by a reconnection. CPU consumption increases without any resorce-intensive task being launched. It iss understood that latter two issues might not be related to a BIOS upgrade. But they all appeared shortly after the upgrade.
    Also it is not clear if I'm able to use USB 3.0?
    The current BIOS version is A7CN47WW. Is it possible to rollback? Can you provide the original / any stable BIOS version (for Lenovo G50-30 Windows 7 x64) which is prior to the one available at the drivers download page? Thank you!

    hi a_demenkov,
    Just to check, have you considered reinstalling Win7 after you got the issues that you described after flashing the BIOs to v47?
    If you're leaning towards downgrading to the BIOS to v45, try the following:
    1. Boot into the BIOs and enable BIOS Back Flash.
        - Sample image
    2. The BIOS v45 download link is not listed but if you look at the the BIOS v47 file below, you should be able to get v45 by renaming:
    BIOS v47
    https://download.lenovo.com/consumer/mobiles/a7cn47ww_64.exe
    to
    BIOS  v45
    https://download.lenovo.com/consumer/mobiles/a7cn45ww_64.exe
    If you're not able to flash the BIOS inside Windows then you may need to do it under DOS.
    How to flash InsydeH2O EFI under DOS enviroment
    Goodluck!

  • System is unstable and keeps crashing after OS update...

    My computer became totally unstabel after the lastest Mac OS update - Mail app craching, Safari Crashing and now the whole system crashes.
    Below, the copy of the report I got after the latest crash:
    Anonymous UUID:       EC5E43C7-..........
    Tue May 13 15:03:36 2014
    panic(cpu 1 caller 0xffffff80074526ff): "a freed zone element has been modified: expected 0xdeadbeefdeadbeef but found 0xdeadbee7deadbeef, bits changed 0x800000000, at offset 3648 of 8192 in zone: kalloc.8192"@/SourceCache/xnu/xnu-2422.92.1/osfmk/kern/zalloc.c:461
    Backtrace (CPU 1), Frame : Return Address
    0xffffff824b0a3c10 : 0xffffff8007422fa9
    0xffffff824b0a3c90 : 0xffffff80074526ff
    0xffffff824b0a3cf0 : 0xffffff8007451df9
    0xffffff824b0a3df0 : 0xffffff800742aa6f
    0xffffff824b0a3e20 : 0xffffff8007413056
    0xffffff824b0a3e50 : 0xffffff8007426b81
    0xffffff824b0a3e80 : 0xffffff80074139f5
    0xffffff824b0a3ef0 : 0xffffff800741e043
    0xffffff824b0a3f70 : 0xffffff80074c97bd
    0xffffff824b0a3fb0 : 0xffffff80074f3b96
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13C1021
    Kernel version:
    Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    Kernel UUID: E9CF78E2-........
    Kernel slide:     0x0000000007200000
    Kernel text base: 0xffffff8007400000
    System model name: iMac12,2 (Mac-942B59F58194171B)
    System uptime in nanoseconds: 35300964006438
    last loaded kext at 29965879416995: com.apple.driver.AppleIntelMCEReporter          104 (addr 0xffffff7f89b78000, size 49152)
    last unloaded kext at 30038185627125: com.apple.driver.AppleIntelMCEReporter          104 (addr 0xffffff7f89b78000, size 32768)
    loaded kexts:
    net.kromtech.kext.Firewall          2.3.5
    com.symantec.kext.SymAPComm          12.6.1f9
    com.symantec.kext.fw          5.3.1f9
    com.symantec.kext.ips          3.9.2f1
    com.symantec.kext.pf          5.6.1f9
    com.symantec.kext.internetSecurity          5.3.1f8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleBluetoothMultitouch          80.14
    com.apple.driver.AGPM          100.14.15
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleThunderboltIP          1.1.2
    com.apple.driver.AppleIntelHD3000Graphics          8.2.4
    com.apple.driver.AppleHWAccess          1
    com.apple.kext.AMDFramebuffer          1.2.0
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleIntelSNBGraphicsFB          8.2.4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.AMDRadeonX3000          1.2.0
    com.apple.kext.AMD6000Controller          1.2.0
    com.apple.iokit.SCSITaskUserClient          3.6.6
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.driver.AppleIRController          325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.AirPort.Atheros40          700.74.5
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.driver.AppleUSBEHCI          660.4.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          170.15
    com.apple.driver.AppleHIDKeyboard          170.15
    com.apple.driver.IOBluetoothHIDDriver          4.2.3f10
    com.apple.driver.AppleMultitouchDriver          245.13
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.driver.AppleThunderboltEDMSink          2.1.3
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.iokit.IOFireWireIP          2.2.6
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.iokit.IOAcceleratorFamily          98.14
    com.apple.kext.AMDSupport          1.2.0
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.1
    com.apple.driver.AppleThunderboltDPOutAdapter          3.1.7
    com.apple.driver.AppleThunderboltDPInAdapter          3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily          3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.driver.AppleThunderboltNHI          2.0.1
    com.apple.iokit.IOThunderboltFamily          3.2.7
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1

    Thanks Carolyn,
    But now is the Safari which is quiting all of the sudden.
    The report I got is the following:
    Process:         com.apple.WebKit.WebContent [576]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.75.14)
    Build Info:      WebKit2-75370750.....
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [178]
    User ID:         5...
    Date/Time:       2014-05-13 16:53:06.373 -0400
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  EC5E43C7-.....
    Sleep/Wake UUID: 83858419-....
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000210b1a2f50
    VM Regions Near 0x210b1a2f50:
        CG shared images       00000001c7eb2000-00000001c7eba000 [   32K] r--/r-- SM=SHM 
    -->
        __TEXT                 0000123480000000-0000123480291000 [ 2628K] r-x/rwx SM=COW  /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore                0x00007fff8f72e814 JSC::StructureTransitionTable::get(***::StringImpl*, unsigned int) const + 260
    1   com.apple.JavaScriptCore                0x00007fff8f72e6e6 JSC::Structure::addPropertyTransitionToExistingStructure(JSC::Structure*, JSC::PropertyName, unsigned int, JSC::JSCell*, int&) + 22
    2   com.apple.JavaScriptCore                0x00007fff8f74b6f4 bool JSC::JSObject::putDirectInternal<(JSC::JSObject::PutMode)0>(JSC::VM&, JSC::PropertyName, JSC::JSValue, unsigned int, JSC::PutPropertySlot&, JSC::JSCell*) + 356
    3   com.apple.JavaScriptCore                0x00007fff8f74b3f8 JSC::JSObject::put(JSC::JSCell*, JSC::ExecState*, JSC::PropertyName, JSC::JSValue, JSC::PutPropertySlot&) + 888
    4   com.apple.JavaScriptCore                0x00007fff8f7cf5cc JSC::putByVal(JSC::ExecState*, JSC::JSValue, JSC::JSValue, JSC::JSValue) + 476
    5   com.apple.JavaScriptCore                0x00007fff8f7cf339 cti_op_put_by_val + 649
    6   ???                                     0x00003dba0eeb6b5a 0 + 67869323520858
    7   com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    8   com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    9   com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    10  ???                                     0x00003dba0ee01045 0 + 67869322776645
    11  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    12  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    13  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    14  ???                                     0x00003dba0ee01045 0 + 67869322776645
    15  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    16  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    17  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    18  ???                                     0x00003dba0ee01045 0 + 67869322776645
    19  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    20  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    21  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    22  ???                                     0x00003dba0ee01045 0 + 67869322776645
    23  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    24  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    25  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    26  ???                                     0x00003dba0ee01045 0 + 67869322776645
    27  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    28  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    29  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    30  ???                                     0x00003dba0ee01045 0 + 67869322776645
    31  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    32  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    33  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    34  ???                                     0x00003dba0ee01045 0 + 67869322776645
    35  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    36  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    37  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    38  ???                                     0x00003dba0ee01045 0 + 67869322776645
    39  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    40  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    41  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    42  ???                                     0x00003dba0ee01045 0 + 67869322776645
    43  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    44  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    45  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    46  ???                                     0x00003dba0ee01045 0 + 67869322776645
    47  com.apple.JavaScriptCore                0x00007fff8f814bb1 JSC::Interpreter::execute(JSC::CallFrameClosure&) + 241
    48  com.apple.JavaScriptCore                0x00007fff8f950490 JSC::arrayProtoFuncMap(JSC::ExecState*) + 1280
    49  ???                                     0x00003dba0ee01045 0 + 67869322776645
    50  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    51  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    52  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    53  ???                                     0x00003dba0ee01045 0 + 67869322776645
    54  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    55  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    56  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    57  ???                                     0x00003dba0ee01045 0 + 67869322776645
    58  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    59  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    60  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    61  ???                                     0x00003dba0ee01045 0 + 67869322776645
    62  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    63  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    64  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    65  ???                                     0x00003dba0ee01045 0 + 67869322776645
    66  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    67  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    68  com.apple.JavaScriptCore                0x00007fff8f9644d3 JSC::boundFunctionCall(JSC::ExecState*) + 547
    69  ???                                     0x00003dba0ee01045 0 + 67869322776645
    70  com.apple.JavaScriptCore                0x00007fff8f78aa13 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    71  com.apple.JavaScriptCore                0x00007fff8f78a7b5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    72  com.apple.WebCore                       0x00007fff946a082a WebCore::JSMainThreadExecState::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 154
    73  com.apple.WebCore                       0x00007fff946e4f62 WebCore::ScheduledAction::executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue, WebCore::ScriptExecutionContext*) + 450
    74  com.apple.WebCore                       0x00007fff946e4cc7 WebCore::ScheduledAction::execute(WebCore::Document*) + 151
    75  com.apple.WebCore                       0x00007fff946e4a50 WebCore::DOMTimer::fired() + 304
    76  com.apple.WebCore                       0x00007fff944a4f0f WebCore::ThreadTimers::sharedTimerFiredInternal() + 175
    77  com.apple.WebCore                       0x00007fff944a4dea WebCore::timerFired(__CFRunLoopTimer*, void*) + 58
    78  com.apple.CoreFoundation                0x00007fff8baa9494 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    79  com.apple.CoreFoundation                0x00007fff8baa8fcf __CFRunLoopDoTimer + 1151
    80  com.apple.CoreFoundation                0x00007fff8bb1a5aa __CFRunLoopDoTimers + 298
    81  com.apple.CoreFoundation                0x00007fff8ba64755 __CFRunLoopRun + 1525
    82  com.apple.CoreFoundation                0x00007fff8ba63f25 CFRunLoopRunSpecific + 309
    83  com.apple.HIToolbox                     0x00007fff8b761a0d RunCurrentEventLoopInMode + 226
    84  com.apple.HIToolbox                     0x00007fff8b7617b7 ReceiveNextEventCommon + 479
    85  com.apple.HIToolbox                     0x00007fff8b7615bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    86  com.apple.AppKit                        0x00007fff8fc3f3de _DPSNextEvent + 1434
    87  com.apple.AppKit                        0x00007fff8fc3ea2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    88  com.apple.AppKit                        0x00007fff8fc32b2c -[NSApplication run] + 553
    89  com.apple.AppKit                        0x00007fff8fc1d913 NSApplicationMain + 940
    90  com.apple.XPCService                    0x00007fff8b2ddc0f _xpc_main + 385
    91  libxpc.dylib                            0x00007fff8b5babde xpc_main + 399
    92  com.apple.WebKit.WebContent             0x0000000100e12ba0 0x100e12000 + 2976
    93  libdyld.dylib                           0x00007fff8c6115fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8ca3e662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff93d5d43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff93d5d152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8ca3de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b9e3fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8ca39a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ca38d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba64fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba645e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba63f25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8fddf16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 4:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff8ca39a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ca38d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba64fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba645e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba63f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8bb19811 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x00007fff945535e4 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore                0x00007fff8f71a53f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8ca39a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ca38d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba64fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba645e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba63f25 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff93a76967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff93a7676b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8ca3d716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e1c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8f7256f6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8f725215 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore                0x00007fff8f71a53f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8ca3d716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e1c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8f725d17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8f725ba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8f71a53f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8ca3d716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e1c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8f725d17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8f725ba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8f71a53f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8ca3d716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e1c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8f725d17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8f725ba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8f71a53f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8ca3de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b9e3fb9 start_wqthread + 13
    Thread 11:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff8ca39a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ca38d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba64fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba645e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba63f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8bb19811 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff9252af3c listenOnDelegatePort + 385
    7   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 12:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff8ca39a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ca38d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba64fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba645e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba63f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8bb19811 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff9252b404 listenOnNotificationPort + 353
    7   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 13:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8ca3d716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b9e1c77 _pthread_cond_wait + 787
    2   com.apple.CoreVideo                     0x00007fff8b6e9464 CVDisplayLink::waitUntil(unsigned long long) + 244
    3   com.apple.CoreVideo                     0x00007fff8b6e8998 CVDisplayLink::runIOThread() + 496
    4   com.apple.CoreVideo                     0x00007fff8b6e878f startIOThread(void*) + 147
    5   libsystem_pthread.dylib                 0x00007fff8b9df899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b9df72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b9e3fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000210b1a2f48  rbx: 0x0000000000000000  rcx: 0x0000000109043b68  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x0000000109043b68  rbp: 0x00007fff5ede8660  rsp: 0x00007fff5ede8650
       r8: 0x0000000000000007   r9: 0x000000009689a705  r10: 0x000000010afab540  r11: 0x00007fff8f7cf0b0
      r12: 0x0000000109043b68  r13: 0x000000010e0bc930  r14: 0x0000000000000000  r15: 0x0000000109931230
      rip: 0x00007fff8f72e814  rfl: 0x0000000000010206  cr2: 0x000000210b1a2f50
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x100e12000 -        0x100e12ff4  com.apple.WebKit.WebContent (9537 - 9537.75.14) <B6BACFDC-3742-3AD9-AE7F-2DA7D2025DD7> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x100e1e000 -        0x100e1efff  WebProcessShim.dylib (7537.75.14) <B79743A8-BC3D-335E-A926-F1B051B04BB2> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x104342000 -        0x10434aff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x104d10000 -        0x104d38ffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x1054f0000 -        0x105502ff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <8DBB3836-0272-3CA9-8E3D-BD5A985830EC> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x105cc2000 -        0x105cc5ffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10a441000 -        0x10a445ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
        0x123480000000 -     0x123480290fff  com.apple.AMDRadeonX3000GLDriver (1.20.11 - 1.2.0) <71623864-6E89-3C1E-AFE4-C19E8D9D48AF> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
        0x7fff67226000 -     0x7fff67259817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8a3cb000 -     0x7fff8a3cefff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8a3cf000 -     0x7fff8a3dcff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8a3dd000 -     0x7fff8a50dff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a50e000 -     0x7fff8a57dff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a57e000 -     0x7fff8a9ccfff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8a9cd000 -     0x7fff8a9d4fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a9d5000 -     0x7fff8a9d6fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8a9d7000 -     0x7fff8a9d8fff  libquit.dylib (161.2) <54B83D99-F84C-35E1-87D5-FCCB2F200FBD> /usr/lib/libquit.dylib
        0x7fff8a9d9000 -     0x7fff8ab75ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ab76000 -     0x7fff8ab8fff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8ab90000 -     0x7fff8ad1dff7  GLEngine (9.6) <51D58F76-B9B3-3B4F-B65A-F6D213C2EED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8ad1e000 -     0x7fff8ad5cff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8ae20000 -     0x7fff8af4ffef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8af97000 -     0x7fff8aff0fff  libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b293000 -     0x7fff8b293ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8b294000 -     0x7fff8b29dffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8b29e000 -     0x7fff8b2a5ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8b2ce000 -     0x7fff8b2dbfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8b2dc000 -     0x7fff8b2e2ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8b2e3000 -     0x7fff8b301ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8b302000 -     0x7fff8b438ffc  com.apple.WebKit (9537 - 9537.75.14) <98D7B16B-B2C8-3A4E-9AE9-7A8385ACFBA9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8b439000 -     0x7fff8b462fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b580000 -     0x7fff8b583ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8b584000 -     0x7fff8b5a6fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8b5a7000 -     0x7fff8b5cbfff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8b5cc000 -     0x7fff8b5d4ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8b5d5000 -     0x7fff8b622fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b623000 -     0x7fff8b6e5ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8b6e6000 -     0x7fff8b6e6ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8b6e7000 -     0x7fff8b70cff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8b733000 -     0x7fff8b9ddff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8b9de000 -     0x7fff8b9e5ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8b9e8000 -     0x7fff8b9f3ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8b9f4000 -     0x7fff8bbd9fff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8bbda000 -     0x7fff8bbdcfff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8bbe0000 -     0x7fff8bc43ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8bc44000 -     0x7fff8bc7dff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8bd4f000 -     0x7fff8bd58fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c137000 -     0x7fff8c1a4fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c1a5000 -     0x7fff8c1affff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8c1b0000 -     0x7fff8c1dcfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8c1dd000 -     0x7fff8c2bcfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c2bd000 -     0x7fff8c2c7ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8c2e2000 -     0x7fff8c2e7fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8c2e8000 -     0x7fff8c4d9ff3  com.apple.WebKit2 (9537 - 9537.75.14) <A54F32B2-5D0D-3A1D-A1F6-FB2162BD50D1> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8c591000 -     0x7fff8c5deff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c5df000 -     0x7fff8c5e1ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8c60a000 -     0x7fff8c60bff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8c60c000 -     0x7fff8c60dffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8c60e000 -     0x7fff8c611ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8c612000 -     0x7fff8c718fff  com.apple.ImageIO.framework (3.3.0 - 1042) <DEA4FF1B-D340-32C3-977D-D249709C6031> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8c719000 -     0x7fff8c71bff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8c77b000 -     0x7fff8c7abfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8c7ac000 -     0x7fff8ca05ff9  com.apple.security (7.0 - 55471.14.1) <FF57C9BB-4E52-33E5-8927-59AEADB6CA27> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8ca06000 -     0x7fff8ca0aff7  libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8ca0b000 -     0x7fff8ca15ff7  com.apple.CrashReporterSupport (10.9 - 538) <DD7669BA-78A6-3BEA-8410-17F556ACAA18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8ca16000 -     0x7fff8ca27ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8ca28000 -     0x7fff8ca44ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8ca94000 -     0x7fff8cb24fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8cb25000 -     0x7fff8cb27ff7  com.apple.securityhi (9.0 - 55005) <38784C88-AA07-350E-97A3-FCC24C97FC82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8cb28000 -     0x7fff8cb2afff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8cb2b000 -     0x7fff8cb38ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8cb39000 -     0x7fff8cb42ff7  libcldcpuengine.dylib (2.3.58) <C8785704-6195-3129-86CA-20F0F3C20F15> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8cb43000 -     0x7fff8cc34ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8cc35000 -     0x7fff8cc69fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8cc6a000 -     0x7fff8ccacff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8ccbb000 -     0x7fff8d5da68f  com.apple.CoreGraphics (1.600.0 - 599.21.1) <23BCDB0F-4E60-31BA-859C-820351D50111> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d5db000 -     0x7fff8d60afd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8d61e000 -     0x7fff8d61ffff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8d649000 -     0x7fff8d64aff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d6f3000 -     0x7fff8d6f3fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d6f9000 -     0x7fff8d6fdff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8d717000 -     0x7fff8d73bff7  libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8d8bc000 -     0x7fff8d8bcfff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8d8bd000 -     0x7fff8d8e4ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8d8e5000 -     0x7fff8d931ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8d94f000 -     0x7fff8d978fff  GLRendererFloat (9.6) <16871296-2EB9-3FF6-AB00-3E2E55A45A63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
        0x7fff8d979000 -     0x7fff8d9c0ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff8d9c1000 -     0x7fff8da79ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8db34000 -     0x7fff8db3dff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8db3e000 -     0x7fff8dc02ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8dc03000 -     0x7fff8dc05fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8dc06000 -     0x7fff8dc14fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8dc15000 -     0x7fff8dc31fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8dc32000 -     0x7fff8dca5fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8dca6000 -     0x7fff8dcb2ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8dcb3000 -     0x7fff8dcc3fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8dd6e000 -     0x7fff8ddeefff  com.apple.CoreSymbolication (3.0 - 141) <DC9F84AA-9BD0-322B-83C3-FDC1FA771F37> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8ddef000 -     0x7fff8de19ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8de24000 -     0x7fff8de25fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8de8b000 -     0x7fff8de96fff  libkxld.dylib (2422.92.1) <A7DFFC8C-45EE-3525-A961-EF93C2FB1340> /usr/lib/system/libkxld.dylib
        0x7fff8df22000 -     0x7fff8df88fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8e2ea000 -     0x7fff8e2f4ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8e2f5000 -     0x7fff8e3d9fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8e3da000 -     0x7fff8e3dafff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8e3e5000 -     0x7fff8e3e6ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8e3e7000 -     0x7fff8e41cffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8e47f000 -     0x7fff8e569fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8e56a000 -     0x7fff8e63bff1  com.apple.DiskImagesFramework (10.9 - 371.1) <96C40A82-D2F7-310D-879B-7D8960510878> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8e63c000 -     0x7fff8e64efff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8e6cc000 -     0x7fff8e879f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8e87a000 -     0x7fff8e8b5fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e8b6000 -     0x7fff8e8bbfff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8edef000 -     0x7fff8ee14ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8eec8000 -     0x7fff8ef54ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8ef55000 -     0x7fff8efa8fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8f01b000 -     0x7fff8f032ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8f033000 -     0x7fff8f038ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8f039000 -     0x7fff8f043ff7  libcsfde.dylib (380) <A3673EC2-5B81-3190-9BA5-F27013118EC6> /usr/lib/libcsfde.dylib
        0x7fff8f044000 -     0x7fff8f06eff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
        0x7fff8f06f000 -     0x7fff8f07cff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8f07d000 -     0x7fff8f0a4ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8f0a5000 -     0x7fff8f0b6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8f0b7000 -     0x7fff8f0c7ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8f0c8000 -     0x7fff8f0d0fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8f0d1000 -     0x7fff8f3bbfff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f3ea000 -     0x7fff8f3eafff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8f64d000 -     0x7fff8f6b7ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8f6b8000 -     0x7fff8f710ff7  com.apple.Symbolication (1.4 - 129) <6D47983E-9B8E-38A0-9503-099601CF118E> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f711000 -     0x7fff8fa88ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <DC1116A7-934C-37C1-9AB2-354DBA43EAD7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8fa89000 -     0x7fff8fabaff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8fb4e000 -     0x7fff8fb9cfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8fb9d000 -     0x7fff8fba0fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8fba1000 -     0x7fff8fbbaff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8fc1b000 -     0x7fff90791fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff90798000 -     0x7fff90d08fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff90f62000 -     0x7fff910d0ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff910d1000 -     0x7fff91407fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff91408000 -     0x7fff9145afff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff9145b000 -     0x7fff9148aff9  com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff9148b000 -     0x7fff91492fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff91493000 -     0x7fff9149efff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9149f000 -     0x7fff9149ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff914ad000 -     0x7fff914aeff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff91bff000 -     0x7fff91c5affb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff91c6b000 -     0x7fff91cf4fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff91d5b000 -     0x7fff91de4ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff91e42000 -     0x7fff91ef2ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91ef3000 -     0x7fff923f9ffb  com.apple.Safari.framework (9537 - 9537.75.14) <AE2739A0-427C-3015-8DF8-FDCF768D62DE> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff923fa000 -     0x7fff92428ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff92429000 -     0x7fff9245afff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff924b6000 -     0x7fff924deffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff924fe000 -     0x7fff92516ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff92517000 -     0x7fff92658fff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff92659000 -     0x7fff92665ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff92666000 -     0x7fff92755fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff92756000 -     0x7fff92b89ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff92b8a000 -     0x7fff92c53fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff92c54000 -     0x7fff92c5afff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff92c5b000 -     0x7fff92ea3ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff92f53000 -     0x7fff930a6ff7  com.apple.audio.toolbox.AudioToolbox (1.10

Maybe you are looking for