Web AS restarts due to classes being loaded multiple number of times

Hi,
We are developing a custom application which uses Dynpro for UI and EJBs/java for business and DAO layer.
->The application size is very big and to make the build and deployment faster, we have split the application into multiple ears.
->We have made sure that none of the classes are repeated across ears.
->We are using Web AS 2004s SP12 on Solaris UNIX platform.
With all the ears being deployed on the application server, we notice application server being restarted once/twice per day. We have gone through the logs etc in detail and we found that most of the application classes are being loaded multiple number of times. In some cases, same class is being loaded more than 150 times. Due to this reason, permSpace area of JVM is getting exhausted and JVM is crashing. permSpace of JVM is set to 1024M at the moment.
Any thoughts on what could be wrong here?
Please let me know if you need any more details on this.
Thanks, Chandra

Hi,
Which JDK version is in use ?  If possible, use JDK 1.4.2.17
Change Perm size :   -XX:PermSize=512m -XX:MaxPermSize=512m
Check if the below mentioned JVM parameters exists in the list :
-verbose:gc
-Xloggc:GC.log
//   -Xmx2048m (if -Xmx mentioned the JVM Parameter list, remove it) as you have already mentioned in the JVM Heapsize  //
-Xms2048m
-XX:PermSize=512m -XX:MaxPermSize=512m
-XX:NewSize=320m -XX:MaxNewSize=320m
-XX:SurvivorRatio=2
-XX:TargetSurvivorRatio=90
-XX:+PrintGCDetails
-XX:+PrintGCTimeStamps
-XX:+UseParNewGC
-XX:+HandlePromotionFailure
-XX:+PrintClassHistogram
Regards
Shaji

Similar Messages

  • I have rented a movie on my ipad. It did not download due to not being on wifi at the time.  I know I completed the rental because my gift card balance went down $3.99 plus tax.  How do I find where to download the movie?

    I have rented a movie on my ipad. It did not download due to not being on wifi at the time.  I know I completed the rental because my gift card balance went down $3.99 plus tax.  How do I find where to download the movie?

    But now I can't find the actual movie...I go to iTunes to purchases and view movies , to downloads and searched the title of the movie...I can see an icon of it and it is in a separate place from other purchases but it says downloaded in faded lettering. Where is it?
    If you can't find the movie you downloaded on your iPad, iPhone or iPod Touch, check inside your Videos App

  • View wdDoInit being loaded multiple times

    Hello all,
    I'm building an WD application that has multiple views embeded in Portal.
    At the lowest level, i got in the detailed navigation multiple IViews, mapped to the corresponding View in WD.
    In a specific case, i got a list of views on the detailed navigation, that are common to the same component
    Detailed Navigation
    View1 -
    >|
    View2 -
    >| ---> Web dynpro component X
    View.. -
    >|
    My problem is that, in one of the views, a fire out plug call is being made in the wdDoInit (initializing another component) that takes some time.
    What happens is that, when the portal workset is loaded (that containts the detailed navigation multiple iviews) the wdDoInit from all of the views is called, making the application slow.
    I tried to change the view properties from framework_Controlled to when_visible but it didn't work. What i'm possible doing wrong?
    Greetings!

    Hi,
    Which JDK version is in use ?  If possible, use JDK 1.4.2.17
    Change Perm size :   -XX:PermSize=512m -XX:MaxPermSize=512m
    Check if the below mentioned JVM parameters exists in the list :
    -verbose:gc
    -Xloggc:GC.log
    //   -Xmx2048m (if -Xmx mentioned the JVM Parameter list, remove it) as you have already mentioned in the JVM Heapsize  //
    -Xms2048m
    -XX:PermSize=512m -XX:MaxPermSize=512m
    -XX:NewSize=320m -XX:MaxNewSize=320m
    -XX:SurvivorRatio=2
    -XX:TargetSurvivorRatio=90
    -XX:+PrintGCDetails
    -XX:+PrintGCTimeStamps
    -XX:+UseParNewGC
    -XX:+HandlePromotionFailure
    -XX:+PrintClassHistogram
    Regards
    Shaji

  • Need help loading multiple movie clips.

    Hello forum members,
    I've run into a bit of an irritating problem and perhaps
    someone can clue me in to the answer.
    I'm creating a SWF which uses loadMovie (I've also tried
    creating a MovieClipLoader instance and using instance.loadClip) to
    bring in 2 other SWFs.
    See below AS in first couple frames of main movie's
    time-line:
    First movie:
    this.createEmptyMovieClip("mcToolbar", 10);
    with (mcToolbar)
    _x=8;
    _y=68;
    loadMovie("toolbar.swf",mcToolbar);
    Second movie:
    this.createEmptyMovieClip("mcWindow", 11);
    with (mcToolbar)
    _x=500;
    _y=60;
    loadMovie("textwindow.swf",mcWindow);
    This works great when opening up my main SWF in Flash Player
    and when viewing the movie in the published HTML web page.
    However, I'm using FlashObject to load my main movie to get
    around that annoying "Click to activate this control" thing.
    When viewing this version of the web page with my main SWF
    being loaded, I see the SWF load, then the first loadMovie
    loads....THEN the first loadMovie disappears and the second
    loadMovie loads and appears at the wrong X and Y coordinates.
    Any ideas?

    Ok, I know replying to my own post is odd on some forums, but
    anyhow:
    I've done some further testing and find that FlashObject
    isn't the problem.
    Looking at the AS code above, it is clear that the SWFs to be
    loaded must be in the same folder as the HTML web-page.
    However, my intent is that these small SWFs that are being
    loaded in by the main SWF will be shared by many other movies,
    therefore I'd like to stick them (the physical SWF files) closer to
    the root of the site (e.g. SiteFoler->flash).
    I see that my problem rears its ugly head when I try to
    reference these movies in my main flash movie as follows:
    First movie:
    this.createEmptyMovieClip("mcToolbar", 10);
    with (mcToolbar)
    _x=8;
    _y=68;
    loadMovie("../../../flash/toolbar.swf",mcToolbar);
    Second movie:
    this.createEmptyMovieClip("mcWindow", 11);
    with (mcToolbar)
    _x=500;
    _y=60;
    loadMovie("../../../flash/textwindow.swf",mcWindow);
    In the example above, my HTML page is 3 folders deep whereas
    the movies I'm loading in are 1 folder deep in the folder labeled
    "flash".
    By doing it in this manner, I get the problems I described
    above (first movie loads then disappears and second movie loads in
    wrong position).
    Any ideas as to why the physical location of the SWFs being
    pulled in is causing this problem? I'd like to try to avoid copying
    the SWFs to each place their being refrenced from as that could be
    a major maintenance headace.
    Thanks,
    Ben

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • Web application restarts when JSP or .class files on disk change

    Hello,
    I am deploying a Spring enabled web application into WLS 12 using IntelliJ11.
    I am building an exploded war in a target directory and have my WLS domain's config.xml set up to pick up the application from that directory directly. I am not using a staging approach.
    The application starts up fine in debug mode in IntelliJ 11. I am able to make changes to Java classes, hit Ctrl+F9 to "Make the Project" and changed Java classes get reloaded and I see the changes I have made.
    All this happens without WLS reloading the web application, which is as it should be.
    When I try to make changes to JSPs, I start seeing a different behavior. This is how I'm changing my JSPs:
    1) I edit the file in IntelliJ.
    2) I hit Ctrl+F9....nothing happens, I don't see my changes in the JSP, I don't see any web application restarts. This is because with a Ctrl+F9, IntelliJ does not update the JSP in the target directory.
    3) When I hit Ctrl+F10 instead, i.e. "Update application", IntelliJ presents me with a choice to "Update resources", "Update classes & resources", "redeploy", "restart the server".
    I choose "Update resources"
    When I do this, I see on the file system that IntelliJ has changed the JSP in the target directory. As it should. WLS is also using this directory, so it should see the changed JSP and recompile and show me my changes.
    Now when I access the application, I see varying behavior.
    Sometimes I see my JSP changes just fine and sometimes instead of seeing my changes, my entire web application starts shutting down and attempts to restart. Note, I said the web application and not the WLS server.
    It's almost as if I've hit a Redeploy.
    I have disabled "Fast Swap", as I cannot get my Spring application context to load when this is enabled. So, I'm just using Hot Swap.
    Why is WLS restarting my web application once in a while when my JSPs change?
    And this is not restricted to JSP files only. If I choose the option to "Update classes & resources", any Java classes I've changed get updated on the disk in the target directory. Now WLS once in a while decides that it needs to restart my web application. I can get away with hitting Ctrl+F9, which does not update the .class on the disk and only in the JVM, and see my changes.
    But I have no such option for JSPs. So hot swap essentially is erratic for JSPs in my deployment in WLS 12.

    There is a workaround for this. Not pretty, but it works for me.
    Instead of having IntelliJ update the exploded war when I do a Make (Ctrl+F9), I tell IntelliJ to NOT do any updates to the artifact on the disk.
    That is, just compile. As explained before, that works for changes to Java classes. IntelliJ/Java does a hot swap in memory, so your Java changes are seen.
    Now for JSPs. Write an ant target that copies the JSPs into the deployed exploded war.
    For some reason, when ant does the copying, WLS doesn't freak out and decide to restart the web application. I have no idea why. I did a directory compare when IntelliJ did the copying, and the only thing that had changed was the JSP I had modified.
    Anyways that's one solution.
    The other is, as my colleague tested out, run in Production mode, and have the jsp reload check parameter set to 0, which means check the JSPs always. This is needed because in Production mode, -1 is the default value, which means never check for JSP changes.

  • How to know which class is being loaded from which jar file & path location

    Hi,
    I have some Java code using several jar files.
    I want to remove those jar files which are not being used by the code.
    So , I want the JVM to output which class is being loaded from which jar .
    Using "java -verbose" option doesnt solve the problem because the required info is printed only for the classes/jars native to the J2SE package .
    Can anyone provide a solution which does not require me to modify the code?
    Thanks,
    Danish

    Classpath Helper

  • "3D Functionality currently disabled due to OpenGL being disabled"

    Hi guys I need help,
    I'm trying to work on photoshop CC but everytime I try to work in 3D mode I get the error message "3D Functionality currently disabled due to OpenGL being disabled".
    -I've updated my drivers
    -Installed windows updates
    -Restarted my system
    System Info:
    Adobe Photoshop Version: 2014.2.2 20141204.r.310 2014/12/04:23:59:59 CL 994532  x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 2
    Processor speed: 1596 MHz
    Built-in memory: 5996 MB
    Free memory: 2686 MB
    Memory available to Photoshop: 5142 MB
    Memory used by Photoshop: 100 %
    3D Multitone Printing: Disabled.
    Windows 2x UI: Disabled.
    Highbeam: Enabled.
    Image tile size: 128K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=768, right=1366
    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=0
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=2172
    glgpu[0].GLName="Intel(R) HD Graphics"
    glgpu[0].GLVendor="Intel"
    glgpu[0].GLVendorID=0
    glgpu[0].GLDriverVersion="9.17.10.4101"
    glgpu[0].GLRectTextureSize=8192
    glgpu[0].GLRenderer="Intel(R) HD Graphics"
    glgpu[0].GLRendererID=0
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd 32"
    glgpu[0].GLDriverDate="20150130000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.30 - Intel Build 9.17.10.4101"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[1447 ]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[512]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[1024]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[41]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    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]=0
    License Type: Subscription
    Serial number: 90970388128582100055
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\
    Temporary file path: C:\Users\Natalie\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 684.5G, 433.2G 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.2  
       Plugin.dll   Adobe Photoshop CC 2014   15.2.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.54  
       PSArt.dll   Adobe Photoshop CC 2014   15.2.2  
       PSViews.dll   Adobe Photoshop CC 2014   15.2.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.2 (2014.2.2 x001 x003)
       Accented Edges 15.2.2
       Adaptive Wide Angle 15.2.2
       Angled Strokes 15.2.2
       Average 15.2.2 (2014.2.2 x001 x003)
       Bas Relief 15.2.2
       BMP 15.2.2
       Camera Raw 8.7.1
       Camera Raw Filter 8.7.1
       Chalk & Charcoal 15.2.2
       Charcoal 15.2.2
       Chrome 15.2.2
       Cineon 15.2.2 (2014.2.2 x001 x003)
       Clouds 15.2.2 (2014.2.2 x001 x003)
       Collada 15.2.2 (2014.2.2 x001 x003)
       Color Halftone 15.2.2
       Colored Pencil 15.2.2
       CompuServe GIF 15.2.2
       Conté Crayon 15.2.2
       Craquelure 15.2.2
       Crop and Straighten Photos 15.2.2 (2014.2.2 x001 x003)
       Crop and Straighten Photos Filter 15.2.2
       Crosshatch 15.2.2
       Crystallize 15.2.2
       Cutout 15.2.2
       Dark Strokes 15.2.2
       De-Interlace 15.2.2
       Dicom 15.2.2
       Difference Clouds 15.2.2 (2014.2.2 x001 x003)
       Diffuse Glow 15.2.2
       Displace 15.2.2
       Dry Brush 15.2.2
       Eazel Acquire 15.2.2 (2014.2.2 x001 x003)
       Embed Watermark 4.0
       Entropy 15.2.2 (2014.2.2 x001 x003)
       Export Color Lookup Tables NO VERSION
       Extrude 15.2.2
       FastCore Routines 15.2.2 (2014.2.2 x001 x003)
       Fibers 15.2.2
       Film Grain 15.2.2
       Filter Gallery 15.2.2
       Flash 3D 15.2.2 (2014.2.2 x001 x003)
       Fresco 15.2.2
       Glass 15.2.2
       Glowing Edges 15.2.2
       Google Earth 4 15.2.2 (2014.2.2 x001 x003)
       Grain 15.2.2
       Graphic Pen 15.2.2
       Halftone Pattern 15.2.2
       HDRMergeUI 15.2.2
       HSB/HSL 15.2.2
       IFF Format 15.2.2
       IGES 15.2.2 (2014.2.2 x001 x003)
       Ink Outlines 15.2.2
       JPEG 2000 15.2.2
       Kurtosis 15.2.2 (2014.2.2 x001 x003)
       Lens Blur 15.2.2
       Lens Correction 15.2.2
       Lens Flare 15.2.2
       Liquify 15.2.2
       Matlab Operation 15.2.2 (2014.2.2 x001 x003)
       Maximum 15.2.2 (2014.2.2 x001 x003)
       Mean 15.2.2 (2014.2.2 x001 x003)
       Measurement Core 15.2.2 (2014.2.2 x001 x003)
       Median 15.2.2 (2014.2.2 x001 x003)
       Mezzotint 15.2.2
       Minimum 15.2.2 (2014.2.2 x001 x003)
       MMXCore Routines 15.2.2 (2014.2.2 x001 x003)
       Mosaic Tiles 15.2.2
       Multiprocessor Support 15.2.2 (2014.2.2 x001 x003)
       Neon Glow 15.2.2
       Note Paper 15.2.2
       NTSC Colors 15.2.2 (2014.2.2 x001 x003)
       Ocean Ripple 15.2.2
       OpenEXR 15.2.2
       Paint Daubs 15.2.2
       Palette Knife 15.2.2
       Patchwork 15.2.2
       Paths to Illustrator 15.2.2
       PCX 15.2.2 (2014.2.2 x001 x003)
       Photocopy 15.2.2
       Photoshop 3D Engine 15.2.2 (2014.2.2 x001 x003)
       Photoshop Touch 14.0
       Picture Package Filter 15.2.2 (2014.2.2 x001 x003)
       Pinch 15.2.2
       Pixar 15.2.2 (2014.2.2 x001 x003)
       Plaster 15.2.2
       Plastic Wrap 15.2.2
       PLY 15.2.2 (2014.2.2 x001 x003)
       PNG 15.2.2
       Pointillize 15.2.2
       Polar Coordinates 15.2.2
       Portable Bit Map 15.2.2 (2014.2.2 x001 x003)
       Poster Edges 15.2.2
       PRC 15.2.2 (2014.2.2 x001 x003)
       Radial Blur 15.2.2
       Radiance 15.2.2 (2014.2.2 x001 x003)
       Range 15.2.2 (2014.2.2 x001 x003)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.2.2
       Ripple 15.2.2
       Rough Pastels 15.2.2
       Save for Web 15.2.2
       ScriptingSupport 15.2.2
       Shake Reduction 15.2.2
       Shear 15.2.2
       Skewness 15.2.2 (2014.2.2 x001 x003)
       Smart Blur 15.2.2
       Smudge Stick 15.2.2
       Solarize 15.2.2 (2014.2.2 x001 x003)
       Spatter 15.2.2
       Spherize 15.2.2
       Sponge 15.2.2
       Sprayed Strokes 15.2.2
       Stained Glass 15.2.2
       Stamp 15.2.2
       Standard Deviation 15.2.2 (2014.2.2 x001 x003)
       STL 15.2.2 (2014.2.2 x001 x003)
       Sumi-e 15.2.2
       Summation 15.2.2 (2014.2.2 x001 x003)
       Targa 15.2.2
       Texturizer 15.2.2
       Tiles 15.2.2
       Torn Edges 15.2.2
       Twirl 15.2.2
       U3D 15.2.2 (2014.2.2 x001 x003)
       Underpainting 15.2.2
       Vanishing Point 15.2.2
       Variance 15.2.2 (2014.2.2 x001 x003)
       Virtual Reality Modeling Language | VRML 15.2.2 (2014.2.2 x001 x003)
       Water Paper 15.2.2
       Watercolor 15.2.2
       Wave 15.2.2
       Wavefront|OBJ 15.2.2 (2014.2.2 x001 x003)
       WIA Support 15.2.2 (2014.2.2 x001 x003)
       Wind 15.2.2
       Wireless Bitmap 15.2.2 (2014.2.2 x001 x003)
       ZigZag 15.2.2
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Libraries
       Adobe Color Themes
    Installed TWAIN devices: NONE

    You system info does not show GPU disabled it shows
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    and you intel HD Graphic has the required video memory the driver date is quite new end of january.
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=2172
    glgpu[0].GLName="Intel(R) HD Graphics"
    glgpu[0].GLVendor="Intel"
    glgpu[0].GLVendorID=0
    glgpu[0].GLDriverVersion="9.17.10.4101"
    glgpu[0].GLRectTextureSize=8192
    glgpu[0].GLRenderer="Intel(R) HD Graphics"
    glgpu[0].GLRendererID=0
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd 32"
    glgpu[0].GLDriverDate="20150130000000.000000-000"
    also CC 2014 is upddates
    Adobe Photoshop Version: 2014.2.2 20141204.r.310 2014/12/04:23:59:59 CL 994532  x64
    you display also meets requirements
    Display Bounds: top=0, left=0, bottom=768, right=1366

  • Error on live web server - Retrieving the COM class factory for component

    I've had a good read of this forum and can't find the answer to this particular issue. Everything works fine until I upload my vb.net/crystal reports solution to my live production web server. The error I get when I try to open a Crystal Report from the web is:
    Retrieving the COM class factory for component with CLSID {059AC10F-0010-4C43-8876-1FC7BEAF218B} failed due to the following error: 80070005.
    It is the following line of my VB.net source code that causes the error.
    Dim oRpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
    I've installed CRRuntime_12_0_mlb.msi to my Windows 2008 / IIS7 web server (This is a 64bit server).
    The website works fine on a 32 bit system but on this new server I keep getting the above errors.
    I've tried resinstalling the crystal reports numerous times and restarting. I've also tried installing the SP2 version of the CRRuntime and still get the same errors.
    I've added read/write permissions to Windows/Temp directory for Network Service.
    I've tried to manually register sacommlayer.dll which registers correctly.
    The website is not compiled into a binary, the aspx.vb files are simply uploaded to the webserver and compiled on the fly by the server.
    I've tried to add <identity impersonate="true" userName="MACHINENAME\administrator" password="PASSWORD" /> into the web.config file to see if this gets any further.
    It does however then errors on the following VB Line.
    oRpt.SetDataSource(dsSWMP)
    with the error
    Failed to load database information.Error in File crSitewasteManagementPlan {BEC6811A-D612-4ED6-9AF7-B0C9BED7A966}.rpt:
    Failed to load database information
    I've also tried opening up the C: / D: drives to the NETWORK SERVICE account with full control (temporarily) to see if I can get past the errors, however this has not worked for me.
    Any other ideas to why this might not be working? Ideally I would not like to be using the identity impersonation at all.
    Kind Regards
    James

    Dear Ludek,
    I have tried manually registering the sacommlayer.dll already however this didn't make a difference.
    I have checked versions of this DLL between the 2 servers and they are the same. (v12.0.0.683)
    Find below the logs from process monitor for the 64 bit server.
    It definitely shows where it is failing.. any suggestions to fix it?
    I can email more detailed logs if you supply me with your email address.
    Kind Regards
    James
    processes from erroring 64 bit server
    00:28:46.6463180     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}     SUCCESS     Desired Access: Read
    00:28:46.6463685     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\TreatAs     NAME NOT FOUND     Desired Access: Query Value
    00:28:46.6463935     w3wp.exe     3948     RegQueryKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}     BUFFER TOO SMALL     Query: Name, Length: 0
    00:28:46.6464137     w3wp.exe     3948     RegQueryKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}     SUCCESS     Query: Name
    00:28:46.6464472     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\Progid     NAME NOT FOUND     Desired Access: Query Value
    00:28:46.6464701     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\(Default)     SUCCESS     Type: REG_SZ, Length: 54, Data: InProcAdapterMonitor Class
    00:28:46.6464924     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\(Default)     SUCCESS     Type: REG_SZ, Length: 54, Data: InProcAdapterMonitor Class
    00:28:46.6465262     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32     SUCCESS     Desired Access: Read
    00:28:46.6465561     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32\InprocServer32     NAME NOT FOUND     Length: 144
    00:28:46.6465759     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32\(Default)     BUFFER OVERFLOW     Length: 144
    00:28:46.6465958     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32\(Default)     BUFFER OVERFLOW     Length: 144
    00:28:46.6466137     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32\(Default)     SUCCESS     Type: REG_SZ, Length: 196, Data: C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll
    00:28:46.6466339     w3wp.exe     3948     RegQueryValue     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32\ThreadingModel     SUCCESS     Type: REG_SZ, Length: 10, Data: Both
    00:28:46.6466578     w3wp.exe     3948     RegCloseKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocServer32     SUCCESS     
    00:28:46.6466904     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocHandler32     NAME NOT FOUND     Desired Access: Query Value
    00:28:46.6467217     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\InprocHandler     NAME NOT FOUND     Desired Access: Query Value
    00:28:46.6467441     w3wp.exe     3948     RegCloseKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}     SUCCESS     
    00:28:46.6468194     w3wp.exe     3948     RegOpenKey     HKU\S-1-5-21-3073440563-3662229771-834689312-1170_Classes\Wow6432Node     NAME NOT FOUND     Desired Access: Maximum Allowed
    00:28:46.6468529     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node     SUCCESS     Desired Access: Maximum Allowed, Granted Access: Read
    00:28:46.6468904     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}     SUCCESS     Desired Access: Read
    00:28:46.6469158     w3wp.exe     3948     RegCloseKey     HKCR\Wow6432Node     SUCCESS     
    00:28:46.6469458     w3wp.exe     3948     RegOpenKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}\TreatAs     NAME NOT FOUND     Desired Access: Read
    00:28:46.6469678     w3wp.exe     3948     RegCloseKey     HKCR\Wow6432Node\CLSID\{059AC10F-0010-4C43-8876-1FC7BEAF218B}     SUCCESS     
    00:28:46.6471878     w3wp.exe     3948     QueryOpen     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     FAST IO DISALLOWED     
    00:28:46.6473271     w3wp.exe     3948     CreateFile     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     ACCESS DENIED     Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a
    00:28:46.6476098     w3wp.exe     3948     CreateFile     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     ACCESS DENIED     Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a
    00:28:46.6478526     w3wp.exe     3948     QueryOpen     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     FAST IO DISALLOWED     
    00:28:46.6479856     w3wp.exe     3948     CreateFile     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     ACCESS DENIED     Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a
    00:28:46.6482284     w3wp.exe     3948     CreateFile     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     ACCESS DENIED     Desired Access: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a
    00:28:46.6484770     w3wp.exe     3948     CreateFile     C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sacommlayer.dll     ACCESS DENIED     Desired Access: Execute/Traverse, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a
    00:28:46.6489837     w3wp.exe     3948     QueryOpen     C:\Windows\SysWOW64\inetsrv\w3wp.exe.config     FAST IO DISALLOWED     
    00:28:46.6490819     w3wp.exe     3948     CreateFile     C:\Windows\SysWOW64\inetsrv\w3wp.exe.config     NAME NOT FOUND     Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a
    sacommlayer.dll 12.0.0.683
    Edited by: sw1sher2 on Feb 18, 2010 1:55 AM

  • Computer Was Restarted Due to a Problem

    Howdy--
    My Computer was Restarted Due to a Problem...this has been happening a ton in the last week or so.
    Here is the Crash Report.
    Any ideas?
    Thanks!
    MC
    Anonymous UUID:       ACEC4CBA-0F42-E1FE-9C17-7E0286DDEFC5
    Fri Sep 12 07:16:19 2014
    panic(cpu 2 caller 0xffffff802e4526cf): "a freed zone element has been modified: expected 0xdeadbeefdeadbeef but found 0xdeadbeefd6adbeef, bits changed 0x8000000, at offset 8 of 128 in zone: kalloc.128"@/SourceCache/xnu/xnu-2422.110.17/osfmk/kern/zalloc.c:461
    Backtrace (CPU 2), Frame : Return Address
    0xffffff82188435d0 : 0xffffff802e422f79
    0xffffff8218843650 : 0xffffff802e4526cf
    0xffffff82188436b0 : 0xffffff802e451dc9
    0xffffff82188437b0 : 0xffffff802e42aa3f
    0xffffff82188437e0 : 0xffffff802e8508b2
    0xffffff8218843810 : 0xffffff802e850a72
    0xffffff8218843840 : 0xffffff802e8ba3bf
    0xffffff8218843870 : 0xffffff802e8ba30c
    0xffffff8218843910 : 0xffffff802e8b99ea
    0xffffff8218843960 : 0xffffff7fb0385ca9
    0xffffff82188439a0 : 0xffffff7fb0385e0a
    0xffffff82188439d0 : 0xffffff7fb038dab7
    0xffffff8218843a20 : 0xffffff7fb038d556
    0xffffff8218843aa0 : 0xffffff7fb0389e9b
    0xffffff8218843b60 : 0xffffff7fb038739b
    0xffffff8218843b90 : 0xffffff802e8d03cd
    0xffffff8218843bf0 : 0xffffff802e8cdf7f
    0xffffff8218843d40 : 0xffffff802e4b6998
    0xffffff8218843e50 : 0xffffff802e426bc1
    0xffffff8218843e80 : 0xffffff802e4139c5
    0xffffff8218843ef0 : 0xffffff802e41e013
    0xffffff8218843f70 : 0xffffff802e4c9b8d
    0xffffff8218843fb0 : 0xffffff802e4f3f66
          Kernel Extensions in backtrace:
             com.parallels.kext.hypervisor(8.0)[00000000-0000-0000-0000-000000000000]@0xffff ff7fb0384000->0xffffff7fb03c7fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7faeabe000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7faeda6000
    BSD process name corresponding to current thread: prl_vm_app
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x000000002e200000
    Kernel text base: 0xffffff802e400000
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 3473170095370
    last loaded kext at 533513358108: com.parallels.filesystems.prlufs 2010.12.28 (addr 0xffffff7fb0429000, size 94208)
    last unloaded kext at 455972332102: com.apple.driver.AppleUSBUHCI 656.4.1 (addr 0xffffff7faf144000, size 65536)
    loaded kexts:
    com.parallels.filesystems.prlufs 2010.12.28
    com.parallels.kext.vnic 8.0 18619.1001606
    com.parallels.kext.netbridge 8.0 18619.1001606
    com.parallels.kext.hidhook 8.0 18619.1001606
    com.parallels.kext.hypervisor 8.0 18619.1001606
    com.parallels.kext.usbconnect 8.0 18619.1001606
    com.bresink.driver.BRESINKx86Monitoring 8.0
    com.Logitech.Unifying.HID Driver 1.2.0
    com.Logitech.Control Center.HID Driver 3.4.0
    com.apple.filesystems.smbfs 2.0.2
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AGPM 100.14.28
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.ApplePolicyControl 3.6.22
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleUSBDisplays 360.8.14
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AppleLPC 1.7.0
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelHD3000Graphics 8.2.4
    com.apple.driver.AppleIntelSNBGraphicsFB 8.2.4
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMC 3.1.8
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleUSBAudio 2.9.5f8
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIUpAdapter 1.4.5
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    Unable to gather system configuration information.Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i7, 2.7 GHz, 16 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x859B, 0x43543130323436344246313333392E433136
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x859B, 0x43543130323436344246313333392E433136
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci11c1,5901, IEEE 1394 Open HCI, Thunderbolt@187,0,0
    PCI Card: Apple 57761-B0, Ethernet Controller, Thunderbolt@188,0,0
    PCI Card: Apple 57761-B0, Ethernet Controller, Thunderbolt@194,0,0
    PCI Card: pci11c1,5901, IEEE 1394 Open HCI, Thunderbolt@193,0,0
    PCI Card: pci12d8,400e, USB Open Host Controller, Thunderbolt@185,0,0
    PCI Card: pci12d8,400f, USB Enhanced Host Controller, Thunderbolt@185,0,2
    PCI Card: pci12d8,400e, USB Open Host Controller, Thunderbolt@185,0,1
    PCI Card: pci12d8,400e, USB Open Host Controller, Thunderbolt@199,0,0
    PCI Card: pci12d8,400e, USB Open Host Controller, Thunderbolt@199,0,1
    PCI Card: pci12d8,400f, USB Enhanced Host Controller, Thunderbolt@199,0,2
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: Hub
    USB Device: USB RECEIVER
    USB Device: Keyboard Hub
    USB Device: USB Receiver
    USB Device: Apple Keyboard
    USB Device: Apple Thunderbolt Display
    USB Device: Display Audio
    USB Device: FaceTime HD Camera (Display)
    USB Device: Hub
    USB Device: My Passport 070A
    USB Device: FreeAgent Go
    USB Device: My Passport 0748
    USB Device: Display Audio
    USB Device: FaceTime HD Camera (Display)
    USB Device: Apple Thunderbolt Display
    Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1
    Thunderbolt Device: Thunderbolt Display, Apple Inc., 1, 22.2

    I don't use Chrome on my Mac side.
    I opened Chrome up on the Parallels side and cut and paste "chrome://flags" into the browser window but I was unable to find the "GPU" line. 
    So this fix did not help.
    Any other ideas?
    How might I isolate to this being a hardware vs software issue?
    Thanks,
    MC

  • Mid 2010 Macbook Pro Keeps Restarting due to Kernel Panic. Ideas for how to fix?

    So my Mid 2010 Macbook Pro keeps randomly restarting, and giving me a screen that says something like "your computer restarted due to a problem."
    Looks like it as a kernel panic, but I have no idea what this is.  Seems to be no pattern for when it crashes.  Used to do it maybe once a month and now this is the 5th time in two days.
    Any idea what might be going on? Looked at past threads but nothing seemed to apply. 
    Here's the issue report:
    Interval Since Last Panic Report:  3966250 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    7A9C4557-3A15-F201-C5F0-248B698BCE76
    Sun Mar  3 14:26:35 2013
    panic(cpu 3 caller 0xffffff7f85c9bb25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811930d000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80edd0b260 : 0xffffff800541d626
    0xffffff80edd0b2d0 : 0xffffff7f85c9bb25
    0xffffff80edd0b360 : 0xffffff7f85d954b3
    0xffffff80edd0b3c0 : 0xffffff7f85d95527
    0xffffff80edd0b430 : 0xffffff7f860aa853
    0xffffff80edd0b570 : 0xffffff7f85dbb659
    0xffffff80edd0b5a0 : 0xffffff7f85ca58da
    0xffffff80edd0b650 : 0xffffff7f85ca0fac
    0xffffff80edd0b840 : 0xffffff7f85ca2ade
    0xffffff80edd0b920 : 0xffffff7f86dccad5
    0xffffff80edd0b960 : 0xffffff7f86de2507
    0xffffff80edd0b980 : 0xffffff7f86e01353
    0xffffff80edd0b9c0 : 0xffffff7f86e013b1
    0xffffff80edd0ba00 : 0xffffff7f86de7c43
    0xffffff80edd0ba50 : 0xffffff7f86da20fc
    0xffffff80edd0bae0 : 0xffffff7f86d9defa
    0xffffff80edd0bb10 : 0xffffff7f86d9baab
    0xffffff80edd0bb40 : 0xffffff80058650c3
    0xffffff80edd0bbc0 : 0xffffff8005867153
    0xffffff80edd0bc20 : 0xffffff8005864b8f
    0xffffff80edd0bd70 : 0xffffff80054981e1
    0xffffff80edd0be80 : 0xffffff8005420aed
    0xffffff80edd0beb0 : 0xffffff8005410448
    0xffffff80edd0bf00 : 0xffffff800541961b
    0xffffff80edd0bf70 : 0xffffff80054a5b16
    0xffffff80edd0bfb0 : 0xffffff80054ced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c34 000->0xffffff7f85f36fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5f44000->0xffffff7f86266fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86d83000 ->0xffffff7f86e45fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 13893412243014
    last loaded kext at 739492449806: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8793f000, size 229376)
    last unloaded kext at 341224120991: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f86496000, size 65536)
    loaded kexts:
    com.silex.driver.sxuptp          1.5.1
    com.jft.driver.PdaNetDrv          1.0.64
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    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.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x8634, 0x535550455254414C454E5430310000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet Adaptor (en2), Ethernet, en2
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    So my Mid 2010 Macbook Pro keeps randomly restarting, and giving me a screen that says something like "your computer restarted due to a problem."
    Looks like it as a kernel panic, but I have no idea what this is.  Seems to be no pattern for when it crashes.  Used to do it maybe once a month and now this is the 5th time in two days.
    Any idea what might be going on? Looked at past threads but nothing seemed to apply. 
    Here's the issue report:
    Interval Since Last Panic Report:  3966250 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    7A9C4557-3A15-F201-C5F0-248B698BCE76
    Sun Mar  3 14:26:35 2013
    panic(cpu 3 caller 0xffffff7f85c9bb25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811930d000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80edd0b260 : 0xffffff800541d626
    0xffffff80edd0b2d0 : 0xffffff7f85c9bb25
    0xffffff80edd0b360 : 0xffffff7f85d954b3
    0xffffff80edd0b3c0 : 0xffffff7f85d95527
    0xffffff80edd0b430 : 0xffffff7f860aa853
    0xffffff80edd0b570 : 0xffffff7f85dbb659
    0xffffff80edd0b5a0 : 0xffffff7f85ca58da
    0xffffff80edd0b650 : 0xffffff7f85ca0fac
    0xffffff80edd0b840 : 0xffffff7f85ca2ade
    0xffffff80edd0b920 : 0xffffff7f86dccad5
    0xffffff80edd0b960 : 0xffffff7f86de2507
    0xffffff80edd0b980 : 0xffffff7f86e01353
    0xffffff80edd0b9c0 : 0xffffff7f86e013b1
    0xffffff80edd0ba00 : 0xffffff7f86de7c43
    0xffffff80edd0ba50 : 0xffffff7f86da20fc
    0xffffff80edd0bae0 : 0xffffff7f86d9defa
    0xffffff80edd0bb10 : 0xffffff7f86d9baab
    0xffffff80edd0bb40 : 0xffffff80058650c3
    0xffffff80edd0bbc0 : 0xffffff8005867153
    0xffffff80edd0bc20 : 0xffffff8005864b8f
    0xffffff80edd0bd70 : 0xffffff80054981e1
    0xffffff80edd0be80 : 0xffffff8005420aed
    0xffffff80edd0beb0 : 0xffffff8005410448
    0xffffff80edd0bf00 : 0xffffff800541961b
    0xffffff80edd0bf70 : 0xffffff80054a5b16
    0xffffff80edd0bfb0 : 0xffffff80054ced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c34 000->0xffffff7f85f36fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5f44000->0xffffff7f86266fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86d83000 ->0xffffff7f86e45fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 13893412243014
    last loaded kext at 739492449806: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8793f000, size 229376)
    last unloaded kext at 341224120991: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f86496000, size 65536)
    loaded kexts:
    com.silex.driver.sxuptp          1.5.1
    com.jft.driver.PdaNetDrv          1.0.64
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    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.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x8634, 0x535550455254414C454E5430310000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet Adaptor (en2), Ethernet, en2
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • Macbook Pro Retina keeps restarting "due to a problem" as well as imovie and Skype

    My new Macbook Pro Retina keeps restarting "due to a problem", when I open my skype it crashes and my imovie crashes all the time as well. I just got this computer last week. If someone could please help me out.
    These are the few of the errors on the console utility
    8/25/12 12:19:38.092 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** error: can't allocate region
    8/25/12 12:19:38.092 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** set a breakpoint in malloc_error_break to debug
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: iMovie(694,0xac8ba2c0) malloc: *** mmap(size=1223954432) failed (error code=12)
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** error: can't allocate region
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** set a breakpoint in malloc_error_break to debug
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: iMovie(694,0xac8ba2c0) malloc: *** mmap(size=1223962624) failed (error code=12)
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** error: can't allocate region
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** set a breakpoint in malloc_error_break to debug
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: iMovie(694,0xac8ba2c0) malloc: *** mmap(size=1223974912) failed (error code=12)
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** error: can't allocate region
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** set a breakpoint in malloc_error_break to debug
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: iMovie(694,0xac8ba2c0) malloc: *** mmap(size=979181568) failed (error code=12)
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** error: can't allocate region
    8/25/12 12:19:38.093 PM [0x0-0xaa0aa].com.apple.iMovieApp: *** set a breakpoint in malloc_error_break to debug
    8/25/12 12:19:38.094 PM iMovie: *** Canceling drag because exception 'NSMallocException' (reason '*** -[NSConcreteMutableData appendBytes:length:]: unable to allocate memory for length (979177572)') was raised during a dragging session
    8/25/12 12:22:06.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:22:07.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:23:33.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:23:37.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:23:37.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:23:39.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:24:29.322 PM [0x0-0xc50c5].com.skype.skype: DVFreeThread - CFMachPortCreateWithPort hack = 0x22e20e0, fPowerNotifyPort= 0x229f7d0
    8/25/12 12:24:29.322 PM [0x0-0xc50c5].com.skype.skype: DVFreeThread - CFMachPortCreateWithPort hack = 0x263d630, fPowerNotifyPort= 0x26221e0
    8/25/12 12:24:29.322 PM [0x0-0xc50c5].com.skype.skype: DVFreeThread - CFMachPortCreateWithPort hack = 0x263d840, fPowerNotifyPort= 0x2607c90
    8/25/12 12:25:18.000 PM kernel: IOSurface: buffer allocation size is zero
    8/25/12 12:27:27.481 PM com.apple.WindowServer: WindowServer(87,0x7fff74852960) malloc: *** error for object 0x7ff851ba0050: incorrect checksum for freed object - object was probably modified after being freed.
    8/25/12 12:27:27.481 PM com.apple.WindowServer: *** set a breakpoint in malloc_error_break to debug
    8/25/12 12:27:27.798 PM ReportCrash: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/25/12 12:27:28.745 PM SystemUIServer: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.745 PM SystemUIServer: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.746 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper[673:207] HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper[673:207] port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.746 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper[757:207] HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper[761:207] HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper[757:207] port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.746 PM Finder: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper[761:207] port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.746 PM iTunes: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM Finder: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.746 PM iTunes: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.746 PM Google Chrome: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM Google Chrome Helper EH: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM rcd: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.746 PM Image Capture Extension: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.747 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.745 Google Chrome Helper EH[615:b03] HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.747 PM Google Chrome: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.747 PM Google Chrome Helper EH: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.747 PM rcd: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.747 PM Dock: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.747 PM Image Capture Extension: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.747 PM [0x0-0x90090].com.google.Chrome: 2012-08-25 12:27:28.746 Google Chrome Helper EH[615:b03] port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.748 PM Dock: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.750 PM com.apple.dock.extra: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.751 PM com.apple.dock.extra: 2012-08-25 12:27:28.746 com.apple.dock.extra[143:1707] HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.751 PM com.apple.dock.extra: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.752 PM com.apple.dock.extra: 2012-08-25 12:27:28.750 com.apple.dock.extra[143:1707] port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.752 PM talagent: HIToolbox: received notification of WindowServer event port death.
    8/25/12 12:27:28.753 PM talagent: port matched the WindowServer port created in BindCGSToRunLoop
    8/25/12 12:27:28.775 PM UserEventAgent: CaptiveNetworkSupport:UserAgentDied:139 User Agent @port=26115 Died
    8/25/12 12:27:28.782 PM com.apple.launchd.peruser.501: (com.apple.Dock.agent[114]) Exited with code: 1
    8/25/12 12:27:28.856 PM Google Chrome: MIG: server died: CGSReenableUpdateForConnections: Failed
    8/25/12 12:27:28.856 PM Google Chrome: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    8/25/12 12:27:28.857 PM Google Chrome: (ipc/send) invalid destination port: CGSSetEventMask: error setting window event mask
    8/25/12 12:27:28.858 PM Google Chrome: (ipc/send) invalid destination port: CGSDisableUpdateForConnections: Failed
    8/25/12 12:27:28.858 PM Google Chrome: (ipc/send) invalid destination port: CGSReenableUpdateForConnections: Failed
    8/25/12 12:27:28.858 PM Google Chrome: (ipc/send) invalid destination port: CGSGetOnScreenWindowCount
    8/25/12 12:27:28.858 PM Google Chrome: (ipc/send) invalid destination port: CGSGetOnScreenWindowCount
    8/25/12 12:27:28.858 PM Google Chrome: (ipc/send) invalid destination port: CGSGetWindowPresenter
    8/25/12 12:27:28.858 PM Google Chrome: (ipc/send) invalid destination port: CGSOrderWindowList
    8/25/12 12:27:28.859 PM Google Chrome: kCGErrorFailure: _CGSLockWindow: Cannot synchronize window backing store
    8/25/12 12:27:28.859 PM Google Chrome: kCGErrorFailure: _CGSLockWindow: Cannot synchronize window backing store

    melirodriguez13 wrote:
    My new Macbook Pro Retina keeps restarting "due to a problem", when I open my skype it crashes and my imovie crashes all the time as well. I just got this computer last week. If someone could please help me out.
    Call Apple Care. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired. 

  • Computer constantly restarting due to an error - 2010 Macbook Pro

    Hi guys, so this is my first post here in the service community so please let me know if I need to provide any additional information. Anyway, on to the issue.  So this has been going on for a while now, but in the last month or so it has really gotten to the point where I can't reliably use it, which is a problem as a college student.  My computer reboots, goes to a white screen which says press any key to continue, and then says my computer restarted due to an error upon loading.  I purchased the computer in the summer of 2010, it is a 15" Macbook Pro with the 2.66GHz i7 processor. 
    I noticed the issue begin when I upgraded from Snow Leopard to Mountain Lion I believe, and I am currently running OSX Mavericks.  I have done some research on the subject and found that some mid 2010 15" MBP's were made with a defective GPU, but because I am unable to decipher the actual error message I figured I would post it up here and get a more bit more of a specific answer from people that knew what they were talking about. I am currently out of a service plan and anything along those lines, so know that replacing the GPU would be quite costly, and need to consider some things if that is the issue. 
    Thanks ahead of time for any information/help you guys provide!
    This is the error message I receive upon the reboot:
    panic(cpu 0 caller 0xffffff7f987bcfb0): "GPU Panic: [<None>] 3 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0x0a2910de 0x00100000 0x00000000, BAR0 0xd2000000 0xffffff80b5cab000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.35/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80865b36b0 : 0xffffff8016422fa9
    0xffffff80865b3730 : 0xffffff7f987bcfb0
    0xffffff80865b3800 : 0xffffff7f96e22eab
    0xffffff80865b38c0 : 0xffffff7f96eec49a
    0xffffff80865b3900 : 0xffffff7f96eec50a
    0xffffff80865b3970 : 0xffffff7f9716b056
    0xffffff80865b3aa0 : 0xffffff7f96f0fb39
    0xffffff80865b3ac0 : 0xffffff7f96e298fd
    0xffffff80865b3b70 : 0xffffff7f96e27408
    0xffffff80865b3d70 : 0xffffff7f96e284a8
    0xffffff80865b3e50 : 0xffffff7f96dd526e
    0xffffff80865b3eb0 : 0xffffff7f9878f66c
    0xffffff80865b3f00 : 0xffffff7f9878e55e
    0xffffff80865b3f20 : 0xffffff801644a23a
    0xffffff80865b3fb0 : 0xffffff80164d6ff7
          Kernel Extensions in backtrace:
             com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f96dd3000->0xffffff7f9703bfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f96abb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f96dc3000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f96d80000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.2.4)[B0E6AAA7-E970-3D81-8B43-145D56 A3A4AC]@0xffffff7f97046000->0xffffff7f972effff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f96dd3000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f96abb000
             com.apple.driver.AppleMuxControl(3.4.35)[1BFF66C1-65E4-3BB3-9DEE-B61C3137019B]@ 0xffffff7f987af000->0xffffff7f987c1fff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.35)[09897896-ACBD-36B5-B1D4-0CCC4000E 3B3]@0xffffff7f987a7000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f96d28000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f96abb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f96d80000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f987aa000
             com.apple.driver.AGPM(100.14.15)[BD884E30-94CF-3D5B-9A31-6C2F694CD5C4]@0xffffff 7f9878d000->0xffffff7f9879efff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f96abb000
                dependency: com.apple.driver.IOPlatformPluginFamily(5.7.0d10)[E9B6DC11-10DB-31D7-885C-886E1 62FA857]@0xffffff7f9782f000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f96dc3000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f96d80000
                dependency: com.apple.AppleGraphicsDeviceControl(3.4.35)[E4C033B8-08F5-34D3-8720-C105D48F0B C4]@0xffffff7f98787000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13C64
    Kernel version:
    Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Kernel UUID: 9FEA8EDC-B629-3ED2-A1A3-6521A1885953
    Kernel slide:     0x0000000016200000
    Kernel text base: 0xffffff8016400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 5360839019002
    last loaded kext at 5007783311138: com.apple.driver.AppleUSBCDC          4.2.1b5 (addr 0xffffff7f9890b000, size 20480)
    last unloaded kext at 5068748983955: com.apple.driver.AppleUSBCDC          4.2.1b5 (addr 0xffffff7f9890b000, size 16384)
    loaded kexts:
    com.apple.filesystems.smbfs          2.0.1
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AGPM          100.14.15
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleMuxControl          3.4.35
    com.apple.driver.AppleIntelHDGraphics          8.2.4
    com.apple.driver.AppleIntelHDGraphicsFB          8.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.GeForceTesla          8.2.4
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.ACPI_SMC_PlatformPlugin          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.AppleIRController          325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.iokit.SCSITaskUserClient          3.6.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.driver.AppleUSBEHCI          660.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.AppleGraphicsControl          3.4.35
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.iokit.IOFireWireIP          2.2.6
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.nvidia.classic.NVDANV50HalTesla          8.2.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.nvidia.classic.NVDAResmanTesla          8.2.4
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.AppleUSBMultitouch          240.9
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1

    It's likely that you have the issue covered by http://support.apple.com/kb/ts4088
    Although the three year period has probably passed, you should take it to Apple or an authorised dealer & ask that they test for that specific problem.
    Seeveral users here have reported free repairs even when well outside 3 years: here's a very recent one.
    https://discussions.apple.com/message/25393970#25393970

  • Where do Pipeline Component classes get loaded from?

    Can someone please point me to some documentation that describes where my Pipeline
    Component classes get loaded from?
    I have just wasted hours on this - to find that they are not loaded from WEB-INF/classes
    - but instead they must be available to the EJB classloader. The sampleportal
    is completely misleading in putting the classes in WEB-INF/classes - because they
    are in fact loaded from the sampleportal EJB jar!
    Did I miss something obvious?
    regards,
    Nick

    Nick
    Refer to this portal doc on dev2dev
    ftp://edownload:[email protected]/pub/downloads/webflow.doc
    -tulan
    "Nick Minutello" <[email protected]> wrote
    in message news:[email protected]..
    >
    >
    Can someone please point me to some documentation that describes where myPipeline
    Component classes get loaded from?
    I have just wasted hours on this - to find that they are not loaded fromWEB-INF/classes
    - but instead they must be available to the EJB classloader. Thesampleportal
    is completely misleading in putting the classes in WEB-INF/classes -because they
    are in fact loaded from the sampleportal EJB jar!
    Did I miss something obvious?
    regards,
    Nick

  • When loading ANY web page, it take firefox 3sec to load a blank page. No matter what website I try to load, it just loads a blank page

    When loading ANY web page, it take firefox 3sec to load a blank page. I have tried everything, starting firefox in safe mode and dissabling all add ons, turning 6v on and off, turnig proxy on and off, reinstalling firefox, restarting my computer, and reinstalling drivers. I can use another browser to surf the internet but finding one that is as capable to firefox isn't easy.
    ps. Firefox did start at one point and then just stoped.
    I use Linux Ubuntu 11.04 single boot

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See also:
    *http://kb.mozillazine.org/Error_loading_websites

Maybe you are looking for