Crash at Run-Time

class Nota{
    public int getLength(){
        return length;
    public String getName(){
        return name;
    public Nota(String name, int length){
        this.name=name;
        if ((length==1) || (length==2) || (length==4))
            this.length=length;
        else throw new RuntimeException();
    public boolean equals(Object n){
        if (this==n) return true;
        if (n==null) return false;
        if (!(n instanceof Nota)) return false;
        Nota note=(Nota) n;
        return name.equals(note.getName());
    private String name;
    private int length;
class Spartito implements Iterable<Set<Nota>>{
    public void add(Nota note, int starTime){
        class Accordo extends HashSet<Nota>{
            public String toString(){
                Iterator<Nota> i=super.iterator();
                String res=((Nota)i.next()).getName();
                while (i.hasNext())
                    res+=", "+((Nota)i.next()).getName();
                    return res;
        for (int i=0; i<starTime; i++){
            try{
                timeLine.get(i);
            }catch(IndexOutOfBoundsException e){
                timeLine.set(i,new Accordo());
        int endTime=starTime+note.getLength();
        for (int i=starTime; i<endTime; i++){
            try{
                timeLine.get(i).add(note);
            }catch(IndexOutOfBoundsException e){
                Accordo accordo=new Accordo();
                accordo.add(note);
                timeLine.set(i,accordo);
    public Iterator<Set<Nota>> iterator(){
        return timeLine.iterator();
    public Spartito(){
        ArrayList<Set<Nota>> timeLine=new ArrayList<Set<Nota>>();
    private ArrayList<Set<Nota>> timeLine;
}use case:
public static void main(String[] x){
        Spartito fuga=new Spartito();
        fuga.add(new Nota("Do", 4), 0);
        fuga.add(new Nota("Mi", 1), 0);
        fuga.add(new Nota("Mib", 2), 1);
        fuga.add(new Nota("Sol", 2), 2);
        for (Set<Nota> accordo : fuga)
            System.out.println(accordo);
Error at Run-Time:
Exception in thread "main" java.lang.NullPointerException
     at Spartito.add(Es3.java:69)
     at Es3.main(Es3.java:6)
Class Nota is a musical note. The class Spartito represents musical tabs. Each note specifies a duration in units of time, so a Spartito becomes a time sequence of musical arrangements. I need to run software with the specified use case.
Edited by: ungoro on Apr 3, 2009 7:27 AM

no problem, if i posted on this forum then it means that i need help...
a concept that i cannot explain is that i need to manage any possible breaks (pauses) in the Spartito. To understand us better, take this use case:
    public static void main(String[] x){
        Spartito fuga=new Spartito();
        fuga.add(new Nota("Do", 4), 0);
        fuga.add(new Nota("Mi", 1), 0);
        fuga.add(new Nota("Mib", 2), 1);
        fuga.add(new Nota("Sol", 2), 8);
        for (Set<Nota> accordo : fuga)
            System.out.println(accordo);
    }from second 5 to 8 there aren't any note into the Spartito, then at 9th second cames a Sol. I expect an output that look like this:
Do, Mi
Do, Mib
Do, Mib
Do
<<pause>>
<<pause>>
<<pause>>
<<pause>>
Sol
Sol
However your suggestions are valid, and i wellcome them all.
The result (for now!) is the following code:
class Nota{
    public int getLength(){
        return length;
    public String getName(){
        return name;
    public Nota(String name, int length){
        this.name=name;
        if ((length==1) || (length==2) || (length==4))
            this.length=length;
        else throw new IllegalArgumentException("Invalid length: "+length);
    public boolean equals(Object n){
        if (this==n) return true;
        if (n==null) return false;
        if (!(n instanceof Nota)) return false;
        Nota note=(Nota) n;
        return name.equals(note.getName());
    private String name;
    private int length;
    public static final Nota PAUSA=new Nota("<<pause>>",1);
class Spartito implements Iterable<Set<Nota>>{
    public void add(Nota note, int starTime){
        class Accordo extends TreeSet<Nota>{
            public String toString(){
                Iterator<Nota> i=super.iterator();
                if (!(i.hasNext())) return "";
                String res=((Nota)i.next()).getName();
                while (i.hasNext())
                    res+=", "+((Nota)i.next()).getName();
                return res;
            public Accordo(){
                super(
                    new Comparator<Nota>(){
                        public int compare(Nota n1,Nota n2){
                            return n1.getName().compareTo(n2.getName());
        for (int i=timeLine.size(); i<starTime; i++){
            Accordo accordo=new Accordo();
            timeLine.add(i,accordo);
            accordo.add(Nota.PAUSA);
        int endTime=starTime+note.getLength();
        for (int i=starTime; i<endTime; i++){
            Set<Nota> accordo;
            if (i<timeLine.size()){
                accordo=timeLine.get(i);
                accordo.remove(Nota.PAUSA);
            }else{
                accordo=new Accordo();
                timeLine.add(i,accordo);
            accordo.add(note);
    public Iterator<Set<Nota>> iterator(){
        return timeLine.iterator();
    public Spartito(){
        timeLine=new ArrayList<Set<Nota>>();
    private ArrayList<Set<Nota>> timeLine;
}

Similar Messages

  • WAD: Crashes with Run Time Error '339': Component 'formx.ocx' (missing)

    when using SAPGui 7.10 --> BW3.5x Web Application Designer the
    application fails to start and we get the following error message.
    Run Time Error '339': Component 'formx.ocx' or one of it's dependencies
    is not correctly registered: a file is missing or invalid.
    This works correctly on some machines but on others we get this error
    message. We have applied the latest patch.
    I suspect some non-sap software component has damaged my installation. How can I debug this? Re-installing SAPGUI doesn't do any good.
    Any ideas gratefully received.

    Check the following link. Is your issue related to this???
    Re: Error in WAD

  • Crashing in run time engine

    My application crashes and comes up with the following error message:
    The instruction at "0x303556ce" referenced memory at "0x3231206f". The memory could not be "read".
    Click on OK to terminate the program
    Click on CANCEL to debug the program
    My application makes a .dll call when this error appears. It seems to be inconsistent and does not occur all the time. I would like to know if there is a log file in LabView to see what calls have been made before it occurs. Any suggestions? If I place a break point in the code it works fine.

    Festo,
    What type of call do you have for the dll? WinStd or C type?....having this incorrectly selected often results in the error you are seeing.
    What do you mean when you place a break point it works fine?...if you don't call the dll it works fine?...or if you give it time it works fine?
    -Brett

  • Run time objects

    hi all,
    i have a class called Shapes and when i create a new instance of this class it uses another class called ControlPanel to complete its display. The Shapes class has a method called getCanvasPane() which returns a CanvasPane object (an extension of the JPanel class i think).
    The problem i have is that i want to be able to add a mouseListener to the new Shapes object, but do this from the ControlPanel class as this is where the private class which implements the MouseListener interface is coded.
    i need a way of accessing the current Shapes object from the ControlPanel class, is there any way of doing this?
    any help will be appreciated
    thanks
    david

    SHAPES CLASS
    public class Shapes extends JFrame
        private Container contentPane = getContentPane();
        // The CanvasPane class simply provides a blank canvas
        // for drawing the various shapes.
        private static CanvasPane shapePanel = new CanvasPane();
        // The ControlPanel provides a space in which the various
        // shapes may be created and manipulated
        private ControlPanel controlPanel = new ControlPanel();
    public static CanvasPane getCanvasPane() // returns the canvas pane currently in use.
            return shapePanel;
    CONTROLPANEL CLASS
    public ControlPanel()
            // This code will compile but it crashes at run time
            Shapes a = new Shapes();
            CanvasPane b = a.getCanvasPane();
    in the constructor of this class i need to assign a MouseListener to the CanvasPane object which is currently in use. ie. use the getCanvasPane() method, and then assign the MouseListener to it
    [\CODE]
    at run-time a new instance of Shapes is created which in turn creates a new instance of ControlPanel. it is the instance of Shapes that i need to be able to run the 'getCanvasPane()' method.
    david                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Crash report runs a long time after startup

    Crash report runs for about 1-1/2 hour after startup.

    did you check how much time the entire report takes to execute (evn though the first 25 rows comes up quickly). I suspect it is > 30 mins.
    OBIEE is not meant as a data dump tool and there is little that could be done. (except better hardware)

  • Firefox has been randomly crashing for two days. I always have google and facebook running. Firefox seems to crash at random times - no specific web page loading. My Firefox is up to date.

    Firefox has been randomly crashing for two days. I always have google and facebook running. Firefox seems to crash at random times - no specific web page loading. My Firefox is up to date.

    There can be multiple reasons for crashing. Seeing this article would be helpful as it lists out the solution for this-
    http://support.mozilla.com/en-US/kb/Firefox%20crashes?s=firefox+crash&as=s#os=win&browser=fx4

  • How do I fix this run time error crash on start up?

    Whe I start Elements 10, it stops and waits at the "Organize" or "Edit" choice. (normal operation.) I chose edit and it crashes with a C++ run time error.

    See if this Adobe troubleshooting document helps:
    http://helpx.adobe.com/x-productkb/global/troubleshoot-c-runtime-errors-products.html
    Ken

  • I recently upgraded to Lion and i find that my computer is running slow and applications are crashing.  For example I have Word 2011 for Mac and it crashes all the time I end up losing my work.  It often happens when I'm in notebook trying to record.

    i recently upgraded to Lion and i find that my computer is running slow and applications are crashing.  For example I have Word 2011 for Mac and it crashes all the time I end up losing my work.  It often happens when I'm in class using notebook and when I press record my computer starts thinking and it freezes.
    Also, I feel that it overheats often and my battery runs out pretty quickly.  I had the macbook (black) and this never happened before.  I'm not sure if I'm doing something wrong or if there is something with my computer.I bought my computer summer 2010, I don't think this should be happening. Please Help......

    This is exactly what keeps happening to mine too.  I was at a conference taking notes, and I was
    using the Notebook template, and doing some audio recording simultaneously.  About 3 hours into the conference (not consistently recording, but on and off with the sessions) my file wouldn't save anymore, saying something like "File cannot be modified while in use with another program" and "Invalid file name" when I would go back into my folder to look for it). I tried installing some updates from Microsoft, and when I restarted, I was at least able to open my old notes again, and so far it looks like the audio was working.  However, today at the conference, the same thing happened again, but I wasn't actively recording any audio (though after I had copy and pasted my second file of notes into the original, I went back to using it after re-naming it). 
    Does the crash happen to you under similar cirucumstances?  The update might help a little, but it is definitely not the solution.  Does anyone have any solutions?  Lion shouldn't be this buggy... I moved to Mac to get away from the garbage of bugs and compatibility issues...

  • IMac crashes when trying to run Time Machine to 500 gig Time Capsule

    After working fine for several months, every time my iMac tries to run Time Machine to my 500 gig Time Capsule the mac crashes. The grey veil cascades down the screen and I have to hold the power button down for a while to restart. Any suggestions.

    same here. time capsule has worked for six months and overnight, in the middle of the night it shows the grey veil and prompts a restart.
    this happens whenever i connect to time capsule.
    at the moment i'm back to my trusty plug-it-in iomega which is blazingly fast.
    any ideas on how to remedy this, i know ita kernel panic, but i dont know what the fix is?????

  • Problems with Sequential Model in Run-Time. OI Crashes.

    I would like to ask for help for the following Problem:
    I am trying to run an Operator Interface which I created based on the TS Simple OI.
    TestStand 3.1f1
    LabVIEW 7.1.1
    The sequence I am running is using a few file Globals for data exchange between the steps and calling the main sequence in another sequence file, based on the UUT barcode. The barcode resolves the sequence file name, where the appropriate UUT test sequence is. Most of the Steps are Express VIs.
    Basically: The main sequence file executes, its defines the UUT to be tested, calls the MainSequence in the appropriate sequence file which after the tests returns. The main sequence file than ends the test, a report is generated.
    Everything runs perfect in the TestStand Development Environment (Sequence Editor), no problem at all. But with the Operator Interface I am having great problems.
    It is very strange, but after the second Single Pass (I am always using this entry point with the sequential Model) the Operator Interface crashes: *always*, on the 3rd (!) run I get the following Error:
    Run-Time Error
    Details: No details available
    Error Code:-17502; System Level Exception.
    Location: Step 'Send Model State Message: 'Initializing'' of sequence 'Single Pass' in 'SequentialModel.Seq'
    Step Description: Call Thread.PostUIMessageEx
    Step Status: Error
    This is a Error originated from the Sequential Model sequence. After this I get different behaviors, sometimes memory access crashes, sometimes LabVIEW.exe Aplication must be shut down, the OI won't work again.
    The same Problem hapens if I use the standard TestStand Simple OI or the Full-Featured OI !!! But only if I start these OIs via LabVIEW. If I start the OIs via executable (.exe provided) than everything runs like in the Sequence Editor, that is, without errors! Do they use different LV Run-Times? How can this happen?
    With the sequence editor (LV Adapter configured to work with LV Dev. System - active Version 7.1) the sequence runs perfectly! With an OI the sequence crashes after the 3rd. run! Why?
    The Whole NI directory (with TS and LV) was masscompliled (LabVIEW 7.1.1).
    Now I need some help, it is really important for my work to get this OI working! I am looking forward for any replies!
    Thanks a lot!
    Regards,
    - Caribe -

    Hi Caribe,
    At the moment I am un-able to reproduce your problem. I am using LabVIEW 7.1 and a TestStand beta, I have also used TestStand 3.0 and I am using the standard LabVIEW OI, run as exe and also the top level VI.
    I shall try to get the update for LV7.1 and try again.
    Regards
    Ray Farmer
    Message Edited by Support on 09-26-2005 03:06 PM
    Regards
    Ray Farmer

  • When i put an artist in the search box it crashes . I get a run time error.  Why?

    When I put an artist into the search box  of the itunes store my computer gives me a run time error and says itunes has stopped working.  Windows will notify you with a solution.  They never notify me . I can play my music library with no problem but lately when I listen to music samples from the itunes store  I constantly get a rebuffering notice.  Now I can't even get that far  My internet speed is fine.  I checked with my carrier.  I am thinking I may need to reinstall itunes completely but do I have to back up my library? Or is it in the itunes cloud? 

    The subscript error I get does obviously relate to the array, but I know in advance how much data will be transfered, 500 data points of a trace and I have DIM the array just prior to the transfer code, in the same subroutine. Also I have attemped to make the transfer a for next loop and it I get the same error at the start of the loop? The has to be another cause of this problem.

  • Why is PS CC2014 crashing all the time? Can anyone with experience help?

    Hi there
    I have had relentless problems with all versions of PS CC and PS CC 2014. It crashes almost every time I use it. Some days I get away with it, but mostly I don't. It is basically becoming unusable which is a nightmare because I rely on it for my work. I lose time and work frequently. I have to manually save my files every few minutes for fear of losing everything. A classic cause of it crashing is just opening a file, grabbing a folder of layers, holding down shift to restrain vertical / horizontal direction and dragging with the move tool to reposition in the document. Bam, APPCRASH. A typical fault message is this, which I just generated now, by doing just that:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Photoshop.exe
      Application Version:    15.2.0.236
      Application Timestamp:    542531ba
      Fault Module Name:    ntdll.dll
      Fault Module Version:    6.1.7601.18247
      Fault Module Timestamp:    521eaf24
      Exception Code:    c0000005
      Exception Offset:    0000000000027b0b
      OS Version:    6.1.7601.2.1.0.256.48
      Locale ID:    2057
      Additional Information 1:    f116
      Additional Information 2:    f1169e5949b625e6ff320471dc2e63c2
      Additional Information 3:    ca58
      Additional Information 4:    ca58819a9254a4ddaed3ec0fe7f101b2
    I have looked up this C0000005 code and it suggests that the application is trying to address illegal blocks of memory. If that helps.
    Another classic is when I try to SAVE AS and the dialogue fails to display the folder structure in the window so I cannot select a location. Once this happens, we're heading into crash land.
    Only PHOTOSHOP does this. I have plenty of professional software and tools on my system.
    BEFORE ANYONE SUGGESTS I UPDATE MY VIDEO CARD DRIVERS, PLEASE READ:
    I have a Radeon HD7750 card, which is approved for use with PS.
    I have the very latest drivers for it (not the BETA release, but the very latest stable drivers and latest Catalyst Control Centre update). I have had problems with all versions of PS CC and CC 2014 and that's through various video card driver updates.
    I have completely uninstalled PS CC2014 and all other versions of PS and uninstalled Creative Cloud and reinstalled both from scratch to try to solve this but it hasn't helped.
    I have no third party plugins in PS
    I have done regular and recent comprehensive checks on all my hardware and updated drivers, from BIOS, to CHIPSET and everything else.
    I have no IRQ conflicts, no problems in device manager
    I have monitored my system temperatures and they are fine
    I have done 16 hours of MEMTEST+ on my 16GB of DDR3 RAM - over 4 complete passes, with no errors
    I have stress-tested my video card with FUTUREMARK and it is perfectly fine within its capabilities
    I have even installed Steam and the a PC game (which I don't normally do) and it stands up just fine, no crashes.
    I have run a Windows System Health Check and his shows green lights for everything
    I have done a file system integrity check and no errors are found
    No other software on my system crashes like this, but PS does it all the time
    I use Adobe Bridge, and I've never had it crash. I use Adobe Reader, it's fine. I use Adobe Premier Elements 12 sometimes, it's fine. Adobe Photoshop CC / 2014 is not fine.
    I don't want to moan, I really need a solution and if anyone experienced can suggest something that goes beyond doing the the above I would be very grateful for your help
    PERFORMANCE SETTINGS:
    PS SYSTEM INFO:
    Adobe Photoshop Version: 2014.2.0 20140926.r.236 2014/09/26:23:59:59  x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3500 MHz
    Built-in memory: 16268 MB
    Free memory: 9930 MB
    Memory available to Photoshop: 14551 MB
    Memory used by Photoshop: 70 %
    3D Multitone Printing: Disabled.
    Windows 2x UI: Disabled.
    Highbeam: Enabled.
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1024, right=3200
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGLGPUs=1
    NumCLGPUs=1
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=1024
    glgpu[0].GLName="AMD Radeon HD 7700 Series"
    glgpu[0].GLVendor="ATI Technologies Inc."
    glgpu[0].GLVendorID=4098
    glgpu[0].GLDriverVersion="14.301.1001.0"
    glgpu[0].GLRectTextureSize=16384
    glgpu[0].GLRenderer="AMD Radeon HD 7700 Series"
    glgpu[0].GLRendererID=26687
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atium d64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm6 4.dll"
    glgpu[0].GLDriverDate="20140915000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.40"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[2147 483647]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[29]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    clgpu[0].CLPlatformVersion="1.2 AMD-APP (1573.4)"
    clgpu[0].CLDeviceVersion="1.2 AMD-APP (1573.4)"
    clgpu[0].CLMemoryMB=1024
    clgpu[0].CLName="Capeverde"
    clgpu[0].CLVendor="Advanced Micro Devices, Inc."
    clgpu[0].CLVendorID=4098
    clgpu[0].CLDriverVersion="1573.4 (VM)"
    clgpu[0].CUDASupported=0
    clgpu[0].CLBandwidth=5.25736e+010
    clgpu[0].CLCompute=379.453
    License Type: Subscription
    Serial number: {REMOVED FOR PRIVACY}
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\
    Temporary file path: C:\Users\Em\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      K:\, 221.6G, 221.2G free
      J:\, 244.1G, 233.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Plug-ins\
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2014/08/12-23:42:09   79.557478   79.557478
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdbePM.dll   PatchMatch 2014/09/07-21:07:38   79.558079   79.558079
       AdobeLinguistic.dll   Adobe Linguisitc Library   8.0.0 
       AdobeOwl.dll   Adobe Owl   5.2.4 
       AdobePDFL.dll   PDFL 2014/08/18-15:13:12   79.512424   79.512424
       AdobePIP.dll   Adobe Product Improvement Program   7.2.1.3399 
       AdobeXMP.dll   Adobe XMP Core 2014/08/20-09:53:02   79.156797   79.156797
       AdobeXMPFiles.dll   Adobe XMP Files 2014/08/20-09:53:02   79.156797   79.156797
       AdobeXMPScript.dll   Adobe XMP Script 2014/08/20-09:53:02   79.156797   79.156797
       adobe_caps.dll   Adobe CAPS   8,0,0,13 
       AGM.dll   AGM 2014/08/12-23:42:09   79.557478   79.557478
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31 
       amtlib.dll   AMTLib (64 Bit)   8.0.0.122212002 BuildVersion: 8.0; BuildDate: Wed Jul 30 2014 15:59:34)   1.000000
       ARE.dll   ARE 2014/08/12-23:42:09   79.557478   79.557478
       AXE8SharedExpat.dll   AXE8SharedExpat 2013/12/20-21:40:29   79.551013   79.551013
       AXEDOMCore.dll   AXEDOMCore 2013/12/20-21:40:29   79.551013   79.551013
       Bib.dll   BIB 2014/08/12-23:42:09   79.557478   79.557478
       BIBUtils.dll   BIBUtils 2014/08/12-23:42:09   79.557478   79.557478
       boost_date_time.dll   photoshopdva   8.0.0 
       boost_signals.dll   photoshopdva   8.0.0 
       boost_system.dll   photoshopdva   8.0.0 
       boost_threads.dll   photoshopdva   8.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.2.6.32411   2.2.6.32411
       CITThreading.dll   Adobe CITThreading   2.2.6.32411   2.2.6.32411
       CoolType.dll   CoolType 2014/08/12-23:42:09   79.557478   79.557478
       dvaaudiodevice.dll   photoshopdva   8.0.0 
       dvacore.dll   photoshopdva   8.0.0 
       dvamarshal.dll   photoshopdva   8.0.0 
       dvamediatypes.dll   photoshopdva   8.0.0 
       dvametadata.dll   photoshopdva   8.0.0 
       dvametadataapi.dll   photoshopdva   8.0.0 
       dvametadataui.dll   photoshopdva   8.0.0 
       dvaplayer.dll   photoshopdva   8.0.0 
       dvatransport.dll   photoshopdva   8.0.0 
       dvaui.dll   photoshopdva   8.0.0 
       dvaunittesting.dll   photoshopdva   8.0.0 
       dynamiclink.dll   photoshopdva   8.0.0 
       ExtendScript.dll   ExtendScript 2014/01/21-23:58:55   79.551519   79.551519
       icucnv40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090 
       icudt40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090 
       igestep30.dll   IGES Reader   9.3.0.113 
       imslib.dll   IMSLib DLL   7.0.0.154 
       JP2KLib.dll   JP2KLib 2014/06/28-00:28:27   79.254012   79.254012
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libiomp5md.dll   Intel(R) OpenMP* Runtime Library   5.0 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0 
       LogSession.dll   LogSession   7.2.1.3399 
       mediacoreif.dll   photoshopdva   8.0.0 
       MPS.dll   MPS 2014/08/18-23:43:19   79.557676   79.557676
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CC 2014   15.2 
       Plugin.dll   Adobe Photoshop CC 2014   15.2 
       PlugPlugExternalObject.dll   Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit)   5.0.0 
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   5.2.0.46 
       PSArt.dll   Adobe Photoshop CC 2014   15.2 
       PSViews.dll   Adobe Photoshop CC 2014   15.2 
       SCCore.dll   ScCore 2014/01/21-23:58:55   79.551519   79.551519
       ScriptUIFlex.dll   ScriptUIFlex 2014/01/20-22:42:05   79.550992   79.550992
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0 
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   8.0.0.14 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   8.0.0.14
       VulcanControl.dll   Vulcan Application Control Library   5.0.0.82 
       VulcanMessage5.dll   Vulcan Message Library   5.0.0.82 
       WRServices.dll   WRServices Fri Mar 07 2014 15:33:10   Build 0.20204   0.20204
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       3D Studio 15.2 (2014.2.0 x001)
       Accented Edges 15.2
       Adaptive Wide Angle 15.2
       Angled Strokes 15.2
       Average 15.2 (2014.2.0 x001)
       Bas Relief 15.2
       BMP 15.2
       Camera Raw 8.6
       Camera Raw Filter 8.6
       Chalk & Charcoal 15.2
       Charcoal 15.2
       Chrome 15.2
       Cineon 15.2 (2014.2.0 x001)
       Clouds 15.2 (2014.2.0 x001)
       Collada 15.2 (2014.2.0 x001)
       Color Halftone 15.2
       Colored Pencil 15.2
       CompuServe GIF 15.2
       Conté Crayon 15.2
       Craquelure 15.2
       Crop and Straighten Photos 15.2 (2014.2.0 x001)
       Crop and Straighten Photos Filter 15.2
       Crosshatch 15.2
       Crystallize 15.2
       Cutout 15.2
       Dark Strokes 15.2
       De-Interlace 15.2
       Dicom 15.2
       Difference Clouds 15.2 (2014.2.0 x001)
       Diffuse Glow 15.2
       Displace 15.2
       Dry Brush 15.2
       Eazel Acquire 15.2 (2014.2.0 x001)
       Embed Watermark 4.0
       Entropy 15.2 (2014.2.0 x001)
       Export Color Lookup Tables NO VERSION
       Extrude 15.2
       FastCore Routines 15.2 (2014.2.0 x001)
       Fibers 15.2
       Film Grain 15.2
       Filter Gallery 15.2
       Flash 3D 15.2 (2014.2.0 x001)
       Fresco 15.2
       Glass 15.2
       Glowing Edges 15.2
       Google Earth 4 15.2 (2014.2.0 x001)
       Grain 15.2
       Graphic Pen 15.2
       Halftone Pattern 15.2
       HDRMergeUI 15.2
       HSB/HSL 15.2
       IFF Format 15.2
       IGES 15.2 (2014.2.0 x001)
       Ink Outlines 15.2
       JPEG 2000 15.2
       Kurtosis 15.2 (2014.2.0 x001)
       Lens Blur 15.2
       Lens Correction 15.2
       Lens Flare 15.2
       Liquify 15.2
       Matlab Operation 15.2 (2014.2.0 x001)
       Maximum 15.2 (2014.2.0 x001)
       Mean 15.2 (2014.2.0 x001)
       Measurement Core 15.2 (2014.2.0 x001)
       Median 15.2 (2014.2.0 x001)
       Mezzotint 15.2
       Minimum 15.2 (2014.2.0 x001)
       MMXCore Routines 15.2 (2014.2.0 x001)
       Mosaic Tiles 15.2
       Multiprocessor Support 15.2 (2014.2.0 x001)
       Neon Glow 15.2
       Note Paper 15.2
       NTSC Colors 15.2 (2014.2.0 x001)
       Ocean Ripple 15.2
       OpenEXR 15.2
       Paint Daubs 15.2
       Palette Knife 15.2
       Patchwork 15.2
       Paths to Illustrator 15.2
       PCX 15.2 (2014.2.0 x001)
       Photocopy 15.2
       Photoshop 3D Engine 15.2 (2014.2.0 x001)
       Photoshop Touch 14.0
       Picture Package Filter 15.2 (2014.2.0 x001)
       Pinch 15.2
       Pixar 15.2 (2014.2.0 x001)
       Plaster 15.2
       Plastic Wrap 15.2
       PLY 15.2 (2014.2.0 x001)
       PNG 15.2
       Pointillize 15.2
       Polar Coordinates 15.2
       Portable Bit Map 15.2 (2014.2.0 x001)
       Poster Edges 15.2
       PRC 15.2 (2014.2.0 x001)
       Radial Blur 15.2
       Radiance 15.2 (2014.2.0 x001)
       Range 15.2 (2014.2.0 x001)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.2
       Ripple 15.2
       Rough Pastels 15.2
       Save for Web 15.2
       ScriptingSupport 15.2
       Shake Reduction 15.2
       Shear 15.2
       Skewness 15.2 (2014.2.0 x001)
       Smart Blur 15.2
       Smudge Stick 15.2
       Solarize 15.2 (2014.2.0 x001)
       Spatter 15.2
       Spherize 15.2
       Sponge 15.2
       Sprayed Strokes 15.2
       Stained Glass 15.2
       Stamp 15.2
       Standard Deviation 15.2 (2014.2.0 x001)
       STL 15.2 (2014.2.0 x001)
       Sumi-e 15.2
       Summation 15.2 (2014.2.0 x001)
       Targa 15.2
       Texturizer 15.2
       Tiles 15.2
       Torn Edges 15.2
       Twirl 15.2
       U3D 15.2 (2014.2.0 x001)
       Underpainting 15.2
       Vanishing Point 15.2
       Variance 15.2 (2014.2.0 x001)
       Virtual Reality Modeling Language | VRML 15.2 (2014.2.0 x001)
       Water Paper 15.2
       Watercolor 15.2
       Wave 15.2
       Wavefront|OBJ 15.2 (2014.2.0 x001)
       WIA Support 15.2 (2014.2.0 x001)
       Wind 15.2
       Wireless Bitmap 15.2 (2014.2.0 x001)
       ZigZag 15.2
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Libraries
       Adobe Color Themes
    Installed TWAIN devices: NONE
    Can anyone help me resolve this issue, with suggestions beyond those I've already listed above?
    I'm getting pretty stuck...
    Thanks

    Hi Chris
    Like I said in the OP I had the very latest AMD drivers installed before submitting that crash report.
    Since our conversations, I have completely removed my Radeon HD7750 GPU, uninstalled the drivers for it and the Catalyst Control Centre, and have resorted to using to my motherboard's integrated Intel HD graphics. I have the very latest drivers for the Intel HD graphics installed. Still, today I have had another crash event in Photoshop. So this cannot be the fault of the AMD card or drivers, because they are no longer present on the system.
    CRASH:
    Faulting application name: Photoshop.exe, version: 15.2.0.236, time stamp: 0x542531ba
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521eaf24
    Exception code: 0xc0000005
    Fault offset: 0x0000000000027b0b
    Faulting process id: 0x1fd8
    Faulting application start time: 0x01cfe7c41d6b75d0
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: a9fd0b69-53c1-11e4-8d80-bc5ff43517ae
    Fault bucket , type 0
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: Photoshop.exe
    P2: 15.2.0.236
    P3: 542531ba
    P4: ntdll.dll
    P5: 6.1.7601.18247
    P6: 521eaf24
    P7: c0000005
    P8: 0000000000027b0b
    P9:
    P10:
    Additional files: - I have a report file I am trying to post but this forum tells me I am spamming when I try to submit. I will try to post it separately...

  • Mid 2010 mac book pro crashing too many times!!!

    HELP! I'm basically fed up with my mac book pro crashing so many times in a day. I'm not doing anything tedious, just basic web surfing and music and some microsoft word/excel. I've read that someone recommended to run EtreCheck and paste the result here so anyone that knows how to read them can help me figure out what's happening!
    Problem description:
    My Mac book pro have been crashing lately. I’ve max out my RAM to 8gb. And the frequency seems to increased to few times in a day. I’ve uninstalled a software that I suspect to be causing the problem but it didn’t help.
    EtreCheck version: 2.1.8 (121)
    Report generated March 15, 2015 at 8:15:02 PM CDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2010) (Technical Specifications)
        MacBook Pro - model: MacBookPro6,2
        1 2.4 GHz Intel Core i5 CPU: 2-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 585
    Video Information: ℹ️
        Intel HD Graphics - VRAM: 288 MB
        NVIDIA GeForce GT 330M - VRAM: 256 MB
            Color LCD 1680 x 1050
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 0:12:8
    Disk Information: ℹ️
        Hitachi HTS545032B9SA02 disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (162.02 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 319.21 GB Online
        HL-DT-ST DVDRW  GS23N 
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/VMware Horizon Client.app
        [not loaded]    com.vmware.kext.vmioplug.12.2.7 (12.2.7) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.devguru.driver.SamsungComposite (1.4.20 - SDK 10.6) [Click for support]
            /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
        [not loaded]    com.devguru.driver.SamsungACMControl (1.4.20 - SDK 10.6) [Click for support]
        [not loaded]    com.devguru.driver.SamsungACMData (1.4.20 - SDK 10.6) [Click for support]
        [not loaded]    com.devguru.driver.SamsungMTP (1.4.20 - SDK 10.5) [Click for support]
        [not loaded]    com.devguru.driver.SamsungSerial (1.4.20 - SDK 10.6) [Click for support]
    Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.rosettastone.rosettastonedaemon.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist [Click for details]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Google Chrome    Application Hidden (/Applications/Google Chrome.app)
        fuspredownloader    Application Hidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
        KiesAgent    Application Hidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
    Internet Plug-ins: ℹ️
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        o1dbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        googletalkbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             8%    Google Chrome
             7%    WindowServer
             3%    Activity Monitor
             1%    sysmond
             1%    hidd
    Top Processes by Memory: ℹ️
        180 MB    Google Chrome
        172 MB    spindump
        129 MB    Google Chrome Helper
        112 MB    mds_stores
        103 MB    ocspd
    Virtual Memory Information: ℹ️
        3.93 GB    Free RAM
        2.82 GB    Active RAM
        739 MB    Inactive RAM
        1.10 GB    Wired RAM
        1.56 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 15, 2015, 08:02:45 PM    /Library/Logs/DiagnosticReports/com.apple.AmbientDisplayAgent_2015-03-15-200245 _[redacted].crash
        Mar 15, 2015, 08:01:10 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-200110_[redacted].panic [Click for details]
        Mar 15, 2015, 08:00:44 PM    Self test - passed
        Mar 14, 2015, 08:37:13 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-14-203713_[redacted].panic [Click for details]
        Mar 14, 2015, 08:04:08 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-14-200408_[redacted].panic [Click for details]
        Mar 14, 2015, 04:19:20 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-14-161920_[redacted].panic [Click for details]
        Mar 14, 2015, 12:55:25 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-14-125525_[redacted].panic [Click for details]
        Mar 1, 2015, 01:25:17 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-01-132517_[redacted].panic [Click for details]
        Feb 27, 2015, 10:34:50 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-27-223450_[redacted].panic [Click for details]
        Feb 25, 2015, 09:20:17 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-25-212017_[redacted].panic [Click for details]
        Feb 17, 2015, 09:47:52 AM    /Library/Logs/DiagnosticReports/Kernel_2015-02-17-094752_[redacted].panic [Click for details]
        Feb 16, 2015, 09:55:58 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-16-215558_[redacted].panic [Click for details]
        Feb 15, 2015, 10:22:46 PM    /Library/Logs/DiagnosticReports/Kernel_2015-02-15-222246_[redacted].panic [Click for details]

    I found the panic file.
    Anonymous UUID:       BAD5C7EC-C960-AF52-5446-DBE5524FD2B5
    Sun Mar 15 20:01:06 2015
    *** Panic Report ***
    panic(cpu 1 caller 0xffffff7f992cef63): "GPU Panic: [<None>] 3 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xffffff813311f000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.8.6/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 1), Frame : Return Address
    0xffffff811fee30b0 : 0xffffff801652fe41
    0xffffff811fee3130 : 0xffffff7f992cef63
    0xffffff811fee3210 : 0xffffff7f972ecb9f
    0xffffff811fee32d0 : 0xffffff7f973b618e
    0xffffff811fee3310 : 0xffffff7f973b61fe
    0xffffff811fee3380 : 0xffffff7f97635056
    0xffffff811fee34b0 : 0xffffff7f973d982d
    0xffffff811fee34d0 : 0xffffff7f972f35f1
    0xffffff811fee3580 : 0xffffff7f972f10fc
    0xffffff811fee3780 : 0xffffff7f972f2a4b
    0xffffff811fee3850 : 0xffffff7f988ae018
    0xffffff811fee3970 : 0xffffff7f988ad237
    0xffffff811fee39a0 : 0xffffff7f988a4c8d
    0xffffff811fee39e0 : 0xffffff7f988a545a
    0xffffff811fee3ab0 : 0xffffff7f988a0129
    0xffffff811fee3ae0 : 0xffffff7f988833a4
    0xffffff811fee3b30 : 0xffffff8016b00652
    0xffffff811fee3b60 : 0xffffff8016b01249
    0xffffff811fee3bc0 : 0xffffff8016afe9c3
    0xffffff811fee3d00 : 0xffffff80165e4a87
    0xffffff811fee3e10 : 0xffffff8016533f8c
    0xffffff811fee3e40 : 0xffffff8016518a93
    0xffffff811fee3e90 : 0xffffff80165293bd
    0xffffff811fee3f10 : 0xffffff80166059fa
    0xffffff811fee3fb0 : 0xffffff8016636ea6
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.8.6)[BE610379-FAEA-3E8F-B6AF-F92B70B3C5CD]@0 xffffff7f992c0000->0xffffff7f992d3fff
                dependency: com.apple.driver.AppleGraphicsControl(3.8.6)[76B001B1-30F1-3D72-B264-85D77B254C 2F]@0xffffff7f992b8000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[70E2B65E-A91A-3522-A1A0-79FD63EABB4C]@0xfffff f7f970d2000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f96d24000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[619F6C9F-0461-3BA1-A75F-53BB0F87ACD3]@0 xffffff7f97245000
                dependency: com.apple.driver.AppleBacklightExpert(1.1.0)[42706EB3-1447-3931-A668-FBAC58AAAA 7A]@0xffffff7f992bb000
             com.apple.nvidia.classic.NVDAResmanTesla(10.0)[796AE430-39FB-3255-8161-D52AFA28 EE2B]@0xffffff7f9729c000->0xffffff7f97505fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f96d24000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[E5A48E71-70F5-3B01-81D3-C2B037BBE80A]@0xff ffff7f9728c000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[619F6C9F-0461-3BA1-A75F-53BB0F87ACD3]@0 xffffff7f97245000
             com.apple.GeForceTesla(10.0)[3EA67900-B4A9-30BB-964D-0904DA5421CC]@0xffffff7f98 846000->0xffffff7f98913fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f96d24000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[E5A48E71-70F5-3B01-81D3-C2B037BBE80A]@0xff ffff7f9728c000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[619F6C9F-0461-3BA1-A75F-53BB0F87ACD3]@0 xffffff7f97245000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(10.0.0)[796AE430-39FB-3255-8161-D52AFA 28EE2B]@0xffffff7f9729c000
             com.apple.nvidia.classic.NVDANV50HalTesla(10.0)[7FE40648-F15F-3E18-91E2-FDDDF4C DA355]@0xffffff7f97510000->0xffffff7f977b9fff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(10.0.0)[796AE430-39FB-3255-8161-D52AFA 28EE2B]@0xffffff7f9729c000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f96d24000
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    14C1510
    Kernel version:
    Darwin Kernel Version 14.1.0: Thu Feb 26 19:26:47 PST 2015; root:xnu-2782.10.73~1/RELEASE_X86_64
    Kernel UUID: 270413F7-3B44-3602-894F-AC0D392FCF8E
    Kernel slide:     0x0000000016200000
    Kernel text base: 0xffffff8016400000
    __HIB  text base: 0xffffff8016300000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 17132101765913
    last loaded kext at 8002721604154: com.apple.filesystems.smbfs 3.0.0 (addr 0xffffff7f993b2000, size 389120)
    last unloaded kext at 153961282405: com.apple.driver.AppleUSBUHCI 656.4.1 (addr 0xffffff7f97a32000, size 65536)
    loaded kexts:
    com.apple.filesystems.smbfs 3.0.0
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AGPM 100.15.5
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleHDA 269.25
    com.apple.GeForceTesla 10.0.0
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleIntelHDGraphics 10.0.0
    com.apple.driver.AppleIntelHDGraphicsFB 10.0.0
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleMuxControl 3.8.6
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.5.1
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.3
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.driver.AirPort.Brcm4331 800.20.24
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.nvidia.classic.NVDANV50HalTesla 10.0.0
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.nvidia.classic.NVDAResmanTesla 10.0.0
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.driver.AppleGraphicsControl 3.8.6
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.3
    com.apple.iokit.IOUSBMassStorageClass 3.7.1
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.CoreStorage 471.10.6
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.3
    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.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IO80211Family 710.55
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 710.4.14
    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 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    And my hardward profile
    Hardware Overview:
      Model Name: MacBook Pro
      Model Identifier: MacBookPro6,2
      Processor Name: Intel Core i5
      Processor Speed: 2.4 GHz
      Number of Processors: 1
      Total Number of Cores: 2
      L2 Cache (per Core): 256 KB
      L3 Cache: 3 MB
      Memory: 8 GB
      Processor Interconnect Speed: 4.8 GT/s
      Boot ROM Version: MBP61.0057.B0C
      SMC Version (system): 1.58f17
      Serial Number (system): W81040MUAGX
      Hardware UUID: AE13C868-E4BF-5C1C-9DBD-D1D6AF1B5C47
      Sudden Motion Sensor:
      State: Enabled

  • Why my safari keep crashing on open time?

    hi, i can's open safari since updated to Yosemite, it keeps crashing all the time.
    here is the error output:
    Process:               Safari [669]
    Path:                  /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:            com.apple.Safari
    Version:               8.0.3 (10600.3.18)
    Build Info:            WebBrowser-7600003018000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Safari [669]
    User ID:               501
    Date/Time:             2015-02-12 17:35:05.798 -0500
    OS Version:            Mac OS X 10.10.2 (14C109)
    Report Version:        11
    Anonymous UUID:        0E463022-580A-8272-2F4D-E832C251CCDE
    Time Awake Since Boot: 610 seconds
    Crashed Thread:        12
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
        __TEXT                 000000010cbbe000-000000010cbbf000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x00007fff988f90a1 search_method_list(method_list_t const*, objc_selector*) + 3
    1   libobjc.A.dylib               0x00007fff9890aa03 getMethodNoSuper_nolock(objc_class*, objc_selector*) + 59
    2   libobjc.A.dylib               0x00007fff9890a89b lookUpImpOrForward + 614
    3   libobjc.A.dylib               0x00007fff988f41ac objc_msgSend + 236
    4   com.apple.AppKit               0x00007fff945332f8 NSViewSetNeedsDisplayInRect + 1394
    5   com.apple.AppKit               0x00007fff93e2f772 -[NSView setNeedsDisplay:] + 81
    6   com.apple.AppKit               0x00007fff944145d7 -[NSVisualEffectView _commonInit] + 130
    7   com.apple.AppKit               0x00007fff9441475f -[NSVisualEffectView initWithFrame:] + 94
    8   com.apple.AppKit               0x00007fff9476fa3b -[NSTitlebarView initWithFrame:] + 77
    9   com.apple.AppKit               0x00007fff944e5d6c -[NSThemeFrame _makeTitlebarViewWithFrame:] + 88
    10  com.apple.AppKit               0x00007fff944e7d09 __49-[NSThemeFrame _floatTitlebarAndToolbarFromInit:]_block_invoke + 548
    11  com.apple.AppKit               0x00007fff93ecdf39 +[NSAnimationContext runAnimationGroup:completionHandler:] + 82
    12  com.apple.AppKit               0x00007fff944e7aa1 -[NSThemeFrame _floatTitlebarAndToolbarFromInit:] + 104
    13  com.apple.AppKit               0x00007fff93e3f12e -[NSThemeFrame initWithFrame:styleMask:owner:] + 243
    14  com.apple.AppKit               0x00007fff93e3d690 -[NSWindow _commonInitFrame:styleMask:backing:defer:] + 614
    15  com.apple.AppKit               0x00007fff93e3cdc6 -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 1477
    16  com.apple.AppKit               0x00007fff94073ace -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    17  com.apple.AppKit               0x00007fff93e3c7f6 -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    18  com.apple.AppKit               0x00007fff94073a81 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    19  com.apple.AppKit               0x00007fff93e3a105 -[NSWindowTemplate nibInstantiate] + 567
    20  com.apple.AppKit               0x00007fff93e0ee8b -[NSIBObjectData instantiateObject:] + 309
    21  com.apple.AppKit               0x00007fff942f32d1 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
    22  com.apple.AppKit               0x00007fff93e03605 loadNib + 384
    23  com.apple.AppKit               0x00007fff943745ab +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
    24  com.apple.AppKit               0x00007fff94374ca8 +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
    25  com.apple.AppKit               0x00007fff9411473f _NXLoadNib + 196
    26  com.apple.AppKit               0x00007fff9411411f -[NSAlert init] + 95
    27  com.apple.AppKit               0x00007fff94153c33 +[NSAlert alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextW ithFormat:] + 131
    28  com.apple.AppKit               0x00007fff93e24f0d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1021
    29  com.apple.AppKit               0x00007fff93e24ace -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    30  com.apple.AppKit               0x00007fff93e24a6d -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    31  com.apple.AppKit               0x00007fff93e2475a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    32  com.apple.AppKit               0x00007fff93e24529 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    33  com.apple.AppKit               0x00007fff93e23f75 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    34  com.apple.Foundation           0x00007fff99f1f1e8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    35  com.apple.Foundation           0x00007fff99f1f059 _NSAppleEventManagerGenericHandler + 102
    36  com.apple.AE                   0x00007fff96a8c99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    37  com.apple.AE                   0x00007fff96a8c719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    38  com.apple.AE                   0x00007fff96a8c623 aeProcessAppleEvent + 295
    39  com.apple.HIToolbox           0x00007fff9a318a2e AEProcessAppleEvent + 56
    40  com.apple.AppKit               0x00007fff93e20626 _DPSNextEvent + 2665
    41  com.apple.AppKit               0x00007fff93e1f730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    42  com.apple.Safari.framework     0x00007fff8c7e5710 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    43  com.apple.AppKit               0x00007fff93e13593 -[NSApplication run] + 594
    44  com.apple.AppKit               0x00007fff93dfea14 NSApplicationMain + 1832
    45  libdyld.dylib                 0x00007fff984865c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff95c97232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff996a4a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff95c9694a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff95c9694a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.WebKit.ServicesController
    0   com.apple.CoreFoundation       0x00007fff90a603e6 -[__NSDictionaryM setObject:forKey:] + 6
    1   com.apple.CoreFoundation       0x00007fff90a829ed -[NSMutableDictionary addEntriesFromDictionary:] + 349
    2   com.apple.ShareKit             0x00007fff8e07db7e +[SHKSharingService serviceDictionariesFromBundle:matchingUserDict:] + 254
    3   com.apple.ShareKit             0x00007fff8e07f0f2 +[SHKSharingService addServicesFromPlugIns:compatibleWithUserDict:toServices:] + 2043
    4   com.apple.ShareKit             0x00007fff8e07fa37 +[SHKSharingService sharingServicesWithIdentifier:attributes:itemTypes:matchingDictionary:itemAttri butes:] + 1826
    5   com.apple.ShareKit             0x00007fff8e07ffca +[SHKSharingService sharingServicesForItems:mask:] + 894
    6   com.apple.AppKit               0x00007fff94714b0a +[NSSharingService sharingServicesForItems:mask:] + 69
    7   com.apple.WebKit               0x00007fff8dc04ce1 ___ZN6WebKit18ServicesController23refreshExistingServicesEb_block_invoke + 191
    8   libdispatch.dylib             0x00007fff996a6323 _dispatch_call_block_and_release + 12
    9   libdispatch.dylib             0x00007fff996a1c13 _dispatch_client_callout + 8
    10  libdispatch.dylib             0x00007fff996a5365 _dispatch_queue_drain + 1100
    11  libdispatch.dylib             0x00007fff996a6ecc _dispatch_queue_invoke + 202
    12  libdispatch.dylib             0x00007fff996a46b7 _dispatch_root_queue_drain + 463
    13  libdispatch.dylib             0x00007fff996b2fe4 _dispatch_worker_thread3 + 91
    14  libsystem_pthread.dylib       0x00007fff96993637 _pthread_wqthread + 729
    15  libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff95c9694a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib         0x00007fff95c96136 __psynch_cvwait + 10
    1   com.apple.WebCore             0x00007fff92aad53b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore             0x00007fff92aaa689 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore       0x00007fff95fab14f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff96993268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff969931e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff9699141d thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff95c9694a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff95c9694a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff95c9694a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9699140d start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff95c914de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff95c9064f mach_msg + 55
    2   com.apple.QuartzCore           0x00007fff903c7abb CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore           0x00007fff903c79ee thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff96993268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff969931e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff9699141d thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff95c914de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff95c9064f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff90a88b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff90a87ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff90a87858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff905fdc80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff99f6590a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff96993268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff969931e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff9699141d thread_start + 13
    Thread 12 Crashed:
    0   libsystem_pthread.dylib       0x00007fff96991601 _pthread_mutex_lock + 87
    1   libsystem_c.dylib             0x00007fff97321b58 vfprintf_l + 28
    2   libsystem_c.dylib             0x00007fff9731a600 fprintf + 186
    3   ???                           0x00000001121f45dc 0 + 4599006684
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7dd461d8  rcx: 0x00007fff7dd461f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff7dd461f0  rsi: 0x00007fff96991a80  rbp: 0x00000001121f0e30  rsp: 0x00000001121f0db0
       r8: 0x00000001121f9000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff7dd456b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff96991601  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10cbbe000 -        0x10cbbefff  com.apple.Safari (8.0.3 - 10600.3.18) <077913F2-AB05-3133-B24E-2CA948D313E6> /Applications/Safari.app/Contents/MacOS/Safari
           0x111fd2000 -        0x111fd2fe7 +cl_kernels (???) <67F2CF4C-53B8-40BF-B052-B52C73F73683> cl_kernels
           0x111fd4000 -        0x1120bafef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1120fe000 -        0x1120fefef +cl_kernels (???) <0FDD261F-621B-41CC-99E3-8B69DEE4010A> cl_kernels
        0x7fff6c9bd000 -     0x7fff6c9f3837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff8c0e7000 -     0x7fff8c10cff7  libPng.dylib (1232) <6E72AE55-AFB0-3FC4-80B2-EBC3353436B7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8c204000 -     0x7fff8c252fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8c403000 -     0x7fff8c40bfff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8c40c000 -     0x7fff8c410fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c411000 -     0x7fff8c416ffb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
        0x7fff8c417000 -     0x7fff8c489ff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8c48a000 -     0x7fff8c4a0ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff8c4a1000 -     0x7fff8c6e2fff  com.apple.AddressBook.framework (9.0 - 1563) <63953D92-FB0D-31B1-A449-07BA64D08BA9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8c6fe000 -     0x7fff8c701fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8c702000 -     0x7fff8c70ffff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8c737000 -     0x7fff8c73cfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c76e000 -     0x7fff8d0affff  com.apple.Safari.framework (10600 - 10600.3.18) <E32F3139-F84B-3ED7-B5B0-9821D22998F7> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff8d0f1000 -     0x7fff8d10bfff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8d12b000 -     0x7fff8d242fe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8d243000 -     0x7fff8d2d4ff7  libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
        0x7fff8d2d5000 -     0x7fff8d2d8fff  libScreenReader.dylib (390.21) <364E0A52-4076-3F55-8C77-7CC5E085E4C4> /usr/lib/libScreenReader.dylib
        0x7fff8d2fe000 -     0x7fff8d469ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d46a000 -     0x7fff8d470ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8d471000 -     0x7fff8d48bff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8d48c000 -     0x7fff8d494ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8d54b000 -     0x7fff8d591ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8d598000 -     0x7fff8d5d0fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8d690000 -     0x7fff8d69aff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8d69b000 -     0x7fff8d69ffff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8d6d3000 -     0x7fff8d93bff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8da7d000 -     0x7fff8dd43fff  com.apple.WebKit (10600 - 10600.3.18) <F8E36318-4F4C-348B-B1DE-D4BE035036AD> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8dd44000 -     0x7fff8dde2fff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8de11000 -     0x7fff8df29ffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8df2a000 -     0x7fff8e01efff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8e01f000 -     0x7fff8e042fff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8e058000 -     0x7fff8e0ccfff  com.apple.ShareKit (1.0 - 323) <92C947CC-FD6B-39D4-919D-9ABD7701384C> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff8e0cd000 -     0x7fff8e162ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8e1a3000 -     0x7fff8e2cbff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8e324000 -     0x7fff8e364ff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff8e365000 -     0x7fff8e367fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff8e368000 -     0x7fff8e36efff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8e36f000 -     0x7fff8e37afff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8e37b000 -     0x7fff8e37dff7  com.apple.securityhi (9.0 - 55006) <1F40ECF1-6AEF-3E64-9DAD-ADC646CCEA98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8e37e000 -     0x7fff8e390ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8e39e000 -     0x7fff8e3fafff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8e3fb000 -     0x7fff8e409fff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
        0x7fff8e40a000 -     0x7fff8e415ff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff8e416000 -     0x7fff8e470ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8e4a4000 -     0x7fff8e4b1fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e534000 -     0x7fff8e5bdfff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8e5d7000 -     0x7fff8e609ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8e60a000 -     0x7fff8e60dfff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8e60e000 -     0x7fff8e649fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ecb2000 -     0x7fff8eccbff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8eccc000 -     0x7fff8ed8cfff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8eda4000 -     0x7fff8eed4fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8eed5000 -     0x7fff8eee0fff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8eee1000 -     0x7fff8ef65fff  com.apple.ViewBridge (103.1 - 103.1) <BABD572C-58AA-362C-B246-D45DCD990D16> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8ef66000 -     0x7fff8ef9effb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
        0x7fff8efd3000 -     0x7fff8efd8ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8efd9000 -     0x7fff8f031ff7  com.apple.accounts.AccountsDaemon (113 - 113) <30F83BF7-2BAE-3BAD-B111-224346AF4B52> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8f032000 -     0x7fff8f05ffff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f060000 -     0x7fff8f097ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8f098000 -     0x7fff8f110ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8f111000 -     0x7fff8f192ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8f193000 -     0x7fff8f19cff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff8f19d000 -     0x7fff8f19dff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff8f19f000 -     0x7fff8f291fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8fb1b000 -     0x7fff8fb9dfff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8fb9e000 -     0x7fff8fbd8ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8fbd9000 -     0x7fff8fbf8fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff8fc79000 -     0x7fff8fcd8ff7  com.apple.StoreFoundation (1.0 - 1) <2F4B0037-C611-3561-A381-4FFFE4182830> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
        0x7fff8fcd9000 -     0x7fff8fcdbffb  libCGXType.A.dylib (775.16) <B2DC78CA-179F-39A7-8D0B-873DC0ACFE96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8fcdc000 -     0x7fff8fdfeff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8fdff000 -     0x7fff8fe0dfff  com.apple.AddressBook.ContactsFoundation (9.0 - 1563) <CCAB74BF-947C-384D-B4C8-E2118145555B> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8fe0e000 -     0x7fff8fe2efff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8fe97000 -     0x7fff90383ff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff90384000 -     0x7fff9039fff7  com.apple.aps.framework (4.0 - 4.0) <F3C3C246-101E-3E81-9608-D2D6E9352532> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff903a0000 -     0x7fff90550ff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff90551000 -     0x7fff90553fff  com.apple.EFILogin (2.0 - 2) <39895ACB-E756-342C-ABE5-DB7100EF0A69> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff9055d000 -     0x7fff90760ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9076e000 -     0x7fff9076efff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff9076f000 -     0x7fff907d6ffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff907d7000 -     0x7fff907f4ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff907f5000 -     0x7fff90802ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff90881000 -     0x7fff9088cfff  com.apple.CommerceCore (1.0 - 376.6.2) <3FD9A3A6-C12F-31E0-B90E-5E325B595750> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9088d000 -     0x7fff90895ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff90896000 -     0x7fff90898fff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff90899000 -     0x7fff909d6fff  com.apple.ImageIO.framework (3.3.0 - 1232) <D7AF3CD2-FAB2-3798-9C26-914886852DCD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff909d7000 -     0x7fff909f1ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff909ff000 -     0x7fff909fffff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff90a16000 -     0x7fff90dacfff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90dad000 -     0x7fff90e08fff  libTIFF.dylib (1232) <29A5C7F7-D50B-35B3-8FA2-A55A47E497A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff90e13000 -     0x7fff90e1bfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff90e1c000 -     0x7fff90e1cfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90e1d000 -     0x7fff90e2fff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff90e7f000 -     0x7fff912d2fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff912d8000 -     0x7fff9136afff  com.apple.SoftwareUpdate.framework (6 - 744.3.1) <5D93AF83-C519-3B20-A7B5-6BB3D4E9516D> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff9136b000 -     0x7fff915d5fff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff9186d000 -     0x7fff91875fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff91876000 -     0x7fff91879ff7  com.apple.AppleSystemInfo (3.1 - 3.1) <B40B3737-42A5-3D57-9E87-D3905EE5BADB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff9187a000 -     0x7fff918a5fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff918a6000 -     0x7fff918a6fff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff918a7000 -     0x7fff918b2fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff918b3000 -     0x7fff91941ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff91942000 -     0x7fff919fdff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff91a40000 -     0x7fff91a40fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff91a41000 -     0x7fff91a41fff  com.apple.WebKit2 (10600 - 10600.3.18) <798960DA-4067-34CB-910A-56CCFEEBC072> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff91a42000 -     0x7fff91a8eff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff91a8f000 -     0x7fff91ebffff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff91ecb000 -     0x7fff91f8eff7  libvMisc.dylib (516) <A84F3A3B-D349-3FBC-B5A6-E0F572734073> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91f8f000 -     0x7fff91fb0fff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff91fb1000 -     0x7fff92087ff3  com.apple.DiskImagesFramework (10.10.1 - 396) <E7478685-E829-372A-A945-A512730D3312> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff9217c000 -     0x7fff921e3ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff921e4000 -     0x7fff921e5ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff92231000 -     0x7fff92246fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff92348000 -     0x7fff92383fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff923e1000 -     0x7fff923f2ff7  libsystem_coretls.dylib (35.1.2) <BC691CD1-17B6-39A5-BD02-AF973695FD1D> /usr/lib/system/libsystem_coretls.dylib
        0x7fff92457000 -     0x7fff9245bfff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff9245c000 -     0x7fff9245efff  libRadiance.dylib (1232) <E670DDEF-60F8-3AEB-B6A2-B20A1340634C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff9245f000 -     0x7fff92501ff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff92507000 -     0x7fff92512ff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
        0x7fff92513000 -     0x7fff9251afff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff9251b000 -     0x7fff92529ff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9252a000 -     0x7fff92532fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff92533000 -     0x7fff92536ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff92566000 -     0x7fff9256ffff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff92598000 -     0x7fff9259cfff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff9259d000 -     0x7fff926abfff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff926ac000 -     0x7fff92a17fff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff92a18000 -     0x7fff92a44fff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff92a45000 -     0x7fff92a8eff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff92a8f000 -     0x7fff92a91fff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff92a92000 -     0x7fff92aa5ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff92aa6000 -     0x7fff93a5dffb  com.apple.WebCore (10600 - 10600.3.15) <59A28076-26E4-3CE2-B6FC-AF59308C0B95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff93a5e000 -     0x7fff93a7aff7  com.apple.pluginkit.framework (1.0 - 1) <FEB6FF0B-A688-37C9-93CF-E886E7ED3141> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff93a7b000 -     0x7fff93aefff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff93af0000 -     0x7fff93dd7ffb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff93dd8000 -     0x7fff93de6ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff93de7000 -     0x7fff93decff7  com.apple.ServerInformation (2.0 - 1) <78FDEDE5-202A-3A65-BE75-B0F44A811C80> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff93dfc000 -     0x7fff94946ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94aae000 -     0x7fff94ad1ff7  com.apple.framework.familycontrols (4.1 - 410) <153DC4C9-3C06-3147-8AC6-024AB4819C00> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff94add000 -     0x7fff94adefff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff94b18000 -     0x7fff94b21ff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff94b5f000 -     0x7fff94bb2ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff94bb3000 -     0x7fff94bbdfff  com.apple.IntlPreferences (2.0 - 150.1) <C62C6F4F-38B9-340B-82A6-1F82AFE1D724> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff94bbe000 -     0x7fff94c2dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff94c2e000 -     0x7fff94c36ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff94c37000 -     0x7fff94c40fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff94c41000 -     0x7fff94c42fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff94c47000 -     0x7fff94c77fff  com.apple.GSS (4.0 - 2.0) <FD154E62-F4CF-339D-B66C-AF4AED6A94A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff94c78000 -     0x7fff94c94ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff94c95000 -     0x7fff94cbdffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff94cbe000 -     0x7fff94ea3ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff94ea4000 -     0x7fff953cdff7  com.apple.QuartzComposer (5.1 - 325.1) <ABCC8B0F-9961-37D3-B231-9F2B9E027411> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff953ce000 -     0x7fff953d5fff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff953d6000 -     0x7fff953d8ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff953d9000 -     0x7fff953ddfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff953de000 -     0x7fff953f5ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff95412000 -     0x7fff95480ffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff95481000 -     0x7fff95495ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff95496000 -     0x7fff95497fff  libquit.dylib (182) <9C30277D-0220-381E-8543-51227DE5D23F> /usr/lib/libquit.dylib
        0x7fff95498000 -     0x7fff95767ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff95768000 -     0x7fff9576bfff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9576c000 -     0x7fff9576eff3  com.apple.SafariServices.framework (10600 - 10600.3.18) <2C2F0A8D-CC06-30CF-B247-93A96A25F0D5> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff9576f000 -     0x7fff95775ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff95776000 -     0x7fff95b4dfe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff95b4e000 -     0x7fff95b8bff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff95b8c000 -     0x7fff95c7fff7  libJP2.dylib (1232) <10B78725-0B8A-3D87-B2E3-8FEED0C07F21> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff95c80000 -     0x7fff95c9dfff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff95c9e000 -     0x7fff95cb9fff  com.apple.PackageKit.PackageUIKit (3.0 - 436) <A9D85786-9323-3C2D-A6A0-83443014A750> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff95cba000 -     0x7fff95f35ff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95f78000 -     0x7fff95fa0fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff95fa1000 -     0x7fff964b4ff3  com.apple.JavaScriptCore (10600 - 10600.3.13) <C0C3246C-D26F-3440-AC75-81CFFA4F9C91> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff964b5000 -     0x7fff9655bff7  com.apple.PDFKit (3.1 - 3.1) <D2D019DD-5DCA-3C0D-B9B7-0F919A6CD1DD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9655c000 -     0x7fff965a2ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff965bd000 -     0x7fff965edff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff965ee000 -     0x7fff965f4fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff965f5000 -     0x7fff96602ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff96603000 -     0x7fff96605fff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff96936000 -     0x7fff96965fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff96966000 -     0x7fff9698fffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff96990000 -     0x7fff96999fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff96a3d000 -     0x7fff96a7efff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff96a7f000 -     0x7fff96adeff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff96adf000 -     0x7fff96bd1ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff96c7f000 -     0x7fff96cccfff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff96ccd000 -     0x7fff96f79fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff96f7a000 -     0x7fff9705efff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff9705f000 -     0x7fff97071fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff97072000 -     0x7fff9711aff7  com.apple.PackageKit (3.0 - 436) <2EB311B0-89DC-3667-B5B6-8CE240411EC5> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff9711b000 -     0x7fff97123ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff97152000 -     0x7fff97194fff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff97198000 -     0x7fff971b2ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff97263000 -     0x7fff97293fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff97294000 -     0x7fff9729bfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff972dd000 -     0x7fff97369ff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff9736a000 -     0x7fff97398ff7  com.apple.CommerceKit (1.2.0 - 376.6.2) <684FCA6B-0F93-35EA-8174-63FEFFE05202> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff9739d000 -     0x7fff973c1ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff973c2000 -     0x7fff973e7ff7  libJPEG.dylib (1232) <09466709-4742-3418-A0AC-116EF9714E2D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff973e8000 -     0x7fff973eaff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff97401000 -     0x7fff9740cff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9740d000 -     0x7fff97411ff7  libGIF.dylib (1232) <061D5354-FE4F-3C7E-B563-99DC0198062D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff974ab000 -     0x7fff97d02ffb  com.apple.CoreGraphics (1.600.0 - 775.16) <864C1845-C41E-314C-A3B4-438DC39E5FBC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff97d03000 -     0x7fff97d79fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff97d7a000 -     0x7fff97dadff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff97dae000 -     0x7fff97daefff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff97daf000 -     0x7fff97dbafdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff97dbb000 -     0x7fff97dd4fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff97e86000 -     0x7fff97ec6ff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff97ed0000 -     0x7fff97f3cfff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff97f3d000 -     0x7fff97f57ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff97f58000 -     0x7fff97f6ffff  com.apple.login (3.0 - 3.0) <85DEFDD5-FC3E-3AA1-8037-12F2DCE6BE3D> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff98060000 -     0x7fff9807bff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff982da000 -     0x7fff982dbfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff982dc000 -     0x7fff98309fff  com.apple.Accounts (113 - 113) <990F0F61-6AC5-3076-932E-02A9A7F75AC4> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff9830a000 -     0x7fff98357ff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff98471000 -     0x7fff98482ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff98483000 -     0x7fff98486ff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff98487000 -     0x7fff98487fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff98488000 -     0x7fff98499fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff98553000 -     0x7fff98554fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff988f3000 -     0x7fff98aed46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff98aee000 -     0x7fff98b19fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff98db2000 -     0x7fff98dddff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff98dde000 -     0x7fff98dfbfff  com.apple.DistributionKit (700 - 920) <E0ED0C5F-6C97-3AB5-A33C-58DE0C1100A3> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff98f31000 -     0x7fff98f7eff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff98fa4000 -     0x7fff990d6ff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff990e7000 -     0x7fff9941afff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
        0x7fff9941b000 -     0x7fff9941cfff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff9946d000 -     0x7fff994feff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff994ff000 -     0x7fff994ffff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D1

    Click here and follow the instructions, or if there’s a type of adware not covered by them on the computer, these ones. If you're willing to use a tool to remove it(you don't need to, but may find it easier), you can instead run Adware Medic; this link is a direct download.
    (122195)

  • Firefox 3.6.8 on Windows XP crashes each time after it is opened. It remains open for about 1 minute and closes regardless of the page it is on. Windows Expl is having the same problem. I have a submitted a crash report each time w/same email.

    I have sent a crash report each time with my hotmail address. That should include the specifics you are looking for. I am sending this email from personal laptop so I do not have those specifics at this time.
    Using ccleaner and Macafee I have run scans and can detect no virus or malware.

    See this -
    https://support.mozilla.com/en-US/kb/Firefox+crashes

Maybe you are looking for